@aws-sdk/client-datasync 3.325.0 → 3.326.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.
Files changed (58) hide show
  1. package/dist-types/commands/AddStorageSystemCommand.d.ts +6 -0
  2. package/dist-types/commands/CancelTaskExecutionCommand.d.ts +4 -0
  3. package/dist-types/commands/CreateAgentCommand.d.ts +6 -0
  4. package/dist-types/commands/CreateLocationEfsCommand.d.ts +6 -0
  5. package/dist-types/commands/CreateLocationFsxLustreCommand.d.ts +6 -0
  6. package/dist-types/commands/CreateLocationFsxOntapCommand.d.ts +6 -0
  7. package/dist-types/commands/CreateLocationFsxOpenZfsCommand.d.ts +6 -0
  8. package/dist-types/commands/CreateLocationFsxWindowsCommand.d.ts +6 -0
  9. package/dist-types/commands/CreateLocationHdfsCommand.d.ts +6 -0
  10. package/dist-types/commands/CreateLocationNfsCommand.d.ts +6 -0
  11. package/dist-types/commands/CreateLocationObjectStorageCommand.d.ts +6 -0
  12. package/dist-types/commands/CreateLocationS3Command.d.ts +6 -0
  13. package/dist-types/commands/CreateLocationSmbCommand.d.ts +6 -0
  14. package/dist-types/commands/CreateTaskCommand.d.ts +6 -0
  15. package/dist-types/commands/DeleteAgentCommand.d.ts +4 -0
  16. package/dist-types/commands/DeleteLocationCommand.d.ts +4 -0
  17. package/dist-types/commands/DeleteTaskCommand.d.ts +4 -0
  18. package/dist-types/commands/DescribeAgentCommand.d.ts +21 -0
  19. package/dist-types/commands/DescribeDiscoveryJobCommand.d.ts +11 -0
  20. package/dist-types/commands/DescribeLocationEfsCommand.d.ts +17 -0
  21. package/dist-types/commands/DescribeLocationFsxLustreCommand.d.ts +11 -0
  22. package/dist-types/commands/DescribeLocationFsxOntapCommand.d.ts +28 -0
  23. package/dist-types/commands/DescribeLocationFsxOpenZfsCommand.d.ts +26 -0
  24. package/dist-types/commands/DescribeLocationFsxWindowsCommand.d.ts +13 -0
  25. package/dist-types/commands/DescribeLocationHdfsCommand.d.ts +27 -0
  26. package/dist-types/commands/DescribeLocationNfsCommand.d.ts +16 -0
  27. package/dist-types/commands/DescribeLocationObjectStorageCommand.d.ts +15 -0
  28. package/dist-types/commands/DescribeLocationS3Command.d.ts +15 -0
  29. package/dist-types/commands/DescribeLocationSmbCommand.d.ts +16 -0
  30. package/dist-types/commands/DescribeStorageSystemCommand.d.ts +20 -0
  31. package/dist-types/commands/DescribeStorageSystemResourceMetricsCommand.d.ts +37 -0
  32. package/dist-types/commands/DescribeStorageSystemResourcesCommand.d.ts +119 -0
  33. package/dist-types/commands/DescribeTaskCommand.d.ts +53 -0
  34. package/dist-types/commands/DescribeTaskExecutionCommand.d.ts +54 -0
  35. package/dist-types/commands/GenerateRecommendationsCommand.d.ts +4 -0
  36. package/dist-types/commands/ListAgentsCommand.d.ts +13 -0
  37. package/dist-types/commands/ListDiscoveryJobsCommand.d.ts +12 -0
  38. package/dist-types/commands/ListLocationsCommand.d.ts +12 -0
  39. package/dist-types/commands/ListStorageSystemsCommand.d.ts +12 -0
  40. package/dist-types/commands/ListTagsForResourceCommand.d.ts +12 -0
  41. package/dist-types/commands/ListTaskExecutionsCommand.d.ts +12 -0
  42. package/dist-types/commands/ListTasksCommand.d.ts +13 -0
  43. package/dist-types/commands/RemoveStorageSystemCommand.d.ts +4 -0
  44. package/dist-types/commands/StartDiscoveryJobCommand.d.ts +6 -0
  45. package/dist-types/commands/StartTaskExecutionCommand.d.ts +6 -0
  46. package/dist-types/commands/StopDiscoveryJobCommand.d.ts +4 -0
  47. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  48. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  49. package/dist-types/commands/UpdateAgentCommand.d.ts +4 -0
  50. package/dist-types/commands/UpdateDiscoveryJobCommand.d.ts +4 -0
  51. package/dist-types/commands/UpdateLocationHdfsCommand.d.ts +4 -0
  52. package/dist-types/commands/UpdateLocationNfsCommand.d.ts +4 -0
  53. package/dist-types/commands/UpdateLocationObjectStorageCommand.d.ts +4 -0
  54. package/dist-types/commands/UpdateLocationSmbCommand.d.ts +4 -0
  55. package/dist-types/commands/UpdateStorageSystemCommand.d.ts +4 -0
  56. package/dist-types/commands/UpdateTaskCommand.d.ts +4 -0
  57. package/dist-types/commands/UpdateTaskExecutionCommand.d.ts +4 -0
  58. package/package.json +3 -3
@@ -32,6 +32,19 @@ export interface DescribeLocationObjectStorageCommandOutput extends DescribeLoca
32
32
  * };
33
33
  * const command = new DescribeLocationObjectStorageCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DescribeLocationObjectStorageResponse
36
+ * // LocationArn: "STRING_VALUE",
37
+ * // LocationUri: "STRING_VALUE",
38
+ * // AccessKey: "STRING_VALUE",
39
+ * // ServerPort: Number("int"),
40
+ * // ServerProtocol: "HTTPS" || "HTTP",
41
+ * // AgentArns: [ // AgentArnList
42
+ * // "STRING_VALUE",
43
+ * // ],
44
+ * // CreationTime: new Date("TIMESTAMP"),
45
+ * // ServerCertificate: "BLOB_VALUE",
46
+ * // };
47
+ *
35
48
  * ```
36
49
  *
37
50
  * @param DescribeLocationObjectStorageCommandInput - {@link DescribeLocationObjectStorageCommandInput}
@@ -47,6 +60,8 @@ export interface DescribeLocationObjectStorageCommandOutput extends DescribeLoca
47
60
  * @throws {@link InvalidRequestException} (client fault)
48
61
  * <p>This exception is thrown when the client submits a malformed request.</p>
49
62
  *
63
+ * @throws {@link DataSyncServiceException}
64
+ * <p>Base exception class for all service exceptions from DataSync service.</p>
50
65
  *
51
66
  */
52
67
  export declare class DescribeLocationObjectStorageCommand extends $Command<DescribeLocationObjectStorageCommandInput, DescribeLocationObjectStorageCommandOutput, DataSyncClientResolvedConfig> {
@@ -31,6 +31,19 @@ export interface DescribeLocationS3CommandOutput extends DescribeLocationS3Respo
31
31
  * };
32
32
  * const command = new DescribeLocationS3Command(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DescribeLocationS3Response
35
+ * // LocationArn: "STRING_VALUE",
36
+ * // LocationUri: "STRING_VALUE",
37
+ * // S3StorageClass: "STANDARD" || "STANDARD_IA" || "ONEZONE_IA" || "INTELLIGENT_TIERING" || "GLACIER" || "DEEP_ARCHIVE" || "OUTPOSTS" || "GLACIER_INSTANT_RETRIEVAL",
38
+ * // S3Config: { // S3Config
39
+ * // BucketAccessRoleArn: "STRING_VALUE", // required
40
+ * // },
41
+ * // AgentArns: [ // AgentArnList
42
+ * // "STRING_VALUE",
43
+ * // ],
44
+ * // CreationTime: new Date("TIMESTAMP"),
45
+ * // };
46
+ *
34
47
  * ```
35
48
  *
36
49
  * @param DescribeLocationS3CommandInput - {@link DescribeLocationS3CommandInput}
@@ -46,6 +59,8 @@ export interface DescribeLocationS3CommandOutput extends DescribeLocationS3Respo
46
59
  * @throws {@link InvalidRequestException} (client fault)
47
60
  * <p>This exception is thrown when the client submits a malformed request.</p>
48
61
  *
62
+ * @throws {@link DataSyncServiceException}
63
+ * <p>Base exception class for all service exceptions from DataSync service.</p>
49
64
  *
50
65
  */
51
66
  export declare class DescribeLocationS3Command extends $Command<DescribeLocationS3CommandInput, DescribeLocationS3CommandOutput, DataSyncClientResolvedConfig> {
@@ -31,6 +31,20 @@ export interface DescribeLocationSmbCommandOutput extends DescribeLocationSmbRes
31
31
  * };
32
32
  * const command = new DescribeLocationSmbCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DescribeLocationSmbResponse
35
+ * // LocationArn: "STRING_VALUE",
36
+ * // LocationUri: "STRING_VALUE",
37
+ * // AgentArns: [ // AgentArnList
38
+ * // "STRING_VALUE",
39
+ * // ],
40
+ * // User: "STRING_VALUE",
41
+ * // Domain: "STRING_VALUE",
42
+ * // MountOptions: { // SmbMountOptions
43
+ * // Version: "AUTOMATIC" || "SMB2" || "SMB3" || "SMB1" || "SMB2_0",
44
+ * // },
45
+ * // CreationTime: new Date("TIMESTAMP"),
46
+ * // };
47
+ *
34
48
  * ```
35
49
  *
36
50
  * @param DescribeLocationSmbCommandInput - {@link DescribeLocationSmbCommandInput}
@@ -46,6 +60,8 @@ export interface DescribeLocationSmbCommandOutput extends DescribeLocationSmbRes
46
60
  * @throws {@link InvalidRequestException} (client fault)
47
61
  * <p>This exception is thrown when the client submits a malformed request.</p>
48
62
  *
63
+ * @throws {@link DataSyncServiceException}
64
+ * <p>Base exception class for all service exceptions from DataSync service.</p>
49
65
  *
50
66
  */
51
67
  export declare class DescribeLocationSmbCommand extends $Command<DescribeLocationSmbCommandInput, DescribeLocationSmbCommandOutput, DataSyncClientResolvedConfig> {
@@ -32,6 +32,24 @@ export interface DescribeStorageSystemCommandOutput extends DescribeStorageSyste
32
32
  * };
33
33
  * const command = new DescribeStorageSystemCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DescribeStorageSystemResponse
36
+ * // StorageSystemArn: "STRING_VALUE",
37
+ * // ServerConfiguration: { // DiscoveryServerConfiguration
38
+ * // ServerHostname: "STRING_VALUE", // required
39
+ * // ServerPort: Number("int"),
40
+ * // },
41
+ * // SystemType: "NetAppONTAP",
42
+ * // AgentArns: [ // DiscoveryAgentArnList
43
+ * // "STRING_VALUE",
44
+ * // ],
45
+ * // Name: "STRING_VALUE",
46
+ * // ErrorMessage: "STRING_VALUE",
47
+ * // ConnectivityStatus: "PASS" || "FAIL" || "UNKNOWN",
48
+ * // CloudWatchLogGroupArn: "STRING_VALUE",
49
+ * // CreationTime: new Date("TIMESTAMP"),
50
+ * // SecretsManagerArn: "STRING_VALUE",
51
+ * // };
52
+ *
35
53
  * ```
36
54
  *
37
55
  * @param DescribeStorageSystemCommandInput - {@link DescribeStorageSystemCommandInput}
@@ -47,6 +65,8 @@ export interface DescribeStorageSystemCommandOutput extends DescribeStorageSyste
47
65
  * @throws {@link InvalidRequestException} (client fault)
48
66
  * <p>This exception is thrown when the client submits a malformed request.</p>
49
67
  *
68
+ * @throws {@link DataSyncServiceException}
69
+ * <p>Base exception class for all service exceptions from DataSync service.</p>
50
70
  *
51
71
  */
52
72
  export declare class DescribeStorageSystemCommand extends $Command<DescribeStorageSystemCommandInput, DescribeStorageSystemCommandOutput, DataSyncClientResolvedConfig> {
@@ -38,6 +38,41 @@ export interface DescribeStorageSystemResourceMetricsCommandOutput extends Descr
38
38
  * };
39
39
  * const command = new DescribeStorageSystemResourceMetricsCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // { // DescribeStorageSystemResourceMetricsResponse
42
+ * // Metrics: [ // Metrics
43
+ * // { // ResourceMetrics
44
+ * // Timestamp: new Date("TIMESTAMP"),
45
+ * // P95Metrics: { // P95Metrics
46
+ * // IOPS: { // IOPS
47
+ * // Read: Number("double"),
48
+ * // Write: Number("double"),
49
+ * // Other: Number("double"),
50
+ * // Total: Number("double"),
51
+ * // },
52
+ * // Throughput: { // Throughput
53
+ * // Read: Number("double"),
54
+ * // Write: Number("double"),
55
+ * // Other: Number("double"),
56
+ * // Total: Number("double"),
57
+ * // },
58
+ * // Latency: { // Latency
59
+ * // Read: Number("double"),
60
+ * // Write: Number("double"),
61
+ * // Other: Number("double"),
62
+ * // },
63
+ * // },
64
+ * // Capacity: { // Capacity
65
+ * // Used: Number("long"),
66
+ * // Provisioned: Number("long"),
67
+ * // LogicalUsed: Number("long"),
68
+ * // },
69
+ * // ResourceId: "STRING_VALUE",
70
+ * // ResourceType: "SVM" || "VOLUME" || "CLUSTER",
71
+ * // },
72
+ * // ],
73
+ * // NextToken: "STRING_VALUE",
74
+ * // };
75
+ *
41
76
  * ```
42
77
  *
43
78
  * @param DescribeStorageSystemResourceMetricsCommandInput - {@link DescribeStorageSystemResourceMetricsCommandInput}
@@ -53,6 +88,8 @@ export interface DescribeStorageSystemResourceMetricsCommandOutput extends Descr
53
88
  * @throws {@link InvalidRequestException} (client fault)
54
89
  * <p>This exception is thrown when the client submits a malformed request.</p>
55
90
  *
91
+ * @throws {@link DataSyncServiceException}
92
+ * <p>Base exception class for all service exceptions from DataSync service.</p>
56
93
  *
57
94
  */
58
95
  export declare class DescribeStorageSystemResourceMetricsCommand extends $Command<DescribeStorageSystemResourceMetricsCommandInput, DescribeStorageSystemResourceMetricsCommandOutput, DataSyncClientResolvedConfig> {
@@ -43,6 +43,123 @@ export interface DescribeStorageSystemResourcesCommandOutput extends DescribeSto
43
43
  * };
44
44
  * const command = new DescribeStorageSystemResourcesCommand(input);
45
45
  * const response = await client.send(command);
46
+ * // { // DescribeStorageSystemResourcesResponse
47
+ * // ResourceDetails: { // ResourceDetails
48
+ * // NetAppONTAPSVMs: [ // NetAppONTAPSVMs
49
+ * // { // NetAppONTAPSVM
50
+ * // ClusterUuid: "STRING_VALUE",
51
+ * // ResourceId: "STRING_VALUE",
52
+ * // SvmName: "STRING_VALUE",
53
+ * // CifsShareCount: Number("long"),
54
+ * // EnabledProtocols: [ // EnabledProtocols
55
+ * // "STRING_VALUE",
56
+ * // ],
57
+ * // TotalCapacityUsed: Number("long"),
58
+ * // TotalCapacityProvisioned: Number("long"),
59
+ * // TotalLogicalCapacityUsed: Number("long"),
60
+ * // MaxP95Performance: { // MaxP95Performance
61
+ * // IopsRead: Number("double"),
62
+ * // IopsWrite: Number("double"),
63
+ * // IopsOther: Number("double"),
64
+ * // IopsTotal: Number("double"),
65
+ * // ThroughputRead: Number("double"),
66
+ * // ThroughputWrite: Number("double"),
67
+ * // ThroughputOther: Number("double"),
68
+ * // ThroughputTotal: Number("double"),
69
+ * // LatencyRead: Number("double"),
70
+ * // LatencyWrite: Number("double"),
71
+ * // LatencyOther: Number("double"),
72
+ * // },
73
+ * // Recommendations: [ // Recommendations
74
+ * // { // Recommendation
75
+ * // StorageType: "STRING_VALUE",
76
+ * // StorageConfiguration: { // RecommendationsConfigMap
77
+ * // "<keys>": "STRING_VALUE",
78
+ * // },
79
+ * // EstimatedMonthlyStorageCost: "STRING_VALUE",
80
+ * // },
81
+ * // ],
82
+ * // NfsExportedVolumes: Number("long"),
83
+ * // RecommendationStatus: "NONE" || "IN_PROGRESS" || "COMPLETED" || "FAILED",
84
+ * // TotalSnapshotCapacityUsed: Number("long"),
85
+ * // },
86
+ * // ],
87
+ * // NetAppONTAPVolumes: [ // NetAppONTAPVolumes
88
+ * // { // NetAppONTAPVolume
89
+ * // VolumeName: "STRING_VALUE",
90
+ * // ResourceId: "STRING_VALUE",
91
+ * // CifsShareCount: Number("long"),
92
+ * // SecurityStyle: "STRING_VALUE",
93
+ * // SvmUuid: "STRING_VALUE",
94
+ * // SvmName: "STRING_VALUE",
95
+ * // CapacityUsed: Number("long"),
96
+ * // CapacityProvisioned: Number("long"),
97
+ * // LogicalCapacityUsed: Number("long"),
98
+ * // NfsExported: true || false,
99
+ * // SnapshotCapacityUsed: Number("long"),
100
+ * // MaxP95Performance: {
101
+ * // IopsRead: Number("double"),
102
+ * // IopsWrite: Number("double"),
103
+ * // IopsOther: Number("double"),
104
+ * // IopsTotal: Number("double"),
105
+ * // ThroughputRead: Number("double"),
106
+ * // ThroughputWrite: Number("double"),
107
+ * // ThroughputOther: Number("double"),
108
+ * // ThroughputTotal: Number("double"),
109
+ * // LatencyRead: Number("double"),
110
+ * // LatencyWrite: Number("double"),
111
+ * // LatencyOther: Number("double"),
112
+ * // },
113
+ * // Recommendations: [
114
+ * // {
115
+ * // StorageType: "STRING_VALUE",
116
+ * // StorageConfiguration: {
117
+ * // "<keys>": "STRING_VALUE",
118
+ * // },
119
+ * // EstimatedMonthlyStorageCost: "STRING_VALUE",
120
+ * // },
121
+ * // ],
122
+ * // RecommendationStatus: "NONE" || "IN_PROGRESS" || "COMPLETED" || "FAILED",
123
+ * // },
124
+ * // ],
125
+ * // NetAppONTAPClusters: [ // NetAppONTAPClusters
126
+ * // { // NetAppONTAPCluster
127
+ * // CifsShareCount: Number("long"),
128
+ * // NfsExportedVolumes: Number("long"),
129
+ * // ResourceId: "STRING_VALUE",
130
+ * // ClusterName: "STRING_VALUE",
131
+ * // MaxP95Performance: {
132
+ * // IopsRead: Number("double"),
133
+ * // IopsWrite: Number("double"),
134
+ * // IopsOther: Number("double"),
135
+ * // IopsTotal: Number("double"),
136
+ * // ThroughputRead: Number("double"),
137
+ * // ThroughputWrite: Number("double"),
138
+ * // ThroughputOther: Number("double"),
139
+ * // ThroughputTotal: Number("double"),
140
+ * // LatencyRead: Number("double"),
141
+ * // LatencyWrite: Number("double"),
142
+ * // LatencyOther: Number("double"),
143
+ * // },
144
+ * // ClusterBlockStorageSize: Number("long"),
145
+ * // ClusterBlockStorageUsed: Number("long"),
146
+ * // ClusterBlockStorageLogicalUsed: Number("long"),
147
+ * // Recommendations: [
148
+ * // {
149
+ * // StorageType: "STRING_VALUE",
150
+ * // StorageConfiguration: {
151
+ * // "<keys>": "STRING_VALUE",
152
+ * // },
153
+ * // EstimatedMonthlyStorageCost: "STRING_VALUE",
154
+ * // },
155
+ * // ],
156
+ * // RecommendationStatus: "NONE" || "IN_PROGRESS" || "COMPLETED" || "FAILED",
157
+ * // },
158
+ * // ],
159
+ * // },
160
+ * // NextToken: "STRING_VALUE",
161
+ * // };
162
+ *
46
163
  * ```
47
164
  *
48
165
  * @param DescribeStorageSystemResourcesCommandInput - {@link DescribeStorageSystemResourcesCommandInput}
@@ -58,6 +175,8 @@ export interface DescribeStorageSystemResourcesCommandOutput extends DescribeSto
58
175
  * @throws {@link InvalidRequestException} (client fault)
59
176
  * <p>This exception is thrown when the client submits a malformed request.</p>
60
177
  *
178
+ * @throws {@link DataSyncServiceException}
179
+ * <p>Base exception class for all service exceptions from DataSync service.</p>
61
180
  *
62
181
  */
63
182
  export declare class DescribeStorageSystemResourcesCommand extends $Command<DescribeStorageSystemResourcesCommandInput, DescribeStorageSystemResourcesCommandOutput, DataSyncClientResolvedConfig> {
@@ -31,6 +31,57 @@ export interface DescribeTaskCommandOutput extends DescribeTaskResponse, __Metad
31
31
  * };
32
32
  * const command = new DescribeTaskCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DescribeTaskResponse
35
+ * // TaskArn: "STRING_VALUE",
36
+ * // Status: "AVAILABLE" || "CREATING" || "QUEUED" || "RUNNING" || "UNAVAILABLE",
37
+ * // Name: "STRING_VALUE",
38
+ * // CurrentTaskExecutionArn: "STRING_VALUE",
39
+ * // SourceLocationArn: "STRING_VALUE",
40
+ * // DestinationLocationArn: "STRING_VALUE",
41
+ * // CloudWatchLogGroupArn: "STRING_VALUE",
42
+ * // SourceNetworkInterfaceArns: [ // SourceNetworkInterfaceArns
43
+ * // "STRING_VALUE",
44
+ * // ],
45
+ * // DestinationNetworkInterfaceArns: [ // DestinationNetworkInterfaceArns
46
+ * // "STRING_VALUE",
47
+ * // ],
48
+ * // Options: { // Options
49
+ * // VerifyMode: "POINT_IN_TIME_CONSISTENT" || "ONLY_FILES_TRANSFERRED" || "NONE",
50
+ * // OverwriteMode: "ALWAYS" || "NEVER",
51
+ * // Atime: "NONE" || "BEST_EFFORT",
52
+ * // Mtime: "NONE" || "PRESERVE",
53
+ * // Uid: "NONE" || "INT_VALUE" || "NAME" || "BOTH",
54
+ * // Gid: "NONE" || "INT_VALUE" || "NAME" || "BOTH",
55
+ * // PreserveDeletedFiles: "PRESERVE" || "REMOVE",
56
+ * // PreserveDevices: "NONE" || "PRESERVE",
57
+ * // PosixPermissions: "NONE" || "PRESERVE",
58
+ * // BytesPerSecond: Number("long"),
59
+ * // TaskQueueing: "ENABLED" || "DISABLED",
60
+ * // LogLevel: "OFF" || "BASIC" || "TRANSFER",
61
+ * // TransferMode: "CHANGED" || "ALL",
62
+ * // SecurityDescriptorCopyFlags: "NONE" || "OWNER_DACL" || "OWNER_DACL_SACL",
63
+ * // ObjectTags: "PRESERVE" || "NONE",
64
+ * // },
65
+ * // Excludes: [ // FilterList
66
+ * // { // FilterRule
67
+ * // FilterType: "SIMPLE_PATTERN",
68
+ * // Value: "STRING_VALUE",
69
+ * // },
70
+ * // ],
71
+ * // Schedule: { // TaskSchedule
72
+ * // ScheduleExpression: "STRING_VALUE", // required
73
+ * // },
74
+ * // ErrorCode: "STRING_VALUE",
75
+ * // ErrorDetail: "STRING_VALUE",
76
+ * // CreationTime: new Date("TIMESTAMP"),
77
+ * // Includes: [
78
+ * // {
79
+ * // FilterType: "SIMPLE_PATTERN",
80
+ * // Value: "STRING_VALUE",
81
+ * // },
82
+ * // ],
83
+ * // };
84
+ *
34
85
  * ```
35
86
  *
36
87
  * @param DescribeTaskCommandInput - {@link DescribeTaskCommandInput}
@@ -46,6 +97,8 @@ export interface DescribeTaskCommandOutput extends DescribeTaskResponse, __Metad
46
97
  * @throws {@link InvalidRequestException} (client fault)
47
98
  * <p>This exception is thrown when the client submits a malformed request.</p>
48
99
  *
100
+ * @throws {@link DataSyncServiceException}
101
+ * <p>Base exception class for all service exceptions from DataSync service.</p>
49
102
  *
50
103
  */
51
104
  export declare class DescribeTaskCommand extends $Command<DescribeTaskCommandInput, DescribeTaskCommandOutput, DataSyncClientResolvedConfig> {
@@ -31,6 +31,58 @@ export interface DescribeTaskExecutionCommandOutput extends DescribeTaskExecutio
31
31
  * };
32
32
  * const command = new DescribeTaskExecutionCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DescribeTaskExecutionResponse
35
+ * // TaskExecutionArn: "STRING_VALUE",
36
+ * // Status: "QUEUED" || "LAUNCHING" || "PREPARING" || "TRANSFERRING" || "VERIFYING" || "SUCCESS" || "ERROR",
37
+ * // Options: { // Options
38
+ * // VerifyMode: "POINT_IN_TIME_CONSISTENT" || "ONLY_FILES_TRANSFERRED" || "NONE",
39
+ * // OverwriteMode: "ALWAYS" || "NEVER",
40
+ * // Atime: "NONE" || "BEST_EFFORT",
41
+ * // Mtime: "NONE" || "PRESERVE",
42
+ * // Uid: "NONE" || "INT_VALUE" || "NAME" || "BOTH",
43
+ * // Gid: "NONE" || "INT_VALUE" || "NAME" || "BOTH",
44
+ * // PreserveDeletedFiles: "PRESERVE" || "REMOVE",
45
+ * // PreserveDevices: "NONE" || "PRESERVE",
46
+ * // PosixPermissions: "NONE" || "PRESERVE",
47
+ * // BytesPerSecond: Number("long"),
48
+ * // TaskQueueing: "ENABLED" || "DISABLED",
49
+ * // LogLevel: "OFF" || "BASIC" || "TRANSFER",
50
+ * // TransferMode: "CHANGED" || "ALL",
51
+ * // SecurityDescriptorCopyFlags: "NONE" || "OWNER_DACL" || "OWNER_DACL_SACL",
52
+ * // ObjectTags: "PRESERVE" || "NONE",
53
+ * // },
54
+ * // Excludes: [ // FilterList
55
+ * // { // FilterRule
56
+ * // FilterType: "SIMPLE_PATTERN",
57
+ * // Value: "STRING_VALUE",
58
+ * // },
59
+ * // ],
60
+ * // Includes: [
61
+ * // {
62
+ * // FilterType: "SIMPLE_PATTERN",
63
+ * // Value: "STRING_VALUE",
64
+ * // },
65
+ * // ],
66
+ * // StartTime: new Date("TIMESTAMP"),
67
+ * // EstimatedFilesToTransfer: Number("long"),
68
+ * // EstimatedBytesToTransfer: Number("long"),
69
+ * // FilesTransferred: Number("long"),
70
+ * // BytesWritten: Number("long"),
71
+ * // BytesTransferred: Number("long"),
72
+ * // Result: { // TaskExecutionResultDetail
73
+ * // PrepareDuration: Number("long"),
74
+ * // PrepareStatus: "PENDING" || "SUCCESS" || "ERROR",
75
+ * // TotalDuration: Number("long"),
76
+ * // TransferDuration: Number("long"),
77
+ * // TransferStatus: "PENDING" || "SUCCESS" || "ERROR",
78
+ * // VerifyDuration: Number("long"),
79
+ * // VerifyStatus: "PENDING" || "SUCCESS" || "ERROR",
80
+ * // ErrorCode: "STRING_VALUE",
81
+ * // ErrorDetail: "STRING_VALUE",
82
+ * // },
83
+ * // BytesCompressed: Number("long"),
84
+ * // };
85
+ *
34
86
  * ```
35
87
  *
36
88
  * @param DescribeTaskExecutionCommandInput - {@link DescribeTaskExecutionCommandInput}
@@ -46,6 +98,8 @@ export interface DescribeTaskExecutionCommandOutput extends DescribeTaskExecutio
46
98
  * @throws {@link InvalidRequestException} (client fault)
47
99
  * <p>This exception is thrown when the client submits a malformed request.</p>
48
100
  *
101
+ * @throws {@link DataSyncServiceException}
102
+ * <p>Base exception class for all service exceptions from DataSync service.</p>
49
103
  *
50
104
  */
51
105
  export declare class DescribeTaskExecutionCommand extends $Command<DescribeTaskExecutionCommandInput, DescribeTaskExecutionCommandOutput, DataSyncClientResolvedConfig> {
@@ -43,6 +43,8 @@ export interface GenerateRecommendationsCommandOutput extends GenerateRecommenda
43
43
  * };
44
44
  * const command = new GenerateRecommendationsCommand(input);
45
45
  * const response = await client.send(command);
46
+ * // {};
47
+ *
46
48
  * ```
47
49
  *
48
50
  * @param GenerateRecommendationsCommandInput - {@link GenerateRecommendationsCommandInput}
@@ -58,6 +60,8 @@ export interface GenerateRecommendationsCommandOutput extends GenerateRecommenda
58
60
  * @throws {@link InvalidRequestException} (client fault)
59
61
  * <p>This exception is thrown when the client submits a malformed request.</p>
60
62
  *
63
+ * @throws {@link DataSyncServiceException}
64
+ * <p>Base exception class for all service exceptions from DataSync service.</p>
61
65
  *
62
66
  */
63
67
  export declare class GenerateRecommendationsCommand extends $Command<GenerateRecommendationsCommandInput, GenerateRecommendationsCommandOutput, DataSyncClientResolvedConfig> {
@@ -42,6 +42,17 @@ export interface ListAgentsCommandOutput extends ListAgentsResponse, __MetadataB
42
42
  * };
43
43
  * const command = new ListAgentsCommand(input);
44
44
  * const response = await client.send(command);
45
+ * // { // ListAgentsResponse
46
+ * // Agents: [ // AgentList
47
+ * // { // AgentListEntry
48
+ * // AgentArn: "STRING_VALUE",
49
+ * // Name: "STRING_VALUE",
50
+ * // Status: "ONLINE" || "OFFLINE",
51
+ * // },
52
+ * // ],
53
+ * // NextToken: "STRING_VALUE",
54
+ * // };
55
+ *
45
56
  * ```
46
57
  *
47
58
  * @param ListAgentsCommandInput - {@link ListAgentsCommandInput}
@@ -57,6 +68,8 @@ export interface ListAgentsCommandOutput extends ListAgentsResponse, __MetadataB
57
68
  * @throws {@link InvalidRequestException} (client fault)
58
69
  * <p>This exception is thrown when the client submits a malformed request.</p>
59
70
  *
71
+ * @throws {@link DataSyncServiceException}
72
+ * <p>Base exception class for all service exceptions from DataSync service.</p>
60
73
  *
61
74
  */
62
75
  export declare class ListAgentsCommand extends $Command<ListAgentsCommandInput, ListAgentsCommandOutput, DataSyncClientResolvedConfig> {
@@ -34,6 +34,16 @@ export interface ListDiscoveryJobsCommandOutput extends ListDiscoveryJobsRespons
34
34
  * };
35
35
  * const command = new ListDiscoveryJobsCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // ListDiscoveryJobsResponse
38
+ * // DiscoveryJobs: [ // DiscoveryJobList
39
+ * // { // DiscoveryJobListEntry
40
+ * // DiscoveryJobArn: "STRING_VALUE",
41
+ * // Status: "RUNNING" || "WARNING" || "TERMINATED" || "FAILED" || "STOPPED" || "COMPLETED" || "COMPLETED_WITH_ISSUES",
42
+ * // },
43
+ * // ],
44
+ * // NextToken: "STRING_VALUE",
45
+ * // };
46
+ *
37
47
  * ```
38
48
  *
39
49
  * @param ListDiscoveryJobsCommandInput - {@link ListDiscoveryJobsCommandInput}
@@ -49,6 +59,8 @@ export interface ListDiscoveryJobsCommandOutput extends ListDiscoveryJobsRespons
49
59
  * @throws {@link InvalidRequestException} (client fault)
50
60
  * <p>This exception is thrown when the client submits a malformed request.</p>
51
61
  *
62
+ * @throws {@link DataSyncServiceException}
63
+ * <p>Base exception class for all service exceptions from DataSync service.</p>
52
64
  *
53
65
  */
54
66
  export declare class ListDiscoveryJobsCommand extends $Command<ListDiscoveryJobsCommandInput, ListDiscoveryJobsCommandOutput, DataSyncClientResolvedConfig> {
@@ -44,6 +44,16 @@ export interface ListLocationsCommandOutput extends ListLocationsResponse, __Met
44
44
  * };
45
45
  * const command = new ListLocationsCommand(input);
46
46
  * const response = await client.send(command);
47
+ * // { // ListLocationsResponse
48
+ * // Locations: [ // LocationList
49
+ * // { // LocationListEntry
50
+ * // LocationArn: "STRING_VALUE",
51
+ * // LocationUri: "STRING_VALUE",
52
+ * // },
53
+ * // ],
54
+ * // NextToken: "STRING_VALUE",
55
+ * // };
56
+ *
47
57
  * ```
48
58
  *
49
59
  * @param ListLocationsCommandInput - {@link ListLocationsCommandInput}
@@ -59,6 +69,8 @@ export interface ListLocationsCommandOutput extends ListLocationsResponse, __Met
59
69
  * @throws {@link InvalidRequestException} (client fault)
60
70
  * <p>This exception is thrown when the client submits a malformed request.</p>
61
71
  *
72
+ * @throws {@link DataSyncServiceException}
73
+ * <p>Base exception class for all service exceptions from DataSync service.</p>
62
74
  *
63
75
  */
64
76
  export declare class ListLocationsCommand extends $Command<ListLocationsCommandInput, ListLocationsCommandOutput, DataSyncClientResolvedConfig> {
@@ -32,6 +32,16 @@ export interface ListStorageSystemsCommandOutput extends ListStorageSystemsRespo
32
32
  * };
33
33
  * const command = new ListStorageSystemsCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // ListStorageSystemsResponse
36
+ * // StorageSystems: [ // StorageSystemList
37
+ * // { // StorageSystemListEntry
38
+ * // StorageSystemArn: "STRING_VALUE",
39
+ * // Name: "STRING_VALUE",
40
+ * // },
41
+ * // ],
42
+ * // NextToken: "STRING_VALUE",
43
+ * // };
44
+ *
35
45
  * ```
36
46
  *
37
47
  * @param ListStorageSystemsCommandInput - {@link ListStorageSystemsCommandInput}
@@ -47,6 +57,8 @@ export interface ListStorageSystemsCommandOutput extends ListStorageSystemsRespo
47
57
  * @throws {@link InvalidRequestException} (client fault)
48
58
  * <p>This exception is thrown when the client submits a malformed request.</p>
49
59
  *
60
+ * @throws {@link DataSyncServiceException}
61
+ * <p>Base exception class for all service exceptions from DataSync service.</p>
50
62
  *
51
63
  */
52
64
  export declare class ListStorageSystemsCommand extends $Command<ListStorageSystemsCommandInput, ListStorageSystemsCommandOutput, DataSyncClientResolvedConfig> {
@@ -33,6 +33,16 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
33
33
  * };
34
34
  * const command = new ListTagsForResourceCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListTagsForResourceResponse
37
+ * // Tags: [ // OutputTagList
38
+ * // { // TagListEntry
39
+ * // Key: "STRING_VALUE", // required
40
+ * // Value: "STRING_VALUE",
41
+ * // },
42
+ * // ],
43
+ * // NextToken: "STRING_VALUE",
44
+ * // };
45
+ *
36
46
  * ```
37
47
  *
38
48
  * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
@@ -48,6 +58,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
48
58
  * @throws {@link InvalidRequestException} (client fault)
49
59
  * <p>This exception is thrown when the client submits a malformed request.</p>
50
60
  *
61
+ * @throws {@link DataSyncServiceException}
62
+ * <p>Base exception class for all service exceptions from DataSync service.</p>
51
63
  *
52
64
  */
53
65
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, DataSyncClientResolvedConfig> {
@@ -33,6 +33,16 @@ export interface ListTaskExecutionsCommandOutput extends ListTaskExecutionsRespo
33
33
  * };
34
34
  * const command = new ListTaskExecutionsCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListTaskExecutionsResponse
37
+ * // TaskExecutions: [ // TaskExecutionList
38
+ * // { // TaskExecutionListEntry
39
+ * // TaskExecutionArn: "STRING_VALUE",
40
+ * // Status: "QUEUED" || "LAUNCHING" || "PREPARING" || "TRANSFERRING" || "VERIFYING" || "SUCCESS" || "ERROR",
41
+ * // },
42
+ * // ],
43
+ * // NextToken: "STRING_VALUE",
44
+ * // };
45
+ *
36
46
  * ```
37
47
  *
38
48
  * @param ListTaskExecutionsCommandInput - {@link ListTaskExecutionsCommandInput}
@@ -48,6 +58,8 @@ export interface ListTaskExecutionsCommandOutput extends ListTaskExecutionsRespo
48
58
  * @throws {@link InvalidRequestException} (client fault)
49
59
  * <p>This exception is thrown when the client submits a malformed request.</p>
50
60
  *
61
+ * @throws {@link DataSyncServiceException}
62
+ * <p>Base exception class for all service exceptions from DataSync service.</p>
51
63
  *
52
64
  */
53
65
  export declare class ListTaskExecutionsCommand extends $Command<ListTaskExecutionsCommandInput, ListTaskExecutionsCommandOutput, DataSyncClientResolvedConfig> {
@@ -41,6 +41,17 @@ export interface ListTasksCommandOutput extends ListTasksResponse, __MetadataBea
41
41
  * };
42
42
  * const command = new ListTasksCommand(input);
43
43
  * const response = await client.send(command);
44
+ * // { // ListTasksResponse
45
+ * // Tasks: [ // TaskList
46
+ * // { // TaskListEntry
47
+ * // TaskArn: "STRING_VALUE",
48
+ * // Status: "AVAILABLE" || "CREATING" || "QUEUED" || "RUNNING" || "UNAVAILABLE",
49
+ * // Name: "STRING_VALUE",
50
+ * // },
51
+ * // ],
52
+ * // NextToken: "STRING_VALUE",
53
+ * // };
54
+ *
44
55
  * ```
45
56
  *
46
57
  * @param ListTasksCommandInput - {@link ListTasksCommandInput}
@@ -56,6 +67,8 @@ export interface ListTasksCommandOutput extends ListTasksResponse, __MetadataBea
56
67
  * @throws {@link InvalidRequestException} (client fault)
57
68
  * <p>This exception is thrown when the client submits a malformed request.</p>
58
69
  *
70
+ * @throws {@link DataSyncServiceException}
71
+ * <p>Base exception class for all service exceptions from DataSync service.</p>
59
72
  *
60
73
  */
61
74
  export declare class ListTasksCommand extends $Command<ListTasksCommandInput, ListTasksCommandOutput, DataSyncClientResolvedConfig> {