oci-keymanagement 2.77.0 → 2.77.1
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/lib/client.d.ts +68 -50
- package/lib/client.js +79 -46
- package/lib/client.js.map +1 -1
- package/lib/request/backup-key-request.d.ts +1 -1
- package/lib/request/backup-vault-request.d.ts +1 -1
- package/lib/request/cancel-key-deletion-request.d.ts +1 -1
- package/lib/request/cancel-key-version-deletion-request.d.ts +1 -1
- package/lib/request/cancel-vault-deletion-request.d.ts +1 -1
- package/lib/request/change-key-compartment-request.d.ts +1 -1
- package/lib/request/change-vault-compartment-request.d.ts +1 -1
- package/lib/request/create-ekms-private-endpoint-request.d.ts +1 -1
- package/lib/request/create-key-request.d.ts +1 -1
- package/lib/request/create-key-version-request.d.ts +1 -1
- package/lib/request/create-vault-replica-request.d.ts +1 -1
- package/lib/request/create-vault-request.d.ts +1 -1
- package/lib/request/decrypt-request.d.ts +1 -1
- package/lib/request/delete-ekms-private-endpoint-request.d.ts +1 -1
- package/lib/request/delete-vault-replica-request.d.ts +1 -1
- package/lib/request/disable-key-request.d.ts +1 -1
- package/lib/request/enable-key-request.d.ts +1 -1
- package/lib/request/encrypt-request.d.ts +1 -1
- package/lib/request/export-key-request.d.ts +1 -1
- package/lib/request/generate-data-encryption-key-request.d.ts +1 -1
- package/lib/request/get-ekms-private-endpoint-request.d.ts +1 -1
- package/lib/request/get-key-request.d.ts +1 -1
- package/lib/request/get-key-version-request.d.ts +1 -1
- package/lib/request/get-replication-status-request.d.ts +1 -1
- package/lib/request/get-vault-request.d.ts +1 -1
- package/lib/request/get-vault-usage-request.d.ts +1 -1
- package/lib/request/get-wrapping-key-request.d.ts +1 -1
- package/lib/request/import-key-request.d.ts +1 -1
- package/lib/request/import-key-version-request.d.ts +1 -1
- package/lib/request/list-ekms-private-endpoints-request.d.ts +1 -1
- package/lib/request/list-key-versions-request.d.ts +1 -1
- package/lib/request/list-keys-request.d.ts +1 -1
- package/lib/request/list-vault-replicas-request.d.ts +1 -1
- package/lib/request/list-vaults-request.d.ts +1 -1
- package/lib/request/restore-key-from-file-request.d.ts +1 -1
- package/lib/request/restore-key-from-object-store-request.d.ts +1 -1
- package/lib/request/restore-vault-from-file-request.d.ts +1 -1
- package/lib/request/restore-vault-from-object-store-request.d.ts +1 -1
- package/lib/request/schedule-key-deletion-request.d.ts +1 -1
- package/lib/request/schedule-key-version-deletion-request.d.ts +1 -1
- package/lib/request/schedule-vault-deletion-request.d.ts +1 -1
- package/lib/request/sign-request.d.ts +1 -1
- package/lib/request/update-ekms-private-endpoint-request.d.ts +1 -1
- package/lib/request/update-key-request.d.ts +1 -1
- package/lib/request/update-vault-request.d.ts +1 -1
- package/lib/request/verify-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ import * as responses from "./response";
|
|
|
18
18
|
import { EkmWaiter } from "./ekm-waiter";
|
|
19
19
|
import { KmsManagementWaiter } from "./kmsmanagement-waiter";
|
|
20
20
|
import { KmsVaultWaiter } from "./kmsvault-waiter";
|
|
21
|
+
declare const Breaker: any;
|
|
21
22
|
export declare enum EkmApiKeys {
|
|
22
23
|
}
|
|
23
24
|
/**
|
|
@@ -31,7 +32,7 @@ export declare class EkmClient {
|
|
|
31
32
|
protected "_defaultHeaders": any;
|
|
32
33
|
protected "_waiters": EkmWaiter;
|
|
33
34
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
34
|
-
protected _circuitBreaker: null;
|
|
35
|
+
protected _circuitBreaker: typeof Breaker | null;
|
|
35
36
|
protected _httpOptions: any;
|
|
36
37
|
protected _bodyDuplexMode: any;
|
|
37
38
|
targetService: string;
|
|
@@ -84,13 +85,17 @@ export declare class EkmClient {
|
|
|
84
85
|
* @return The service waiters.
|
|
85
86
|
*/
|
|
86
87
|
getWaiters(): EkmWaiter;
|
|
88
|
+
/**
|
|
89
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
90
|
+
*/
|
|
91
|
+
shutdownCircuitBreaker(): void;
|
|
87
92
|
/**
|
|
88
93
|
* Create a new EKMS private endpoint used to connect to external key manager system
|
|
89
94
|
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
90
95
|
* @param CreateEkmsPrivateEndpointRequest
|
|
91
96
|
* @return CreateEkmsPrivateEndpointResponse
|
|
92
97
|
* @throws OciError when an error occurs
|
|
93
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
98
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/CreateEkmsPrivateEndpoint.ts.html |here} to see how to use CreateEkmsPrivateEndpoint API.
|
|
94
99
|
*/
|
|
95
100
|
createEkmsPrivateEndpoint(createEkmsPrivateEndpointRequest: requests.CreateEkmsPrivateEndpointRequest): Promise<responses.CreateEkmsPrivateEndpointResponse>;
|
|
96
101
|
/**
|
|
@@ -99,7 +104,7 @@ export declare class EkmClient {
|
|
|
99
104
|
* @param DeleteEkmsPrivateEndpointRequest
|
|
100
105
|
* @return DeleteEkmsPrivateEndpointResponse
|
|
101
106
|
* @throws OciError when an error occurs
|
|
102
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
107
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/DeleteEkmsPrivateEndpoint.ts.html |here} to see how to use DeleteEkmsPrivateEndpoint API.
|
|
103
108
|
*/
|
|
104
109
|
deleteEkmsPrivateEndpoint(deleteEkmsPrivateEndpointRequest: requests.DeleteEkmsPrivateEndpointRequest): Promise<responses.DeleteEkmsPrivateEndpointResponse>;
|
|
105
110
|
/**
|
|
@@ -108,7 +113,7 @@ export declare class EkmClient {
|
|
|
108
113
|
* @param GetEkmsPrivateEndpointRequest
|
|
109
114
|
* @return GetEkmsPrivateEndpointResponse
|
|
110
115
|
* @throws OciError when an error occurs
|
|
111
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
116
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/GetEkmsPrivateEndpoint.ts.html |here} to see how to use GetEkmsPrivateEndpoint API.
|
|
112
117
|
*/
|
|
113
118
|
getEkmsPrivateEndpoint(getEkmsPrivateEndpointRequest: requests.GetEkmsPrivateEndpointRequest): Promise<responses.GetEkmsPrivateEndpointResponse>;
|
|
114
119
|
/**
|
|
@@ -118,7 +123,7 @@ export declare class EkmClient {
|
|
|
118
123
|
* @param ListEkmsPrivateEndpointsRequest
|
|
119
124
|
* @return ListEkmsPrivateEndpointsResponse
|
|
120
125
|
* @throws OciError when an error occurs
|
|
121
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
126
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/ListEkmsPrivateEndpoints.ts.html |here} to see how to use ListEkmsPrivateEndpoints API.
|
|
122
127
|
*/
|
|
123
128
|
listEkmsPrivateEndpoints(listEkmsPrivateEndpointsRequest: requests.ListEkmsPrivateEndpointsRequest): Promise<responses.ListEkmsPrivateEndpointsResponse>;
|
|
124
129
|
/**
|
|
@@ -159,7 +164,7 @@ export declare class EkmClient {
|
|
|
159
164
|
* @param UpdateEkmsPrivateEndpointRequest
|
|
160
165
|
* @return UpdateEkmsPrivateEndpointResponse
|
|
161
166
|
* @throws OciError when an error occurs
|
|
162
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
167
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/UpdateEkmsPrivateEndpoint.ts.html |here} to see how to use UpdateEkmsPrivateEndpoint API.
|
|
163
168
|
*/
|
|
164
169
|
updateEkmsPrivateEndpoint(updateEkmsPrivateEndpointRequest: requests.UpdateEkmsPrivateEndpointRequest): Promise<responses.UpdateEkmsPrivateEndpointResponse>;
|
|
165
170
|
}
|
|
@@ -175,7 +180,7 @@ export declare class KmsCryptoClient {
|
|
|
175
180
|
protected "_endpoint": string;
|
|
176
181
|
protected "_defaultHeaders": any;
|
|
177
182
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
178
|
-
protected _circuitBreaker: null;
|
|
183
|
+
protected _circuitBreaker: typeof Breaker | null;
|
|
179
184
|
protected _httpOptions: any;
|
|
180
185
|
protected _bodyDuplexMode: any;
|
|
181
186
|
targetService: string;
|
|
@@ -197,6 +202,10 @@ export declare class KmsCryptoClient {
|
|
|
197
202
|
* @param realmSpecificEndpointTemplateEnabled flag to enable the use of realm specific endpoint template
|
|
198
203
|
*/
|
|
199
204
|
set useRealmSpecificEndpointTemplate(realmSpecificEndpointTemplateEnabled: boolean);
|
|
205
|
+
/**
|
|
206
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
207
|
+
*/
|
|
208
|
+
shutdownCircuitBreaker(): void;
|
|
200
209
|
/**
|
|
201
210
|
* Decrypts data using the given [DecryptDataDetails](https://docs.cloud.oracle.com/api/#/en/key/latest/datatypes/DecryptDataDetails) resource.
|
|
202
211
|
*
|
|
@@ -204,7 +213,7 @@ export declare class KmsCryptoClient {
|
|
|
204
213
|
* @param DecryptRequest
|
|
205
214
|
* @return DecryptResponse
|
|
206
215
|
* @throws OciError when an error occurs
|
|
207
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
216
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/Decrypt.ts.html |here} to see how to use Decrypt API.
|
|
208
217
|
*/
|
|
209
218
|
decrypt(decryptRequest: requests.DecryptRequest): Promise<responses.DecryptResponse>;
|
|
210
219
|
/**
|
|
@@ -215,7 +224,7 @@ export declare class KmsCryptoClient {
|
|
|
215
224
|
* @param EncryptRequest
|
|
216
225
|
* @return EncryptResponse
|
|
217
226
|
* @throws OciError when an error occurs
|
|
218
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
227
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/Encrypt.ts.html |here} to see how to use Encrypt API.
|
|
219
228
|
*/
|
|
220
229
|
encrypt(encryptRequest: requests.EncryptRequest): Promise<responses.EncryptResponse>;
|
|
221
230
|
/**
|
|
@@ -228,7 +237,7 @@ export declare class KmsCryptoClient {
|
|
|
228
237
|
* @param ExportKeyRequest
|
|
229
238
|
* @return ExportKeyResponse
|
|
230
239
|
* @throws OciError when an error occurs
|
|
231
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
240
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/ExportKey.ts.html |here} to see how to use ExportKey API.
|
|
232
241
|
*/
|
|
233
242
|
exportKey(exportKeyRequest: requests.ExportKeyRequest): Promise<responses.ExportKeyResponse>;
|
|
234
243
|
/**
|
|
@@ -238,7 +247,7 @@ export declare class KmsCryptoClient {
|
|
|
238
247
|
* @param GenerateDataEncryptionKeyRequest
|
|
239
248
|
* @return GenerateDataEncryptionKeyResponse
|
|
240
249
|
* @throws OciError when an error occurs
|
|
241
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
250
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/GenerateDataEncryptionKey.ts.html |here} to see how to use GenerateDataEncryptionKey API.
|
|
242
251
|
*/
|
|
243
252
|
generateDataEncryptionKey(generateDataEncryptionKeyRequest: requests.GenerateDataEncryptionKeyRequest): Promise<responses.GenerateDataEncryptionKeyResponse>;
|
|
244
253
|
/**
|
|
@@ -251,7 +260,7 @@ export declare class KmsCryptoClient {
|
|
|
251
260
|
* @param SignRequest
|
|
252
261
|
* @return SignResponse
|
|
253
262
|
* @throws OciError when an error occurs
|
|
254
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
263
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/Sign.ts.html |here} to see how to use Sign API.
|
|
255
264
|
*/
|
|
256
265
|
sign(signRequest: requests.SignRequest): Promise<responses.SignResponse>;
|
|
257
266
|
/**
|
|
@@ -264,7 +273,7 @@ export declare class KmsCryptoClient {
|
|
|
264
273
|
* @param VerifyRequest
|
|
265
274
|
* @return VerifyResponse
|
|
266
275
|
* @throws OciError when an error occurs
|
|
267
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
276
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/Verify.ts.html |here} to see how to use Verify API.
|
|
268
277
|
*/
|
|
269
278
|
verify(verifyRequest: requests.VerifyRequest): Promise<responses.VerifyResponse>;
|
|
270
279
|
}
|
|
@@ -281,7 +290,7 @@ export declare class KmsManagementClient {
|
|
|
281
290
|
protected "_defaultHeaders": any;
|
|
282
291
|
protected "_waiters": KmsManagementWaiter;
|
|
283
292
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
284
|
-
protected _circuitBreaker: null;
|
|
293
|
+
protected _circuitBreaker: typeof Breaker | null;
|
|
285
294
|
protected _httpOptions: any;
|
|
286
295
|
protected _bodyDuplexMode: any;
|
|
287
296
|
targetService: string;
|
|
@@ -316,6 +325,10 @@ export declare class KmsManagementClient {
|
|
|
316
325
|
* @return The service waiters.
|
|
317
326
|
*/
|
|
318
327
|
getWaiters(): KmsManagementWaiter;
|
|
328
|
+
/**
|
|
329
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
330
|
+
*/
|
|
331
|
+
shutdownCircuitBreaker(): void;
|
|
319
332
|
/**
|
|
320
333
|
* Backs up an encrypted file that contains all key versions and metadata of the specified key so that you can restore
|
|
321
334
|
* the key later. The file also contains the metadata of the vault that the key belonged to.
|
|
@@ -324,7 +337,7 @@ export declare class KmsManagementClient {
|
|
|
324
337
|
* @param BackupKeyRequest
|
|
325
338
|
* @return BackupKeyResponse
|
|
326
339
|
* @throws OciError when an error occurs
|
|
327
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
340
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/BackupKey.ts.html |here} to see how to use BackupKey API.
|
|
328
341
|
*/
|
|
329
342
|
backupKey(backupKeyRequest: requests.BackupKeyRequest): Promise<responses.BackupKeyResponse>;
|
|
330
343
|
/**
|
|
@@ -341,7 +354,7 @@ export declare class KmsManagementClient {
|
|
|
341
354
|
* @param CancelKeyDeletionRequest
|
|
342
355
|
* @return CancelKeyDeletionResponse
|
|
343
356
|
* @throws OciError when an error occurs
|
|
344
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
357
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/CancelKeyDeletion.ts.html |here} to see how to use CancelKeyDeletion API.
|
|
345
358
|
*/
|
|
346
359
|
cancelKeyDeletion(cancelKeyDeletionRequest: requests.CancelKeyDeletionRequest): Promise<responses.CancelKeyDeletionResponse>;
|
|
347
360
|
/**
|
|
@@ -358,7 +371,7 @@ export declare class KmsManagementClient {
|
|
|
358
371
|
* @param CancelKeyVersionDeletionRequest
|
|
359
372
|
* @return CancelKeyVersionDeletionResponse
|
|
360
373
|
* @throws OciError when an error occurs
|
|
361
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
374
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/CancelKeyVersionDeletion.ts.html |here} to see how to use CancelKeyVersionDeletion API.
|
|
362
375
|
*/
|
|
363
376
|
cancelKeyVersionDeletion(cancelKeyVersionDeletionRequest: requests.CancelKeyVersionDeletionRequest): Promise<responses.CancelKeyVersionDeletionResponse>;
|
|
364
377
|
/**
|
|
@@ -376,7 +389,7 @@ export declare class KmsManagementClient {
|
|
|
376
389
|
* @param ChangeKeyCompartmentRequest
|
|
377
390
|
* @return ChangeKeyCompartmentResponse
|
|
378
391
|
* @throws OciError when an error occurs
|
|
379
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
392
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/ChangeKeyCompartment.ts.html |here} to see how to use ChangeKeyCompartment API.
|
|
380
393
|
*/
|
|
381
394
|
changeKeyCompartment(changeKeyCompartmentRequest: requests.ChangeKeyCompartmentRequest): Promise<responses.ChangeKeyCompartmentResponse>;
|
|
382
395
|
/**
|
|
@@ -391,7 +404,7 @@ export declare class KmsManagementClient {
|
|
|
391
404
|
* @param CreateKeyRequest
|
|
392
405
|
* @return CreateKeyResponse
|
|
393
406
|
* @throws OciError when an error occurs
|
|
394
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
407
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/CreateKey.ts.html |here} to see how to use CreateKey API.
|
|
395
408
|
*/
|
|
396
409
|
createKey(createKeyRequest: requests.CreateKeyRequest): Promise<responses.CreateKeyResponse>;
|
|
397
410
|
/**
|
|
@@ -407,7 +420,7 @@ export declare class KmsManagementClient {
|
|
|
407
420
|
* @param CreateKeyVersionRequest
|
|
408
421
|
* @return CreateKeyVersionResponse
|
|
409
422
|
* @throws OciError when an error occurs
|
|
410
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
423
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/CreateKeyVersion.ts.html |here} to see how to use CreateKeyVersion API.
|
|
411
424
|
*/
|
|
412
425
|
createKeyVersion(createKeyVersionRequest: requests.CreateKeyVersionRequest): Promise<responses.CreateKeyVersionResponse>;
|
|
413
426
|
/**
|
|
@@ -423,7 +436,7 @@ export declare class KmsManagementClient {
|
|
|
423
436
|
* @param DisableKeyRequest
|
|
424
437
|
* @return DisableKeyResponse
|
|
425
438
|
* @throws OciError when an error occurs
|
|
426
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
439
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/DisableKey.ts.html |here} to see how to use DisableKey API.
|
|
427
440
|
*/
|
|
428
441
|
disableKey(disableKeyRequest: requests.DisableKeyRequest): Promise<responses.DisableKeyResponse>;
|
|
429
442
|
/**
|
|
@@ -439,7 +452,7 @@ export declare class KmsManagementClient {
|
|
|
439
452
|
* @param EnableKeyRequest
|
|
440
453
|
* @return EnableKeyResponse
|
|
441
454
|
* @throws OciError when an error occurs
|
|
442
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
455
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/EnableKey.ts.html |here} to see how to use EnableKey API.
|
|
443
456
|
*/
|
|
444
457
|
enableKey(enableKeyRequest: requests.EnableKeyRequest): Promise<responses.EnableKeyResponse>;
|
|
445
458
|
/**
|
|
@@ -454,7 +467,7 @@ export declare class KmsManagementClient {
|
|
|
454
467
|
* @param GetKeyRequest
|
|
455
468
|
* @return GetKeyResponse
|
|
456
469
|
* @throws OciError when an error occurs
|
|
457
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
470
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/GetKey.ts.html |here} to see how to use GetKey API.
|
|
458
471
|
*/
|
|
459
472
|
getKey(getKeyRequest: requests.GetKeyRequest): Promise<responses.GetKeyResponse>;
|
|
460
473
|
/**
|
|
@@ -469,7 +482,7 @@ export declare class KmsManagementClient {
|
|
|
469
482
|
* @param GetKeyVersionRequest
|
|
470
483
|
* @return GetKeyVersionResponse
|
|
471
484
|
* @throws OciError when an error occurs
|
|
472
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
485
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/GetKeyVersion.ts.html |here} to see how to use GetKeyVersion API.
|
|
473
486
|
*/
|
|
474
487
|
getKeyVersion(getKeyVersionRequest: requests.GetKeyVersionRequest): Promise<responses.GetKeyVersionResponse>;
|
|
475
488
|
/**
|
|
@@ -482,7 +495,7 @@ export declare class KmsManagementClient {
|
|
|
482
495
|
* @param GetReplicationStatusRequest
|
|
483
496
|
* @return GetReplicationStatusResponse
|
|
484
497
|
* @throws OciError when an error occurs
|
|
485
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
498
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/GetReplicationStatus.ts.html |here} to see how to use GetReplicationStatus API.
|
|
486
499
|
*/
|
|
487
500
|
getReplicationStatus(getReplicationStatusRequest: requests.GetReplicationStatusRequest): Promise<responses.GetReplicationStatusResponse>;
|
|
488
501
|
/**
|
|
@@ -493,7 +506,7 @@ export declare class KmsManagementClient {
|
|
|
493
506
|
* @param GetWrappingKeyRequest
|
|
494
507
|
* @return GetWrappingKeyResponse
|
|
495
508
|
* @throws OciError when an error occurs
|
|
496
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
509
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/GetWrappingKey.ts.html |here} to see how to use GetWrappingKey API.
|
|
497
510
|
*/
|
|
498
511
|
getWrappingKey(getWrappingKeyRequest: requests.GetWrappingKeyRequest): Promise<responses.GetWrappingKeyResponse>;
|
|
499
512
|
/**
|
|
@@ -508,7 +521,7 @@ export declare class KmsManagementClient {
|
|
|
508
521
|
* @param ImportKeyRequest
|
|
509
522
|
* @return ImportKeyResponse
|
|
510
523
|
* @throws OciError when an error occurs
|
|
511
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
524
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/ImportKey.ts.html |here} to see how to use ImportKey API.
|
|
512
525
|
*/
|
|
513
526
|
importKey(importKeyRequest: requests.ImportKeyRequest): Promise<responses.ImportKeyResponse>;
|
|
514
527
|
/**
|
|
@@ -523,7 +536,7 @@ export declare class KmsManagementClient {
|
|
|
523
536
|
* @param ImportKeyVersionRequest
|
|
524
537
|
* @return ImportKeyVersionResponse
|
|
525
538
|
* @throws OciError when an error occurs
|
|
526
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
539
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/ImportKeyVersion.ts.html |here} to see how to use ImportKeyVersion API.
|
|
527
540
|
*/
|
|
528
541
|
importKeyVersion(importKeyVersionRequest: requests.ImportKeyVersionRequest): Promise<responses.ImportKeyVersionResponse>;
|
|
529
542
|
/**
|
|
@@ -539,7 +552,7 @@ export declare class KmsManagementClient {
|
|
|
539
552
|
* @param ListKeyVersionsRequest
|
|
540
553
|
* @return ListKeyVersionsResponse
|
|
541
554
|
* @throws OciError when an error occurs
|
|
542
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
555
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/ListKeyVersions.ts.html |here} to see how to use ListKeyVersions API.
|
|
543
556
|
*/
|
|
544
557
|
listKeyVersions(listKeyVersionsRequest: requests.ListKeyVersionsRequest): Promise<responses.ListKeyVersionsResponse>;
|
|
545
558
|
/**
|
|
@@ -586,7 +599,7 @@ export declare class KmsManagementClient {
|
|
|
586
599
|
* @param ListKeysRequest
|
|
587
600
|
* @return ListKeysResponse
|
|
588
601
|
* @throws OciError when an error occurs
|
|
589
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
602
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/ListKeys.ts.html |here} to see how to use ListKeys API.
|
|
590
603
|
*/
|
|
591
604
|
listKeys(listKeysRequest: requests.ListKeysRequest): Promise<responses.ListKeysResponse>;
|
|
592
605
|
/**
|
|
@@ -630,7 +643,7 @@ export declare class KmsManagementClient {
|
|
|
630
643
|
* @param RestoreKeyFromFileRequest
|
|
631
644
|
* @return RestoreKeyFromFileResponse
|
|
632
645
|
* @throws OciError when an error occurs
|
|
633
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
646
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/RestoreKeyFromFile.ts.html |here} to see how to use RestoreKeyFromFile API.
|
|
634
647
|
*/
|
|
635
648
|
restoreKeyFromFile(restoreKeyFromFileRequest: requests.RestoreKeyFromFileRequest): Promise<responses.RestoreKeyFromFileResponse>;
|
|
636
649
|
/**
|
|
@@ -642,7 +655,7 @@ export declare class KmsManagementClient {
|
|
|
642
655
|
* @param RestoreKeyFromObjectStoreRequest
|
|
643
656
|
* @return RestoreKeyFromObjectStoreResponse
|
|
644
657
|
* @throws OciError when an error occurs
|
|
645
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
658
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/RestoreKeyFromObjectStore.ts.html |here} to see how to use RestoreKeyFromObjectStore API.
|
|
646
659
|
*/
|
|
647
660
|
restoreKeyFromObjectStore(restoreKeyFromObjectStoreRequest: requests.RestoreKeyFromObjectStoreRequest): Promise<responses.RestoreKeyFromObjectStoreResponse>;
|
|
648
661
|
/**
|
|
@@ -658,7 +671,7 @@ export declare class KmsManagementClient {
|
|
|
658
671
|
* @param ScheduleKeyDeletionRequest
|
|
659
672
|
* @return ScheduleKeyDeletionResponse
|
|
660
673
|
* @throws OciError when an error occurs
|
|
661
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
674
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/ScheduleKeyDeletion.ts.html |here} to see how to use ScheduleKeyDeletion API.
|
|
662
675
|
*/
|
|
663
676
|
scheduleKeyDeletion(scheduleKeyDeletionRequest: requests.ScheduleKeyDeletionRequest): Promise<responses.ScheduleKeyDeletionResponse>;
|
|
664
677
|
/**
|
|
@@ -674,7 +687,7 @@ export declare class KmsManagementClient {
|
|
|
674
687
|
* @param ScheduleKeyVersionDeletionRequest
|
|
675
688
|
* @return ScheduleKeyVersionDeletionResponse
|
|
676
689
|
* @throws OciError when an error occurs
|
|
677
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
690
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/ScheduleKeyVersionDeletion.ts.html |here} to see how to use ScheduleKeyVersionDeletion API.
|
|
678
691
|
*/
|
|
679
692
|
scheduleKeyVersionDeletion(scheduleKeyVersionDeletionRequest: requests.ScheduleKeyVersionDeletionRequest): Promise<responses.ScheduleKeyVersionDeletionResponse>;
|
|
680
693
|
/**
|
|
@@ -691,7 +704,7 @@ export declare class KmsManagementClient {
|
|
|
691
704
|
* @param UpdateKeyRequest
|
|
692
705
|
* @return UpdateKeyResponse
|
|
693
706
|
* @throws OciError when an error occurs
|
|
694
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
707
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/UpdateKey.ts.html |here} to see how to use UpdateKey API.
|
|
695
708
|
*/
|
|
696
709
|
updateKey(updateKeyRequest: requests.UpdateKeyRequest): Promise<responses.UpdateKeyResponse>;
|
|
697
710
|
}
|
|
@@ -708,7 +721,7 @@ export declare class KmsVaultClient {
|
|
|
708
721
|
protected "_defaultHeaders": any;
|
|
709
722
|
protected "_waiters": KmsVaultWaiter;
|
|
710
723
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
711
|
-
protected _circuitBreaker: null;
|
|
724
|
+
protected _circuitBreaker: typeof Breaker | null;
|
|
712
725
|
protected _httpOptions: any;
|
|
713
726
|
protected _bodyDuplexMode: any;
|
|
714
727
|
targetService: string;
|
|
@@ -761,6 +774,10 @@ export declare class KmsVaultClient {
|
|
|
761
774
|
* @return The service waiters.
|
|
762
775
|
*/
|
|
763
776
|
getWaiters(): KmsVaultWaiter;
|
|
777
|
+
/**
|
|
778
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
779
|
+
*/
|
|
780
|
+
shutdownCircuitBreaker(): void;
|
|
764
781
|
/**
|
|
765
782
|
* Backs up an encrypted file that contains all the metadata of a vault so that you can restore the vault later.
|
|
766
783
|
* You can backup a vault whether or not it contains keys. This operation only backs up the
|
|
@@ -770,7 +787,7 @@ export declare class KmsVaultClient {
|
|
|
770
787
|
* @param BackupVaultRequest
|
|
771
788
|
* @return BackupVaultResponse
|
|
772
789
|
* @throws OciError when an error occurs
|
|
773
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
790
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/BackupVault.ts.html |here} to see how to use BackupVault API.
|
|
774
791
|
*/
|
|
775
792
|
backupVault(backupVaultRequest: requests.BackupVaultRequest): Promise<responses.BackupVaultResponse>;
|
|
776
793
|
/**
|
|
@@ -788,7 +805,7 @@ export declare class KmsVaultClient {
|
|
|
788
805
|
* @param CancelVaultDeletionRequest
|
|
789
806
|
* @return CancelVaultDeletionResponse
|
|
790
807
|
* @throws OciError when an error occurs
|
|
791
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
808
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/CancelVaultDeletion.ts.html |here} to see how to use CancelVaultDeletion API.
|
|
792
809
|
*/
|
|
793
810
|
cancelVaultDeletion(cancelVaultDeletionRequest: requests.CancelVaultDeletionRequest): Promise<responses.CancelVaultDeletionResponse>;
|
|
794
811
|
/**
|
|
@@ -806,7 +823,7 @@ export declare class KmsVaultClient {
|
|
|
806
823
|
* @param ChangeVaultCompartmentRequest
|
|
807
824
|
* @return ChangeVaultCompartmentResponse
|
|
808
825
|
* @throws OciError when an error occurs
|
|
809
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
826
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/ChangeVaultCompartment.ts.html |here} to see how to use ChangeVaultCompartment API.
|
|
810
827
|
*/
|
|
811
828
|
changeVaultCompartment(changeVaultCompartmentRequest: requests.ChangeVaultCompartmentRequest): Promise<responses.ChangeVaultCompartmentResponse>;
|
|
812
829
|
/**
|
|
@@ -824,7 +841,7 @@ export declare class KmsVaultClient {
|
|
|
824
841
|
* @param CreateVaultRequest
|
|
825
842
|
* @return CreateVaultResponse
|
|
826
843
|
* @throws OciError when an error occurs
|
|
827
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
844
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/CreateVault.ts.html |here} to see how to use CreateVault API.
|
|
828
845
|
*/
|
|
829
846
|
createVault(createVaultRequest: requests.CreateVaultRequest): Promise<responses.CreateVaultResponse>;
|
|
830
847
|
/**
|
|
@@ -843,7 +860,7 @@ export declare class KmsVaultClient {
|
|
|
843
860
|
* @param CreateVaultReplicaRequest
|
|
844
861
|
* @return CreateVaultReplicaResponse
|
|
845
862
|
* @throws OciError when an error occurs
|
|
846
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
863
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/CreateVaultReplica.ts.html |here} to see how to use CreateVaultReplica API.
|
|
847
864
|
*/
|
|
848
865
|
createVaultReplica(createVaultReplicaRequest: requests.CreateVaultReplicaRequest): Promise<responses.CreateVaultReplicaResponse>;
|
|
849
866
|
/**
|
|
@@ -858,7 +875,7 @@ export declare class KmsVaultClient {
|
|
|
858
875
|
* @param DeleteVaultReplicaRequest
|
|
859
876
|
* @return DeleteVaultReplicaResponse
|
|
860
877
|
* @throws OciError when an error occurs
|
|
861
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
878
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/DeleteVaultReplica.ts.html |here} to see how to use DeleteVaultReplica API.
|
|
862
879
|
*/
|
|
863
880
|
deleteVaultReplica(deleteVaultReplicaRequest: requests.DeleteVaultReplicaRequest): Promise<responses.DeleteVaultReplicaResponse>;
|
|
864
881
|
/**
|
|
@@ -873,7 +890,7 @@ export declare class KmsVaultClient {
|
|
|
873
890
|
* @param GetVaultRequest
|
|
874
891
|
* @return GetVaultResponse
|
|
875
892
|
* @throws OciError when an error occurs
|
|
876
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
893
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/GetVault.ts.html |here} to see how to use GetVault API.
|
|
877
894
|
*/
|
|
878
895
|
getVault(getVaultRequest: requests.GetVaultRequest): Promise<responses.GetVaultResponse>;
|
|
879
896
|
/**
|
|
@@ -883,7 +900,7 @@ export declare class KmsVaultClient {
|
|
|
883
900
|
* @param GetVaultUsageRequest
|
|
884
901
|
* @return GetVaultUsageResponse
|
|
885
902
|
* @throws OciError when an error occurs
|
|
886
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
903
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/GetVaultUsage.ts.html |here} to see how to use GetVaultUsage API.
|
|
887
904
|
*/
|
|
888
905
|
getVaultUsage(getVaultUsageRequest: requests.GetVaultUsageRequest): Promise<responses.GetVaultUsageResponse>;
|
|
889
906
|
/**
|
|
@@ -898,7 +915,7 @@ export declare class KmsVaultClient {
|
|
|
898
915
|
* @param ListVaultReplicasRequest
|
|
899
916
|
* @return ListVaultReplicasResponse
|
|
900
917
|
* @throws OciError when an error occurs
|
|
901
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
918
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/ListVaultReplicas.ts.html |here} to see how to use ListVaultReplicas API.
|
|
902
919
|
*/
|
|
903
920
|
listVaultReplicas(listVaultReplicasRequest: requests.ListVaultReplicasRequest): Promise<responses.ListVaultReplicasResponse>;
|
|
904
921
|
/**
|
|
@@ -945,7 +962,7 @@ export declare class KmsVaultClient {
|
|
|
945
962
|
* @param ListVaultsRequest
|
|
946
963
|
* @return ListVaultsResponse
|
|
947
964
|
* @throws OciError when an error occurs
|
|
948
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
965
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/ListVaults.ts.html |here} to see how to use ListVaults API.
|
|
949
966
|
*/
|
|
950
967
|
listVaults(listVaultsRequest: requests.ListVaultsRequest): Promise<responses.ListVaultsResponse>;
|
|
951
968
|
/**
|
|
@@ -989,7 +1006,7 @@ export declare class KmsVaultClient {
|
|
|
989
1006
|
* @param RestoreVaultFromFileRequest
|
|
990
1007
|
* @return RestoreVaultFromFileResponse
|
|
991
1008
|
* @throws OciError when an error occurs
|
|
992
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1009
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/RestoreVaultFromFile.ts.html |here} to see how to use RestoreVaultFromFile API.
|
|
993
1010
|
*/
|
|
994
1011
|
restoreVaultFromFile(restoreVaultFromFileRequest: requests.RestoreVaultFromFileRequest): Promise<responses.RestoreVaultFromFileResponse>;
|
|
995
1012
|
/**
|
|
@@ -1001,7 +1018,7 @@ export declare class KmsVaultClient {
|
|
|
1001
1018
|
* @param RestoreVaultFromObjectStoreRequest
|
|
1002
1019
|
* @return RestoreVaultFromObjectStoreResponse
|
|
1003
1020
|
* @throws OciError when an error occurs
|
|
1004
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1021
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/RestoreVaultFromObjectStore.ts.html |here} to see how to use RestoreVaultFromObjectStore API.
|
|
1005
1022
|
*/
|
|
1006
1023
|
restoreVaultFromObjectStore(restoreVaultFromObjectStoreRequest: requests.RestoreVaultFromObjectStoreRequest): Promise<responses.RestoreVaultFromObjectStoreResponse>;
|
|
1007
1024
|
/**
|
|
@@ -1020,7 +1037,7 @@ export declare class KmsVaultClient {
|
|
|
1020
1037
|
* @param ScheduleVaultDeletionRequest
|
|
1021
1038
|
* @return ScheduleVaultDeletionResponse
|
|
1022
1039
|
* @throws OciError when an error occurs
|
|
1023
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1040
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/ScheduleVaultDeletion.ts.html |here} to see how to use ScheduleVaultDeletion API.
|
|
1024
1041
|
*/
|
|
1025
1042
|
scheduleVaultDeletion(scheduleVaultDeletionRequest: requests.ScheduleVaultDeletionRequest): Promise<responses.ScheduleVaultDeletionResponse>;
|
|
1026
1043
|
/**
|
|
@@ -1037,7 +1054,8 @@ export declare class KmsVaultClient {
|
|
|
1037
1054
|
* @param UpdateVaultRequest
|
|
1038
1055
|
* @return UpdateVaultResponse
|
|
1039
1056
|
* @throws OciError when an error occurs
|
|
1040
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1057
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/keymanagement/UpdateVault.ts.html |here} to see how to use UpdateVault API.
|
|
1041
1058
|
*/
|
|
1042
1059
|
updateVault(updateVaultRequest: requests.UpdateVaultRequest): Promise<responses.UpdateVaultResponse>;
|
|
1043
1060
|
}
|
|
1061
|
+
export {};
|