aws-sdk-datasync 1.91.0 → 1.92.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: 4f52da70388bbdf592a076569d8bac4f40894acd060e82e88403cf0182d71379
4
- data.tar.gz: e0abaeb28e29d9c74cbc8514e911f17c5c80cc9bdf66ca866b06cc52b1324a23
3
+ metadata.gz: d4d3df19224bada3e62cfd541fbca79e0ceea9a3092fcdf7c5cd62154bc5351b
4
+ data.tar.gz: 44c175fea85c78b93c93f992760c094f09b703c04912122a4440e2b69a556c10
5
5
  SHA512:
6
- metadata.gz: 175c5310661e049abf14967f2b0ecd097336116d0fcafbcccbd3470d0e4feb2cf0ac204a9457f4d6219a809954c725e6f1fbfed480fe34b2e9c2435b88104a0d
7
- data.tar.gz: c2ec87a21ed6890744e3a87da665b2ba26a502769477192e9ed95a91dd661cfae9b5f32ef9e10aea4877863aa6292893e3e10a8f74e1ca18ca0fd2416d05bea6
6
+ metadata.gz: 48b6ba4f9d5f7a6b8fb5b4140395c1949282f7aaeb2f5169182eba438f9efaa6de9fcb840c2cc27e90f48deda90149a7c0a72e937cb8c4d3a66e3a0f9b491d8b
7
+ data.tar.gz: 285e3c24ab0d1b84b321edc4a967a5fb1dc02b3f3f2e0278be2d7469b6030476238a4d4c7ede3812868a14d4f40a90f46c46cd94e52d442cc0b621bf29aaa5ef
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.92.0 (2024-11-15)
5
+ ------------------
6
+
7
+ * Feature - Doc-only updates and enhancements related to creating DataSync tasks and describing task executions.
8
+
4
9
  1.91.0 (2024-10-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.91.0
1
+ 1.92.0
@@ -1909,9 +1909,10 @@ module Aws::DataSync
1909
1909
  # Specifies one of the following task modes for your data transfer:
1910
1910
  #
1911
1911
  # * `ENHANCED` - Transfer virtually unlimited numbers of objects with
1912
- # enhanced metrics, more detailed logs, and higher performance than
1913
- # Basic mode. Currently available for transfers between Amazon S3
1914
- # locations.
1912
+ # higher performance than Basic mode. Enhanced mode tasks optimize the
1913
+ # data transfer process by listing, preparing, transferring, and
1914
+ # verifying data in parallel. Enhanced mode is currently available for
1915
+ # transfers between Amazon S3 locations.
1915
1916
  #
1916
1917
  # <note markdown="1"> To create an Enhanced mode task, the IAM role that you use to call
1917
1918
  # the `CreateTask` operation must have the
@@ -1920,8 +1921,11 @@ module Aws::DataSync
1920
1921
  # </note>
1921
1922
  #
1922
1923
  # * `BASIC` (default) - Transfer files or objects between Amazon Web
1923
- # Services storage and on-premises, edge, or other cloud storage.
1924
- # DataSync [quotas][1] apply.
1924
+ # Services storage and all other supported DataSync locations. Basic
1925
+ # mode tasks are subject to [quotas][1] on the number of files,
1926
+ # objects, and directories in a dataset. Basic mode sequentially
1927
+ # prepares, transfers, and verifies data, making it slower than
1928
+ # Enhanced mode for most workloads.
1925
1929
  #
1926
1930
  # For more information, see [Understanding task mode differences][2].
1927
1931
  #
@@ -3084,14 +3088,14 @@ module Aws::DataSync
3084
3088
  # <note markdown="1"> Some `DescribeTaskExecution` response elements are only relevant to a
3085
3089
  # specific task mode. For information, see [Understanding task mode
3086
3090
  # differences][1] and [Understanding data transfer performance
3087
- # metrics][2].
3091
+ # counters][2].
3088
3092
  #
3089
3093
  # </note>
3090
3094
  #
3091
3095
  #
3092
3096
  #
3093
3097
  # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/choosing-task-mode.html#task-mode-differences
3094
- # [2]: https://docs.aws.amazon.com/datasync/latest/userguide/transfer-performance-metrics.html
3098
+ # [2]: https://docs.aws.amazon.com/datasync/latest/userguide/transfer-performance-counters.html
3095
3099
  #
3096
3100
  # @option params [required, String] :task_execution_arn
3097
3101
  # Specifies the Amazon Resource Name (ARN) of the task execution that
@@ -4770,7 +4774,7 @@ module Aws::DataSync
4770
4774
  tracer: tracer
4771
4775
  )
4772
4776
  context[:gem_name] = 'aws-sdk-datasync'
4773
- context[:gem_version] = '1.91.0'
4777
+ context[:gem_version] = '1.92.0'
4774
4778
  Seahorse::Client::Request.new(handlers, context)
4775
4779
  end
4776
4780
 
@@ -1382,9 +1382,10 @@ module Aws::DataSync
1382
1382
  # Specifies one of the following task modes for your data transfer:
1383
1383
  #
1384
1384
  # * `ENHANCED` - Transfer virtually unlimited numbers of objects with
1385
- # enhanced metrics, more detailed logs, and higher performance than
1386
- # Basic mode. Currently available for transfers between Amazon S3
1387
- # locations.
1385
+ # higher performance than Basic mode. Enhanced mode tasks optimize
1386
+ # the data transfer process by listing, preparing, transferring, and
1387
+ # verifying data in parallel. Enhanced mode is currently available
1388
+ # for transfers between Amazon S3 locations.
1388
1389
  #
1389
1390
  # <note markdown="1"> To create an Enhanced mode task, the IAM role that you use to call
1390
1391
  # the `CreateTask` operation must have the
@@ -1393,8 +1394,11 @@ module Aws::DataSync
1393
1394
  # </note>
1394
1395
  #
1395
1396
  # * `BASIC` (default) - Transfer files or objects between Amazon Web
1396
- # Services storage and on-premises, edge, or other cloud storage.
1397
- # DataSync [quotas][1] apply.
1397
+ # Services storage and all other supported DataSync locations. Basic
1398
+ # mode tasks are subject to [quotas][1] on the number of files,
1399
+ # objects, and directories in a dataset. Basic mode sequentially
1400
+ # prepares, transfers, and verifies data, making it slower than
1401
+ # Enhanced mode for most workloads.
1398
1402
  #
1399
1403
  # For more information, see [Understanding task mode differences][2].
1400
1404
  #
@@ -2704,9 +2708,8 @@ module Aws::DataSync
2704
2708
  #
2705
2709
  # @!attribute [rw] estimated_files_to_transfer
2706
2710
  # The number of files, objects, and directories that DataSync expects
2707
- # to transfer over the network. This value is calculated during the
2708
- # task execution's `PREPARING` [step][1] before the `TRANSFERRING`
2709
- # step.
2711
+ # to transfer over the network. This value is calculated while
2712
+ # DataSync [prepares][1] the transfer.
2710
2713
  #
2711
2714
  # How this gets calculated depends primarily on your task’s [transfer
2712
2715
  # mode][2] configuration:
@@ -2745,8 +2748,8 @@ module Aws::DataSync
2745
2748
  # @!attribute [rw] files_transferred
2746
2749
  # The number of files, objects, and directories that DataSync actually
2747
2750
  # transfers over the network. This value is updated periodically
2748
- # during the task execution's `TRANSFERRING` [step][1] when something
2749
- # is read from the source and sent over the network.
2751
+ # during your task execution when something is read from the source
2752
+ # and sent over the network.
2750
2753
  #
2751
2754
  # If DataSync fails to transfer something, this value can be less than
2752
2755
  # `EstimatedFilesToTransfer`. In some cases, this value can also be
@@ -2754,10 +2757,6 @@ module Aws::DataSync
2754
2757
  # implementation-specific for some location types, so don't use it as
2755
2758
  # an exact indication of what's transferring or to monitor your task
2756
2759
  # execution.
2757
- #
2758
- #
2759
- #
2760
- # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/run-task.html#understand-task-execution-statuses
2761
2760
  # @return [Integer]
2762
2761
  #
2763
2762
  # @!attribute [rw] bytes_written
@@ -2781,14 +2780,9 @@ module Aws::DataSync
2781
2780
  # is typically less than [BytesTransferred][1] unless the data isn't
2782
2781
  # compressible.
2783
2782
  #
2784
- # <note markdown="1"> Not currently supported with [Enhanced mode tasks][2].
2785
- #
2786
- # </note>
2787
- #
2788
2783
  #
2789
2784
  #
2790
2785
  # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/API_DescribeTaskExecution.html#DataSync-DescribeTaskExecution-response-BytesTransferred
2791
- # [2]: https://docs.aws.amazon.com/datasync/latest/userguide/choosing-task-mode.html
2792
2786
  # @return [Integer]
2793
2787
  #
2794
2788
  # @!attribute [rw] result
@@ -2807,9 +2801,9 @@ module Aws::DataSync
2807
2801
  #
2808
2802
  # @!attribute [rw] files_deleted
2809
2803
  # The number of files, objects, and directories that DataSync actually
2810
- # deletes in your destination location. If you don't [configure your
2811
- # task][1] to delete data in the destination that isn't in the
2812
- # source, the value is always `0`.
2804
+ # deletes in your destination location. If you don't configure your
2805
+ # task to [delete data in the destination that isn't in the
2806
+ # source][1], the value is always `0`.
2813
2807
  #
2814
2808
  #
2815
2809
  #
@@ -2847,9 +2841,9 @@ module Aws::DataSync
2847
2841
  #
2848
2842
  # @!attribute [rw] estimated_files_to_delete
2849
2843
  # The number of files, objects, and directories that DataSync expects
2850
- # to delete in your destination location. If you don't [configure
2851
- # your task][1] to delete data in the destination that isn't in the
2852
- # source, the value is always `0`.
2844
+ # to delete in your destination location. If you don't configure your
2845
+ # task to [delete data in the destination that isn't in the
2846
+ # source][1], the value is always `0`.
2853
2847
  #
2854
2848
  #
2855
2849
  #
@@ -2873,7 +2867,7 @@ module Aws::DataSync
2873
2867
  #
2874
2868
  # </note>
2875
2869
  #
2876
- # This metric isn't applicable if you configure your task to
2870
+ # This counter isn't applicable if you configure your task to
2877
2871
  # [transfer all data][2]. In that scenario, DataSync copies everything
2878
2872
  # from the source to the destination without comparing differences
2879
2873
  # between the locations.
@@ -5567,7 +5561,7 @@ module Aws::DataSync
5567
5561
  #
5568
5562
  # @!attribute [rw] at_destination_for_delete
5569
5563
  # The number of objects that DataSync finds at your destination
5570
- # location. This metric is only applicable if you [configure your
5564
+ # location. This counter is only applicable if you [configure your
5571
5565
  # task][1] to delete data in the destination that isn't in the
5572
5566
  # source.
5573
5567
  #
@@ -54,7 +54,7 @@ module Aws::DataSync
54
54
  autoload :EndpointProvider, 'aws-sdk-datasync/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-datasync/endpoints'
56
56
 
57
- GEM_VERSION = '1.91.0'
57
+ GEM_VERSION = '1.92.0'
58
58
 
59
59
  end
60
60
 
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.91.0
4
+ version: 1.92.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-10-30 00:00:00.000000000 Z
11
+ date: 2024-11-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core