aws-sdk-datasync 1.103.0 → 1.104.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datasync/client.rb +213 -27
- data/lib/aws-sdk-datasync/client_api.rb +35 -2
- data/lib/aws-sdk-datasync/types.rb +312 -17
- data/lib/aws-sdk-datasync.rb +1 -1
- data/sig/client.rbs +49 -9
- data/sig/types.rbs +36 -3
- metadata +1 -1
data/sig/types.rbs
CHANGED
@@ -29,6 +29,12 @@ module Aws::DataSync
|
|
29
29
|
class CancelTaskExecutionResponse < Aws::EmptyStructure
|
30
30
|
end
|
31
31
|
|
32
|
+
class CmkSecretConfig
|
33
|
+
attr_accessor secret_arn: ::String
|
34
|
+
attr_accessor kms_key_arn: ::String
|
35
|
+
SENSITIVE: []
|
36
|
+
end
|
37
|
+
|
32
38
|
class CreateAgentRequest
|
33
39
|
attr_accessor activation_key: ::String
|
34
40
|
attr_accessor agent_name: ::String
|
@@ -46,13 +52,15 @@ module Aws::DataSync
|
|
46
52
|
|
47
53
|
class CreateLocationAzureBlobRequest
|
48
54
|
attr_accessor container_url: ::String
|
49
|
-
attr_accessor authentication_type: ("SAS")
|
55
|
+
attr_accessor authentication_type: ("SAS" | "NONE")
|
50
56
|
attr_accessor sas_configuration: Types::AzureBlobSasConfiguration
|
51
57
|
attr_accessor blob_type: ("BLOCK")
|
52
58
|
attr_accessor access_tier: ("HOT" | "COOL" | "ARCHIVE")
|
53
59
|
attr_accessor subdirectory: ::String
|
54
60
|
attr_accessor agent_arns: ::Array[::String]
|
55
61
|
attr_accessor tags: ::Array[Types::TagListEntry]
|
62
|
+
attr_accessor cmk_secret_config: Types::CmkSecretConfig
|
63
|
+
attr_accessor custom_secret_config: Types::CustomSecretConfig
|
56
64
|
SENSITIVE: []
|
57
65
|
end
|
58
66
|
|
@@ -181,6 +189,8 @@ module Aws::DataSync
|
|
181
189
|
attr_accessor agent_arns: ::Array[::String]
|
182
190
|
attr_accessor tags: ::Array[Types::TagListEntry]
|
183
191
|
attr_accessor server_certificate: ::String
|
192
|
+
attr_accessor cmk_secret_config: Types::CmkSecretConfig
|
193
|
+
attr_accessor custom_secret_config: Types::CustomSecretConfig
|
184
194
|
SENSITIVE: [:secret_key]
|
185
195
|
end
|
186
196
|
|
@@ -247,6 +257,12 @@ module Aws::DataSync
|
|
247
257
|
SENSITIVE: []
|
248
258
|
end
|
249
259
|
|
260
|
+
class CustomSecretConfig
|
261
|
+
attr_accessor secret_arn: ::String
|
262
|
+
attr_accessor secret_access_role_arn: ::String
|
263
|
+
SENSITIVE: []
|
264
|
+
end
|
265
|
+
|
250
266
|
class DeleteAgentRequest
|
251
267
|
attr_accessor agent_arn: ::String
|
252
268
|
SENSITIVE: []
|
@@ -296,11 +312,14 @@ module Aws::DataSync
|
|
296
312
|
class DescribeLocationAzureBlobResponse
|
297
313
|
attr_accessor location_arn: ::String
|
298
314
|
attr_accessor location_uri: ::String
|
299
|
-
attr_accessor authentication_type: ("SAS")
|
315
|
+
attr_accessor authentication_type: ("SAS" | "NONE")
|
300
316
|
attr_accessor blob_type: ("BLOCK")
|
301
317
|
attr_accessor access_tier: ("HOT" | "COOL" | "ARCHIVE")
|
302
318
|
attr_accessor agent_arns: ::Array[::String]
|
303
319
|
attr_accessor creation_time: ::Time
|
320
|
+
attr_accessor managed_secret_config: Types::ManagedSecretConfig
|
321
|
+
attr_accessor cmk_secret_config: Types::CmkSecretConfig
|
322
|
+
attr_accessor custom_secret_config: Types::CustomSecretConfig
|
304
323
|
SENSITIVE: []
|
305
324
|
end
|
306
325
|
|
@@ -427,6 +446,9 @@ module Aws::DataSync
|
|
427
446
|
attr_accessor agent_arns: ::Array[::String]
|
428
447
|
attr_accessor creation_time: ::Time
|
429
448
|
attr_accessor server_certificate: ::String
|
449
|
+
attr_accessor managed_secret_config: Types::ManagedSecretConfig
|
450
|
+
attr_accessor cmk_secret_config: Types::CmkSecretConfig
|
451
|
+
attr_accessor custom_secret_config: Types::CustomSecretConfig
|
430
452
|
SENSITIVE: []
|
431
453
|
end
|
432
454
|
|
@@ -494,6 +516,8 @@ module Aws::DataSync
|
|
494
516
|
attr_accessor files_prepared: ::Integer
|
495
517
|
attr_accessor files_listed: Types::TaskExecutionFilesListedDetail
|
496
518
|
attr_accessor files_failed: Types::TaskExecutionFilesFailedDetail
|
519
|
+
attr_accessor launch_time: ::Time
|
520
|
+
attr_accessor end_time: ::Time
|
497
521
|
SENSITIVE: []
|
498
522
|
end
|
499
523
|
|
@@ -667,6 +691,11 @@ module Aws::DataSync
|
|
667
691
|
SENSITIVE: []
|
668
692
|
end
|
669
693
|
|
694
|
+
class ManagedSecretConfig
|
695
|
+
attr_accessor secret_arn: ::String
|
696
|
+
SENSITIVE: []
|
697
|
+
end
|
698
|
+
|
670
699
|
class ManifestConfig
|
671
700
|
attr_accessor action: ("TRANSFER")
|
672
701
|
attr_accessor format: ("CSV")
|
@@ -900,11 +929,13 @@ module Aws::DataSync
|
|
900
929
|
class UpdateLocationAzureBlobRequest
|
901
930
|
attr_accessor location_arn: ::String
|
902
931
|
attr_accessor subdirectory: ::String
|
903
|
-
attr_accessor authentication_type: ("SAS")
|
932
|
+
attr_accessor authentication_type: ("SAS" | "NONE")
|
904
933
|
attr_accessor sas_configuration: Types::AzureBlobSasConfiguration
|
905
934
|
attr_accessor blob_type: ("BLOCK")
|
906
935
|
attr_accessor access_tier: ("HOT" | "COOL" | "ARCHIVE")
|
907
936
|
attr_accessor agent_arns: ::Array[::String]
|
937
|
+
attr_accessor cmk_secret_config: Types::CmkSecretConfig
|
938
|
+
attr_accessor custom_secret_config: Types::CustomSecretConfig
|
908
939
|
SENSITIVE: []
|
909
940
|
end
|
910
941
|
|
@@ -1006,6 +1037,8 @@ module Aws::DataSync
|
|
1006
1037
|
attr_accessor secret_key: ::String
|
1007
1038
|
attr_accessor agent_arns: ::Array[::String]
|
1008
1039
|
attr_accessor server_certificate: ::String
|
1040
|
+
attr_accessor cmk_secret_config: Types::CmkSecretConfig
|
1041
|
+
attr_accessor custom_secret_config: Types::CustomSecretConfig
|
1009
1042
|
SENSITIVE: [:secret_key]
|
1010
1043
|
end
|
1011
1044
|
|