aws-sdk-datasync 1.71.0 → 1.73.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.
data/sig/client.rbs ADDED
@@ -0,0 +1,1343 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module DataSync
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?simple_json: bool,
52
+ ?stub_responses: untyped,
53
+ ?token_provider: untyped,
54
+ ?use_dualstack_endpoint: bool,
55
+ ?use_fips_endpoint: bool,
56
+ ?validate_params: bool,
57
+ ?endpoint_provider: untyped,
58
+ ?http_proxy: String,
59
+ ?http_open_timeout: (Float | Integer),
60
+ ?http_read_timeout: (Float | Integer),
61
+ ?http_idle_timeout: (Float | Integer),
62
+ ?http_continue_timeout: (Float | Integer),
63
+ ?ssl_timeout: (Float | Integer | nil),
64
+ ?http_wire_trace: bool,
65
+ ?ssl_verify_peer: bool,
66
+ ?ssl_ca_bundle: String,
67
+ ?ssl_ca_directory: String,
68
+ ?ssl_ca_store: String,
69
+ ?on_chunk_received: Proc,
70
+ ?on_chunk_sent: Proc,
71
+ ?raise_response_errors: bool
72
+ ) -> instance
73
+ | (?Hash[Symbol, untyped]) -> instance
74
+
75
+
76
+ interface _AddStorageSystemResponseSuccess
77
+ include ::Seahorse::Client::_ResponseSuccess[Types::AddStorageSystemResponse]
78
+ def storage_system_arn: () -> ::String
79
+ end
80
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#add_storage_system-instance_method
81
+ def add_storage_system: (
82
+ server_configuration: {
83
+ server_hostname: ::String,
84
+ server_port: ::Integer?
85
+ },
86
+ system_type: ("NetAppONTAP"),
87
+ agent_arns: Array[::String],
88
+ ?cloud_watch_log_group_arn: ::String,
89
+ ?tags: Array[
90
+ {
91
+ key: ::String,
92
+ value: ::String?
93
+ },
94
+ ],
95
+ ?name: ::String,
96
+ client_token: ::String,
97
+ credentials: {
98
+ username: ::String,
99
+ password: ::String
100
+ }
101
+ ) -> _AddStorageSystemResponseSuccess
102
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AddStorageSystemResponseSuccess
103
+
104
+ interface _CancelTaskExecutionResponseSuccess
105
+ include ::Seahorse::Client::_ResponseSuccess[Types::CancelTaskExecutionResponse]
106
+ end
107
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#cancel_task_execution-instance_method
108
+ def cancel_task_execution: (
109
+ task_execution_arn: ::String
110
+ ) -> _CancelTaskExecutionResponseSuccess
111
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelTaskExecutionResponseSuccess
112
+
113
+ interface _CreateAgentResponseSuccess
114
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateAgentResponse]
115
+ def agent_arn: () -> ::String
116
+ end
117
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#create_agent-instance_method
118
+ def create_agent: (
119
+ activation_key: ::String,
120
+ ?agent_name: ::String,
121
+ ?tags: Array[
122
+ {
123
+ key: ::String,
124
+ value: ::String?
125
+ },
126
+ ],
127
+ ?vpc_endpoint_id: ::String,
128
+ ?subnet_arns: Array[::String],
129
+ ?security_group_arns: Array[::String]
130
+ ) -> _CreateAgentResponseSuccess
131
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAgentResponseSuccess
132
+
133
+ interface _CreateLocationAzureBlobResponseSuccess
134
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateLocationAzureBlobResponse]
135
+ def location_arn: () -> ::String
136
+ end
137
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#create_location_azure_blob-instance_method
138
+ def create_location_azure_blob: (
139
+ container_url: ::String,
140
+ authentication_type: ("SAS"),
141
+ ?sas_configuration: {
142
+ token: ::String
143
+ },
144
+ ?blob_type: ("BLOCK"),
145
+ ?access_tier: ("HOT" | "COOL" | "ARCHIVE"),
146
+ ?subdirectory: ::String,
147
+ agent_arns: Array[::String],
148
+ ?tags: Array[
149
+ {
150
+ key: ::String,
151
+ value: ::String?
152
+ },
153
+ ]
154
+ ) -> _CreateLocationAzureBlobResponseSuccess
155
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLocationAzureBlobResponseSuccess
156
+
157
+ interface _CreateLocationEfsResponseSuccess
158
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateLocationEfsResponse]
159
+ def location_arn: () -> ::String
160
+ end
161
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#create_location_efs-instance_method
162
+ def create_location_efs: (
163
+ ?subdirectory: ::String,
164
+ efs_filesystem_arn: ::String,
165
+ ec2_config: {
166
+ subnet_arn: ::String,
167
+ security_group_arns: Array[::String]
168
+ },
169
+ ?tags: Array[
170
+ {
171
+ key: ::String,
172
+ value: ::String?
173
+ },
174
+ ],
175
+ ?access_point_arn: ::String,
176
+ ?file_system_access_role_arn: ::String,
177
+ ?in_transit_encryption: ("NONE" | "TLS1_2")
178
+ ) -> _CreateLocationEfsResponseSuccess
179
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLocationEfsResponseSuccess
180
+
181
+ interface _CreateLocationFsxLustreResponseSuccess
182
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateLocationFsxLustreResponse]
183
+ def location_arn: () -> ::String
184
+ end
185
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#create_location_fsx_lustre-instance_method
186
+ def create_location_fsx_lustre: (
187
+ fsx_filesystem_arn: ::String,
188
+ security_group_arns: Array[::String],
189
+ ?subdirectory: ::String,
190
+ ?tags: Array[
191
+ {
192
+ key: ::String,
193
+ value: ::String?
194
+ },
195
+ ]
196
+ ) -> _CreateLocationFsxLustreResponseSuccess
197
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLocationFsxLustreResponseSuccess
198
+
199
+ interface _CreateLocationFsxOntapResponseSuccess
200
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateLocationFsxOntapResponse]
201
+ def location_arn: () -> ::String
202
+ end
203
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#create_location_fsx_ontap-instance_method
204
+ def create_location_fsx_ontap: (
205
+ protocol: {
206
+ nfs: {
207
+ mount_options: {
208
+ version: ("AUTOMATIC" | "NFS3" | "NFS4_0" | "NFS4_1")?
209
+ }?
210
+ }?,
211
+ smb: {
212
+ domain: ::String?,
213
+ mount_options: {
214
+ version: ("AUTOMATIC" | "SMB2" | "SMB3" | "SMB1" | "SMB2_0")?
215
+ }?,
216
+ password: ::String,
217
+ user: ::String
218
+ }?
219
+ },
220
+ security_group_arns: Array[::String],
221
+ storage_virtual_machine_arn: ::String,
222
+ ?subdirectory: ::String,
223
+ ?tags: Array[
224
+ {
225
+ key: ::String,
226
+ value: ::String?
227
+ },
228
+ ]
229
+ ) -> _CreateLocationFsxOntapResponseSuccess
230
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLocationFsxOntapResponseSuccess
231
+
232
+ interface _CreateLocationFsxOpenZfsResponseSuccess
233
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateLocationFsxOpenZfsResponse]
234
+ def location_arn: () -> ::String
235
+ end
236
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#create_location_fsx_open_zfs-instance_method
237
+ def create_location_fsx_open_zfs: (
238
+ fsx_filesystem_arn: ::String,
239
+ protocol: {
240
+ nfs: {
241
+ mount_options: {
242
+ version: ("AUTOMATIC" | "NFS3" | "NFS4_0" | "NFS4_1")?
243
+ }?
244
+ }?,
245
+ smb: {
246
+ domain: ::String?,
247
+ mount_options: {
248
+ version: ("AUTOMATIC" | "SMB2" | "SMB3" | "SMB1" | "SMB2_0")?
249
+ }?,
250
+ password: ::String,
251
+ user: ::String
252
+ }?
253
+ },
254
+ security_group_arns: Array[::String],
255
+ ?subdirectory: ::String,
256
+ ?tags: Array[
257
+ {
258
+ key: ::String,
259
+ value: ::String?
260
+ },
261
+ ]
262
+ ) -> _CreateLocationFsxOpenZfsResponseSuccess
263
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLocationFsxOpenZfsResponseSuccess
264
+
265
+ interface _CreateLocationFsxWindowsResponseSuccess
266
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateLocationFsxWindowsResponse]
267
+ def location_arn: () -> ::String
268
+ end
269
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#create_location_fsx_windows-instance_method
270
+ def create_location_fsx_windows: (
271
+ ?subdirectory: ::String,
272
+ fsx_filesystem_arn: ::String,
273
+ security_group_arns: Array[::String],
274
+ ?tags: Array[
275
+ {
276
+ key: ::String,
277
+ value: ::String?
278
+ },
279
+ ],
280
+ user: ::String,
281
+ ?domain: ::String,
282
+ password: ::String
283
+ ) -> _CreateLocationFsxWindowsResponseSuccess
284
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLocationFsxWindowsResponseSuccess
285
+
286
+ interface _CreateLocationHdfsResponseSuccess
287
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateLocationHdfsResponse]
288
+ def location_arn: () -> ::String
289
+ end
290
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#create_location_hdfs-instance_method
291
+ def create_location_hdfs: (
292
+ ?subdirectory: ::String,
293
+ name_nodes: Array[
294
+ {
295
+ hostname: ::String,
296
+ port: ::Integer
297
+ },
298
+ ],
299
+ ?block_size: ::Integer,
300
+ ?replication_factor: ::Integer,
301
+ ?kms_key_provider_uri: ::String,
302
+ ?qop_configuration: {
303
+ rpc_protection: ("DISABLED" | "AUTHENTICATION" | "INTEGRITY" | "PRIVACY")?,
304
+ data_transfer_protection: ("DISABLED" | "AUTHENTICATION" | "INTEGRITY" | "PRIVACY")?
305
+ },
306
+ authentication_type: ("SIMPLE" | "KERBEROS"),
307
+ ?simple_user: ::String,
308
+ ?kerberos_principal: ::String,
309
+ ?kerberos_keytab: ::String,
310
+ ?kerberos_krb_5_conf: ::String,
311
+ agent_arns: Array[::String],
312
+ ?tags: Array[
313
+ {
314
+ key: ::String,
315
+ value: ::String?
316
+ },
317
+ ]
318
+ ) -> _CreateLocationHdfsResponseSuccess
319
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLocationHdfsResponseSuccess
320
+
321
+ interface _CreateLocationNfsResponseSuccess
322
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateLocationNfsResponse]
323
+ def location_arn: () -> ::String
324
+ end
325
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#create_location_nfs-instance_method
326
+ def create_location_nfs: (
327
+ subdirectory: ::String,
328
+ server_hostname: ::String,
329
+ on_prem_config: {
330
+ agent_arns: Array[::String]
331
+ },
332
+ ?mount_options: {
333
+ version: ("AUTOMATIC" | "NFS3" | "NFS4_0" | "NFS4_1")?
334
+ },
335
+ ?tags: Array[
336
+ {
337
+ key: ::String,
338
+ value: ::String?
339
+ },
340
+ ]
341
+ ) -> _CreateLocationNfsResponseSuccess
342
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLocationNfsResponseSuccess
343
+
344
+ interface _CreateLocationObjectStorageResponseSuccess
345
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateLocationObjectStorageResponse]
346
+ def location_arn: () -> ::String
347
+ end
348
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#create_location_object_storage-instance_method
349
+ def create_location_object_storage: (
350
+ server_hostname: ::String,
351
+ ?server_port: ::Integer,
352
+ ?server_protocol: ("HTTPS" | "HTTP"),
353
+ ?subdirectory: ::String,
354
+ bucket_name: ::String,
355
+ ?access_key: ::String,
356
+ ?secret_key: ::String,
357
+ agent_arns: Array[::String],
358
+ ?tags: Array[
359
+ {
360
+ key: ::String,
361
+ value: ::String?
362
+ },
363
+ ],
364
+ ?server_certificate: ::String
365
+ ) -> _CreateLocationObjectStorageResponseSuccess
366
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLocationObjectStorageResponseSuccess
367
+
368
+ interface _CreateLocationS3ResponseSuccess
369
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateLocationS3Response]
370
+ def location_arn: () -> ::String
371
+ end
372
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#create_location_s3-instance_method
373
+ def create_location_s3: (
374
+ ?subdirectory: ::String,
375
+ s3_bucket_arn: ::String,
376
+ ?s3_storage_class: ("STANDARD" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_INSTANT_RETRIEVAL"),
377
+ s3_config: {
378
+ bucket_access_role_arn: ::String
379
+ },
380
+ ?agent_arns: Array[::String],
381
+ ?tags: Array[
382
+ {
383
+ key: ::String,
384
+ value: ::String?
385
+ },
386
+ ]
387
+ ) -> _CreateLocationS3ResponseSuccess
388
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLocationS3ResponseSuccess
389
+
390
+ interface _CreateLocationSmbResponseSuccess
391
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateLocationSmbResponse]
392
+ def location_arn: () -> ::String
393
+ end
394
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#create_location_smb-instance_method
395
+ def create_location_smb: (
396
+ subdirectory: ::String,
397
+ server_hostname: ::String,
398
+ user: ::String,
399
+ ?domain: ::String,
400
+ password: ::String,
401
+ agent_arns: Array[::String],
402
+ ?mount_options: {
403
+ version: ("AUTOMATIC" | "SMB2" | "SMB3" | "SMB1" | "SMB2_0")?
404
+ },
405
+ ?tags: Array[
406
+ {
407
+ key: ::String,
408
+ value: ::String?
409
+ },
410
+ ]
411
+ ) -> _CreateLocationSmbResponseSuccess
412
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLocationSmbResponseSuccess
413
+
414
+ interface _CreateTaskResponseSuccess
415
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateTaskResponse]
416
+ def task_arn: () -> ::String
417
+ end
418
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#create_task-instance_method
419
+ def create_task: (
420
+ source_location_arn: ::String,
421
+ destination_location_arn: ::String,
422
+ ?cloud_watch_log_group_arn: ::String,
423
+ ?name: ::String,
424
+ ?options: {
425
+ verify_mode: ("POINT_IN_TIME_CONSISTENT" | "ONLY_FILES_TRANSFERRED" | "NONE")?,
426
+ overwrite_mode: ("ALWAYS" | "NEVER")?,
427
+ atime: ("NONE" | "BEST_EFFORT")?,
428
+ mtime: ("NONE" | "PRESERVE")?,
429
+ uid: ("NONE" | "INT_VALUE" | "NAME" | "BOTH")?,
430
+ gid: ("NONE" | "INT_VALUE" | "NAME" | "BOTH")?,
431
+ preserve_deleted_files: ("PRESERVE" | "REMOVE")?,
432
+ preserve_devices: ("NONE" | "PRESERVE")?,
433
+ posix_permissions: ("NONE" | "PRESERVE")?,
434
+ bytes_per_second: ::Integer?,
435
+ task_queueing: ("ENABLED" | "DISABLED")?,
436
+ log_level: ("OFF" | "BASIC" | "TRANSFER")?,
437
+ transfer_mode: ("CHANGED" | "ALL")?,
438
+ security_descriptor_copy_flags: ("NONE" | "OWNER_DACL" | "OWNER_DACL_SACL")?,
439
+ object_tags: ("PRESERVE" | "NONE")?
440
+ },
441
+ ?excludes: Array[
442
+ {
443
+ filter_type: ("SIMPLE_PATTERN")?,
444
+ value: ::String?
445
+ },
446
+ ],
447
+ ?schedule: {
448
+ schedule_expression: ::String
449
+ },
450
+ ?tags: Array[
451
+ {
452
+ key: ::String,
453
+ value: ::String?
454
+ },
455
+ ],
456
+ ?includes: Array[
457
+ {
458
+ filter_type: ("SIMPLE_PATTERN")?,
459
+ value: ::String?
460
+ },
461
+ ],
462
+ ?manifest_config: {
463
+ action: ("TRANSFER")?,
464
+ format: ("CSV")?,
465
+ source: {
466
+ s3: {
467
+ manifest_object_path: ::String,
468
+ bucket_access_role_arn: ::String,
469
+ s3_bucket_arn: ::String,
470
+ manifest_object_version_id: ::String?
471
+ }
472
+ }?
473
+ },
474
+ ?task_report_config: {
475
+ destination: {
476
+ s3: {
477
+ subdirectory: ::String?,
478
+ s3_bucket_arn: ::String,
479
+ bucket_access_role_arn: ::String
480
+ }?
481
+ }?,
482
+ output_type: ("SUMMARY_ONLY" | "STANDARD")?,
483
+ report_level: ("ERRORS_ONLY" | "SUCCESSES_AND_ERRORS")?,
484
+ object_version_ids: ("INCLUDE" | "NONE")?,
485
+ overrides: {
486
+ transferred: {
487
+ report_level: ("ERRORS_ONLY" | "SUCCESSES_AND_ERRORS")?
488
+ }?,
489
+ verified: {
490
+ report_level: ("ERRORS_ONLY" | "SUCCESSES_AND_ERRORS")?
491
+ }?,
492
+ deleted: {
493
+ report_level: ("ERRORS_ONLY" | "SUCCESSES_AND_ERRORS")?
494
+ }?,
495
+ skipped: {
496
+ report_level: ("ERRORS_ONLY" | "SUCCESSES_AND_ERRORS")?
497
+ }?
498
+ }?
499
+ }
500
+ ) -> _CreateTaskResponseSuccess
501
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTaskResponseSuccess
502
+
503
+ interface _DeleteAgentResponseSuccess
504
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAgentResponse]
505
+ end
506
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#delete_agent-instance_method
507
+ def delete_agent: (
508
+ agent_arn: ::String
509
+ ) -> _DeleteAgentResponseSuccess
510
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAgentResponseSuccess
511
+
512
+ interface _DeleteLocationResponseSuccess
513
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteLocationResponse]
514
+ end
515
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#delete_location-instance_method
516
+ def delete_location: (
517
+ location_arn: ::String
518
+ ) -> _DeleteLocationResponseSuccess
519
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteLocationResponseSuccess
520
+
521
+ interface _DeleteTaskResponseSuccess
522
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteTaskResponse]
523
+ end
524
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#delete_task-instance_method
525
+ def delete_task: (
526
+ task_arn: ::String
527
+ ) -> _DeleteTaskResponseSuccess
528
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteTaskResponseSuccess
529
+
530
+ interface _DescribeAgentResponseSuccess
531
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAgentResponse]
532
+ def agent_arn: () -> ::String
533
+ def name: () -> ::String
534
+ def status: () -> ("ONLINE" | "OFFLINE")
535
+ def last_connection_time: () -> ::Time
536
+ def creation_time: () -> ::Time
537
+ def endpoint_type: () -> ("PUBLIC" | "PRIVATE_LINK" | "FIPS")
538
+ def private_link_config: () -> Types::PrivateLinkConfig
539
+ def platform: () -> Types::Platform
540
+ end
541
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#describe_agent-instance_method
542
+ def describe_agent: (
543
+ agent_arn: ::String
544
+ ) -> _DescribeAgentResponseSuccess
545
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAgentResponseSuccess
546
+
547
+ interface _DescribeDiscoveryJobResponseSuccess
548
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDiscoveryJobResponse]
549
+ def storage_system_arn: () -> ::String
550
+ def discovery_job_arn: () -> ::String
551
+ def collection_duration_minutes: () -> ::Integer
552
+ def status: () -> ("RUNNING" | "WARNING" | "TERMINATED" | "FAILED" | "STOPPED" | "COMPLETED" | "COMPLETED_WITH_ISSUES")
553
+ def job_start_time: () -> ::Time
554
+ def job_end_time: () -> ::Time
555
+ end
556
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#describe_discovery_job-instance_method
557
+ def describe_discovery_job: (
558
+ discovery_job_arn: ::String
559
+ ) -> _DescribeDiscoveryJobResponseSuccess
560
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDiscoveryJobResponseSuccess
561
+
562
+ interface _DescribeLocationAzureBlobResponseSuccess
563
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeLocationAzureBlobResponse]
564
+ def location_arn: () -> ::String
565
+ def location_uri: () -> ::String
566
+ def authentication_type: () -> ("SAS")
567
+ def blob_type: () -> ("BLOCK")
568
+ def access_tier: () -> ("HOT" | "COOL" | "ARCHIVE")
569
+ def agent_arns: () -> ::Array[::String]
570
+ def creation_time: () -> ::Time
571
+ end
572
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#describe_location_azure_blob-instance_method
573
+ def describe_location_azure_blob: (
574
+ location_arn: ::String
575
+ ) -> _DescribeLocationAzureBlobResponseSuccess
576
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeLocationAzureBlobResponseSuccess
577
+
578
+ interface _DescribeLocationEfsResponseSuccess
579
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeLocationEfsResponse]
580
+ def location_arn: () -> ::String
581
+ def location_uri: () -> ::String
582
+ def ec2_config: () -> Types::Ec2Config
583
+ def creation_time: () -> ::Time
584
+ def access_point_arn: () -> ::String
585
+ def file_system_access_role_arn: () -> ::String
586
+ def in_transit_encryption: () -> ("NONE" | "TLS1_2")
587
+ end
588
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#describe_location_efs-instance_method
589
+ def describe_location_efs: (
590
+ location_arn: ::String
591
+ ) -> _DescribeLocationEfsResponseSuccess
592
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeLocationEfsResponseSuccess
593
+
594
+ interface _DescribeLocationFsxLustreResponseSuccess
595
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeLocationFsxLustreResponse]
596
+ def location_arn: () -> ::String
597
+ def location_uri: () -> ::String
598
+ def security_group_arns: () -> ::Array[::String]
599
+ def creation_time: () -> ::Time
600
+ end
601
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#describe_location_fsx_lustre-instance_method
602
+ def describe_location_fsx_lustre: (
603
+ location_arn: ::String
604
+ ) -> _DescribeLocationFsxLustreResponseSuccess
605
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeLocationFsxLustreResponseSuccess
606
+
607
+ interface _DescribeLocationFsxOntapResponseSuccess
608
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeLocationFsxOntapResponse]
609
+ def creation_time: () -> ::Time
610
+ def location_arn: () -> ::String
611
+ def location_uri: () -> ::String
612
+ def protocol: () -> Types::FsxProtocol
613
+ def security_group_arns: () -> ::Array[::String]
614
+ def storage_virtual_machine_arn: () -> ::String
615
+ def fsx_filesystem_arn: () -> ::String
616
+ end
617
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#describe_location_fsx_ontap-instance_method
618
+ def describe_location_fsx_ontap: (
619
+ location_arn: ::String
620
+ ) -> _DescribeLocationFsxOntapResponseSuccess
621
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeLocationFsxOntapResponseSuccess
622
+
623
+ interface _DescribeLocationFsxOpenZfsResponseSuccess
624
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeLocationFsxOpenZfsResponse]
625
+ def location_arn: () -> ::String
626
+ def location_uri: () -> ::String
627
+ def security_group_arns: () -> ::Array[::String]
628
+ def protocol: () -> Types::FsxProtocol
629
+ def creation_time: () -> ::Time
630
+ end
631
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#describe_location_fsx_open_zfs-instance_method
632
+ def describe_location_fsx_open_zfs: (
633
+ location_arn: ::String
634
+ ) -> _DescribeLocationFsxOpenZfsResponseSuccess
635
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeLocationFsxOpenZfsResponseSuccess
636
+
637
+ interface _DescribeLocationFsxWindowsResponseSuccess
638
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeLocationFsxWindowsResponse]
639
+ def location_arn: () -> ::String
640
+ def location_uri: () -> ::String
641
+ def security_group_arns: () -> ::Array[::String]
642
+ def creation_time: () -> ::Time
643
+ def user: () -> ::String
644
+ def domain: () -> ::String
645
+ end
646
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#describe_location_fsx_windows-instance_method
647
+ def describe_location_fsx_windows: (
648
+ location_arn: ::String
649
+ ) -> _DescribeLocationFsxWindowsResponseSuccess
650
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeLocationFsxWindowsResponseSuccess
651
+
652
+ interface _DescribeLocationHdfsResponseSuccess
653
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeLocationHdfsResponse]
654
+ def location_arn: () -> ::String
655
+ def location_uri: () -> ::String
656
+ def name_nodes: () -> ::Array[Types::HdfsNameNode]
657
+ def block_size: () -> ::Integer
658
+ def replication_factor: () -> ::Integer
659
+ def kms_key_provider_uri: () -> ::String
660
+ def qop_configuration: () -> Types::QopConfiguration
661
+ def authentication_type: () -> ("SIMPLE" | "KERBEROS")
662
+ def simple_user: () -> ::String
663
+ def kerberos_principal: () -> ::String
664
+ def agent_arns: () -> ::Array[::String]
665
+ def creation_time: () -> ::Time
666
+ end
667
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#describe_location_hdfs-instance_method
668
+ def describe_location_hdfs: (
669
+ location_arn: ::String
670
+ ) -> _DescribeLocationHdfsResponseSuccess
671
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeLocationHdfsResponseSuccess
672
+
673
+ interface _DescribeLocationNfsResponseSuccess
674
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeLocationNfsResponse]
675
+ def location_arn: () -> ::String
676
+ def location_uri: () -> ::String
677
+ def on_prem_config: () -> Types::OnPremConfig
678
+ def mount_options: () -> Types::NfsMountOptions
679
+ def creation_time: () -> ::Time
680
+ end
681
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#describe_location_nfs-instance_method
682
+ def describe_location_nfs: (
683
+ location_arn: ::String
684
+ ) -> _DescribeLocationNfsResponseSuccess
685
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeLocationNfsResponseSuccess
686
+
687
+ interface _DescribeLocationObjectStorageResponseSuccess
688
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeLocationObjectStorageResponse]
689
+ def location_arn: () -> ::String
690
+ def location_uri: () -> ::String
691
+ def access_key: () -> ::String
692
+ def server_port: () -> ::Integer
693
+ def server_protocol: () -> ("HTTPS" | "HTTP")
694
+ def agent_arns: () -> ::Array[::String]
695
+ def creation_time: () -> ::Time
696
+ def server_certificate: () -> ::String
697
+ end
698
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#describe_location_object_storage-instance_method
699
+ def describe_location_object_storage: (
700
+ location_arn: ::String
701
+ ) -> _DescribeLocationObjectStorageResponseSuccess
702
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeLocationObjectStorageResponseSuccess
703
+
704
+ interface _DescribeLocationS3ResponseSuccess
705
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeLocationS3Response]
706
+ def location_arn: () -> ::String
707
+ def location_uri: () -> ::String
708
+ def s3_storage_class: () -> ("STANDARD" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_INSTANT_RETRIEVAL")
709
+ def s3_config: () -> Types::S3Config
710
+ def agent_arns: () -> ::Array[::String]
711
+ def creation_time: () -> ::Time
712
+ end
713
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#describe_location_s3-instance_method
714
+ def describe_location_s3: (
715
+ location_arn: ::String
716
+ ) -> _DescribeLocationS3ResponseSuccess
717
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeLocationS3ResponseSuccess
718
+
719
+ interface _DescribeLocationSmbResponseSuccess
720
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeLocationSmbResponse]
721
+ def location_arn: () -> ::String
722
+ def location_uri: () -> ::String
723
+ def agent_arns: () -> ::Array[::String]
724
+ def user: () -> ::String
725
+ def domain: () -> ::String
726
+ def mount_options: () -> Types::SmbMountOptions
727
+ def creation_time: () -> ::Time
728
+ end
729
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#describe_location_smb-instance_method
730
+ def describe_location_smb: (
731
+ location_arn: ::String
732
+ ) -> _DescribeLocationSmbResponseSuccess
733
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeLocationSmbResponseSuccess
734
+
735
+ interface _DescribeStorageSystemResponseSuccess
736
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeStorageSystemResponse]
737
+ def storage_system_arn: () -> ::String
738
+ def server_configuration: () -> Types::DiscoveryServerConfiguration
739
+ def system_type: () -> ("NetAppONTAP")
740
+ def agent_arns: () -> ::Array[::String]
741
+ def name: () -> ::String
742
+ def error_message: () -> ::String
743
+ def connectivity_status: () -> ("PASS" | "FAIL" | "UNKNOWN")
744
+ def cloud_watch_log_group_arn: () -> ::String
745
+ def creation_time: () -> ::Time
746
+ def secrets_manager_arn: () -> ::String
747
+ end
748
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#describe_storage_system-instance_method
749
+ def describe_storage_system: (
750
+ storage_system_arn: ::String
751
+ ) -> _DescribeStorageSystemResponseSuccess
752
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStorageSystemResponseSuccess
753
+
754
+ interface _DescribeStorageSystemResourceMetricsResponseSuccess
755
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeStorageSystemResourceMetricsResponse]
756
+ def metrics: () -> ::Array[Types::ResourceMetrics]
757
+ def next_token: () -> ::String
758
+ end
759
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#describe_storage_system_resource_metrics-instance_method
760
+ def describe_storage_system_resource_metrics: (
761
+ discovery_job_arn: ::String,
762
+ resource_type: ("SVM" | "VOLUME" | "CLUSTER"),
763
+ resource_id: ::String,
764
+ ?start_time: ::Time,
765
+ ?end_time: ::Time,
766
+ ?max_results: ::Integer,
767
+ ?next_token: ::String
768
+ ) -> _DescribeStorageSystemResourceMetricsResponseSuccess
769
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStorageSystemResourceMetricsResponseSuccess
770
+
771
+ interface _DescribeStorageSystemResourcesResponseSuccess
772
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeStorageSystemResourcesResponse]
773
+ def resource_details: () -> Types::ResourceDetails
774
+ def next_token: () -> ::String
775
+ end
776
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#describe_storage_system_resources-instance_method
777
+ def describe_storage_system_resources: (
778
+ discovery_job_arn: ::String,
779
+ resource_type: ("SVM" | "VOLUME" | "CLUSTER"),
780
+ ?resource_ids: Array[::String],
781
+ ?filter: Hash[("SVM"), Array[::String]],
782
+ ?max_results: ::Integer,
783
+ ?next_token: ::String
784
+ ) -> _DescribeStorageSystemResourcesResponseSuccess
785
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStorageSystemResourcesResponseSuccess
786
+
787
+ interface _DescribeTaskResponseSuccess
788
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeTaskResponse]
789
+ def task_arn: () -> ::String
790
+ def status: () -> ("AVAILABLE" | "CREATING" | "QUEUED" | "RUNNING" | "UNAVAILABLE")
791
+ def name: () -> ::String
792
+ def current_task_execution_arn: () -> ::String
793
+ def source_location_arn: () -> ::String
794
+ def destination_location_arn: () -> ::String
795
+ def cloud_watch_log_group_arn: () -> ::String
796
+ def source_network_interface_arns: () -> ::Array[::String]
797
+ def destination_network_interface_arns: () -> ::Array[::String]
798
+ def options: () -> Types::Options
799
+ def excludes: () -> ::Array[Types::FilterRule]
800
+ def schedule: () -> Types::TaskSchedule
801
+ def error_code: () -> ::String
802
+ def error_detail: () -> ::String
803
+ def creation_time: () -> ::Time
804
+ def includes: () -> ::Array[Types::FilterRule]
805
+ def manifest_config: () -> Types::ManifestConfig
806
+ def task_report_config: () -> Types::TaskReportConfig
807
+ end
808
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#describe_task-instance_method
809
+ def describe_task: (
810
+ task_arn: ::String
811
+ ) -> _DescribeTaskResponseSuccess
812
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeTaskResponseSuccess
813
+
814
+ interface _DescribeTaskExecutionResponseSuccess
815
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeTaskExecutionResponse]
816
+ def task_execution_arn: () -> ::String
817
+ def status: () -> ("QUEUED" | "LAUNCHING" | "PREPARING" | "TRANSFERRING" | "VERIFYING" | "SUCCESS" | "ERROR")
818
+ def options: () -> Types::Options
819
+ def excludes: () -> ::Array[Types::FilterRule]
820
+ def includes: () -> ::Array[Types::FilterRule]
821
+ def manifest_config: () -> Types::ManifestConfig
822
+ def start_time: () -> ::Time
823
+ def estimated_files_to_transfer: () -> ::Integer
824
+ def estimated_bytes_to_transfer: () -> ::Integer
825
+ def files_transferred: () -> ::Integer
826
+ def bytes_written: () -> ::Integer
827
+ def bytes_transferred: () -> ::Integer
828
+ def bytes_compressed: () -> ::Integer
829
+ def result: () -> Types::TaskExecutionResultDetail
830
+ def task_report_config: () -> Types::TaskReportConfig
831
+ def files_deleted: () -> ::Integer
832
+ def files_skipped: () -> ::Integer
833
+ def files_verified: () -> ::Integer
834
+ def report_result: () -> Types::ReportResult
835
+ def estimated_files_to_delete: () -> ::Integer
836
+ end
837
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#describe_task_execution-instance_method
838
+ def describe_task_execution: (
839
+ task_execution_arn: ::String
840
+ ) -> _DescribeTaskExecutionResponseSuccess
841
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeTaskExecutionResponseSuccess
842
+
843
+ interface _GenerateRecommendationsResponseSuccess
844
+ include ::Seahorse::Client::_ResponseSuccess[Types::GenerateRecommendationsResponse]
845
+ end
846
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#generate_recommendations-instance_method
847
+ def generate_recommendations: (
848
+ discovery_job_arn: ::String,
849
+ resource_ids: Array[::String],
850
+ resource_type: ("SVM" | "VOLUME" | "CLUSTER")
851
+ ) -> _GenerateRecommendationsResponseSuccess
852
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GenerateRecommendationsResponseSuccess
853
+
854
+ interface _ListAgentsResponseSuccess
855
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAgentsResponse]
856
+ def agents: () -> ::Array[Types::AgentListEntry]
857
+ def next_token: () -> ::String
858
+ end
859
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#list_agents-instance_method
860
+ def list_agents: (
861
+ ?max_results: ::Integer,
862
+ ?next_token: ::String
863
+ ) -> _ListAgentsResponseSuccess
864
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAgentsResponseSuccess
865
+
866
+ interface _ListDiscoveryJobsResponseSuccess
867
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDiscoveryJobsResponse]
868
+ def discovery_jobs: () -> ::Array[Types::DiscoveryJobListEntry]
869
+ def next_token: () -> ::String
870
+ end
871
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#list_discovery_jobs-instance_method
872
+ def list_discovery_jobs: (
873
+ ?storage_system_arn: ::String,
874
+ ?max_results: ::Integer,
875
+ ?next_token: ::String
876
+ ) -> _ListDiscoveryJobsResponseSuccess
877
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDiscoveryJobsResponseSuccess
878
+
879
+ interface _ListLocationsResponseSuccess
880
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListLocationsResponse]
881
+ def locations: () -> ::Array[Types::LocationListEntry]
882
+ def next_token: () -> ::String
883
+ end
884
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#list_locations-instance_method
885
+ def list_locations: (
886
+ ?max_results: ::Integer,
887
+ ?next_token: ::String,
888
+ ?filters: Array[
889
+ {
890
+ name: ("LocationUri" | "LocationType" | "CreationTime"),
891
+ values: Array[::String],
892
+ operator: ("Equals" | "NotEquals" | "In" | "LessThanOrEqual" | "LessThan" | "GreaterThanOrEqual" | "GreaterThan" | "Contains" | "NotContains" | "BeginsWith")
893
+ },
894
+ ]
895
+ ) -> _ListLocationsResponseSuccess
896
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLocationsResponseSuccess
897
+
898
+ interface _ListStorageSystemsResponseSuccess
899
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListStorageSystemsResponse]
900
+ def storage_systems: () -> ::Array[Types::StorageSystemListEntry]
901
+ def next_token: () -> ::String
902
+ end
903
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#list_storage_systems-instance_method
904
+ def list_storage_systems: (
905
+ ?max_results: ::Integer,
906
+ ?next_token: ::String
907
+ ) -> _ListStorageSystemsResponseSuccess
908
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStorageSystemsResponseSuccess
909
+
910
+ interface _ListTagsForResourceResponseSuccess
911
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
912
+ def tags: () -> ::Array[Types::TagListEntry]
913
+ def next_token: () -> ::String
914
+ end
915
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#list_tags_for_resource-instance_method
916
+ def list_tags_for_resource: (
917
+ resource_arn: ::String,
918
+ ?max_results: ::Integer,
919
+ ?next_token: ::String
920
+ ) -> _ListTagsForResourceResponseSuccess
921
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
922
+
923
+ interface _ListTaskExecutionsResponseSuccess
924
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTaskExecutionsResponse]
925
+ def task_executions: () -> ::Array[Types::TaskExecutionListEntry]
926
+ def next_token: () -> ::String
927
+ end
928
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#list_task_executions-instance_method
929
+ def list_task_executions: (
930
+ ?task_arn: ::String,
931
+ ?max_results: ::Integer,
932
+ ?next_token: ::String
933
+ ) -> _ListTaskExecutionsResponseSuccess
934
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTaskExecutionsResponseSuccess
935
+
936
+ interface _ListTasksResponseSuccess
937
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTasksResponse]
938
+ def tasks: () -> ::Array[Types::TaskListEntry]
939
+ def next_token: () -> ::String
940
+ end
941
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#list_tasks-instance_method
942
+ def list_tasks: (
943
+ ?max_results: ::Integer,
944
+ ?next_token: ::String,
945
+ ?filters: Array[
946
+ {
947
+ name: ("LocationId" | "CreationTime"),
948
+ values: Array[::String],
949
+ operator: ("Equals" | "NotEquals" | "In" | "LessThanOrEqual" | "LessThan" | "GreaterThanOrEqual" | "GreaterThan" | "Contains" | "NotContains" | "BeginsWith")
950
+ },
951
+ ]
952
+ ) -> _ListTasksResponseSuccess
953
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTasksResponseSuccess
954
+
955
+ interface _RemoveStorageSystemResponseSuccess
956
+ include ::Seahorse::Client::_ResponseSuccess[Types::RemoveStorageSystemResponse]
957
+ end
958
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#remove_storage_system-instance_method
959
+ def remove_storage_system: (
960
+ storage_system_arn: ::String
961
+ ) -> _RemoveStorageSystemResponseSuccess
962
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RemoveStorageSystemResponseSuccess
963
+
964
+ interface _StartDiscoveryJobResponseSuccess
965
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartDiscoveryJobResponse]
966
+ def discovery_job_arn: () -> ::String
967
+ end
968
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#start_discovery_job-instance_method
969
+ def start_discovery_job: (
970
+ storage_system_arn: ::String,
971
+ collection_duration_minutes: ::Integer,
972
+ client_token: ::String,
973
+ ?tags: Array[
974
+ {
975
+ key: ::String,
976
+ value: ::String?
977
+ },
978
+ ]
979
+ ) -> _StartDiscoveryJobResponseSuccess
980
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartDiscoveryJobResponseSuccess
981
+
982
+ interface _StartTaskExecutionResponseSuccess
983
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartTaskExecutionResponse]
984
+ def task_execution_arn: () -> ::String
985
+ end
986
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#start_task_execution-instance_method
987
+ def start_task_execution: (
988
+ task_arn: ::String,
989
+ ?override_options: {
990
+ verify_mode: ("POINT_IN_TIME_CONSISTENT" | "ONLY_FILES_TRANSFERRED" | "NONE")?,
991
+ overwrite_mode: ("ALWAYS" | "NEVER")?,
992
+ atime: ("NONE" | "BEST_EFFORT")?,
993
+ mtime: ("NONE" | "PRESERVE")?,
994
+ uid: ("NONE" | "INT_VALUE" | "NAME" | "BOTH")?,
995
+ gid: ("NONE" | "INT_VALUE" | "NAME" | "BOTH")?,
996
+ preserve_deleted_files: ("PRESERVE" | "REMOVE")?,
997
+ preserve_devices: ("NONE" | "PRESERVE")?,
998
+ posix_permissions: ("NONE" | "PRESERVE")?,
999
+ bytes_per_second: ::Integer?,
1000
+ task_queueing: ("ENABLED" | "DISABLED")?,
1001
+ log_level: ("OFF" | "BASIC" | "TRANSFER")?,
1002
+ transfer_mode: ("CHANGED" | "ALL")?,
1003
+ security_descriptor_copy_flags: ("NONE" | "OWNER_DACL" | "OWNER_DACL_SACL")?,
1004
+ object_tags: ("PRESERVE" | "NONE")?
1005
+ },
1006
+ ?includes: Array[
1007
+ {
1008
+ filter_type: ("SIMPLE_PATTERN")?,
1009
+ value: ::String?
1010
+ },
1011
+ ],
1012
+ ?excludes: Array[
1013
+ {
1014
+ filter_type: ("SIMPLE_PATTERN")?,
1015
+ value: ::String?
1016
+ },
1017
+ ],
1018
+ ?manifest_config: {
1019
+ action: ("TRANSFER")?,
1020
+ format: ("CSV")?,
1021
+ source: {
1022
+ s3: {
1023
+ manifest_object_path: ::String,
1024
+ bucket_access_role_arn: ::String,
1025
+ s3_bucket_arn: ::String,
1026
+ manifest_object_version_id: ::String?
1027
+ }
1028
+ }?
1029
+ },
1030
+ ?task_report_config: {
1031
+ destination: {
1032
+ s3: {
1033
+ subdirectory: ::String?,
1034
+ s3_bucket_arn: ::String,
1035
+ bucket_access_role_arn: ::String
1036
+ }?
1037
+ }?,
1038
+ output_type: ("SUMMARY_ONLY" | "STANDARD")?,
1039
+ report_level: ("ERRORS_ONLY" | "SUCCESSES_AND_ERRORS")?,
1040
+ object_version_ids: ("INCLUDE" | "NONE")?,
1041
+ overrides: {
1042
+ transferred: {
1043
+ report_level: ("ERRORS_ONLY" | "SUCCESSES_AND_ERRORS")?
1044
+ }?,
1045
+ verified: {
1046
+ report_level: ("ERRORS_ONLY" | "SUCCESSES_AND_ERRORS")?
1047
+ }?,
1048
+ deleted: {
1049
+ report_level: ("ERRORS_ONLY" | "SUCCESSES_AND_ERRORS")?
1050
+ }?,
1051
+ skipped: {
1052
+ report_level: ("ERRORS_ONLY" | "SUCCESSES_AND_ERRORS")?
1053
+ }?
1054
+ }?
1055
+ },
1056
+ ?tags: Array[
1057
+ {
1058
+ key: ::String,
1059
+ value: ::String?
1060
+ },
1061
+ ]
1062
+ ) -> _StartTaskExecutionResponseSuccess
1063
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartTaskExecutionResponseSuccess
1064
+
1065
+ interface _StopDiscoveryJobResponseSuccess
1066
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopDiscoveryJobResponse]
1067
+ end
1068
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#stop_discovery_job-instance_method
1069
+ def stop_discovery_job: (
1070
+ discovery_job_arn: ::String
1071
+ ) -> _StopDiscoveryJobResponseSuccess
1072
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopDiscoveryJobResponseSuccess
1073
+
1074
+ interface _TagResourceResponseSuccess
1075
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
1076
+ end
1077
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#tag_resource-instance_method
1078
+ def tag_resource: (
1079
+ resource_arn: ::String,
1080
+ tags: Array[
1081
+ {
1082
+ key: ::String,
1083
+ value: ::String?
1084
+ },
1085
+ ]
1086
+ ) -> _TagResourceResponseSuccess
1087
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
1088
+
1089
+ interface _UntagResourceResponseSuccess
1090
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
1091
+ end
1092
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#untag_resource-instance_method
1093
+ def untag_resource: (
1094
+ resource_arn: ::String,
1095
+ keys: Array[::String]
1096
+ ) -> _UntagResourceResponseSuccess
1097
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
1098
+
1099
+ interface _UpdateAgentResponseSuccess
1100
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAgentResponse]
1101
+ end
1102
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#update_agent-instance_method
1103
+ def update_agent: (
1104
+ agent_arn: ::String,
1105
+ ?name: ::String
1106
+ ) -> _UpdateAgentResponseSuccess
1107
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAgentResponseSuccess
1108
+
1109
+ interface _UpdateDiscoveryJobResponseSuccess
1110
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDiscoveryJobResponse]
1111
+ end
1112
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#update_discovery_job-instance_method
1113
+ def update_discovery_job: (
1114
+ discovery_job_arn: ::String,
1115
+ collection_duration_minutes: ::Integer
1116
+ ) -> _UpdateDiscoveryJobResponseSuccess
1117
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDiscoveryJobResponseSuccess
1118
+
1119
+ interface _UpdateLocationAzureBlobResponseSuccess
1120
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateLocationAzureBlobResponse]
1121
+ end
1122
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#update_location_azure_blob-instance_method
1123
+ def update_location_azure_blob: (
1124
+ location_arn: ::String,
1125
+ ?subdirectory: ::String,
1126
+ ?authentication_type: ("SAS"),
1127
+ ?sas_configuration: {
1128
+ token: ::String
1129
+ },
1130
+ ?blob_type: ("BLOCK"),
1131
+ ?access_tier: ("HOT" | "COOL" | "ARCHIVE"),
1132
+ ?agent_arns: Array[::String]
1133
+ ) -> _UpdateLocationAzureBlobResponseSuccess
1134
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLocationAzureBlobResponseSuccess
1135
+
1136
+ interface _UpdateLocationHdfsResponseSuccess
1137
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateLocationHdfsResponse]
1138
+ end
1139
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#update_location_hdfs-instance_method
1140
+ def update_location_hdfs: (
1141
+ location_arn: ::String,
1142
+ ?subdirectory: ::String,
1143
+ ?name_nodes: Array[
1144
+ {
1145
+ hostname: ::String,
1146
+ port: ::Integer
1147
+ },
1148
+ ],
1149
+ ?block_size: ::Integer,
1150
+ ?replication_factor: ::Integer,
1151
+ ?kms_key_provider_uri: ::String,
1152
+ ?qop_configuration: {
1153
+ rpc_protection: ("DISABLED" | "AUTHENTICATION" | "INTEGRITY" | "PRIVACY")?,
1154
+ data_transfer_protection: ("DISABLED" | "AUTHENTICATION" | "INTEGRITY" | "PRIVACY")?
1155
+ },
1156
+ ?authentication_type: ("SIMPLE" | "KERBEROS"),
1157
+ ?simple_user: ::String,
1158
+ ?kerberos_principal: ::String,
1159
+ ?kerberos_keytab: ::String,
1160
+ ?kerberos_krb_5_conf: ::String,
1161
+ ?agent_arns: Array[::String]
1162
+ ) -> _UpdateLocationHdfsResponseSuccess
1163
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLocationHdfsResponseSuccess
1164
+
1165
+ interface _UpdateLocationNfsResponseSuccess
1166
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateLocationNfsResponse]
1167
+ end
1168
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#update_location_nfs-instance_method
1169
+ def update_location_nfs: (
1170
+ location_arn: ::String,
1171
+ ?subdirectory: ::String,
1172
+ ?on_prem_config: {
1173
+ agent_arns: Array[::String]
1174
+ },
1175
+ ?mount_options: {
1176
+ version: ("AUTOMATIC" | "NFS3" | "NFS4_0" | "NFS4_1")?
1177
+ }
1178
+ ) -> _UpdateLocationNfsResponseSuccess
1179
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLocationNfsResponseSuccess
1180
+
1181
+ interface _UpdateLocationObjectStorageResponseSuccess
1182
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateLocationObjectStorageResponse]
1183
+ end
1184
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#update_location_object_storage-instance_method
1185
+ def update_location_object_storage: (
1186
+ location_arn: ::String,
1187
+ ?server_port: ::Integer,
1188
+ ?server_protocol: ("HTTPS" | "HTTP"),
1189
+ ?subdirectory: ::String,
1190
+ ?access_key: ::String,
1191
+ ?secret_key: ::String,
1192
+ ?agent_arns: Array[::String],
1193
+ ?server_certificate: ::String
1194
+ ) -> _UpdateLocationObjectStorageResponseSuccess
1195
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLocationObjectStorageResponseSuccess
1196
+
1197
+ interface _UpdateLocationSmbResponseSuccess
1198
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateLocationSmbResponse]
1199
+ end
1200
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#update_location_smb-instance_method
1201
+ def update_location_smb: (
1202
+ location_arn: ::String,
1203
+ ?subdirectory: ::String,
1204
+ ?user: ::String,
1205
+ ?domain: ::String,
1206
+ ?password: ::String,
1207
+ ?agent_arns: Array[::String],
1208
+ ?mount_options: {
1209
+ version: ("AUTOMATIC" | "SMB2" | "SMB3" | "SMB1" | "SMB2_0")?
1210
+ }
1211
+ ) -> _UpdateLocationSmbResponseSuccess
1212
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLocationSmbResponseSuccess
1213
+
1214
+ interface _UpdateStorageSystemResponseSuccess
1215
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateStorageSystemResponse]
1216
+ end
1217
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#update_storage_system-instance_method
1218
+ def update_storage_system: (
1219
+ storage_system_arn: ::String,
1220
+ ?server_configuration: {
1221
+ server_hostname: ::String,
1222
+ server_port: ::Integer?
1223
+ },
1224
+ ?agent_arns: Array[::String],
1225
+ ?name: ::String,
1226
+ ?cloud_watch_log_group_arn: ::String,
1227
+ ?credentials: {
1228
+ username: ::String,
1229
+ password: ::String
1230
+ }
1231
+ ) -> _UpdateStorageSystemResponseSuccess
1232
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateStorageSystemResponseSuccess
1233
+
1234
+ interface _UpdateTaskResponseSuccess
1235
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateTaskResponse]
1236
+ end
1237
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#update_task-instance_method
1238
+ def update_task: (
1239
+ task_arn: ::String,
1240
+ ?options: {
1241
+ verify_mode: ("POINT_IN_TIME_CONSISTENT" | "ONLY_FILES_TRANSFERRED" | "NONE")?,
1242
+ overwrite_mode: ("ALWAYS" | "NEVER")?,
1243
+ atime: ("NONE" | "BEST_EFFORT")?,
1244
+ mtime: ("NONE" | "PRESERVE")?,
1245
+ uid: ("NONE" | "INT_VALUE" | "NAME" | "BOTH")?,
1246
+ gid: ("NONE" | "INT_VALUE" | "NAME" | "BOTH")?,
1247
+ preserve_deleted_files: ("PRESERVE" | "REMOVE")?,
1248
+ preserve_devices: ("NONE" | "PRESERVE")?,
1249
+ posix_permissions: ("NONE" | "PRESERVE")?,
1250
+ bytes_per_second: ::Integer?,
1251
+ task_queueing: ("ENABLED" | "DISABLED")?,
1252
+ log_level: ("OFF" | "BASIC" | "TRANSFER")?,
1253
+ transfer_mode: ("CHANGED" | "ALL")?,
1254
+ security_descriptor_copy_flags: ("NONE" | "OWNER_DACL" | "OWNER_DACL_SACL")?,
1255
+ object_tags: ("PRESERVE" | "NONE")?
1256
+ },
1257
+ ?excludes: Array[
1258
+ {
1259
+ filter_type: ("SIMPLE_PATTERN")?,
1260
+ value: ::String?
1261
+ },
1262
+ ],
1263
+ ?schedule: {
1264
+ schedule_expression: ::String
1265
+ },
1266
+ ?name: ::String,
1267
+ ?cloud_watch_log_group_arn: ::String,
1268
+ ?includes: Array[
1269
+ {
1270
+ filter_type: ("SIMPLE_PATTERN")?,
1271
+ value: ::String?
1272
+ },
1273
+ ],
1274
+ ?manifest_config: {
1275
+ action: ("TRANSFER")?,
1276
+ format: ("CSV")?,
1277
+ source: {
1278
+ s3: {
1279
+ manifest_object_path: ::String,
1280
+ bucket_access_role_arn: ::String,
1281
+ s3_bucket_arn: ::String,
1282
+ manifest_object_version_id: ::String?
1283
+ }
1284
+ }?
1285
+ },
1286
+ ?task_report_config: {
1287
+ destination: {
1288
+ s3: {
1289
+ subdirectory: ::String?,
1290
+ s3_bucket_arn: ::String,
1291
+ bucket_access_role_arn: ::String
1292
+ }?
1293
+ }?,
1294
+ output_type: ("SUMMARY_ONLY" | "STANDARD")?,
1295
+ report_level: ("ERRORS_ONLY" | "SUCCESSES_AND_ERRORS")?,
1296
+ object_version_ids: ("INCLUDE" | "NONE")?,
1297
+ overrides: {
1298
+ transferred: {
1299
+ report_level: ("ERRORS_ONLY" | "SUCCESSES_AND_ERRORS")?
1300
+ }?,
1301
+ verified: {
1302
+ report_level: ("ERRORS_ONLY" | "SUCCESSES_AND_ERRORS")?
1303
+ }?,
1304
+ deleted: {
1305
+ report_level: ("ERRORS_ONLY" | "SUCCESSES_AND_ERRORS")?
1306
+ }?,
1307
+ skipped: {
1308
+ report_level: ("ERRORS_ONLY" | "SUCCESSES_AND_ERRORS")?
1309
+ }?
1310
+ }?
1311
+ }
1312
+ ) -> _UpdateTaskResponseSuccess
1313
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateTaskResponseSuccess
1314
+
1315
+ interface _UpdateTaskExecutionResponseSuccess
1316
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateTaskExecutionResponse]
1317
+ end
1318
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#update_task_execution-instance_method
1319
+ def update_task_execution: (
1320
+ task_execution_arn: ::String,
1321
+ options: {
1322
+ verify_mode: ("POINT_IN_TIME_CONSISTENT" | "ONLY_FILES_TRANSFERRED" | "NONE")?,
1323
+ overwrite_mode: ("ALWAYS" | "NEVER")?,
1324
+ atime: ("NONE" | "BEST_EFFORT")?,
1325
+ mtime: ("NONE" | "PRESERVE")?,
1326
+ uid: ("NONE" | "INT_VALUE" | "NAME" | "BOTH")?,
1327
+ gid: ("NONE" | "INT_VALUE" | "NAME" | "BOTH")?,
1328
+ preserve_deleted_files: ("PRESERVE" | "REMOVE")?,
1329
+ preserve_devices: ("NONE" | "PRESERVE")?,
1330
+ posix_permissions: ("NONE" | "PRESERVE")?,
1331
+ bytes_per_second: ::Integer?,
1332
+ task_queueing: ("ENABLED" | "DISABLED")?,
1333
+ log_level: ("OFF" | "BASIC" | "TRANSFER")?,
1334
+ transfer_mode: ("CHANGED" | "ALL")?,
1335
+ security_descriptor_copy_flags: ("NONE" | "OWNER_DACL" | "OWNER_DACL_SACL")?,
1336
+ object_tags: ("PRESERVE" | "NONE")?
1337
+ }
1338
+ ) -> _UpdateTaskExecutionResponseSuccess
1339
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateTaskExecutionResponseSuccess
1340
+ end
1341
+ end
1342
+ end
1343
+