aws-sdk-datasync 1.91.0 → 1.93.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 +12 -8
- data/lib/aws-sdk-datasync/types.rb +21 -30
- data/lib/aws-sdk-datasync.rb +1 -1
- 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: 26d18879cd796abec1900c72554c4c2ae39808cd4a9be37cfa893f62648c36bb
|
4
|
+
data.tar.gz: e07a38cd91ceac339cbf315f5c51028b022203a6b446c46615f5dc3e9ef56232
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2ce9d026bd8f116b59e05c2afd94ef439386789acfe5c9cfae9437a6936f5f42314287689633b1af078566e48c1efd61644317c8bc8d7a7f96166d567f96f164
|
7
|
+
data.tar.gz: e0039463133d75baec2c3ba86b6179ced705947deef1c490afb26a74780f307c105c711d06c914825e9df4b4dd7120e3ab2d82469acefe4d238df671d452b29b
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.93.0 (2024-11-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.92.0 (2024-11-15)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Doc-only updates and enhancements related to creating DataSync tasks and describing task executions.
|
13
|
+
|
4
14
|
1.91.0 (2024-10-30)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.93.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
|
-
#
|
1913
|
-
#
|
1914
|
-
#
|
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
|
1924
|
-
#
|
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
|
-
#
|
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-
|
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.
|
4777
|
+
context[:gem_version] = '1.93.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
|
-
#
|
1386
|
-
#
|
1387
|
-
#
|
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
|
1397
|
-
#
|
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
|
2708
|
-
#
|
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:
|
@@ -2725,7 +2728,6 @@ module Aws::DataSync
|
|
2725
2728
|
# * **(Basic task mode only)** The number of items that DataSync
|
2726
2729
|
# expects to delete (if [PreserveDeletedFiles][4] is set to
|
2727
2730
|
# `REMOVE`).
|
2728
|
-
#
|
2729
2731
|
# * If `TranserMode` is set to `ALL` - The calculation is based only
|
2730
2732
|
# on the items that DataSync finds at the source location.
|
2731
2733
|
#
|
@@ -2745,8 +2747,8 @@ module Aws::DataSync
|
|
2745
2747
|
# @!attribute [rw] files_transferred
|
2746
2748
|
# The number of files, objects, and directories that DataSync actually
|
2747
2749
|
# transfers over the network. This value is updated periodically
|
2748
|
-
# during
|
2749
|
-
#
|
2750
|
+
# during your task execution when something is read from the source
|
2751
|
+
# and sent over the network.
|
2750
2752
|
#
|
2751
2753
|
# If DataSync fails to transfer something, this value can be less than
|
2752
2754
|
# `EstimatedFilesToTransfer`. In some cases, this value can also be
|
@@ -2754,10 +2756,6 @@ module Aws::DataSync
|
|
2754
2756
|
# implementation-specific for some location types, so don't use it as
|
2755
2757
|
# an exact indication of what's transferring or to monitor your task
|
2756
2758
|
# execution.
|
2757
|
-
#
|
2758
|
-
#
|
2759
|
-
#
|
2760
|
-
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/run-task.html#understand-task-execution-statuses
|
2761
2759
|
# @return [Integer]
|
2762
2760
|
#
|
2763
2761
|
# @!attribute [rw] bytes_written
|
@@ -2781,14 +2779,9 @@ module Aws::DataSync
|
|
2781
2779
|
# is typically less than [BytesTransferred][1] unless the data isn't
|
2782
2780
|
# compressible.
|
2783
2781
|
#
|
2784
|
-
# <note markdown="1"> Not currently supported with [Enhanced mode tasks][2].
|
2785
|
-
#
|
2786
|
-
# </note>
|
2787
|
-
#
|
2788
2782
|
#
|
2789
2783
|
#
|
2790
2784
|
# [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
2785
|
# @return [Integer]
|
2793
2786
|
#
|
2794
2787
|
# @!attribute [rw] result
|
@@ -2807,9 +2800,9 @@ module Aws::DataSync
|
|
2807
2800
|
#
|
2808
2801
|
# @!attribute [rw] files_deleted
|
2809
2802
|
# The number of files, objects, and directories that DataSync actually
|
2810
|
-
# deletes in your destination location. If you don't
|
2811
|
-
# task
|
2812
|
-
# source, the value is always `0`.
|
2803
|
+
# deletes in your destination location. If you don't configure your
|
2804
|
+
# task to [delete data in the destination that isn't in the
|
2805
|
+
# source][1], the value is always `0`.
|
2813
2806
|
#
|
2814
2807
|
#
|
2815
2808
|
#
|
@@ -2847,9 +2840,9 @@ module Aws::DataSync
|
|
2847
2840
|
#
|
2848
2841
|
# @!attribute [rw] estimated_files_to_delete
|
2849
2842
|
# The number of files, objects, and directories that DataSync expects
|
2850
|
-
# to delete in your destination location. If you don't
|
2851
|
-
#
|
2852
|
-
# source, the value is always `0`.
|
2843
|
+
# to delete in your destination location. If you don't configure your
|
2844
|
+
# task to [delete data in the destination that isn't in the
|
2845
|
+
# source][1], the value is always `0`.
|
2853
2846
|
#
|
2854
2847
|
#
|
2855
2848
|
#
|
@@ -2873,7 +2866,7 @@ module Aws::DataSync
|
|
2873
2866
|
#
|
2874
2867
|
# </note>
|
2875
2868
|
#
|
2876
|
-
# This
|
2869
|
+
# This counter isn't applicable if you configure your task to
|
2877
2870
|
# [transfer all data][2]. In that scenario, DataSync copies everything
|
2878
2871
|
# from the source to the destination without comparing differences
|
2879
2872
|
# between the locations.
|
@@ -4646,7 +4639,6 @@ module Aws::DataSync
|
|
4646
4639
|
#
|
4647
4640
|
# DataSync won't copy NTFS system access control lists (SACLs)
|
4648
4641
|
# with this option.
|
4649
|
-
#
|
4650
4642
|
# * `OWNER_DACL_SACL` - For each copied object, DataSync copies the
|
4651
4643
|
# following metadata:
|
4652
4644
|
#
|
@@ -4664,7 +4656,6 @@ module Aws::DataSync
|
|
4664
4656
|
# see required permissions for [SMB][2], [FSx for Windows File
|
4665
4657
|
# Server][3], or [FSx for ONTAP][4] (depending on the type of
|
4666
4658
|
# location in your transfer).
|
4667
|
-
#
|
4668
4659
|
# * `NONE` - None of the SMB security descriptor components are
|
4669
4660
|
# copied. Destination objects are owned by the user that was
|
4670
4661
|
# provided for accessing the destination location. DACLs and SACLs
|
@@ -5567,7 +5558,7 @@ module Aws::DataSync
|
|
5567
5558
|
#
|
5568
5559
|
# @!attribute [rw] at_destination_for_delete
|
5569
5560
|
# The number of objects that DataSync finds at your destination
|
5570
|
-
# location. This
|
5561
|
+
# location. This counter is only applicable if you [configure your
|
5571
5562
|
# task][1] to delete data in the destination that isn't in the
|
5572
5563
|
# source.
|
5573
5564
|
#
|
data/lib/aws-sdk-datasync.rb
CHANGED
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.93.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-11-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|