Socket
Socket
Sign inDemoInstall

oci-workrequests

Package Overview
Dependencies
Maintainers
4
Versions
194
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

oci-workrequests - npm Package Compare versions

Comparing version 2.77.0 to 2.77.1

16

lib/client.d.ts

@@ -24,2 +24,3 @@ /**

import { WorkRequestWaiter } from "./workrequest-waiter";
declare const Breaker: any;
export declare enum WorkRequestApiKeys {

@@ -38,3 +39,3 @@ }

protected "_clientConfiguration": common.ClientConfiguration;
protected _circuitBreaker: null;
protected _circuitBreaker: typeof Breaker | null;
protected _httpOptions: any;

@@ -93,2 +94,6 @@ protected _bodyDuplexMode: any;

/**
* Shutdown the circuit breaker used by the client when it is no longer needed
*/
shutdownCircuitBreaker(): void;
/**
* Gets the details of a work request.

@@ -99,3 +104,3 @@ * This operation does not retry by default if the user has not defined a retry configuration.

* @throws OciError when an error occurs
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/workrequests/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/workrequests/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
*/

@@ -110,3 +115,3 @@ getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;

* @throws OciError when an error occurs
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/workrequests/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/workrequests/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
*/

@@ -153,3 +158,3 @@ listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;

* @throws OciError when an error occurs
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/workrequests/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/workrequests/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
*/

@@ -196,3 +201,3 @@ listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;

* @throws OciError when an error occurs
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/workrequests/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/workrequests/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
*/

@@ -233,1 +238,2 @@ listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;

}
export {};

@@ -55,2 +55,3 @@ "use strict";

const oci_common_2 = require("oci-common");
const Breaker = require("opossum");
// ===============================================

@@ -193,2 +194,10 @@ // This file is autogenerated - Please do not edit

/**
* Shutdown the circuit breaker used by the client when it is no longer needed
*/
shutdownCircuitBreaker() {
if (this._circuitBreaker) {
this._circuitBreaker.shutdown();
}
}
/**
* Gets the details of a work request.

@@ -199,3 +208,3 @@ * This operation does not retry by default if the user has not defined a retry configuration.

* @throws OciError when an error occurs
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/workrequests/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/workrequests/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
*/

@@ -259,3 +268,3 @@ getWorkRequest(getWorkRequestRequest) {

* @throws OciError when an error occurs
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/workrequests/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/workrequests/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
*/

@@ -368,3 +377,3 @@ listWorkRequestErrors(listWorkRequestErrorsRequest) {

* @throws OciError when an error occurs
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/workrequests/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/workrequests/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
*/

@@ -477,3 +486,3 @@ listWorkRequestLogs(listWorkRequestLogsRequest) {

* @throws OciError when an error occurs
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/workrequests/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/workrequests/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
*/

@@ -480,0 +489,0 @@ listWorkRequests(listWorkRequestsRequest) {

@@ -15,3 +15,3 @@ /**

/**
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/workrequests/GetWorkRequest.ts.html |here} to see how to use GetWorkRequestRequest.
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/workrequests/GetWorkRequest.ts.html |here} to see how to use GetWorkRequestRequest.
*/

@@ -18,0 +18,0 @@ export interface GetWorkRequestRequest extends common.BaseRequest {

@@ -15,3 +15,3 @@ /**

/**
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/workrequests/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrorsRequest.
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/workrequests/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrorsRequest.
*/

@@ -18,0 +18,0 @@ export interface ListWorkRequestErrorsRequest extends common.BaseRequest {

@@ -15,3 +15,3 @@ /**

/**
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/workrequests/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogsRequest.
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/workrequests/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogsRequest.
*/

@@ -18,0 +18,0 @@ export interface ListWorkRequestLogsRequest extends common.BaseRequest {

@@ -15,3 +15,3 @@ /**

/**
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/workrequests/ListWorkRequests.ts.html |here} to see how to use ListWorkRequestsRequest.
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/workrequests/ListWorkRequests.ts.html |here} to see how to use ListWorkRequestsRequest.
*/

@@ -18,0 +18,0 @@ export interface ListWorkRequestsRequest extends common.BaseRequest {

{
"name": "oci-workrequests",
"version": "2.77.0",
"version": "2.77.1",
"description": "OCI NodeJS client for WorkRequests",

@@ -18,4 +18,4 @@ "repository": {

"dependencies": {
"oci-common": "2.77.0",
"oci-workrequests": "2.77.0"
"oci-common": "2.77.1",
"oci-workrequests": "2.77.1"
},

@@ -22,0 +22,0 @@ "publishConfig": {

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc