oci-filestorage 2.77.0 → 2.77.1
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 +57 -51
- package/lib/client.js +59 -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
|
@@ -17,6 +17,7 @@ import * as requests from "./request";
|
|
|
17
17
|
import * as model from "./model";
|
|
18
18
|
import * as responses from "./response";
|
|
19
19
|
import { FileStorageWaiter } from "./filestorage-waiter";
|
|
20
|
+
declare const Breaker: any;
|
|
20
21
|
export declare enum FileStorageApiKeys {
|
|
21
22
|
}
|
|
22
23
|
/**
|
|
@@ -30,7 +31,7 @@ export declare class FileStorageClient {
|
|
|
30
31
|
protected "_defaultHeaders": any;
|
|
31
32
|
protected "_waiters": FileStorageWaiter;
|
|
32
33
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
33
|
-
protected _circuitBreaker: null;
|
|
34
|
+
protected _circuitBreaker: typeof Breaker | null;
|
|
34
35
|
protected _httpOptions: any;
|
|
35
36
|
protected _bodyDuplexMode: any;
|
|
36
37
|
targetService: string;
|
|
@@ -83,6 +84,10 @@ export declare class FileStorageClient {
|
|
|
83
84
|
* @return The service waiters.
|
|
84
85
|
*/
|
|
85
86
|
getWaiters(): FileStorageWaiter;
|
|
87
|
+
/**
|
|
88
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
89
|
+
*/
|
|
90
|
+
shutdownCircuitBreaker(): void;
|
|
86
91
|
/**
|
|
87
92
|
* 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)
|
|
88
93
|
*
|
|
@@ -90,7 +95,7 @@ export declare class FileStorageClient {
|
|
|
90
95
|
* @param ChangeFileSystemCompartmentRequest
|
|
91
96
|
* @return ChangeFileSystemCompartmentResponse
|
|
92
97
|
* @throws OciError when an error occurs
|
|
93
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
98
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/ChangeFileSystemCompartment.ts.html |here} to see how to use ChangeFileSystemCompartment API.
|
|
94
99
|
*/
|
|
95
100
|
changeFileSystemCompartment(changeFileSystemCompartmentRequest: requests.ChangeFileSystemCompartmentRequest): Promise<responses.ChangeFileSystemCompartmentResponse>;
|
|
96
101
|
/**
|
|
@@ -100,7 +105,7 @@ export declare class FileStorageClient {
|
|
|
100
105
|
* @param ChangeFilesystemSnapshotPolicyCompartmentRequest
|
|
101
106
|
* @return ChangeFilesystemSnapshotPolicyCompartmentResponse
|
|
102
107
|
* @throws OciError when an error occurs
|
|
103
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
108
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/ChangeFilesystemSnapshotPolicyCompartment.ts.html |here} to see how to use ChangeFilesystemSnapshotPolicyCompartment API.
|
|
104
109
|
*/
|
|
105
110
|
changeFilesystemSnapshotPolicyCompartment(changeFilesystemSnapshotPolicyCompartmentRequest: requests.ChangeFilesystemSnapshotPolicyCompartmentRequest): Promise<responses.ChangeFilesystemSnapshotPolicyCompartmentResponse>;
|
|
106
111
|
/**
|
|
@@ -110,7 +115,7 @@ export declare class FileStorageClient {
|
|
|
110
115
|
* @param ChangeMountTargetCompartmentRequest
|
|
111
116
|
* @return ChangeMountTargetCompartmentResponse
|
|
112
117
|
* @throws OciError when an error occurs
|
|
113
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
118
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/ChangeMountTargetCompartment.ts.html |here} to see how to use ChangeMountTargetCompartment API.
|
|
114
119
|
*/
|
|
115
120
|
changeMountTargetCompartment(changeMountTargetCompartmentRequest: requests.ChangeMountTargetCompartmentRequest): Promise<responses.ChangeMountTargetCompartmentResponse>;
|
|
116
121
|
/**
|
|
@@ -122,7 +127,7 @@ export declare class FileStorageClient {
|
|
|
122
127
|
* @param ChangeOutboundConnectorCompartmentRequest
|
|
123
128
|
* @return ChangeOutboundConnectorCompartmentResponse
|
|
124
129
|
* @throws OciError when an error occurs
|
|
125
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
130
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/ChangeOutboundConnectorCompartment.ts.html |here} to see how to use ChangeOutboundConnectorCompartment API.
|
|
126
131
|
*/
|
|
127
132
|
changeOutboundConnectorCompartment(changeOutboundConnectorCompartmentRequest: requests.ChangeOutboundConnectorCompartmentRequest): Promise<responses.ChangeOutboundConnectorCompartmentResponse>;
|
|
128
133
|
/**
|
|
@@ -133,7 +138,7 @@ export declare class FileStorageClient {
|
|
|
133
138
|
* @param ChangeReplicationCompartmentRequest
|
|
134
139
|
* @return ChangeReplicationCompartmentResponse
|
|
135
140
|
* @throws OciError when an error occurs
|
|
136
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
141
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/ChangeReplicationCompartment.ts.html |here} to see how to use ChangeReplicationCompartment API.
|
|
137
142
|
*/
|
|
138
143
|
changeReplicationCompartment(changeReplicationCompartmentRequest: requests.ChangeReplicationCompartmentRequest): Promise<responses.ChangeReplicationCompartmentResponse>;
|
|
139
144
|
/**
|
|
@@ -144,7 +149,7 @@ export declare class FileStorageClient {
|
|
|
144
149
|
* @param CreateExportRequest
|
|
145
150
|
* @return CreateExportResponse
|
|
146
151
|
* @throws OciError when an error occurs
|
|
147
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
152
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/CreateExport.ts.html |here} to see how to use CreateExport API.
|
|
148
153
|
*/
|
|
149
154
|
createExport(createExportRequest: requests.CreateExportRequest): Promise<responses.CreateExportResponse>;
|
|
150
155
|
/**
|
|
@@ -182,7 +187,7 @@ export declare class FileStorageClient {
|
|
|
182
187
|
* @param CreateFileSystemRequest
|
|
183
188
|
* @return CreateFileSystemResponse
|
|
184
189
|
* @throws OciError when an error occurs
|
|
185
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
190
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/CreateFileSystem.ts.html |here} to see how to use CreateFileSystem API.
|
|
186
191
|
*/
|
|
187
192
|
createFileSystem(createFileSystemRequest: requests.CreateFileSystemRequest): Promise<responses.CreateFileSystemResponse>;
|
|
188
193
|
/**
|
|
@@ -196,7 +201,7 @@ export declare class FileStorageClient {
|
|
|
196
201
|
* @param CreateFilesystemSnapshotPolicyRequest
|
|
197
202
|
* @return CreateFilesystemSnapshotPolicyResponse
|
|
198
203
|
* @throws OciError when an error occurs
|
|
199
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
204
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/CreateFilesystemSnapshotPolicy.ts.html |here} to see how to use CreateFilesystemSnapshotPolicy API.
|
|
200
205
|
*/
|
|
201
206
|
createFilesystemSnapshotPolicy(createFilesystemSnapshotPolicyRequest: requests.CreateFilesystemSnapshotPolicyRequest): Promise<responses.CreateFilesystemSnapshotPolicyResponse>;
|
|
202
207
|
/**
|
|
@@ -237,7 +242,7 @@ export declare class FileStorageClient {
|
|
|
237
242
|
* @param CreateMountTargetRequest
|
|
238
243
|
* @return CreateMountTargetResponse
|
|
239
244
|
* @throws OciError when an error occurs
|
|
240
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
245
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/CreateMountTarget.ts.html |here} to see how to use CreateMountTarget API.
|
|
241
246
|
*/
|
|
242
247
|
createMountTarget(createMountTargetRequest: requests.CreateMountTargetRequest): Promise<responses.CreateMountTargetResponse>;
|
|
243
248
|
/**
|
|
@@ -266,7 +271,7 @@ export declare class FileStorageClient {
|
|
|
266
271
|
* @param CreateOutboundConnectorRequest
|
|
267
272
|
* @return CreateOutboundConnectorResponse
|
|
268
273
|
* @throws OciError when an error occurs
|
|
269
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
274
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/CreateOutboundConnector.ts.html |here} to see how to use CreateOutboundConnector API.
|
|
270
275
|
*/
|
|
271
276
|
createOutboundConnector(createOutboundConnectorRequest: requests.CreateOutboundConnectorRequest): Promise<responses.CreateOutboundConnectorResponse>;
|
|
272
277
|
/**
|
|
@@ -302,7 +307,7 @@ export declare class FileStorageClient {
|
|
|
302
307
|
* @param CreateReplicationRequest
|
|
303
308
|
* @return CreateReplicationResponse
|
|
304
309
|
* @throws OciError when an error occurs
|
|
305
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
310
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/CreateReplication.ts.html |here} to see how to use CreateReplication API.
|
|
306
311
|
*/
|
|
307
312
|
createReplication(createReplicationRequest: requests.CreateReplicationRequest): Promise<responses.CreateReplicationResponse>;
|
|
308
313
|
/**
|
|
@@ -313,7 +318,7 @@ export declare class FileStorageClient {
|
|
|
313
318
|
* @param CreateSnapshotRequest
|
|
314
319
|
* @return CreateSnapshotResponse
|
|
315
320
|
* @throws OciError when an error occurs
|
|
316
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
321
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/CreateSnapshot.ts.html |here} to see how to use CreateSnapshot API.
|
|
317
322
|
*/
|
|
318
323
|
createSnapshot(createSnapshotRequest: requests.CreateSnapshotRequest): Promise<responses.CreateSnapshotResponse>;
|
|
319
324
|
/**
|
|
@@ -323,7 +328,7 @@ export declare class FileStorageClient {
|
|
|
323
328
|
* @param DeleteExportRequest
|
|
324
329
|
* @return DeleteExportResponse
|
|
325
330
|
* @throws OciError when an error occurs
|
|
326
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
331
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/DeleteExport.ts.html |here} to see how to use DeleteExport API.
|
|
327
332
|
*/
|
|
328
333
|
deleteExport(deleteExportRequest: requests.DeleteExportRequest): Promise<responses.DeleteExportResponse>;
|
|
329
334
|
/**
|
|
@@ -335,7 +340,7 @@ export declare class FileStorageClient {
|
|
|
335
340
|
* @param DeleteFileSystemRequest
|
|
336
341
|
* @return DeleteFileSystemResponse
|
|
337
342
|
* @throws OciError when an error occurs
|
|
338
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
343
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/DeleteFileSystem.ts.html |here} to see how to use DeleteFileSystem API.
|
|
339
344
|
*/
|
|
340
345
|
deleteFileSystem(deleteFileSystemRequest: requests.DeleteFileSystemRequest): Promise<responses.DeleteFileSystemResponse>;
|
|
341
346
|
/**
|
|
@@ -345,7 +350,7 @@ export declare class FileStorageClient {
|
|
|
345
350
|
* @param DeleteFilesystemSnapshotPolicyRequest
|
|
346
351
|
* @return DeleteFilesystemSnapshotPolicyResponse
|
|
347
352
|
* @throws OciError when an error occurs
|
|
348
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
353
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/DeleteFilesystemSnapshotPolicy.ts.html |here} to see how to use DeleteFilesystemSnapshotPolicy API.
|
|
349
354
|
*/
|
|
350
355
|
deleteFilesystemSnapshotPolicy(deleteFilesystemSnapshotPolicyRequest: requests.DeleteFilesystemSnapshotPolicyRequest): Promise<responses.DeleteFilesystemSnapshotPolicyResponse>;
|
|
351
356
|
/**
|
|
@@ -356,7 +361,7 @@ export declare class FileStorageClient {
|
|
|
356
361
|
* @param DeleteMountTargetRequest
|
|
357
362
|
* @return DeleteMountTargetResponse
|
|
358
363
|
* @throws OciError when an error occurs
|
|
359
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
364
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/DeleteMountTarget.ts.html |here} to see how to use DeleteMountTarget API.
|
|
360
365
|
*/
|
|
361
366
|
deleteMountTarget(deleteMountTargetRequest: requests.DeleteMountTargetRequest): Promise<responses.DeleteMountTargetResponse>;
|
|
362
367
|
/**
|
|
@@ -366,7 +371,7 @@ export declare class FileStorageClient {
|
|
|
366
371
|
* @param DeleteOutboundConnectorRequest
|
|
367
372
|
* @return DeleteOutboundConnectorResponse
|
|
368
373
|
* @throws OciError when an error occurs
|
|
369
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
374
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/DeleteOutboundConnector.ts.html |here} to see how to use DeleteOutboundConnector API.
|
|
370
375
|
*/
|
|
371
376
|
deleteOutboundConnector(deleteOutboundConnectorRequest: requests.DeleteOutboundConnectorRequest): Promise<responses.DeleteOutboundConnectorResponse>;
|
|
372
377
|
/**
|
|
@@ -376,7 +381,7 @@ export declare class FileStorageClient {
|
|
|
376
381
|
* @param DeleteReplicationRequest
|
|
377
382
|
* @return DeleteReplicationResponse
|
|
378
383
|
* @throws OciError when an error occurs
|
|
379
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
384
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/DeleteReplication.ts.html |here} to see how to use DeleteReplication API.
|
|
380
385
|
*/
|
|
381
386
|
deleteReplication(deleteReplicationRequest: requests.DeleteReplicationRequest): Promise<responses.DeleteReplicationResponse>;
|
|
382
387
|
/**
|
|
@@ -389,7 +394,7 @@ export declare class FileStorageClient {
|
|
|
389
394
|
* @param DeleteReplicationTargetRequest
|
|
390
395
|
* @return DeleteReplicationTargetResponse
|
|
391
396
|
* @throws OciError when an error occurs
|
|
392
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
397
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/DeleteReplicationTarget.ts.html |here} to see how to use DeleteReplicationTarget API.
|
|
393
398
|
*/
|
|
394
399
|
deleteReplicationTarget(deleteReplicationTargetRequest: requests.DeleteReplicationTargetRequest): Promise<responses.DeleteReplicationTargetResponse>;
|
|
395
400
|
/**
|
|
@@ -399,7 +404,7 @@ export declare class FileStorageClient {
|
|
|
399
404
|
* @param DeleteSnapshotRequest
|
|
400
405
|
* @return DeleteSnapshotResponse
|
|
401
406
|
* @throws OciError when an error occurs
|
|
402
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
407
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/DeleteSnapshot.ts.html |here} to see how to use DeleteSnapshot API.
|
|
403
408
|
*/
|
|
404
409
|
deleteSnapshot(deleteSnapshotRequest: requests.DeleteSnapshotRequest): Promise<responses.DeleteSnapshotResponse>;
|
|
405
410
|
/**
|
|
@@ -409,7 +414,7 @@ export declare class FileStorageClient {
|
|
|
409
414
|
* @param EstimateReplicationRequest
|
|
410
415
|
* @return EstimateReplicationResponse
|
|
411
416
|
* @throws OciError when an error occurs
|
|
412
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
417
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/EstimateReplication.ts.html |here} to see how to use EstimateReplication API.
|
|
413
418
|
*/
|
|
414
419
|
estimateReplication(estimateReplicationRequest: requests.EstimateReplicationRequest): Promise<responses.EstimateReplicationResponse>;
|
|
415
420
|
/**
|
|
@@ -418,7 +423,7 @@ export declare class FileStorageClient {
|
|
|
418
423
|
* @param GetExportRequest
|
|
419
424
|
* @return GetExportResponse
|
|
420
425
|
* @throws OciError when an error occurs
|
|
421
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
426
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/GetExport.ts.html |here} to see how to use GetExport API.
|
|
422
427
|
*/
|
|
423
428
|
getExport(getExportRequest: requests.GetExportRequest): Promise<responses.GetExportResponse>;
|
|
424
429
|
/**
|
|
@@ -427,7 +432,7 @@ export declare class FileStorageClient {
|
|
|
427
432
|
* @param GetExportSetRequest
|
|
428
433
|
* @return GetExportSetResponse
|
|
429
434
|
* @throws OciError when an error occurs
|
|
430
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
435
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/GetExportSet.ts.html |here} to see how to use GetExportSet API.
|
|
431
436
|
*/
|
|
432
437
|
getExportSet(getExportSetRequest: requests.GetExportSetRequest): Promise<responses.GetExportSetResponse>;
|
|
433
438
|
/**
|
|
@@ -436,7 +441,7 @@ export declare class FileStorageClient {
|
|
|
436
441
|
* @param GetFileSystemRequest
|
|
437
442
|
* @return GetFileSystemResponse
|
|
438
443
|
* @throws OciError when an error occurs
|
|
439
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
444
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/GetFileSystem.ts.html |here} to see how to use GetFileSystem API.
|
|
440
445
|
*/
|
|
441
446
|
getFileSystem(getFileSystemRequest: requests.GetFileSystemRequest): Promise<responses.GetFileSystemResponse>;
|
|
442
447
|
/**
|
|
@@ -445,7 +450,7 @@ export declare class FileStorageClient {
|
|
|
445
450
|
* @param GetFilesystemSnapshotPolicyRequest
|
|
446
451
|
* @return GetFilesystemSnapshotPolicyResponse
|
|
447
452
|
* @throws OciError when an error occurs
|
|
448
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
453
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/GetFilesystemSnapshotPolicy.ts.html |here} to see how to use GetFilesystemSnapshotPolicy API.
|
|
449
454
|
*/
|
|
450
455
|
getFilesystemSnapshotPolicy(getFilesystemSnapshotPolicyRequest: requests.GetFilesystemSnapshotPolicyRequest): Promise<responses.GetFilesystemSnapshotPolicyResponse>;
|
|
451
456
|
/**
|
|
@@ -454,7 +459,7 @@ export declare class FileStorageClient {
|
|
|
454
459
|
* @param GetMountTargetRequest
|
|
455
460
|
* @return GetMountTargetResponse
|
|
456
461
|
* @throws OciError when an error occurs
|
|
457
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
462
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/GetMountTarget.ts.html |here} to see how to use GetMountTarget API.
|
|
458
463
|
*/
|
|
459
464
|
getMountTarget(getMountTargetRequest: requests.GetMountTargetRequest): Promise<responses.GetMountTargetResponse>;
|
|
460
465
|
/**
|
|
@@ -463,7 +468,7 @@ export declare class FileStorageClient {
|
|
|
463
468
|
* @param GetOutboundConnectorRequest
|
|
464
469
|
* @return GetOutboundConnectorResponse
|
|
465
470
|
* @throws OciError when an error occurs
|
|
466
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
471
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/GetOutboundConnector.ts.html |here} to see how to use GetOutboundConnector API.
|
|
467
472
|
*/
|
|
468
473
|
getOutboundConnector(getOutboundConnectorRequest: requests.GetOutboundConnectorRequest): Promise<responses.GetOutboundConnectorResponse>;
|
|
469
474
|
/**
|
|
@@ -472,7 +477,7 @@ export declare class FileStorageClient {
|
|
|
472
477
|
* @param GetReplicationRequest
|
|
473
478
|
* @return GetReplicationResponse
|
|
474
479
|
* @throws OciError when an error occurs
|
|
475
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
480
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/GetReplication.ts.html |here} to see how to use GetReplication API.
|
|
476
481
|
*/
|
|
477
482
|
getReplication(getReplicationRequest: requests.GetReplicationRequest): Promise<responses.GetReplicationResponse>;
|
|
478
483
|
/**
|
|
@@ -481,7 +486,7 @@ export declare class FileStorageClient {
|
|
|
481
486
|
* @param GetReplicationTargetRequest
|
|
482
487
|
* @return GetReplicationTargetResponse
|
|
483
488
|
* @throws OciError when an error occurs
|
|
484
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
489
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/GetReplicationTarget.ts.html |here} to see how to use GetReplicationTarget API.
|
|
485
490
|
*/
|
|
486
491
|
getReplicationTarget(getReplicationTargetRequest: requests.GetReplicationTargetRequest): Promise<responses.GetReplicationTargetResponse>;
|
|
487
492
|
/**
|
|
@@ -490,7 +495,7 @@ export declare class FileStorageClient {
|
|
|
490
495
|
* @param GetSnapshotRequest
|
|
491
496
|
* @return GetSnapshotResponse
|
|
492
497
|
* @throws OciError when an error occurs
|
|
493
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
498
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/GetSnapshot.ts.html |here} to see how to use GetSnapshot API.
|
|
494
499
|
*/
|
|
495
500
|
getSnapshot(getSnapshotRequest: requests.GetSnapshotRequest): Promise<responses.GetSnapshotResponse>;
|
|
496
501
|
/**
|
|
@@ -500,7 +505,7 @@ export declare class FileStorageClient {
|
|
|
500
505
|
* @param ListExportSetsRequest
|
|
501
506
|
* @return ListExportSetsResponse
|
|
502
507
|
* @throws OciError when an error occurs
|
|
503
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
508
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/ListExportSets.ts.html |here} to see how to use ListExportSets API.
|
|
504
509
|
*/
|
|
505
510
|
listExportSets(listExportSetsRequest: requests.ListExportSetsRequest): Promise<responses.ListExportSetsResponse>;
|
|
506
511
|
/**
|
|
@@ -544,7 +549,7 @@ export declare class FileStorageClient {
|
|
|
544
549
|
* @param ListExportsRequest
|
|
545
550
|
* @return ListExportsResponse
|
|
546
551
|
* @throws OciError when an error occurs
|
|
547
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
552
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/ListExports.ts.html |here} to see how to use ListExports API.
|
|
548
553
|
*/
|
|
549
554
|
listExports(listExportsRequest: requests.ListExportsRequest): Promise<responses.ListExportsResponse>;
|
|
550
555
|
/**
|
|
@@ -587,7 +592,7 @@ export declare class FileStorageClient {
|
|
|
587
592
|
* @param ListFileSystemsRequest
|
|
588
593
|
* @return ListFileSystemsResponse
|
|
589
594
|
* @throws OciError when an error occurs
|
|
590
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
595
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/ListFileSystems.ts.html |here} to see how to use ListFileSystems API.
|
|
591
596
|
*/
|
|
592
597
|
listFileSystems(listFileSystemsRequest: requests.ListFileSystemsRequest): Promise<responses.ListFileSystemsResponse>;
|
|
593
598
|
/**
|
|
@@ -629,7 +634,7 @@ export declare class FileStorageClient {
|
|
|
629
634
|
* @param ListFilesystemSnapshotPoliciesRequest
|
|
630
635
|
* @return ListFilesystemSnapshotPoliciesResponse
|
|
631
636
|
* @throws OciError when an error occurs
|
|
632
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
637
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/ListFilesystemSnapshotPolicies.ts.html |here} to see how to use ListFilesystemSnapshotPolicies API.
|
|
633
638
|
*/
|
|
634
639
|
listFilesystemSnapshotPolicies(listFilesystemSnapshotPoliciesRequest: requests.ListFilesystemSnapshotPoliciesRequest): Promise<responses.ListFilesystemSnapshotPoliciesResponse>;
|
|
635
640
|
/**
|
|
@@ -671,7 +676,7 @@ export declare class FileStorageClient {
|
|
|
671
676
|
* @param ListMountTargetsRequest
|
|
672
677
|
* @return ListMountTargetsResponse
|
|
673
678
|
* @throws OciError when an error occurs
|
|
674
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
679
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/ListMountTargets.ts.html |here} to see how to use ListMountTargets API.
|
|
675
680
|
*/
|
|
676
681
|
listMountTargets(listMountTargetsRequest: requests.ListMountTargetsRequest): Promise<responses.ListMountTargetsResponse>;
|
|
677
682
|
/**
|
|
@@ -713,7 +718,7 @@ export declare class FileStorageClient {
|
|
|
713
718
|
* @param ListOutboundConnectorsRequest
|
|
714
719
|
* @return ListOutboundConnectorsResponse
|
|
715
720
|
* @throws OciError when an error occurs
|
|
716
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
721
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/ListOutboundConnectors.ts.html |here} to see how to use ListOutboundConnectors API.
|
|
717
722
|
*/
|
|
718
723
|
listOutboundConnectors(listOutboundConnectorsRequest: requests.ListOutboundConnectorsRequest): Promise<responses.ListOutboundConnectorsResponse>;
|
|
719
724
|
/**
|
|
@@ -755,7 +760,7 @@ export declare class FileStorageClient {
|
|
|
755
760
|
* @param ListReplicationTargetsRequest
|
|
756
761
|
* @return ListReplicationTargetsResponse
|
|
757
762
|
* @throws OciError when an error occurs
|
|
758
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
763
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/ListReplicationTargets.ts.html |here} to see how to use ListReplicationTargets API.
|
|
759
764
|
*/
|
|
760
765
|
listReplicationTargets(listReplicationTargetsRequest: requests.ListReplicationTargetsRequest): Promise<responses.ListReplicationTargetsResponse>;
|
|
761
766
|
/**
|
|
@@ -797,7 +802,7 @@ export declare class FileStorageClient {
|
|
|
797
802
|
* @param ListReplicationsRequest
|
|
798
803
|
* @return ListReplicationsResponse
|
|
799
804
|
* @throws OciError when an error occurs
|
|
800
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
805
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/ListReplications.ts.html |here} to see how to use ListReplications API.
|
|
801
806
|
*/
|
|
802
807
|
listReplications(listReplicationsRequest: requests.ListReplicationsRequest): Promise<responses.ListReplicationsResponse>;
|
|
803
808
|
/**
|
|
@@ -845,7 +850,7 @@ export declare class FileStorageClient {
|
|
|
845
850
|
* @param ListSnapshotsRequest
|
|
846
851
|
* @return ListSnapshotsResponse
|
|
847
852
|
* @throws OciError when an error occurs
|
|
848
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
853
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/ListSnapshots.ts.html |here} to see how to use ListSnapshots API.
|
|
849
854
|
*/
|
|
850
855
|
listSnapshots(listSnapshotsRequest: requests.ListSnapshotsRequest): Promise<responses.ListSnapshotsResponse>;
|
|
851
856
|
/**
|
|
@@ -892,7 +897,7 @@ export declare class FileStorageClient {
|
|
|
892
897
|
* @param PauseFilesystemSnapshotPolicyRequest
|
|
893
898
|
* @return PauseFilesystemSnapshotPolicyResponse
|
|
894
899
|
* @throws OciError when an error occurs
|
|
895
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
900
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/PauseFilesystemSnapshotPolicy.ts.html |here} to see how to use PauseFilesystemSnapshotPolicy API.
|
|
896
901
|
*/
|
|
897
902
|
pauseFilesystemSnapshotPolicy(pauseFilesystemSnapshotPolicyRequest: requests.PauseFilesystemSnapshotPolicyRequest): Promise<responses.PauseFilesystemSnapshotPolicyResponse>;
|
|
898
903
|
/**
|
|
@@ -906,7 +911,7 @@ export declare class FileStorageClient {
|
|
|
906
911
|
* @param UnpauseFilesystemSnapshotPolicyRequest
|
|
907
912
|
* @return UnpauseFilesystemSnapshotPolicyResponse
|
|
908
913
|
* @throws OciError when an error occurs
|
|
909
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
914
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/UnpauseFilesystemSnapshotPolicy.ts.html |here} to see how to use UnpauseFilesystemSnapshotPolicy API.
|
|
910
915
|
*/
|
|
911
916
|
unpauseFilesystemSnapshotPolicy(unpauseFilesystemSnapshotPolicyRequest: requests.UnpauseFilesystemSnapshotPolicyRequest): Promise<responses.UnpauseFilesystemSnapshotPolicyResponse>;
|
|
912
917
|
/**
|
|
@@ -915,7 +920,7 @@ export declare class FileStorageClient {
|
|
|
915
920
|
* @param UpdateExportRequest
|
|
916
921
|
* @return UpdateExportResponse
|
|
917
922
|
* @throws OciError when an error occurs
|
|
918
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
923
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/UpdateExport.ts.html |here} to see how to use UpdateExport API.
|
|
919
924
|
*/
|
|
920
925
|
updateExport(updateExportRequest: requests.UpdateExportRequest): Promise<responses.UpdateExportResponse>;
|
|
921
926
|
/**
|
|
@@ -924,7 +929,7 @@ export declare class FileStorageClient {
|
|
|
924
929
|
* @param UpdateExportSetRequest
|
|
925
930
|
* @return UpdateExportSetResponse
|
|
926
931
|
* @throws OciError when an error occurs
|
|
927
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
932
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/UpdateExportSet.ts.html |here} to see how to use UpdateExportSet API.
|
|
928
933
|
*/
|
|
929
934
|
updateExportSet(updateExportSetRequest: requests.UpdateExportSetRequest): Promise<responses.UpdateExportSetResponse>;
|
|
930
935
|
/**
|
|
@@ -935,7 +940,7 @@ export declare class FileStorageClient {
|
|
|
935
940
|
* @param UpdateFileSystemRequest
|
|
936
941
|
* @return UpdateFileSystemResponse
|
|
937
942
|
* @throws OciError when an error occurs
|
|
938
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
943
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/UpdateFileSystem.ts.html |here} to see how to use UpdateFileSystem API.
|
|
939
944
|
*/
|
|
940
945
|
updateFileSystem(updateFileSystemRequest: requests.UpdateFileSystemRequest): Promise<responses.UpdateFileSystemResponse>;
|
|
941
946
|
/**
|
|
@@ -944,7 +949,7 @@ export declare class FileStorageClient {
|
|
|
944
949
|
* @param UpdateFilesystemSnapshotPolicyRequest
|
|
945
950
|
* @return UpdateFilesystemSnapshotPolicyResponse
|
|
946
951
|
* @throws OciError when an error occurs
|
|
947
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
952
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/UpdateFilesystemSnapshotPolicy.ts.html |here} to see how to use UpdateFilesystemSnapshotPolicy API.
|
|
948
953
|
*/
|
|
949
954
|
updateFilesystemSnapshotPolicy(updateFilesystemSnapshotPolicyRequest: requests.UpdateFilesystemSnapshotPolicyRequest): Promise<responses.UpdateFilesystemSnapshotPolicyResponse>;
|
|
950
955
|
/**
|
|
@@ -953,7 +958,7 @@ export declare class FileStorageClient {
|
|
|
953
958
|
* @param UpdateMountTargetRequest
|
|
954
959
|
* @return UpdateMountTargetResponse
|
|
955
960
|
* @throws OciError when an error occurs
|
|
956
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
961
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/UpdateMountTarget.ts.html |here} to see how to use UpdateMountTarget API.
|
|
957
962
|
*/
|
|
958
963
|
updateMountTarget(updateMountTargetRequest: requests.UpdateMountTargetRequest): Promise<responses.UpdateMountTargetResponse>;
|
|
959
964
|
/**
|
|
@@ -962,7 +967,7 @@ export declare class FileStorageClient {
|
|
|
962
967
|
* @param UpdateOutboundConnectorRequest
|
|
963
968
|
* @return UpdateOutboundConnectorResponse
|
|
964
969
|
* @throws OciError when an error occurs
|
|
965
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
970
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/UpdateOutboundConnector.ts.html |here} to see how to use UpdateOutboundConnector API.
|
|
966
971
|
*/
|
|
967
972
|
updateOutboundConnector(updateOutboundConnectorRequest: requests.UpdateOutboundConnectorRequest): Promise<responses.UpdateOutboundConnectorResponse>;
|
|
968
973
|
/**
|
|
@@ -972,7 +977,7 @@ export declare class FileStorageClient {
|
|
|
972
977
|
* @param UpdateReplicationRequest
|
|
973
978
|
* @return UpdateReplicationResponse
|
|
974
979
|
* @throws OciError when an error occurs
|
|
975
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
980
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/UpdateReplication.ts.html |here} to see how to use UpdateReplication API.
|
|
976
981
|
*/
|
|
977
982
|
updateReplication(updateReplicationRequest: requests.UpdateReplicationRequest): Promise<responses.UpdateReplicationResponse>;
|
|
978
983
|
/**
|
|
@@ -981,7 +986,7 @@ export declare class FileStorageClient {
|
|
|
981
986
|
* @param UpdateSnapshotRequest
|
|
982
987
|
* @return UpdateSnapshotResponse
|
|
983
988
|
* @throws OciError when an error occurs
|
|
984
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
989
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/UpdateSnapshot.ts.html |here} to see how to use UpdateSnapshot API.
|
|
985
990
|
*/
|
|
986
991
|
updateSnapshot(updateSnapshotRequest: requests.UpdateSnapshotRequest): Promise<responses.UpdateSnapshotResponse>;
|
|
987
992
|
/**
|
|
@@ -993,7 +998,8 @@ export declare class FileStorageClient {
|
|
|
993
998
|
* @param ValidateKeyTabsRequest
|
|
994
999
|
* @return ValidateKeyTabsResponse
|
|
995
1000
|
* @throws OciError when an error occurs
|
|
996
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1001
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/filestorage/ValidateKeyTabs.ts.html |here} to see how to use ValidateKeyTabs API.
|
|
997
1002
|
*/
|
|
998
1003
|
validateKeyTabs(validateKeyTabsRequest: requests.ValidateKeyTabsRequest): Promise<responses.ValidateKeyTabsResponse>;
|
|
999
1004
|
}
|
|
1005
|
+
export {};
|