aws-sdk-datasync 1.72.0 → 1.74.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 +401 -206
- data/lib/aws-sdk-datasync/client_api.rb +38 -2
- data/lib/aws-sdk-datasync/types.rb +762 -421
- data/lib/aws-sdk-datasync.rb +1 -1
- data/sig/client.rbs +51 -10
- data/sig/types.rbs +36 -2
- metadata +2 -2
data/lib/aws-sdk-datasync.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -445,7 +445,8 @@ module Aws
|
|
|
445
445
|
},
|
|
446
446
|
],
|
|
447
447
|
?schedule: {
|
|
448
|
-
schedule_expression: ::String
|
|
448
|
+
schedule_expression: ::String,
|
|
449
|
+
status: ("ENABLED" | "DISABLED")?
|
|
449
450
|
},
|
|
450
451
|
?tags: Array[
|
|
451
452
|
{
|
|
@@ -459,6 +460,18 @@ module Aws
|
|
|
459
460
|
value: ::String?
|
|
460
461
|
},
|
|
461
462
|
],
|
|
463
|
+
?manifest_config: {
|
|
464
|
+
action: ("TRANSFER")?,
|
|
465
|
+
format: ("CSV")?,
|
|
466
|
+
source: {
|
|
467
|
+
s3: {
|
|
468
|
+
manifest_object_path: ::String,
|
|
469
|
+
bucket_access_role_arn: ::String,
|
|
470
|
+
s3_bucket_arn: ::String,
|
|
471
|
+
manifest_object_version_id: ::String?
|
|
472
|
+
}
|
|
473
|
+
}?
|
|
474
|
+
},
|
|
462
475
|
?task_report_config: {
|
|
463
476
|
destination: {
|
|
464
477
|
s3: {
|
|
@@ -790,7 +803,9 @@ module Aws
|
|
|
790
803
|
def error_detail: () -> ::String
|
|
791
804
|
def creation_time: () -> ::Time
|
|
792
805
|
def includes: () -> ::Array[Types::FilterRule]
|
|
806
|
+
def manifest_config: () -> Types::ManifestConfig
|
|
793
807
|
def task_report_config: () -> Types::TaskReportConfig
|
|
808
|
+
def schedule_details: () -> Types::TaskScheduleDetails
|
|
794
809
|
end
|
|
795
810
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataSync/Client.html#describe_task-instance_method
|
|
796
811
|
def describe_task: (
|
|
@@ -805,14 +820,15 @@ module Aws
|
|
|
805
820
|
def options: () -> Types::Options
|
|
806
821
|
def excludes: () -> ::Array[Types::FilterRule]
|
|
807
822
|
def includes: () -> ::Array[Types::FilterRule]
|
|
823
|
+
def manifest_config: () -> Types::ManifestConfig
|
|
808
824
|
def start_time: () -> ::Time
|
|
809
825
|
def estimated_files_to_transfer: () -> ::Integer
|
|
810
826
|
def estimated_bytes_to_transfer: () -> ::Integer
|
|
811
827
|
def files_transferred: () -> ::Integer
|
|
812
828
|
def bytes_written: () -> ::Integer
|
|
813
829
|
def bytes_transferred: () -> ::Integer
|
|
814
|
-
def result: () -> Types::TaskExecutionResultDetail
|
|
815
830
|
def bytes_compressed: () -> ::Integer
|
|
831
|
+
def result: () -> Types::TaskExecutionResultDetail
|
|
816
832
|
def task_report_config: () -> Types::TaskReportConfig
|
|
817
833
|
def files_deleted: () -> ::Integer
|
|
818
834
|
def files_skipped: () -> ::Integer
|
|
@@ -1001,12 +1017,18 @@ module Aws
|
|
|
1001
1017
|
value: ::String?
|
|
1002
1018
|
},
|
|
1003
1019
|
],
|
|
1004
|
-
?
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1020
|
+
?manifest_config: {
|
|
1021
|
+
action: ("TRANSFER")?,
|
|
1022
|
+
format: ("CSV")?,
|
|
1023
|
+
source: {
|
|
1024
|
+
s3: {
|
|
1025
|
+
manifest_object_path: ::String,
|
|
1026
|
+
bucket_access_role_arn: ::String,
|
|
1027
|
+
s3_bucket_arn: ::String,
|
|
1028
|
+
manifest_object_version_id: ::String?
|
|
1029
|
+
}
|
|
1030
|
+
}?
|
|
1031
|
+
},
|
|
1010
1032
|
?task_report_config: {
|
|
1011
1033
|
destination: {
|
|
1012
1034
|
s3: {
|
|
@@ -1032,7 +1054,13 @@ module Aws
|
|
|
1032
1054
|
report_level: ("ERRORS_ONLY" | "SUCCESSES_AND_ERRORS")?
|
|
1033
1055
|
}?
|
|
1034
1056
|
}?
|
|
1035
|
-
}
|
|
1057
|
+
},
|
|
1058
|
+
?tags: Array[
|
|
1059
|
+
{
|
|
1060
|
+
key: ::String,
|
|
1061
|
+
value: ::String?
|
|
1062
|
+
},
|
|
1063
|
+
]
|
|
1036
1064
|
) -> _StartTaskExecutionResponseSuccess
|
|
1037
1065
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartTaskExecutionResponseSuccess
|
|
1038
1066
|
|
|
@@ -1235,7 +1263,8 @@ module Aws
|
|
|
1235
1263
|
},
|
|
1236
1264
|
],
|
|
1237
1265
|
?schedule: {
|
|
1238
|
-
schedule_expression: ::String
|
|
1266
|
+
schedule_expression: ::String,
|
|
1267
|
+
status: ("ENABLED" | "DISABLED")?
|
|
1239
1268
|
},
|
|
1240
1269
|
?name: ::String,
|
|
1241
1270
|
?cloud_watch_log_group_arn: ::String,
|
|
@@ -1245,6 +1274,18 @@ module Aws
|
|
|
1245
1274
|
value: ::String?
|
|
1246
1275
|
},
|
|
1247
1276
|
],
|
|
1277
|
+
?manifest_config: {
|
|
1278
|
+
action: ("TRANSFER")?,
|
|
1279
|
+
format: ("CSV")?,
|
|
1280
|
+
source: {
|
|
1281
|
+
s3: {
|
|
1282
|
+
manifest_object_path: ::String,
|
|
1283
|
+
bucket_access_role_arn: ::String,
|
|
1284
|
+
s3_bucket_arn: ::String,
|
|
1285
|
+
manifest_object_version_id: ::String?
|
|
1286
|
+
}
|
|
1287
|
+
}?
|
|
1288
|
+
},
|
|
1248
1289
|
?task_report_config: {
|
|
1249
1290
|
destination: {
|
|
1250
1291
|
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,7 +604,9 @@ 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
|
|
609
|
+
attr_accessor schedule_details: Types::TaskScheduleDetails
|
|
606
610
|
SENSITIVE: []
|
|
607
611
|
end
|
|
608
612
|
|
|
@@ -795,6 +799,13 @@ module Aws::DataSync
|
|
|
795
799
|
SENSITIVE: []
|
|
796
800
|
end
|
|
797
801
|
|
|
802
|
+
class ManifestConfig
|
|
803
|
+
attr_accessor action: ("TRANSFER")
|
|
804
|
+
attr_accessor format: ("CSV")
|
|
805
|
+
attr_accessor source: Types::SourceManifestConfig
|
|
806
|
+
SENSITIVE: []
|
|
807
|
+
end
|
|
808
|
+
|
|
798
809
|
class MaxP95Performance
|
|
799
810
|
attr_accessor iops_read: ::Float
|
|
800
811
|
attr_accessor iops_write: ::Float
|
|
@@ -986,11 +997,24 @@ module Aws::DataSync
|
|
|
986
997
|
SENSITIVE: []
|
|
987
998
|
end
|
|
988
999
|
|
|
1000
|
+
class S3ManifestConfig
|
|
1001
|
+
attr_accessor manifest_object_path: ::String
|
|
1002
|
+
attr_accessor bucket_access_role_arn: ::String
|
|
1003
|
+
attr_accessor s3_bucket_arn: ::String
|
|
1004
|
+
attr_accessor manifest_object_version_id: ::String
|
|
1005
|
+
SENSITIVE: []
|
|
1006
|
+
end
|
|
1007
|
+
|
|
989
1008
|
class SmbMountOptions
|
|
990
1009
|
attr_accessor version: ("AUTOMATIC" | "SMB2" | "SMB3" | "SMB1" | "SMB2_0")
|
|
991
1010
|
SENSITIVE: []
|
|
992
1011
|
end
|
|
993
1012
|
|
|
1013
|
+
class SourceManifestConfig
|
|
1014
|
+
attr_accessor s3: Types::S3ManifestConfig
|
|
1015
|
+
SENSITIVE: []
|
|
1016
|
+
end
|
|
1017
|
+
|
|
994
1018
|
class StartDiscoveryJobRequest
|
|
995
1019
|
attr_accessor storage_system_arn: ::String
|
|
996
1020
|
attr_accessor collection_duration_minutes: ::Integer
|
|
@@ -1009,8 +1033,9 @@ module Aws::DataSync
|
|
|
1009
1033
|
attr_accessor override_options: Types::Options
|
|
1010
1034
|
attr_accessor includes: ::Array[Types::FilterRule]
|
|
1011
1035
|
attr_accessor excludes: ::Array[Types::FilterRule]
|
|
1012
|
-
attr_accessor
|
|
1036
|
+
attr_accessor manifest_config: Types::ManifestConfig
|
|
1013
1037
|
attr_accessor task_report_config: Types::TaskReportConfig
|
|
1038
|
+
attr_accessor tags: ::Array[Types::TagListEntry]
|
|
1014
1039
|
SENSITIVE: []
|
|
1015
1040
|
end
|
|
1016
1041
|
|
|
@@ -1092,6 +1117,14 @@ module Aws::DataSync
|
|
|
1092
1117
|
|
|
1093
1118
|
class TaskSchedule
|
|
1094
1119
|
attr_accessor schedule_expression: ::String
|
|
1120
|
+
attr_accessor status: ("ENABLED" | "DISABLED")
|
|
1121
|
+
SENSITIVE: []
|
|
1122
|
+
end
|
|
1123
|
+
|
|
1124
|
+
class TaskScheduleDetails
|
|
1125
|
+
attr_accessor status_update_time: ::Time
|
|
1126
|
+
attr_accessor disabled_reason: ::String
|
|
1127
|
+
attr_accessor disabled_by: ("USER" | "SERVICE")
|
|
1095
1128
|
SENSITIVE: []
|
|
1096
1129
|
end
|
|
1097
1130
|
|
|
@@ -1234,6 +1267,7 @@ module Aws::DataSync
|
|
|
1234
1267
|
attr_accessor name: ::String
|
|
1235
1268
|
attr_accessor cloud_watch_log_group_arn: ::String
|
|
1236
1269
|
attr_accessor includes: ::Array[Types::FilterRule]
|
|
1270
|
+
attr_accessor manifest_config: Types::ManifestConfig
|
|
1237
1271
|
attr_accessor task_report_config: Types::TaskReportConfig
|
|
1238
1272
|
SENSITIVE: []
|
|
1239
1273
|
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.74.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-04-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|