oci-keymanagement 2.84.0 → 2.84.2
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 +78 -58
- package/lib/client.js +88 -58
- 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-hsm-cluster-deletion-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-hsm-cluster-compartment-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-hsm-cluster-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/download-certificate-signing-request-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-hsm-cluster-request.d.ts +1 -1
- package/lib/request/get-hsm-partition-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-pre-co-user-credentials-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-hsm-clusters-request.d.ts +1 -1
- package/lib/request/list-hsm-partitions-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-hsm-cluster-deletion-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-hsm-cluster-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/upload-partition-certificates-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
|
@@ -90,13 +90,17 @@ export declare class EkmClient {
|
|
|
90
90
|
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
91
91
|
*/
|
|
92
92
|
shutdownCircuitBreaker(): void;
|
|
93
|
+
/**
|
|
94
|
+
* Close the client once it is no longer needed
|
|
95
|
+
*/
|
|
96
|
+
close(): void;
|
|
93
97
|
/**
|
|
94
98
|
* Create a new EKMS private endpoint used to connect to external key manager system
|
|
95
99
|
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
96
100
|
* @param CreateEkmsPrivateEndpointRequest
|
|
97
101
|
* @return CreateEkmsPrivateEndpointResponse
|
|
98
102
|
* @throws OciError when an error occurs
|
|
99
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
103
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/CreateEkmsPrivateEndpoint.ts.html |here} to see how to use CreateEkmsPrivateEndpoint API.
|
|
100
104
|
*/
|
|
101
105
|
createEkmsPrivateEndpoint(createEkmsPrivateEndpointRequest: requests.CreateEkmsPrivateEndpointRequest): Promise<responses.CreateEkmsPrivateEndpointResponse>;
|
|
102
106
|
/**
|
|
@@ -105,7 +109,7 @@ export declare class EkmClient {
|
|
|
105
109
|
* @param DeleteEkmsPrivateEndpointRequest
|
|
106
110
|
* @return DeleteEkmsPrivateEndpointResponse
|
|
107
111
|
* @throws OciError when an error occurs
|
|
108
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
112
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/DeleteEkmsPrivateEndpoint.ts.html |here} to see how to use DeleteEkmsPrivateEndpoint API.
|
|
109
113
|
*/
|
|
110
114
|
deleteEkmsPrivateEndpoint(deleteEkmsPrivateEndpointRequest: requests.DeleteEkmsPrivateEndpointRequest): Promise<responses.DeleteEkmsPrivateEndpointResponse>;
|
|
111
115
|
/**
|
|
@@ -114,7 +118,7 @@ export declare class EkmClient {
|
|
|
114
118
|
* @param GetEkmsPrivateEndpointRequest
|
|
115
119
|
* @return GetEkmsPrivateEndpointResponse
|
|
116
120
|
* @throws OciError when an error occurs
|
|
117
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
121
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/GetEkmsPrivateEndpoint.ts.html |here} to see how to use GetEkmsPrivateEndpoint API.
|
|
118
122
|
*/
|
|
119
123
|
getEkmsPrivateEndpoint(getEkmsPrivateEndpointRequest: requests.GetEkmsPrivateEndpointRequest): Promise<responses.GetEkmsPrivateEndpointResponse>;
|
|
120
124
|
/**
|
|
@@ -124,7 +128,7 @@ export declare class EkmClient {
|
|
|
124
128
|
* @param ListEkmsPrivateEndpointsRequest
|
|
125
129
|
* @return ListEkmsPrivateEndpointsResponse
|
|
126
130
|
* @throws OciError when an error occurs
|
|
127
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
131
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/ListEkmsPrivateEndpoints.ts.html |here} to see how to use ListEkmsPrivateEndpoints API.
|
|
128
132
|
*/
|
|
129
133
|
listEkmsPrivateEndpoints(listEkmsPrivateEndpointsRequest: requests.ListEkmsPrivateEndpointsRequest): Promise<responses.ListEkmsPrivateEndpointsResponse>;
|
|
130
134
|
/**
|
|
@@ -165,7 +169,7 @@ export declare class EkmClient {
|
|
|
165
169
|
* @param UpdateEkmsPrivateEndpointRequest
|
|
166
170
|
* @return UpdateEkmsPrivateEndpointResponse
|
|
167
171
|
* @throws OciError when an error occurs
|
|
168
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
172
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/UpdateEkmsPrivateEndpoint.ts.html |here} to see how to use UpdateEkmsPrivateEndpoint API.
|
|
169
173
|
*/
|
|
170
174
|
updateEkmsPrivateEndpoint(updateEkmsPrivateEndpointRequest: requests.UpdateEkmsPrivateEndpointRequest): Promise<responses.UpdateEkmsPrivateEndpointResponse>;
|
|
171
175
|
}
|
|
@@ -207,6 +211,10 @@ export declare class KmsCryptoClient {
|
|
|
207
211
|
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
208
212
|
*/
|
|
209
213
|
shutdownCircuitBreaker(): void;
|
|
214
|
+
/**
|
|
215
|
+
* Close the client once it is no longer needed
|
|
216
|
+
*/
|
|
217
|
+
close(): void;
|
|
210
218
|
/**
|
|
211
219
|
* Decrypts data using the given [DecryptDataDetails](https://docs.cloud.oracle.com/api/#/en/key/latest/datatypes/DecryptDataDetails) resource.
|
|
212
220
|
*
|
|
@@ -214,7 +222,7 @@ export declare class KmsCryptoClient {
|
|
|
214
222
|
* @param DecryptRequest
|
|
215
223
|
* @return DecryptResponse
|
|
216
224
|
* @throws OciError when an error occurs
|
|
217
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
225
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/Decrypt.ts.html |here} to see how to use Decrypt API.
|
|
218
226
|
*/
|
|
219
227
|
decrypt(decryptRequest: requests.DecryptRequest): Promise<responses.DecryptResponse>;
|
|
220
228
|
/**
|
|
@@ -225,7 +233,7 @@ export declare class KmsCryptoClient {
|
|
|
225
233
|
* @param EncryptRequest
|
|
226
234
|
* @return EncryptResponse
|
|
227
235
|
* @throws OciError when an error occurs
|
|
228
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
236
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/Encrypt.ts.html |here} to see how to use Encrypt API.
|
|
229
237
|
*/
|
|
230
238
|
encrypt(encryptRequest: requests.EncryptRequest): Promise<responses.EncryptResponse>;
|
|
231
239
|
/**
|
|
@@ -238,7 +246,7 @@ export declare class KmsCryptoClient {
|
|
|
238
246
|
* @param ExportKeyRequest
|
|
239
247
|
* @return ExportKeyResponse
|
|
240
248
|
* @throws OciError when an error occurs
|
|
241
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
249
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/ExportKey.ts.html |here} to see how to use ExportKey API.
|
|
242
250
|
*/
|
|
243
251
|
exportKey(exportKeyRequest: requests.ExportKeyRequest): Promise<responses.ExportKeyResponse>;
|
|
244
252
|
/**
|
|
@@ -248,7 +256,7 @@ export declare class KmsCryptoClient {
|
|
|
248
256
|
* @param GenerateDataEncryptionKeyRequest
|
|
249
257
|
* @return GenerateDataEncryptionKeyResponse
|
|
250
258
|
* @throws OciError when an error occurs
|
|
251
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
259
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/GenerateDataEncryptionKey.ts.html |here} to see how to use GenerateDataEncryptionKey API.
|
|
252
260
|
*/
|
|
253
261
|
generateDataEncryptionKey(generateDataEncryptionKeyRequest: requests.GenerateDataEncryptionKeyRequest): Promise<responses.GenerateDataEncryptionKeyResponse>;
|
|
254
262
|
/**
|
|
@@ -261,7 +269,7 @@ export declare class KmsCryptoClient {
|
|
|
261
269
|
* @param SignRequest
|
|
262
270
|
* @return SignResponse
|
|
263
271
|
* @throws OciError when an error occurs
|
|
264
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
272
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/Sign.ts.html |here} to see how to use Sign API.
|
|
265
273
|
*/
|
|
266
274
|
sign(signRequest: requests.SignRequest): Promise<responses.SignResponse>;
|
|
267
275
|
/**
|
|
@@ -274,7 +282,7 @@ export declare class KmsCryptoClient {
|
|
|
274
282
|
* @param VerifyRequest
|
|
275
283
|
* @return VerifyResponse
|
|
276
284
|
* @throws OciError when an error occurs
|
|
277
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
285
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/Verify.ts.html |here} to see how to use Verify API.
|
|
278
286
|
*/
|
|
279
287
|
verify(verifyRequest: requests.VerifyRequest): Promise<responses.VerifyResponse>;
|
|
280
288
|
}
|
|
@@ -348,13 +356,17 @@ export declare class KmsHsmClusterClient {
|
|
|
348
356
|
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
349
357
|
*/
|
|
350
358
|
shutdownCircuitBreaker(): void;
|
|
359
|
+
/**
|
|
360
|
+
* Close the client once it is no longer needed
|
|
361
|
+
*/
|
|
362
|
+
close(): void;
|
|
351
363
|
/**
|
|
352
364
|
* Cancels deletion of specified HSM Cluster, restores it and associated HSM partitions to pre-deletion states.
|
|
353
365
|
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
354
366
|
* @param CancelHsmClusterDeletionRequest
|
|
355
367
|
* @return CancelHsmClusterDeletionResponse
|
|
356
368
|
* @throws OciError when an error occurs
|
|
357
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
369
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/CancelHsmClusterDeletion.ts.html |here} to see how to use CancelHsmClusterDeletion API.
|
|
358
370
|
*/
|
|
359
371
|
cancelHsmClusterDeletion(cancelHsmClusterDeletionRequest: requests.CancelHsmClusterDeletionRequest): Promise<responses.CancelHsmClusterDeletionResponse>;
|
|
360
372
|
/**
|
|
@@ -364,7 +376,7 @@ export declare class KmsHsmClusterClient {
|
|
|
364
376
|
* @param ChangeHsmClusterCompartmentRequest
|
|
365
377
|
* @return ChangeHsmClusterCompartmentResponse
|
|
366
378
|
* @throws OciError when an error occurs
|
|
367
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
379
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/ChangeHsmClusterCompartment.ts.html |here} to see how to use ChangeHsmClusterCompartment API.
|
|
368
380
|
*/
|
|
369
381
|
changeHsmClusterCompartment(changeHsmClusterCompartmentRequest: requests.ChangeHsmClusterCompartmentRequest): Promise<responses.ChangeHsmClusterCompartmentResponse>;
|
|
370
382
|
/**
|
|
@@ -374,7 +386,7 @@ export declare class KmsHsmClusterClient {
|
|
|
374
386
|
* @param CreateHsmClusterRequest
|
|
375
387
|
* @return CreateHsmClusterResponse
|
|
376
388
|
* @throws OciError when an error occurs
|
|
377
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
389
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/CreateHsmCluster.ts.html |here} to see how to use CreateHsmCluster API.
|
|
378
390
|
*/
|
|
379
391
|
createHsmCluster(createHsmClusterRequest: requests.CreateHsmClusterRequest): Promise<responses.CreateHsmClusterResponse>;
|
|
380
392
|
/**
|
|
@@ -384,7 +396,7 @@ export declare class KmsHsmClusterClient {
|
|
|
384
396
|
* @param DownloadCertificateSigningRequestRequest
|
|
385
397
|
* @return DownloadCertificateSigningRequestResponse
|
|
386
398
|
* @throws OciError when an error occurs
|
|
387
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
399
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/DownloadCertificateSigningRequest.ts.html |here} to see how to use DownloadCertificateSigningRequest API.
|
|
388
400
|
*/
|
|
389
401
|
downloadCertificateSigningRequest(downloadCertificateSigningRequestRequest: requests.DownloadCertificateSigningRequestRequest): Promise<responses.DownloadCertificateSigningRequestResponse>;
|
|
390
402
|
/**
|
|
@@ -399,7 +411,7 @@ export declare class KmsHsmClusterClient {
|
|
|
399
411
|
* @param GetHsmClusterRequest
|
|
400
412
|
* @return GetHsmClusterResponse
|
|
401
413
|
* @throws OciError when an error occurs
|
|
402
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
414
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/GetHsmCluster.ts.html |here} to see how to use GetHsmCluster API.
|
|
403
415
|
*/
|
|
404
416
|
getHsmCluster(getHsmClusterRequest: requests.GetHsmClusterRequest): Promise<responses.GetHsmClusterResponse>;
|
|
405
417
|
/**
|
|
@@ -409,7 +421,7 @@ export declare class KmsHsmClusterClient {
|
|
|
409
421
|
* @param GetHsmPartitionRequest
|
|
410
422
|
* @return GetHsmPartitionResponse
|
|
411
423
|
* @throws OciError when an error occurs
|
|
412
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
424
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/GetHsmPartition.ts.html |here} to see how to use GetHsmPartition API.
|
|
413
425
|
*/
|
|
414
426
|
getHsmPartition(getHsmPartitionRequest: requests.GetHsmPartitionRequest): Promise<responses.GetHsmPartitionResponse>;
|
|
415
427
|
/**
|
|
@@ -419,7 +431,7 @@ export declare class KmsHsmClusterClient {
|
|
|
419
431
|
* @param GetPreCoUserCredentialsRequest
|
|
420
432
|
* @return GetPreCoUserCredentialsResponse
|
|
421
433
|
* @throws OciError when an error occurs
|
|
422
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
434
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/GetPreCoUserCredentials.ts.html |here} to see how to use GetPreCoUserCredentials API.
|
|
423
435
|
*/
|
|
424
436
|
getPreCoUserCredentials(getPreCoUserCredentialsRequest: requests.GetPreCoUserCredentialsRequest): Promise<responses.GetPreCoUserCredentialsResponse>;
|
|
425
437
|
/**
|
|
@@ -434,7 +446,7 @@ export declare class KmsHsmClusterClient {
|
|
|
434
446
|
* @param ListHsmClustersRequest
|
|
435
447
|
* @return ListHsmClustersResponse
|
|
436
448
|
* @throws OciError when an error occurs
|
|
437
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
449
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/ListHsmClusters.ts.html |here} to see how to use ListHsmClusters API.
|
|
438
450
|
*/
|
|
439
451
|
listHsmClusters(listHsmClustersRequest: requests.ListHsmClustersRequest): Promise<responses.ListHsmClustersResponse>;
|
|
440
452
|
/**
|
|
@@ -444,7 +456,7 @@ export declare class KmsHsmClusterClient {
|
|
|
444
456
|
* @param ListHsmPartitionsRequest
|
|
445
457
|
* @return ListHsmPartitionsResponse
|
|
446
458
|
* @throws OciError when an error occurs
|
|
447
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
459
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/ListHsmPartitions.ts.html |here} to see how to use ListHsmPartitions API.
|
|
448
460
|
*/
|
|
449
461
|
listHsmPartitions(listHsmPartitionsRequest: requests.ListHsmPartitionsRequest): Promise<responses.ListHsmPartitionsResponse>;
|
|
450
462
|
/**
|
|
@@ -455,7 +467,7 @@ export declare class KmsHsmClusterClient {
|
|
|
455
467
|
* @param ScheduleHsmClusterDeletionRequest
|
|
456
468
|
* @return ScheduleHsmClusterDeletionResponse
|
|
457
469
|
* @throws OciError when an error occurs
|
|
458
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
470
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/ScheduleHsmClusterDeletion.ts.html |here} to see how to use ScheduleHsmClusterDeletion API.
|
|
459
471
|
*/
|
|
460
472
|
scheduleHsmClusterDeletion(scheduleHsmClusterDeletionRequest: requests.ScheduleHsmClusterDeletionRequest): Promise<responses.ScheduleHsmClusterDeletionResponse>;
|
|
461
473
|
/**
|
|
@@ -470,7 +482,7 @@ export declare class KmsHsmClusterClient {
|
|
|
470
482
|
* @param UpdateHsmClusterRequest
|
|
471
483
|
* @return UpdateHsmClusterResponse
|
|
472
484
|
* @throws OciError when an error occurs
|
|
473
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
485
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/UpdateHsmCluster.ts.html |here} to see how to use UpdateHsmCluster API.
|
|
474
486
|
*/
|
|
475
487
|
updateHsmCluster(updateHsmClusterRequest: requests.UpdateHsmClusterRequest): Promise<responses.UpdateHsmClusterResponse>;
|
|
476
488
|
/**
|
|
@@ -480,7 +492,7 @@ export declare class KmsHsmClusterClient {
|
|
|
480
492
|
* @param UploadPartitionCertificatesRequest
|
|
481
493
|
* @return UploadPartitionCertificatesResponse
|
|
482
494
|
* @throws OciError when an error occurs
|
|
483
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
495
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/UploadPartitionCertificates.ts.html |here} to see how to use UploadPartitionCertificates API.
|
|
484
496
|
*/
|
|
485
497
|
uploadPartitionCertificates(uploadPartitionCertificatesRequest: requests.UploadPartitionCertificatesRequest): Promise<responses.UploadPartitionCertificatesResponse>;
|
|
486
498
|
}
|
|
@@ -536,6 +548,10 @@ export declare class KmsManagementClient {
|
|
|
536
548
|
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
537
549
|
*/
|
|
538
550
|
shutdownCircuitBreaker(): void;
|
|
551
|
+
/**
|
|
552
|
+
* Close the client once it is no longer needed
|
|
553
|
+
*/
|
|
554
|
+
close(): void;
|
|
539
555
|
/**
|
|
540
556
|
* Backs up an encrypted file that contains all key versions and metadata of the specified key so that you can restore
|
|
541
557
|
* the key later. The file also contains the metadata of the vault that the key belonged to.
|
|
@@ -544,7 +560,7 @@ export declare class KmsManagementClient {
|
|
|
544
560
|
* @param BackupKeyRequest
|
|
545
561
|
* @return BackupKeyResponse
|
|
546
562
|
* @throws OciError when an error occurs
|
|
547
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
563
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/BackupKey.ts.html |here} to see how to use BackupKey API.
|
|
548
564
|
*/
|
|
549
565
|
backupKey(backupKeyRequest: requests.BackupKeyRequest): Promise<responses.BackupKeyResponse>;
|
|
550
566
|
/**
|
|
@@ -561,7 +577,7 @@ export declare class KmsManagementClient {
|
|
|
561
577
|
* @param CancelKeyDeletionRequest
|
|
562
578
|
* @return CancelKeyDeletionResponse
|
|
563
579
|
* @throws OciError when an error occurs
|
|
564
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
580
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/CancelKeyDeletion.ts.html |here} to see how to use CancelKeyDeletion API.
|
|
565
581
|
*/
|
|
566
582
|
cancelKeyDeletion(cancelKeyDeletionRequest: requests.CancelKeyDeletionRequest): Promise<responses.CancelKeyDeletionResponse>;
|
|
567
583
|
/**
|
|
@@ -578,7 +594,7 @@ export declare class KmsManagementClient {
|
|
|
578
594
|
* @param CancelKeyVersionDeletionRequest
|
|
579
595
|
* @return CancelKeyVersionDeletionResponse
|
|
580
596
|
* @throws OciError when an error occurs
|
|
581
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
597
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/CancelKeyVersionDeletion.ts.html |here} to see how to use CancelKeyVersionDeletion API.
|
|
582
598
|
*/
|
|
583
599
|
cancelKeyVersionDeletion(cancelKeyVersionDeletionRequest: requests.CancelKeyVersionDeletionRequest): Promise<responses.CancelKeyVersionDeletionResponse>;
|
|
584
600
|
/**
|
|
@@ -596,7 +612,7 @@ export declare class KmsManagementClient {
|
|
|
596
612
|
* @param ChangeKeyCompartmentRequest
|
|
597
613
|
* @return ChangeKeyCompartmentResponse
|
|
598
614
|
* @throws OciError when an error occurs
|
|
599
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
615
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/ChangeKeyCompartment.ts.html |here} to see how to use ChangeKeyCompartment API.
|
|
600
616
|
*/
|
|
601
617
|
changeKeyCompartment(changeKeyCompartmentRequest: requests.ChangeKeyCompartmentRequest): Promise<responses.ChangeKeyCompartmentResponse>;
|
|
602
618
|
/**
|
|
@@ -611,7 +627,7 @@ export declare class KmsManagementClient {
|
|
|
611
627
|
* @param CreateKeyRequest
|
|
612
628
|
* @return CreateKeyResponse
|
|
613
629
|
* @throws OciError when an error occurs
|
|
614
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
630
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/CreateKey.ts.html |here} to see how to use CreateKey API.
|
|
615
631
|
*/
|
|
616
632
|
createKey(createKeyRequest: requests.CreateKeyRequest): Promise<responses.CreateKeyResponse>;
|
|
617
633
|
/**
|
|
@@ -627,7 +643,7 @@ export declare class KmsManagementClient {
|
|
|
627
643
|
* @param CreateKeyVersionRequest
|
|
628
644
|
* @return CreateKeyVersionResponse
|
|
629
645
|
* @throws OciError when an error occurs
|
|
630
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
646
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/CreateKeyVersion.ts.html |here} to see how to use CreateKeyVersion API.
|
|
631
647
|
*/
|
|
632
648
|
createKeyVersion(createKeyVersionRequest: requests.CreateKeyVersionRequest): Promise<responses.CreateKeyVersionResponse>;
|
|
633
649
|
/**
|
|
@@ -643,7 +659,7 @@ export declare class KmsManagementClient {
|
|
|
643
659
|
* @param DisableKeyRequest
|
|
644
660
|
* @return DisableKeyResponse
|
|
645
661
|
* @throws OciError when an error occurs
|
|
646
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
662
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/DisableKey.ts.html |here} to see how to use DisableKey API.
|
|
647
663
|
*/
|
|
648
664
|
disableKey(disableKeyRequest: requests.DisableKeyRequest): Promise<responses.DisableKeyResponse>;
|
|
649
665
|
/**
|
|
@@ -659,7 +675,7 @@ export declare class KmsManagementClient {
|
|
|
659
675
|
* @param EnableKeyRequest
|
|
660
676
|
* @return EnableKeyResponse
|
|
661
677
|
* @throws OciError when an error occurs
|
|
662
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
678
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/EnableKey.ts.html |here} to see how to use EnableKey API.
|
|
663
679
|
*/
|
|
664
680
|
enableKey(enableKeyRequest: requests.EnableKeyRequest): Promise<responses.EnableKeyResponse>;
|
|
665
681
|
/**
|
|
@@ -674,7 +690,7 @@ export declare class KmsManagementClient {
|
|
|
674
690
|
* @param GetKeyRequest
|
|
675
691
|
* @return GetKeyResponse
|
|
676
692
|
* @throws OciError when an error occurs
|
|
677
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
693
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/GetKey.ts.html |here} to see how to use GetKey API.
|
|
678
694
|
*/
|
|
679
695
|
getKey(getKeyRequest: requests.GetKeyRequest): Promise<responses.GetKeyResponse>;
|
|
680
696
|
/**
|
|
@@ -689,7 +705,7 @@ export declare class KmsManagementClient {
|
|
|
689
705
|
* @param GetKeyVersionRequest
|
|
690
706
|
* @return GetKeyVersionResponse
|
|
691
707
|
* @throws OciError when an error occurs
|
|
692
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
708
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/GetKeyVersion.ts.html |here} to see how to use GetKeyVersion API.
|
|
693
709
|
*/
|
|
694
710
|
getKeyVersion(getKeyVersionRequest: requests.GetKeyVersionRequest): Promise<responses.GetKeyVersionResponse>;
|
|
695
711
|
/**
|
|
@@ -702,7 +718,7 @@ export declare class KmsManagementClient {
|
|
|
702
718
|
* @param GetReplicationStatusRequest
|
|
703
719
|
* @return GetReplicationStatusResponse
|
|
704
720
|
* @throws OciError when an error occurs
|
|
705
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
721
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/GetReplicationStatus.ts.html |here} to see how to use GetReplicationStatus API.
|
|
706
722
|
*/
|
|
707
723
|
getReplicationStatus(getReplicationStatusRequest: requests.GetReplicationStatusRequest): Promise<responses.GetReplicationStatusResponse>;
|
|
708
724
|
/**
|
|
@@ -713,7 +729,7 @@ export declare class KmsManagementClient {
|
|
|
713
729
|
* @param GetWrappingKeyRequest
|
|
714
730
|
* @return GetWrappingKeyResponse
|
|
715
731
|
* @throws OciError when an error occurs
|
|
716
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
732
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/GetWrappingKey.ts.html |here} to see how to use GetWrappingKey API.
|
|
717
733
|
*/
|
|
718
734
|
getWrappingKey(getWrappingKeyRequest: requests.GetWrappingKeyRequest): Promise<responses.GetWrappingKeyResponse>;
|
|
719
735
|
/**
|
|
@@ -728,7 +744,7 @@ export declare class KmsManagementClient {
|
|
|
728
744
|
* @param ImportKeyRequest
|
|
729
745
|
* @return ImportKeyResponse
|
|
730
746
|
* @throws OciError when an error occurs
|
|
731
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
747
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/ImportKey.ts.html |here} to see how to use ImportKey API.
|
|
732
748
|
*/
|
|
733
749
|
importKey(importKeyRequest: requests.ImportKeyRequest): Promise<responses.ImportKeyResponse>;
|
|
734
750
|
/**
|
|
@@ -743,7 +759,7 @@ export declare class KmsManagementClient {
|
|
|
743
759
|
* @param ImportKeyVersionRequest
|
|
744
760
|
* @return ImportKeyVersionResponse
|
|
745
761
|
* @throws OciError when an error occurs
|
|
746
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
762
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/ImportKeyVersion.ts.html |here} to see how to use ImportKeyVersion API.
|
|
747
763
|
*/
|
|
748
764
|
importKeyVersion(importKeyVersionRequest: requests.ImportKeyVersionRequest): Promise<responses.ImportKeyVersionResponse>;
|
|
749
765
|
/**
|
|
@@ -759,7 +775,7 @@ export declare class KmsManagementClient {
|
|
|
759
775
|
* @param ListKeyVersionsRequest
|
|
760
776
|
* @return ListKeyVersionsResponse
|
|
761
777
|
* @throws OciError when an error occurs
|
|
762
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
778
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/ListKeyVersions.ts.html |here} to see how to use ListKeyVersions API.
|
|
763
779
|
*/
|
|
764
780
|
listKeyVersions(listKeyVersionsRequest: requests.ListKeyVersionsRequest): Promise<responses.ListKeyVersionsResponse>;
|
|
765
781
|
/**
|
|
@@ -806,7 +822,7 @@ export declare class KmsManagementClient {
|
|
|
806
822
|
* @param ListKeysRequest
|
|
807
823
|
* @return ListKeysResponse
|
|
808
824
|
* @throws OciError when an error occurs
|
|
809
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
825
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/ListKeys.ts.html |here} to see how to use ListKeys API.
|
|
810
826
|
*/
|
|
811
827
|
listKeys(listKeysRequest: requests.ListKeysRequest): Promise<responses.ListKeysResponse>;
|
|
812
828
|
/**
|
|
@@ -850,7 +866,7 @@ export declare class KmsManagementClient {
|
|
|
850
866
|
* @param RestoreKeyFromFileRequest
|
|
851
867
|
* @return RestoreKeyFromFileResponse
|
|
852
868
|
* @throws OciError when an error occurs
|
|
853
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
869
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/RestoreKeyFromFile.ts.html |here} to see how to use RestoreKeyFromFile API.
|
|
854
870
|
*/
|
|
855
871
|
restoreKeyFromFile(restoreKeyFromFileRequest: requests.RestoreKeyFromFileRequest): Promise<responses.RestoreKeyFromFileResponse>;
|
|
856
872
|
/**
|
|
@@ -862,7 +878,7 @@ export declare class KmsManagementClient {
|
|
|
862
878
|
* @param RestoreKeyFromObjectStoreRequest
|
|
863
879
|
* @return RestoreKeyFromObjectStoreResponse
|
|
864
880
|
* @throws OciError when an error occurs
|
|
865
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
881
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/RestoreKeyFromObjectStore.ts.html |here} to see how to use RestoreKeyFromObjectStore API.
|
|
866
882
|
*/
|
|
867
883
|
restoreKeyFromObjectStore(restoreKeyFromObjectStoreRequest: requests.RestoreKeyFromObjectStoreRequest): Promise<responses.RestoreKeyFromObjectStoreResponse>;
|
|
868
884
|
/**
|
|
@@ -878,7 +894,7 @@ export declare class KmsManagementClient {
|
|
|
878
894
|
* @param ScheduleKeyDeletionRequest
|
|
879
895
|
* @return ScheduleKeyDeletionResponse
|
|
880
896
|
* @throws OciError when an error occurs
|
|
881
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
897
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/ScheduleKeyDeletion.ts.html |here} to see how to use ScheduleKeyDeletion API.
|
|
882
898
|
*/
|
|
883
899
|
scheduleKeyDeletion(scheduleKeyDeletionRequest: requests.ScheduleKeyDeletionRequest): Promise<responses.ScheduleKeyDeletionResponse>;
|
|
884
900
|
/**
|
|
@@ -894,7 +910,7 @@ export declare class KmsManagementClient {
|
|
|
894
910
|
* @param ScheduleKeyVersionDeletionRequest
|
|
895
911
|
* @return ScheduleKeyVersionDeletionResponse
|
|
896
912
|
* @throws OciError when an error occurs
|
|
897
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
913
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/ScheduleKeyVersionDeletion.ts.html |here} to see how to use ScheduleKeyVersionDeletion API.
|
|
898
914
|
*/
|
|
899
915
|
scheduleKeyVersionDeletion(scheduleKeyVersionDeletionRequest: requests.ScheduleKeyVersionDeletionRequest): Promise<responses.ScheduleKeyVersionDeletionResponse>;
|
|
900
916
|
/**
|
|
@@ -911,7 +927,7 @@ export declare class KmsManagementClient {
|
|
|
911
927
|
* @param UpdateKeyRequest
|
|
912
928
|
* @return UpdateKeyResponse
|
|
913
929
|
* @throws OciError when an error occurs
|
|
914
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
930
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/UpdateKey.ts.html |here} to see how to use UpdateKey API.
|
|
915
931
|
*/
|
|
916
932
|
updateKey(updateKeyRequest: requests.UpdateKeyRequest): Promise<responses.UpdateKeyResponse>;
|
|
917
933
|
}
|
|
@@ -985,6 +1001,10 @@ export declare class KmsVaultClient {
|
|
|
985
1001
|
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
986
1002
|
*/
|
|
987
1003
|
shutdownCircuitBreaker(): void;
|
|
1004
|
+
/**
|
|
1005
|
+
* Close the client once it is no longer needed
|
|
1006
|
+
*/
|
|
1007
|
+
close(): void;
|
|
988
1008
|
/**
|
|
989
1009
|
* Backs up an encrypted file that contains all the metadata of a vault so that you can restore the vault later.
|
|
990
1010
|
* You can backup a vault whether or not it contains keys. This operation only backs up the
|
|
@@ -994,7 +1014,7 @@ export declare class KmsVaultClient {
|
|
|
994
1014
|
* @param BackupVaultRequest
|
|
995
1015
|
* @return BackupVaultResponse
|
|
996
1016
|
* @throws OciError when an error occurs
|
|
997
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
1017
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/BackupVault.ts.html |here} to see how to use BackupVault API.
|
|
998
1018
|
*/
|
|
999
1019
|
backupVault(backupVaultRequest: requests.BackupVaultRequest): Promise<responses.BackupVaultResponse>;
|
|
1000
1020
|
/**
|
|
@@ -1012,7 +1032,7 @@ export declare class KmsVaultClient {
|
|
|
1012
1032
|
* @param CancelVaultDeletionRequest
|
|
1013
1033
|
* @return CancelVaultDeletionResponse
|
|
1014
1034
|
* @throws OciError when an error occurs
|
|
1015
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
1035
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/CancelVaultDeletion.ts.html |here} to see how to use CancelVaultDeletion API.
|
|
1016
1036
|
*/
|
|
1017
1037
|
cancelVaultDeletion(cancelVaultDeletionRequest: requests.CancelVaultDeletionRequest): Promise<responses.CancelVaultDeletionResponse>;
|
|
1018
1038
|
/**
|
|
@@ -1030,7 +1050,7 @@ export declare class KmsVaultClient {
|
|
|
1030
1050
|
* @param ChangeVaultCompartmentRequest
|
|
1031
1051
|
* @return ChangeVaultCompartmentResponse
|
|
1032
1052
|
* @throws OciError when an error occurs
|
|
1033
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
1053
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/ChangeVaultCompartment.ts.html |here} to see how to use ChangeVaultCompartment API.
|
|
1034
1054
|
*/
|
|
1035
1055
|
changeVaultCompartment(changeVaultCompartmentRequest: requests.ChangeVaultCompartmentRequest): Promise<responses.ChangeVaultCompartmentResponse>;
|
|
1036
1056
|
/**
|
|
@@ -1048,7 +1068,7 @@ export declare class KmsVaultClient {
|
|
|
1048
1068
|
* @param CreateVaultRequest
|
|
1049
1069
|
* @return CreateVaultResponse
|
|
1050
1070
|
* @throws OciError when an error occurs
|
|
1051
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
1071
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/CreateVault.ts.html |here} to see how to use CreateVault API.
|
|
1052
1072
|
*/
|
|
1053
1073
|
createVault(createVaultRequest: requests.CreateVaultRequest): Promise<responses.CreateVaultResponse>;
|
|
1054
1074
|
/**
|
|
@@ -1067,7 +1087,7 @@ export declare class KmsVaultClient {
|
|
|
1067
1087
|
* @param CreateVaultReplicaRequest
|
|
1068
1088
|
* @return CreateVaultReplicaResponse
|
|
1069
1089
|
* @throws OciError when an error occurs
|
|
1070
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
1090
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/CreateVaultReplica.ts.html |here} to see how to use CreateVaultReplica API.
|
|
1071
1091
|
*/
|
|
1072
1092
|
createVaultReplica(createVaultReplicaRequest: requests.CreateVaultReplicaRequest): Promise<responses.CreateVaultReplicaResponse>;
|
|
1073
1093
|
/**
|
|
@@ -1082,7 +1102,7 @@ export declare class KmsVaultClient {
|
|
|
1082
1102
|
* @param DeleteVaultReplicaRequest
|
|
1083
1103
|
* @return DeleteVaultReplicaResponse
|
|
1084
1104
|
* @throws OciError when an error occurs
|
|
1085
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
1105
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/DeleteVaultReplica.ts.html |here} to see how to use DeleteVaultReplica API.
|
|
1086
1106
|
*/
|
|
1087
1107
|
deleteVaultReplica(deleteVaultReplicaRequest: requests.DeleteVaultReplicaRequest): Promise<responses.DeleteVaultReplicaResponse>;
|
|
1088
1108
|
/**
|
|
@@ -1097,7 +1117,7 @@ export declare class KmsVaultClient {
|
|
|
1097
1117
|
* @param GetVaultRequest
|
|
1098
1118
|
* @return GetVaultResponse
|
|
1099
1119
|
* @throws OciError when an error occurs
|
|
1100
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
1120
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/GetVault.ts.html |here} to see how to use GetVault API.
|
|
1101
1121
|
*/
|
|
1102
1122
|
getVault(getVaultRequest: requests.GetVaultRequest): Promise<responses.GetVaultResponse>;
|
|
1103
1123
|
/**
|
|
@@ -1107,7 +1127,7 @@ export declare class KmsVaultClient {
|
|
|
1107
1127
|
* @param GetVaultUsageRequest
|
|
1108
1128
|
* @return GetVaultUsageResponse
|
|
1109
1129
|
* @throws OciError when an error occurs
|
|
1110
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
1130
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/GetVaultUsage.ts.html |here} to see how to use GetVaultUsage API.
|
|
1111
1131
|
*/
|
|
1112
1132
|
getVaultUsage(getVaultUsageRequest: requests.GetVaultUsageRequest): Promise<responses.GetVaultUsageResponse>;
|
|
1113
1133
|
/**
|
|
@@ -1122,7 +1142,7 @@ export declare class KmsVaultClient {
|
|
|
1122
1142
|
* @param ListVaultReplicasRequest
|
|
1123
1143
|
* @return ListVaultReplicasResponse
|
|
1124
1144
|
* @throws OciError when an error occurs
|
|
1125
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
1145
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/ListVaultReplicas.ts.html |here} to see how to use ListVaultReplicas API.
|
|
1126
1146
|
*/
|
|
1127
1147
|
listVaultReplicas(listVaultReplicasRequest: requests.ListVaultReplicasRequest): Promise<responses.ListVaultReplicasResponse>;
|
|
1128
1148
|
/**
|
|
@@ -1169,7 +1189,7 @@ export declare class KmsVaultClient {
|
|
|
1169
1189
|
* @param ListVaultsRequest
|
|
1170
1190
|
* @return ListVaultsResponse
|
|
1171
1191
|
* @throws OciError when an error occurs
|
|
1172
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
1192
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/ListVaults.ts.html |here} to see how to use ListVaults API.
|
|
1173
1193
|
*/
|
|
1174
1194
|
listVaults(listVaultsRequest: requests.ListVaultsRequest): Promise<responses.ListVaultsResponse>;
|
|
1175
1195
|
/**
|
|
@@ -1213,7 +1233,7 @@ export declare class KmsVaultClient {
|
|
|
1213
1233
|
* @param RestoreVaultFromFileRequest
|
|
1214
1234
|
* @return RestoreVaultFromFileResponse
|
|
1215
1235
|
* @throws OciError when an error occurs
|
|
1216
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
1236
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/RestoreVaultFromFile.ts.html |here} to see how to use RestoreVaultFromFile API.
|
|
1217
1237
|
*/
|
|
1218
1238
|
restoreVaultFromFile(restoreVaultFromFileRequest: requests.RestoreVaultFromFileRequest): Promise<responses.RestoreVaultFromFileResponse>;
|
|
1219
1239
|
/**
|
|
@@ -1225,7 +1245,7 @@ export declare class KmsVaultClient {
|
|
|
1225
1245
|
* @param RestoreVaultFromObjectStoreRequest
|
|
1226
1246
|
* @return RestoreVaultFromObjectStoreResponse
|
|
1227
1247
|
* @throws OciError when an error occurs
|
|
1228
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
1248
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/RestoreVaultFromObjectStore.ts.html |here} to see how to use RestoreVaultFromObjectStore API.
|
|
1229
1249
|
*/
|
|
1230
1250
|
restoreVaultFromObjectStore(restoreVaultFromObjectStoreRequest: requests.RestoreVaultFromObjectStoreRequest): Promise<responses.RestoreVaultFromObjectStoreResponse>;
|
|
1231
1251
|
/**
|
|
@@ -1244,7 +1264,7 @@ export declare class KmsVaultClient {
|
|
|
1244
1264
|
* @param ScheduleVaultDeletionRequest
|
|
1245
1265
|
* @return ScheduleVaultDeletionResponse
|
|
1246
1266
|
* @throws OciError when an error occurs
|
|
1247
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
1267
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/ScheduleVaultDeletion.ts.html |here} to see how to use ScheduleVaultDeletion API.
|
|
1248
1268
|
*/
|
|
1249
1269
|
scheduleVaultDeletion(scheduleVaultDeletionRequest: requests.ScheduleVaultDeletionRequest): Promise<responses.ScheduleVaultDeletionResponse>;
|
|
1250
1270
|
/**
|
|
@@ -1261,7 +1281,7 @@ export declare class KmsVaultClient {
|
|
|
1261
1281
|
* @param UpdateVaultRequest
|
|
1262
1282
|
* @return UpdateVaultResponse
|
|
1263
1283
|
* @throws OciError when an error occurs
|
|
1264
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.
|
|
1284
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/keymanagement/UpdateVault.ts.html |here} to see how to use UpdateVault API.
|
|
1265
1285
|
*/
|
|
1266
1286
|
updateVault(updateVaultRequest: requests.UpdateVaultRequest): Promise<responses.UpdateVaultResponse>;
|
|
1267
1287
|
}
|