aws-sdk-datasync 1.93.0 → 1.94.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datasync/client.rb +476 -37
- data/lib/aws-sdk-datasync/client_api.rb +133 -0
- data/lib/aws-sdk-datasync/types.rb +425 -26
- data/lib/aws-sdk-datasync.rb +1 -1
- data/sig/client.rbs +100 -0
- data/sig/types.rbs +78 -0
- metadata +2 -2
@@ -147,6 +147,9 @@ module Aws::DataSync
|
|
147
147
|
FsxProtocol = Shapes::StructureShape.new(name: 'FsxProtocol')
|
148
148
|
FsxProtocolNfs = Shapes::StructureShape.new(name: 'FsxProtocolNfs')
|
149
149
|
FsxProtocolSmb = Shapes::StructureShape.new(name: 'FsxProtocolSmb')
|
150
|
+
FsxUpdateProtocol = Shapes::StructureShape.new(name: 'FsxUpdateProtocol')
|
151
|
+
FsxUpdateProtocolSmb = Shapes::StructureShape.new(name: 'FsxUpdateProtocolSmb')
|
152
|
+
FsxUpdateSmbDomain = Shapes::StringShape.new(name: 'FsxUpdateSmbDomain')
|
150
153
|
FsxWindowsSubdirectory = Shapes::StringShape.new(name: 'FsxWindowsSubdirectory')
|
151
154
|
GenerateRecommendationsRequest = Shapes::StructureShape.new(name: 'GenerateRecommendationsRequest')
|
152
155
|
GenerateRecommendationsResponse = Shapes::StructureShape.new(name: 'GenerateRecommendationsResponse')
|
@@ -333,12 +336,24 @@ module Aws::DataSync
|
|
333
336
|
UpdateDiscoveryJobResponse = Shapes::StructureShape.new(name: 'UpdateDiscoveryJobResponse')
|
334
337
|
UpdateLocationAzureBlobRequest = Shapes::StructureShape.new(name: 'UpdateLocationAzureBlobRequest')
|
335
338
|
UpdateLocationAzureBlobResponse = Shapes::StructureShape.new(name: 'UpdateLocationAzureBlobResponse')
|
339
|
+
UpdateLocationEfsRequest = Shapes::StructureShape.new(name: 'UpdateLocationEfsRequest')
|
340
|
+
UpdateLocationEfsResponse = Shapes::StructureShape.new(name: 'UpdateLocationEfsResponse')
|
341
|
+
UpdateLocationFsxLustreRequest = Shapes::StructureShape.new(name: 'UpdateLocationFsxLustreRequest')
|
342
|
+
UpdateLocationFsxLustreResponse = Shapes::StructureShape.new(name: 'UpdateLocationFsxLustreResponse')
|
343
|
+
UpdateLocationFsxOntapRequest = Shapes::StructureShape.new(name: 'UpdateLocationFsxOntapRequest')
|
344
|
+
UpdateLocationFsxOntapResponse = Shapes::StructureShape.new(name: 'UpdateLocationFsxOntapResponse')
|
345
|
+
UpdateLocationFsxOpenZfsRequest = Shapes::StructureShape.new(name: 'UpdateLocationFsxOpenZfsRequest')
|
346
|
+
UpdateLocationFsxOpenZfsResponse = Shapes::StructureShape.new(name: 'UpdateLocationFsxOpenZfsResponse')
|
347
|
+
UpdateLocationFsxWindowsRequest = Shapes::StructureShape.new(name: 'UpdateLocationFsxWindowsRequest')
|
348
|
+
UpdateLocationFsxWindowsResponse = Shapes::StructureShape.new(name: 'UpdateLocationFsxWindowsResponse')
|
336
349
|
UpdateLocationHdfsRequest = Shapes::StructureShape.new(name: 'UpdateLocationHdfsRequest')
|
337
350
|
UpdateLocationHdfsResponse = Shapes::StructureShape.new(name: 'UpdateLocationHdfsResponse')
|
338
351
|
UpdateLocationNfsRequest = Shapes::StructureShape.new(name: 'UpdateLocationNfsRequest')
|
339
352
|
UpdateLocationNfsResponse = Shapes::StructureShape.new(name: 'UpdateLocationNfsResponse')
|
340
353
|
UpdateLocationObjectStorageRequest = Shapes::StructureShape.new(name: 'UpdateLocationObjectStorageRequest')
|
341
354
|
UpdateLocationObjectStorageResponse = Shapes::StructureShape.new(name: 'UpdateLocationObjectStorageResponse')
|
355
|
+
UpdateLocationS3Request = Shapes::StructureShape.new(name: 'UpdateLocationS3Request')
|
356
|
+
UpdateLocationS3Response = Shapes::StructureShape.new(name: 'UpdateLocationS3Response')
|
342
357
|
UpdateLocationSmbRequest = Shapes::StructureShape.new(name: 'UpdateLocationSmbRequest')
|
343
358
|
UpdateLocationSmbResponse = Shapes::StructureShape.new(name: 'UpdateLocationSmbResponse')
|
344
359
|
UpdateStorageSystemRequest = Shapes::StructureShape.new(name: 'UpdateStorageSystemRequest')
|
@@ -347,6 +362,8 @@ module Aws::DataSync
|
|
347
362
|
UpdateTaskExecutionResponse = Shapes::StructureShape.new(name: 'UpdateTaskExecutionResponse')
|
348
363
|
UpdateTaskRequest = Shapes::StructureShape.new(name: 'UpdateTaskRequest')
|
349
364
|
UpdateTaskResponse = Shapes::StructureShape.new(name: 'UpdateTaskResponse')
|
365
|
+
UpdatedEfsAccessPointArn = Shapes::StringShape.new(name: 'UpdatedEfsAccessPointArn')
|
366
|
+
UpdatedEfsIamRoleArn = Shapes::StringShape.new(name: 'UpdatedEfsIamRoleArn')
|
350
367
|
VerifyMode = Shapes::StringShape.new(name: 'VerifyMode')
|
351
368
|
VpcEndpointId = Shapes::StringShape.new(name: 'VpcEndpointId')
|
352
369
|
long = Shapes::IntegerShape.new(name: 'long')
|
@@ -861,6 +878,16 @@ module Aws::DataSync
|
|
861
878
|
FsxProtocolSmb.add_member(:user, Shapes::ShapeRef.new(shape: SmbUser, required: true, location_name: "User"))
|
862
879
|
FsxProtocolSmb.struct_class = Types::FsxProtocolSmb
|
863
880
|
|
881
|
+
FsxUpdateProtocol.add_member(:nfs, Shapes::ShapeRef.new(shape: FsxProtocolNfs, location_name: "NFS"))
|
882
|
+
FsxUpdateProtocol.add_member(:smb, Shapes::ShapeRef.new(shape: FsxUpdateProtocolSmb, location_name: "SMB"))
|
883
|
+
FsxUpdateProtocol.struct_class = Types::FsxUpdateProtocol
|
884
|
+
|
885
|
+
FsxUpdateProtocolSmb.add_member(:domain, Shapes::ShapeRef.new(shape: FsxUpdateSmbDomain, location_name: "Domain"))
|
886
|
+
FsxUpdateProtocolSmb.add_member(:mount_options, Shapes::ShapeRef.new(shape: SmbMountOptions, location_name: "MountOptions"))
|
887
|
+
FsxUpdateProtocolSmb.add_member(:password, Shapes::ShapeRef.new(shape: SmbPassword, location_name: "Password"))
|
888
|
+
FsxUpdateProtocolSmb.add_member(:user, Shapes::ShapeRef.new(shape: SmbUser, location_name: "User"))
|
889
|
+
FsxUpdateProtocolSmb.struct_class = Types::FsxUpdateProtocolSmb
|
890
|
+
|
864
891
|
GenerateRecommendationsRequest.add_member(:discovery_job_arn, Shapes::ShapeRef.new(shape: DiscoveryJobArn, required: true, location_name: "DiscoveryJobArn"))
|
865
892
|
GenerateRecommendationsRequest.add_member(:resource_ids, Shapes::ShapeRef.new(shape: ResourceIds, required: true, location_name: "ResourceIds"))
|
866
893
|
GenerateRecommendationsRequest.add_member(:resource_type, Shapes::ShapeRef.new(shape: DiscoveryResourceType, required: true, location_name: "ResourceType"))
|
@@ -1299,6 +1326,44 @@ module Aws::DataSync
|
|
1299
1326
|
|
1300
1327
|
UpdateLocationAzureBlobResponse.struct_class = Types::UpdateLocationAzureBlobResponse
|
1301
1328
|
|
1329
|
+
UpdateLocationEfsRequest.add_member(:location_arn, Shapes::ShapeRef.new(shape: LocationArn, required: true, location_name: "LocationArn"))
|
1330
|
+
UpdateLocationEfsRequest.add_member(:subdirectory, Shapes::ShapeRef.new(shape: EfsSubdirectory, location_name: "Subdirectory"))
|
1331
|
+
UpdateLocationEfsRequest.add_member(:access_point_arn, Shapes::ShapeRef.new(shape: UpdatedEfsAccessPointArn, location_name: "AccessPointArn"))
|
1332
|
+
UpdateLocationEfsRequest.add_member(:file_system_access_role_arn, Shapes::ShapeRef.new(shape: UpdatedEfsIamRoleArn, location_name: "FileSystemAccessRoleArn"))
|
1333
|
+
UpdateLocationEfsRequest.add_member(:in_transit_encryption, Shapes::ShapeRef.new(shape: EfsInTransitEncryption, location_name: "InTransitEncryption"))
|
1334
|
+
UpdateLocationEfsRequest.struct_class = Types::UpdateLocationEfsRequest
|
1335
|
+
|
1336
|
+
UpdateLocationEfsResponse.struct_class = Types::UpdateLocationEfsResponse
|
1337
|
+
|
1338
|
+
UpdateLocationFsxLustreRequest.add_member(:location_arn, Shapes::ShapeRef.new(shape: LocationArn, required: true, location_name: "LocationArn"))
|
1339
|
+
UpdateLocationFsxLustreRequest.add_member(:subdirectory, Shapes::ShapeRef.new(shape: SmbSubdirectory, location_name: "Subdirectory"))
|
1340
|
+
UpdateLocationFsxLustreRequest.struct_class = Types::UpdateLocationFsxLustreRequest
|
1341
|
+
|
1342
|
+
UpdateLocationFsxLustreResponse.struct_class = Types::UpdateLocationFsxLustreResponse
|
1343
|
+
|
1344
|
+
UpdateLocationFsxOntapRequest.add_member(:location_arn, Shapes::ShapeRef.new(shape: LocationArn, required: true, location_name: "LocationArn"))
|
1345
|
+
UpdateLocationFsxOntapRequest.add_member(:protocol, Shapes::ShapeRef.new(shape: FsxUpdateProtocol, location_name: "Protocol"))
|
1346
|
+
UpdateLocationFsxOntapRequest.add_member(:subdirectory, Shapes::ShapeRef.new(shape: FsxOntapSubdirectory, location_name: "Subdirectory"))
|
1347
|
+
UpdateLocationFsxOntapRequest.struct_class = Types::UpdateLocationFsxOntapRequest
|
1348
|
+
|
1349
|
+
UpdateLocationFsxOntapResponse.struct_class = Types::UpdateLocationFsxOntapResponse
|
1350
|
+
|
1351
|
+
UpdateLocationFsxOpenZfsRequest.add_member(:location_arn, Shapes::ShapeRef.new(shape: LocationArn, required: true, location_name: "LocationArn"))
|
1352
|
+
UpdateLocationFsxOpenZfsRequest.add_member(:protocol, Shapes::ShapeRef.new(shape: FsxProtocol, location_name: "Protocol"))
|
1353
|
+
UpdateLocationFsxOpenZfsRequest.add_member(:subdirectory, Shapes::ShapeRef.new(shape: SmbSubdirectory, location_name: "Subdirectory"))
|
1354
|
+
UpdateLocationFsxOpenZfsRequest.struct_class = Types::UpdateLocationFsxOpenZfsRequest
|
1355
|
+
|
1356
|
+
UpdateLocationFsxOpenZfsResponse.struct_class = Types::UpdateLocationFsxOpenZfsResponse
|
1357
|
+
|
1358
|
+
UpdateLocationFsxWindowsRequest.add_member(:location_arn, Shapes::ShapeRef.new(shape: LocationArn, required: true, location_name: "LocationArn"))
|
1359
|
+
UpdateLocationFsxWindowsRequest.add_member(:subdirectory, Shapes::ShapeRef.new(shape: FsxWindowsSubdirectory, location_name: "Subdirectory"))
|
1360
|
+
UpdateLocationFsxWindowsRequest.add_member(:domain, Shapes::ShapeRef.new(shape: FsxUpdateSmbDomain, location_name: "Domain"))
|
1361
|
+
UpdateLocationFsxWindowsRequest.add_member(:user, Shapes::ShapeRef.new(shape: SmbUser, location_name: "User"))
|
1362
|
+
UpdateLocationFsxWindowsRequest.add_member(:password, Shapes::ShapeRef.new(shape: SmbPassword, location_name: "Password"))
|
1363
|
+
UpdateLocationFsxWindowsRequest.struct_class = Types::UpdateLocationFsxWindowsRequest
|
1364
|
+
|
1365
|
+
UpdateLocationFsxWindowsResponse.struct_class = Types::UpdateLocationFsxWindowsResponse
|
1366
|
+
|
1302
1367
|
UpdateLocationHdfsRequest.add_member(:location_arn, Shapes::ShapeRef.new(shape: LocationArn, required: true, location_name: "LocationArn"))
|
1303
1368
|
UpdateLocationHdfsRequest.add_member(:subdirectory, Shapes::ShapeRef.new(shape: HdfsSubdirectory, location_name: "Subdirectory"))
|
1304
1369
|
UpdateLocationHdfsRequest.add_member(:name_nodes, Shapes::ShapeRef.new(shape: HdfsNameNodeList, location_name: "NameNodes"))
|
@@ -1336,6 +1401,14 @@ module Aws::DataSync
|
|
1336
1401
|
|
1337
1402
|
UpdateLocationObjectStorageResponse.struct_class = Types::UpdateLocationObjectStorageResponse
|
1338
1403
|
|
1404
|
+
UpdateLocationS3Request.add_member(:location_arn, Shapes::ShapeRef.new(shape: LocationArn, required: true, location_name: "LocationArn"))
|
1405
|
+
UpdateLocationS3Request.add_member(:subdirectory, Shapes::ShapeRef.new(shape: S3Subdirectory, location_name: "Subdirectory"))
|
1406
|
+
UpdateLocationS3Request.add_member(:s3_storage_class, Shapes::ShapeRef.new(shape: S3StorageClass, location_name: "S3StorageClass"))
|
1407
|
+
UpdateLocationS3Request.add_member(:s3_config, Shapes::ShapeRef.new(shape: S3Config, location_name: "S3Config"))
|
1408
|
+
UpdateLocationS3Request.struct_class = Types::UpdateLocationS3Request
|
1409
|
+
|
1410
|
+
UpdateLocationS3Response.struct_class = Types::UpdateLocationS3Response
|
1411
|
+
|
1339
1412
|
UpdateLocationSmbRequest.add_member(:location_arn, Shapes::ShapeRef.new(shape: LocationArn, required: true, location_name: "LocationArn"))
|
1340
1413
|
UpdateLocationSmbRequest.add_member(:subdirectory, Shapes::ShapeRef.new(shape: SmbSubdirectory, location_name: "Subdirectory"))
|
1341
1414
|
UpdateLocationSmbRequest.add_member(:user, Shapes::ShapeRef.new(shape: SmbUser, location_name: "User"))
|
@@ -2018,6 +2091,56 @@ module Aws::DataSync
|
|
2018
2091
|
o.errors << Shapes::ShapeRef.new(shape: InternalException)
|
2019
2092
|
end)
|
2020
2093
|
|
2094
|
+
api.add_operation(:update_location_efs, Seahorse::Model::Operation.new.tap do |o|
|
2095
|
+
o.name = "UpdateLocationEfs"
|
2096
|
+
o.http_method = "POST"
|
2097
|
+
o.http_request_uri = "/"
|
2098
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateLocationEfsRequest)
|
2099
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateLocationEfsResponse)
|
2100
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
2101
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalException)
|
2102
|
+
end)
|
2103
|
+
|
2104
|
+
api.add_operation(:update_location_fsx_lustre, Seahorse::Model::Operation.new.tap do |o|
|
2105
|
+
o.name = "UpdateLocationFsxLustre"
|
2106
|
+
o.http_method = "POST"
|
2107
|
+
o.http_request_uri = "/"
|
2108
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateLocationFsxLustreRequest)
|
2109
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateLocationFsxLustreResponse)
|
2110
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
2111
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalException)
|
2112
|
+
end)
|
2113
|
+
|
2114
|
+
api.add_operation(:update_location_fsx_ontap, Seahorse::Model::Operation.new.tap do |o|
|
2115
|
+
o.name = "UpdateLocationFsxOntap"
|
2116
|
+
o.http_method = "POST"
|
2117
|
+
o.http_request_uri = "/"
|
2118
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateLocationFsxOntapRequest)
|
2119
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateLocationFsxOntapResponse)
|
2120
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
2121
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalException)
|
2122
|
+
end)
|
2123
|
+
|
2124
|
+
api.add_operation(:update_location_fsx_open_zfs, Seahorse::Model::Operation.new.tap do |o|
|
2125
|
+
o.name = "UpdateLocationFsxOpenZfs"
|
2126
|
+
o.http_method = "POST"
|
2127
|
+
o.http_request_uri = "/"
|
2128
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateLocationFsxOpenZfsRequest)
|
2129
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateLocationFsxOpenZfsResponse)
|
2130
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
2131
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalException)
|
2132
|
+
end)
|
2133
|
+
|
2134
|
+
api.add_operation(:update_location_fsx_windows, Seahorse::Model::Operation.new.tap do |o|
|
2135
|
+
o.name = "UpdateLocationFsxWindows"
|
2136
|
+
o.http_method = "POST"
|
2137
|
+
o.http_request_uri = "/"
|
2138
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateLocationFsxWindowsRequest)
|
2139
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateLocationFsxWindowsResponse)
|
2140
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
2141
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalException)
|
2142
|
+
end)
|
2143
|
+
|
2021
2144
|
api.add_operation(:update_location_hdfs, Seahorse::Model::Operation.new.tap do |o|
|
2022
2145
|
o.name = "UpdateLocationHdfs"
|
2023
2146
|
o.http_method = "POST"
|
@@ -2048,6 +2171,16 @@ module Aws::DataSync
|
|
2048
2171
|
o.errors << Shapes::ShapeRef.new(shape: InternalException)
|
2049
2172
|
end)
|
2050
2173
|
|
2174
|
+
api.add_operation(:update_location_s3, Seahorse::Model::Operation.new.tap do |o|
|
2175
|
+
o.name = "UpdateLocationS3"
|
2176
|
+
o.http_method = "POST"
|
2177
|
+
o.http_request_uri = "/"
|
2178
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateLocationS3Request)
|
2179
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateLocationS3Response)
|
2180
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
2181
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalException)
|
2182
|
+
end)
|
2183
|
+
|
2051
2184
|
api.add_operation(:update_location_smb, Seahorse::Model::Operation.new.tap do |o|
|
2052
2185
|
o.name = "UpdateLocationSmb"
|
2053
2186
|
o.http_method = "POST"
|