aws-sdk-datasync 1.76.0 → 1.78.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6c4dfa76783b34f5495768bc4ab658b1eee836d058d48771ea039e258b305154
4
- data.tar.gz: 3def60dcb53d8be382b2f14d559f8355b2e0b2758a5e969f32dcd5063c992c3d
3
+ metadata.gz: d34e0c4f790463fec643db158c2651ebca83950f6cf6d19be235e80ebc33d66a
4
+ data.tar.gz: acf63c7ec65eed15a4f594f817a208fbce947bf9fea9f470d60e13de1137c106
5
5
  SHA512:
6
- metadata.gz: b5dbb23d2c97f670b6bfd770c9fb24c8c843837623c72b0106d18ba10e89d0d9da98ce728f2b190606406afd255e6fe77773d9e80e3adbcbc3bd1a5cc5495b89
7
- data.tar.gz: 671f569b9f5569bc28011111b65d92bc5701383fb1afe0abbf11f1e99ac49159e8b4444ef617439ade0931fcf64fb5bedff4f546719962e7dd2242f6821ba986
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.76.0
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/<sdk_ua_app_id>. It should have a
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.76.0'
4656
+ context[:gem_version] = '1.78.0'
4656
4657
  Seahorse::Client::Request.new(handlers, context)
4657
4658
  end
4658
4659
 
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-datasync/customizations'
52
52
  # @!group service
53
53
  module Aws::DataSync
54
54
 
55
- GEM_VERSION = '1.76.0'
55
+ GEM_VERSION = '1.78.0'
56
56
 
57
57
  end
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.76.0
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-03 00:00:00.000000000 Z
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