oci-keymanagement 2.27.0 → 2.28.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 +167 -82
- 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
|
@@ -31,6 +31,7 @@ export declare class KmsCryptoClient {
|
|
|
31
31
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
32
32
|
protected _circuitBreaker: null;
|
|
33
33
|
protected _httpOptions: any;
|
|
34
|
+
targetService: string;
|
|
34
35
|
protected _httpClient: common.HttpClient;
|
|
35
36
|
constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
|
|
36
37
|
/**
|
|
@@ -50,7 +51,7 @@ export declare class KmsCryptoClient {
|
|
|
50
51
|
* @param DecryptRequest
|
|
51
52
|
* @return DecryptResponse
|
|
52
53
|
* @throws OciError when an error occurs
|
|
53
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
54
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/keymanagement/Decrypt.ts.html |here} to see how to use Decrypt API.
|
|
54
55
|
*/
|
|
55
56
|
decrypt(decryptRequest: requests.DecryptRequest): Promise<responses.DecryptResponse>;
|
|
56
57
|
/**
|
|
@@ -61,7 +62,7 @@ export declare class KmsCryptoClient {
|
|
|
61
62
|
* @param EncryptRequest
|
|
62
63
|
* @return EncryptResponse
|
|
63
64
|
* @throws OciError when an error occurs
|
|
64
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
65
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/keymanagement/Encrypt.ts.html |here} to see how to use Encrypt API.
|
|
65
66
|
*/
|
|
66
67
|
encrypt(encryptRequest: requests.EncryptRequest): Promise<responses.EncryptResponse>;
|
|
67
68
|
/**
|
|
@@ -73,7 +74,7 @@ export declare class KmsCryptoClient {
|
|
|
73
74
|
* @param ExportKeyRequest
|
|
74
75
|
* @return ExportKeyResponse
|
|
75
76
|
* @throws OciError when an error occurs
|
|
76
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
77
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/keymanagement/ExportKey.ts.html |here} to see how to use ExportKey API.
|
|
77
78
|
*/
|
|
78
79
|
exportKey(exportKeyRequest: requests.ExportKeyRequest): Promise<responses.ExportKeyResponse>;
|
|
79
80
|
/**
|
|
@@ -83,7 +84,7 @@ export declare class KmsCryptoClient {
|
|
|
83
84
|
* @param GenerateDataEncryptionKeyRequest
|
|
84
85
|
* @return GenerateDataEncryptionKeyResponse
|
|
85
86
|
* @throws OciError when an error occurs
|
|
86
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
87
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/keymanagement/GenerateDataEncryptionKey.ts.html |here} to see how to use GenerateDataEncryptionKey API.
|
|
87
88
|
*/
|
|
88
89
|
generateDataEncryptionKey(generateDataEncryptionKeyRequest: requests.GenerateDataEncryptionKeyRequest): Promise<responses.GenerateDataEncryptionKeyResponse>;
|
|
89
90
|
/**
|
|
@@ -95,7 +96,7 @@ export declare class KmsCryptoClient {
|
|
|
95
96
|
* @param SignRequest
|
|
96
97
|
* @return SignResponse
|
|
97
98
|
* @throws OciError when an error occurs
|
|
98
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
99
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/keymanagement/Sign.ts.html |here} to see how to use Sign API.
|
|
99
100
|
*/
|
|
100
101
|
sign(signRequest: requests.SignRequest): Promise<responses.SignResponse>;
|
|
101
102
|
/**
|
|
@@ -107,7 +108,7 @@ export declare class KmsCryptoClient {
|
|
|
107
108
|
* @param VerifyRequest
|
|
108
109
|
* @return VerifyResponse
|
|
109
110
|
* @throws OciError when an error occurs
|
|
110
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
111
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/keymanagement/Verify.ts.html |here} to see how to use Verify API.
|
|
111
112
|
*/
|
|
112
113
|
verify(verifyRequest: requests.VerifyRequest): Promise<responses.VerifyResponse>;
|
|
113
114
|
}
|
|
@@ -125,6 +126,7 @@ export declare class KmsManagementClient {
|
|
|
125
126
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
126
127
|
protected _circuitBreaker: null;
|
|
127
128
|
protected _httpOptions: any;
|
|
129
|
+
targetService: string;
|
|
128
130
|
protected _httpClient: common.HttpClient;
|
|
129
131
|
constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
|
|
130
132
|
/**
|
|
@@ -158,7 +160,7 @@ export declare class KmsManagementClient {
|
|
|
158
160
|
* @param BackupKeyRequest
|
|
159
161
|
* @return BackupKeyResponse
|
|
160
162
|
* @throws OciError when an error occurs
|
|
161
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
163
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/keymanagement/BackupKey.ts.html |here} to see how to use BackupKey API.
|
|
162
164
|
*/
|
|
163
165
|
backupKey(backupKeyRequest: requests.BackupKeyRequest): Promise<responses.BackupKeyResponse>;
|
|
164
166
|
/**
|
|
@@ -175,7 +177,7 @@ export declare class KmsManagementClient {
|
|
|
175
177
|
* @param CancelKeyDeletionRequest
|
|
176
178
|
* @return CancelKeyDeletionResponse
|
|
177
179
|
* @throws OciError when an error occurs
|
|
178
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
180
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/keymanagement/CancelKeyDeletion.ts.html |here} to see how to use CancelKeyDeletion API.
|
|
179
181
|
*/
|
|
180
182
|
cancelKeyDeletion(cancelKeyDeletionRequest: requests.CancelKeyDeletionRequest): Promise<responses.CancelKeyDeletionResponse>;
|
|
181
183
|
/**
|
|
@@ -192,7 +194,7 @@ export declare class KmsManagementClient {
|
|
|
192
194
|
* @param CancelKeyVersionDeletionRequest
|
|
193
195
|
* @return CancelKeyVersionDeletionResponse
|
|
194
196
|
* @throws OciError when an error occurs
|
|
195
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
197
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/keymanagement/CancelKeyVersionDeletion.ts.html |here} to see how to use CancelKeyVersionDeletion API.
|
|
196
198
|
*/
|
|
197
199
|
cancelKeyVersionDeletion(cancelKeyVersionDeletionRequest: requests.CancelKeyVersionDeletionRequest): Promise<responses.CancelKeyVersionDeletionResponse>;
|
|
198
200
|
/**
|
|
@@ -210,7 +212,7 @@ export declare class KmsManagementClient {
|
|
|
210
212
|
* @param ChangeKeyCompartmentRequest
|
|
211
213
|
* @return ChangeKeyCompartmentResponse
|
|
212
214
|
* @throws OciError when an error occurs
|
|
213
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
215
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/keymanagement/ChangeKeyCompartment.ts.html |here} to see how to use ChangeKeyCompartment API.
|
|
214
216
|
*/
|
|
215
217
|
changeKeyCompartment(changeKeyCompartmentRequest: requests.ChangeKeyCompartmentRequest): Promise<responses.ChangeKeyCompartmentResponse>;
|
|
216
218
|
/**
|
|
@@ -225,7 +227,7 @@ export declare class KmsManagementClient {
|
|
|
225
227
|
* @param CreateKeyRequest
|
|
226
228
|
* @return CreateKeyResponse
|
|
227
229
|
* @throws OciError when an error occurs
|
|
228
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
230
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/keymanagement/CreateKey.ts.html |here} to see how to use CreateKey API.
|
|
229
231
|
*/
|
|
230
232
|
createKey(createKeyRequest: requests.CreateKeyRequest): Promise<responses.CreateKeyResponse>;
|
|
231
233
|
/**
|
|
@@ -241,7 +243,7 @@ export declare class KmsManagementClient {
|
|
|
241
243
|
* @param CreateKeyVersionRequest
|
|
242
244
|
* @return CreateKeyVersionResponse
|
|
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.28.0/keymanagement/CreateKeyVersion.ts.html |here} to see how to use CreateKeyVersion API.
|
|
245
247
|
*/
|
|
246
248
|
createKeyVersion(createKeyVersionRequest: requests.CreateKeyVersionRequest): Promise<responses.CreateKeyVersionResponse>;
|
|
247
249
|
/**
|
|
@@ -257,7 +259,7 @@ export declare class KmsManagementClient {
|
|
|
257
259
|
* @param DisableKeyRequest
|
|
258
260
|
* @return DisableKeyResponse
|
|
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.28.0/keymanagement/DisableKey.ts.html |here} to see how to use DisableKey API.
|
|
261
263
|
*/
|
|
262
264
|
disableKey(disableKeyRequest: requests.DisableKeyRequest): Promise<responses.DisableKeyResponse>;
|
|
263
265
|
/**
|
|
@@ -273,7 +275,7 @@ export declare class KmsManagementClient {
|
|
|
273
275
|
* @param EnableKeyRequest
|
|
274
276
|
* @return EnableKeyResponse
|
|
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.28.0/keymanagement/EnableKey.ts.html |here} to see how to use EnableKey API.
|
|
277
279
|
*/
|
|
278
280
|
enableKey(enableKeyRequest: requests.EnableKeyRequest): Promise<responses.EnableKeyResponse>;
|
|
279
281
|
/**
|
|
@@ -288,7 +290,7 @@ export declare class KmsManagementClient {
|
|
|
288
290
|
* @param GetKeyRequest
|
|
289
291
|
* @return GetKeyResponse
|
|
290
292
|
* @throws OciError when an error occurs
|
|
291
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
293
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/keymanagement/GetKey.ts.html |here} to see how to use GetKey API.
|
|
292
294
|
*/
|
|
293
295
|
getKey(getKeyRequest: requests.GetKeyRequest): Promise<responses.GetKeyResponse>;
|
|
294
296
|
/**
|
|
@@ -303,7 +305,7 @@ export declare class KmsManagementClient {
|
|
|
303
305
|
* @param GetKeyVersionRequest
|
|
304
306
|
* @return GetKeyVersionResponse
|
|
305
307
|
* @throws OciError when an error occurs
|
|
306
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
308
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/keymanagement/GetKeyVersion.ts.html |here} to see how to use GetKeyVersion API.
|
|
307
309
|
*/
|
|
308
310
|
getKeyVersion(getKeyVersionRequest: requests.GetKeyVersionRequest): Promise<responses.GetKeyVersionResponse>;
|
|
309
311
|
/**
|
|
@@ -316,7 +318,7 @@ export declare class KmsManagementClient {
|
|
|
316
318
|
* @param GetReplicationStatusRequest
|
|
317
319
|
* @return GetReplicationStatusResponse
|
|
318
320
|
* @throws OciError when an error occurs
|
|
319
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
321
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/keymanagement/GetReplicationStatus.ts.html |here} to see how to use GetReplicationStatus API.
|
|
320
322
|
*/
|
|
321
323
|
getReplicationStatus(getReplicationStatusRequest: requests.GetReplicationStatusRequest): Promise<responses.GetReplicationStatusResponse>;
|
|
322
324
|
/**
|
|
@@ -327,7 +329,7 @@ export declare class KmsManagementClient {
|
|
|
327
329
|
* @param GetWrappingKeyRequest
|
|
328
330
|
* @return GetWrappingKeyResponse
|
|
329
331
|
* @throws OciError when an error occurs
|
|
330
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
332
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/keymanagement/GetWrappingKey.ts.html |here} to see how to use GetWrappingKey API.
|
|
331
333
|
*/
|
|
332
334
|
getWrappingKey(getWrappingKeyRequest: requests.GetWrappingKeyRequest): Promise<responses.GetWrappingKeyResponse>;
|
|
333
335
|
/**
|
|
@@ -339,7 +341,7 @@ export declare class KmsManagementClient {
|
|
|
339
341
|
* @param ImportKeyRequest
|
|
340
342
|
* @return ImportKeyResponse
|
|
341
343
|
* @throws OciError when an error occurs
|
|
342
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
344
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/keymanagement/ImportKey.ts.html |here} to see how to use ImportKey API.
|
|
343
345
|
*/
|
|
344
346
|
importKey(importKeyRequest: requests.ImportKeyRequest): Promise<responses.ImportKeyResponse>;
|
|
345
347
|
/**
|
|
@@ -353,7 +355,7 @@ export declare class KmsManagementClient {
|
|
|
353
355
|
* @param ImportKeyVersionRequest
|
|
354
356
|
* @return ImportKeyVersionResponse
|
|
355
357
|
* @throws OciError when an error occurs
|
|
356
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
358
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/keymanagement/ImportKeyVersion.ts.html |here} to see how to use ImportKeyVersion API.
|
|
357
359
|
*/
|
|
358
360
|
importKeyVersion(importKeyVersionRequest: requests.ImportKeyVersionRequest): Promise<responses.ImportKeyVersionResponse>;
|
|
359
361
|
/**
|
|
@@ -369,7 +371,7 @@ export declare class KmsManagementClient {
|
|
|
369
371
|
* @param ListKeyVersionsRequest
|
|
370
372
|
* @return ListKeyVersionsResponse
|
|
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.28.0/keymanagement/ListKeyVersions.ts.html |here} to see how to use ListKeyVersions API.
|
|
373
375
|
*/
|
|
374
376
|
listKeyVersions(listKeyVersionsRequest: requests.ListKeyVersionsRequest): Promise<responses.ListKeyVersionsResponse>;
|
|
375
377
|
/**
|
|
@@ -416,7 +418,7 @@ export declare class KmsManagementClient {
|
|
|
416
418
|
* @param ListKeysRequest
|
|
417
419
|
* @return ListKeysResponse
|
|
418
420
|
* @throws OciError when an error occurs
|
|
419
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
421
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/keymanagement/ListKeys.ts.html |here} to see how to use ListKeys API.
|
|
420
422
|
*/
|
|
421
423
|
listKeys(listKeysRequest: requests.ListKeysRequest): Promise<responses.ListKeysResponse>;
|
|
422
424
|
/**
|
|
@@ -460,7 +462,7 @@ export declare class KmsManagementClient {
|
|
|
460
462
|
* @param RestoreKeyFromFileRequest
|
|
461
463
|
* @return RestoreKeyFromFileResponse
|
|
462
464
|
* @throws OciError when an error occurs
|
|
463
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
465
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/keymanagement/RestoreKeyFromFile.ts.html |here} to see how to use RestoreKeyFromFile API.
|
|
464
466
|
*/
|
|
465
467
|
restoreKeyFromFile(restoreKeyFromFileRequest: requests.RestoreKeyFromFileRequest): Promise<responses.RestoreKeyFromFileResponse>;
|
|
466
468
|
/**
|
|
@@ -472,7 +474,7 @@ export declare class KmsManagementClient {
|
|
|
472
474
|
* @param RestoreKeyFromObjectStoreRequest
|
|
473
475
|
* @return RestoreKeyFromObjectStoreResponse
|
|
474
476
|
* @throws OciError when an error occurs
|
|
475
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
477
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/keymanagement/RestoreKeyFromObjectStore.ts.html |here} to see how to use RestoreKeyFromObjectStore API.
|
|
476
478
|
*/
|
|
477
479
|
restoreKeyFromObjectStore(restoreKeyFromObjectStoreRequest: requests.RestoreKeyFromObjectStoreRequest): Promise<responses.RestoreKeyFromObjectStoreResponse>;
|
|
478
480
|
/**
|
|
@@ -488,7 +490,7 @@ export declare class KmsManagementClient {
|
|
|
488
490
|
* @param ScheduleKeyDeletionRequest
|
|
489
491
|
* @return ScheduleKeyDeletionResponse
|
|
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.28.0/keymanagement/ScheduleKeyDeletion.ts.html |here} to see how to use ScheduleKeyDeletion API.
|
|
492
494
|
*/
|
|
493
495
|
scheduleKeyDeletion(scheduleKeyDeletionRequest: requests.ScheduleKeyDeletionRequest): Promise<responses.ScheduleKeyDeletionResponse>;
|
|
494
496
|
/**
|
|
@@ -504,7 +506,7 @@ export declare class KmsManagementClient {
|
|
|
504
506
|
* @param ScheduleKeyVersionDeletionRequest
|
|
505
507
|
* @return ScheduleKeyVersionDeletionResponse
|
|
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.28.0/keymanagement/ScheduleKeyVersionDeletion.ts.html |here} to see how to use ScheduleKeyVersionDeletion API.
|
|
508
510
|
*/
|
|
509
511
|
scheduleKeyVersionDeletion(scheduleKeyVersionDeletionRequest: requests.ScheduleKeyVersionDeletionRequest): Promise<responses.ScheduleKeyVersionDeletionResponse>;
|
|
510
512
|
/**
|
|
@@ -521,7 +523,7 @@ export declare class KmsManagementClient {
|
|
|
521
523
|
* @param UpdateKeyRequest
|
|
522
524
|
* @return UpdateKeyResponse
|
|
523
525
|
* @throws OciError when an error occurs
|
|
524
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
526
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/keymanagement/UpdateKey.ts.html |here} to see how to use UpdateKey API.
|
|
525
527
|
*/
|
|
526
528
|
updateKey(updateKeyRequest: requests.UpdateKeyRequest): Promise<responses.UpdateKeyResponse>;
|
|
527
529
|
}
|
|
@@ -539,6 +541,7 @@ export declare class KmsVaultClient {
|
|
|
539
541
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
540
542
|
protected _circuitBreaker: null;
|
|
541
543
|
protected _httpOptions: any;
|
|
544
|
+
targetService: string;
|
|
542
545
|
protected _httpClient: common.HttpClient;
|
|
543
546
|
constructor(params: common.AuthParams, clientConfiguration?: common.ClientConfiguration);
|
|
544
547
|
/**
|
|
@@ -588,7 +591,7 @@ export declare class KmsVaultClient {
|
|
|
588
591
|
* @param BackupVaultRequest
|
|
589
592
|
* @return BackupVaultResponse
|
|
590
593
|
* @throws OciError when an error occurs
|
|
591
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
594
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/keymanagement/BackupVault.ts.html |here} to see how to use BackupVault API.
|
|
592
595
|
*/
|
|
593
596
|
backupVault(backupVaultRequest: requests.BackupVaultRequest): Promise<responses.BackupVaultResponse>;
|
|
594
597
|
/**
|
|
@@ -606,7 +609,7 @@ export declare class KmsVaultClient {
|
|
|
606
609
|
* @param CancelVaultDeletionRequest
|
|
607
610
|
* @return CancelVaultDeletionResponse
|
|
608
611
|
* @throws OciError when an error occurs
|
|
609
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
612
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/keymanagement/CancelVaultDeletion.ts.html |here} to see how to use CancelVaultDeletion API.
|
|
610
613
|
*/
|
|
611
614
|
cancelVaultDeletion(cancelVaultDeletionRequest: requests.CancelVaultDeletionRequest): Promise<responses.CancelVaultDeletionResponse>;
|
|
612
615
|
/**
|
|
@@ -624,7 +627,7 @@ export declare class KmsVaultClient {
|
|
|
624
627
|
* @param ChangeVaultCompartmentRequest
|
|
625
628
|
* @return ChangeVaultCompartmentResponse
|
|
626
629
|
* @throws OciError when an error occurs
|
|
627
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
630
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/keymanagement/ChangeVaultCompartment.ts.html |here} to see how to use ChangeVaultCompartment API.
|
|
628
631
|
*/
|
|
629
632
|
changeVaultCompartment(changeVaultCompartmentRequest: requests.ChangeVaultCompartmentRequest): Promise<responses.ChangeVaultCompartmentResponse>;
|
|
630
633
|
/**
|
|
@@ -642,7 +645,7 @@ export declare class KmsVaultClient {
|
|
|
642
645
|
* @param CreateVaultRequest
|
|
643
646
|
* @return CreateVaultResponse
|
|
644
647
|
* @throws OciError when an error occurs
|
|
645
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
648
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/keymanagement/CreateVault.ts.html |here} to see how to use CreateVault API.
|
|
646
649
|
*/
|
|
647
650
|
createVault(createVaultRequest: requests.CreateVaultRequest): Promise<responses.CreateVaultResponse>;
|
|
648
651
|
/**
|
|
@@ -661,7 +664,7 @@ export declare class KmsVaultClient {
|
|
|
661
664
|
* @param CreateVaultReplicaRequest
|
|
662
665
|
* @return CreateVaultReplicaResponse
|
|
663
666
|
* @throws OciError when an error occurs
|
|
664
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
667
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/keymanagement/CreateVaultReplica.ts.html |here} to see how to use CreateVaultReplica API.
|
|
665
668
|
*/
|
|
666
669
|
createVaultReplica(createVaultReplicaRequest: requests.CreateVaultReplicaRequest): Promise<responses.CreateVaultReplicaResponse>;
|
|
667
670
|
/**
|
|
@@ -676,7 +679,7 @@ export declare class KmsVaultClient {
|
|
|
676
679
|
* @param DeleteVaultReplicaRequest
|
|
677
680
|
* @return DeleteVaultReplicaResponse
|
|
678
681
|
* @throws OciError when an error occurs
|
|
679
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
682
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/keymanagement/DeleteVaultReplica.ts.html |here} to see how to use DeleteVaultReplica API.
|
|
680
683
|
*/
|
|
681
684
|
deleteVaultReplica(deleteVaultReplicaRequest: requests.DeleteVaultReplicaRequest): Promise<responses.DeleteVaultReplicaResponse>;
|
|
682
685
|
/**
|
|
@@ -691,7 +694,7 @@ export declare class KmsVaultClient {
|
|
|
691
694
|
* @param GetVaultRequest
|
|
692
695
|
* @return GetVaultResponse
|
|
693
696
|
* @throws OciError when an error occurs
|
|
694
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
697
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/keymanagement/GetVault.ts.html |here} to see how to use GetVault API.
|
|
695
698
|
*/
|
|
696
699
|
getVault(getVaultRequest: requests.GetVaultRequest): Promise<responses.GetVaultResponse>;
|
|
697
700
|
/**
|
|
@@ -701,7 +704,7 @@ export declare class KmsVaultClient {
|
|
|
701
704
|
* @param GetVaultUsageRequest
|
|
702
705
|
* @return GetVaultUsageResponse
|
|
703
706
|
* @throws OciError when an error occurs
|
|
704
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
707
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/keymanagement/GetVaultUsage.ts.html |here} to see how to use GetVaultUsage API.
|
|
705
708
|
*/
|
|
706
709
|
getVaultUsage(getVaultUsageRequest: requests.GetVaultUsageRequest): Promise<responses.GetVaultUsageResponse>;
|
|
707
710
|
/**
|
|
@@ -716,7 +719,7 @@ export declare class KmsVaultClient {
|
|
|
716
719
|
* @param ListVaultReplicasRequest
|
|
717
720
|
* @return ListVaultReplicasResponse
|
|
718
721
|
* @throws OciError when an error occurs
|
|
719
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
722
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/keymanagement/ListVaultReplicas.ts.html |here} to see how to use ListVaultReplicas API.
|
|
720
723
|
*/
|
|
721
724
|
listVaultReplicas(listVaultReplicasRequest: requests.ListVaultReplicasRequest): Promise<responses.ListVaultReplicasResponse>;
|
|
722
725
|
/**
|
|
@@ -763,7 +766,7 @@ export declare class KmsVaultClient {
|
|
|
763
766
|
* @param ListVaultsRequest
|
|
764
767
|
* @return ListVaultsResponse
|
|
765
768
|
* @throws OciError when an error occurs
|
|
766
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
769
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/keymanagement/ListVaults.ts.html |here} to see how to use ListVaults API.
|
|
767
770
|
*/
|
|
768
771
|
listVaults(listVaultsRequest: requests.ListVaultsRequest): Promise<responses.ListVaultsResponse>;
|
|
769
772
|
/**
|
|
@@ -807,7 +810,7 @@ export declare class KmsVaultClient {
|
|
|
807
810
|
* @param RestoreVaultFromFileRequest
|
|
808
811
|
* @return RestoreVaultFromFileResponse
|
|
809
812
|
* @throws OciError when an error occurs
|
|
810
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
813
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/keymanagement/RestoreVaultFromFile.ts.html |here} to see how to use RestoreVaultFromFile API.
|
|
811
814
|
*/
|
|
812
815
|
restoreVaultFromFile(restoreVaultFromFileRequest: requests.RestoreVaultFromFileRequest): Promise<responses.RestoreVaultFromFileResponse>;
|
|
813
816
|
/**
|
|
@@ -819,7 +822,7 @@ export declare class KmsVaultClient {
|
|
|
819
822
|
* @param RestoreVaultFromObjectStoreRequest
|
|
820
823
|
* @return RestoreVaultFromObjectStoreResponse
|
|
821
824
|
* @throws OciError when an error occurs
|
|
822
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
825
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/keymanagement/RestoreVaultFromObjectStore.ts.html |here} to see how to use RestoreVaultFromObjectStore API.
|
|
823
826
|
*/
|
|
824
827
|
restoreVaultFromObjectStore(restoreVaultFromObjectStoreRequest: requests.RestoreVaultFromObjectStoreRequest): Promise<responses.RestoreVaultFromObjectStoreResponse>;
|
|
825
828
|
/**
|
|
@@ -838,7 +841,7 @@ export declare class KmsVaultClient {
|
|
|
838
841
|
* @param ScheduleVaultDeletionRequest
|
|
839
842
|
* @return ScheduleVaultDeletionResponse
|
|
840
843
|
* @throws OciError when an error occurs
|
|
841
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
844
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/keymanagement/ScheduleVaultDeletion.ts.html |here} to see how to use ScheduleVaultDeletion API.
|
|
842
845
|
*/
|
|
843
846
|
scheduleVaultDeletion(scheduleVaultDeletionRequest: requests.ScheduleVaultDeletionRequest): Promise<responses.ScheduleVaultDeletionResponse>;
|
|
844
847
|
/**
|
|
@@ -855,7 +858,7 @@ export declare class KmsVaultClient {
|
|
|
855
858
|
* @param UpdateVaultRequest
|
|
856
859
|
* @return UpdateVaultResponse
|
|
857
860
|
* @throws OciError when an error occurs
|
|
858
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
861
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.28.0/keymanagement/UpdateVault.ts.html |here} to see how to use UpdateVault API.
|
|
859
862
|
*/
|
|
860
863
|
updateVault(updateVaultRequest: requests.UpdateVaultRequest): Promise<responses.UpdateVaultResponse>;
|
|
861
864
|
}
|