aws-sdk-datasync 1.89.0 → 1.91.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datasync/client.rb +153 -72
- data/lib/aws-sdk-datasync/client_api.rb +21 -0
- data/lib/aws-sdk-datasync/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-datasync/endpoints.rb +2 -658
- data/lib/aws-sdk-datasync/plugins/endpoints.rb +1 -126
- data/lib/aws-sdk-datasync/types.rb +572 -163
- data/lib/aws-sdk-datasync.rb +1 -1
- data/sig/client.rbs +7 -1
- data/sig/types.rbs +22 -0
- metadata +4 -4
data/lib/aws-sdk-datasync.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -500,7 +500,8 @@ module Aws
|
|
500
500
|
report_level: ("ERRORS_ONLY" | "SUCCESSES_AND_ERRORS")?
|
501
501
|
}?
|
502
502
|
}?
|
503
|
-
}
|
503
|
+
},
|
504
|
+
?task_mode: ("BASIC" | "ENHANCED")
|
504
505
|
) -> _CreateTaskResponseSuccess
|
505
506
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTaskResponseSuccess
|
506
507
|
|
@@ -809,6 +810,7 @@ module Aws
|
|
809
810
|
def manifest_config: () -> Types::ManifestConfig
|
810
811
|
def task_report_config: () -> Types::TaskReportConfig
|
811
812
|
def schedule_details: () -> Types::TaskScheduleDetails
|
813
|
+
def task_mode: () -> ("BASIC" | "ENHANCED")
|
812
814
|
end
|
813
815
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#describe_task-instance_method
|
814
816
|
def describe_task: (
|
@@ -838,6 +840,10 @@ module Aws
|
|
838
840
|
def files_verified: () -> ::Integer
|
839
841
|
def report_result: () -> Types::ReportResult
|
840
842
|
def estimated_files_to_delete: () -> ::Integer
|
843
|
+
def task_mode: () -> ("BASIC" | "ENHANCED")
|
844
|
+
def files_prepared: () -> ::Integer
|
845
|
+
def files_listed: () -> Types::TaskExecutionFilesListedDetail
|
846
|
+
def files_failed: () -> Types::TaskExecutionFilesFailedDetail
|
841
847
|
end
|
842
848
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#describe_task_execution-instance_method
|
843
849
|
def describe_task_execution: (
|
data/sig/types.rbs
CHANGED
@@ -258,6 +258,7 @@ module Aws::DataSync
|
|
258
258
|
attr_accessor includes: ::Array[Types::FilterRule]
|
259
259
|
attr_accessor manifest_config: Types::ManifestConfig
|
260
260
|
attr_accessor task_report_config: Types::TaskReportConfig
|
261
|
+
attr_accessor task_mode: ("BASIC" | "ENHANCED")
|
261
262
|
SENSITIVE: []
|
262
263
|
end
|
263
264
|
|
@@ -579,6 +580,10 @@ module Aws::DataSync
|
|
579
580
|
attr_accessor files_verified: ::Integer
|
580
581
|
attr_accessor report_result: Types::ReportResult
|
581
582
|
attr_accessor estimated_files_to_delete: ::Integer
|
583
|
+
attr_accessor task_mode: ("BASIC" | "ENHANCED")
|
584
|
+
attr_accessor files_prepared: ::Integer
|
585
|
+
attr_accessor files_listed: Types::TaskExecutionFilesListedDetail
|
586
|
+
attr_accessor files_failed: Types::TaskExecutionFilesFailedDetail
|
582
587
|
SENSITIVE: []
|
583
588
|
end
|
584
589
|
|
@@ -607,6 +612,7 @@ module Aws::DataSync
|
|
607
612
|
attr_accessor manifest_config: Types::ManifestConfig
|
608
613
|
attr_accessor task_report_config: Types::TaskReportConfig
|
609
614
|
attr_accessor schedule_details: Types::TaskScheduleDetails
|
615
|
+
attr_accessor task_mode: ("BASIC" | "ENHANCED")
|
610
616
|
SENSITIVE: []
|
611
617
|
end
|
612
618
|
|
@@ -1073,9 +1079,24 @@ module Aws::DataSync
|
|
1073
1079
|
class TagResourceResponse < Aws::EmptyStructure
|
1074
1080
|
end
|
1075
1081
|
|
1082
|
+
class TaskExecutionFilesFailedDetail
|
1083
|
+
attr_accessor prepare: ::Integer
|
1084
|
+
attr_accessor transfer: ::Integer
|
1085
|
+
attr_accessor verify: ::Integer
|
1086
|
+
attr_accessor delete: ::Integer
|
1087
|
+
SENSITIVE: []
|
1088
|
+
end
|
1089
|
+
|
1090
|
+
class TaskExecutionFilesListedDetail
|
1091
|
+
attr_accessor at_source: ::Integer
|
1092
|
+
attr_accessor at_destination_for_delete: ::Integer
|
1093
|
+
SENSITIVE: []
|
1094
|
+
end
|
1095
|
+
|
1076
1096
|
class TaskExecutionListEntry
|
1077
1097
|
attr_accessor task_execution_arn: ::String
|
1078
1098
|
attr_accessor status: ("QUEUED" | "CANCELLING" | "LAUNCHING" | "PREPARING" | "TRANSFERRING" | "VERIFYING" | "SUCCESS" | "ERROR")
|
1099
|
+
attr_accessor task_mode: ("BASIC" | "ENHANCED")
|
1079
1100
|
SENSITIVE: []
|
1080
1101
|
end
|
1081
1102
|
|
@@ -1103,6 +1124,7 @@ module Aws::DataSync
|
|
1103
1124
|
attr_accessor task_arn: ::String
|
1104
1125
|
attr_accessor status: ("AVAILABLE" | "CREATING" | "QUEUED" | "RUNNING" | "UNAVAILABLE")
|
1105
1126
|
attr_accessor name: ::String
|
1127
|
+
attr_accessor task_mode: ("BASIC" | "ENHANCED")
|
1106
1128
|
SENSITIVE: []
|
1107
1129
|
end
|
1108
1130
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-datasync
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.91.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-10-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.210.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.210.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|