aws-sdk-datasync 1.92.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 +10 -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 -29
- data/lib/aws-sdk-datasync.rb +1 -1
- data/sig/client.rbs +100 -0
- data/sig/types.rbs +78 -0
- metadata +2 -2
data/sig/client.rbs
CHANGED
@@ -1144,6 +1144,92 @@ module Aws
|
|
1144
1144
|
) -> _UpdateLocationAzureBlobResponseSuccess
|
1145
1145
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLocationAzureBlobResponseSuccess
|
1146
1146
|
|
1147
|
+
interface _UpdateLocationEfsResponseSuccess
|
1148
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateLocationEfsResponse]
|
1149
|
+
end
|
1150
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#update_location_efs-instance_method
|
1151
|
+
def update_location_efs: (
|
1152
|
+
location_arn: ::String,
|
1153
|
+
?subdirectory: ::String,
|
1154
|
+
?access_point_arn: ::String,
|
1155
|
+
?file_system_access_role_arn: ::String,
|
1156
|
+
?in_transit_encryption: ("NONE" | "TLS1_2")
|
1157
|
+
) -> _UpdateLocationEfsResponseSuccess
|
1158
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLocationEfsResponseSuccess
|
1159
|
+
|
1160
|
+
interface _UpdateLocationFsxLustreResponseSuccess
|
1161
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateLocationFsxLustreResponse]
|
1162
|
+
end
|
1163
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#update_location_fsx_lustre-instance_method
|
1164
|
+
def update_location_fsx_lustre: (
|
1165
|
+
location_arn: ::String,
|
1166
|
+
?subdirectory: ::String
|
1167
|
+
) -> _UpdateLocationFsxLustreResponseSuccess
|
1168
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLocationFsxLustreResponseSuccess
|
1169
|
+
|
1170
|
+
interface _UpdateLocationFsxOntapResponseSuccess
|
1171
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateLocationFsxOntapResponse]
|
1172
|
+
end
|
1173
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#update_location_fsx_ontap-instance_method
|
1174
|
+
def update_location_fsx_ontap: (
|
1175
|
+
location_arn: ::String,
|
1176
|
+
?protocol: {
|
1177
|
+
nfs: {
|
1178
|
+
mount_options: {
|
1179
|
+
version: ("AUTOMATIC" | "NFS3" | "NFS4_0" | "NFS4_1")?
|
1180
|
+
}?
|
1181
|
+
}?,
|
1182
|
+
smb: {
|
1183
|
+
domain: ::String?,
|
1184
|
+
mount_options: {
|
1185
|
+
version: ("AUTOMATIC" | "SMB2" | "SMB3" | "SMB1" | "SMB2_0")?
|
1186
|
+
}?,
|
1187
|
+
password: ::String?,
|
1188
|
+
user: ::String?
|
1189
|
+
}?
|
1190
|
+
},
|
1191
|
+
?subdirectory: ::String
|
1192
|
+
) -> _UpdateLocationFsxOntapResponseSuccess
|
1193
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLocationFsxOntapResponseSuccess
|
1194
|
+
|
1195
|
+
interface _UpdateLocationFsxOpenZfsResponseSuccess
|
1196
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateLocationFsxOpenZfsResponse]
|
1197
|
+
end
|
1198
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#update_location_fsx_open_zfs-instance_method
|
1199
|
+
def update_location_fsx_open_zfs: (
|
1200
|
+
location_arn: ::String,
|
1201
|
+
?protocol: {
|
1202
|
+
nfs: {
|
1203
|
+
mount_options: {
|
1204
|
+
version: ("AUTOMATIC" | "NFS3" | "NFS4_0" | "NFS4_1")?
|
1205
|
+
}?
|
1206
|
+
}?,
|
1207
|
+
smb: {
|
1208
|
+
domain: ::String?,
|
1209
|
+
mount_options: {
|
1210
|
+
version: ("AUTOMATIC" | "SMB2" | "SMB3" | "SMB1" | "SMB2_0")?
|
1211
|
+
}?,
|
1212
|
+
password: ::String,
|
1213
|
+
user: ::String
|
1214
|
+
}?
|
1215
|
+
},
|
1216
|
+
?subdirectory: ::String
|
1217
|
+
) -> _UpdateLocationFsxOpenZfsResponseSuccess
|
1218
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLocationFsxOpenZfsResponseSuccess
|
1219
|
+
|
1220
|
+
interface _UpdateLocationFsxWindowsResponseSuccess
|
1221
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateLocationFsxWindowsResponse]
|
1222
|
+
end
|
1223
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#update_location_fsx_windows-instance_method
|
1224
|
+
def update_location_fsx_windows: (
|
1225
|
+
location_arn: ::String,
|
1226
|
+
?subdirectory: ::String,
|
1227
|
+
?domain: ::String,
|
1228
|
+
?user: ::String,
|
1229
|
+
?password: ::String
|
1230
|
+
) -> _UpdateLocationFsxWindowsResponseSuccess
|
1231
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLocationFsxWindowsResponseSuccess
|
1232
|
+
|
1147
1233
|
interface _UpdateLocationHdfsResponseSuccess
|
1148
1234
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateLocationHdfsResponse]
|
1149
1235
|
end
|
@@ -1205,6 +1291,20 @@ module Aws
|
|
1205
1291
|
) -> _UpdateLocationObjectStorageResponseSuccess
|
1206
1292
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLocationObjectStorageResponseSuccess
|
1207
1293
|
|
1294
|
+
interface _UpdateLocationS3ResponseSuccess
|
1295
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateLocationS3Response]
|
1296
|
+
end
|
1297
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#update_location_s3-instance_method
|
1298
|
+
def update_location_s3: (
|
1299
|
+
location_arn: ::String,
|
1300
|
+
?subdirectory: ::String,
|
1301
|
+
?s3_storage_class: ("STANDARD" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_INSTANT_RETRIEVAL"),
|
1302
|
+
?s3_config: {
|
1303
|
+
bucket_access_role_arn: ::String
|
1304
|
+
}
|
1305
|
+
) -> _UpdateLocationS3ResponseSuccess
|
1306
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLocationS3ResponseSuccess
|
1307
|
+
|
1208
1308
|
interface _UpdateLocationSmbResponseSuccess
|
1209
1309
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateLocationSmbResponse]
|
1210
1310
|
end
|
data/sig/types.rbs
CHANGED
@@ -659,6 +659,20 @@ module Aws::DataSync
|
|
659
659
|
SENSITIVE: [:password]
|
660
660
|
end
|
661
661
|
|
662
|
+
class FsxUpdateProtocol
|
663
|
+
attr_accessor nfs: Types::FsxProtocolNfs
|
664
|
+
attr_accessor smb: Types::FsxUpdateProtocolSmb
|
665
|
+
SENSITIVE: []
|
666
|
+
end
|
667
|
+
|
668
|
+
class FsxUpdateProtocolSmb
|
669
|
+
attr_accessor domain: ::String
|
670
|
+
attr_accessor mount_options: Types::SmbMountOptions
|
671
|
+
attr_accessor password: ::String
|
672
|
+
attr_accessor user: ::String
|
673
|
+
SENSITIVE: [:password]
|
674
|
+
end
|
675
|
+
|
662
676
|
class GenerateRecommendationsRequest
|
663
677
|
attr_accessor discovery_job_arn: ::String
|
664
678
|
attr_accessor resource_ids: ::Array[::String]
|
@@ -1199,6 +1213,59 @@ module Aws::DataSync
|
|
1199
1213
|
class UpdateLocationAzureBlobResponse < Aws::EmptyStructure
|
1200
1214
|
end
|
1201
1215
|
|
1216
|
+
class UpdateLocationEfsRequest
|
1217
|
+
attr_accessor location_arn: ::String
|
1218
|
+
attr_accessor subdirectory: ::String
|
1219
|
+
attr_accessor access_point_arn: ::String
|
1220
|
+
attr_accessor file_system_access_role_arn: ::String
|
1221
|
+
attr_accessor in_transit_encryption: ("NONE" | "TLS1_2")
|
1222
|
+
SENSITIVE: []
|
1223
|
+
end
|
1224
|
+
|
1225
|
+
class UpdateLocationEfsResponse < Aws::EmptyStructure
|
1226
|
+
end
|
1227
|
+
|
1228
|
+
class UpdateLocationFsxLustreRequest
|
1229
|
+
attr_accessor location_arn: ::String
|
1230
|
+
attr_accessor subdirectory: ::String
|
1231
|
+
SENSITIVE: []
|
1232
|
+
end
|
1233
|
+
|
1234
|
+
class UpdateLocationFsxLustreResponse < Aws::EmptyStructure
|
1235
|
+
end
|
1236
|
+
|
1237
|
+
class UpdateLocationFsxOntapRequest
|
1238
|
+
attr_accessor location_arn: ::String
|
1239
|
+
attr_accessor protocol: Types::FsxUpdateProtocol
|
1240
|
+
attr_accessor subdirectory: ::String
|
1241
|
+
SENSITIVE: []
|
1242
|
+
end
|
1243
|
+
|
1244
|
+
class UpdateLocationFsxOntapResponse < Aws::EmptyStructure
|
1245
|
+
end
|
1246
|
+
|
1247
|
+
class UpdateLocationFsxOpenZfsRequest
|
1248
|
+
attr_accessor location_arn: ::String
|
1249
|
+
attr_accessor protocol: Types::FsxProtocol
|
1250
|
+
attr_accessor subdirectory: ::String
|
1251
|
+
SENSITIVE: []
|
1252
|
+
end
|
1253
|
+
|
1254
|
+
class UpdateLocationFsxOpenZfsResponse < Aws::EmptyStructure
|
1255
|
+
end
|
1256
|
+
|
1257
|
+
class UpdateLocationFsxWindowsRequest
|
1258
|
+
attr_accessor location_arn: ::String
|
1259
|
+
attr_accessor subdirectory: ::String
|
1260
|
+
attr_accessor domain: ::String
|
1261
|
+
attr_accessor user: ::String
|
1262
|
+
attr_accessor password: ::String
|
1263
|
+
SENSITIVE: [:password]
|
1264
|
+
end
|
1265
|
+
|
1266
|
+
class UpdateLocationFsxWindowsResponse < Aws::EmptyStructure
|
1267
|
+
end
|
1268
|
+
|
1202
1269
|
class UpdateLocationHdfsRequest
|
1203
1270
|
attr_accessor location_arn: ::String
|
1204
1271
|
attr_accessor subdirectory: ::String
|
@@ -1245,6 +1312,17 @@ module Aws::DataSync
|
|
1245
1312
|
class UpdateLocationObjectStorageResponse < Aws::EmptyStructure
|
1246
1313
|
end
|
1247
1314
|
|
1315
|
+
class UpdateLocationS3Request
|
1316
|
+
attr_accessor location_arn: ::String
|
1317
|
+
attr_accessor subdirectory: ::String
|
1318
|
+
attr_accessor s3_storage_class: ("STANDARD" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_INSTANT_RETRIEVAL")
|
1319
|
+
attr_accessor s3_config: Types::S3Config
|
1320
|
+
SENSITIVE: []
|
1321
|
+
end
|
1322
|
+
|
1323
|
+
class UpdateLocationS3Response < Aws::EmptyStructure
|
1324
|
+
end
|
1325
|
+
|
1248
1326
|
class UpdateLocationSmbRequest
|
1249
1327
|
attr_accessor location_arn: ::String
|
1250
1328
|
attr_accessor subdirectory: ::String
|
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.94.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-12-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|