aws-sdk-datasync 1.72.0 → 1.73.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 +327 -152
- data/lib/aws-sdk-datasync/client_api.rb +27 -2
- data/lib/aws-sdk-datasync/types.rb +543 -314
- data/lib/aws-sdk-datasync.rb +1 -1
- data/sig/client.rbs +46 -8
- data/sig/types.rbs +27 -2
- metadata +2 -2
data/lib/aws-sdk-datasync.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -459,6 +459,18 @@ module Aws
|
|
459
459
|
value: ::String?
|
460
460
|
},
|
461
461
|
],
|
462
|
+
?manifest_config: {
|
463
|
+
action: ("TRANSFER")?,
|
464
|
+
format: ("CSV")?,
|
465
|
+
source: {
|
466
|
+
s3: {
|
467
|
+
manifest_object_path: ::String,
|
468
|
+
bucket_access_role_arn: ::String,
|
469
|
+
s3_bucket_arn: ::String,
|
470
|
+
manifest_object_version_id: ::String?
|
471
|
+
}
|
472
|
+
}?
|
473
|
+
},
|
462
474
|
?task_report_config: {
|
463
475
|
destination: {
|
464
476
|
s3: {
|
@@ -790,6 +802,7 @@ module Aws
|
|
790
802
|
def error_detail: () -> ::String
|
791
803
|
def creation_time: () -> ::Time
|
792
804
|
def includes: () -> ::Array[Types::FilterRule]
|
805
|
+
def manifest_config: () -> Types::ManifestConfig
|
793
806
|
def task_report_config: () -> Types::TaskReportConfig
|
794
807
|
end
|
795
808
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#describe_task-instance_method
|
@@ -805,14 +818,15 @@ module Aws
|
|
805
818
|
def options: () -> Types::Options
|
806
819
|
def excludes: () -> ::Array[Types::FilterRule]
|
807
820
|
def includes: () -> ::Array[Types::FilterRule]
|
821
|
+
def manifest_config: () -> Types::ManifestConfig
|
808
822
|
def start_time: () -> ::Time
|
809
823
|
def estimated_files_to_transfer: () -> ::Integer
|
810
824
|
def estimated_bytes_to_transfer: () -> ::Integer
|
811
825
|
def files_transferred: () -> ::Integer
|
812
826
|
def bytes_written: () -> ::Integer
|
813
827
|
def bytes_transferred: () -> ::Integer
|
814
|
-
def result: () -> Types::TaskExecutionResultDetail
|
815
828
|
def bytes_compressed: () -> ::Integer
|
829
|
+
def result: () -> Types::TaskExecutionResultDetail
|
816
830
|
def task_report_config: () -> Types::TaskReportConfig
|
817
831
|
def files_deleted: () -> ::Integer
|
818
832
|
def files_skipped: () -> ::Integer
|
@@ -1001,12 +1015,18 @@ module Aws
|
|
1001
1015
|
value: ::String?
|
1002
1016
|
},
|
1003
1017
|
],
|
1004
|
-
?
|
1005
|
-
|
1006
|
-
|
1007
|
-
|
1008
|
-
|
1009
|
-
|
1018
|
+
?manifest_config: {
|
1019
|
+
action: ("TRANSFER")?,
|
1020
|
+
format: ("CSV")?,
|
1021
|
+
source: {
|
1022
|
+
s3: {
|
1023
|
+
manifest_object_path: ::String,
|
1024
|
+
bucket_access_role_arn: ::String,
|
1025
|
+
s3_bucket_arn: ::String,
|
1026
|
+
manifest_object_version_id: ::String?
|
1027
|
+
}
|
1028
|
+
}?
|
1029
|
+
},
|
1010
1030
|
?task_report_config: {
|
1011
1031
|
destination: {
|
1012
1032
|
s3: {
|
@@ -1032,7 +1052,13 @@ module Aws
|
|
1032
1052
|
report_level: ("ERRORS_ONLY" | "SUCCESSES_AND_ERRORS")?
|
1033
1053
|
}?
|
1034
1054
|
}?
|
1035
|
-
}
|
1055
|
+
},
|
1056
|
+
?tags: Array[
|
1057
|
+
{
|
1058
|
+
key: ::String,
|
1059
|
+
value: ::String?
|
1060
|
+
},
|
1061
|
+
]
|
1036
1062
|
) -> _StartTaskExecutionResponseSuccess
|
1037
1063
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartTaskExecutionResponseSuccess
|
1038
1064
|
|
@@ -1245,6 +1271,18 @@ module Aws
|
|
1245
1271
|
value: ::String?
|
1246
1272
|
},
|
1247
1273
|
],
|
1274
|
+
?manifest_config: {
|
1275
|
+
action: ("TRANSFER")?,
|
1276
|
+
format: ("CSV")?,
|
1277
|
+
source: {
|
1278
|
+
s3: {
|
1279
|
+
manifest_object_path: ::String,
|
1280
|
+
bucket_access_role_arn: ::String,
|
1281
|
+
s3_bucket_arn: ::String,
|
1282
|
+
manifest_object_version_id: ::String?
|
1283
|
+
}
|
1284
|
+
}?
|
1285
|
+
},
|
1248
1286
|
?task_report_config: {
|
1249
1287
|
destination: {
|
1250
1288
|
s3: {
|
data/sig/types.rbs
CHANGED
@@ -256,6 +256,7 @@ module Aws::DataSync
|
|
256
256
|
attr_accessor schedule: Types::TaskSchedule
|
257
257
|
attr_accessor tags: ::Array[Types::TagListEntry]
|
258
258
|
attr_accessor includes: ::Array[Types::FilterRule]
|
259
|
+
attr_accessor manifest_config: Types::ManifestConfig
|
259
260
|
attr_accessor task_report_config: Types::TaskReportConfig
|
260
261
|
SENSITIVE: []
|
261
262
|
end
|
@@ -563,14 +564,15 @@ module Aws::DataSync
|
|
563
564
|
attr_accessor options: Types::Options
|
564
565
|
attr_accessor excludes: ::Array[Types::FilterRule]
|
565
566
|
attr_accessor includes: ::Array[Types::FilterRule]
|
567
|
+
attr_accessor manifest_config: Types::ManifestConfig
|
566
568
|
attr_accessor start_time: ::Time
|
567
569
|
attr_accessor estimated_files_to_transfer: ::Integer
|
568
570
|
attr_accessor estimated_bytes_to_transfer: ::Integer
|
569
571
|
attr_accessor files_transferred: ::Integer
|
570
572
|
attr_accessor bytes_written: ::Integer
|
571
573
|
attr_accessor bytes_transferred: ::Integer
|
572
|
-
attr_accessor result: Types::TaskExecutionResultDetail
|
573
574
|
attr_accessor bytes_compressed: ::Integer
|
575
|
+
attr_accessor result: Types::TaskExecutionResultDetail
|
574
576
|
attr_accessor task_report_config: Types::TaskReportConfig
|
575
577
|
attr_accessor files_deleted: ::Integer
|
576
578
|
attr_accessor files_skipped: ::Integer
|
@@ -602,6 +604,7 @@ module Aws::DataSync
|
|
602
604
|
attr_accessor error_detail: ::String
|
603
605
|
attr_accessor creation_time: ::Time
|
604
606
|
attr_accessor includes: ::Array[Types::FilterRule]
|
607
|
+
attr_accessor manifest_config: Types::ManifestConfig
|
605
608
|
attr_accessor task_report_config: Types::TaskReportConfig
|
606
609
|
SENSITIVE: []
|
607
610
|
end
|
@@ -795,6 +798,13 @@ module Aws::DataSync
|
|
795
798
|
SENSITIVE: []
|
796
799
|
end
|
797
800
|
|
801
|
+
class ManifestConfig
|
802
|
+
attr_accessor action: ("TRANSFER")
|
803
|
+
attr_accessor format: ("CSV")
|
804
|
+
attr_accessor source: Types::SourceManifestConfig
|
805
|
+
SENSITIVE: []
|
806
|
+
end
|
807
|
+
|
798
808
|
class MaxP95Performance
|
799
809
|
attr_accessor iops_read: ::Float
|
800
810
|
attr_accessor iops_write: ::Float
|
@@ -986,11 +996,24 @@ module Aws::DataSync
|
|
986
996
|
SENSITIVE: []
|
987
997
|
end
|
988
998
|
|
999
|
+
class S3ManifestConfig
|
1000
|
+
attr_accessor manifest_object_path: ::String
|
1001
|
+
attr_accessor bucket_access_role_arn: ::String
|
1002
|
+
attr_accessor s3_bucket_arn: ::String
|
1003
|
+
attr_accessor manifest_object_version_id: ::String
|
1004
|
+
SENSITIVE: []
|
1005
|
+
end
|
1006
|
+
|
989
1007
|
class SmbMountOptions
|
990
1008
|
attr_accessor version: ("AUTOMATIC" | "SMB2" | "SMB3" | "SMB1" | "SMB2_0")
|
991
1009
|
SENSITIVE: []
|
992
1010
|
end
|
993
1011
|
|
1012
|
+
class SourceManifestConfig
|
1013
|
+
attr_accessor s3: Types::S3ManifestConfig
|
1014
|
+
SENSITIVE: []
|
1015
|
+
end
|
1016
|
+
|
994
1017
|
class StartDiscoveryJobRequest
|
995
1018
|
attr_accessor storage_system_arn: ::String
|
996
1019
|
attr_accessor collection_duration_minutes: ::Integer
|
@@ -1009,8 +1032,9 @@ module Aws::DataSync
|
|
1009
1032
|
attr_accessor override_options: Types::Options
|
1010
1033
|
attr_accessor includes: ::Array[Types::FilterRule]
|
1011
1034
|
attr_accessor excludes: ::Array[Types::FilterRule]
|
1012
|
-
attr_accessor
|
1035
|
+
attr_accessor manifest_config: Types::ManifestConfig
|
1013
1036
|
attr_accessor task_report_config: Types::TaskReportConfig
|
1037
|
+
attr_accessor tags: ::Array[Types::TagListEntry]
|
1014
1038
|
SENSITIVE: []
|
1015
1039
|
end
|
1016
1040
|
|
@@ -1234,6 +1258,7 @@ module Aws::DataSync
|
|
1234
1258
|
attr_accessor name: ::String
|
1235
1259
|
attr_accessor cloud_watch_log_group_arn: ::String
|
1236
1260
|
attr_accessor includes: ::Array[Types::FilterRule]
|
1261
|
+
attr_accessor manifest_config: Types::ManifestConfig
|
1237
1262
|
attr_accessor task_report_config: Types::TaskReportConfig
|
1238
1263
|
SENSITIVE: []
|
1239
1264
|
end
|
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.73.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-02-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|