oci-secrets 2.4.0 → 2.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.txt +6 -0
- package/lib/client.d.ts +26 -3
- package/lib/client.js +43 -6
- package/lib/client.js.map +1 -1
- package/lib/request/get-secret-bundle-by-name-request.d.ts +1 -1
- package/lib/request/get-secret-bundle-request.d.ts +1 -1
- package/lib/request/list-secret-bundle-versions-request.d.ts +1 -1
- package/package.json +3 -3
package/LICENSE.txt
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
|
|
2
|
+
|
|
3
|
+
This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 or Apache License 2.0. See below for license terms. You may choose either license.
|
|
4
|
+
|
|
5
|
+
____________________________
|
|
6
|
+
|
|
1
7
|
The Universal Permissive License (UPL), Version 1.0
|
|
2
8
|
|
|
3
9
|
Subject to the condition set forth below, permission is hereby granted to any
|
package/lib/client.d.ts
CHANGED
|
@@ -16,6 +16,9 @@ import * as model from "./model";
|
|
|
16
16
|
import * as responses from "./response";
|
|
17
17
|
export declare enum SecretsApiKeys {
|
|
18
18
|
}
|
|
19
|
+
/**
|
|
20
|
+
* This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
|
|
21
|
+
*/
|
|
19
22
|
export declare class SecretsClient {
|
|
20
23
|
protected static serviceEndpointTemplate: string;
|
|
21
24
|
protected "_endpoint": string;
|
|
@@ -53,31 +56,35 @@ export declare class SecretsClient {
|
|
|
53
56
|
* Gets a secret bundle that matches either the specified `stage`, `secretVersionName`, or `versionNumber` parameter.
|
|
54
57
|
* If none of these parameters are provided, the bundle for the secret version marked as `CURRENT` will be returned.
|
|
55
58
|
*
|
|
59
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
56
60
|
* @param GetSecretBundleRequest
|
|
57
61
|
* @return GetSecretBundleResponse
|
|
58
62
|
* @throws OciError when an error occurs
|
|
59
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
63
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/secrets/GetSecretBundle.ts.html |here} to see how to use GetSecretBundle API.
|
|
60
64
|
*/
|
|
61
65
|
getSecretBundle(getSecretBundleRequest: requests.GetSecretBundleRequest): Promise<responses.GetSecretBundleResponse>;
|
|
62
66
|
/**
|
|
63
67
|
* Gets a secret bundle by secret name and vault ID, and secret version that matches either the specified `stage`, `secretVersionName`, or `versionNumber` parameter.
|
|
64
68
|
* If none of these parameters are provided, the bundle for the secret version marked as `CURRENT` is returned.
|
|
65
69
|
*
|
|
70
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
66
71
|
* @param GetSecretBundleByNameRequest
|
|
67
72
|
* @return GetSecretBundleByNameResponse
|
|
68
73
|
* @throws OciError when an error occurs
|
|
69
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
74
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/secrets/GetSecretBundleByName.ts.html |here} to see how to use GetSecretBundleByName API.
|
|
70
75
|
*/
|
|
71
76
|
getSecretBundleByName(getSecretBundleByNameRequest: requests.GetSecretBundleByNameRequest): Promise<responses.GetSecretBundleByNameResponse>;
|
|
72
77
|
/**
|
|
73
78
|
* Lists all secret bundle versions for the specified secret.
|
|
79
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
74
80
|
* @param ListSecretBundleVersionsRequest
|
|
75
81
|
* @return ListSecretBundleVersionsResponse
|
|
76
82
|
* @throws OciError when an error occurs
|
|
77
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
83
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/secrets/ListSecretBundleVersions.ts.html |here} to see how to use ListSecretBundleVersions API.
|
|
78
84
|
*/
|
|
79
85
|
listSecretBundleVersions(listSecretBundleVersionsRequest: requests.ListSecretBundleVersionsRequest): Promise<responses.ListSecretBundleVersionsResponse>;
|
|
80
86
|
/**
|
|
87
|
+
* NOTE: This function is deprecated in favor of listSecretBundleVersionsRecordIterator function.
|
|
81
88
|
* Creates a new async iterator which will iterate over the models.SecretBundleVersionSummary objects
|
|
82
89
|
* contained in responses from the listSecretBundleVersions operation. This iterator will fetch more data from the
|
|
83
90
|
* server as needed.
|
|
@@ -86,10 +93,26 @@ export declare class SecretsClient {
|
|
|
86
93
|
*/
|
|
87
94
|
listAllSecretBundleVersions(request: requests.ListSecretBundleVersionsRequest): AsyncIterableIterator<model.SecretBundleVersionSummary>;
|
|
88
95
|
/**
|
|
96
|
+
* NOTE: This function is deprecated in favor of listSecretBundleVersionsResponseIterator function.
|
|
89
97
|
* Creates a new async iterator which will iterate over the responses received from the listSecretBundleVersions operation. This iterator
|
|
90
98
|
* will fetch more data from the server as needed.
|
|
91
99
|
*
|
|
92
100
|
* @param request a request which can be sent to the service operation
|
|
93
101
|
*/
|
|
94
102
|
listAllSecretBundleVersionsResponses(request: requests.ListSecretBundleVersionsRequest): AsyncIterableIterator<responses.ListSecretBundleVersionsResponse>;
|
|
103
|
+
/**
|
|
104
|
+
* Creates a new async iterator which will iterate over the models.SecretBundleVersionSummary objects
|
|
105
|
+
* contained in responses from the listSecretBundleVersions operation. This iterator will fetch more data from the
|
|
106
|
+
* server as needed.
|
|
107
|
+
*
|
|
108
|
+
* @param request a request which can be sent to the service operation
|
|
109
|
+
*/
|
|
110
|
+
listSecretBundleVersionsRecordIterator(request: requests.ListSecretBundleVersionsRequest): AsyncIterableIterator<model.SecretBundleVersionSummary>;
|
|
111
|
+
/**
|
|
112
|
+
* Creates a new async iterator which will iterate over the responses received from the listSecretBundleVersions operation. This iterator
|
|
113
|
+
* will fetch more data from the server as needed.
|
|
114
|
+
*
|
|
115
|
+
* @param request a request which can be sent to the service operation
|
|
116
|
+
*/
|
|
117
|
+
listSecretBundleVersionsResponseIterator(request: requests.ListSecretBundleVersionsRequest): AsyncIterableIterator<responses.ListSecretBundleVersionsResponse>;
|
|
95
118
|
}
|
package/lib/client.js
CHANGED
|
@@ -51,6 +51,9 @@ const oci_common_2 = require("oci-common");
|
|
|
51
51
|
var SecretsApiKeys;
|
|
52
52
|
(function (SecretsApiKeys) {
|
|
53
53
|
})(SecretsApiKeys = exports.SecretsApiKeys || (exports.SecretsApiKeys = {}));
|
|
54
|
+
/**
|
|
55
|
+
* This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
|
|
56
|
+
*/
|
|
54
57
|
class SecretsClient {
|
|
55
58
|
constructor(params, clientConfiguration) {
|
|
56
59
|
this["_endpoint"] = "";
|
|
@@ -65,6 +68,13 @@ class SecretsClient {
|
|
|
65
68
|
? clientConfiguration.circuitBreaker.circuit
|
|
66
69
|
: null;
|
|
67
70
|
}
|
|
71
|
+
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
72
|
+
const specCircuitBreakerEnabled = false;
|
|
73
|
+
if (!this._circuitBreaker &&
|
|
74
|
+
common.utils.isCircuitBreakerSystemEnabled(clientConfiguration) &&
|
|
75
|
+
(specCircuitBreakerEnabled || common.CircuitBreaker.DefaultCircuitBreakerOverriden)) {
|
|
76
|
+
this._circuitBreaker = new common.CircuitBreaker().circuit;
|
|
77
|
+
}
|
|
68
78
|
this._httpClient =
|
|
69
79
|
params.httpClient || new common.FetchHttpClient(requestSigner, this._circuitBreaker);
|
|
70
80
|
if (params.authenticationDetailsProvider &&
|
|
@@ -117,10 +127,11 @@ class SecretsClient {
|
|
|
117
127
|
* Gets a secret bundle that matches either the specified `stage`, `secretVersionName`, or `versionNumber` parameter.
|
|
118
128
|
* If none of these parameters are provided, the bundle for the secret version marked as `CURRENT` will be returned.
|
|
119
129
|
*
|
|
130
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
120
131
|
* @param GetSecretBundleRequest
|
|
121
132
|
* @return GetSecretBundleResponse
|
|
122
133
|
* @throws OciError when an error occurs
|
|
123
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
134
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/secrets/GetSecretBundle.ts.html |here} to see how to use GetSecretBundle API.
|
|
124
135
|
*/
|
|
125
136
|
getSecretBundle(getSecretBundleRequest) {
|
|
126
137
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -138,7 +149,8 @@ class SecretsClient {
|
|
|
138
149
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
139
150
|
"opc-request-id": getSecretBundleRequest.opcRequestId
|
|
140
151
|
};
|
|
141
|
-
const
|
|
152
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
153
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getSecretBundleRequest.retryConfiguration, specRetryConfiguration);
|
|
142
154
|
if (this.logger)
|
|
143
155
|
retrier.logger = this.logger;
|
|
144
156
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -182,10 +194,11 @@ class SecretsClient {
|
|
|
182
194
|
* Gets a secret bundle by secret name and vault ID, and secret version that matches either the specified `stage`, `secretVersionName`, or `versionNumber` parameter.
|
|
183
195
|
* If none of these parameters are provided, the bundle for the secret version marked as `CURRENT` is returned.
|
|
184
196
|
*
|
|
197
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
185
198
|
* @param GetSecretBundleByNameRequest
|
|
186
199
|
* @return GetSecretBundleByNameResponse
|
|
187
200
|
* @throws OciError when an error occurs
|
|
188
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
201
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/secrets/GetSecretBundleByName.ts.html |here} to see how to use GetSecretBundleByName API.
|
|
189
202
|
*/
|
|
190
203
|
getSecretBundleByName(getSecretBundleByNameRequest) {
|
|
191
204
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -203,7 +216,8 @@ class SecretsClient {
|
|
|
203
216
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
204
217
|
"opc-request-id": getSecretBundleByNameRequest.opcRequestId
|
|
205
218
|
};
|
|
206
|
-
const
|
|
219
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
220
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getSecretBundleByNameRequest.retryConfiguration, specRetryConfiguration);
|
|
207
221
|
if (this.logger)
|
|
208
222
|
retrier.logger = this.logger;
|
|
209
223
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -240,10 +254,11 @@ class SecretsClient {
|
|
|
240
254
|
}
|
|
241
255
|
/**
|
|
242
256
|
* Lists all secret bundle versions for the specified secret.
|
|
257
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
243
258
|
* @param ListSecretBundleVersionsRequest
|
|
244
259
|
* @return ListSecretBundleVersionsResponse
|
|
245
260
|
* @throws OciError when an error occurs
|
|
246
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
261
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/secrets/ListSecretBundleVersions.ts.html |here} to see how to use ListSecretBundleVersions API.
|
|
247
262
|
*/
|
|
248
263
|
listSecretBundleVersions(listSecretBundleVersionsRequest) {
|
|
249
264
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -262,7 +277,8 @@ class SecretsClient {
|
|
|
262
277
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
263
278
|
"opc-request-id": listSecretBundleVersionsRequest.opcRequestId
|
|
264
279
|
};
|
|
265
|
-
const
|
|
280
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
281
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listSecretBundleVersionsRequest.retryConfiguration, specRetryConfiguration);
|
|
266
282
|
if (this.logger)
|
|
267
283
|
retrier.logger = this.logger;
|
|
268
284
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -303,6 +319,7 @@ class SecretsClient {
|
|
|
303
319
|
});
|
|
304
320
|
}
|
|
305
321
|
/**
|
|
322
|
+
* NOTE: This function is deprecated in favor of listSecretBundleVersionsRecordIterator function.
|
|
306
323
|
* Creates a new async iterator which will iterate over the models.SecretBundleVersionSummary objects
|
|
307
324
|
* contained in responses from the listSecretBundleVersions operation. This iterator will fetch more data from the
|
|
308
325
|
* server as needed.
|
|
@@ -313,6 +330,7 @@ class SecretsClient {
|
|
|
313
330
|
return oci_common_1.paginateRecords(request, req => this.listSecretBundleVersions(req));
|
|
314
331
|
}
|
|
315
332
|
/**
|
|
333
|
+
* NOTE: This function is deprecated in favor of listSecretBundleVersionsResponseIterator function.
|
|
316
334
|
* Creates a new async iterator which will iterate over the responses received from the listSecretBundleVersions operation. This iterator
|
|
317
335
|
* will fetch more data from the server as needed.
|
|
318
336
|
*
|
|
@@ -321,6 +339,25 @@ class SecretsClient {
|
|
|
321
339
|
listAllSecretBundleVersionsResponses(request) {
|
|
322
340
|
return oci_common_1.paginateResponses(request, req => this.listSecretBundleVersions(req));
|
|
323
341
|
}
|
|
342
|
+
/**
|
|
343
|
+
* Creates a new async iterator which will iterate over the models.SecretBundleVersionSummary objects
|
|
344
|
+
* contained in responses from the listSecretBundleVersions operation. This iterator will fetch more data from the
|
|
345
|
+
* server as needed.
|
|
346
|
+
*
|
|
347
|
+
* @param request a request which can be sent to the service operation
|
|
348
|
+
*/
|
|
349
|
+
listSecretBundleVersionsRecordIterator(request) {
|
|
350
|
+
return oci_common_1.paginateRecords(request, req => this.listSecretBundleVersions(req));
|
|
351
|
+
}
|
|
352
|
+
/**
|
|
353
|
+
* Creates a new async iterator which will iterate over the responses received from the listSecretBundleVersions operation. This iterator
|
|
354
|
+
* will fetch more data from the server as needed.
|
|
355
|
+
*
|
|
356
|
+
* @param request a request which can be sent to the service operation
|
|
357
|
+
*/
|
|
358
|
+
listSecretBundleVersionsResponseIterator(request) {
|
|
359
|
+
return oci_common_1.paginateResponses(request, req => this.listSecretBundleVersions(req));
|
|
360
|
+
}
|
|
324
361
|
}
|
|
325
362
|
exports.SecretsClient = SecretsClient;
|
|
326
363
|
SecretsClient.serviceEndpointTemplate = "https://secrets.vaults.{region}.oci.{secondLevelDomain}";
|
package/lib/client.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.js","sourceRoot":"","sources":["../../../../lib/secrets/lib/client.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,qCAAsC;AAEtC,+CAAiC;AAEjC,2CAAgE;AAChE,2CAA6E;AAE7E,kDAAkD;AAClD,kDAAkD;AAClD,kDAAkD;AAElD,IAAY,cAAiB;AAA7B,WAAY,cAAc;AAAE,CAAC,EAAjB,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAAG;
|
|
1
|
+
{"version":3,"file":"client.js","sourceRoot":"","sources":["../../../../lib/secrets/lib/client.ts"],"names":[],"mappings":"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"}
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/secrets/GetSecretBundleByName.ts.html |here} to see how to use GetSecretBundleByNameRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetSecretBundleByNameRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/secrets/GetSecretBundle.ts.html |here} to see how to use GetSecretBundleRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetSecretBundleRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/secrets/ListSecretBundleVersions.ts.html |here} to see how to use ListSecretBundleVersionsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListSecretBundleVersionsRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oci-secrets",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.6.0",
|
|
4
4
|
"description": "OCI NodeJS client for Secrets Service",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
},
|
|
16
16
|
"license": "(UPL-1.0 OR Apache-2.0)",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"oci-common": "2.
|
|
19
|
-
"oci-workrequests": "2.
|
|
18
|
+
"oci-common": "2.6.0",
|
|
19
|
+
"oci-workrequests": "2.6.0"
|
|
20
20
|
},
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"registry": "https://registry.npmjs.org"
|