oci-keymanagement 2.20.0 → 2.24.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 +59 -44
- 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.d.ts
CHANGED
|
@@ -30,6 +30,7 @@ export declare class KmsCryptoClient {
|
|
|
30
30
|
protected "_defaultHeaders": any;
|
|
31
31
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
32
32
|
protected _circuitBreaker: null;
|
|
33
|
+
protected _httpOptions: any;
|
|
33
34
|
protected _httpClient: common.HttpClient;
|
|
34
35
|
constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
|
|
35
36
|
/**
|
|
@@ -49,7 +50,7 @@ export declare class KmsCryptoClient {
|
|
|
49
50
|
* @param DecryptRequest
|
|
50
51
|
* @return DecryptResponse
|
|
51
52
|
* @throws OciError when an error occurs
|
|
52
|
-
* @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.24.0/keymanagement/Decrypt.ts.html |here} to see how to use Decrypt API.
|
|
53
54
|
*/
|
|
54
55
|
decrypt(decryptRequest: requests.DecryptRequest): Promise<responses.DecryptResponse>;
|
|
55
56
|
/**
|
|
@@ -60,7 +61,7 @@ export declare class KmsCryptoClient {
|
|
|
60
61
|
* @param EncryptRequest
|
|
61
62
|
* @return EncryptResponse
|
|
62
63
|
* @throws OciError when an error occurs
|
|
63
|
-
* @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.24.0/keymanagement/Encrypt.ts.html |here} to see how to use Encrypt API.
|
|
64
65
|
*/
|
|
65
66
|
encrypt(encryptRequest: requests.EncryptRequest): Promise<responses.EncryptResponse>;
|
|
66
67
|
/**
|
|
@@ -72,7 +73,7 @@ export declare class KmsCryptoClient {
|
|
|
72
73
|
* @param ExportKeyRequest
|
|
73
74
|
* @return ExportKeyResponse
|
|
74
75
|
* @throws OciError when an error occurs
|
|
75
|
-
* @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.24.0/keymanagement/ExportKey.ts.html |here} to see how to use ExportKey API.
|
|
76
77
|
*/
|
|
77
78
|
exportKey(exportKeyRequest: requests.ExportKeyRequest): Promise<responses.ExportKeyResponse>;
|
|
78
79
|
/**
|
|
@@ -82,7 +83,7 @@ export declare class KmsCryptoClient {
|
|
|
82
83
|
* @param GenerateDataEncryptionKeyRequest
|
|
83
84
|
* @return GenerateDataEncryptionKeyResponse
|
|
84
85
|
* @throws OciError when an error occurs
|
|
85
|
-
* @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.24.0/keymanagement/GenerateDataEncryptionKey.ts.html |here} to see how to use GenerateDataEncryptionKey API.
|
|
86
87
|
*/
|
|
87
88
|
generateDataEncryptionKey(generateDataEncryptionKeyRequest: requests.GenerateDataEncryptionKeyRequest): Promise<responses.GenerateDataEncryptionKeyResponse>;
|
|
88
89
|
/**
|
|
@@ -94,7 +95,7 @@ export declare class KmsCryptoClient {
|
|
|
94
95
|
* @param SignRequest
|
|
95
96
|
* @return SignResponse
|
|
96
97
|
* @throws OciError when an error occurs
|
|
97
|
-
* @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.24.0/keymanagement/Sign.ts.html |here} to see how to use Sign API.
|
|
98
99
|
*/
|
|
99
100
|
sign(signRequest: requests.SignRequest): Promise<responses.SignResponse>;
|
|
100
101
|
/**
|
|
@@ -106,7 +107,7 @@ export declare class KmsCryptoClient {
|
|
|
106
107
|
* @param VerifyRequest
|
|
107
108
|
* @return VerifyResponse
|
|
108
109
|
* @throws OciError when an error occurs
|
|
109
|
-
* @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.24.0/keymanagement/Verify.ts.html |here} to see how to use Verify API.
|
|
110
111
|
*/
|
|
111
112
|
verify(verifyRequest: requests.VerifyRequest): Promise<responses.VerifyResponse>;
|
|
112
113
|
}
|
|
@@ -123,6 +124,7 @@ export declare class KmsManagementClient {
|
|
|
123
124
|
protected "_waiters": KmsManagementWaiter;
|
|
124
125
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
125
126
|
protected _circuitBreaker: null;
|
|
127
|
+
protected _httpOptions: any;
|
|
126
128
|
protected _httpClient: common.HttpClient;
|
|
127
129
|
constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
|
|
128
130
|
/**
|
|
@@ -156,7 +158,7 @@ export declare class KmsManagementClient {
|
|
|
156
158
|
* @param BackupKeyRequest
|
|
157
159
|
* @return BackupKeyResponse
|
|
158
160
|
* @throws OciError when an error occurs
|
|
159
|
-
* @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.24.0/keymanagement/BackupKey.ts.html |here} to see how to use BackupKey API.
|
|
160
162
|
*/
|
|
161
163
|
backupKey(backupKeyRequest: requests.BackupKeyRequest): Promise<responses.BackupKeyResponse>;
|
|
162
164
|
/**
|
|
@@ -173,7 +175,7 @@ export declare class KmsManagementClient {
|
|
|
173
175
|
* @param CancelKeyDeletionRequest
|
|
174
176
|
* @return CancelKeyDeletionResponse
|
|
175
177
|
* @throws OciError when an error occurs
|
|
176
|
-
* @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.24.0/keymanagement/CancelKeyDeletion.ts.html |here} to see how to use CancelKeyDeletion API.
|
|
177
179
|
*/
|
|
178
180
|
cancelKeyDeletion(cancelKeyDeletionRequest: requests.CancelKeyDeletionRequest): Promise<responses.CancelKeyDeletionResponse>;
|
|
179
181
|
/**
|
|
@@ -190,7 +192,7 @@ export declare class KmsManagementClient {
|
|
|
190
192
|
* @param CancelKeyVersionDeletionRequest
|
|
191
193
|
* @return CancelKeyVersionDeletionResponse
|
|
192
194
|
* @throws OciError when an error occurs
|
|
193
|
-
* @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.24.0/keymanagement/CancelKeyVersionDeletion.ts.html |here} to see how to use CancelKeyVersionDeletion API.
|
|
194
196
|
*/
|
|
195
197
|
cancelKeyVersionDeletion(cancelKeyVersionDeletionRequest: requests.CancelKeyVersionDeletionRequest): Promise<responses.CancelKeyVersionDeletionResponse>;
|
|
196
198
|
/**
|
|
@@ -208,7 +210,7 @@ export declare class KmsManagementClient {
|
|
|
208
210
|
* @param ChangeKeyCompartmentRequest
|
|
209
211
|
* @return ChangeKeyCompartmentResponse
|
|
210
212
|
* @throws OciError when an error occurs
|
|
211
|
-
* @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.24.0/keymanagement/ChangeKeyCompartment.ts.html |here} to see how to use ChangeKeyCompartment API.
|
|
212
214
|
*/
|
|
213
215
|
changeKeyCompartment(changeKeyCompartmentRequest: requests.ChangeKeyCompartmentRequest): Promise<responses.ChangeKeyCompartmentResponse>;
|
|
214
216
|
/**
|
|
@@ -223,7 +225,7 @@ export declare class KmsManagementClient {
|
|
|
223
225
|
* @param CreateKeyRequest
|
|
224
226
|
* @return CreateKeyResponse
|
|
225
227
|
* @throws OciError when an error occurs
|
|
226
|
-
* @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.24.0/keymanagement/CreateKey.ts.html |here} to see how to use CreateKey API.
|
|
227
229
|
*/
|
|
228
230
|
createKey(createKeyRequest: requests.CreateKeyRequest): Promise<responses.CreateKeyResponse>;
|
|
229
231
|
/**
|
|
@@ -239,7 +241,7 @@ export declare class KmsManagementClient {
|
|
|
239
241
|
* @param CreateKeyVersionRequest
|
|
240
242
|
* @return CreateKeyVersionResponse
|
|
241
243
|
* @throws OciError when an error occurs
|
|
242
|
-
* @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.24.0/keymanagement/CreateKeyVersion.ts.html |here} to see how to use CreateKeyVersion API.
|
|
243
245
|
*/
|
|
244
246
|
createKeyVersion(createKeyVersionRequest: requests.CreateKeyVersionRequest): Promise<responses.CreateKeyVersionResponse>;
|
|
245
247
|
/**
|
|
@@ -255,7 +257,7 @@ export declare class KmsManagementClient {
|
|
|
255
257
|
* @param DisableKeyRequest
|
|
256
258
|
* @return DisableKeyResponse
|
|
257
259
|
* @throws OciError when an error occurs
|
|
258
|
-
* @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.24.0/keymanagement/DisableKey.ts.html |here} to see how to use DisableKey API.
|
|
259
261
|
*/
|
|
260
262
|
disableKey(disableKeyRequest: requests.DisableKeyRequest): Promise<responses.DisableKeyResponse>;
|
|
261
263
|
/**
|
|
@@ -271,7 +273,7 @@ export declare class KmsManagementClient {
|
|
|
271
273
|
* @param EnableKeyRequest
|
|
272
274
|
* @return EnableKeyResponse
|
|
273
275
|
* @throws OciError when an error occurs
|
|
274
|
-
* @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.24.0/keymanagement/EnableKey.ts.html |here} to see how to use EnableKey API.
|
|
275
277
|
*/
|
|
276
278
|
enableKey(enableKeyRequest: requests.EnableKeyRequest): Promise<responses.EnableKeyResponse>;
|
|
277
279
|
/**
|
|
@@ -286,7 +288,7 @@ export declare class KmsManagementClient {
|
|
|
286
288
|
* @param GetKeyRequest
|
|
287
289
|
* @return GetKeyResponse
|
|
288
290
|
* @throws OciError when an error occurs
|
|
289
|
-
* @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.24.0/keymanagement/GetKey.ts.html |here} to see how to use GetKey API.
|
|
290
292
|
*/
|
|
291
293
|
getKey(getKeyRequest: requests.GetKeyRequest): Promise<responses.GetKeyResponse>;
|
|
292
294
|
/**
|
|
@@ -301,7 +303,7 @@ export declare class KmsManagementClient {
|
|
|
301
303
|
* @param GetKeyVersionRequest
|
|
302
304
|
* @return GetKeyVersionResponse
|
|
303
305
|
* @throws OciError when an error occurs
|
|
304
|
-
* @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.24.0/keymanagement/GetKeyVersion.ts.html |here} to see how to use GetKeyVersion API.
|
|
305
307
|
*/
|
|
306
308
|
getKeyVersion(getKeyVersionRequest: requests.GetKeyVersionRequest): Promise<responses.GetKeyVersionResponse>;
|
|
307
309
|
/**
|
|
@@ -314,7 +316,7 @@ export declare class KmsManagementClient {
|
|
|
314
316
|
* @param GetReplicationStatusRequest
|
|
315
317
|
* @return GetReplicationStatusResponse
|
|
316
318
|
* @throws OciError when an error occurs
|
|
317
|
-
* @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.24.0/keymanagement/GetReplicationStatus.ts.html |here} to see how to use GetReplicationStatus API.
|
|
318
320
|
*/
|
|
319
321
|
getReplicationStatus(getReplicationStatusRequest: requests.GetReplicationStatusRequest): Promise<responses.GetReplicationStatusResponse>;
|
|
320
322
|
/**
|
|
@@ -325,7 +327,7 @@ export declare class KmsManagementClient {
|
|
|
325
327
|
* @param GetWrappingKeyRequest
|
|
326
328
|
* @return GetWrappingKeyResponse
|
|
327
329
|
* @throws OciError when an error occurs
|
|
328
|
-
* @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.24.0/keymanagement/GetWrappingKey.ts.html |here} to see how to use GetWrappingKey API.
|
|
329
331
|
*/
|
|
330
332
|
getWrappingKey(getWrappingKeyRequest: requests.GetWrappingKeyRequest): Promise<responses.GetWrappingKeyResponse>;
|
|
331
333
|
/**
|
|
@@ -337,7 +339,7 @@ export declare class KmsManagementClient {
|
|
|
337
339
|
* @param ImportKeyRequest
|
|
338
340
|
* @return ImportKeyResponse
|
|
339
341
|
* @throws OciError when an error occurs
|
|
340
|
-
* @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.24.0/keymanagement/ImportKey.ts.html |here} to see how to use ImportKey API.
|
|
341
343
|
*/
|
|
342
344
|
importKey(importKeyRequest: requests.ImportKeyRequest): Promise<responses.ImportKeyResponse>;
|
|
343
345
|
/**
|
|
@@ -351,7 +353,7 @@ export declare class KmsManagementClient {
|
|
|
351
353
|
* @param ImportKeyVersionRequest
|
|
352
354
|
* @return ImportKeyVersionResponse
|
|
353
355
|
* @throws OciError when an error occurs
|
|
354
|
-
* @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.24.0/keymanagement/ImportKeyVersion.ts.html |here} to see how to use ImportKeyVersion API.
|
|
355
357
|
*/
|
|
356
358
|
importKeyVersion(importKeyVersionRequest: requests.ImportKeyVersionRequest): Promise<responses.ImportKeyVersionResponse>;
|
|
357
359
|
/**
|
|
@@ -367,7 +369,7 @@ export declare class KmsManagementClient {
|
|
|
367
369
|
* @param ListKeyVersionsRequest
|
|
368
370
|
* @return ListKeyVersionsResponse
|
|
369
371
|
* @throws OciError when an error occurs
|
|
370
|
-
* @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.24.0/keymanagement/ListKeyVersions.ts.html |here} to see how to use ListKeyVersions API.
|
|
371
373
|
*/
|
|
372
374
|
listKeyVersions(listKeyVersionsRequest: requests.ListKeyVersionsRequest): Promise<responses.ListKeyVersionsResponse>;
|
|
373
375
|
/**
|
|
@@ -414,7 +416,7 @@ export declare class KmsManagementClient {
|
|
|
414
416
|
* @param ListKeysRequest
|
|
415
417
|
* @return ListKeysResponse
|
|
416
418
|
* @throws OciError when an error occurs
|
|
417
|
-
* @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.24.0/keymanagement/ListKeys.ts.html |here} to see how to use ListKeys API.
|
|
418
420
|
*/
|
|
419
421
|
listKeys(listKeysRequest: requests.ListKeysRequest): Promise<responses.ListKeysResponse>;
|
|
420
422
|
/**
|
|
@@ -458,7 +460,7 @@ export declare class KmsManagementClient {
|
|
|
458
460
|
* @param RestoreKeyFromFileRequest
|
|
459
461
|
* @return RestoreKeyFromFileResponse
|
|
460
462
|
* @throws OciError when an error occurs
|
|
461
|
-
* @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.24.0/keymanagement/RestoreKeyFromFile.ts.html |here} to see how to use RestoreKeyFromFile API.
|
|
462
464
|
*/
|
|
463
465
|
restoreKeyFromFile(restoreKeyFromFileRequest: requests.RestoreKeyFromFileRequest): Promise<responses.RestoreKeyFromFileResponse>;
|
|
464
466
|
/**
|
|
@@ -470,7 +472,7 @@ export declare class KmsManagementClient {
|
|
|
470
472
|
* @param RestoreKeyFromObjectStoreRequest
|
|
471
473
|
* @return RestoreKeyFromObjectStoreResponse
|
|
472
474
|
* @throws OciError when an error occurs
|
|
473
|
-
* @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.24.0/keymanagement/RestoreKeyFromObjectStore.ts.html |here} to see how to use RestoreKeyFromObjectStore API.
|
|
474
476
|
*/
|
|
475
477
|
restoreKeyFromObjectStore(restoreKeyFromObjectStoreRequest: requests.RestoreKeyFromObjectStoreRequest): Promise<responses.RestoreKeyFromObjectStoreResponse>;
|
|
476
478
|
/**
|
|
@@ -486,7 +488,7 @@ export declare class KmsManagementClient {
|
|
|
486
488
|
* @param ScheduleKeyDeletionRequest
|
|
487
489
|
* @return ScheduleKeyDeletionResponse
|
|
488
490
|
* @throws OciError when an error occurs
|
|
489
|
-
* @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.24.0/keymanagement/ScheduleKeyDeletion.ts.html |here} to see how to use ScheduleKeyDeletion API.
|
|
490
492
|
*/
|
|
491
493
|
scheduleKeyDeletion(scheduleKeyDeletionRequest: requests.ScheduleKeyDeletionRequest): Promise<responses.ScheduleKeyDeletionResponse>;
|
|
492
494
|
/**
|
|
@@ -502,7 +504,7 @@ export declare class KmsManagementClient {
|
|
|
502
504
|
* @param ScheduleKeyVersionDeletionRequest
|
|
503
505
|
* @return ScheduleKeyVersionDeletionResponse
|
|
504
506
|
* @throws OciError when an error occurs
|
|
505
|
-
* @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.24.0/keymanagement/ScheduleKeyVersionDeletion.ts.html |here} to see how to use ScheduleKeyVersionDeletion API.
|
|
506
508
|
*/
|
|
507
509
|
scheduleKeyVersionDeletion(scheduleKeyVersionDeletionRequest: requests.ScheduleKeyVersionDeletionRequest): Promise<responses.ScheduleKeyVersionDeletionResponse>;
|
|
508
510
|
/**
|
|
@@ -519,7 +521,7 @@ export declare class KmsManagementClient {
|
|
|
519
521
|
* @param UpdateKeyRequest
|
|
520
522
|
* @return UpdateKeyResponse
|
|
521
523
|
* @throws OciError when an error occurs
|
|
522
|
-
* @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.24.0/keymanagement/UpdateKey.ts.html |here} to see how to use UpdateKey API.
|
|
523
525
|
*/
|
|
524
526
|
updateKey(updateKeyRequest: requests.UpdateKeyRequest): Promise<responses.UpdateKeyResponse>;
|
|
525
527
|
}
|
|
@@ -536,6 +538,7 @@ export declare class KmsVaultClient {
|
|
|
536
538
|
protected "_waiters": KmsVaultWaiter;
|
|
537
539
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
538
540
|
protected _circuitBreaker: null;
|
|
541
|
+
protected _httpOptions: any;
|
|
539
542
|
protected _httpClient: common.HttpClient;
|
|
540
543
|
constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
|
|
541
544
|
/**
|
|
@@ -585,7 +588,7 @@ export declare class KmsVaultClient {
|
|
|
585
588
|
* @param BackupVaultRequest
|
|
586
589
|
* @return BackupVaultResponse
|
|
587
590
|
* @throws OciError when an error occurs
|
|
588
|
-
* @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.24.0/keymanagement/BackupVault.ts.html |here} to see how to use BackupVault API.
|
|
589
592
|
*/
|
|
590
593
|
backupVault(backupVaultRequest: requests.BackupVaultRequest): Promise<responses.BackupVaultResponse>;
|
|
591
594
|
/**
|
|
@@ -603,7 +606,7 @@ export declare class KmsVaultClient {
|
|
|
603
606
|
* @param CancelVaultDeletionRequest
|
|
604
607
|
* @return CancelVaultDeletionResponse
|
|
605
608
|
* @throws OciError when an error occurs
|
|
606
|
-
* @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.24.0/keymanagement/CancelVaultDeletion.ts.html |here} to see how to use CancelVaultDeletion API.
|
|
607
610
|
*/
|
|
608
611
|
cancelVaultDeletion(cancelVaultDeletionRequest: requests.CancelVaultDeletionRequest): Promise<responses.CancelVaultDeletionResponse>;
|
|
609
612
|
/**
|
|
@@ -621,7 +624,7 @@ export declare class KmsVaultClient {
|
|
|
621
624
|
* @param ChangeVaultCompartmentRequest
|
|
622
625
|
* @return ChangeVaultCompartmentResponse
|
|
623
626
|
* @throws OciError when an error occurs
|
|
624
|
-
* @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.24.0/keymanagement/ChangeVaultCompartment.ts.html |here} to see how to use ChangeVaultCompartment API.
|
|
625
628
|
*/
|
|
626
629
|
changeVaultCompartment(changeVaultCompartmentRequest: requests.ChangeVaultCompartmentRequest): Promise<responses.ChangeVaultCompartmentResponse>;
|
|
627
630
|
/**
|
|
@@ -639,7 +642,7 @@ export declare class KmsVaultClient {
|
|
|
639
642
|
* @param CreateVaultRequest
|
|
640
643
|
* @return CreateVaultResponse
|
|
641
644
|
* @throws OciError when an error occurs
|
|
642
|
-
* @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.24.0/keymanagement/CreateVault.ts.html |here} to see how to use CreateVault API.
|
|
643
646
|
*/
|
|
644
647
|
createVault(createVaultRequest: requests.CreateVaultRequest): Promise<responses.CreateVaultResponse>;
|
|
645
648
|
/**
|
|
@@ -658,7 +661,7 @@ export declare class KmsVaultClient {
|
|
|
658
661
|
* @param CreateVaultReplicaRequest
|
|
659
662
|
* @return CreateVaultReplicaResponse
|
|
660
663
|
* @throws OciError when an error occurs
|
|
661
|
-
* @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.24.0/keymanagement/CreateVaultReplica.ts.html |here} to see how to use CreateVaultReplica API.
|
|
662
665
|
*/
|
|
663
666
|
createVaultReplica(createVaultReplicaRequest: requests.CreateVaultReplicaRequest): Promise<responses.CreateVaultReplicaResponse>;
|
|
664
667
|
/**
|
|
@@ -673,7 +676,7 @@ export declare class KmsVaultClient {
|
|
|
673
676
|
* @param DeleteVaultReplicaRequest
|
|
674
677
|
* @return DeleteVaultReplicaResponse
|
|
675
678
|
* @throws OciError when an error occurs
|
|
676
|
-
* @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.24.0/keymanagement/DeleteVaultReplica.ts.html |here} to see how to use DeleteVaultReplica API.
|
|
677
680
|
*/
|
|
678
681
|
deleteVaultReplica(deleteVaultReplicaRequest: requests.DeleteVaultReplicaRequest): Promise<responses.DeleteVaultReplicaResponse>;
|
|
679
682
|
/**
|
|
@@ -688,7 +691,7 @@ export declare class KmsVaultClient {
|
|
|
688
691
|
* @param GetVaultRequest
|
|
689
692
|
* @return GetVaultResponse
|
|
690
693
|
* @throws OciError when an error occurs
|
|
691
|
-
* @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.24.0/keymanagement/GetVault.ts.html |here} to see how to use GetVault API.
|
|
692
695
|
*/
|
|
693
696
|
getVault(getVaultRequest: requests.GetVaultRequest): Promise<responses.GetVaultResponse>;
|
|
694
697
|
/**
|
|
@@ -698,7 +701,7 @@ export declare class KmsVaultClient {
|
|
|
698
701
|
* @param GetVaultUsageRequest
|
|
699
702
|
* @return GetVaultUsageResponse
|
|
700
703
|
* @throws OciError when an error occurs
|
|
701
|
-
* @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.24.0/keymanagement/GetVaultUsage.ts.html |here} to see how to use GetVaultUsage API.
|
|
702
705
|
*/
|
|
703
706
|
getVaultUsage(getVaultUsageRequest: requests.GetVaultUsageRequest): Promise<responses.GetVaultUsageResponse>;
|
|
704
707
|
/**
|
|
@@ -713,7 +716,7 @@ export declare class KmsVaultClient {
|
|
|
713
716
|
* @param ListVaultReplicasRequest
|
|
714
717
|
* @return ListVaultReplicasResponse
|
|
715
718
|
* @throws OciError when an error occurs
|
|
716
|
-
* @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.24.0/keymanagement/ListVaultReplicas.ts.html |here} to see how to use ListVaultReplicas API.
|
|
717
720
|
*/
|
|
718
721
|
listVaultReplicas(listVaultReplicasRequest: requests.ListVaultReplicasRequest): Promise<responses.ListVaultReplicasResponse>;
|
|
719
722
|
/**
|
|
@@ -760,7 +763,7 @@ export declare class KmsVaultClient {
|
|
|
760
763
|
* @param ListVaultsRequest
|
|
761
764
|
* @return ListVaultsResponse
|
|
762
765
|
* @throws OciError when an error occurs
|
|
763
|
-
* @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.24.0/keymanagement/ListVaults.ts.html |here} to see how to use ListVaults API.
|
|
764
767
|
*/
|
|
765
768
|
listVaults(listVaultsRequest: requests.ListVaultsRequest): Promise<responses.ListVaultsResponse>;
|
|
766
769
|
/**
|
|
@@ -804,7 +807,7 @@ export declare class KmsVaultClient {
|
|
|
804
807
|
* @param RestoreVaultFromFileRequest
|
|
805
808
|
* @return RestoreVaultFromFileResponse
|
|
806
809
|
* @throws OciError when an error occurs
|
|
807
|
-
* @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.24.0/keymanagement/RestoreVaultFromFile.ts.html |here} to see how to use RestoreVaultFromFile API.
|
|
808
811
|
*/
|
|
809
812
|
restoreVaultFromFile(restoreVaultFromFileRequest: requests.RestoreVaultFromFileRequest): Promise<responses.RestoreVaultFromFileResponse>;
|
|
810
813
|
/**
|
|
@@ -816,7 +819,7 @@ export declare class KmsVaultClient {
|
|
|
816
819
|
* @param RestoreVaultFromObjectStoreRequest
|
|
817
820
|
* @return RestoreVaultFromObjectStoreResponse
|
|
818
821
|
* @throws OciError when an error occurs
|
|
819
|
-
* @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.24.0/keymanagement/RestoreVaultFromObjectStore.ts.html |here} to see how to use RestoreVaultFromObjectStore API.
|
|
820
823
|
*/
|
|
821
824
|
restoreVaultFromObjectStore(restoreVaultFromObjectStoreRequest: requests.RestoreVaultFromObjectStoreRequest): Promise<responses.RestoreVaultFromObjectStoreResponse>;
|
|
822
825
|
/**
|
|
@@ -835,7 +838,7 @@ export declare class KmsVaultClient {
|
|
|
835
838
|
* @param ScheduleVaultDeletionRequest
|
|
836
839
|
* @return ScheduleVaultDeletionResponse
|
|
837
840
|
* @throws OciError when an error occurs
|
|
838
|
-
* @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.24.0/keymanagement/ScheduleVaultDeletion.ts.html |here} to see how to use ScheduleVaultDeletion API.
|
|
839
842
|
*/
|
|
840
843
|
scheduleVaultDeletion(scheduleVaultDeletionRequest: requests.ScheduleVaultDeletionRequest): Promise<responses.ScheduleVaultDeletionResponse>;
|
|
841
844
|
/**
|
|
@@ -852,7 +855,7 @@ export declare class KmsVaultClient {
|
|
|
852
855
|
* @param UpdateVaultRequest
|
|
853
856
|
* @return UpdateVaultResponse
|
|
854
857
|
* @throws OciError when an error occurs
|
|
855
|
-
* @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.24.0/keymanagement/UpdateVault.ts.html |here} to see how to use UpdateVault API.
|
|
856
859
|
*/
|
|
857
860
|
updateVault(updateVaultRequest: requests.UpdateVaultRequest): Promise<responses.UpdateVaultResponse>;
|
|
858
861
|
}
|