oci-filestorage 2.83.0 → 2.84.2
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 +54 -50
- package/lib/client.js +56 -50
- package/lib/client.js.map +1 -1
- package/lib/request/change-file-system-compartment-request.d.ts +1 -1
- package/lib/request/change-filesystem-snapshot-policy-compartment-request.d.ts +1 -1
- package/lib/request/change-mount-target-compartment-request.d.ts +1 -1
- package/lib/request/change-outbound-connector-compartment-request.d.ts +1 -1
- package/lib/request/change-replication-compartment-request.d.ts +1 -1
- package/lib/request/create-export-request.d.ts +1 -1
- package/lib/request/create-file-system-request.d.ts +1 -1
- package/lib/request/create-filesystem-snapshot-policy-request.d.ts +1 -1
- package/lib/request/create-mount-target-request.d.ts +1 -1
- package/lib/request/create-outbound-connector-request.d.ts +1 -1
- package/lib/request/create-replication-request.d.ts +1 -1
- package/lib/request/create-snapshot-request.d.ts +1 -1
- package/lib/request/delete-export-request.d.ts +1 -1
- package/lib/request/delete-file-system-request.d.ts +1 -1
- package/lib/request/delete-filesystem-snapshot-policy-request.d.ts +1 -1
- package/lib/request/delete-mount-target-request.d.ts +1 -1
- package/lib/request/delete-outbound-connector-request.d.ts +1 -1
- package/lib/request/delete-replication-request.d.ts +1 -1
- package/lib/request/delete-replication-target-request.d.ts +1 -1
- package/lib/request/delete-snapshot-request.d.ts +1 -1
- package/lib/request/estimate-replication-request.d.ts +1 -1
- package/lib/request/get-export-request.d.ts +1 -1
- package/lib/request/get-export-set-request.d.ts +1 -1
- package/lib/request/get-file-system-request.d.ts +1 -1
- package/lib/request/get-filesystem-snapshot-policy-request.d.ts +1 -1
- package/lib/request/get-mount-target-request.d.ts +1 -1
- package/lib/request/get-outbound-connector-request.d.ts +1 -1
- package/lib/request/get-replication-request.d.ts +1 -1
- package/lib/request/get-replication-target-request.d.ts +1 -1
- package/lib/request/get-snapshot-request.d.ts +1 -1
- package/lib/request/list-export-sets-request.d.ts +1 -1
- package/lib/request/list-exports-request.d.ts +1 -1
- package/lib/request/list-file-systems-request.d.ts +1 -1
- package/lib/request/list-filesystem-snapshot-policies-request.d.ts +1 -1
- package/lib/request/list-mount-targets-request.d.ts +1 -1
- package/lib/request/list-outbound-connectors-request.d.ts +1 -1
- package/lib/request/list-replication-targets-request.d.ts +1 -1
- package/lib/request/list-replications-request.d.ts +1 -1
- package/lib/request/list-snapshots-request.d.ts +1 -1
- package/lib/request/pause-filesystem-snapshot-policy-request.d.ts +1 -1
- package/lib/request/unpause-filesystem-snapshot-policy-request.d.ts +1 -1
- package/lib/request/update-export-request.d.ts +1 -1
- package/lib/request/update-export-set-request.d.ts +1 -1
- package/lib/request/update-file-system-request.d.ts +1 -1
- package/lib/request/update-filesystem-snapshot-policy-request.d.ts +1 -1
- package/lib/request/update-mount-target-request.d.ts +1 -1
- package/lib/request/update-outbound-connector-request.d.ts +1 -1
- package/lib/request/update-replication-request.d.ts +1 -1
- package/lib/request/update-snapshot-request.d.ts +1 -1
- package/lib/request/validate-key-tabs-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.d.ts
CHANGED
|
@@ -88,6 +88,10 @@ export declare class FileStorageClient {
|
|
|
88
88
|
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
89
89
|
*/
|
|
90
90
|
shutdownCircuitBreaker(): void;
|
|
91
|
+
/**
|
|
92
|
+
* Close the client once it is no longer needed
|
|
93
|
+
*/
|
|
94
|
+
close(): void;
|
|
91
95
|
/**
|
|
92
96
|
* Moves a file system and its associated snapshots into a different compartment within the same tenancy. For information about moving resources between compartments, see [Moving Resources to a Different Compartment](https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes)
|
|
93
97
|
*
|
|
@@ -95,7 +99,7 @@ export declare class FileStorageClient {
|
|
|
95
99
|
* @param ChangeFileSystemCompartmentRequest
|
|
96
100
|
* @return ChangeFileSystemCompartmentResponse
|
|
97
101
|
* @throws OciError when an error occurs
|
|
98
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
102
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/ChangeFileSystemCompartment.ts.html |here} to see how to use ChangeFileSystemCompartment API.
|
|
99
103
|
*/
|
|
100
104
|
changeFileSystemCompartment(changeFileSystemCompartmentRequest: requests.ChangeFileSystemCompartmentRequest): Promise<responses.ChangeFileSystemCompartmentResponse>;
|
|
101
105
|
/**
|
|
@@ -105,7 +109,7 @@ export declare class FileStorageClient {
|
|
|
105
109
|
* @param ChangeFilesystemSnapshotPolicyCompartmentRequest
|
|
106
110
|
* @return ChangeFilesystemSnapshotPolicyCompartmentResponse
|
|
107
111
|
* @throws OciError when an error occurs
|
|
108
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
112
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/ChangeFilesystemSnapshotPolicyCompartment.ts.html |here} to see how to use ChangeFilesystemSnapshotPolicyCompartment API.
|
|
109
113
|
*/
|
|
110
114
|
changeFilesystemSnapshotPolicyCompartment(changeFilesystemSnapshotPolicyCompartmentRequest: requests.ChangeFilesystemSnapshotPolicyCompartmentRequest): Promise<responses.ChangeFilesystemSnapshotPolicyCompartmentResponse>;
|
|
111
115
|
/**
|
|
@@ -115,7 +119,7 @@ export declare class FileStorageClient {
|
|
|
115
119
|
* @param ChangeMountTargetCompartmentRequest
|
|
116
120
|
* @return ChangeMountTargetCompartmentResponse
|
|
117
121
|
* @throws OciError when an error occurs
|
|
118
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
122
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/ChangeMountTargetCompartment.ts.html |here} to see how to use ChangeMountTargetCompartment API.
|
|
119
123
|
*/
|
|
120
124
|
changeMountTargetCompartment(changeMountTargetCompartmentRequest: requests.ChangeMountTargetCompartmentRequest): Promise<responses.ChangeMountTargetCompartmentResponse>;
|
|
121
125
|
/**
|
|
@@ -127,7 +131,7 @@ export declare class FileStorageClient {
|
|
|
127
131
|
* @param ChangeOutboundConnectorCompartmentRequest
|
|
128
132
|
* @return ChangeOutboundConnectorCompartmentResponse
|
|
129
133
|
* @throws OciError when an error occurs
|
|
130
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
134
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/ChangeOutboundConnectorCompartment.ts.html |here} to see how to use ChangeOutboundConnectorCompartment API.
|
|
131
135
|
*/
|
|
132
136
|
changeOutboundConnectorCompartment(changeOutboundConnectorCompartmentRequest: requests.ChangeOutboundConnectorCompartmentRequest): Promise<responses.ChangeOutboundConnectorCompartmentResponse>;
|
|
133
137
|
/**
|
|
@@ -138,7 +142,7 @@ export declare class FileStorageClient {
|
|
|
138
142
|
* @param ChangeReplicationCompartmentRequest
|
|
139
143
|
* @return ChangeReplicationCompartmentResponse
|
|
140
144
|
* @throws OciError when an error occurs
|
|
141
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
145
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/ChangeReplicationCompartment.ts.html |here} to see how to use ChangeReplicationCompartment API.
|
|
142
146
|
*/
|
|
143
147
|
changeReplicationCompartment(changeReplicationCompartmentRequest: requests.ChangeReplicationCompartmentRequest): Promise<responses.ChangeReplicationCompartmentResponse>;
|
|
144
148
|
/**
|
|
@@ -149,7 +153,7 @@ export declare class FileStorageClient {
|
|
|
149
153
|
* @param CreateExportRequest
|
|
150
154
|
* @return CreateExportResponse
|
|
151
155
|
* @throws OciError when an error occurs
|
|
152
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
156
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/CreateExport.ts.html |here} to see how to use CreateExport API.
|
|
153
157
|
*/
|
|
154
158
|
createExport(createExportRequest: requests.CreateExportRequest): Promise<responses.CreateExportResponse>;
|
|
155
159
|
/**
|
|
@@ -187,7 +191,7 @@ export declare class FileStorageClient {
|
|
|
187
191
|
* @param CreateFileSystemRequest
|
|
188
192
|
* @return CreateFileSystemResponse
|
|
189
193
|
* @throws OciError when an error occurs
|
|
190
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
194
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/CreateFileSystem.ts.html |here} to see how to use CreateFileSystem API.
|
|
191
195
|
*/
|
|
192
196
|
createFileSystem(createFileSystemRequest: requests.CreateFileSystemRequest): Promise<responses.CreateFileSystemResponse>;
|
|
193
197
|
/**
|
|
@@ -201,7 +205,7 @@ export declare class FileStorageClient {
|
|
|
201
205
|
* @param CreateFilesystemSnapshotPolicyRequest
|
|
202
206
|
* @return CreateFilesystemSnapshotPolicyResponse
|
|
203
207
|
* @throws OciError when an error occurs
|
|
204
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
208
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/CreateFilesystemSnapshotPolicy.ts.html |here} to see how to use CreateFilesystemSnapshotPolicy API.
|
|
205
209
|
*/
|
|
206
210
|
createFilesystemSnapshotPolicy(createFilesystemSnapshotPolicyRequest: requests.CreateFilesystemSnapshotPolicyRequest): Promise<responses.CreateFilesystemSnapshotPolicyResponse>;
|
|
207
211
|
/**
|
|
@@ -242,7 +246,7 @@ export declare class FileStorageClient {
|
|
|
242
246
|
* @param CreateMountTargetRequest
|
|
243
247
|
* @return CreateMountTargetResponse
|
|
244
248
|
* @throws OciError when an error occurs
|
|
245
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
249
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/CreateMountTarget.ts.html |here} to see how to use CreateMountTarget API.
|
|
246
250
|
*/
|
|
247
251
|
createMountTarget(createMountTargetRequest: requests.CreateMountTargetRequest): Promise<responses.CreateMountTargetResponse>;
|
|
248
252
|
/**
|
|
@@ -271,7 +275,7 @@ export declare class FileStorageClient {
|
|
|
271
275
|
* @param CreateOutboundConnectorRequest
|
|
272
276
|
* @return CreateOutboundConnectorResponse
|
|
273
277
|
* @throws OciError when an error occurs
|
|
274
|
-
* @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.84.2/filestorage/CreateOutboundConnector.ts.html |here} to see how to use CreateOutboundConnector API.
|
|
275
279
|
*/
|
|
276
280
|
createOutboundConnector(createOutboundConnectorRequest: requests.CreateOutboundConnectorRequest): Promise<responses.CreateOutboundConnectorResponse>;
|
|
277
281
|
/**
|
|
@@ -307,7 +311,7 @@ export declare class FileStorageClient {
|
|
|
307
311
|
* @param CreateReplicationRequest
|
|
308
312
|
* @return CreateReplicationResponse
|
|
309
313
|
* @throws OciError when an error occurs
|
|
310
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
314
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/CreateReplication.ts.html |here} to see how to use CreateReplication API.
|
|
311
315
|
*/
|
|
312
316
|
createReplication(createReplicationRequest: requests.CreateReplicationRequest): Promise<responses.CreateReplicationResponse>;
|
|
313
317
|
/**
|
|
@@ -318,7 +322,7 @@ export declare class FileStorageClient {
|
|
|
318
322
|
* @param CreateSnapshotRequest
|
|
319
323
|
* @return CreateSnapshotResponse
|
|
320
324
|
* @throws OciError when an error occurs
|
|
321
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
325
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/CreateSnapshot.ts.html |here} to see how to use CreateSnapshot API.
|
|
322
326
|
*/
|
|
323
327
|
createSnapshot(createSnapshotRequest: requests.CreateSnapshotRequest): Promise<responses.CreateSnapshotResponse>;
|
|
324
328
|
/**
|
|
@@ -328,7 +332,7 @@ export declare class FileStorageClient {
|
|
|
328
332
|
* @param DeleteExportRequest
|
|
329
333
|
* @return DeleteExportResponse
|
|
330
334
|
* @throws OciError when an error occurs
|
|
331
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
335
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/DeleteExport.ts.html |here} to see how to use DeleteExport API.
|
|
332
336
|
*/
|
|
333
337
|
deleteExport(deleteExportRequest: requests.DeleteExportRequest): Promise<responses.DeleteExportResponse>;
|
|
334
338
|
/**
|
|
@@ -340,7 +344,7 @@ export declare class FileStorageClient {
|
|
|
340
344
|
* @param DeleteFileSystemRequest
|
|
341
345
|
* @return DeleteFileSystemResponse
|
|
342
346
|
* @throws OciError when an error occurs
|
|
343
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
347
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/DeleteFileSystem.ts.html |here} to see how to use DeleteFileSystem API.
|
|
344
348
|
*/
|
|
345
349
|
deleteFileSystem(deleteFileSystemRequest: requests.DeleteFileSystemRequest): Promise<responses.DeleteFileSystemResponse>;
|
|
346
350
|
/**
|
|
@@ -350,7 +354,7 @@ export declare class FileStorageClient {
|
|
|
350
354
|
* @param DeleteFilesystemSnapshotPolicyRequest
|
|
351
355
|
* @return DeleteFilesystemSnapshotPolicyResponse
|
|
352
356
|
* @throws OciError when an error occurs
|
|
353
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
357
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/DeleteFilesystemSnapshotPolicy.ts.html |here} to see how to use DeleteFilesystemSnapshotPolicy API.
|
|
354
358
|
*/
|
|
355
359
|
deleteFilesystemSnapshotPolicy(deleteFilesystemSnapshotPolicyRequest: requests.DeleteFilesystemSnapshotPolicyRequest): Promise<responses.DeleteFilesystemSnapshotPolicyResponse>;
|
|
356
360
|
/**
|
|
@@ -361,7 +365,7 @@ export declare class FileStorageClient {
|
|
|
361
365
|
* @param DeleteMountTargetRequest
|
|
362
366
|
* @return DeleteMountTargetResponse
|
|
363
367
|
* @throws OciError when an error occurs
|
|
364
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
368
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/DeleteMountTarget.ts.html |here} to see how to use DeleteMountTarget API.
|
|
365
369
|
*/
|
|
366
370
|
deleteMountTarget(deleteMountTargetRequest: requests.DeleteMountTargetRequest): Promise<responses.DeleteMountTargetResponse>;
|
|
367
371
|
/**
|
|
@@ -371,7 +375,7 @@ export declare class FileStorageClient {
|
|
|
371
375
|
* @param DeleteOutboundConnectorRequest
|
|
372
376
|
* @return DeleteOutboundConnectorResponse
|
|
373
377
|
* @throws OciError when an error occurs
|
|
374
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
378
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/DeleteOutboundConnector.ts.html |here} to see how to use DeleteOutboundConnector API.
|
|
375
379
|
*/
|
|
376
380
|
deleteOutboundConnector(deleteOutboundConnectorRequest: requests.DeleteOutboundConnectorRequest): Promise<responses.DeleteOutboundConnectorResponse>;
|
|
377
381
|
/**
|
|
@@ -381,7 +385,7 @@ export declare class FileStorageClient {
|
|
|
381
385
|
* @param DeleteReplicationRequest
|
|
382
386
|
* @return DeleteReplicationResponse
|
|
383
387
|
* @throws OciError when an error occurs
|
|
384
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
388
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/DeleteReplication.ts.html |here} to see how to use DeleteReplication API.
|
|
385
389
|
*/
|
|
386
390
|
deleteReplication(deleteReplicationRequest: requests.DeleteReplicationRequest): Promise<responses.DeleteReplicationResponse>;
|
|
387
391
|
/**
|
|
@@ -394,7 +398,7 @@ export declare class FileStorageClient {
|
|
|
394
398
|
* @param DeleteReplicationTargetRequest
|
|
395
399
|
* @return DeleteReplicationTargetResponse
|
|
396
400
|
* @throws OciError when an error occurs
|
|
397
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
401
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/DeleteReplicationTarget.ts.html |here} to see how to use DeleteReplicationTarget API.
|
|
398
402
|
*/
|
|
399
403
|
deleteReplicationTarget(deleteReplicationTargetRequest: requests.DeleteReplicationTargetRequest): Promise<responses.DeleteReplicationTargetResponse>;
|
|
400
404
|
/**
|
|
@@ -404,7 +408,7 @@ export declare class FileStorageClient {
|
|
|
404
408
|
* @param DeleteSnapshotRequest
|
|
405
409
|
* @return DeleteSnapshotResponse
|
|
406
410
|
* @throws OciError when an error occurs
|
|
407
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
411
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/DeleteSnapshot.ts.html |here} to see how to use DeleteSnapshot API.
|
|
408
412
|
*/
|
|
409
413
|
deleteSnapshot(deleteSnapshotRequest: requests.DeleteSnapshotRequest): Promise<responses.DeleteSnapshotResponse>;
|
|
410
414
|
/**
|
|
@@ -414,7 +418,7 @@ export declare class FileStorageClient {
|
|
|
414
418
|
* @param EstimateReplicationRequest
|
|
415
419
|
* @return EstimateReplicationResponse
|
|
416
420
|
* @throws OciError when an error occurs
|
|
417
|
-
* @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.84.2/filestorage/EstimateReplication.ts.html |here} to see how to use EstimateReplication API.
|
|
418
422
|
*/
|
|
419
423
|
estimateReplication(estimateReplicationRequest: requests.EstimateReplicationRequest): Promise<responses.EstimateReplicationResponse>;
|
|
420
424
|
/**
|
|
@@ -423,7 +427,7 @@ export declare class FileStorageClient {
|
|
|
423
427
|
* @param GetExportRequest
|
|
424
428
|
* @return GetExportResponse
|
|
425
429
|
* @throws OciError when an error occurs
|
|
426
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
430
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/GetExport.ts.html |here} to see how to use GetExport API.
|
|
427
431
|
*/
|
|
428
432
|
getExport(getExportRequest: requests.GetExportRequest): Promise<responses.GetExportResponse>;
|
|
429
433
|
/**
|
|
@@ -432,7 +436,7 @@ export declare class FileStorageClient {
|
|
|
432
436
|
* @param GetExportSetRequest
|
|
433
437
|
* @return GetExportSetResponse
|
|
434
438
|
* @throws OciError when an error occurs
|
|
435
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
439
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/GetExportSet.ts.html |here} to see how to use GetExportSet API.
|
|
436
440
|
*/
|
|
437
441
|
getExportSet(getExportSetRequest: requests.GetExportSetRequest): Promise<responses.GetExportSetResponse>;
|
|
438
442
|
/**
|
|
@@ -441,7 +445,7 @@ export declare class FileStorageClient {
|
|
|
441
445
|
* @param GetFileSystemRequest
|
|
442
446
|
* @return GetFileSystemResponse
|
|
443
447
|
* @throws OciError when an error occurs
|
|
444
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
448
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/GetFileSystem.ts.html |here} to see how to use GetFileSystem API.
|
|
445
449
|
*/
|
|
446
450
|
getFileSystem(getFileSystemRequest: requests.GetFileSystemRequest): Promise<responses.GetFileSystemResponse>;
|
|
447
451
|
/**
|
|
@@ -450,7 +454,7 @@ export declare class FileStorageClient {
|
|
|
450
454
|
* @param GetFilesystemSnapshotPolicyRequest
|
|
451
455
|
* @return GetFilesystemSnapshotPolicyResponse
|
|
452
456
|
* @throws OciError when an error occurs
|
|
453
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
457
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/GetFilesystemSnapshotPolicy.ts.html |here} to see how to use GetFilesystemSnapshotPolicy API.
|
|
454
458
|
*/
|
|
455
459
|
getFilesystemSnapshotPolicy(getFilesystemSnapshotPolicyRequest: requests.GetFilesystemSnapshotPolicyRequest): Promise<responses.GetFilesystemSnapshotPolicyResponse>;
|
|
456
460
|
/**
|
|
@@ -459,7 +463,7 @@ export declare class FileStorageClient {
|
|
|
459
463
|
* @param GetMountTargetRequest
|
|
460
464
|
* @return GetMountTargetResponse
|
|
461
465
|
* @throws OciError when an error occurs
|
|
462
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
466
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/GetMountTarget.ts.html |here} to see how to use GetMountTarget API.
|
|
463
467
|
*/
|
|
464
468
|
getMountTarget(getMountTargetRequest: requests.GetMountTargetRequest): Promise<responses.GetMountTargetResponse>;
|
|
465
469
|
/**
|
|
@@ -468,7 +472,7 @@ export declare class FileStorageClient {
|
|
|
468
472
|
* @param GetOutboundConnectorRequest
|
|
469
473
|
* @return GetOutboundConnectorResponse
|
|
470
474
|
* @throws OciError when an error occurs
|
|
471
|
-
* @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.84.2/filestorage/GetOutboundConnector.ts.html |here} to see how to use GetOutboundConnector API.
|
|
472
476
|
*/
|
|
473
477
|
getOutboundConnector(getOutboundConnectorRequest: requests.GetOutboundConnectorRequest): Promise<responses.GetOutboundConnectorResponse>;
|
|
474
478
|
/**
|
|
@@ -477,7 +481,7 @@ export declare class FileStorageClient {
|
|
|
477
481
|
* @param GetReplicationRequest
|
|
478
482
|
* @return GetReplicationResponse
|
|
479
483
|
* @throws OciError when an error occurs
|
|
480
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
484
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/GetReplication.ts.html |here} to see how to use GetReplication API.
|
|
481
485
|
*/
|
|
482
486
|
getReplication(getReplicationRequest: requests.GetReplicationRequest): Promise<responses.GetReplicationResponse>;
|
|
483
487
|
/**
|
|
@@ -486,7 +490,7 @@ export declare class FileStorageClient {
|
|
|
486
490
|
* @param GetReplicationTargetRequest
|
|
487
491
|
* @return GetReplicationTargetResponse
|
|
488
492
|
* @throws OciError when an error occurs
|
|
489
|
-
* @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.84.2/filestorage/GetReplicationTarget.ts.html |here} to see how to use GetReplicationTarget API.
|
|
490
494
|
*/
|
|
491
495
|
getReplicationTarget(getReplicationTargetRequest: requests.GetReplicationTargetRequest): Promise<responses.GetReplicationTargetResponse>;
|
|
492
496
|
/**
|
|
@@ -495,7 +499,7 @@ export declare class FileStorageClient {
|
|
|
495
499
|
* @param GetSnapshotRequest
|
|
496
500
|
* @return GetSnapshotResponse
|
|
497
501
|
* @throws OciError when an error occurs
|
|
498
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
502
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/GetSnapshot.ts.html |here} to see how to use GetSnapshot API.
|
|
499
503
|
*/
|
|
500
504
|
getSnapshot(getSnapshotRequest: requests.GetSnapshotRequest): Promise<responses.GetSnapshotResponse>;
|
|
501
505
|
/**
|
|
@@ -505,7 +509,7 @@ export declare class FileStorageClient {
|
|
|
505
509
|
* @param ListExportSetsRequest
|
|
506
510
|
* @return ListExportSetsResponse
|
|
507
511
|
* @throws OciError when an error occurs
|
|
508
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
512
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/ListExportSets.ts.html |here} to see how to use ListExportSets API.
|
|
509
513
|
*/
|
|
510
514
|
listExportSets(listExportSetsRequest: requests.ListExportSetsRequest): Promise<responses.ListExportSetsResponse>;
|
|
511
515
|
/**
|
|
@@ -549,7 +553,7 @@ export declare class FileStorageClient {
|
|
|
549
553
|
* @param ListExportsRequest
|
|
550
554
|
* @return ListExportsResponse
|
|
551
555
|
* @throws OciError when an error occurs
|
|
552
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
556
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/ListExports.ts.html |here} to see how to use ListExports API.
|
|
553
557
|
*/
|
|
554
558
|
listExports(listExportsRequest: requests.ListExportsRequest): Promise<responses.ListExportsResponse>;
|
|
555
559
|
/**
|
|
@@ -592,7 +596,7 @@ export declare class FileStorageClient {
|
|
|
592
596
|
* @param ListFileSystemsRequest
|
|
593
597
|
* @return ListFileSystemsResponse
|
|
594
598
|
* @throws OciError when an error occurs
|
|
595
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
599
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/ListFileSystems.ts.html |here} to see how to use ListFileSystems API.
|
|
596
600
|
*/
|
|
597
601
|
listFileSystems(listFileSystemsRequest: requests.ListFileSystemsRequest): Promise<responses.ListFileSystemsResponse>;
|
|
598
602
|
/**
|
|
@@ -634,7 +638,7 @@ export declare class FileStorageClient {
|
|
|
634
638
|
* @param ListFilesystemSnapshotPoliciesRequest
|
|
635
639
|
* @return ListFilesystemSnapshotPoliciesResponse
|
|
636
640
|
* @throws OciError when an error occurs
|
|
637
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
641
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/ListFilesystemSnapshotPolicies.ts.html |here} to see how to use ListFilesystemSnapshotPolicies API.
|
|
638
642
|
*/
|
|
639
643
|
listFilesystemSnapshotPolicies(listFilesystemSnapshotPoliciesRequest: requests.ListFilesystemSnapshotPoliciesRequest): Promise<responses.ListFilesystemSnapshotPoliciesResponse>;
|
|
640
644
|
/**
|
|
@@ -676,7 +680,7 @@ export declare class FileStorageClient {
|
|
|
676
680
|
* @param ListMountTargetsRequest
|
|
677
681
|
* @return ListMountTargetsResponse
|
|
678
682
|
* @throws OciError when an error occurs
|
|
679
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
683
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/ListMountTargets.ts.html |here} to see how to use ListMountTargets API.
|
|
680
684
|
*/
|
|
681
685
|
listMountTargets(listMountTargetsRequest: requests.ListMountTargetsRequest): Promise<responses.ListMountTargetsResponse>;
|
|
682
686
|
/**
|
|
@@ -718,7 +722,7 @@ export declare class FileStorageClient {
|
|
|
718
722
|
* @param ListOutboundConnectorsRequest
|
|
719
723
|
* @return ListOutboundConnectorsResponse
|
|
720
724
|
* @throws OciError when an error occurs
|
|
721
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
725
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/ListOutboundConnectors.ts.html |here} to see how to use ListOutboundConnectors API.
|
|
722
726
|
*/
|
|
723
727
|
listOutboundConnectors(listOutboundConnectorsRequest: requests.ListOutboundConnectorsRequest): Promise<responses.ListOutboundConnectorsResponse>;
|
|
724
728
|
/**
|
|
@@ -760,7 +764,7 @@ export declare class FileStorageClient {
|
|
|
760
764
|
* @param ListReplicationTargetsRequest
|
|
761
765
|
* @return ListReplicationTargetsResponse
|
|
762
766
|
* @throws OciError when an error occurs
|
|
763
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
767
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/ListReplicationTargets.ts.html |here} to see how to use ListReplicationTargets API.
|
|
764
768
|
*/
|
|
765
769
|
listReplicationTargets(listReplicationTargetsRequest: requests.ListReplicationTargetsRequest): Promise<responses.ListReplicationTargetsResponse>;
|
|
766
770
|
/**
|
|
@@ -802,7 +806,7 @@ export declare class FileStorageClient {
|
|
|
802
806
|
* @param ListReplicationsRequest
|
|
803
807
|
* @return ListReplicationsResponse
|
|
804
808
|
* @throws OciError when an error occurs
|
|
805
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
809
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/ListReplications.ts.html |here} to see how to use ListReplications API.
|
|
806
810
|
*/
|
|
807
811
|
listReplications(listReplicationsRequest: requests.ListReplicationsRequest): Promise<responses.ListReplicationsResponse>;
|
|
808
812
|
/**
|
|
@@ -850,7 +854,7 @@ export declare class FileStorageClient {
|
|
|
850
854
|
* @param ListSnapshotsRequest
|
|
851
855
|
* @return ListSnapshotsResponse
|
|
852
856
|
* @throws OciError when an error occurs
|
|
853
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
857
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/ListSnapshots.ts.html |here} to see how to use ListSnapshots API.
|
|
854
858
|
*/
|
|
855
859
|
listSnapshots(listSnapshotsRequest: requests.ListSnapshotsRequest): Promise<responses.ListSnapshotsResponse>;
|
|
856
860
|
/**
|
|
@@ -897,7 +901,7 @@ export declare class FileStorageClient {
|
|
|
897
901
|
* @param PauseFilesystemSnapshotPolicyRequest
|
|
898
902
|
* @return PauseFilesystemSnapshotPolicyResponse
|
|
899
903
|
* @throws OciError when an error occurs
|
|
900
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
904
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/PauseFilesystemSnapshotPolicy.ts.html |here} to see how to use PauseFilesystemSnapshotPolicy API.
|
|
901
905
|
*/
|
|
902
906
|
pauseFilesystemSnapshotPolicy(pauseFilesystemSnapshotPolicyRequest: requests.PauseFilesystemSnapshotPolicyRequest): Promise<responses.PauseFilesystemSnapshotPolicyResponse>;
|
|
903
907
|
/**
|
|
@@ -911,7 +915,7 @@ export declare class FileStorageClient {
|
|
|
911
915
|
* @param UnpauseFilesystemSnapshotPolicyRequest
|
|
912
916
|
* @return UnpauseFilesystemSnapshotPolicyResponse
|
|
913
917
|
* @throws OciError when an error occurs
|
|
914
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
918
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/UnpauseFilesystemSnapshotPolicy.ts.html |here} to see how to use UnpauseFilesystemSnapshotPolicy API.
|
|
915
919
|
*/
|
|
916
920
|
unpauseFilesystemSnapshotPolicy(unpauseFilesystemSnapshotPolicyRequest: requests.UnpauseFilesystemSnapshotPolicyRequest): Promise<responses.UnpauseFilesystemSnapshotPolicyResponse>;
|
|
917
921
|
/**
|
|
@@ -920,7 +924,7 @@ export declare class FileStorageClient {
|
|
|
920
924
|
* @param UpdateExportRequest
|
|
921
925
|
* @return UpdateExportResponse
|
|
922
926
|
* @throws OciError when an error occurs
|
|
923
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
927
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/UpdateExport.ts.html |here} to see how to use UpdateExport API.
|
|
924
928
|
*/
|
|
925
929
|
updateExport(updateExportRequest: requests.UpdateExportRequest): Promise<responses.UpdateExportResponse>;
|
|
926
930
|
/**
|
|
@@ -929,7 +933,7 @@ export declare class FileStorageClient {
|
|
|
929
933
|
* @param UpdateExportSetRequest
|
|
930
934
|
* @return UpdateExportSetResponse
|
|
931
935
|
* @throws OciError when an error occurs
|
|
932
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
936
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/UpdateExportSet.ts.html |here} to see how to use UpdateExportSet API.
|
|
933
937
|
*/
|
|
934
938
|
updateExportSet(updateExportSetRequest: requests.UpdateExportSetRequest): Promise<responses.UpdateExportSetResponse>;
|
|
935
939
|
/**
|
|
@@ -940,7 +944,7 @@ export declare class FileStorageClient {
|
|
|
940
944
|
* @param UpdateFileSystemRequest
|
|
941
945
|
* @return UpdateFileSystemResponse
|
|
942
946
|
* @throws OciError when an error occurs
|
|
943
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
947
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/UpdateFileSystem.ts.html |here} to see how to use UpdateFileSystem API.
|
|
944
948
|
*/
|
|
945
949
|
updateFileSystem(updateFileSystemRequest: requests.UpdateFileSystemRequest): Promise<responses.UpdateFileSystemResponse>;
|
|
946
950
|
/**
|
|
@@ -949,7 +953,7 @@ export declare class FileStorageClient {
|
|
|
949
953
|
* @param UpdateFilesystemSnapshotPolicyRequest
|
|
950
954
|
* @return UpdateFilesystemSnapshotPolicyResponse
|
|
951
955
|
* @throws OciError when an error occurs
|
|
952
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
956
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/UpdateFilesystemSnapshotPolicy.ts.html |here} to see how to use UpdateFilesystemSnapshotPolicy API.
|
|
953
957
|
*/
|
|
954
958
|
updateFilesystemSnapshotPolicy(updateFilesystemSnapshotPolicyRequest: requests.UpdateFilesystemSnapshotPolicyRequest): Promise<responses.UpdateFilesystemSnapshotPolicyResponse>;
|
|
955
959
|
/**
|
|
@@ -958,7 +962,7 @@ export declare class FileStorageClient {
|
|
|
958
962
|
* @param UpdateMountTargetRequest
|
|
959
963
|
* @return UpdateMountTargetResponse
|
|
960
964
|
* @throws OciError when an error occurs
|
|
961
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
965
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/UpdateMountTarget.ts.html |here} to see how to use UpdateMountTarget API.
|
|
962
966
|
*/
|
|
963
967
|
updateMountTarget(updateMountTargetRequest: requests.UpdateMountTargetRequest): Promise<responses.UpdateMountTargetResponse>;
|
|
964
968
|
/**
|
|
@@ -967,7 +971,7 @@ export declare class FileStorageClient {
|
|
|
967
971
|
* @param UpdateOutboundConnectorRequest
|
|
968
972
|
* @return UpdateOutboundConnectorResponse
|
|
969
973
|
* @throws OciError when an error occurs
|
|
970
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
974
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/UpdateOutboundConnector.ts.html |here} to see how to use UpdateOutboundConnector API.
|
|
971
975
|
*/
|
|
972
976
|
updateOutboundConnector(updateOutboundConnectorRequest: requests.UpdateOutboundConnectorRequest): Promise<responses.UpdateOutboundConnectorResponse>;
|
|
973
977
|
/**
|
|
@@ -977,7 +981,7 @@ export declare class FileStorageClient {
|
|
|
977
981
|
* @param UpdateReplicationRequest
|
|
978
982
|
* @return UpdateReplicationResponse
|
|
979
983
|
* @throws OciError when an error occurs
|
|
980
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
984
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/UpdateReplication.ts.html |here} to see how to use UpdateReplication API.
|
|
981
985
|
*/
|
|
982
986
|
updateReplication(updateReplicationRequest: requests.UpdateReplicationRequest): Promise<responses.UpdateReplicationResponse>;
|
|
983
987
|
/**
|
|
@@ -986,7 +990,7 @@ export declare class FileStorageClient {
|
|
|
986
990
|
* @param UpdateSnapshotRequest
|
|
987
991
|
* @return UpdateSnapshotResponse
|
|
988
992
|
* @throws OciError when an error occurs
|
|
989
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
993
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/UpdateSnapshot.ts.html |here} to see how to use UpdateSnapshot API.
|
|
990
994
|
*/
|
|
991
995
|
updateSnapshot(updateSnapshotRequest: requests.UpdateSnapshotRequest): Promise<responses.UpdateSnapshotResponse>;
|
|
992
996
|
/**
|
|
@@ -998,7 +1002,7 @@ export declare class FileStorageClient {
|
|
|
998
1002
|
* @param ValidateKeyTabsRequest
|
|
999
1003
|
* @return ValidateKeyTabsResponse
|
|
1000
1004
|
* @throws OciError when an error occurs
|
|
1001
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1005
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.84.2/filestorage/ValidateKeyTabs.ts.html |here} to see how to use ValidateKeyTabs API.
|
|
1002
1006
|
*/
|
|
1003
1007
|
validateKeyTabs(validateKeyTabsRequest: requests.ValidateKeyTabsRequest): Promise<responses.ValidateKeyTabsResponse>;
|
|
1004
1008
|
}
|