aws-sdk-datasync 1.76.0 → 1.78.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 +6 -5
- data/lib/aws-sdk-datasync.rb +1 -1
- data/sig/client.rbs +1 -1
- data/sig/types.rbs +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d34e0c4f790463fec643db158c2651ebca83950f6cf6d19be235e80ebc33d66a
|
|
4
|
+
data.tar.gz: acf63c7ec65eed15a4f594f817a208fbce947bf9fea9f470d60e13de1137c106
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6c78547f7445ff114fde2cc5c4ffc7c06f1be033f3c42b8e25ab22d40bba9f002b52cf814b7019f713fe0b309ac0ec355d5265cde2f0950c7da1436c3de10a44
|
|
7
|
+
data.tar.gz: 0ea978f319822e6817971bd650fbd80dc9323f04fb24424ac6bca1030ec435cbff93247984d6b3bb21eba11cebf7fa81a0d58ab4f1e0769c535d13634dd8edc2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.78.0 (2024-05-15)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Task executions now display a CANCELLING status when an execution is in the process of being cancelled.
|
|
8
|
+
|
|
9
|
+
1.77.0 (2024-05-13)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
4
14
|
1.76.0 (2024-05-03)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.78.0
|
|
@@ -301,8 +301,9 @@ module Aws::DataSync
|
|
|
301
301
|
#
|
|
302
302
|
# @option options [String] :sdk_ua_app_id
|
|
303
303
|
# A unique and opaque application ID that is appended to the
|
|
304
|
-
# User-Agent header as app
|
|
305
|
-
# maximum length of 50.
|
|
304
|
+
# User-Agent header as app/sdk_ua_app_id. It should have a
|
|
305
|
+
# maximum length of 50. This variable is sourced from environment
|
|
306
|
+
# variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.
|
|
306
307
|
#
|
|
307
308
|
# @option options [String] :secret_access_key
|
|
308
309
|
#
|
|
@@ -3043,7 +3044,7 @@ module Aws::DataSync
|
|
|
3043
3044
|
# @example Response structure
|
|
3044
3045
|
#
|
|
3045
3046
|
# resp.task_execution_arn #=> String
|
|
3046
|
-
# resp.status #=> String, one of "QUEUED", "LAUNCHING", "PREPARING", "TRANSFERRING", "VERIFYING", "SUCCESS", "ERROR"
|
|
3047
|
+
# resp.status #=> String, one of "QUEUED", "CANCELLING", "LAUNCHING", "PREPARING", "TRANSFERRING", "VERIFYING", "SUCCESS", "ERROR"
|
|
3047
3048
|
# resp.options.verify_mode #=> String, one of "POINT_IN_TIME_CONSISTENT", "ONLY_FILES_TRANSFERRED", "NONE"
|
|
3048
3049
|
# resp.options.overwrite_mode #=> String, one of "ALWAYS", "NEVER"
|
|
3049
3050
|
# resp.options.atime #=> String, one of "NONE", "BEST_EFFORT"
|
|
@@ -3441,7 +3442,7 @@ module Aws::DataSync
|
|
|
3441
3442
|
#
|
|
3442
3443
|
# resp.task_executions #=> Array
|
|
3443
3444
|
# resp.task_executions[0].task_execution_arn #=> String
|
|
3444
|
-
# resp.task_executions[0].status #=> String, one of "QUEUED", "LAUNCHING", "PREPARING", "TRANSFERRING", "VERIFYING", "SUCCESS", "ERROR"
|
|
3445
|
+
# resp.task_executions[0].status #=> String, one of "QUEUED", "CANCELLING", "LAUNCHING", "PREPARING", "TRANSFERRING", "VERIFYING", "SUCCESS", "ERROR"
|
|
3445
3446
|
# resp.next_token #=> String
|
|
3446
3447
|
#
|
|
3447
3448
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/ListTaskExecutions AWS API Documentation
|
|
@@ -4652,7 +4653,7 @@ module Aws::DataSync
|
|
|
4652
4653
|
params: params,
|
|
4653
4654
|
config: config)
|
|
4654
4655
|
context[:gem_name] = 'aws-sdk-datasync'
|
|
4655
|
-
context[:gem_version] = '1.
|
|
4656
|
+
context[:gem_version] = '1.78.0'
|
|
4656
4657
|
Seahorse::Client::Request.new(handlers, context)
|
|
4657
4658
|
end
|
|
4658
4659
|
|
data/lib/aws-sdk-datasync.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -816,7 +816,7 @@ module Aws
|
|
|
816
816
|
interface _DescribeTaskExecutionResponseSuccess
|
|
817
817
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeTaskExecutionResponse]
|
|
818
818
|
def task_execution_arn: () -> ::String
|
|
819
|
-
def status: () -> ("QUEUED" | "LAUNCHING" | "PREPARING" | "TRANSFERRING" | "VERIFYING" | "SUCCESS" | "ERROR")
|
|
819
|
+
def status: () -> ("QUEUED" | "CANCELLING" | "LAUNCHING" | "PREPARING" | "TRANSFERRING" | "VERIFYING" | "SUCCESS" | "ERROR")
|
|
820
820
|
def options: () -> Types::Options
|
|
821
821
|
def excludes: () -> ::Array[Types::FilterRule]
|
|
822
822
|
def includes: () -> ::Array[Types::FilterRule]
|
data/sig/types.rbs
CHANGED
|
@@ -560,7 +560,7 @@ module Aws::DataSync
|
|
|
560
560
|
|
|
561
561
|
class DescribeTaskExecutionResponse
|
|
562
562
|
attr_accessor task_execution_arn: ::String
|
|
563
|
-
attr_accessor status: ("QUEUED" | "LAUNCHING" | "PREPARING" | "TRANSFERRING" | "VERIFYING" | "SUCCESS" | "ERROR")
|
|
563
|
+
attr_accessor status: ("QUEUED" | "CANCELLING" | "LAUNCHING" | "PREPARING" | "TRANSFERRING" | "VERIFYING" | "SUCCESS" | "ERROR")
|
|
564
564
|
attr_accessor options: Types::Options
|
|
565
565
|
attr_accessor excludes: ::Array[Types::FilterRule]
|
|
566
566
|
attr_accessor includes: ::Array[Types::FilterRule]
|
|
@@ -1075,7 +1075,7 @@ module Aws::DataSync
|
|
|
1075
1075
|
|
|
1076
1076
|
class TaskExecutionListEntry
|
|
1077
1077
|
attr_accessor task_execution_arn: ::String
|
|
1078
|
-
attr_accessor status: ("QUEUED" | "LAUNCHING" | "PREPARING" | "TRANSFERRING" | "VERIFYING" | "SUCCESS" | "ERROR")
|
|
1078
|
+
attr_accessor status: ("QUEUED" | "CANCELLING" | "LAUNCHING" | "PREPARING" | "TRANSFERRING" | "VERIFYING" | "SUCCESS" | "ERROR")
|
|
1079
1079
|
SENSITIVE: []
|
|
1080
1080
|
end
|
|
1081
1081
|
|
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.78.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-05-
|
|
11
|
+
date: 2024-05-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|