oci-keymanagement 2.67.0 → 2.68.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 +56 -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
|
@@ -32,6 +32,7 @@ export declare class KmsCryptoClient {
|
|
|
32
32
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
33
33
|
protected _circuitBreaker: null;
|
|
34
34
|
protected _httpOptions: any;
|
|
35
|
+
protected _bodyDuplexMode: any;
|
|
35
36
|
targetService: string;
|
|
36
37
|
protected _httpClient: common.HttpClient;
|
|
37
38
|
constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
|
|
@@ -58,7 +59,7 @@ export declare class KmsCryptoClient {
|
|
|
58
59
|
* @param DecryptRequest
|
|
59
60
|
* @return DecryptResponse
|
|
60
61
|
* @throws OciError when an error occurs
|
|
61
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
62
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/Decrypt.ts.html |here} to see how to use Decrypt API.
|
|
62
63
|
*/
|
|
63
64
|
decrypt(decryptRequest: requests.DecryptRequest): Promise<responses.DecryptResponse>;
|
|
64
65
|
/**
|
|
@@ -69,7 +70,7 @@ export declare class KmsCryptoClient {
|
|
|
69
70
|
* @param EncryptRequest
|
|
70
71
|
* @return EncryptResponse
|
|
71
72
|
* @throws OciError when an error occurs
|
|
72
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
73
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/Encrypt.ts.html |here} to see how to use Encrypt API.
|
|
73
74
|
*/
|
|
74
75
|
encrypt(encryptRequest: requests.EncryptRequest): Promise<responses.EncryptResponse>;
|
|
75
76
|
/**
|
|
@@ -81,7 +82,7 @@ export declare class KmsCryptoClient {
|
|
|
81
82
|
* @param ExportKeyRequest
|
|
82
83
|
* @return ExportKeyResponse
|
|
83
84
|
* @throws OciError when an error occurs
|
|
84
|
-
* @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.68.0/keymanagement/ExportKey.ts.html |here} to see how to use ExportKey API.
|
|
85
86
|
*/
|
|
86
87
|
exportKey(exportKeyRequest: requests.ExportKeyRequest): Promise<responses.ExportKeyResponse>;
|
|
87
88
|
/**
|
|
@@ -91,7 +92,7 @@ export declare class KmsCryptoClient {
|
|
|
91
92
|
* @param GenerateDataEncryptionKeyRequest
|
|
92
93
|
* @return GenerateDataEncryptionKeyResponse
|
|
93
94
|
* @throws OciError when an error occurs
|
|
94
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
95
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/GenerateDataEncryptionKey.ts.html |here} to see how to use GenerateDataEncryptionKey API.
|
|
95
96
|
*/
|
|
96
97
|
generateDataEncryptionKey(generateDataEncryptionKeyRequest: requests.GenerateDataEncryptionKeyRequest): Promise<responses.GenerateDataEncryptionKeyResponse>;
|
|
97
98
|
/**
|
|
@@ -103,7 +104,7 @@ export declare class KmsCryptoClient {
|
|
|
103
104
|
* @param SignRequest
|
|
104
105
|
* @return SignResponse
|
|
105
106
|
* @throws OciError when an error occurs
|
|
106
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
107
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/Sign.ts.html |here} to see how to use Sign API.
|
|
107
108
|
*/
|
|
108
109
|
sign(signRequest: requests.SignRequest): Promise<responses.SignResponse>;
|
|
109
110
|
/**
|
|
@@ -115,7 +116,7 @@ export declare class KmsCryptoClient {
|
|
|
115
116
|
* @param VerifyRequest
|
|
116
117
|
* @return VerifyResponse
|
|
117
118
|
* @throws OciError when an error occurs
|
|
118
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
119
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/Verify.ts.html |here} to see how to use Verify API.
|
|
119
120
|
*/
|
|
120
121
|
verify(verifyRequest: requests.VerifyRequest): Promise<responses.VerifyResponse>;
|
|
121
122
|
}
|
|
@@ -134,6 +135,7 @@ export declare class KmsManagementClient {
|
|
|
134
135
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
135
136
|
protected _circuitBreaker: null;
|
|
136
137
|
protected _httpOptions: any;
|
|
138
|
+
protected _bodyDuplexMode: any;
|
|
137
139
|
targetService: string;
|
|
138
140
|
protected _httpClient: common.HttpClient;
|
|
139
141
|
constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
|
|
@@ -174,7 +176,7 @@ export declare class KmsManagementClient {
|
|
|
174
176
|
* @param BackupKeyRequest
|
|
175
177
|
* @return BackupKeyResponse
|
|
176
178
|
* @throws OciError when an error occurs
|
|
177
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
179
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/BackupKey.ts.html |here} to see how to use BackupKey API.
|
|
178
180
|
*/
|
|
179
181
|
backupKey(backupKeyRequest: requests.BackupKeyRequest): Promise<responses.BackupKeyResponse>;
|
|
180
182
|
/**
|
|
@@ -191,7 +193,7 @@ export declare class KmsManagementClient {
|
|
|
191
193
|
* @param CancelKeyDeletionRequest
|
|
192
194
|
* @return CancelKeyDeletionResponse
|
|
193
195
|
* @throws OciError when an error occurs
|
|
194
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
196
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/CancelKeyDeletion.ts.html |here} to see how to use CancelKeyDeletion API.
|
|
195
197
|
*/
|
|
196
198
|
cancelKeyDeletion(cancelKeyDeletionRequest: requests.CancelKeyDeletionRequest): Promise<responses.CancelKeyDeletionResponse>;
|
|
197
199
|
/**
|
|
@@ -208,7 +210,7 @@ export declare class KmsManagementClient {
|
|
|
208
210
|
* @param CancelKeyVersionDeletionRequest
|
|
209
211
|
* @return CancelKeyVersionDeletionResponse
|
|
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.68.0/keymanagement/CancelKeyVersionDeletion.ts.html |here} to see how to use CancelKeyVersionDeletion API.
|
|
212
214
|
*/
|
|
213
215
|
cancelKeyVersionDeletion(cancelKeyVersionDeletionRequest: requests.CancelKeyVersionDeletionRequest): Promise<responses.CancelKeyVersionDeletionResponse>;
|
|
214
216
|
/**
|
|
@@ -226,7 +228,7 @@ export declare class KmsManagementClient {
|
|
|
226
228
|
* @param ChangeKeyCompartmentRequest
|
|
227
229
|
* @return ChangeKeyCompartmentResponse
|
|
228
230
|
* @throws OciError when an error occurs
|
|
229
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
231
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/ChangeKeyCompartment.ts.html |here} to see how to use ChangeKeyCompartment API.
|
|
230
232
|
*/
|
|
231
233
|
changeKeyCompartment(changeKeyCompartmentRequest: requests.ChangeKeyCompartmentRequest): Promise<responses.ChangeKeyCompartmentResponse>;
|
|
232
234
|
/**
|
|
@@ -241,7 +243,7 @@ export declare class KmsManagementClient {
|
|
|
241
243
|
* @param CreateKeyRequest
|
|
242
244
|
* @return CreateKeyResponse
|
|
243
245
|
* @throws OciError when an error occurs
|
|
244
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
246
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/CreateKey.ts.html |here} to see how to use CreateKey API.
|
|
245
247
|
*/
|
|
246
248
|
createKey(createKeyRequest: requests.CreateKeyRequest): Promise<responses.CreateKeyResponse>;
|
|
247
249
|
/**
|
|
@@ -257,7 +259,7 @@ export declare class KmsManagementClient {
|
|
|
257
259
|
* @param CreateKeyVersionRequest
|
|
258
260
|
* @return CreateKeyVersionResponse
|
|
259
261
|
* @throws OciError when an error occurs
|
|
260
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
262
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/CreateKeyVersion.ts.html |here} to see how to use CreateKeyVersion API.
|
|
261
263
|
*/
|
|
262
264
|
createKeyVersion(createKeyVersionRequest: requests.CreateKeyVersionRequest): Promise<responses.CreateKeyVersionResponse>;
|
|
263
265
|
/**
|
|
@@ -273,7 +275,7 @@ export declare class KmsManagementClient {
|
|
|
273
275
|
* @param DisableKeyRequest
|
|
274
276
|
* @return DisableKeyResponse
|
|
275
277
|
* @throws OciError when an error occurs
|
|
276
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
278
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/DisableKey.ts.html |here} to see how to use DisableKey API.
|
|
277
279
|
*/
|
|
278
280
|
disableKey(disableKeyRequest: requests.DisableKeyRequest): Promise<responses.DisableKeyResponse>;
|
|
279
281
|
/**
|
|
@@ -289,7 +291,7 @@ export declare class KmsManagementClient {
|
|
|
289
291
|
* @param EnableKeyRequest
|
|
290
292
|
* @return EnableKeyResponse
|
|
291
293
|
* @throws OciError when an error occurs
|
|
292
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
294
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/EnableKey.ts.html |here} to see how to use EnableKey API.
|
|
293
295
|
*/
|
|
294
296
|
enableKey(enableKeyRequest: requests.EnableKeyRequest): Promise<responses.EnableKeyResponse>;
|
|
295
297
|
/**
|
|
@@ -304,7 +306,7 @@ export declare class KmsManagementClient {
|
|
|
304
306
|
* @param GetKeyRequest
|
|
305
307
|
* @return GetKeyResponse
|
|
306
308
|
* @throws OciError when an error occurs
|
|
307
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
309
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/GetKey.ts.html |here} to see how to use GetKey API.
|
|
308
310
|
*/
|
|
309
311
|
getKey(getKeyRequest: requests.GetKeyRequest): Promise<responses.GetKeyResponse>;
|
|
310
312
|
/**
|
|
@@ -319,7 +321,7 @@ export declare class KmsManagementClient {
|
|
|
319
321
|
* @param GetKeyVersionRequest
|
|
320
322
|
* @return GetKeyVersionResponse
|
|
321
323
|
* @throws OciError when an error occurs
|
|
322
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
324
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/GetKeyVersion.ts.html |here} to see how to use GetKeyVersion API.
|
|
323
325
|
*/
|
|
324
326
|
getKeyVersion(getKeyVersionRequest: requests.GetKeyVersionRequest): Promise<responses.GetKeyVersionResponse>;
|
|
325
327
|
/**
|
|
@@ -332,7 +334,7 @@ export declare class KmsManagementClient {
|
|
|
332
334
|
* @param GetReplicationStatusRequest
|
|
333
335
|
* @return GetReplicationStatusResponse
|
|
334
336
|
* @throws OciError when an error occurs
|
|
335
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
337
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/GetReplicationStatus.ts.html |here} to see how to use GetReplicationStatus API.
|
|
336
338
|
*/
|
|
337
339
|
getReplicationStatus(getReplicationStatusRequest: requests.GetReplicationStatusRequest): Promise<responses.GetReplicationStatusResponse>;
|
|
338
340
|
/**
|
|
@@ -343,7 +345,7 @@ export declare class KmsManagementClient {
|
|
|
343
345
|
* @param GetWrappingKeyRequest
|
|
344
346
|
* @return GetWrappingKeyResponse
|
|
345
347
|
* @throws OciError when an error occurs
|
|
346
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
348
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/GetWrappingKey.ts.html |here} to see how to use GetWrappingKey API.
|
|
347
349
|
*/
|
|
348
350
|
getWrappingKey(getWrappingKeyRequest: requests.GetWrappingKeyRequest): Promise<responses.GetWrappingKeyResponse>;
|
|
349
351
|
/**
|
|
@@ -355,7 +357,7 @@ export declare class KmsManagementClient {
|
|
|
355
357
|
* @param ImportKeyRequest
|
|
356
358
|
* @return ImportKeyResponse
|
|
357
359
|
* @throws OciError when an error occurs
|
|
358
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
360
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/ImportKey.ts.html |here} to see how to use ImportKey API.
|
|
359
361
|
*/
|
|
360
362
|
importKey(importKeyRequest: requests.ImportKeyRequest): Promise<responses.ImportKeyResponse>;
|
|
361
363
|
/**
|
|
@@ -369,7 +371,7 @@ export declare class KmsManagementClient {
|
|
|
369
371
|
* @param ImportKeyVersionRequest
|
|
370
372
|
* @return ImportKeyVersionResponse
|
|
371
373
|
* @throws OciError when an error occurs
|
|
372
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
374
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/ImportKeyVersion.ts.html |here} to see how to use ImportKeyVersion API.
|
|
373
375
|
*/
|
|
374
376
|
importKeyVersion(importKeyVersionRequest: requests.ImportKeyVersionRequest): Promise<responses.ImportKeyVersionResponse>;
|
|
375
377
|
/**
|
|
@@ -385,7 +387,7 @@ export declare class KmsManagementClient {
|
|
|
385
387
|
* @param ListKeyVersionsRequest
|
|
386
388
|
* @return ListKeyVersionsResponse
|
|
387
389
|
* @throws OciError when an error occurs
|
|
388
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
390
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/ListKeyVersions.ts.html |here} to see how to use ListKeyVersions API.
|
|
389
391
|
*/
|
|
390
392
|
listKeyVersions(listKeyVersionsRequest: requests.ListKeyVersionsRequest): Promise<responses.ListKeyVersionsResponse>;
|
|
391
393
|
/**
|
|
@@ -432,7 +434,7 @@ export declare class KmsManagementClient {
|
|
|
432
434
|
* @param ListKeysRequest
|
|
433
435
|
* @return ListKeysResponse
|
|
434
436
|
* @throws OciError when an error occurs
|
|
435
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
437
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/ListKeys.ts.html |here} to see how to use ListKeys API.
|
|
436
438
|
*/
|
|
437
439
|
listKeys(listKeysRequest: requests.ListKeysRequest): Promise<responses.ListKeysResponse>;
|
|
438
440
|
/**
|
|
@@ -476,7 +478,7 @@ export declare class KmsManagementClient {
|
|
|
476
478
|
* @param RestoreKeyFromFileRequest
|
|
477
479
|
* @return RestoreKeyFromFileResponse
|
|
478
480
|
* @throws OciError when an error occurs
|
|
479
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
481
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/RestoreKeyFromFile.ts.html |here} to see how to use RestoreKeyFromFile API.
|
|
480
482
|
*/
|
|
481
483
|
restoreKeyFromFile(restoreKeyFromFileRequest: requests.RestoreKeyFromFileRequest): Promise<responses.RestoreKeyFromFileResponse>;
|
|
482
484
|
/**
|
|
@@ -488,7 +490,7 @@ export declare class KmsManagementClient {
|
|
|
488
490
|
* @param RestoreKeyFromObjectStoreRequest
|
|
489
491
|
* @return RestoreKeyFromObjectStoreResponse
|
|
490
492
|
* @throws OciError when an error occurs
|
|
491
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
493
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/RestoreKeyFromObjectStore.ts.html |here} to see how to use RestoreKeyFromObjectStore API.
|
|
492
494
|
*/
|
|
493
495
|
restoreKeyFromObjectStore(restoreKeyFromObjectStoreRequest: requests.RestoreKeyFromObjectStoreRequest): Promise<responses.RestoreKeyFromObjectStoreResponse>;
|
|
494
496
|
/**
|
|
@@ -504,7 +506,7 @@ export declare class KmsManagementClient {
|
|
|
504
506
|
* @param ScheduleKeyDeletionRequest
|
|
505
507
|
* @return ScheduleKeyDeletionResponse
|
|
506
508
|
* @throws OciError when an error occurs
|
|
507
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
509
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/ScheduleKeyDeletion.ts.html |here} to see how to use ScheduleKeyDeletion API.
|
|
508
510
|
*/
|
|
509
511
|
scheduleKeyDeletion(scheduleKeyDeletionRequest: requests.ScheduleKeyDeletionRequest): Promise<responses.ScheduleKeyDeletionResponse>;
|
|
510
512
|
/**
|
|
@@ -520,7 +522,7 @@ export declare class KmsManagementClient {
|
|
|
520
522
|
* @param ScheduleKeyVersionDeletionRequest
|
|
521
523
|
* @return ScheduleKeyVersionDeletionResponse
|
|
522
524
|
* @throws OciError when an error occurs
|
|
523
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
525
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/ScheduleKeyVersionDeletion.ts.html |here} to see how to use ScheduleKeyVersionDeletion API.
|
|
524
526
|
*/
|
|
525
527
|
scheduleKeyVersionDeletion(scheduleKeyVersionDeletionRequest: requests.ScheduleKeyVersionDeletionRequest): Promise<responses.ScheduleKeyVersionDeletionResponse>;
|
|
526
528
|
/**
|
|
@@ -537,7 +539,7 @@ export declare class KmsManagementClient {
|
|
|
537
539
|
* @param UpdateKeyRequest
|
|
538
540
|
* @return UpdateKeyResponse
|
|
539
541
|
* @throws OciError when an error occurs
|
|
540
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
542
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/UpdateKey.ts.html |here} to see how to use UpdateKey API.
|
|
541
543
|
*/
|
|
542
544
|
updateKey(updateKeyRequest: requests.UpdateKeyRequest): Promise<responses.UpdateKeyResponse>;
|
|
543
545
|
}
|
|
@@ -556,6 +558,7 @@ export declare class KmsVaultClient {
|
|
|
556
558
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
557
559
|
protected _circuitBreaker: null;
|
|
558
560
|
protected _httpOptions: any;
|
|
561
|
+
protected _bodyDuplexMode: any;
|
|
559
562
|
targetService: string;
|
|
560
563
|
protected _regionId: string;
|
|
561
564
|
protected "_region": common.Region;
|
|
@@ -615,7 +618,7 @@ export declare class KmsVaultClient {
|
|
|
615
618
|
* @param BackupVaultRequest
|
|
616
619
|
* @return BackupVaultResponse
|
|
617
620
|
* @throws OciError when an error occurs
|
|
618
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
621
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/BackupVault.ts.html |here} to see how to use BackupVault API.
|
|
619
622
|
*/
|
|
620
623
|
backupVault(backupVaultRequest: requests.BackupVaultRequest): Promise<responses.BackupVaultResponse>;
|
|
621
624
|
/**
|
|
@@ -633,7 +636,7 @@ export declare class KmsVaultClient {
|
|
|
633
636
|
* @param CancelVaultDeletionRequest
|
|
634
637
|
* @return CancelVaultDeletionResponse
|
|
635
638
|
* @throws OciError when an error occurs
|
|
636
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
639
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/CancelVaultDeletion.ts.html |here} to see how to use CancelVaultDeletion API.
|
|
637
640
|
*/
|
|
638
641
|
cancelVaultDeletion(cancelVaultDeletionRequest: requests.CancelVaultDeletionRequest): Promise<responses.CancelVaultDeletionResponse>;
|
|
639
642
|
/**
|
|
@@ -651,7 +654,7 @@ export declare class KmsVaultClient {
|
|
|
651
654
|
* @param ChangeVaultCompartmentRequest
|
|
652
655
|
* @return ChangeVaultCompartmentResponse
|
|
653
656
|
* @throws OciError when an error occurs
|
|
654
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
657
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/ChangeVaultCompartment.ts.html |here} to see how to use ChangeVaultCompartment API.
|
|
655
658
|
*/
|
|
656
659
|
changeVaultCompartment(changeVaultCompartmentRequest: requests.ChangeVaultCompartmentRequest): Promise<responses.ChangeVaultCompartmentResponse>;
|
|
657
660
|
/**
|
|
@@ -669,7 +672,7 @@ export declare class KmsVaultClient {
|
|
|
669
672
|
* @param CreateVaultRequest
|
|
670
673
|
* @return CreateVaultResponse
|
|
671
674
|
* @throws OciError when an error occurs
|
|
672
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
675
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/CreateVault.ts.html |here} to see how to use CreateVault API.
|
|
673
676
|
*/
|
|
674
677
|
createVault(createVaultRequest: requests.CreateVaultRequest): Promise<responses.CreateVaultResponse>;
|
|
675
678
|
/**
|
|
@@ -688,7 +691,7 @@ export declare class KmsVaultClient {
|
|
|
688
691
|
* @param CreateVaultReplicaRequest
|
|
689
692
|
* @return CreateVaultReplicaResponse
|
|
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.68.0/keymanagement/CreateVaultReplica.ts.html |here} to see how to use CreateVaultReplica API.
|
|
692
695
|
*/
|
|
693
696
|
createVaultReplica(createVaultReplicaRequest: requests.CreateVaultReplicaRequest): Promise<responses.CreateVaultReplicaResponse>;
|
|
694
697
|
/**
|
|
@@ -703,7 +706,7 @@ export declare class KmsVaultClient {
|
|
|
703
706
|
* @param DeleteVaultReplicaRequest
|
|
704
707
|
* @return DeleteVaultReplicaResponse
|
|
705
708
|
* @throws OciError when an error occurs
|
|
706
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
709
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/DeleteVaultReplica.ts.html |here} to see how to use DeleteVaultReplica API.
|
|
707
710
|
*/
|
|
708
711
|
deleteVaultReplica(deleteVaultReplicaRequest: requests.DeleteVaultReplicaRequest): Promise<responses.DeleteVaultReplicaResponse>;
|
|
709
712
|
/**
|
|
@@ -718,7 +721,7 @@ export declare class KmsVaultClient {
|
|
|
718
721
|
* @param GetVaultRequest
|
|
719
722
|
* @return GetVaultResponse
|
|
720
723
|
* @throws OciError when an error occurs
|
|
721
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
724
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/GetVault.ts.html |here} to see how to use GetVault API.
|
|
722
725
|
*/
|
|
723
726
|
getVault(getVaultRequest: requests.GetVaultRequest): Promise<responses.GetVaultResponse>;
|
|
724
727
|
/**
|
|
@@ -728,7 +731,7 @@ export declare class KmsVaultClient {
|
|
|
728
731
|
* @param GetVaultUsageRequest
|
|
729
732
|
* @return GetVaultUsageResponse
|
|
730
733
|
* @throws OciError when an error occurs
|
|
731
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
734
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/GetVaultUsage.ts.html |here} to see how to use GetVaultUsage API.
|
|
732
735
|
*/
|
|
733
736
|
getVaultUsage(getVaultUsageRequest: requests.GetVaultUsageRequest): Promise<responses.GetVaultUsageResponse>;
|
|
734
737
|
/**
|
|
@@ -743,7 +746,7 @@ export declare class KmsVaultClient {
|
|
|
743
746
|
* @param ListVaultReplicasRequest
|
|
744
747
|
* @return ListVaultReplicasResponse
|
|
745
748
|
* @throws OciError when an error occurs
|
|
746
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
749
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/ListVaultReplicas.ts.html |here} to see how to use ListVaultReplicas API.
|
|
747
750
|
*/
|
|
748
751
|
listVaultReplicas(listVaultReplicasRequest: requests.ListVaultReplicasRequest): Promise<responses.ListVaultReplicasResponse>;
|
|
749
752
|
/**
|
|
@@ -790,7 +793,7 @@ export declare class KmsVaultClient {
|
|
|
790
793
|
* @param ListVaultsRequest
|
|
791
794
|
* @return ListVaultsResponse
|
|
792
795
|
* @throws OciError when an error occurs
|
|
793
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
796
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/ListVaults.ts.html |here} to see how to use ListVaults API.
|
|
794
797
|
*/
|
|
795
798
|
listVaults(listVaultsRequest: requests.ListVaultsRequest): Promise<responses.ListVaultsResponse>;
|
|
796
799
|
/**
|
|
@@ -834,7 +837,7 @@ export declare class KmsVaultClient {
|
|
|
834
837
|
* @param RestoreVaultFromFileRequest
|
|
835
838
|
* @return RestoreVaultFromFileResponse
|
|
836
839
|
* @throws OciError when an error occurs
|
|
837
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
840
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/RestoreVaultFromFile.ts.html |here} to see how to use RestoreVaultFromFile API.
|
|
838
841
|
*/
|
|
839
842
|
restoreVaultFromFile(restoreVaultFromFileRequest: requests.RestoreVaultFromFileRequest): Promise<responses.RestoreVaultFromFileResponse>;
|
|
840
843
|
/**
|
|
@@ -846,7 +849,7 @@ export declare class KmsVaultClient {
|
|
|
846
849
|
* @param RestoreVaultFromObjectStoreRequest
|
|
847
850
|
* @return RestoreVaultFromObjectStoreResponse
|
|
848
851
|
* @throws OciError when an error occurs
|
|
849
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
852
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/RestoreVaultFromObjectStore.ts.html |here} to see how to use RestoreVaultFromObjectStore API.
|
|
850
853
|
*/
|
|
851
854
|
restoreVaultFromObjectStore(restoreVaultFromObjectStoreRequest: requests.RestoreVaultFromObjectStoreRequest): Promise<responses.RestoreVaultFromObjectStoreResponse>;
|
|
852
855
|
/**
|
|
@@ -865,7 +868,7 @@ export declare class KmsVaultClient {
|
|
|
865
868
|
* @param ScheduleVaultDeletionRequest
|
|
866
869
|
* @return ScheduleVaultDeletionResponse
|
|
867
870
|
* @throws OciError when an error occurs
|
|
868
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
871
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/ScheduleVaultDeletion.ts.html |here} to see how to use ScheduleVaultDeletion API.
|
|
869
872
|
*/
|
|
870
873
|
scheduleVaultDeletion(scheduleVaultDeletionRequest: requests.ScheduleVaultDeletionRequest): Promise<responses.ScheduleVaultDeletionResponse>;
|
|
871
874
|
/**
|
|
@@ -882,7 +885,7 @@ export declare class KmsVaultClient {
|
|
|
882
885
|
* @param UpdateVaultRequest
|
|
883
886
|
* @return UpdateVaultResponse
|
|
884
887
|
* @throws OciError when an error occurs
|
|
885
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
888
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.68.0/keymanagement/UpdateVault.ts.html |here} to see how to use UpdateVault API.
|
|
886
889
|
*/
|
|
887
890
|
updateVault(updateVaultRequest: requests.UpdateVaultRequest): Promise<responses.UpdateVaultResponse>;
|
|
888
891
|
}
|