aws-sdk-datasync 1.119.0 → 1.121.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 +259 -15
- data/lib/aws-sdk-datasync/client_api.rb +21 -2
- data/lib/aws-sdk-datasync/types.rb +312 -20
- data/lib/aws-sdk-datasync.rb +1 -1
- data/sig/client.rbs +90 -11
- data/sig/types.rbs +19 -0
- metadata +3 -3
data/sig/client.rbs
CHANGED
|
@@ -199,8 +199,19 @@ module Aws
|
|
|
199
199
|
mount_options: {
|
|
200
200
|
version: ("AUTOMATIC" | "SMB2" | "SMB3" | "SMB1" | "SMB2_0")?
|
|
201
201
|
}?,
|
|
202
|
-
password: ::String
|
|
203
|
-
user: ::String
|
|
202
|
+
password: ::String?,
|
|
203
|
+
user: ::String,
|
|
204
|
+
managed_secret_config: {
|
|
205
|
+
secret_arn: ::String?
|
|
206
|
+
}?,
|
|
207
|
+
cmk_secret_config: {
|
|
208
|
+
secret_arn: ::String?,
|
|
209
|
+
kms_key_arn: ::String?
|
|
210
|
+
}?,
|
|
211
|
+
custom_secret_config: {
|
|
212
|
+
secret_arn: ::String?,
|
|
213
|
+
secret_access_role_arn: ::String?
|
|
214
|
+
}?
|
|
204
215
|
}?
|
|
205
216
|
},
|
|
206
217
|
security_group_arns: Array[::String],
|
|
@@ -233,8 +244,19 @@ module Aws
|
|
|
233
244
|
mount_options: {
|
|
234
245
|
version: ("AUTOMATIC" | "SMB2" | "SMB3" | "SMB1" | "SMB2_0")?
|
|
235
246
|
}?,
|
|
236
|
-
password: ::String
|
|
237
|
-
user: ::String
|
|
247
|
+
password: ::String?,
|
|
248
|
+
user: ::String,
|
|
249
|
+
managed_secret_config: {
|
|
250
|
+
secret_arn: ::String?
|
|
251
|
+
}?,
|
|
252
|
+
cmk_secret_config: {
|
|
253
|
+
secret_arn: ::String?,
|
|
254
|
+
kms_key_arn: ::String?
|
|
255
|
+
}?,
|
|
256
|
+
custom_secret_config: {
|
|
257
|
+
secret_arn: ::String?,
|
|
258
|
+
secret_access_role_arn: ::String?
|
|
259
|
+
}?
|
|
238
260
|
}?
|
|
239
261
|
},
|
|
240
262
|
security_group_arns: Array[::String],
|
|
@@ -265,7 +287,15 @@ module Aws
|
|
|
265
287
|
],
|
|
266
288
|
user: ::String,
|
|
267
289
|
?domain: ::String,
|
|
268
|
-
password: ::String
|
|
290
|
+
?password: ::String,
|
|
291
|
+
?cmk_secret_config: {
|
|
292
|
+
secret_arn: ::String?,
|
|
293
|
+
kms_key_arn: ::String?
|
|
294
|
+
},
|
|
295
|
+
?custom_secret_config: {
|
|
296
|
+
secret_arn: ::String?,
|
|
297
|
+
secret_access_role_arn: ::String?
|
|
298
|
+
}
|
|
269
299
|
) -> _CreateLocationFsxWindowsResponseSuccess
|
|
270
300
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLocationFsxWindowsResponseSuccess
|
|
271
301
|
|
|
@@ -300,7 +330,15 @@ module Aws
|
|
|
300
330
|
key: ::String,
|
|
301
331
|
value: ::String?
|
|
302
332
|
},
|
|
303
|
-
]
|
|
333
|
+
],
|
|
334
|
+
?cmk_secret_config: {
|
|
335
|
+
secret_arn: ::String?,
|
|
336
|
+
kms_key_arn: ::String?
|
|
337
|
+
},
|
|
338
|
+
?custom_secret_config: {
|
|
339
|
+
secret_arn: ::String?,
|
|
340
|
+
secret_access_role_arn: ::String?
|
|
341
|
+
}
|
|
304
342
|
) -> _CreateLocationHdfsResponseSuccess
|
|
305
343
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLocationHdfsResponseSuccess
|
|
306
344
|
|
|
@@ -639,6 +677,9 @@ module Aws
|
|
|
639
677
|
def creation_time: () -> ::Time
|
|
640
678
|
def user: () -> ::String
|
|
641
679
|
def domain: () -> ::String
|
|
680
|
+
def managed_secret_config: () -> Types::ManagedSecretConfig
|
|
681
|
+
def cmk_secret_config: () -> Types::CmkSecretConfig
|
|
682
|
+
def custom_secret_config: () -> Types::CustomSecretConfig
|
|
642
683
|
end
|
|
643
684
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#describe_location_fsx_windows-instance_method
|
|
644
685
|
def describe_location_fsx_windows: (
|
|
@@ -660,6 +701,9 @@ module Aws
|
|
|
660
701
|
def kerberos_principal: () -> ::String
|
|
661
702
|
def agent_arns: () -> ::Array[::String]
|
|
662
703
|
def creation_time: () -> ::Time
|
|
704
|
+
def managed_secret_config: () -> Types::ManagedSecretConfig
|
|
705
|
+
def cmk_secret_config: () -> Types::CmkSecretConfig
|
|
706
|
+
def custom_secret_config: () -> Types::CustomSecretConfig
|
|
663
707
|
end
|
|
664
708
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#describe_location_hdfs-instance_method
|
|
665
709
|
def describe_location_hdfs: (
|
|
@@ -1071,7 +1115,15 @@ module Aws
|
|
|
1071
1115
|
version: ("AUTOMATIC" | "SMB2" | "SMB3" | "SMB1" | "SMB2_0")?
|
|
1072
1116
|
}?,
|
|
1073
1117
|
password: ::String?,
|
|
1074
|
-
user: ::String
|
|
1118
|
+
user: ::String?,
|
|
1119
|
+
cmk_secret_config: {
|
|
1120
|
+
secret_arn: ::String?,
|
|
1121
|
+
kms_key_arn: ::String?
|
|
1122
|
+
}?,
|
|
1123
|
+
custom_secret_config: {
|
|
1124
|
+
secret_arn: ::String?,
|
|
1125
|
+
secret_access_role_arn: ::String?
|
|
1126
|
+
}?
|
|
1075
1127
|
}?
|
|
1076
1128
|
},
|
|
1077
1129
|
?subdirectory: ::String
|
|
@@ -1095,8 +1147,19 @@ module Aws
|
|
|
1095
1147
|
mount_options: {
|
|
1096
1148
|
version: ("AUTOMATIC" | "SMB2" | "SMB3" | "SMB1" | "SMB2_0")?
|
|
1097
1149
|
}?,
|
|
1098
|
-
password: ::String
|
|
1099
|
-
user: ::String
|
|
1150
|
+
password: ::String?,
|
|
1151
|
+
user: ::String,
|
|
1152
|
+
managed_secret_config: {
|
|
1153
|
+
secret_arn: ::String?
|
|
1154
|
+
}?,
|
|
1155
|
+
cmk_secret_config: {
|
|
1156
|
+
secret_arn: ::String?,
|
|
1157
|
+
kms_key_arn: ::String?
|
|
1158
|
+
}?,
|
|
1159
|
+
custom_secret_config: {
|
|
1160
|
+
secret_arn: ::String?,
|
|
1161
|
+
secret_access_role_arn: ::String?
|
|
1162
|
+
}?
|
|
1100
1163
|
}?
|
|
1101
1164
|
},
|
|
1102
1165
|
?subdirectory: ::String
|
|
@@ -1112,7 +1175,15 @@ module Aws
|
|
|
1112
1175
|
?subdirectory: ::String,
|
|
1113
1176
|
?domain: ::String,
|
|
1114
1177
|
?user: ::String,
|
|
1115
|
-
?password: ::String
|
|
1178
|
+
?password: ::String,
|
|
1179
|
+
?cmk_secret_config: {
|
|
1180
|
+
secret_arn: ::String?,
|
|
1181
|
+
kms_key_arn: ::String?
|
|
1182
|
+
},
|
|
1183
|
+
?custom_secret_config: {
|
|
1184
|
+
secret_arn: ::String?,
|
|
1185
|
+
secret_access_role_arn: ::String?
|
|
1186
|
+
}
|
|
1116
1187
|
) -> _UpdateLocationFsxWindowsResponseSuccess
|
|
1117
1188
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLocationFsxWindowsResponseSuccess
|
|
1118
1189
|
|
|
@@ -1141,7 +1212,15 @@ module Aws
|
|
|
1141
1212
|
?kerberos_principal: ::String,
|
|
1142
1213
|
?kerberos_keytab: ::String,
|
|
1143
1214
|
?kerberos_krb_5_conf: ::String,
|
|
1144
|
-
?agent_arns: Array[::String]
|
|
1215
|
+
?agent_arns: Array[::String],
|
|
1216
|
+
?cmk_secret_config: {
|
|
1217
|
+
secret_arn: ::String?,
|
|
1218
|
+
kms_key_arn: ::String?
|
|
1219
|
+
},
|
|
1220
|
+
?custom_secret_config: {
|
|
1221
|
+
secret_arn: ::String?,
|
|
1222
|
+
secret_access_role_arn: ::String?
|
|
1223
|
+
}
|
|
1145
1224
|
) -> _UpdateLocationHdfsResponseSuccess
|
|
1146
1225
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLocationHdfsResponseSuccess
|
|
1147
1226
|
|
data/sig/types.rbs
CHANGED
|
@@ -134,6 +134,8 @@ module Aws::DataSync
|
|
|
134
134
|
attr_accessor user: ::String
|
|
135
135
|
attr_accessor domain: ::String
|
|
136
136
|
attr_accessor password: ::String
|
|
137
|
+
attr_accessor cmk_secret_config: Types::CmkSecretConfig
|
|
138
|
+
attr_accessor custom_secret_config: Types::CustomSecretConfig
|
|
137
139
|
SENSITIVE: [:password]
|
|
138
140
|
end
|
|
139
141
|
|
|
@@ -156,6 +158,8 @@ module Aws::DataSync
|
|
|
156
158
|
attr_accessor kerberos_krb_5_conf: ::String
|
|
157
159
|
attr_accessor agent_arns: ::Array[::String]
|
|
158
160
|
attr_accessor tags: ::Array[Types::TagListEntry]
|
|
161
|
+
attr_accessor cmk_secret_config: Types::CmkSecretConfig
|
|
162
|
+
attr_accessor custom_secret_config: Types::CustomSecretConfig
|
|
159
163
|
SENSITIVE: []
|
|
160
164
|
end
|
|
161
165
|
|
|
@@ -396,6 +400,9 @@ module Aws::DataSync
|
|
|
396
400
|
attr_accessor creation_time: ::Time
|
|
397
401
|
attr_accessor user: ::String
|
|
398
402
|
attr_accessor domain: ::String
|
|
403
|
+
attr_accessor managed_secret_config: Types::ManagedSecretConfig
|
|
404
|
+
attr_accessor cmk_secret_config: Types::CmkSecretConfig
|
|
405
|
+
attr_accessor custom_secret_config: Types::CustomSecretConfig
|
|
399
406
|
SENSITIVE: []
|
|
400
407
|
end
|
|
401
408
|
|
|
@@ -417,6 +424,9 @@ module Aws::DataSync
|
|
|
417
424
|
attr_accessor kerberos_principal: ::String
|
|
418
425
|
attr_accessor agent_arns: ::Array[::String]
|
|
419
426
|
attr_accessor creation_time: ::Time
|
|
427
|
+
attr_accessor managed_secret_config: Types::ManagedSecretConfig
|
|
428
|
+
attr_accessor cmk_secret_config: Types::CmkSecretConfig
|
|
429
|
+
attr_accessor custom_secret_config: Types::CustomSecretConfig
|
|
420
430
|
SENSITIVE: []
|
|
421
431
|
end
|
|
422
432
|
|
|
@@ -592,6 +602,9 @@ module Aws::DataSync
|
|
|
592
602
|
attr_accessor mount_options: Types::SmbMountOptions
|
|
593
603
|
attr_accessor password: ::String
|
|
594
604
|
attr_accessor user: ::String
|
|
605
|
+
attr_accessor managed_secret_config: Types::ManagedSecretConfig
|
|
606
|
+
attr_accessor cmk_secret_config: Types::CmkSecretConfig
|
|
607
|
+
attr_accessor custom_secret_config: Types::CustomSecretConfig
|
|
595
608
|
SENSITIVE: [:password]
|
|
596
609
|
end
|
|
597
610
|
|
|
@@ -606,6 +619,8 @@ module Aws::DataSync
|
|
|
606
619
|
attr_accessor mount_options: Types::SmbMountOptions
|
|
607
620
|
attr_accessor password: ::String
|
|
608
621
|
attr_accessor user: ::String
|
|
622
|
+
attr_accessor cmk_secret_config: Types::CmkSecretConfig
|
|
623
|
+
attr_accessor custom_secret_config: Types::CustomSecretConfig
|
|
609
624
|
SENSITIVE: [:password]
|
|
610
625
|
end
|
|
611
626
|
|
|
@@ -1018,6 +1033,8 @@ module Aws::DataSync
|
|
|
1018
1033
|
attr_accessor domain: ::String
|
|
1019
1034
|
attr_accessor user: ::String
|
|
1020
1035
|
attr_accessor password: ::String
|
|
1036
|
+
attr_accessor cmk_secret_config: Types::CmkSecretConfig
|
|
1037
|
+
attr_accessor custom_secret_config: Types::CustomSecretConfig
|
|
1021
1038
|
SENSITIVE: [:password]
|
|
1022
1039
|
end
|
|
1023
1040
|
|
|
@@ -1038,6 +1055,8 @@ module Aws::DataSync
|
|
|
1038
1055
|
attr_accessor kerberos_keytab: ::String
|
|
1039
1056
|
attr_accessor kerberos_krb_5_conf: ::String
|
|
1040
1057
|
attr_accessor agent_arns: ::Array[::String]
|
|
1058
|
+
attr_accessor cmk_secret_config: Types::CmkSecretConfig
|
|
1059
|
+
attr_accessor custom_secret_config: Types::CustomSecretConfig
|
|
1041
1060
|
SENSITIVE: []
|
|
1042
1061
|
end
|
|
1043
1062
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.121.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.244.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.244.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|