oci-keymanagement 2.25.0 → 2.26.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
|
@@ -50,7 +50,7 @@ export declare class KmsCryptoClient {
|
|
|
50
50
|
* @param DecryptRequest
|
|
51
51
|
* @return DecryptResponse
|
|
52
52
|
* @throws OciError when an error occurs
|
|
53
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
53
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/Decrypt.ts.html |here} to see how to use Decrypt API.
|
|
54
54
|
*/
|
|
55
55
|
decrypt(decryptRequest: requests.DecryptRequest): Promise<responses.DecryptResponse>;
|
|
56
56
|
/**
|
|
@@ -61,7 +61,7 @@ export declare class KmsCryptoClient {
|
|
|
61
61
|
* @param EncryptRequest
|
|
62
62
|
* @return EncryptResponse
|
|
63
63
|
* @throws OciError when an error occurs
|
|
64
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
64
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/Encrypt.ts.html |here} to see how to use Encrypt API.
|
|
65
65
|
*/
|
|
66
66
|
encrypt(encryptRequest: requests.EncryptRequest): Promise<responses.EncryptResponse>;
|
|
67
67
|
/**
|
|
@@ -73,7 +73,7 @@ export declare class KmsCryptoClient {
|
|
|
73
73
|
* @param ExportKeyRequest
|
|
74
74
|
* @return ExportKeyResponse
|
|
75
75
|
* @throws OciError when an error occurs
|
|
76
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
76
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/ExportKey.ts.html |here} to see how to use ExportKey API.
|
|
77
77
|
*/
|
|
78
78
|
exportKey(exportKeyRequest: requests.ExportKeyRequest): Promise<responses.ExportKeyResponse>;
|
|
79
79
|
/**
|
|
@@ -83,7 +83,7 @@ export declare class KmsCryptoClient {
|
|
|
83
83
|
* @param GenerateDataEncryptionKeyRequest
|
|
84
84
|
* @return GenerateDataEncryptionKeyResponse
|
|
85
85
|
* @throws OciError when an error occurs
|
|
86
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
86
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/GenerateDataEncryptionKey.ts.html |here} to see how to use GenerateDataEncryptionKey API.
|
|
87
87
|
*/
|
|
88
88
|
generateDataEncryptionKey(generateDataEncryptionKeyRequest: requests.GenerateDataEncryptionKeyRequest): Promise<responses.GenerateDataEncryptionKeyResponse>;
|
|
89
89
|
/**
|
|
@@ -95,7 +95,7 @@ export declare class KmsCryptoClient {
|
|
|
95
95
|
* @param SignRequest
|
|
96
96
|
* @return SignResponse
|
|
97
97
|
* @throws OciError when an error occurs
|
|
98
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
98
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/Sign.ts.html |here} to see how to use Sign API.
|
|
99
99
|
*/
|
|
100
100
|
sign(signRequest: requests.SignRequest): Promise<responses.SignResponse>;
|
|
101
101
|
/**
|
|
@@ -107,7 +107,7 @@ export declare class KmsCryptoClient {
|
|
|
107
107
|
* @param VerifyRequest
|
|
108
108
|
* @return VerifyResponse
|
|
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.26.0/keymanagement/Verify.ts.html |here} to see how to use Verify API.
|
|
111
111
|
*/
|
|
112
112
|
verify(verifyRequest: requests.VerifyRequest): Promise<responses.VerifyResponse>;
|
|
113
113
|
}
|
|
@@ -158,7 +158,7 @@ export declare class KmsManagementClient {
|
|
|
158
158
|
* @param BackupKeyRequest
|
|
159
159
|
* @return BackupKeyResponse
|
|
160
160
|
* @throws OciError when an error occurs
|
|
161
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
161
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/BackupKey.ts.html |here} to see how to use BackupKey API.
|
|
162
162
|
*/
|
|
163
163
|
backupKey(backupKeyRequest: requests.BackupKeyRequest): Promise<responses.BackupKeyResponse>;
|
|
164
164
|
/**
|
|
@@ -175,7 +175,7 @@ export declare class KmsManagementClient {
|
|
|
175
175
|
* @param CancelKeyDeletionRequest
|
|
176
176
|
* @return CancelKeyDeletionResponse
|
|
177
177
|
* @throws OciError when an error occurs
|
|
178
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
178
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/CancelKeyDeletion.ts.html |here} to see how to use CancelKeyDeletion API.
|
|
179
179
|
*/
|
|
180
180
|
cancelKeyDeletion(cancelKeyDeletionRequest: requests.CancelKeyDeletionRequest): Promise<responses.CancelKeyDeletionResponse>;
|
|
181
181
|
/**
|
|
@@ -192,7 +192,7 @@ export declare class KmsManagementClient {
|
|
|
192
192
|
* @param CancelKeyVersionDeletionRequest
|
|
193
193
|
* @return CancelKeyVersionDeletionResponse
|
|
194
194
|
* @throws OciError when an error occurs
|
|
195
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
195
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/CancelKeyVersionDeletion.ts.html |here} to see how to use CancelKeyVersionDeletion API.
|
|
196
196
|
*/
|
|
197
197
|
cancelKeyVersionDeletion(cancelKeyVersionDeletionRequest: requests.CancelKeyVersionDeletionRequest): Promise<responses.CancelKeyVersionDeletionResponse>;
|
|
198
198
|
/**
|
|
@@ -210,7 +210,7 @@ export declare class KmsManagementClient {
|
|
|
210
210
|
* @param ChangeKeyCompartmentRequest
|
|
211
211
|
* @return ChangeKeyCompartmentResponse
|
|
212
212
|
* @throws OciError when an error occurs
|
|
213
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
213
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/ChangeKeyCompartment.ts.html |here} to see how to use ChangeKeyCompartment API.
|
|
214
214
|
*/
|
|
215
215
|
changeKeyCompartment(changeKeyCompartmentRequest: requests.ChangeKeyCompartmentRequest): Promise<responses.ChangeKeyCompartmentResponse>;
|
|
216
216
|
/**
|
|
@@ -225,7 +225,7 @@ export declare class KmsManagementClient {
|
|
|
225
225
|
* @param CreateKeyRequest
|
|
226
226
|
* @return CreateKeyResponse
|
|
227
227
|
* @throws OciError when an error occurs
|
|
228
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
228
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/CreateKey.ts.html |here} to see how to use CreateKey API.
|
|
229
229
|
*/
|
|
230
230
|
createKey(createKeyRequest: requests.CreateKeyRequest): Promise<responses.CreateKeyResponse>;
|
|
231
231
|
/**
|
|
@@ -241,7 +241,7 @@ export declare class KmsManagementClient {
|
|
|
241
241
|
* @param CreateKeyVersionRequest
|
|
242
242
|
* @return CreateKeyVersionResponse
|
|
243
243
|
* @throws OciError when an error occurs
|
|
244
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
244
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/CreateKeyVersion.ts.html |here} to see how to use CreateKeyVersion API.
|
|
245
245
|
*/
|
|
246
246
|
createKeyVersion(createKeyVersionRequest: requests.CreateKeyVersionRequest): Promise<responses.CreateKeyVersionResponse>;
|
|
247
247
|
/**
|
|
@@ -257,7 +257,7 @@ export declare class KmsManagementClient {
|
|
|
257
257
|
* @param DisableKeyRequest
|
|
258
258
|
* @return DisableKeyResponse
|
|
259
259
|
* @throws OciError when an error occurs
|
|
260
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
260
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/DisableKey.ts.html |here} to see how to use DisableKey API.
|
|
261
261
|
*/
|
|
262
262
|
disableKey(disableKeyRequest: requests.DisableKeyRequest): Promise<responses.DisableKeyResponse>;
|
|
263
263
|
/**
|
|
@@ -273,7 +273,7 @@ export declare class KmsManagementClient {
|
|
|
273
273
|
* @param EnableKeyRequest
|
|
274
274
|
* @return EnableKeyResponse
|
|
275
275
|
* @throws OciError when an error occurs
|
|
276
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
276
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/EnableKey.ts.html |here} to see how to use EnableKey API.
|
|
277
277
|
*/
|
|
278
278
|
enableKey(enableKeyRequest: requests.EnableKeyRequest): Promise<responses.EnableKeyResponse>;
|
|
279
279
|
/**
|
|
@@ -288,7 +288,7 @@ export declare class KmsManagementClient {
|
|
|
288
288
|
* @param GetKeyRequest
|
|
289
289
|
* @return GetKeyResponse
|
|
290
290
|
* @throws OciError when an error occurs
|
|
291
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
291
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/GetKey.ts.html |here} to see how to use GetKey API.
|
|
292
292
|
*/
|
|
293
293
|
getKey(getKeyRequest: requests.GetKeyRequest): Promise<responses.GetKeyResponse>;
|
|
294
294
|
/**
|
|
@@ -303,7 +303,7 @@ export declare class KmsManagementClient {
|
|
|
303
303
|
* @param GetKeyVersionRequest
|
|
304
304
|
* @return GetKeyVersionResponse
|
|
305
305
|
* @throws OciError when an error occurs
|
|
306
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
306
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/GetKeyVersion.ts.html |here} to see how to use GetKeyVersion API.
|
|
307
307
|
*/
|
|
308
308
|
getKeyVersion(getKeyVersionRequest: requests.GetKeyVersionRequest): Promise<responses.GetKeyVersionResponse>;
|
|
309
309
|
/**
|
|
@@ -316,7 +316,7 @@ export declare class KmsManagementClient {
|
|
|
316
316
|
* @param GetReplicationStatusRequest
|
|
317
317
|
* @return GetReplicationStatusResponse
|
|
318
318
|
* @throws OciError when an error occurs
|
|
319
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
319
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/GetReplicationStatus.ts.html |here} to see how to use GetReplicationStatus API.
|
|
320
320
|
*/
|
|
321
321
|
getReplicationStatus(getReplicationStatusRequest: requests.GetReplicationStatusRequest): Promise<responses.GetReplicationStatusResponse>;
|
|
322
322
|
/**
|
|
@@ -327,7 +327,7 @@ export declare class KmsManagementClient {
|
|
|
327
327
|
* @param GetWrappingKeyRequest
|
|
328
328
|
* @return GetWrappingKeyResponse
|
|
329
329
|
* @throws OciError when an error occurs
|
|
330
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
330
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/GetWrappingKey.ts.html |here} to see how to use GetWrappingKey API.
|
|
331
331
|
*/
|
|
332
332
|
getWrappingKey(getWrappingKeyRequest: requests.GetWrappingKeyRequest): Promise<responses.GetWrappingKeyResponse>;
|
|
333
333
|
/**
|
|
@@ -339,7 +339,7 @@ export declare class KmsManagementClient {
|
|
|
339
339
|
* @param ImportKeyRequest
|
|
340
340
|
* @return ImportKeyResponse
|
|
341
341
|
* @throws OciError when an error occurs
|
|
342
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
342
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/ImportKey.ts.html |here} to see how to use ImportKey API.
|
|
343
343
|
*/
|
|
344
344
|
importKey(importKeyRequest: requests.ImportKeyRequest): Promise<responses.ImportKeyResponse>;
|
|
345
345
|
/**
|
|
@@ -353,7 +353,7 @@ export declare class KmsManagementClient {
|
|
|
353
353
|
* @param ImportKeyVersionRequest
|
|
354
354
|
* @return ImportKeyVersionResponse
|
|
355
355
|
* @throws OciError when an error occurs
|
|
356
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
356
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/ImportKeyVersion.ts.html |here} to see how to use ImportKeyVersion API.
|
|
357
357
|
*/
|
|
358
358
|
importKeyVersion(importKeyVersionRequest: requests.ImportKeyVersionRequest): Promise<responses.ImportKeyVersionResponse>;
|
|
359
359
|
/**
|
|
@@ -369,7 +369,7 @@ export declare class KmsManagementClient {
|
|
|
369
369
|
* @param ListKeyVersionsRequest
|
|
370
370
|
* @return ListKeyVersionsResponse
|
|
371
371
|
* @throws OciError when an error occurs
|
|
372
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
372
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/ListKeyVersions.ts.html |here} to see how to use ListKeyVersions API.
|
|
373
373
|
*/
|
|
374
374
|
listKeyVersions(listKeyVersionsRequest: requests.ListKeyVersionsRequest): Promise<responses.ListKeyVersionsResponse>;
|
|
375
375
|
/**
|
|
@@ -416,7 +416,7 @@ export declare class KmsManagementClient {
|
|
|
416
416
|
* @param ListKeysRequest
|
|
417
417
|
* @return ListKeysResponse
|
|
418
418
|
* @throws OciError when an error occurs
|
|
419
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
419
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/ListKeys.ts.html |here} to see how to use ListKeys API.
|
|
420
420
|
*/
|
|
421
421
|
listKeys(listKeysRequest: requests.ListKeysRequest): Promise<responses.ListKeysResponse>;
|
|
422
422
|
/**
|
|
@@ -460,7 +460,7 @@ export declare class KmsManagementClient {
|
|
|
460
460
|
* @param RestoreKeyFromFileRequest
|
|
461
461
|
* @return RestoreKeyFromFileResponse
|
|
462
462
|
* @throws OciError when an error occurs
|
|
463
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
463
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/RestoreKeyFromFile.ts.html |here} to see how to use RestoreKeyFromFile API.
|
|
464
464
|
*/
|
|
465
465
|
restoreKeyFromFile(restoreKeyFromFileRequest: requests.RestoreKeyFromFileRequest): Promise<responses.RestoreKeyFromFileResponse>;
|
|
466
466
|
/**
|
|
@@ -472,7 +472,7 @@ export declare class KmsManagementClient {
|
|
|
472
472
|
* @param RestoreKeyFromObjectStoreRequest
|
|
473
473
|
* @return RestoreKeyFromObjectStoreResponse
|
|
474
474
|
* @throws OciError when an error occurs
|
|
475
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
475
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/RestoreKeyFromObjectStore.ts.html |here} to see how to use RestoreKeyFromObjectStore API.
|
|
476
476
|
*/
|
|
477
477
|
restoreKeyFromObjectStore(restoreKeyFromObjectStoreRequest: requests.RestoreKeyFromObjectStoreRequest): Promise<responses.RestoreKeyFromObjectStoreResponse>;
|
|
478
478
|
/**
|
|
@@ -488,7 +488,7 @@ export declare class KmsManagementClient {
|
|
|
488
488
|
* @param ScheduleKeyDeletionRequest
|
|
489
489
|
* @return ScheduleKeyDeletionResponse
|
|
490
490
|
* @throws OciError when an error occurs
|
|
491
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
491
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/ScheduleKeyDeletion.ts.html |here} to see how to use ScheduleKeyDeletion API.
|
|
492
492
|
*/
|
|
493
493
|
scheduleKeyDeletion(scheduleKeyDeletionRequest: requests.ScheduleKeyDeletionRequest): Promise<responses.ScheduleKeyDeletionResponse>;
|
|
494
494
|
/**
|
|
@@ -504,7 +504,7 @@ export declare class KmsManagementClient {
|
|
|
504
504
|
* @param ScheduleKeyVersionDeletionRequest
|
|
505
505
|
* @return ScheduleKeyVersionDeletionResponse
|
|
506
506
|
* @throws OciError when an error occurs
|
|
507
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
507
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/ScheduleKeyVersionDeletion.ts.html |here} to see how to use ScheduleKeyVersionDeletion API.
|
|
508
508
|
*/
|
|
509
509
|
scheduleKeyVersionDeletion(scheduleKeyVersionDeletionRequest: requests.ScheduleKeyVersionDeletionRequest): Promise<responses.ScheduleKeyVersionDeletionResponse>;
|
|
510
510
|
/**
|
|
@@ -521,7 +521,7 @@ export declare class KmsManagementClient {
|
|
|
521
521
|
* @param UpdateKeyRequest
|
|
522
522
|
* @return UpdateKeyResponse
|
|
523
523
|
* @throws OciError when an error occurs
|
|
524
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
524
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/UpdateKey.ts.html |here} to see how to use UpdateKey API.
|
|
525
525
|
*/
|
|
526
526
|
updateKey(updateKeyRequest: requests.UpdateKeyRequest): Promise<responses.UpdateKeyResponse>;
|
|
527
527
|
}
|
|
@@ -588,7 +588,7 @@ export declare class KmsVaultClient {
|
|
|
588
588
|
* @param BackupVaultRequest
|
|
589
589
|
* @return BackupVaultResponse
|
|
590
590
|
* @throws OciError when an error occurs
|
|
591
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
591
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/BackupVault.ts.html |here} to see how to use BackupVault API.
|
|
592
592
|
*/
|
|
593
593
|
backupVault(backupVaultRequest: requests.BackupVaultRequest): Promise<responses.BackupVaultResponse>;
|
|
594
594
|
/**
|
|
@@ -606,7 +606,7 @@ export declare class KmsVaultClient {
|
|
|
606
606
|
* @param CancelVaultDeletionRequest
|
|
607
607
|
* @return CancelVaultDeletionResponse
|
|
608
608
|
* @throws OciError when an error occurs
|
|
609
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
609
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/CancelVaultDeletion.ts.html |here} to see how to use CancelVaultDeletion API.
|
|
610
610
|
*/
|
|
611
611
|
cancelVaultDeletion(cancelVaultDeletionRequest: requests.CancelVaultDeletionRequest): Promise<responses.CancelVaultDeletionResponse>;
|
|
612
612
|
/**
|
|
@@ -624,7 +624,7 @@ export declare class KmsVaultClient {
|
|
|
624
624
|
* @param ChangeVaultCompartmentRequest
|
|
625
625
|
* @return ChangeVaultCompartmentResponse
|
|
626
626
|
* @throws OciError when an error occurs
|
|
627
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
627
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/ChangeVaultCompartment.ts.html |here} to see how to use ChangeVaultCompartment API.
|
|
628
628
|
*/
|
|
629
629
|
changeVaultCompartment(changeVaultCompartmentRequest: requests.ChangeVaultCompartmentRequest): Promise<responses.ChangeVaultCompartmentResponse>;
|
|
630
630
|
/**
|
|
@@ -642,7 +642,7 @@ export declare class KmsVaultClient {
|
|
|
642
642
|
* @param CreateVaultRequest
|
|
643
643
|
* @return CreateVaultResponse
|
|
644
644
|
* @throws OciError when an error occurs
|
|
645
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
645
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/CreateVault.ts.html |here} to see how to use CreateVault API.
|
|
646
646
|
*/
|
|
647
647
|
createVault(createVaultRequest: requests.CreateVaultRequest): Promise<responses.CreateVaultResponse>;
|
|
648
648
|
/**
|
|
@@ -661,7 +661,7 @@ export declare class KmsVaultClient {
|
|
|
661
661
|
* @param CreateVaultReplicaRequest
|
|
662
662
|
* @return CreateVaultReplicaResponse
|
|
663
663
|
* @throws OciError when an error occurs
|
|
664
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
664
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/CreateVaultReplica.ts.html |here} to see how to use CreateVaultReplica API.
|
|
665
665
|
*/
|
|
666
666
|
createVaultReplica(createVaultReplicaRequest: requests.CreateVaultReplicaRequest): Promise<responses.CreateVaultReplicaResponse>;
|
|
667
667
|
/**
|
|
@@ -676,7 +676,7 @@ export declare class KmsVaultClient {
|
|
|
676
676
|
* @param DeleteVaultReplicaRequest
|
|
677
677
|
* @return DeleteVaultReplicaResponse
|
|
678
678
|
* @throws OciError when an error occurs
|
|
679
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
679
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/DeleteVaultReplica.ts.html |here} to see how to use DeleteVaultReplica API.
|
|
680
680
|
*/
|
|
681
681
|
deleteVaultReplica(deleteVaultReplicaRequest: requests.DeleteVaultReplicaRequest): Promise<responses.DeleteVaultReplicaResponse>;
|
|
682
682
|
/**
|
|
@@ -691,7 +691,7 @@ export declare class KmsVaultClient {
|
|
|
691
691
|
* @param GetVaultRequest
|
|
692
692
|
* @return GetVaultResponse
|
|
693
693
|
* @throws OciError when an error occurs
|
|
694
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
694
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/GetVault.ts.html |here} to see how to use GetVault API.
|
|
695
695
|
*/
|
|
696
696
|
getVault(getVaultRequest: requests.GetVaultRequest): Promise<responses.GetVaultResponse>;
|
|
697
697
|
/**
|
|
@@ -701,7 +701,7 @@ export declare class KmsVaultClient {
|
|
|
701
701
|
* @param GetVaultUsageRequest
|
|
702
702
|
* @return GetVaultUsageResponse
|
|
703
703
|
* @throws OciError when an error occurs
|
|
704
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
704
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/GetVaultUsage.ts.html |here} to see how to use GetVaultUsage API.
|
|
705
705
|
*/
|
|
706
706
|
getVaultUsage(getVaultUsageRequest: requests.GetVaultUsageRequest): Promise<responses.GetVaultUsageResponse>;
|
|
707
707
|
/**
|
|
@@ -716,7 +716,7 @@ export declare class KmsVaultClient {
|
|
|
716
716
|
* @param ListVaultReplicasRequest
|
|
717
717
|
* @return ListVaultReplicasResponse
|
|
718
718
|
* @throws OciError when an error occurs
|
|
719
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
719
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/ListVaultReplicas.ts.html |here} to see how to use ListVaultReplicas API.
|
|
720
720
|
*/
|
|
721
721
|
listVaultReplicas(listVaultReplicasRequest: requests.ListVaultReplicasRequest): Promise<responses.ListVaultReplicasResponse>;
|
|
722
722
|
/**
|
|
@@ -763,7 +763,7 @@ export declare class KmsVaultClient {
|
|
|
763
763
|
* @param ListVaultsRequest
|
|
764
764
|
* @return ListVaultsResponse
|
|
765
765
|
* @throws OciError when an error occurs
|
|
766
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
766
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/ListVaults.ts.html |here} to see how to use ListVaults API.
|
|
767
767
|
*/
|
|
768
768
|
listVaults(listVaultsRequest: requests.ListVaultsRequest): Promise<responses.ListVaultsResponse>;
|
|
769
769
|
/**
|
|
@@ -807,7 +807,7 @@ export declare class KmsVaultClient {
|
|
|
807
807
|
* @param RestoreVaultFromFileRequest
|
|
808
808
|
* @return RestoreVaultFromFileResponse
|
|
809
809
|
* @throws OciError when an error occurs
|
|
810
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
810
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/RestoreVaultFromFile.ts.html |here} to see how to use RestoreVaultFromFile API.
|
|
811
811
|
*/
|
|
812
812
|
restoreVaultFromFile(restoreVaultFromFileRequest: requests.RestoreVaultFromFileRequest): Promise<responses.RestoreVaultFromFileResponse>;
|
|
813
813
|
/**
|
|
@@ -819,7 +819,7 @@ export declare class KmsVaultClient {
|
|
|
819
819
|
* @param RestoreVaultFromObjectStoreRequest
|
|
820
820
|
* @return RestoreVaultFromObjectStoreResponse
|
|
821
821
|
* @throws OciError when an error occurs
|
|
822
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
822
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/RestoreVaultFromObjectStore.ts.html |here} to see how to use RestoreVaultFromObjectStore API.
|
|
823
823
|
*/
|
|
824
824
|
restoreVaultFromObjectStore(restoreVaultFromObjectStoreRequest: requests.RestoreVaultFromObjectStoreRequest): Promise<responses.RestoreVaultFromObjectStoreResponse>;
|
|
825
825
|
/**
|
|
@@ -838,7 +838,7 @@ export declare class KmsVaultClient {
|
|
|
838
838
|
* @param ScheduleVaultDeletionRequest
|
|
839
839
|
* @return ScheduleVaultDeletionResponse
|
|
840
840
|
* @throws OciError when an error occurs
|
|
841
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
841
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/ScheduleVaultDeletion.ts.html |here} to see how to use ScheduleVaultDeletion API.
|
|
842
842
|
*/
|
|
843
843
|
scheduleVaultDeletion(scheduleVaultDeletionRequest: requests.ScheduleVaultDeletionRequest): Promise<responses.ScheduleVaultDeletionResponse>;
|
|
844
844
|
/**
|
|
@@ -855,7 +855,7 @@ export declare class KmsVaultClient {
|
|
|
855
855
|
* @param UpdateVaultRequest
|
|
856
856
|
* @return UpdateVaultResponse
|
|
857
857
|
* @throws OciError when an error occurs
|
|
858
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
858
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.26.0/keymanagement/UpdateVault.ts.html |here} to see how to use UpdateVault API.
|
|
859
859
|
*/
|
|
860
860
|
updateVault(updateVaultRequest: requests.UpdateVaultRequest): Promise<responses.UpdateVaultResponse>;
|
|
861
861
|
}
|