oci-keymanagement 2.84.0 → 2.85.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.
Files changed (62) hide show
  1. package/lib/client.d.ts +78 -58
  2. package/lib/client.js +88 -58
  3. package/lib/client.js.map +1 -1
  4. package/lib/request/backup-key-request.d.ts +1 -1
  5. package/lib/request/backup-vault-request.d.ts +1 -1
  6. package/lib/request/cancel-hsm-cluster-deletion-request.d.ts +1 -1
  7. package/lib/request/cancel-key-deletion-request.d.ts +1 -1
  8. package/lib/request/cancel-key-version-deletion-request.d.ts +1 -1
  9. package/lib/request/cancel-vault-deletion-request.d.ts +1 -1
  10. package/lib/request/change-hsm-cluster-compartment-request.d.ts +1 -1
  11. package/lib/request/change-key-compartment-request.d.ts +1 -1
  12. package/lib/request/change-vault-compartment-request.d.ts +1 -1
  13. package/lib/request/create-ekms-private-endpoint-request.d.ts +1 -1
  14. package/lib/request/create-hsm-cluster-request.d.ts +1 -1
  15. package/lib/request/create-key-request.d.ts +1 -1
  16. package/lib/request/create-key-version-request.d.ts +1 -1
  17. package/lib/request/create-vault-replica-request.d.ts +1 -1
  18. package/lib/request/create-vault-request.d.ts +1 -1
  19. package/lib/request/decrypt-request.d.ts +1 -1
  20. package/lib/request/delete-ekms-private-endpoint-request.d.ts +1 -1
  21. package/lib/request/delete-vault-replica-request.d.ts +1 -1
  22. package/lib/request/disable-key-request.d.ts +1 -1
  23. package/lib/request/download-certificate-signing-request-request.d.ts +1 -1
  24. package/lib/request/enable-key-request.d.ts +1 -1
  25. package/lib/request/encrypt-request.d.ts +1 -1
  26. package/lib/request/export-key-request.d.ts +1 -1
  27. package/lib/request/generate-data-encryption-key-request.d.ts +1 -1
  28. package/lib/request/get-ekms-private-endpoint-request.d.ts +1 -1
  29. package/lib/request/get-hsm-cluster-request.d.ts +1 -1
  30. package/lib/request/get-hsm-partition-request.d.ts +1 -1
  31. package/lib/request/get-key-request.d.ts +1 -1
  32. package/lib/request/get-key-version-request.d.ts +1 -1
  33. package/lib/request/get-pre-co-user-credentials-request.d.ts +1 -1
  34. package/lib/request/get-replication-status-request.d.ts +1 -1
  35. package/lib/request/get-vault-request.d.ts +1 -1
  36. package/lib/request/get-vault-usage-request.d.ts +1 -1
  37. package/lib/request/get-wrapping-key-request.d.ts +1 -1
  38. package/lib/request/import-key-request.d.ts +1 -1
  39. package/lib/request/import-key-version-request.d.ts +1 -1
  40. package/lib/request/list-ekms-private-endpoints-request.d.ts +1 -1
  41. package/lib/request/list-hsm-clusters-request.d.ts +1 -1
  42. package/lib/request/list-hsm-partitions-request.d.ts +1 -1
  43. package/lib/request/list-key-versions-request.d.ts +1 -1
  44. package/lib/request/list-keys-request.d.ts +1 -1
  45. package/lib/request/list-vault-replicas-request.d.ts +1 -1
  46. package/lib/request/list-vaults-request.d.ts +1 -1
  47. package/lib/request/restore-key-from-file-request.d.ts +1 -1
  48. package/lib/request/restore-key-from-object-store-request.d.ts +1 -1
  49. package/lib/request/restore-vault-from-file-request.d.ts +1 -1
  50. package/lib/request/restore-vault-from-object-store-request.d.ts +1 -1
  51. package/lib/request/schedule-hsm-cluster-deletion-request.d.ts +1 -1
  52. package/lib/request/schedule-key-deletion-request.d.ts +1 -1
  53. package/lib/request/schedule-key-version-deletion-request.d.ts +1 -1
  54. package/lib/request/schedule-vault-deletion-request.d.ts +1 -1
  55. package/lib/request/sign-request.d.ts +1 -1
  56. package/lib/request/update-ekms-private-endpoint-request.d.ts +1 -1
  57. package/lib/request/update-hsm-cluster-request.d.ts +1 -1
  58. package/lib/request/update-key-request.d.ts +1 -1
  59. package/lib/request/update-vault-request.d.ts +1 -1
  60. package/lib/request/upload-partition-certificates-request.d.ts +1 -1
  61. package/lib/request/verify-request.d.ts +1 -1
  62. package/package.json +3 -3
package/lib/client.js CHANGED
@@ -194,13 +194,19 @@ class EkmClient {
194
194
  this._circuitBreaker.shutdown();
195
195
  }
196
196
  }
197
+ /**
198
+ * Close the client once it is no longer needed
199
+ */
200
+ close() {
201
+ this.shutdownCircuitBreaker();
202
+ }
197
203
  /**
198
204
  * Create a new EKMS private endpoint used to connect to external key manager system
199
205
  * This operation does not retry by default if the user has not defined a retry configuration.
200
206
  * @param CreateEkmsPrivateEndpointRequest
201
207
  * @return CreateEkmsPrivateEndpointResponse
202
208
  * @throws OciError when an error occurs
203
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/CreateEkmsPrivateEndpoint.ts.html |here} to see how to use CreateEkmsPrivateEndpoint API.
209
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/CreateEkmsPrivateEndpoint.ts.html |here} to see how to use CreateEkmsPrivateEndpoint API.
204
210
  */
205
211
  createEkmsPrivateEndpoint(createEkmsPrivateEndpointRequest) {
206
212
  return __awaiter(this, void 0, void 0, function* () {
@@ -268,7 +274,7 @@ class EkmClient {
268
274
  * @param DeleteEkmsPrivateEndpointRequest
269
275
  * @return DeleteEkmsPrivateEndpointResponse
270
276
  * @throws OciError when an error occurs
271
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/DeleteEkmsPrivateEndpoint.ts.html |here} to see how to use DeleteEkmsPrivateEndpoint API.
277
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/DeleteEkmsPrivateEndpoint.ts.html |here} to see how to use DeleteEkmsPrivateEndpoint API.
272
278
  */
273
279
  deleteEkmsPrivateEndpoint(deleteEkmsPrivateEndpointRequest) {
274
280
  return __awaiter(this, void 0, void 0, function* () {
@@ -328,7 +334,7 @@ class EkmClient {
328
334
  * @param GetEkmsPrivateEndpointRequest
329
335
  * @return GetEkmsPrivateEndpointResponse
330
336
  * @throws OciError when an error occurs
331
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/GetEkmsPrivateEndpoint.ts.html |here} to see how to use GetEkmsPrivateEndpoint API.
337
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/GetEkmsPrivateEndpoint.ts.html |here} to see how to use GetEkmsPrivateEndpoint API.
332
338
  */
333
339
  getEkmsPrivateEndpoint(getEkmsPrivateEndpointRequest) {
334
340
  return __awaiter(this, void 0, void 0, function* () {
@@ -392,7 +398,7 @@ class EkmClient {
392
398
  * @param ListEkmsPrivateEndpointsRequest
393
399
  * @return ListEkmsPrivateEndpointsResponse
394
400
  * @throws OciError when an error occurs
395
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/ListEkmsPrivateEndpoints.ts.html |here} to see how to use ListEkmsPrivateEndpoints API.
401
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/ListEkmsPrivateEndpoints.ts.html |here} to see how to use ListEkmsPrivateEndpoints API.
396
402
  */
397
403
  listEkmsPrivateEndpoints(listEkmsPrivateEndpointsRequest) {
398
404
  return __awaiter(this, void 0, void 0, function* () {
@@ -499,7 +505,7 @@ class EkmClient {
499
505
  * @param UpdateEkmsPrivateEndpointRequest
500
506
  * @return UpdateEkmsPrivateEndpointResponse
501
507
  * @throws OciError when an error occurs
502
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/UpdateEkmsPrivateEndpoint.ts.html |here} to see how to use UpdateEkmsPrivateEndpoint API.
508
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/UpdateEkmsPrivateEndpoint.ts.html |here} to see how to use UpdateEkmsPrivateEndpoint API.
503
509
  */
504
510
  updateEkmsPrivateEndpoint(updateEkmsPrivateEndpointRequest) {
505
511
  return __awaiter(this, void 0, void 0, function* () {
@@ -643,6 +649,12 @@ class KmsCryptoClient {
643
649
  this._circuitBreaker.shutdown();
644
650
  }
645
651
  }
652
+ /**
653
+ * Close the client once it is no longer needed
654
+ */
655
+ close() {
656
+ this.shutdownCircuitBreaker();
657
+ }
646
658
  /**
647
659
  * Decrypts data using the given [DecryptDataDetails](https://docs.cloud.oracle.com/api/#/en/key/latest/datatypes/DecryptDataDetails) resource.
648
660
  *
@@ -650,7 +662,7 @@ class KmsCryptoClient {
650
662
  * @param DecryptRequest
651
663
  * @return DecryptResponse
652
664
  * @throws OciError when an error occurs
653
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/Decrypt.ts.html |here} to see how to use Decrypt API.
665
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/Decrypt.ts.html |here} to see how to use Decrypt API.
654
666
  */
655
667
  decrypt(decryptRequest) {
656
668
  return __awaiter(this, void 0, void 0, function* () {
@@ -709,7 +721,7 @@ class KmsCryptoClient {
709
721
  * @param EncryptRequest
710
722
  * @return EncryptResponse
711
723
  * @throws OciError when an error occurs
712
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/Encrypt.ts.html |here} to see how to use Encrypt API.
724
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/Encrypt.ts.html |here} to see how to use Encrypt API.
713
725
  */
714
726
  encrypt(encryptRequest) {
715
727
  return __awaiter(this, void 0, void 0, function* () {
@@ -770,7 +782,7 @@ class KmsCryptoClient {
770
782
  * @param ExportKeyRequest
771
783
  * @return ExportKeyResponse
772
784
  * @throws OciError when an error occurs
773
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/ExportKey.ts.html |here} to see how to use ExportKey API.
785
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/ExportKey.ts.html |here} to see how to use ExportKey API.
774
786
  */
775
787
  exportKey(exportKeyRequest) {
776
788
  return __awaiter(this, void 0, void 0, function* () {
@@ -827,7 +839,7 @@ class KmsCryptoClient {
827
839
  * @param GenerateDataEncryptionKeyRequest
828
840
  * @return GenerateDataEncryptionKeyResponse
829
841
  * @throws OciError when an error occurs
830
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/GenerateDataEncryptionKey.ts.html |here} to see how to use GenerateDataEncryptionKey API.
842
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/GenerateDataEncryptionKey.ts.html |here} to see how to use GenerateDataEncryptionKey API.
831
843
  */
832
844
  generateDataEncryptionKey(generateDataEncryptionKeyRequest) {
833
845
  return __awaiter(this, void 0, void 0, function* () {
@@ -888,7 +900,7 @@ class KmsCryptoClient {
888
900
  * @param SignRequest
889
901
  * @return SignResponse
890
902
  * @throws OciError when an error occurs
891
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/Sign.ts.html |here} to see how to use Sign API.
903
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/Sign.ts.html |here} to see how to use Sign API.
892
904
  */
893
905
  sign(signRequest) {
894
906
  return __awaiter(this, void 0, void 0, function* () {
@@ -949,7 +961,7 @@ class KmsCryptoClient {
949
961
  * @param VerifyRequest
950
962
  * @return VerifyResponse
951
963
  * @throws OciError when an error occurs
952
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/Verify.ts.html |here} to see how to use Verify API.
964
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/Verify.ts.html |here} to see how to use Verify API.
953
965
  */
954
966
  verify(verifyRequest) {
955
967
  return __awaiter(this, void 0, void 0, function* () {
@@ -1144,13 +1156,19 @@ class KmsHsmClusterClient {
1144
1156
  this._circuitBreaker.shutdown();
1145
1157
  }
1146
1158
  }
1159
+ /**
1160
+ * Close the client once it is no longer needed
1161
+ */
1162
+ close() {
1163
+ this.shutdownCircuitBreaker();
1164
+ }
1147
1165
  /**
1148
1166
  * Cancels deletion of specified HSM Cluster, restores it and associated HSM partitions to pre-deletion states.
1149
1167
  * This operation does not retry by default if the user has not defined a retry configuration.
1150
1168
  * @param CancelHsmClusterDeletionRequest
1151
1169
  * @return CancelHsmClusterDeletionResponse
1152
1170
  * @throws OciError when an error occurs
1153
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/CancelHsmClusterDeletion.ts.html |here} to see how to use CancelHsmClusterDeletion API.
1171
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/CancelHsmClusterDeletion.ts.html |here} to see how to use CancelHsmClusterDeletion API.
1154
1172
  */
1155
1173
  cancelHsmClusterDeletion(cancelHsmClusterDeletionRequest) {
1156
1174
  return __awaiter(this, void 0, void 0, function* () {
@@ -1216,7 +1234,7 @@ class KmsHsmClusterClient {
1216
1234
  * @param ChangeHsmClusterCompartmentRequest
1217
1235
  * @return ChangeHsmClusterCompartmentResponse
1218
1236
  * @throws OciError when an error occurs
1219
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/ChangeHsmClusterCompartment.ts.html |here} to see how to use ChangeHsmClusterCompartment API.
1237
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/ChangeHsmClusterCompartment.ts.html |here} to see how to use ChangeHsmClusterCompartment API.
1220
1238
  */
1221
1239
  changeHsmClusterCompartment(changeHsmClusterCompartmentRequest) {
1222
1240
  return __awaiter(this, void 0, void 0, function* () {
@@ -1279,7 +1297,7 @@ class KmsHsmClusterClient {
1279
1297
  * @param CreateHsmClusterRequest
1280
1298
  * @return CreateHsmClusterResponse
1281
1299
  * @throws OciError when an error occurs
1282
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/CreateHsmCluster.ts.html |here} to see how to use CreateHsmCluster API.
1300
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/CreateHsmCluster.ts.html |here} to see how to use CreateHsmCluster API.
1283
1301
  */
1284
1302
  createHsmCluster(createHsmClusterRequest) {
1285
1303
  return __awaiter(this, void 0, void 0, function* () {
@@ -1343,7 +1361,7 @@ class KmsHsmClusterClient {
1343
1361
  * @param DownloadCertificateSigningRequestRequest
1344
1362
  * @return DownloadCertificateSigningRequestResponse
1345
1363
  * @throws OciError when an error occurs
1346
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/DownloadCertificateSigningRequest.ts.html |here} to see how to use DownloadCertificateSigningRequest API.
1364
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/DownloadCertificateSigningRequest.ts.html |here} to see how to use DownloadCertificateSigningRequest API.
1347
1365
  */
1348
1366
  downloadCertificateSigningRequest(downloadCertificateSigningRequestRequest) {
1349
1367
  return __awaiter(this, void 0, void 0, function* () {
@@ -1414,7 +1432,7 @@ class KmsHsmClusterClient {
1414
1432
  * @param GetHsmClusterRequest
1415
1433
  * @return GetHsmClusterResponse
1416
1434
  * @throws OciError when an error occurs
1417
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/GetHsmCluster.ts.html |here} to see how to use GetHsmCluster API.
1435
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/GetHsmCluster.ts.html |here} to see how to use GetHsmCluster API.
1418
1436
  */
1419
1437
  getHsmCluster(getHsmClusterRequest) {
1420
1438
  return __awaiter(this, void 0, void 0, function* () {
@@ -1478,7 +1496,7 @@ class KmsHsmClusterClient {
1478
1496
  * @param GetHsmPartitionRequest
1479
1497
  * @return GetHsmPartitionResponse
1480
1498
  * @throws OciError when an error occurs
1481
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/GetHsmPartition.ts.html |here} to see how to use GetHsmPartition API.
1499
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/GetHsmPartition.ts.html |here} to see how to use GetHsmPartition API.
1482
1500
  */
1483
1501
  getHsmPartition(getHsmPartitionRequest) {
1484
1502
  return __awaiter(this, void 0, void 0, function* () {
@@ -1544,7 +1562,7 @@ class KmsHsmClusterClient {
1544
1562
  * @param GetPreCoUserCredentialsRequest
1545
1563
  * @return GetPreCoUserCredentialsResponse
1546
1564
  * @throws OciError when an error occurs
1547
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/GetPreCoUserCredentials.ts.html |here} to see how to use GetPreCoUserCredentials API.
1565
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/GetPreCoUserCredentials.ts.html |here} to see how to use GetPreCoUserCredentials API.
1548
1566
  */
1549
1567
  getPreCoUserCredentials(getPreCoUserCredentialsRequest) {
1550
1568
  return __awaiter(this, void 0, void 0, function* () {
@@ -1614,7 +1632,7 @@ class KmsHsmClusterClient {
1614
1632
  * @param ListHsmClustersRequest
1615
1633
  * @return ListHsmClustersResponse
1616
1634
  * @throws OciError when an error occurs
1617
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/ListHsmClusters.ts.html |here} to see how to use ListHsmClusters API.
1635
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/ListHsmClusters.ts.html |here} to see how to use ListHsmClusters API.
1618
1636
  */
1619
1637
  listHsmClusters(listHsmClustersRequest) {
1620
1638
  return __awaiter(this, void 0, void 0, function* () {
@@ -1682,7 +1700,7 @@ class KmsHsmClusterClient {
1682
1700
  * @param ListHsmPartitionsRequest
1683
1701
  * @return ListHsmPartitionsResponse
1684
1702
  * @throws OciError when an error occurs
1685
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/ListHsmPartitions.ts.html |here} to see how to use ListHsmPartitions API.
1703
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/ListHsmPartitions.ts.html |here} to see how to use ListHsmPartitions API.
1686
1704
  */
1687
1705
  listHsmPartitions(listHsmPartitionsRequest) {
1688
1706
  return __awaiter(this, void 0, void 0, function* () {
@@ -1753,7 +1771,7 @@ class KmsHsmClusterClient {
1753
1771
  * @param ScheduleHsmClusterDeletionRequest
1754
1772
  * @return ScheduleHsmClusterDeletionResponse
1755
1773
  * @throws OciError when an error occurs
1756
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/ScheduleHsmClusterDeletion.ts.html |here} to see how to use ScheduleHsmClusterDeletion API.
1774
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/ScheduleHsmClusterDeletion.ts.html |here} to see how to use ScheduleHsmClusterDeletion API.
1757
1775
  */
1758
1776
  scheduleHsmClusterDeletion(scheduleHsmClusterDeletionRequest) {
1759
1777
  return __awaiter(this, void 0, void 0, function* () {
@@ -1825,7 +1843,7 @@ class KmsHsmClusterClient {
1825
1843
  * @param UpdateHsmClusterRequest
1826
1844
  * @return UpdateHsmClusterResponse
1827
1845
  * @throws OciError when an error occurs
1828
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/UpdateHsmCluster.ts.html |here} to see how to use UpdateHsmCluster API.
1846
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/UpdateHsmCluster.ts.html |here} to see how to use UpdateHsmCluster API.
1829
1847
  */
1830
1848
  updateHsmCluster(updateHsmClusterRequest) {
1831
1849
  return __awaiter(this, void 0, void 0, function* () {
@@ -1891,7 +1909,7 @@ class KmsHsmClusterClient {
1891
1909
  * @param UploadPartitionCertificatesRequest
1892
1910
  * @return UploadPartitionCertificatesResponse
1893
1911
  * @throws OciError when an error occurs
1894
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/UploadPartitionCertificates.ts.html |here} to see how to use UploadPartitionCertificates API.
1912
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/UploadPartitionCertificates.ts.html |here} to see how to use UploadPartitionCertificates API.
1895
1913
  */
1896
1914
  uploadPartitionCertificates(uploadPartitionCertificatesRequest) {
1897
1915
  return __awaiter(this, void 0, void 0, function* () {
@@ -2053,6 +2071,12 @@ class KmsManagementClient {
2053
2071
  this._circuitBreaker.shutdown();
2054
2072
  }
2055
2073
  }
2074
+ /**
2075
+ * Close the client once it is no longer needed
2076
+ */
2077
+ close() {
2078
+ this.shutdownCircuitBreaker();
2079
+ }
2056
2080
  /**
2057
2081
  * Backs up an encrypted file that contains all key versions and metadata of the specified key so that you can restore
2058
2082
  * the key later. The file also contains the metadata of the vault that the key belonged to.
@@ -2061,7 +2085,7 @@ class KmsManagementClient {
2061
2085
  * @param BackupKeyRequest
2062
2086
  * @return BackupKeyResponse
2063
2087
  * @throws OciError when an error occurs
2064
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/BackupKey.ts.html |here} to see how to use BackupKey API.
2088
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/BackupKey.ts.html |here} to see how to use BackupKey API.
2065
2089
  */
2066
2090
  backupKey(backupKeyRequest) {
2067
2091
  return __awaiter(this, void 0, void 0, function* () {
@@ -2140,7 +2164,7 @@ class KmsManagementClient {
2140
2164
  * @param CancelKeyDeletionRequest
2141
2165
  * @return CancelKeyDeletionResponse
2142
2166
  * @throws OciError when an error occurs
2143
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/CancelKeyDeletion.ts.html |here} to see how to use CancelKeyDeletion API.
2167
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/CancelKeyDeletion.ts.html |here} to see how to use CancelKeyDeletion API.
2144
2168
  */
2145
2169
  cancelKeyDeletion(cancelKeyDeletionRequest) {
2146
2170
  return __awaiter(this, void 0, void 0, function* () {
@@ -2213,7 +2237,7 @@ class KmsManagementClient {
2213
2237
  * @param CancelKeyVersionDeletionRequest
2214
2238
  * @return CancelKeyVersionDeletionResponse
2215
2239
  * @throws OciError when an error occurs
2216
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/CancelKeyVersionDeletion.ts.html |here} to see how to use CancelKeyVersionDeletion API.
2240
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/CancelKeyVersionDeletion.ts.html |here} to see how to use CancelKeyVersionDeletion API.
2217
2241
  */
2218
2242
  cancelKeyVersionDeletion(cancelKeyVersionDeletionRequest) {
2219
2243
  return __awaiter(this, void 0, void 0, function* () {
@@ -2288,7 +2312,7 @@ class KmsManagementClient {
2288
2312
  * @param ChangeKeyCompartmentRequest
2289
2313
  * @return ChangeKeyCompartmentResponse
2290
2314
  * @throws OciError when an error occurs
2291
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/ChangeKeyCompartment.ts.html |here} to see how to use ChangeKeyCompartment API.
2315
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/ChangeKeyCompartment.ts.html |here} to see how to use ChangeKeyCompartment API.
2292
2316
  */
2293
2317
  changeKeyCompartment(changeKeyCompartmentRequest) {
2294
2318
  return __awaiter(this, void 0, void 0, function* () {
@@ -2356,7 +2380,7 @@ class KmsManagementClient {
2356
2380
  * @param CreateKeyRequest
2357
2381
  * @return CreateKeyResponse
2358
2382
  * @throws OciError when an error occurs
2359
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/CreateKey.ts.html |here} to see how to use CreateKey API.
2383
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/CreateKey.ts.html |here} to see how to use CreateKey API.
2360
2384
  */
2361
2385
  createKey(createKeyRequest) {
2362
2386
  return __awaiter(this, void 0, void 0, function* () {
@@ -2426,7 +2450,7 @@ class KmsManagementClient {
2426
2450
  * @param CreateKeyVersionRequest
2427
2451
  * @return CreateKeyVersionResponse
2428
2452
  * @throws OciError when an error occurs
2429
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/CreateKeyVersion.ts.html |here} to see how to use CreateKeyVersion API.
2453
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/CreateKeyVersion.ts.html |here} to see how to use CreateKeyVersion API.
2430
2454
  */
2431
2455
  createKeyVersion(createKeyVersionRequest) {
2432
2456
  return __awaiter(this, void 0, void 0, function* () {
@@ -2498,7 +2522,7 @@ class KmsManagementClient {
2498
2522
  * @param DisableKeyRequest
2499
2523
  * @return DisableKeyResponse
2500
2524
  * @throws OciError when an error occurs
2501
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/DisableKey.ts.html |here} to see how to use DisableKey API.
2525
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/DisableKey.ts.html |here} to see how to use DisableKey API.
2502
2526
  */
2503
2527
  disableKey(disableKeyRequest) {
2504
2528
  return __awaiter(this, void 0, void 0, function* () {
@@ -2570,7 +2594,7 @@ class KmsManagementClient {
2570
2594
  * @param EnableKeyRequest
2571
2595
  * @return EnableKeyResponse
2572
2596
  * @throws OciError when an error occurs
2573
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/EnableKey.ts.html |here} to see how to use EnableKey API.
2597
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/EnableKey.ts.html |here} to see how to use EnableKey API.
2574
2598
  */
2575
2599
  enableKey(enableKeyRequest) {
2576
2600
  return __awaiter(this, void 0, void 0, function* () {
@@ -2641,7 +2665,7 @@ class KmsManagementClient {
2641
2665
  * @param GetKeyRequest
2642
2666
  * @return GetKeyResponse
2643
2667
  * @throws OciError when an error occurs
2644
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/GetKey.ts.html |here} to see how to use GetKey API.
2668
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/GetKey.ts.html |here} to see how to use GetKey API.
2645
2669
  */
2646
2670
  getKey(getKeyRequest) {
2647
2671
  return __awaiter(this, void 0, void 0, function* () {
@@ -2710,7 +2734,7 @@ class KmsManagementClient {
2710
2734
  * @param GetKeyVersionRequest
2711
2735
  * @return GetKeyVersionResponse
2712
2736
  * @throws OciError when an error occurs
2713
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/GetKeyVersion.ts.html |here} to see how to use GetKeyVersion API.
2737
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/GetKeyVersion.ts.html |here} to see how to use GetKeyVersion API.
2714
2738
  */
2715
2739
  getKeyVersion(getKeyVersionRequest) {
2716
2740
  return __awaiter(this, void 0, void 0, function* () {
@@ -2778,7 +2802,7 @@ class KmsManagementClient {
2778
2802
  * @param GetReplicationStatusRequest
2779
2803
  * @return GetReplicationStatusResponse
2780
2804
  * @throws OciError when an error occurs
2781
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/GetReplicationStatus.ts.html |here} to see how to use GetReplicationStatus API.
2805
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/GetReplicationStatus.ts.html |here} to see how to use GetReplicationStatus API.
2782
2806
  */
2783
2807
  getReplicationStatus(getReplicationStatusRequest) {
2784
2808
  return __awaiter(this, void 0, void 0, function* () {
@@ -2843,7 +2867,7 @@ class KmsManagementClient {
2843
2867
  * @param GetWrappingKeyRequest
2844
2868
  * @return GetWrappingKeyResponse
2845
2869
  * @throws OciError when an error occurs
2846
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/GetWrappingKey.ts.html |here} to see how to use GetWrappingKey API.
2870
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/GetWrappingKey.ts.html |here} to see how to use GetWrappingKey API.
2847
2871
  */
2848
2872
  getWrappingKey(getWrappingKeyRequest) {
2849
2873
  return __awaiter(this, void 0, void 0, function* () {
@@ -2910,7 +2934,7 @@ class KmsManagementClient {
2910
2934
  * @param ImportKeyRequest
2911
2935
  * @return ImportKeyResponse
2912
2936
  * @throws OciError when an error occurs
2913
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/ImportKey.ts.html |here} to see how to use ImportKey API.
2937
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/ImportKey.ts.html |here} to see how to use ImportKey API.
2914
2938
  */
2915
2939
  importKey(importKeyRequest) {
2916
2940
  return __awaiter(this, void 0, void 0, function* () {
@@ -2979,7 +3003,7 @@ class KmsManagementClient {
2979
3003
  * @param ImportKeyVersionRequest
2980
3004
  * @return ImportKeyVersionResponse
2981
3005
  * @throws OciError when an error occurs
2982
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/ImportKeyVersion.ts.html |here} to see how to use ImportKeyVersion API.
3006
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/ImportKeyVersion.ts.html |here} to see how to use ImportKeyVersion API.
2983
3007
  */
2984
3008
  importKeyVersion(importKeyVersionRequest) {
2985
3009
  return __awaiter(this, void 0, void 0, function* () {
@@ -3051,7 +3075,7 @@ class KmsManagementClient {
3051
3075
  * @param ListKeyVersionsRequest
3052
3076
  * @return ListKeyVersionsResponse
3053
3077
  * @throws OciError when an error occurs
3054
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/ListKeyVersions.ts.html |here} to see how to use ListKeyVersions API.
3078
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/ListKeyVersions.ts.html |here} to see how to use ListKeyVersions API.
3055
3079
  */
3056
3080
  listKeyVersions(listKeyVersionsRequest) {
3057
3081
  return __awaiter(this, void 0, void 0, function* () {
@@ -3165,7 +3189,7 @@ class KmsManagementClient {
3165
3189
  * @param ListKeysRequest
3166
3190
  * @return ListKeysResponse
3167
3191
  * @throws OciError when an error occurs
3168
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/ListKeys.ts.html |here} to see how to use ListKeys API.
3192
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/ListKeys.ts.html |here} to see how to use ListKeys API.
3169
3193
  */
3170
3194
  listKeys(listKeysRequest) {
3171
3195
  return __awaiter(this, void 0, void 0, function* () {
@@ -3279,7 +3303,7 @@ class KmsManagementClient {
3279
3303
  * @param RestoreKeyFromFileRequest
3280
3304
  * @return RestoreKeyFromFileResponse
3281
3305
  * @throws OciError when an error occurs
3282
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/RestoreKeyFromFile.ts.html |here} to see how to use RestoreKeyFromFile API.
3306
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/RestoreKeyFromFile.ts.html |here} to see how to use RestoreKeyFromFile API.
3283
3307
  */
3284
3308
  restoreKeyFromFile(restoreKeyFromFileRequest) {
3285
3309
  return __awaiter(this, void 0, void 0, function* () {
@@ -3358,7 +3382,7 @@ class KmsManagementClient {
3358
3382
  * @param RestoreKeyFromObjectStoreRequest
3359
3383
  * @return RestoreKeyFromObjectStoreResponse
3360
3384
  * @throws OciError when an error occurs
3361
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/RestoreKeyFromObjectStore.ts.html |here} to see how to use RestoreKeyFromObjectStore API.
3385
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/RestoreKeyFromObjectStore.ts.html |here} to see how to use RestoreKeyFromObjectStore API.
3362
3386
  */
3363
3387
  restoreKeyFromObjectStore(restoreKeyFromObjectStoreRequest) {
3364
3388
  return __awaiter(this, void 0, void 0, function* () {
@@ -3434,7 +3458,7 @@ class KmsManagementClient {
3434
3458
  * @param ScheduleKeyDeletionRequest
3435
3459
  * @return ScheduleKeyDeletionResponse
3436
3460
  * @throws OciError when an error occurs
3437
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/ScheduleKeyDeletion.ts.html |here} to see how to use ScheduleKeyDeletion API.
3461
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/ScheduleKeyDeletion.ts.html |here} to see how to use ScheduleKeyDeletion API.
3438
3462
  */
3439
3463
  scheduleKeyDeletion(scheduleKeyDeletionRequest) {
3440
3464
  return __awaiter(this, void 0, void 0, function* () {
@@ -3507,7 +3531,7 @@ class KmsManagementClient {
3507
3531
  * @param ScheduleKeyVersionDeletionRequest
3508
3532
  * @return ScheduleKeyVersionDeletionResponse
3509
3533
  * @throws OciError when an error occurs
3510
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/ScheduleKeyVersionDeletion.ts.html |here} to see how to use ScheduleKeyVersionDeletion API.
3534
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/ScheduleKeyVersionDeletion.ts.html |here} to see how to use ScheduleKeyVersionDeletion API.
3511
3535
  */
3512
3536
  scheduleKeyVersionDeletion(scheduleKeyVersionDeletionRequest) {
3513
3537
  return __awaiter(this, void 0, void 0, function* () {
@@ -3582,7 +3606,7 @@ class KmsManagementClient {
3582
3606
  * @param UpdateKeyRequest
3583
3607
  * @return UpdateKeyResponse
3584
3608
  * @throws OciError when an error occurs
3585
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/UpdateKey.ts.html |here} to see how to use UpdateKey API.
3609
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/UpdateKey.ts.html |here} to see how to use UpdateKey API.
3586
3610
  */
3587
3611
  updateKey(updateKeyRequest) {
3588
3612
  return __awaiter(this, void 0, void 0, function* () {
@@ -3785,6 +3809,12 @@ class KmsVaultClient {
3785
3809
  this._circuitBreaker.shutdown();
3786
3810
  }
3787
3811
  }
3812
+ /**
3813
+ * Close the client once it is no longer needed
3814
+ */
3815
+ close() {
3816
+ this.shutdownCircuitBreaker();
3817
+ }
3788
3818
  /**
3789
3819
  * Backs up an encrypted file that contains all the metadata of a vault so that you can restore the vault later.
3790
3820
  * You can backup a vault whether or not it contains keys. This operation only backs up the
@@ -3794,7 +3824,7 @@ class KmsVaultClient {
3794
3824
  * @param BackupVaultRequest
3795
3825
  * @return BackupVaultResponse
3796
3826
  * @throws OciError when an error occurs
3797
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/BackupVault.ts.html |here} to see how to use BackupVault API.
3827
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/BackupVault.ts.html |here} to see how to use BackupVault API.
3798
3828
  */
3799
3829
  backupVault(backupVaultRequest) {
3800
3830
  return __awaiter(this, void 0, void 0, function* () {
@@ -3874,7 +3904,7 @@ class KmsVaultClient {
3874
3904
  * @param CancelVaultDeletionRequest
3875
3905
  * @return CancelVaultDeletionResponse
3876
3906
  * @throws OciError when an error occurs
3877
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/CancelVaultDeletion.ts.html |here} to see how to use CancelVaultDeletion API.
3907
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/CancelVaultDeletion.ts.html |here} to see how to use CancelVaultDeletion API.
3878
3908
  */
3879
3909
  cancelVaultDeletion(cancelVaultDeletionRequest) {
3880
3910
  return __awaiter(this, void 0, void 0, function* () {
@@ -3948,7 +3978,7 @@ class KmsVaultClient {
3948
3978
  * @param ChangeVaultCompartmentRequest
3949
3979
  * @return ChangeVaultCompartmentResponse
3950
3980
  * @throws OciError when an error occurs
3951
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/ChangeVaultCompartment.ts.html |here} to see how to use ChangeVaultCompartment API.
3981
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/ChangeVaultCompartment.ts.html |here} to see how to use ChangeVaultCompartment API.
3952
3982
  */
3953
3983
  changeVaultCompartment(changeVaultCompartmentRequest) {
3954
3984
  return __awaiter(this, void 0, void 0, function* () {
@@ -4019,7 +4049,7 @@ class KmsVaultClient {
4019
4049
  * @param CreateVaultRequest
4020
4050
  * @return CreateVaultResponse
4021
4051
  * @throws OciError when an error occurs
4022
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/CreateVault.ts.html |here} to see how to use CreateVault API.
4052
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/CreateVault.ts.html |here} to see how to use CreateVault API.
4023
4053
  */
4024
4054
  createVault(createVaultRequest) {
4025
4055
  return __awaiter(this, void 0, void 0, function* () {
@@ -4092,7 +4122,7 @@ class KmsVaultClient {
4092
4122
  * @param CreateVaultReplicaRequest
4093
4123
  * @return CreateVaultReplicaResponse
4094
4124
  * @throws OciError when an error occurs
4095
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/CreateVaultReplica.ts.html |here} to see how to use CreateVaultReplica API.
4125
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/CreateVaultReplica.ts.html |here} to see how to use CreateVaultReplica API.
4096
4126
  */
4097
4127
  createVaultReplica(createVaultReplicaRequest) {
4098
4128
  return __awaiter(this, void 0, void 0, function* () {
@@ -4160,7 +4190,7 @@ class KmsVaultClient {
4160
4190
  * @param DeleteVaultReplicaRequest
4161
4191
  * @return DeleteVaultReplicaResponse
4162
4192
  * @throws OciError when an error occurs
4163
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/DeleteVaultReplica.ts.html |here} to see how to use DeleteVaultReplica API.
4193
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/DeleteVaultReplica.ts.html |here} to see how to use DeleteVaultReplica API.
4164
4194
  */
4165
4195
  deleteVaultReplica(deleteVaultReplicaRequest) {
4166
4196
  return __awaiter(this, void 0, void 0, function* () {
@@ -4228,7 +4258,7 @@ class KmsVaultClient {
4228
4258
  * @param GetVaultRequest
4229
4259
  * @return GetVaultResponse
4230
4260
  * @throws OciError when an error occurs
4231
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/GetVault.ts.html |here} to see how to use GetVault API.
4261
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/GetVault.ts.html |here} to see how to use GetVault API.
4232
4262
  */
4233
4263
  getVault(getVaultRequest) {
4234
4264
  return __awaiter(this, void 0, void 0, function* () {
@@ -4292,7 +4322,7 @@ class KmsVaultClient {
4292
4322
  * @param GetVaultUsageRequest
4293
4323
  * @return GetVaultUsageResponse
4294
4324
  * @throws OciError when an error occurs
4295
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/GetVaultUsage.ts.html |here} to see how to use GetVaultUsage API.
4325
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/GetVaultUsage.ts.html |here} to see how to use GetVaultUsage API.
4296
4326
  */
4297
4327
  getVaultUsage(getVaultUsageRequest) {
4298
4328
  return __awaiter(this, void 0, void 0, function* () {
@@ -4356,7 +4386,7 @@ class KmsVaultClient {
4356
4386
  * @param ListVaultReplicasRequest
4357
4387
  * @return ListVaultReplicasResponse
4358
4388
  * @throws OciError when an error occurs
4359
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/ListVaultReplicas.ts.html |here} to see how to use ListVaultReplicas API.
4389
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/ListVaultReplicas.ts.html |here} to see how to use ListVaultReplicas API.
4360
4390
  */
4361
4391
  listVaultReplicas(listVaultReplicasRequest) {
4362
4392
  return __awaiter(this, void 0, void 0, function* () {
@@ -4477,7 +4507,7 @@ class KmsVaultClient {
4477
4507
  * @param ListVaultsRequest
4478
4508
  * @return ListVaultsResponse
4479
4509
  * @throws OciError when an error occurs
4480
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/ListVaults.ts.html |here} to see how to use ListVaults API.
4510
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/ListVaults.ts.html |here} to see how to use ListVaults API.
4481
4511
  */
4482
4512
  listVaults(listVaultsRequest) {
4483
4513
  return __awaiter(this, void 0, void 0, function* () {
@@ -4587,7 +4617,7 @@ class KmsVaultClient {
4587
4617
  * @param RestoreVaultFromFileRequest
4588
4618
  * @return RestoreVaultFromFileResponse
4589
4619
  * @throws OciError when an error occurs
4590
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/RestoreVaultFromFile.ts.html |here} to see how to use RestoreVaultFromFile API.
4620
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/RestoreVaultFromFile.ts.html |here} to see how to use RestoreVaultFromFile API.
4591
4621
  */
4592
4622
  restoreVaultFromFile(restoreVaultFromFileRequest) {
4593
4623
  return __awaiter(this, void 0, void 0, function* () {
@@ -4668,7 +4698,7 @@ class KmsVaultClient {
4668
4698
  * @param RestoreVaultFromObjectStoreRequest
4669
4699
  * @return RestoreVaultFromObjectStoreResponse
4670
4700
  * @throws OciError when an error occurs
4671
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/RestoreVaultFromObjectStore.ts.html |here} to see how to use RestoreVaultFromObjectStore API.
4701
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/RestoreVaultFromObjectStore.ts.html |here} to see how to use RestoreVaultFromObjectStore API.
4672
4702
  */
4673
4703
  restoreVaultFromObjectStore(restoreVaultFromObjectStoreRequest) {
4674
4704
  return __awaiter(this, void 0, void 0, function* () {
@@ -4749,7 +4779,7 @@ class KmsVaultClient {
4749
4779
  * @param ScheduleVaultDeletionRequest
4750
4780
  * @return ScheduleVaultDeletionResponse
4751
4781
  * @throws OciError when an error occurs
4752
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/ScheduleVaultDeletion.ts.html |here} to see how to use ScheduleVaultDeletion API.
4782
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/ScheduleVaultDeletion.ts.html |here} to see how to use ScheduleVaultDeletion API.
4753
4783
  */
4754
4784
  scheduleVaultDeletion(scheduleVaultDeletionRequest) {
4755
4785
  return __awaiter(this, void 0, void 0, function* () {
@@ -4823,7 +4853,7 @@ class KmsVaultClient {
4823
4853
  * @param UpdateVaultRequest
4824
4854
  * @return UpdateVaultResponse
4825
4855
  * @throws OciError when an error occurs
4826
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.0/keymanagement/UpdateVault.ts.html |here} to see how to use UpdateVault API.
4856
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.85.0/keymanagement/UpdateVault.ts.html |here} to see how to use UpdateVault API.
4827
4857
  */
4828
4858
  updateVault(updateVaultRequest) {
4829
4859
  return __awaiter(this, void 0, void 0, function* () {