oci-secrets
Advanced tools
Comparing version
@@ -17,2 +17,3 @@ /** | ||
import * as responses from "./response"; | ||
declare const Breaker: any; | ||
export declare enum SecretsApiKeys { | ||
@@ -30,3 +31,3 @@ } | ||
protected "_clientConfiguration": common.ClientConfiguration; | ||
protected _circuitBreaker: null; | ||
protected _circuitBreaker: typeof Breaker | null; | ||
protected _httpOptions: any; | ||
@@ -72,2 +73,6 @@ protected _bodyDuplexMode: any; | ||
/** | ||
* Shutdown the circuit breaker used by the client when it is no longer needed | ||
*/ | ||
shutdownCircuitBreaker(): void; | ||
/** | ||
* Gets a secret bundle that matches either the specified `stage`, `secretVersionName`, or `versionNumber` parameter. | ||
@@ -80,3 +85,3 @@ * If none of these parameters are provided, the bundle for the secret version marked as `CURRENT` will be returned. | ||
* @throws OciError when an error occurs | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/secrets/GetSecretBundle.ts.html |here} to see how to use GetSecretBundle API. | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/secrets/GetSecretBundle.ts.html |here} to see how to use GetSecretBundle API. | ||
*/ | ||
@@ -92,3 +97,3 @@ getSecretBundle(getSecretBundleRequest: requests.GetSecretBundleRequest): Promise<responses.GetSecretBundleResponse>; | ||
* @throws OciError when an error occurs | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/secrets/GetSecretBundleByName.ts.html |here} to see how to use GetSecretBundleByName API. | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/secrets/GetSecretBundleByName.ts.html |here} to see how to use GetSecretBundleByName API. | ||
*/ | ||
@@ -102,3 +107,3 @@ getSecretBundleByName(getSecretBundleByNameRequest: requests.GetSecretBundleByNameRequest): Promise<responses.GetSecretBundleByNameResponse>; | ||
* @throws OciError when an error occurs | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/secrets/ListSecretBundleVersions.ts.html |here} to see how to use ListSecretBundleVersions API. | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/secrets/ListSecretBundleVersions.ts.html |here} to see how to use ListSecretBundleVersions API. | ||
*/ | ||
@@ -139,1 +144,2 @@ listSecretBundleVersions(listSecretBundleVersionsRequest: requests.ListSecretBundleVersionsRequest): Promise<responses.ListSecretBundleVersionsResponse>; | ||
} | ||
export {}; |
@@ -48,2 +48,3 @@ "use strict"; | ||
const oci_common_2 = require("oci-common"); | ||
const Breaker = require("opossum"); | ||
// =============================================== | ||
@@ -165,2 +166,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 a secret bundle that matches either the specified `stage`, `secretVersionName`, or `versionNumber` parameter. | ||
@@ -173,3 +182,3 @@ * If none of these parameters are provided, the bundle for the secret version marked as `CURRENT` will be returned. | ||
* @throws OciError when an error occurs | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/secrets/GetSecretBundle.ts.html |here} to see how to use GetSecretBundle API. | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/secrets/GetSecretBundle.ts.html |here} to see how to use GetSecretBundle API. | ||
*/ | ||
@@ -243,3 +252,3 @@ getSecretBundle(getSecretBundleRequest) { | ||
* @throws OciError when an error occurs | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/secrets/GetSecretBundleByName.ts.html |here} to see how to use GetSecretBundleByName API. | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/secrets/GetSecretBundleByName.ts.html |here} to see how to use GetSecretBundleByName API. | ||
*/ | ||
@@ -306,3 +315,3 @@ getSecretBundleByName(getSecretBundleByNameRequest) { | ||
* @throws OciError when an error occurs | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/secrets/ListSecretBundleVersions.ts.html |here} to see how to use ListSecretBundleVersions API. | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/secrets/ListSecretBundleVersions.ts.html |here} to see how to use ListSecretBundleVersions API. | ||
*/ | ||
@@ -309,0 +318,0 @@ listSecretBundleVersions(listSecretBundleVersionsRequest) { |
@@ -15,3 +15,3 @@ /** | ||
/** | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.0/secrets/GetSecretBundleByName.ts.html |here} to see how to use GetSecretBundleByNameRequest. | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/secrets/GetSecretBundleByName.ts.html |here} to see how to use GetSecretBundleByNameRequest. | ||
*/ | ||
@@ -18,0 +18,0 @@ export interface GetSecretBundleByNameRequest 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/secrets/GetSecretBundle.ts.html |here} to see how to use GetSecretBundleRequest. | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/secrets/GetSecretBundle.ts.html |here} to see how to use GetSecretBundleRequest. | ||
*/ | ||
@@ -18,0 +18,0 @@ export interface GetSecretBundleRequest 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/secrets/ListSecretBundleVersions.ts.html |here} to see how to use ListSecretBundleVersionsRequest. | ||
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/secrets/ListSecretBundleVersions.ts.html |here} to see how to use ListSecretBundleVersionsRequest. | ||
*/ | ||
@@ -18,0 +18,0 @@ export interface ListSecretBundleVersionsRequest extends common.BaseRequest { |
{ | ||
"name": "oci-secrets", | ||
"version": "2.77.0", | ||
"version": "2.77.1", | ||
"description": "OCI NodeJS client for Secrets Service", | ||
@@ -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
129099
0.48%1550
0.98%+ Added
+ Added
- Removed
- Removed
Updated
Updated