aws-sdk-datasync 1.63.0 → 1.65.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datasync/client.rb +205 -103
- data/lib/aws-sdk-datasync/client_api.rb +50 -0
- data/lib/aws-sdk-datasync/types.rb +439 -153
- data/lib/aws-sdk-datasync.rb +1 -1
- metadata +2 -2
@@ -218,6 +218,7 @@ module Aws::DataSync
|
|
218
218
|
ObjectStorageServerPort = Shapes::IntegerShape.new(name: 'ObjectStorageServerPort')
|
219
219
|
ObjectStorageServerProtocol = Shapes::StringShape.new(name: 'ObjectStorageServerProtocol')
|
220
220
|
ObjectTags = Shapes::StringShape.new(name: 'ObjectTags')
|
221
|
+
ObjectVersionIds = Shapes::StringShape.new(name: 'ObjectVersionIds')
|
221
222
|
OnPremConfig = Shapes::StructureShape.new(name: 'OnPremConfig')
|
222
223
|
Operator = Shapes::StringShape.new(name: 'Operator')
|
223
224
|
Options = Shapes::StructureShape.new(name: 'Options')
|
@@ -243,6 +244,13 @@ module Aws::DataSync
|
|
243
244
|
RecommendationsConfigMap = Shapes::MapShape.new(name: 'RecommendationsConfigMap')
|
244
245
|
RemoveStorageSystemRequest = Shapes::StructureShape.new(name: 'RemoveStorageSystemRequest')
|
245
246
|
RemoveStorageSystemResponse = Shapes::StructureShape.new(name: 'RemoveStorageSystemResponse')
|
247
|
+
ReportDestination = Shapes::StructureShape.new(name: 'ReportDestination')
|
248
|
+
ReportDestinationS3 = Shapes::StructureShape.new(name: 'ReportDestinationS3')
|
249
|
+
ReportLevel = Shapes::StringShape.new(name: 'ReportLevel')
|
250
|
+
ReportOutputType = Shapes::StringShape.new(name: 'ReportOutputType')
|
251
|
+
ReportOverride = Shapes::StructureShape.new(name: 'ReportOverride')
|
252
|
+
ReportOverrides = Shapes::StructureShape.new(name: 'ReportOverrides')
|
253
|
+
ReportResult = Shapes::StructureShape.new(name: 'ReportResult')
|
246
254
|
ResourceDetails = Shapes::StructureShape.new(name: 'ResourceDetails')
|
247
255
|
ResourceFilters = Shapes::MapShape.new(name: 'ResourceFilters')
|
248
256
|
ResourceId = Shapes::StringShape.new(name: 'ResourceId')
|
@@ -293,6 +301,7 @@ module Aws::DataSync
|
|
293
301
|
TaskList = Shapes::ListShape.new(name: 'TaskList')
|
294
302
|
TaskListEntry = Shapes::StructureShape.new(name: 'TaskListEntry')
|
295
303
|
TaskQueueing = Shapes::StringShape.new(name: 'TaskQueueing')
|
304
|
+
TaskReportConfig = Shapes::StructureShape.new(name: 'TaskReportConfig')
|
296
305
|
TaskSchedule = Shapes::StructureShape.new(name: 'TaskSchedule')
|
297
306
|
TaskStatus = Shapes::StringShape.new(name: 'TaskStatus')
|
298
307
|
Throughput = Shapes::StructureShape.new(name: 'Throughput')
|
@@ -360,6 +369,7 @@ module Aws::DataSync
|
|
360
369
|
Capacity.add_member(:used, Shapes::ShapeRef.new(shape: NonNegativeLong, location_name: "Used"))
|
361
370
|
Capacity.add_member(:provisioned, Shapes::ShapeRef.new(shape: NonNegativeLong, location_name: "Provisioned"))
|
362
371
|
Capacity.add_member(:logical_used, Shapes::ShapeRef.new(shape: NonNegativeLong, location_name: "LogicalUsed"))
|
372
|
+
Capacity.add_member(:cluster_cloud_storage_used, Shapes::ShapeRef.new(shape: NonNegativeLong, location_name: "ClusterCloudStorageUsed"))
|
363
373
|
Capacity.struct_class = Types::Capacity
|
364
374
|
|
365
375
|
CreateAgentRequest.add_member(:activation_key, Shapes::ShapeRef.new(shape: ActivationKey, required: true, location_name: "ActivationKey"))
|
@@ -515,6 +525,7 @@ module Aws::DataSync
|
|
515
525
|
CreateTaskRequest.add_member(:schedule, Shapes::ShapeRef.new(shape: TaskSchedule, location_name: "Schedule"))
|
516
526
|
CreateTaskRequest.add_member(:tags, Shapes::ShapeRef.new(shape: InputTagList, location_name: "Tags"))
|
517
527
|
CreateTaskRequest.add_member(:includes, Shapes::ShapeRef.new(shape: FilterList, location_name: "Includes"))
|
528
|
+
CreateTaskRequest.add_member(:task_report_config, Shapes::ShapeRef.new(shape: TaskReportConfig, location_name: "TaskReportConfig"))
|
518
529
|
CreateTaskRequest.struct_class = Types::CreateTaskRequest
|
519
530
|
|
520
531
|
CreateTaskResponse.add_member(:task_arn, Shapes::ShapeRef.new(shape: TaskArn, location_name: "TaskArn"))
|
@@ -747,6 +758,12 @@ module Aws::DataSync
|
|
747
758
|
DescribeTaskExecutionResponse.add_member(:bytes_transferred, Shapes::ShapeRef.new(shape: long, location_name: "BytesTransferred"))
|
748
759
|
DescribeTaskExecutionResponse.add_member(:result, Shapes::ShapeRef.new(shape: TaskExecutionResultDetail, location_name: "Result"))
|
749
760
|
DescribeTaskExecutionResponse.add_member(:bytes_compressed, Shapes::ShapeRef.new(shape: long, location_name: "BytesCompressed"))
|
761
|
+
DescribeTaskExecutionResponse.add_member(:task_report_config, Shapes::ShapeRef.new(shape: TaskReportConfig, location_name: "TaskReportConfig"))
|
762
|
+
DescribeTaskExecutionResponse.add_member(:files_deleted, Shapes::ShapeRef.new(shape: long, location_name: "FilesDeleted"))
|
763
|
+
DescribeTaskExecutionResponse.add_member(:files_skipped, Shapes::ShapeRef.new(shape: long, location_name: "FilesSkipped"))
|
764
|
+
DescribeTaskExecutionResponse.add_member(:files_verified, Shapes::ShapeRef.new(shape: long, location_name: "FilesVerified"))
|
765
|
+
DescribeTaskExecutionResponse.add_member(:report_result, Shapes::ShapeRef.new(shape: ReportResult, location_name: "ReportResult"))
|
766
|
+
DescribeTaskExecutionResponse.add_member(:estimated_files_to_delete, Shapes::ShapeRef.new(shape: long, location_name: "EstimatedFilesToDelete"))
|
750
767
|
DescribeTaskExecutionResponse.struct_class = Types::DescribeTaskExecutionResponse
|
751
768
|
|
752
769
|
DescribeTaskRequest.add_member(:task_arn, Shapes::ShapeRef.new(shape: TaskArn, required: true, location_name: "TaskArn"))
|
@@ -768,6 +785,7 @@ module Aws::DataSync
|
|
768
785
|
DescribeTaskResponse.add_member(:error_detail, Shapes::ShapeRef.new(shape: string, location_name: "ErrorDetail"))
|
769
786
|
DescribeTaskResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: Time, location_name: "CreationTime"))
|
770
787
|
DescribeTaskResponse.add_member(:includes, Shapes::ShapeRef.new(shape: FilterList, location_name: "Includes"))
|
788
|
+
DescribeTaskResponse.add_member(:task_report_config, Shapes::ShapeRef.new(shape: TaskReportConfig, location_name: "TaskReportConfig"))
|
771
789
|
DescribeTaskResponse.struct_class = Types::DescribeTaskResponse
|
772
790
|
|
773
791
|
DestinationNetworkInterfaceArns.member = Shapes::ShapeRef.new(shape: NetworkInterfaceArn)
|
@@ -950,6 +968,7 @@ module Aws::DataSync
|
|
950
968
|
NetAppONTAPCluster.add_member(:recommendations, Shapes::ShapeRef.new(shape: Recommendations, location_name: "Recommendations"))
|
951
969
|
NetAppONTAPCluster.add_member(:recommendation_status, Shapes::ShapeRef.new(shape: RecommendationStatus, location_name: "RecommendationStatus"))
|
952
970
|
NetAppONTAPCluster.add_member(:lun_count, Shapes::ShapeRef.new(shape: NonNegativeLong, location_name: "LunCount"))
|
971
|
+
NetAppONTAPCluster.add_member(:cluster_cloud_storage_used, Shapes::ShapeRef.new(shape: NonNegativeLong, location_name: "ClusterCloudStorageUsed"))
|
953
972
|
NetAppONTAPCluster.struct_class = Types::NetAppONTAPCluster
|
954
973
|
|
955
974
|
NetAppONTAPClusters.member = Shapes::ShapeRef.new(shape: NetAppONTAPCluster)
|
@@ -1050,6 +1069,28 @@ module Aws::DataSync
|
|
1050
1069
|
|
1051
1070
|
RemoveStorageSystemResponse.struct_class = Types::RemoveStorageSystemResponse
|
1052
1071
|
|
1072
|
+
ReportDestination.add_member(:s3, Shapes::ShapeRef.new(shape: ReportDestinationS3, location_name: "S3"))
|
1073
|
+
ReportDestination.struct_class = Types::ReportDestination
|
1074
|
+
|
1075
|
+
ReportDestinationS3.add_member(:subdirectory, Shapes::ShapeRef.new(shape: S3Subdirectory, location_name: "Subdirectory"))
|
1076
|
+
ReportDestinationS3.add_member(:s3_bucket_arn, Shapes::ShapeRef.new(shape: S3BucketArn, required: true, location_name: "S3BucketArn"))
|
1077
|
+
ReportDestinationS3.add_member(:bucket_access_role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, required: true, location_name: "BucketAccessRoleArn"))
|
1078
|
+
ReportDestinationS3.struct_class = Types::ReportDestinationS3
|
1079
|
+
|
1080
|
+
ReportOverride.add_member(:report_level, Shapes::ShapeRef.new(shape: ReportLevel, location_name: "ReportLevel"))
|
1081
|
+
ReportOverride.struct_class = Types::ReportOverride
|
1082
|
+
|
1083
|
+
ReportOverrides.add_member(:transferred, Shapes::ShapeRef.new(shape: ReportOverride, location_name: "Transferred"))
|
1084
|
+
ReportOverrides.add_member(:verified, Shapes::ShapeRef.new(shape: ReportOverride, location_name: "Verified"))
|
1085
|
+
ReportOverrides.add_member(:deleted, Shapes::ShapeRef.new(shape: ReportOverride, location_name: "Deleted"))
|
1086
|
+
ReportOverrides.add_member(:skipped, Shapes::ShapeRef.new(shape: ReportOverride, location_name: "Skipped"))
|
1087
|
+
ReportOverrides.struct_class = Types::ReportOverrides
|
1088
|
+
|
1089
|
+
ReportResult.add_member(:status, Shapes::ShapeRef.new(shape: PhaseStatus, location_name: "Status"))
|
1090
|
+
ReportResult.add_member(:error_code, Shapes::ShapeRef.new(shape: string, location_name: "ErrorCode"))
|
1091
|
+
ReportResult.add_member(:error_detail, Shapes::ShapeRef.new(shape: string, location_name: "ErrorDetail"))
|
1092
|
+
ReportResult.struct_class = Types::ReportResult
|
1093
|
+
|
1053
1094
|
ResourceDetails.add_member(:net_app_ontapsv_ms, Shapes::ShapeRef.new(shape: NetAppONTAPSVMs, location_name: "NetAppONTAPSVMs"))
|
1054
1095
|
ResourceDetails.add_member(:net_app_ontap_volumes, Shapes::ShapeRef.new(shape: NetAppONTAPVolumes, location_name: "NetAppONTAPVolumes"))
|
1055
1096
|
ResourceDetails.add_member(:net_app_ontap_clusters, Shapes::ShapeRef.new(shape: NetAppONTAPClusters, location_name: "NetAppONTAPClusters"))
|
@@ -1089,6 +1130,7 @@ module Aws::DataSync
|
|
1089
1130
|
StartTaskExecutionRequest.add_member(:includes, Shapes::ShapeRef.new(shape: FilterList, location_name: "Includes"))
|
1090
1131
|
StartTaskExecutionRequest.add_member(:excludes, Shapes::ShapeRef.new(shape: FilterList, location_name: "Excludes"))
|
1091
1132
|
StartTaskExecutionRequest.add_member(:tags, Shapes::ShapeRef.new(shape: InputTagList, location_name: "Tags"))
|
1133
|
+
StartTaskExecutionRequest.add_member(:task_report_config, Shapes::ShapeRef.new(shape: TaskReportConfig, location_name: "TaskReportConfig"))
|
1092
1134
|
StartTaskExecutionRequest.struct_class = Types::StartTaskExecutionRequest
|
1093
1135
|
|
1094
1136
|
StartTaskExecutionResponse.add_member(:task_execution_arn, Shapes::ShapeRef.new(shape: TaskExecutionArn, location_name: "TaskExecutionArn"))
|
@@ -1148,6 +1190,13 @@ module Aws::DataSync
|
|
1148
1190
|
TaskListEntry.add_member(:name, Shapes::ShapeRef.new(shape: TagValue, location_name: "Name"))
|
1149
1191
|
TaskListEntry.struct_class = Types::TaskListEntry
|
1150
1192
|
|
1193
|
+
TaskReportConfig.add_member(:destination, Shapes::ShapeRef.new(shape: ReportDestination, location_name: "Destination"))
|
1194
|
+
TaskReportConfig.add_member(:output_type, Shapes::ShapeRef.new(shape: ReportOutputType, location_name: "OutputType"))
|
1195
|
+
TaskReportConfig.add_member(:report_level, Shapes::ShapeRef.new(shape: ReportLevel, location_name: "ReportLevel"))
|
1196
|
+
TaskReportConfig.add_member(:object_version_ids, Shapes::ShapeRef.new(shape: ObjectVersionIds, location_name: "ObjectVersionIds"))
|
1197
|
+
TaskReportConfig.add_member(:overrides, Shapes::ShapeRef.new(shape: ReportOverrides, location_name: "Overrides"))
|
1198
|
+
TaskReportConfig.struct_class = Types::TaskReportConfig
|
1199
|
+
|
1151
1200
|
TaskSchedule.add_member(:schedule_expression, Shapes::ShapeRef.new(shape: ScheduleExpressionCron, required: true, location_name: "ScheduleExpression"))
|
1152
1201
|
TaskSchedule.struct_class = Types::TaskSchedule
|
1153
1202
|
|
@@ -1257,6 +1306,7 @@ module Aws::DataSync
|
|
1257
1306
|
UpdateTaskRequest.add_member(:name, Shapes::ShapeRef.new(shape: TagValue, location_name: "Name"))
|
1258
1307
|
UpdateTaskRequest.add_member(:cloud_watch_log_group_arn, Shapes::ShapeRef.new(shape: LogGroupArn, location_name: "CloudWatchLogGroupArn"))
|
1259
1308
|
UpdateTaskRequest.add_member(:includes, Shapes::ShapeRef.new(shape: FilterList, location_name: "Includes"))
|
1309
|
+
UpdateTaskRequest.add_member(:task_report_config, Shapes::ShapeRef.new(shape: TaskReportConfig, location_name: "TaskReportConfig"))
|
1260
1310
|
UpdateTaskRequest.struct_class = Types::UpdateTaskRequest
|
1261
1311
|
|
1262
1312
|
UpdateTaskResponse.struct_class = Types::UpdateTaskResponse
|