oci-keymanagement 2.11.0 → 2.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/client.d.ts +44 -41
- package/lib/client.js +46 -43
- package/lib/client.js.map +1 -1
- package/lib/request/backup-key-request.d.ts +1 -1
- package/lib/request/backup-vault-request.d.ts +1 -1
- package/lib/request/cancel-key-deletion-request.d.ts +1 -1
- package/lib/request/cancel-key-version-deletion-request.d.ts +1 -1
- package/lib/request/cancel-vault-deletion-request.d.ts +1 -1
- package/lib/request/change-key-compartment-request.d.ts +1 -1
- package/lib/request/change-vault-compartment-request.d.ts +1 -1
- package/lib/request/create-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-vault-replica-request.d.ts +1 -1
- package/lib/request/disable-key-request.d.ts +1 -1
- package/lib/request/enable-key-request.d.ts +1 -1
- package/lib/request/encrypt-request.d.ts +1 -1
- package/lib/request/export-key-request.d.ts +1 -1
- package/lib/request/generate-data-encryption-key-request.d.ts +1 -1
- package/lib/request/get-key-request.d.ts +1 -1
- package/lib/request/get-key-version-request.d.ts +1 -1
- package/lib/request/get-replication-status-request.d.ts +1 -1
- package/lib/request/get-vault-request.d.ts +1 -1
- package/lib/request/get-vault-usage-request.d.ts +1 -1
- package/lib/request/get-wrapping-key-request.d.ts +1 -1
- package/lib/request/import-key-request.d.ts +1 -1
- package/lib/request/import-key-version-request.d.ts +1 -1
- package/lib/request/list-key-versions-request.d.ts +1 -1
- package/lib/request/list-keys-request.d.ts +1 -1
- package/lib/request/list-vault-replicas-request.d.ts +1 -1
- package/lib/request/list-vaults-request.d.ts +1 -1
- package/lib/request/restore-key-from-file-request.d.ts +1 -1
- package/lib/request/restore-key-from-object-store-request.d.ts +1 -1
- package/lib/request/restore-vault-from-file-request.d.ts +1 -1
- package/lib/request/restore-vault-from-object-store-request.d.ts +1 -1
- package/lib/request/schedule-key-deletion-request.d.ts +1 -1
- package/lib/request/schedule-key-version-deletion-request.d.ts +1 -1
- package/lib/request/schedule-vault-deletion-request.d.ts +1 -1
- package/lib/request/sign-request.d.ts +1 -1
- package/lib/request/update-key-request.d.ts +1 -1
- package/lib/request/update-vault-request.d.ts +1 -1
- package/lib/request/verify-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.js
CHANGED
|
@@ -107,7 +107,7 @@ class KmsCryptoClient {
|
|
|
107
107
|
* @param DecryptRequest
|
|
108
108
|
* @return DecryptResponse
|
|
109
109
|
* @throws OciError when an error occurs
|
|
110
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
110
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/Decrypt.ts.html |here} to see how to use Decrypt API.
|
|
111
111
|
*/
|
|
112
112
|
decrypt(decryptRequest) {
|
|
113
113
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -164,7 +164,7 @@ class KmsCryptoClient {
|
|
|
164
164
|
* @param EncryptRequest
|
|
165
165
|
* @return EncryptResponse
|
|
166
166
|
* @throws OciError when an error occurs
|
|
167
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
167
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/Encrypt.ts.html |here} to see how to use Encrypt API.
|
|
168
168
|
*/
|
|
169
169
|
encrypt(encryptRequest) {
|
|
170
170
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -222,7 +222,7 @@ class KmsCryptoClient {
|
|
|
222
222
|
* @param ExportKeyRequest
|
|
223
223
|
* @return ExportKeyResponse
|
|
224
224
|
* @throws OciError when an error occurs
|
|
225
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
225
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/ExportKey.ts.html |here} to see how to use ExportKey API.
|
|
226
226
|
*/
|
|
227
227
|
exportKey(exportKeyRequest) {
|
|
228
228
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -277,7 +277,7 @@ class KmsCryptoClient {
|
|
|
277
277
|
* @param GenerateDataEncryptionKeyRequest
|
|
278
278
|
* @return GenerateDataEncryptionKeyResponse
|
|
279
279
|
* @throws OciError when an error occurs
|
|
280
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
280
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/GenerateDataEncryptionKey.ts.html |here} to see how to use GenerateDataEncryptionKey API.
|
|
281
281
|
*/
|
|
282
282
|
generateDataEncryptionKey(generateDataEncryptionKeyRequest) {
|
|
283
283
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -335,7 +335,7 @@ class KmsCryptoClient {
|
|
|
335
335
|
* @param SignRequest
|
|
336
336
|
* @return SignResponse
|
|
337
337
|
* @throws OciError when an error occurs
|
|
338
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
338
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/Sign.ts.html |here} to see how to use Sign API.
|
|
339
339
|
*/
|
|
340
340
|
sign(signRequest) {
|
|
341
341
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -393,7 +393,7 @@ class KmsCryptoClient {
|
|
|
393
393
|
* @param VerifyRequest
|
|
394
394
|
* @return VerifyResponse
|
|
395
395
|
* @throws OciError when an error occurs
|
|
396
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
396
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/Verify.ts.html |here} to see how to use Verify API.
|
|
397
397
|
*/
|
|
398
398
|
verify(verifyRequest) {
|
|
399
399
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -445,6 +445,7 @@ class KmsCryptoClient {
|
|
|
445
445
|
}
|
|
446
446
|
exports.KmsCryptoClient = KmsCryptoClient;
|
|
447
447
|
KmsCryptoClient.serviceEndpointTemplate = "https://kms.{region}.{secondLevelDomain}";
|
|
448
|
+
KmsCryptoClient.endpointServiceName = "";
|
|
448
449
|
var KmsManagementApiKeys;
|
|
449
450
|
(function (KmsManagementApiKeys) {
|
|
450
451
|
})(KmsManagementApiKeys = exports.KmsManagementApiKeys || (exports.KmsManagementApiKeys = {}));
|
|
@@ -522,7 +523,7 @@ class KmsManagementClient {
|
|
|
522
523
|
* @param BackupKeyRequest
|
|
523
524
|
* @return BackupKeyResponse
|
|
524
525
|
* @throws OciError when an error occurs
|
|
525
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
526
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/BackupKey.ts.html |here} to see how to use BackupKey API.
|
|
526
527
|
*/
|
|
527
528
|
backupKey(backupKeyRequest) {
|
|
528
529
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -599,7 +600,7 @@ class KmsManagementClient {
|
|
|
599
600
|
* @param CancelKeyDeletionRequest
|
|
600
601
|
* @return CancelKeyDeletionResponse
|
|
601
602
|
* @throws OciError when an error occurs
|
|
602
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
603
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/CancelKeyDeletion.ts.html |here} to see how to use CancelKeyDeletion API.
|
|
603
604
|
*/
|
|
604
605
|
cancelKeyDeletion(cancelKeyDeletionRequest) {
|
|
605
606
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -670,7 +671,7 @@ class KmsManagementClient {
|
|
|
670
671
|
* @param CancelKeyVersionDeletionRequest
|
|
671
672
|
* @return CancelKeyVersionDeletionResponse
|
|
672
673
|
* @throws OciError when an error occurs
|
|
673
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
674
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/CancelKeyVersionDeletion.ts.html |here} to see how to use CancelKeyVersionDeletion API.
|
|
674
675
|
*/
|
|
675
676
|
cancelKeyVersionDeletion(cancelKeyVersionDeletionRequest) {
|
|
676
677
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -743,7 +744,7 @@ class KmsManagementClient {
|
|
|
743
744
|
* @param ChangeKeyCompartmentRequest
|
|
744
745
|
* @return ChangeKeyCompartmentResponse
|
|
745
746
|
* @throws OciError when an error occurs
|
|
746
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
747
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/ChangeKeyCompartment.ts.html |here} to see how to use ChangeKeyCompartment API.
|
|
747
748
|
*/
|
|
748
749
|
changeKeyCompartment(changeKeyCompartmentRequest) {
|
|
749
750
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -809,7 +810,7 @@ class KmsManagementClient {
|
|
|
809
810
|
* @param CreateKeyRequest
|
|
810
811
|
* @return CreateKeyResponse
|
|
811
812
|
* @throws OciError when an error occurs
|
|
812
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
813
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/CreateKey.ts.html |here} to see how to use CreateKey API.
|
|
813
814
|
*/
|
|
814
815
|
createKey(createKeyRequest) {
|
|
815
816
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -877,7 +878,7 @@ class KmsManagementClient {
|
|
|
877
878
|
* @param CreateKeyVersionRequest
|
|
878
879
|
* @return CreateKeyVersionResponse
|
|
879
880
|
* @throws OciError when an error occurs
|
|
880
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
881
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/CreateKeyVersion.ts.html |here} to see how to use CreateKeyVersion API.
|
|
881
882
|
*/
|
|
882
883
|
createKeyVersion(createKeyVersionRequest) {
|
|
883
884
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -946,7 +947,7 @@ class KmsManagementClient {
|
|
|
946
947
|
* @param DisableKeyRequest
|
|
947
948
|
* @return DisableKeyResponse
|
|
948
949
|
* @throws OciError when an error occurs
|
|
949
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
950
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/DisableKey.ts.html |here} to see how to use DisableKey API.
|
|
950
951
|
*/
|
|
951
952
|
disableKey(disableKeyRequest) {
|
|
952
953
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1016,7 +1017,7 @@ class KmsManagementClient {
|
|
|
1016
1017
|
* @param EnableKeyRequest
|
|
1017
1018
|
* @return EnableKeyResponse
|
|
1018
1019
|
* @throws OciError when an error occurs
|
|
1019
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1020
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/EnableKey.ts.html |here} to see how to use EnableKey API.
|
|
1020
1021
|
*/
|
|
1021
1022
|
enableKey(enableKeyRequest) {
|
|
1022
1023
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1085,7 +1086,7 @@ class KmsManagementClient {
|
|
|
1085
1086
|
* @param GetKeyRequest
|
|
1086
1087
|
* @return GetKeyResponse
|
|
1087
1088
|
* @throws OciError when an error occurs
|
|
1088
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1089
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/GetKey.ts.html |here} to see how to use GetKey API.
|
|
1089
1090
|
*/
|
|
1090
1091
|
getKey(getKeyRequest) {
|
|
1091
1092
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1152,7 +1153,7 @@ class KmsManagementClient {
|
|
|
1152
1153
|
* @param GetKeyVersionRequest
|
|
1153
1154
|
* @return GetKeyVersionResponse
|
|
1154
1155
|
* @throws OciError when an error occurs
|
|
1155
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1156
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/GetKeyVersion.ts.html |here} to see how to use GetKeyVersion API.
|
|
1156
1157
|
*/
|
|
1157
1158
|
getKeyVersion(getKeyVersionRequest) {
|
|
1158
1159
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1218,7 +1219,7 @@ class KmsManagementClient {
|
|
|
1218
1219
|
* @param GetReplicationStatusRequest
|
|
1219
1220
|
* @return GetReplicationStatusResponse
|
|
1220
1221
|
* @throws OciError when an error occurs
|
|
1221
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1222
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/GetReplicationStatus.ts.html |here} to see how to use GetReplicationStatus API.
|
|
1222
1223
|
*/
|
|
1223
1224
|
getReplicationStatus(getReplicationStatusRequest) {
|
|
1224
1225
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1281,7 +1282,7 @@ class KmsManagementClient {
|
|
|
1281
1282
|
* @param GetWrappingKeyRequest
|
|
1282
1283
|
* @return GetWrappingKeyResponse
|
|
1283
1284
|
* @throws OciError when an error occurs
|
|
1284
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1285
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/GetWrappingKey.ts.html |here} to see how to use GetWrappingKey API.
|
|
1285
1286
|
*/
|
|
1286
1287
|
getWrappingKey(getWrappingKeyRequest) {
|
|
1287
1288
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1343,7 +1344,7 @@ class KmsManagementClient {
|
|
|
1343
1344
|
* @param ImportKeyRequest
|
|
1344
1345
|
* @return ImportKeyResponse
|
|
1345
1346
|
* @throws OciError when an error occurs
|
|
1346
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1347
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/ImportKey.ts.html |here} to see how to use ImportKey API.
|
|
1347
1348
|
*/
|
|
1348
1349
|
importKey(importKeyRequest) {
|
|
1349
1350
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1409,7 +1410,7 @@ class KmsManagementClient {
|
|
|
1409
1410
|
* @param ImportKeyVersionRequest
|
|
1410
1411
|
* @return ImportKeyVersionResponse
|
|
1411
1412
|
* @throws OciError when an error occurs
|
|
1412
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1413
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/ImportKeyVersion.ts.html |here} to see how to use ImportKeyVersion API.
|
|
1413
1414
|
*/
|
|
1414
1415
|
importKeyVersion(importKeyVersionRequest) {
|
|
1415
1416
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1479,7 +1480,7 @@ class KmsManagementClient {
|
|
|
1479
1480
|
* @param ListKeyVersionsRequest
|
|
1480
1481
|
* @return ListKeyVersionsResponse
|
|
1481
1482
|
* @throws OciError when an error occurs
|
|
1482
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1483
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/ListKeyVersions.ts.html |here} to see how to use ListKeyVersions API.
|
|
1483
1484
|
*/
|
|
1484
1485
|
listKeyVersions(listKeyVersionsRequest) {
|
|
1485
1486
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1591,7 +1592,7 @@ class KmsManagementClient {
|
|
|
1591
1592
|
* @param ListKeysRequest
|
|
1592
1593
|
* @return ListKeysResponse
|
|
1593
1594
|
* @throws OciError when an error occurs
|
|
1594
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1595
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/ListKeys.ts.html |here} to see how to use ListKeys API.
|
|
1595
1596
|
*/
|
|
1596
1597
|
listKeys(listKeysRequest) {
|
|
1597
1598
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1703,7 +1704,7 @@ class KmsManagementClient {
|
|
|
1703
1704
|
* @param RestoreKeyFromFileRequest
|
|
1704
1705
|
* @return RestoreKeyFromFileResponse
|
|
1705
1706
|
* @throws OciError when an error occurs
|
|
1706
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1707
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/RestoreKeyFromFile.ts.html |here} to see how to use RestoreKeyFromFile API.
|
|
1707
1708
|
*/
|
|
1708
1709
|
restoreKeyFromFile(restoreKeyFromFileRequest) {
|
|
1709
1710
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1780,7 +1781,7 @@ class KmsManagementClient {
|
|
|
1780
1781
|
* @param RestoreKeyFromObjectStoreRequest
|
|
1781
1782
|
* @return RestoreKeyFromObjectStoreResponse
|
|
1782
1783
|
* @throws OciError when an error occurs
|
|
1783
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1784
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/RestoreKeyFromObjectStore.ts.html |here} to see how to use RestoreKeyFromObjectStore API.
|
|
1784
1785
|
*/
|
|
1785
1786
|
restoreKeyFromObjectStore(restoreKeyFromObjectStoreRequest) {
|
|
1786
1787
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1854,7 +1855,7 @@ class KmsManagementClient {
|
|
|
1854
1855
|
* @param ScheduleKeyDeletionRequest
|
|
1855
1856
|
* @return ScheduleKeyDeletionResponse
|
|
1856
1857
|
* @throws OciError when an error occurs
|
|
1857
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1858
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/ScheduleKeyDeletion.ts.html |here} to see how to use ScheduleKeyDeletion API.
|
|
1858
1859
|
*/
|
|
1859
1860
|
scheduleKeyDeletion(scheduleKeyDeletionRequest) {
|
|
1860
1861
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1925,7 +1926,7 @@ class KmsManagementClient {
|
|
|
1925
1926
|
* @param ScheduleKeyVersionDeletionRequest
|
|
1926
1927
|
* @return ScheduleKeyVersionDeletionResponse
|
|
1927
1928
|
* @throws OciError when an error occurs
|
|
1928
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1929
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/ScheduleKeyVersionDeletion.ts.html |here} to see how to use ScheduleKeyVersionDeletion API.
|
|
1929
1930
|
*/
|
|
1930
1931
|
scheduleKeyVersionDeletion(scheduleKeyVersionDeletionRequest) {
|
|
1931
1932
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1998,7 +1999,7 @@ class KmsManagementClient {
|
|
|
1998
1999
|
* @param UpdateKeyRequest
|
|
1999
2000
|
* @return UpdateKeyResponse
|
|
2000
2001
|
* @throws OciError when an error occurs
|
|
2001
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2002
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/UpdateKey.ts.html |here} to see how to use UpdateKey API.
|
|
2002
2003
|
*/
|
|
2003
2004
|
updateKey(updateKeyRequest) {
|
|
2004
2005
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2058,6 +2059,7 @@ class KmsManagementClient {
|
|
|
2058
2059
|
}
|
|
2059
2060
|
exports.KmsManagementClient = KmsManagementClient;
|
|
2060
2061
|
KmsManagementClient.serviceEndpointTemplate = "https://kms.{region}.{secondLevelDomain}";
|
|
2062
|
+
KmsManagementClient.endpointServiceName = "";
|
|
2061
2063
|
var KmsVaultApiKeys;
|
|
2062
2064
|
(function (KmsVaultApiKeys) {
|
|
2063
2065
|
})(KmsVaultApiKeys = exports.KmsVaultApiKeys || (exports.KmsVaultApiKeys = {}));
|
|
@@ -2119,7 +2121,7 @@ class KmsVaultClient {
|
|
|
2119
2121
|
* @param region The region of the service.
|
|
2120
2122
|
*/
|
|
2121
2123
|
set region(region) {
|
|
2122
|
-
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(KmsVaultClient.serviceEndpointTemplate, region);
|
|
2124
|
+
this.endpoint = common.EndpointBuilder.createEndpointFromRegion(KmsVaultClient.serviceEndpointTemplate, region, KmsVaultClient.endpointServiceName);
|
|
2123
2125
|
}
|
|
2124
2126
|
/**
|
|
2125
2127
|
* Sets the regionId to call (ex, 'us-phoenix-1').
|
|
@@ -2130,7 +2132,7 @@ class KmsVaultClient {
|
|
|
2130
2132
|
* @param regionId The public region ID.
|
|
2131
2133
|
*/
|
|
2132
2134
|
set regionId(regionId) {
|
|
2133
|
-
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(KmsVaultClient.serviceEndpointTemplate, regionId);
|
|
2135
|
+
this.endpoint = common.EndpointBuilder.createEndpointFromRegionId(KmsVaultClient.serviceEndpointTemplate, regionId, KmsVaultClient.endpointServiceName);
|
|
2134
2136
|
}
|
|
2135
2137
|
/**
|
|
2136
2138
|
* Creates a new KmsVaultWaiter for resources for this service.
|
|
@@ -2162,7 +2164,7 @@ class KmsVaultClient {
|
|
|
2162
2164
|
* @param BackupVaultRequest
|
|
2163
2165
|
* @return BackupVaultResponse
|
|
2164
2166
|
* @throws OciError when an error occurs
|
|
2165
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2167
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/BackupVault.ts.html |here} to see how to use BackupVault API.
|
|
2166
2168
|
*/
|
|
2167
2169
|
backupVault(backupVaultRequest) {
|
|
2168
2170
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2240,7 +2242,7 @@ class KmsVaultClient {
|
|
|
2240
2242
|
* @param CancelVaultDeletionRequest
|
|
2241
2243
|
* @return CancelVaultDeletionResponse
|
|
2242
2244
|
* @throws OciError when an error occurs
|
|
2243
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2245
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/CancelVaultDeletion.ts.html |here} to see how to use CancelVaultDeletion API.
|
|
2244
2246
|
*/
|
|
2245
2247
|
cancelVaultDeletion(cancelVaultDeletionRequest) {
|
|
2246
2248
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2312,7 +2314,7 @@ class KmsVaultClient {
|
|
|
2312
2314
|
* @param ChangeVaultCompartmentRequest
|
|
2313
2315
|
* @return ChangeVaultCompartmentResponse
|
|
2314
2316
|
* @throws OciError when an error occurs
|
|
2315
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2317
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/ChangeVaultCompartment.ts.html |here} to see how to use ChangeVaultCompartment API.
|
|
2316
2318
|
*/
|
|
2317
2319
|
changeVaultCompartment(changeVaultCompartmentRequest) {
|
|
2318
2320
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2381,7 +2383,7 @@ class KmsVaultClient {
|
|
|
2381
2383
|
* @param CreateVaultRequest
|
|
2382
2384
|
* @return CreateVaultResponse
|
|
2383
2385
|
* @throws OciError when an error occurs
|
|
2384
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2386
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/CreateVault.ts.html |here} to see how to use CreateVault API.
|
|
2385
2387
|
*/
|
|
2386
2388
|
createVault(createVaultRequest) {
|
|
2387
2389
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2452,7 +2454,7 @@ class KmsVaultClient {
|
|
|
2452
2454
|
* @param CreateVaultReplicaRequest
|
|
2453
2455
|
* @return CreateVaultReplicaResponse
|
|
2454
2456
|
* @throws OciError when an error occurs
|
|
2455
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2457
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/CreateVaultReplica.ts.html |here} to see how to use CreateVaultReplica API.
|
|
2456
2458
|
*/
|
|
2457
2459
|
createVaultReplica(createVaultReplicaRequest) {
|
|
2458
2460
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2518,7 +2520,7 @@ class KmsVaultClient {
|
|
|
2518
2520
|
* @param DeleteVaultReplicaRequest
|
|
2519
2521
|
* @return DeleteVaultReplicaResponse
|
|
2520
2522
|
* @throws OciError when an error occurs
|
|
2521
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2523
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/DeleteVaultReplica.ts.html |here} to see how to use DeleteVaultReplica API.
|
|
2522
2524
|
*/
|
|
2523
2525
|
deleteVaultReplica(deleteVaultReplicaRequest) {
|
|
2524
2526
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2584,7 +2586,7 @@ class KmsVaultClient {
|
|
|
2584
2586
|
* @param GetVaultRequest
|
|
2585
2587
|
* @return GetVaultResponse
|
|
2586
2588
|
* @throws OciError when an error occurs
|
|
2587
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2589
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/GetVault.ts.html |here} to see how to use GetVault API.
|
|
2588
2590
|
*/
|
|
2589
2591
|
getVault(getVaultRequest) {
|
|
2590
2592
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2646,7 +2648,7 @@ class KmsVaultClient {
|
|
|
2646
2648
|
* @param GetVaultUsageRequest
|
|
2647
2649
|
* @return GetVaultUsageResponse
|
|
2648
2650
|
* @throws OciError when an error occurs
|
|
2649
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2651
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/GetVaultUsage.ts.html |here} to see how to use GetVaultUsage API.
|
|
2650
2652
|
*/
|
|
2651
2653
|
getVaultUsage(getVaultUsageRequest) {
|
|
2652
2654
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2708,7 +2710,7 @@ class KmsVaultClient {
|
|
|
2708
2710
|
* @param ListVaultReplicasRequest
|
|
2709
2711
|
* @return ListVaultReplicasResponse
|
|
2710
2712
|
* @throws OciError when an error occurs
|
|
2711
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2713
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/ListVaultReplicas.ts.html |here} to see how to use ListVaultReplicas API.
|
|
2712
2714
|
*/
|
|
2713
2715
|
listVaultReplicas(listVaultReplicasRequest) {
|
|
2714
2716
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2827,7 +2829,7 @@ class KmsVaultClient {
|
|
|
2827
2829
|
* @param ListVaultsRequest
|
|
2828
2830
|
* @return ListVaultsResponse
|
|
2829
2831
|
* @throws OciError when an error occurs
|
|
2830
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2832
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/ListVaults.ts.html |here} to see how to use ListVaults API.
|
|
2831
2833
|
*/
|
|
2832
2834
|
listVaults(listVaultsRequest) {
|
|
2833
2835
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2935,7 +2937,7 @@ class KmsVaultClient {
|
|
|
2935
2937
|
* @param RestoreVaultFromFileRequest
|
|
2936
2938
|
* @return RestoreVaultFromFileResponse
|
|
2937
2939
|
* @throws OciError when an error occurs
|
|
2938
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
2940
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/RestoreVaultFromFile.ts.html |here} to see how to use RestoreVaultFromFile API.
|
|
2939
2941
|
*/
|
|
2940
2942
|
restoreVaultFromFile(restoreVaultFromFileRequest) {
|
|
2941
2943
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3014,7 +3016,7 @@ class KmsVaultClient {
|
|
|
3014
3016
|
* @param RestoreVaultFromObjectStoreRequest
|
|
3015
3017
|
* @return RestoreVaultFromObjectStoreResponse
|
|
3016
3018
|
* @throws OciError when an error occurs
|
|
3017
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3019
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/RestoreVaultFromObjectStore.ts.html |here} to see how to use RestoreVaultFromObjectStore API.
|
|
3018
3020
|
*/
|
|
3019
3021
|
restoreVaultFromObjectStore(restoreVaultFromObjectStoreRequest) {
|
|
3020
3022
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3093,7 +3095,7 @@ class KmsVaultClient {
|
|
|
3093
3095
|
* @param ScheduleVaultDeletionRequest
|
|
3094
3096
|
* @return ScheduleVaultDeletionResponse
|
|
3095
3097
|
* @throws OciError when an error occurs
|
|
3096
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3098
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/ScheduleVaultDeletion.ts.html |here} to see how to use ScheduleVaultDeletion API.
|
|
3097
3099
|
*/
|
|
3098
3100
|
scheduleVaultDeletion(scheduleVaultDeletionRequest) {
|
|
3099
3101
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3165,7 +3167,7 @@ class KmsVaultClient {
|
|
|
3165
3167
|
* @param UpdateVaultRequest
|
|
3166
3168
|
* @return UpdateVaultResponse
|
|
3167
3169
|
* @throws OciError when an error occurs
|
|
3168
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
3170
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.13.0/keymanagement/UpdateVault.ts.html |here} to see how to use UpdateVault API.
|
|
3169
3171
|
*/
|
|
3170
3172
|
updateVault(updateVaultRequest) {
|
|
3171
3173
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -3225,4 +3227,5 @@ class KmsVaultClient {
|
|
|
3225
3227
|
}
|
|
3226
3228
|
exports.KmsVaultClient = KmsVaultClient;
|
|
3227
3229
|
KmsVaultClient.serviceEndpointTemplate = "https://kms.{region}.{secondLevelDomain}";
|
|
3230
|
+
KmsVaultClient.endpointServiceName = "";
|
|
3228
3231
|
//# sourceMappingURL=client.js.map
|