oci-keymanagement 2.20.0 → 2.21.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 +41 -41
- package/lib/client.js +41 -41
- 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.d.ts
CHANGED
|
@@ -49,7 +49,7 @@ export declare class KmsCryptoClient {
|
|
|
49
49
|
* @param DecryptRequest
|
|
50
50
|
* @return DecryptResponse
|
|
51
51
|
* @throws OciError when an error occurs
|
|
52
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
52
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/Decrypt.ts.html |here} to see how to use Decrypt API.
|
|
53
53
|
*/
|
|
54
54
|
decrypt(decryptRequest: requests.DecryptRequest): Promise<responses.DecryptResponse>;
|
|
55
55
|
/**
|
|
@@ -60,7 +60,7 @@ export declare class KmsCryptoClient {
|
|
|
60
60
|
* @param EncryptRequest
|
|
61
61
|
* @return EncryptResponse
|
|
62
62
|
* @throws OciError when an error occurs
|
|
63
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
63
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/Encrypt.ts.html |here} to see how to use Encrypt API.
|
|
64
64
|
*/
|
|
65
65
|
encrypt(encryptRequest: requests.EncryptRequest): Promise<responses.EncryptResponse>;
|
|
66
66
|
/**
|
|
@@ -72,7 +72,7 @@ export declare class KmsCryptoClient {
|
|
|
72
72
|
* @param ExportKeyRequest
|
|
73
73
|
* @return ExportKeyResponse
|
|
74
74
|
* @throws OciError when an error occurs
|
|
75
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
75
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/ExportKey.ts.html |here} to see how to use ExportKey API.
|
|
76
76
|
*/
|
|
77
77
|
exportKey(exportKeyRequest: requests.ExportKeyRequest): Promise<responses.ExportKeyResponse>;
|
|
78
78
|
/**
|
|
@@ -82,7 +82,7 @@ export declare class KmsCryptoClient {
|
|
|
82
82
|
* @param GenerateDataEncryptionKeyRequest
|
|
83
83
|
* @return GenerateDataEncryptionKeyResponse
|
|
84
84
|
* @throws OciError when an error occurs
|
|
85
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
85
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/GenerateDataEncryptionKey.ts.html |here} to see how to use GenerateDataEncryptionKey API.
|
|
86
86
|
*/
|
|
87
87
|
generateDataEncryptionKey(generateDataEncryptionKeyRequest: requests.GenerateDataEncryptionKeyRequest): Promise<responses.GenerateDataEncryptionKeyResponse>;
|
|
88
88
|
/**
|
|
@@ -94,7 +94,7 @@ export declare class KmsCryptoClient {
|
|
|
94
94
|
* @param SignRequest
|
|
95
95
|
* @return SignResponse
|
|
96
96
|
* @throws OciError when an error occurs
|
|
97
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
97
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/Sign.ts.html |here} to see how to use Sign API.
|
|
98
98
|
*/
|
|
99
99
|
sign(signRequest: requests.SignRequest): Promise<responses.SignResponse>;
|
|
100
100
|
/**
|
|
@@ -106,7 +106,7 @@ export declare class KmsCryptoClient {
|
|
|
106
106
|
* @param VerifyRequest
|
|
107
107
|
* @return VerifyResponse
|
|
108
108
|
* @throws OciError when an error occurs
|
|
109
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
109
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/Verify.ts.html |here} to see how to use Verify API.
|
|
110
110
|
*/
|
|
111
111
|
verify(verifyRequest: requests.VerifyRequest): Promise<responses.VerifyResponse>;
|
|
112
112
|
}
|
|
@@ -156,7 +156,7 @@ export declare class KmsManagementClient {
|
|
|
156
156
|
* @param BackupKeyRequest
|
|
157
157
|
* @return BackupKeyResponse
|
|
158
158
|
* @throws OciError when an error occurs
|
|
159
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
159
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/BackupKey.ts.html |here} to see how to use BackupKey API.
|
|
160
160
|
*/
|
|
161
161
|
backupKey(backupKeyRequest: requests.BackupKeyRequest): Promise<responses.BackupKeyResponse>;
|
|
162
162
|
/**
|
|
@@ -173,7 +173,7 @@ export declare class KmsManagementClient {
|
|
|
173
173
|
* @param CancelKeyDeletionRequest
|
|
174
174
|
* @return CancelKeyDeletionResponse
|
|
175
175
|
* @throws OciError when an error occurs
|
|
176
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
176
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/CancelKeyDeletion.ts.html |here} to see how to use CancelKeyDeletion API.
|
|
177
177
|
*/
|
|
178
178
|
cancelKeyDeletion(cancelKeyDeletionRequest: requests.CancelKeyDeletionRequest): Promise<responses.CancelKeyDeletionResponse>;
|
|
179
179
|
/**
|
|
@@ -190,7 +190,7 @@ export declare class KmsManagementClient {
|
|
|
190
190
|
* @param CancelKeyVersionDeletionRequest
|
|
191
191
|
* @return CancelKeyVersionDeletionResponse
|
|
192
192
|
* @throws OciError when an error occurs
|
|
193
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
193
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/CancelKeyVersionDeletion.ts.html |here} to see how to use CancelKeyVersionDeletion API.
|
|
194
194
|
*/
|
|
195
195
|
cancelKeyVersionDeletion(cancelKeyVersionDeletionRequest: requests.CancelKeyVersionDeletionRequest): Promise<responses.CancelKeyVersionDeletionResponse>;
|
|
196
196
|
/**
|
|
@@ -208,7 +208,7 @@ export declare class KmsManagementClient {
|
|
|
208
208
|
* @param ChangeKeyCompartmentRequest
|
|
209
209
|
* @return ChangeKeyCompartmentResponse
|
|
210
210
|
* @throws OciError when an error occurs
|
|
211
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
211
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/ChangeKeyCompartment.ts.html |here} to see how to use ChangeKeyCompartment API.
|
|
212
212
|
*/
|
|
213
213
|
changeKeyCompartment(changeKeyCompartmentRequest: requests.ChangeKeyCompartmentRequest): Promise<responses.ChangeKeyCompartmentResponse>;
|
|
214
214
|
/**
|
|
@@ -223,7 +223,7 @@ export declare class KmsManagementClient {
|
|
|
223
223
|
* @param CreateKeyRequest
|
|
224
224
|
* @return CreateKeyResponse
|
|
225
225
|
* @throws OciError when an error occurs
|
|
226
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
226
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/CreateKey.ts.html |here} to see how to use CreateKey API.
|
|
227
227
|
*/
|
|
228
228
|
createKey(createKeyRequest: requests.CreateKeyRequest): Promise<responses.CreateKeyResponse>;
|
|
229
229
|
/**
|
|
@@ -239,7 +239,7 @@ export declare class KmsManagementClient {
|
|
|
239
239
|
* @param CreateKeyVersionRequest
|
|
240
240
|
* @return CreateKeyVersionResponse
|
|
241
241
|
* @throws OciError when an error occurs
|
|
242
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
242
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/CreateKeyVersion.ts.html |here} to see how to use CreateKeyVersion API.
|
|
243
243
|
*/
|
|
244
244
|
createKeyVersion(createKeyVersionRequest: requests.CreateKeyVersionRequest): Promise<responses.CreateKeyVersionResponse>;
|
|
245
245
|
/**
|
|
@@ -255,7 +255,7 @@ export declare class KmsManagementClient {
|
|
|
255
255
|
* @param DisableKeyRequest
|
|
256
256
|
* @return DisableKeyResponse
|
|
257
257
|
* @throws OciError when an error occurs
|
|
258
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
258
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/DisableKey.ts.html |here} to see how to use DisableKey API.
|
|
259
259
|
*/
|
|
260
260
|
disableKey(disableKeyRequest: requests.DisableKeyRequest): Promise<responses.DisableKeyResponse>;
|
|
261
261
|
/**
|
|
@@ -271,7 +271,7 @@ export declare class KmsManagementClient {
|
|
|
271
271
|
* @param EnableKeyRequest
|
|
272
272
|
* @return EnableKeyResponse
|
|
273
273
|
* @throws OciError when an error occurs
|
|
274
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
274
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/EnableKey.ts.html |here} to see how to use EnableKey API.
|
|
275
275
|
*/
|
|
276
276
|
enableKey(enableKeyRequest: requests.EnableKeyRequest): Promise<responses.EnableKeyResponse>;
|
|
277
277
|
/**
|
|
@@ -286,7 +286,7 @@ export declare class KmsManagementClient {
|
|
|
286
286
|
* @param GetKeyRequest
|
|
287
287
|
* @return GetKeyResponse
|
|
288
288
|
* @throws OciError when an error occurs
|
|
289
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
289
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/GetKey.ts.html |here} to see how to use GetKey API.
|
|
290
290
|
*/
|
|
291
291
|
getKey(getKeyRequest: requests.GetKeyRequest): Promise<responses.GetKeyResponse>;
|
|
292
292
|
/**
|
|
@@ -301,7 +301,7 @@ export declare class KmsManagementClient {
|
|
|
301
301
|
* @param GetKeyVersionRequest
|
|
302
302
|
* @return GetKeyVersionResponse
|
|
303
303
|
* @throws OciError when an error occurs
|
|
304
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
304
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/GetKeyVersion.ts.html |here} to see how to use GetKeyVersion API.
|
|
305
305
|
*/
|
|
306
306
|
getKeyVersion(getKeyVersionRequest: requests.GetKeyVersionRequest): Promise<responses.GetKeyVersionResponse>;
|
|
307
307
|
/**
|
|
@@ -314,7 +314,7 @@ export declare class KmsManagementClient {
|
|
|
314
314
|
* @param GetReplicationStatusRequest
|
|
315
315
|
* @return GetReplicationStatusResponse
|
|
316
316
|
* @throws OciError when an error occurs
|
|
317
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
317
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/GetReplicationStatus.ts.html |here} to see how to use GetReplicationStatus API.
|
|
318
318
|
*/
|
|
319
319
|
getReplicationStatus(getReplicationStatusRequest: requests.GetReplicationStatusRequest): Promise<responses.GetReplicationStatusResponse>;
|
|
320
320
|
/**
|
|
@@ -325,7 +325,7 @@ export declare class KmsManagementClient {
|
|
|
325
325
|
* @param GetWrappingKeyRequest
|
|
326
326
|
* @return GetWrappingKeyResponse
|
|
327
327
|
* @throws OciError when an error occurs
|
|
328
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
328
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/GetWrappingKey.ts.html |here} to see how to use GetWrappingKey API.
|
|
329
329
|
*/
|
|
330
330
|
getWrappingKey(getWrappingKeyRequest: requests.GetWrappingKeyRequest): Promise<responses.GetWrappingKeyResponse>;
|
|
331
331
|
/**
|
|
@@ -337,7 +337,7 @@ export declare class KmsManagementClient {
|
|
|
337
337
|
* @param ImportKeyRequest
|
|
338
338
|
* @return ImportKeyResponse
|
|
339
339
|
* @throws OciError when an error occurs
|
|
340
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
340
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/ImportKey.ts.html |here} to see how to use ImportKey API.
|
|
341
341
|
*/
|
|
342
342
|
importKey(importKeyRequest: requests.ImportKeyRequest): Promise<responses.ImportKeyResponse>;
|
|
343
343
|
/**
|
|
@@ -351,7 +351,7 @@ export declare class KmsManagementClient {
|
|
|
351
351
|
* @param ImportKeyVersionRequest
|
|
352
352
|
* @return ImportKeyVersionResponse
|
|
353
353
|
* @throws OciError when an error occurs
|
|
354
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
354
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/ImportKeyVersion.ts.html |here} to see how to use ImportKeyVersion API.
|
|
355
355
|
*/
|
|
356
356
|
importKeyVersion(importKeyVersionRequest: requests.ImportKeyVersionRequest): Promise<responses.ImportKeyVersionResponse>;
|
|
357
357
|
/**
|
|
@@ -367,7 +367,7 @@ export declare class KmsManagementClient {
|
|
|
367
367
|
* @param ListKeyVersionsRequest
|
|
368
368
|
* @return ListKeyVersionsResponse
|
|
369
369
|
* @throws OciError when an error occurs
|
|
370
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
370
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/ListKeyVersions.ts.html |here} to see how to use ListKeyVersions API.
|
|
371
371
|
*/
|
|
372
372
|
listKeyVersions(listKeyVersionsRequest: requests.ListKeyVersionsRequest): Promise<responses.ListKeyVersionsResponse>;
|
|
373
373
|
/**
|
|
@@ -414,7 +414,7 @@ export declare class KmsManagementClient {
|
|
|
414
414
|
* @param ListKeysRequest
|
|
415
415
|
* @return ListKeysResponse
|
|
416
416
|
* @throws OciError when an error occurs
|
|
417
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
417
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/ListKeys.ts.html |here} to see how to use ListKeys API.
|
|
418
418
|
*/
|
|
419
419
|
listKeys(listKeysRequest: requests.ListKeysRequest): Promise<responses.ListKeysResponse>;
|
|
420
420
|
/**
|
|
@@ -458,7 +458,7 @@ export declare class KmsManagementClient {
|
|
|
458
458
|
* @param RestoreKeyFromFileRequest
|
|
459
459
|
* @return RestoreKeyFromFileResponse
|
|
460
460
|
* @throws OciError when an error occurs
|
|
461
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
461
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/RestoreKeyFromFile.ts.html |here} to see how to use RestoreKeyFromFile API.
|
|
462
462
|
*/
|
|
463
463
|
restoreKeyFromFile(restoreKeyFromFileRequest: requests.RestoreKeyFromFileRequest): Promise<responses.RestoreKeyFromFileResponse>;
|
|
464
464
|
/**
|
|
@@ -470,7 +470,7 @@ export declare class KmsManagementClient {
|
|
|
470
470
|
* @param RestoreKeyFromObjectStoreRequest
|
|
471
471
|
* @return RestoreKeyFromObjectStoreResponse
|
|
472
472
|
* @throws OciError when an error occurs
|
|
473
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
473
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/RestoreKeyFromObjectStore.ts.html |here} to see how to use RestoreKeyFromObjectStore API.
|
|
474
474
|
*/
|
|
475
475
|
restoreKeyFromObjectStore(restoreKeyFromObjectStoreRequest: requests.RestoreKeyFromObjectStoreRequest): Promise<responses.RestoreKeyFromObjectStoreResponse>;
|
|
476
476
|
/**
|
|
@@ -486,7 +486,7 @@ export declare class KmsManagementClient {
|
|
|
486
486
|
* @param ScheduleKeyDeletionRequest
|
|
487
487
|
* @return ScheduleKeyDeletionResponse
|
|
488
488
|
* @throws OciError when an error occurs
|
|
489
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
489
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/ScheduleKeyDeletion.ts.html |here} to see how to use ScheduleKeyDeletion API.
|
|
490
490
|
*/
|
|
491
491
|
scheduleKeyDeletion(scheduleKeyDeletionRequest: requests.ScheduleKeyDeletionRequest): Promise<responses.ScheduleKeyDeletionResponse>;
|
|
492
492
|
/**
|
|
@@ -502,7 +502,7 @@ export declare class KmsManagementClient {
|
|
|
502
502
|
* @param ScheduleKeyVersionDeletionRequest
|
|
503
503
|
* @return ScheduleKeyVersionDeletionResponse
|
|
504
504
|
* @throws OciError when an error occurs
|
|
505
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
505
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/ScheduleKeyVersionDeletion.ts.html |here} to see how to use ScheduleKeyVersionDeletion API.
|
|
506
506
|
*/
|
|
507
507
|
scheduleKeyVersionDeletion(scheduleKeyVersionDeletionRequest: requests.ScheduleKeyVersionDeletionRequest): Promise<responses.ScheduleKeyVersionDeletionResponse>;
|
|
508
508
|
/**
|
|
@@ -519,7 +519,7 @@ export declare class KmsManagementClient {
|
|
|
519
519
|
* @param UpdateKeyRequest
|
|
520
520
|
* @return UpdateKeyResponse
|
|
521
521
|
* @throws OciError when an error occurs
|
|
522
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
522
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/UpdateKey.ts.html |here} to see how to use UpdateKey API.
|
|
523
523
|
*/
|
|
524
524
|
updateKey(updateKeyRequest: requests.UpdateKeyRequest): Promise<responses.UpdateKeyResponse>;
|
|
525
525
|
}
|
|
@@ -585,7 +585,7 @@ export declare class KmsVaultClient {
|
|
|
585
585
|
* @param BackupVaultRequest
|
|
586
586
|
* @return BackupVaultResponse
|
|
587
587
|
* @throws OciError when an error occurs
|
|
588
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
588
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/BackupVault.ts.html |here} to see how to use BackupVault API.
|
|
589
589
|
*/
|
|
590
590
|
backupVault(backupVaultRequest: requests.BackupVaultRequest): Promise<responses.BackupVaultResponse>;
|
|
591
591
|
/**
|
|
@@ -603,7 +603,7 @@ export declare class KmsVaultClient {
|
|
|
603
603
|
* @param CancelVaultDeletionRequest
|
|
604
604
|
* @return CancelVaultDeletionResponse
|
|
605
605
|
* @throws OciError when an error occurs
|
|
606
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
606
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/CancelVaultDeletion.ts.html |here} to see how to use CancelVaultDeletion API.
|
|
607
607
|
*/
|
|
608
608
|
cancelVaultDeletion(cancelVaultDeletionRequest: requests.CancelVaultDeletionRequest): Promise<responses.CancelVaultDeletionResponse>;
|
|
609
609
|
/**
|
|
@@ -621,7 +621,7 @@ export declare class KmsVaultClient {
|
|
|
621
621
|
* @param ChangeVaultCompartmentRequest
|
|
622
622
|
* @return ChangeVaultCompartmentResponse
|
|
623
623
|
* @throws OciError when an error occurs
|
|
624
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
624
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/ChangeVaultCompartment.ts.html |here} to see how to use ChangeVaultCompartment API.
|
|
625
625
|
*/
|
|
626
626
|
changeVaultCompartment(changeVaultCompartmentRequest: requests.ChangeVaultCompartmentRequest): Promise<responses.ChangeVaultCompartmentResponse>;
|
|
627
627
|
/**
|
|
@@ -639,7 +639,7 @@ export declare class KmsVaultClient {
|
|
|
639
639
|
* @param CreateVaultRequest
|
|
640
640
|
* @return CreateVaultResponse
|
|
641
641
|
* @throws OciError when an error occurs
|
|
642
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
642
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/CreateVault.ts.html |here} to see how to use CreateVault API.
|
|
643
643
|
*/
|
|
644
644
|
createVault(createVaultRequest: requests.CreateVaultRequest): Promise<responses.CreateVaultResponse>;
|
|
645
645
|
/**
|
|
@@ -658,7 +658,7 @@ export declare class KmsVaultClient {
|
|
|
658
658
|
* @param CreateVaultReplicaRequest
|
|
659
659
|
* @return CreateVaultReplicaResponse
|
|
660
660
|
* @throws OciError when an error occurs
|
|
661
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
661
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/CreateVaultReplica.ts.html |here} to see how to use CreateVaultReplica API.
|
|
662
662
|
*/
|
|
663
663
|
createVaultReplica(createVaultReplicaRequest: requests.CreateVaultReplicaRequest): Promise<responses.CreateVaultReplicaResponse>;
|
|
664
664
|
/**
|
|
@@ -673,7 +673,7 @@ export declare class KmsVaultClient {
|
|
|
673
673
|
* @param DeleteVaultReplicaRequest
|
|
674
674
|
* @return DeleteVaultReplicaResponse
|
|
675
675
|
* @throws OciError when an error occurs
|
|
676
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
676
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/DeleteVaultReplica.ts.html |here} to see how to use DeleteVaultReplica API.
|
|
677
677
|
*/
|
|
678
678
|
deleteVaultReplica(deleteVaultReplicaRequest: requests.DeleteVaultReplicaRequest): Promise<responses.DeleteVaultReplicaResponse>;
|
|
679
679
|
/**
|
|
@@ -688,7 +688,7 @@ export declare class KmsVaultClient {
|
|
|
688
688
|
* @param GetVaultRequest
|
|
689
689
|
* @return GetVaultResponse
|
|
690
690
|
* @throws OciError when an error occurs
|
|
691
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
691
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/GetVault.ts.html |here} to see how to use GetVault API.
|
|
692
692
|
*/
|
|
693
693
|
getVault(getVaultRequest: requests.GetVaultRequest): Promise<responses.GetVaultResponse>;
|
|
694
694
|
/**
|
|
@@ -698,7 +698,7 @@ export declare class KmsVaultClient {
|
|
|
698
698
|
* @param GetVaultUsageRequest
|
|
699
699
|
* @return GetVaultUsageResponse
|
|
700
700
|
* @throws OciError when an error occurs
|
|
701
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
701
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/GetVaultUsage.ts.html |here} to see how to use GetVaultUsage API.
|
|
702
702
|
*/
|
|
703
703
|
getVaultUsage(getVaultUsageRequest: requests.GetVaultUsageRequest): Promise<responses.GetVaultUsageResponse>;
|
|
704
704
|
/**
|
|
@@ -713,7 +713,7 @@ export declare class KmsVaultClient {
|
|
|
713
713
|
* @param ListVaultReplicasRequest
|
|
714
714
|
* @return ListVaultReplicasResponse
|
|
715
715
|
* @throws OciError when an error occurs
|
|
716
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
716
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/ListVaultReplicas.ts.html |here} to see how to use ListVaultReplicas API.
|
|
717
717
|
*/
|
|
718
718
|
listVaultReplicas(listVaultReplicasRequest: requests.ListVaultReplicasRequest): Promise<responses.ListVaultReplicasResponse>;
|
|
719
719
|
/**
|
|
@@ -760,7 +760,7 @@ export declare class KmsVaultClient {
|
|
|
760
760
|
* @param ListVaultsRequest
|
|
761
761
|
* @return ListVaultsResponse
|
|
762
762
|
* @throws OciError when an error occurs
|
|
763
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
763
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/ListVaults.ts.html |here} to see how to use ListVaults API.
|
|
764
764
|
*/
|
|
765
765
|
listVaults(listVaultsRequest: requests.ListVaultsRequest): Promise<responses.ListVaultsResponse>;
|
|
766
766
|
/**
|
|
@@ -804,7 +804,7 @@ export declare class KmsVaultClient {
|
|
|
804
804
|
* @param RestoreVaultFromFileRequest
|
|
805
805
|
* @return RestoreVaultFromFileResponse
|
|
806
806
|
* @throws OciError when an error occurs
|
|
807
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
807
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/RestoreVaultFromFile.ts.html |here} to see how to use RestoreVaultFromFile API.
|
|
808
808
|
*/
|
|
809
809
|
restoreVaultFromFile(restoreVaultFromFileRequest: requests.RestoreVaultFromFileRequest): Promise<responses.RestoreVaultFromFileResponse>;
|
|
810
810
|
/**
|
|
@@ -816,7 +816,7 @@ export declare class KmsVaultClient {
|
|
|
816
816
|
* @param RestoreVaultFromObjectStoreRequest
|
|
817
817
|
* @return RestoreVaultFromObjectStoreResponse
|
|
818
818
|
* @throws OciError when an error occurs
|
|
819
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
819
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/RestoreVaultFromObjectStore.ts.html |here} to see how to use RestoreVaultFromObjectStore API.
|
|
820
820
|
*/
|
|
821
821
|
restoreVaultFromObjectStore(restoreVaultFromObjectStoreRequest: requests.RestoreVaultFromObjectStoreRequest): Promise<responses.RestoreVaultFromObjectStoreResponse>;
|
|
822
822
|
/**
|
|
@@ -835,7 +835,7 @@ export declare class KmsVaultClient {
|
|
|
835
835
|
* @param ScheduleVaultDeletionRequest
|
|
836
836
|
* @return ScheduleVaultDeletionResponse
|
|
837
837
|
* @throws OciError when an error occurs
|
|
838
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
838
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/ScheduleVaultDeletion.ts.html |here} to see how to use ScheduleVaultDeletion API.
|
|
839
839
|
*/
|
|
840
840
|
scheduleVaultDeletion(scheduleVaultDeletionRequest: requests.ScheduleVaultDeletionRequest): Promise<responses.ScheduleVaultDeletionResponse>;
|
|
841
841
|
/**
|
|
@@ -852,7 +852,7 @@ export declare class KmsVaultClient {
|
|
|
852
852
|
* @param UpdateVaultRequest
|
|
853
853
|
* @return UpdateVaultResponse
|
|
854
854
|
* @throws OciError when an error occurs
|
|
855
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
855
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.21.0/keymanagement/UpdateVault.ts.html |here} to see how to use UpdateVault API.
|
|
856
856
|
*/
|
|
857
857
|
updateVault(updateVaultRequest: requests.UpdateVaultRequest): Promise<responses.UpdateVaultResponse>;
|
|
858
858
|
}
|