aws-sdk-datasync 1.72.0 → 1.74.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 +401 -206
- data/lib/aws-sdk-datasync/client_api.rb +38 -2
- data/lib/aws-sdk-datasync/types.rb +762 -421
- data/lib/aws-sdk-datasync.rb +1 -1
- data/sig/client.rbs +51 -10
- data/sig/types.rbs +36 -2
- metadata +2 -2
|
@@ -194,6 +194,9 @@ module Aws::DataSync
|
|
|
194
194
|
LocationUri = Shapes::StringShape.new(name: 'LocationUri')
|
|
195
195
|
LogGroupArn = Shapes::StringShape.new(name: 'LogGroupArn')
|
|
196
196
|
LogLevel = Shapes::StringShape.new(name: 'LogLevel')
|
|
197
|
+
ManifestAction = Shapes::StringShape.new(name: 'ManifestAction')
|
|
198
|
+
ManifestConfig = Shapes::StructureShape.new(name: 'ManifestConfig')
|
|
199
|
+
ManifestFormat = Shapes::StringShape.new(name: 'ManifestFormat')
|
|
197
200
|
MaxP95Performance = Shapes::StructureShape.new(name: 'MaxP95Performance')
|
|
198
201
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
|
199
202
|
Metrics = Shapes::ListShape.new(name: 'Metrics')
|
|
@@ -260,9 +263,14 @@ module Aws::DataSync
|
|
|
260
263
|
ResourceMetrics = Shapes::StructureShape.new(name: 'ResourceMetrics')
|
|
261
264
|
S3BucketArn = Shapes::StringShape.new(name: 'S3BucketArn')
|
|
262
265
|
S3Config = Shapes::StructureShape.new(name: 'S3Config')
|
|
266
|
+
S3ManifestConfig = Shapes::StructureShape.new(name: 'S3ManifestConfig')
|
|
267
|
+
S3ObjectVersionId = Shapes::StringShape.new(name: 'S3ObjectVersionId')
|
|
263
268
|
S3StorageClass = Shapes::StringShape.new(name: 'S3StorageClass')
|
|
264
269
|
S3Subdirectory = Shapes::StringShape.new(name: 'S3Subdirectory')
|
|
270
|
+
ScheduleDisabledBy = Shapes::StringShape.new(name: 'ScheduleDisabledBy')
|
|
271
|
+
ScheduleDisabledReason = Shapes::StringShape.new(name: 'ScheduleDisabledReason')
|
|
265
272
|
ScheduleExpressionCron = Shapes::StringShape.new(name: 'ScheduleExpressionCron')
|
|
273
|
+
ScheduleStatus = Shapes::StringShape.new(name: 'ScheduleStatus')
|
|
266
274
|
SecretsManagerArn = Shapes::StringShape.new(name: 'SecretsManagerArn')
|
|
267
275
|
ServerHostname = Shapes::StringShape.new(name: 'ServerHostname')
|
|
268
276
|
SmbDomain = Shapes::StringShape.new(name: 'SmbDomain')
|
|
@@ -272,6 +280,7 @@ module Aws::DataSync
|
|
|
272
280
|
SmbSubdirectory = Shapes::StringShape.new(name: 'SmbSubdirectory')
|
|
273
281
|
SmbUser = Shapes::StringShape.new(name: 'SmbUser')
|
|
274
282
|
SmbVersion = Shapes::StringShape.new(name: 'SmbVersion')
|
|
283
|
+
SourceManifestConfig = Shapes::StructureShape.new(name: 'SourceManifestConfig')
|
|
275
284
|
SourceNetworkInterfaceArns = Shapes::ListShape.new(name: 'SourceNetworkInterfaceArns')
|
|
276
285
|
StartDiscoveryJobRequest = Shapes::StructureShape.new(name: 'StartDiscoveryJobRequest')
|
|
277
286
|
StartDiscoveryJobResponse = Shapes::StructureShape.new(name: 'StartDiscoveryJobResponse')
|
|
@@ -305,6 +314,7 @@ module Aws::DataSync
|
|
|
305
314
|
TaskQueueing = Shapes::StringShape.new(name: 'TaskQueueing')
|
|
306
315
|
TaskReportConfig = Shapes::StructureShape.new(name: 'TaskReportConfig')
|
|
307
316
|
TaskSchedule = Shapes::StructureShape.new(name: 'TaskSchedule')
|
|
317
|
+
TaskScheduleDetails = Shapes::StructureShape.new(name: 'TaskScheduleDetails')
|
|
308
318
|
TaskStatus = Shapes::StringShape.new(name: 'TaskStatus')
|
|
309
319
|
Throughput = Shapes::StructureShape.new(name: 'Throughput')
|
|
310
320
|
Time = Shapes::TimestampShape.new(name: 'Time')
|
|
@@ -528,6 +538,7 @@ module Aws::DataSync
|
|
|
528
538
|
CreateTaskRequest.add_member(:schedule, Shapes::ShapeRef.new(shape: TaskSchedule, location_name: "Schedule"))
|
|
529
539
|
CreateTaskRequest.add_member(:tags, Shapes::ShapeRef.new(shape: InputTagList, location_name: "Tags"))
|
|
530
540
|
CreateTaskRequest.add_member(:includes, Shapes::ShapeRef.new(shape: FilterList, location_name: "Includes"))
|
|
541
|
+
CreateTaskRequest.add_member(:manifest_config, Shapes::ShapeRef.new(shape: ManifestConfig, location_name: "ManifestConfig"))
|
|
531
542
|
CreateTaskRequest.add_member(:task_report_config, Shapes::ShapeRef.new(shape: TaskReportConfig, location_name: "TaskReportConfig"))
|
|
532
543
|
CreateTaskRequest.struct_class = Types::CreateTaskRequest
|
|
533
544
|
|
|
@@ -754,14 +765,15 @@ module Aws::DataSync
|
|
|
754
765
|
DescribeTaskExecutionResponse.add_member(:options, Shapes::ShapeRef.new(shape: Options, location_name: "Options"))
|
|
755
766
|
DescribeTaskExecutionResponse.add_member(:excludes, Shapes::ShapeRef.new(shape: FilterList, location_name: "Excludes"))
|
|
756
767
|
DescribeTaskExecutionResponse.add_member(:includes, Shapes::ShapeRef.new(shape: FilterList, location_name: "Includes"))
|
|
768
|
+
DescribeTaskExecutionResponse.add_member(:manifest_config, Shapes::ShapeRef.new(shape: ManifestConfig, location_name: "ManifestConfig"))
|
|
757
769
|
DescribeTaskExecutionResponse.add_member(:start_time, Shapes::ShapeRef.new(shape: Time, location_name: "StartTime"))
|
|
758
770
|
DescribeTaskExecutionResponse.add_member(:estimated_files_to_transfer, Shapes::ShapeRef.new(shape: long, location_name: "EstimatedFilesToTransfer"))
|
|
759
771
|
DescribeTaskExecutionResponse.add_member(:estimated_bytes_to_transfer, Shapes::ShapeRef.new(shape: long, location_name: "EstimatedBytesToTransfer"))
|
|
760
772
|
DescribeTaskExecutionResponse.add_member(:files_transferred, Shapes::ShapeRef.new(shape: long, location_name: "FilesTransferred"))
|
|
761
773
|
DescribeTaskExecutionResponse.add_member(:bytes_written, Shapes::ShapeRef.new(shape: long, location_name: "BytesWritten"))
|
|
762
774
|
DescribeTaskExecutionResponse.add_member(:bytes_transferred, Shapes::ShapeRef.new(shape: long, location_name: "BytesTransferred"))
|
|
763
|
-
DescribeTaskExecutionResponse.add_member(:result, Shapes::ShapeRef.new(shape: TaskExecutionResultDetail, location_name: "Result"))
|
|
764
775
|
DescribeTaskExecutionResponse.add_member(:bytes_compressed, Shapes::ShapeRef.new(shape: long, location_name: "BytesCompressed"))
|
|
776
|
+
DescribeTaskExecutionResponse.add_member(:result, Shapes::ShapeRef.new(shape: TaskExecutionResultDetail, location_name: "Result"))
|
|
765
777
|
DescribeTaskExecutionResponse.add_member(:task_report_config, Shapes::ShapeRef.new(shape: TaskReportConfig, location_name: "TaskReportConfig"))
|
|
766
778
|
DescribeTaskExecutionResponse.add_member(:files_deleted, Shapes::ShapeRef.new(shape: long, location_name: "FilesDeleted"))
|
|
767
779
|
DescribeTaskExecutionResponse.add_member(:files_skipped, Shapes::ShapeRef.new(shape: long, location_name: "FilesSkipped"))
|
|
@@ -789,7 +801,9 @@ module Aws::DataSync
|
|
|
789
801
|
DescribeTaskResponse.add_member(:error_detail, Shapes::ShapeRef.new(shape: string, location_name: "ErrorDetail"))
|
|
790
802
|
DescribeTaskResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: Time, location_name: "CreationTime"))
|
|
791
803
|
DescribeTaskResponse.add_member(:includes, Shapes::ShapeRef.new(shape: FilterList, location_name: "Includes"))
|
|
804
|
+
DescribeTaskResponse.add_member(:manifest_config, Shapes::ShapeRef.new(shape: ManifestConfig, location_name: "ManifestConfig"))
|
|
792
805
|
DescribeTaskResponse.add_member(:task_report_config, Shapes::ShapeRef.new(shape: TaskReportConfig, location_name: "TaskReportConfig"))
|
|
806
|
+
DescribeTaskResponse.add_member(:schedule_details, Shapes::ShapeRef.new(shape: TaskScheduleDetails, location_name: "ScheduleDetails"))
|
|
793
807
|
DescribeTaskResponse.struct_class = Types::DescribeTaskResponse
|
|
794
808
|
|
|
795
809
|
DestinationNetworkInterfaceArns.member = Shapes::ShapeRef.new(shape: NetworkInterfaceArn)
|
|
@@ -946,6 +960,11 @@ module Aws::DataSync
|
|
|
946
960
|
LocationListEntry.add_member(:location_uri, Shapes::ShapeRef.new(shape: LocationUri, location_name: "LocationUri"))
|
|
947
961
|
LocationListEntry.struct_class = Types::LocationListEntry
|
|
948
962
|
|
|
963
|
+
ManifestConfig.add_member(:action, Shapes::ShapeRef.new(shape: ManifestAction, location_name: "Action"))
|
|
964
|
+
ManifestConfig.add_member(:format, Shapes::ShapeRef.new(shape: ManifestFormat, location_name: "Format"))
|
|
965
|
+
ManifestConfig.add_member(:source, Shapes::ShapeRef.new(shape: SourceManifestConfig, location_name: "Source"))
|
|
966
|
+
ManifestConfig.struct_class = Types::ManifestConfig
|
|
967
|
+
|
|
949
968
|
MaxP95Performance.add_member(:iops_read, Shapes::ShapeRef.new(shape: NonNegativeDouble, location_name: "IopsRead"))
|
|
950
969
|
MaxP95Performance.add_member(:iops_write, Shapes::ShapeRef.new(shape: NonNegativeDouble, location_name: "IopsWrite"))
|
|
951
970
|
MaxP95Performance.add_member(:iops_other, Shapes::ShapeRef.new(shape: NonNegativeDouble, location_name: "IopsOther"))
|
|
@@ -1118,9 +1137,18 @@ module Aws::DataSync
|
|
|
1118
1137
|
S3Config.add_member(:bucket_access_role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, required: true, location_name: "BucketAccessRoleArn"))
|
|
1119
1138
|
S3Config.struct_class = Types::S3Config
|
|
1120
1139
|
|
|
1140
|
+
S3ManifestConfig.add_member(:manifest_object_path, Shapes::ShapeRef.new(shape: S3Subdirectory, required: true, location_name: "ManifestObjectPath"))
|
|
1141
|
+
S3ManifestConfig.add_member(:bucket_access_role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, required: true, location_name: "BucketAccessRoleArn"))
|
|
1142
|
+
S3ManifestConfig.add_member(:s3_bucket_arn, Shapes::ShapeRef.new(shape: S3BucketArn, required: true, location_name: "S3BucketArn"))
|
|
1143
|
+
S3ManifestConfig.add_member(:manifest_object_version_id, Shapes::ShapeRef.new(shape: S3ObjectVersionId, location_name: "ManifestObjectVersionId"))
|
|
1144
|
+
S3ManifestConfig.struct_class = Types::S3ManifestConfig
|
|
1145
|
+
|
|
1121
1146
|
SmbMountOptions.add_member(:version, Shapes::ShapeRef.new(shape: SmbVersion, location_name: "Version"))
|
|
1122
1147
|
SmbMountOptions.struct_class = Types::SmbMountOptions
|
|
1123
1148
|
|
|
1149
|
+
SourceManifestConfig.add_member(:s3, Shapes::ShapeRef.new(shape: S3ManifestConfig, required: true, location_name: "S3"))
|
|
1150
|
+
SourceManifestConfig.struct_class = Types::SourceManifestConfig
|
|
1151
|
+
|
|
1124
1152
|
SourceNetworkInterfaceArns.member = Shapes::ShapeRef.new(shape: NetworkInterfaceArn)
|
|
1125
1153
|
|
|
1126
1154
|
StartDiscoveryJobRequest.add_member(:storage_system_arn, Shapes::ShapeRef.new(shape: StorageSystemArn, required: true, location_name: "StorageSystemArn"))
|
|
@@ -1136,8 +1164,9 @@ module Aws::DataSync
|
|
|
1136
1164
|
StartTaskExecutionRequest.add_member(:override_options, Shapes::ShapeRef.new(shape: Options, location_name: "OverrideOptions"))
|
|
1137
1165
|
StartTaskExecutionRequest.add_member(:includes, Shapes::ShapeRef.new(shape: FilterList, location_name: "Includes"))
|
|
1138
1166
|
StartTaskExecutionRequest.add_member(:excludes, Shapes::ShapeRef.new(shape: FilterList, location_name: "Excludes"))
|
|
1139
|
-
StartTaskExecutionRequest.add_member(:
|
|
1167
|
+
StartTaskExecutionRequest.add_member(:manifest_config, Shapes::ShapeRef.new(shape: ManifestConfig, location_name: "ManifestConfig"))
|
|
1140
1168
|
StartTaskExecutionRequest.add_member(:task_report_config, Shapes::ShapeRef.new(shape: TaskReportConfig, location_name: "TaskReportConfig"))
|
|
1169
|
+
StartTaskExecutionRequest.add_member(:tags, Shapes::ShapeRef.new(shape: InputTagList, location_name: "Tags"))
|
|
1141
1170
|
StartTaskExecutionRequest.struct_class = Types::StartTaskExecutionRequest
|
|
1142
1171
|
|
|
1143
1172
|
StartTaskExecutionResponse.add_member(:task_execution_arn, Shapes::ShapeRef.new(shape: TaskExecutionArn, location_name: "TaskExecutionArn"))
|
|
@@ -1205,8 +1234,14 @@ module Aws::DataSync
|
|
|
1205
1234
|
TaskReportConfig.struct_class = Types::TaskReportConfig
|
|
1206
1235
|
|
|
1207
1236
|
TaskSchedule.add_member(:schedule_expression, Shapes::ShapeRef.new(shape: ScheduleExpressionCron, required: true, location_name: "ScheduleExpression"))
|
|
1237
|
+
TaskSchedule.add_member(:status, Shapes::ShapeRef.new(shape: ScheduleStatus, location_name: "Status"))
|
|
1208
1238
|
TaskSchedule.struct_class = Types::TaskSchedule
|
|
1209
1239
|
|
|
1240
|
+
TaskScheduleDetails.add_member(:status_update_time, Shapes::ShapeRef.new(shape: Time, location_name: "StatusUpdateTime"))
|
|
1241
|
+
TaskScheduleDetails.add_member(:disabled_reason, Shapes::ShapeRef.new(shape: ScheduleDisabledReason, location_name: "DisabledReason"))
|
|
1242
|
+
TaskScheduleDetails.add_member(:disabled_by, Shapes::ShapeRef.new(shape: ScheduleDisabledBy, location_name: "DisabledBy"))
|
|
1243
|
+
TaskScheduleDetails.struct_class = Types::TaskScheduleDetails
|
|
1244
|
+
|
|
1210
1245
|
Throughput.add_member(:read, Shapes::ShapeRef.new(shape: NonNegativeDouble, location_name: "Read"))
|
|
1211
1246
|
Throughput.add_member(:write, Shapes::ShapeRef.new(shape: NonNegativeDouble, location_name: "Write"))
|
|
1212
1247
|
Throughput.add_member(:other, Shapes::ShapeRef.new(shape: NonNegativeDouble, location_name: "Other"))
|
|
@@ -1313,6 +1348,7 @@ module Aws::DataSync
|
|
|
1313
1348
|
UpdateTaskRequest.add_member(:name, Shapes::ShapeRef.new(shape: TagValue, location_name: "Name"))
|
|
1314
1349
|
UpdateTaskRequest.add_member(:cloud_watch_log_group_arn, Shapes::ShapeRef.new(shape: LogGroupArn, location_name: "CloudWatchLogGroupArn"))
|
|
1315
1350
|
UpdateTaskRequest.add_member(:includes, Shapes::ShapeRef.new(shape: FilterList, location_name: "Includes"))
|
|
1351
|
+
UpdateTaskRequest.add_member(:manifest_config, Shapes::ShapeRef.new(shape: ManifestConfig, location_name: "ManifestConfig"))
|
|
1316
1352
|
UpdateTaskRequest.add_member(:task_report_config, Shapes::ShapeRef.new(shape: TaskReportConfig, location_name: "TaskReportConfig"))
|
|
1317
1353
|
UpdateTaskRequest.struct_class = Types::UpdateTaskRequest
|
|
1318
1354
|
|