aws-sdk-datasync 1.62.0 → 1.64.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 +290 -93
- data/lib/aws-sdk-datasync/client_api.rb +84 -0
- data/lib/aws-sdk-datasync/endpoints.rb +42 -0
- data/lib/aws-sdk-datasync/plugins/endpoints.rb +6 -0
- data/lib/aws-sdk-datasync/types.rb +338 -114
- data/lib/aws-sdk-datasync.rb +1 -1
- metadata +2 -2
@@ -28,7 +28,7 @@ module Aws::DataSync
|
|
28
28
|
# @!attribute [rw] agent_arns
|
29
29
|
# Specifies the Amazon Resource Name (ARN) of the DataSync agent that
|
30
30
|
# connects to and reads from your on-premises storage system's
|
31
|
-
# management interface.
|
31
|
+
# management interface. You can only specify one ARN.
|
32
32
|
# @return [Array<String>]
|
33
33
|
#
|
34
34
|
# @!attribute [rw] cloud_watch_log_group_arn
|
@@ -122,6 +122,34 @@ module Aws::DataSync
|
|
122
122
|
include Aws::Structure
|
123
123
|
end
|
124
124
|
|
125
|
+
# The shared access signature (SAS) configuration that allows DataSync
|
126
|
+
# to access your Microsoft Azure Blob Storage.
|
127
|
+
#
|
128
|
+
# For more information, see [SAS tokens][1] for accessing your Azure
|
129
|
+
# Blob Storage.
|
130
|
+
#
|
131
|
+
#
|
132
|
+
#
|
133
|
+
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/creating-azure-blob-location.html#azure-blob-sas-tokens
|
134
|
+
#
|
135
|
+
# @!attribute [rw] token
|
136
|
+
# Specifies a SAS token that provides permissions at the Azure storage
|
137
|
+
# account, container, or folder level.
|
138
|
+
#
|
139
|
+
# The token is part of the SAS URI string that comes after the storage
|
140
|
+
# resource URI and a question mark. A token looks something like this:
|
141
|
+
#
|
142
|
+
# `sp=r&st=2023-12-20T14:54:52Z&se=2023-12-20T22:54:52Z&spr=https&sv=2021-06-08&sr=c&sig=aBBKDWQvyuVcTPH9EBp%2FXTI9E%2F%2Fmq171%2BZU178wcwqU%3D`
|
143
|
+
# @return [String]
|
144
|
+
#
|
145
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/AzureBlobSasConfiguration AWS API Documentation
|
146
|
+
#
|
147
|
+
class AzureBlobSasConfiguration < Struct.new(
|
148
|
+
:token)
|
149
|
+
SENSITIVE = [:token]
|
150
|
+
include Aws::Structure
|
151
|
+
end
|
152
|
+
|
125
153
|
# CancelTaskExecutionRequest
|
126
154
|
#
|
127
155
|
# @!attribute [rw] task_execution_arn
|
@@ -156,12 +184,18 @@ module Aws::DataSync
|
|
156
184
|
# without accounting for compression or deduplication.
|
157
185
|
# @return [Integer]
|
158
186
|
#
|
187
|
+
# @!attribute [rw] cluster_cloud_storage_used
|
188
|
+
# The amount of space in the cluster that's in cloud storage (for
|
189
|
+
# example, if you're using data tiering).
|
190
|
+
# @return [Integer]
|
191
|
+
#
|
159
192
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/Capacity AWS API Documentation
|
160
193
|
#
|
161
194
|
class Capacity < Struct.new(
|
162
195
|
:used,
|
163
196
|
:provisioned,
|
164
|
-
:logical_used
|
197
|
+
:logical_used,
|
198
|
+
:cluster_cloud_storage_used)
|
165
199
|
SENSITIVE = []
|
166
200
|
include Aws::Structure
|
167
201
|
end
|
@@ -201,6 +235,7 @@ module Aws::DataSync
|
|
201
235
|
# Specifies the ARN of the subnet where you want to run your DataSync
|
202
236
|
# task when using a VPC endpoint. This is the subnet where DataSync
|
203
237
|
# creates and manages the [network interfaces][1] for your transfer.
|
238
|
+
# You can only specify one ARN.
|
204
239
|
#
|
205
240
|
#
|
206
241
|
#
|
@@ -210,7 +245,7 @@ module Aws::DataSync
|
|
210
245
|
# @!attribute [rw] security_group_arns
|
211
246
|
# Specifies the Amazon Resource Name (ARN) of the security group that
|
212
247
|
# protects your task's [network interfaces][1] when [using a virtual
|
213
|
-
# private cloud (VPC) endpoint][2].
|
248
|
+
# private cloud (VPC) endpoint][2]. You can only specify one ARN.
|
214
249
|
#
|
215
250
|
#
|
216
251
|
#
|
@@ -251,6 +286,95 @@ module Aws::DataSync
|
|
251
286
|
include Aws::Structure
|
252
287
|
end
|
253
288
|
|
289
|
+
# @!attribute [rw] container_url
|
290
|
+
# Specifies the URL of the Azure Blob Storage container involved in
|
291
|
+
# your transfer.
|
292
|
+
# @return [String]
|
293
|
+
#
|
294
|
+
# @!attribute [rw] authentication_type
|
295
|
+
# Specifies the authentication method DataSync uses to access your
|
296
|
+
# Azure Blob Storage. DataSync can access blob storage using a shared
|
297
|
+
# access signature (SAS).
|
298
|
+
# @return [String]
|
299
|
+
#
|
300
|
+
# @!attribute [rw] sas_configuration
|
301
|
+
# Specifies the SAS configuration that allows DataSync to access your
|
302
|
+
# Azure Blob Storage.
|
303
|
+
# @return [Types::AzureBlobSasConfiguration]
|
304
|
+
#
|
305
|
+
# @!attribute [rw] blob_type
|
306
|
+
# Specifies the type of blob that you want your objects or files to be
|
307
|
+
# when transferring them into Azure Blob Storage. Currently, DataSync
|
308
|
+
# only supports moving data into Azure Blob Storage as block blobs.
|
309
|
+
# For more information on blob types, see the [Azure Blob Storage
|
310
|
+
# documentation][1].
|
311
|
+
#
|
312
|
+
#
|
313
|
+
#
|
314
|
+
# [1]: https://learn.microsoft.com/en-us/rest/api/storageservices/understanding-block-blobs--append-blobs--and-page-blobs
|
315
|
+
# @return [String]
|
316
|
+
#
|
317
|
+
# @!attribute [rw] access_tier
|
318
|
+
# Specifies the access tier that you want your objects or files
|
319
|
+
# transferred into. This only applies when using the location as a
|
320
|
+
# transfer destination. For more information, see [Access tiers][1].
|
321
|
+
#
|
322
|
+
#
|
323
|
+
#
|
324
|
+
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/creating-azure-blob-location.html#azure-blob-access-tiers
|
325
|
+
# @return [String]
|
326
|
+
#
|
327
|
+
# @!attribute [rw] subdirectory
|
328
|
+
# Specifies path segments if you want to limit your transfer to a
|
329
|
+
# virtual directory in your container (for example, `/my/images`).
|
330
|
+
# @return [String]
|
331
|
+
#
|
332
|
+
# @!attribute [rw] agent_arns
|
333
|
+
# Specifies the Amazon Resource Name (ARN) of the DataSync agent that
|
334
|
+
# can connect with your Azure Blob Storage container.
|
335
|
+
#
|
336
|
+
# You can specify more than one agent. For more information, see
|
337
|
+
# [Using multiple agents for your transfer][1].
|
338
|
+
#
|
339
|
+
#
|
340
|
+
#
|
341
|
+
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/multiple-agents.html
|
342
|
+
# @return [Array<String>]
|
343
|
+
#
|
344
|
+
# @!attribute [rw] tags
|
345
|
+
# Specifies labels that help you categorize, filter, and search for
|
346
|
+
# your Amazon Web Services resources. We recommend creating at least a
|
347
|
+
# name tag for your transfer location.
|
348
|
+
# @return [Array<Types::TagListEntry>]
|
349
|
+
#
|
350
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/CreateLocationAzureBlobRequest AWS API Documentation
|
351
|
+
#
|
352
|
+
class CreateLocationAzureBlobRequest < Struct.new(
|
353
|
+
:container_url,
|
354
|
+
:authentication_type,
|
355
|
+
:sas_configuration,
|
356
|
+
:blob_type,
|
357
|
+
:access_tier,
|
358
|
+
:subdirectory,
|
359
|
+
:agent_arns,
|
360
|
+
:tags)
|
361
|
+
SENSITIVE = []
|
362
|
+
include Aws::Structure
|
363
|
+
end
|
364
|
+
|
365
|
+
# @!attribute [rw] location_arn
|
366
|
+
# The ARN of the Azure Blob Storage transfer location that you
|
367
|
+
# created.
|
368
|
+
# @return [String]
|
369
|
+
#
|
370
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/CreateLocationAzureBlobResponse AWS API Documentation
|
371
|
+
#
|
372
|
+
class CreateLocationAzureBlobResponse < Struct.new(
|
373
|
+
:location_arn)
|
374
|
+
SENSITIVE = []
|
375
|
+
include Aws::Structure
|
376
|
+
end
|
377
|
+
|
254
378
|
# CreateLocationEfsRequest
|
255
379
|
#
|
256
380
|
# @!attribute [rw] subdirectory
|
@@ -719,77 +843,44 @@ module Aws::DataSync
|
|
719
843
|
# CreateLocationNfsRequest
|
720
844
|
#
|
721
845
|
# @!attribute [rw] subdirectory
|
722
|
-
#
|
723
|
-
#
|
724
|
-
# The NFS path should be a path that's exported by the NFS server, or
|
725
|
-
# a subdirectory of that path. The path should be such that it can be
|
726
|
-
# mounted by other NFS clients in your network.
|
727
|
-
#
|
728
|
-
# To see all the paths exported by your NFS server, run "`showmount
|
729
|
-
# -e nfs-server-name`" from an NFS client that has access to your
|
730
|
-
# server. You can specify any directory that appears in the results,
|
731
|
-
# and any subdirectory of that directory. Ensure that the NFS export
|
732
|
-
# is accessible without Kerberos authentication.
|
733
|
-
#
|
734
|
-
# To transfer all the data in the folder you specified, DataSync needs
|
735
|
-
# to have permissions to read all the data. To ensure this, either
|
736
|
-
# configure the NFS export with `no_root_squash,` or ensure that the
|
737
|
-
# permissions for all of the files that you want DataSync allow read
|
738
|
-
# access for all users. Doing either enables the agent to read the
|
739
|
-
# files. For the agent to access directories, you must additionally
|
740
|
-
# enable all execute access.
|
846
|
+
# Specifies the export path in your NFS file server that you want
|
847
|
+
# DataSync to mount.
|
741
848
|
#
|
742
|
-
#
|
743
|
-
#
|
849
|
+
# This path (or a subdirectory of the path) is where DataSync
|
850
|
+
# transfers data to or from. For information on configuring an export
|
851
|
+
# for DataSync, see [Accessing NFS file servers][1].
|
744
852
|
#
|
745
|
-
# For information about NFS export configuration, see 18.7. The
|
746
|
-
# /etc/exports Configuration File in the Red Hat Enterprise Linux
|
747
|
-
# documentation.
|
748
853
|
#
|
749
854
|
#
|
750
|
-
#
|
751
|
-
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html#nfs-on-snowcone
|
855
|
+
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html#accessing-nfs
|
752
856
|
# @return [String]
|
753
857
|
#
|
754
858
|
# @!attribute [rw] server_hostname
|
755
|
-
#
|
756
|
-
#
|
757
|
-
# installed on-premises uses this hostname to mount the NFS server in
|
758
|
-
# a network.
|
759
|
-
#
|
760
|
-
# If you are copying data to or from your Snowcone device, see [NFS
|
761
|
-
# Server on Snowcone][1] for more information.
|
762
|
-
#
|
763
|
-
# <note markdown="1"> This name must either be DNS-compliant or must be an IP version 4
|
764
|
-
# (IPv4) address.
|
765
|
-
#
|
766
|
-
# </note>
|
767
|
-
#
|
768
|
-
#
|
769
|
-
#
|
770
|
-
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html#nfs-on-snowcone
|
859
|
+
# Specifies the Domain Name System (DNS) name or IP version 4 address
|
860
|
+
# of the NFS file server that your DataSync agent connects to.
|
771
861
|
# @return [String]
|
772
862
|
#
|
773
863
|
# @!attribute [rw] on_prem_config
|
774
|
-
#
|
775
|
-
#
|
864
|
+
# Specifies the Amazon Resource Name (ARN) of the DataSync agent that
|
865
|
+
# want to connect to your NFS file server.
|
776
866
|
#
|
777
|
-
#
|
778
|
-
#
|
867
|
+
# You can specify more than one agent. For more information, see
|
868
|
+
# [Using multiple agents for transfers][1].
|
779
869
|
#
|
780
870
|
#
|
781
871
|
#
|
782
|
-
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/
|
872
|
+
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/multiple-agents.html
|
783
873
|
# @return [Types::OnPremConfig]
|
784
874
|
#
|
785
875
|
# @!attribute [rw] mount_options
|
786
|
-
#
|
876
|
+
# Specifies the options that DataSync can use to mount your NFS file
|
877
|
+
# server.
|
787
878
|
# @return [Types::NfsMountOptions]
|
788
879
|
#
|
789
880
|
# @!attribute [rw] tags
|
790
|
-
#
|
791
|
-
#
|
792
|
-
#
|
881
|
+
# Specifies labels that help you categorize, filter, and search for
|
882
|
+
# your Amazon Web Services resources. We recommend creating at least a
|
883
|
+
# name tag for your location.
|
793
884
|
# @return [Array<Types::TagListEntry>]
|
794
885
|
#
|
795
886
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/CreateLocationNfsRequest AWS API Documentation
|
@@ -807,8 +898,8 @@ module Aws::DataSync
|
|
807
898
|
# CreateLocationNfsResponse
|
808
899
|
#
|
809
900
|
# @!attribute [rw] location_arn
|
810
|
-
# The
|
811
|
-
#
|
901
|
+
# The ARN of the transfer location that you created for your NFS file
|
902
|
+
# server.
|
812
903
|
# @return [String]
|
813
904
|
#
|
814
905
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/CreateLocationNfsResponse AWS API Documentation
|
@@ -1433,6 +1524,79 @@ module Aws::DataSync
|
|
1433
1524
|
include Aws::Structure
|
1434
1525
|
end
|
1435
1526
|
|
1527
|
+
# @!attribute [rw] location_arn
|
1528
|
+
# Specifies the Amazon Resource Name (ARN) of your Azure Blob Storage
|
1529
|
+
# transfer location.
|
1530
|
+
# @return [String]
|
1531
|
+
#
|
1532
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeLocationAzureBlobRequest AWS API Documentation
|
1533
|
+
#
|
1534
|
+
class DescribeLocationAzureBlobRequest < Struct.new(
|
1535
|
+
:location_arn)
|
1536
|
+
SENSITIVE = []
|
1537
|
+
include Aws::Structure
|
1538
|
+
end
|
1539
|
+
|
1540
|
+
# @!attribute [rw] location_arn
|
1541
|
+
# The ARN of your Azure Blob Storage transfer location.
|
1542
|
+
# @return [String]
|
1543
|
+
#
|
1544
|
+
# @!attribute [rw] location_uri
|
1545
|
+
# The URL of the Azure Blob Storage container involved in your
|
1546
|
+
# transfer.
|
1547
|
+
# @return [String]
|
1548
|
+
#
|
1549
|
+
# @!attribute [rw] authentication_type
|
1550
|
+
# The authentication method DataSync uses to access your Azure Blob
|
1551
|
+
# Storage. DataSync can access blob storage using a shared access
|
1552
|
+
# signature (SAS).
|
1553
|
+
# @return [String]
|
1554
|
+
#
|
1555
|
+
# @!attribute [rw] blob_type
|
1556
|
+
# The type of blob that you want your objects or files to be when
|
1557
|
+
# transferring them into Azure Blob Storage. Currently, DataSync only
|
1558
|
+
# supports moving data into Azure Blob Storage as block blobs. For
|
1559
|
+
# more information on blob types, see the [Azure Blob Storage
|
1560
|
+
# documentation][1].
|
1561
|
+
#
|
1562
|
+
#
|
1563
|
+
#
|
1564
|
+
# [1]: https://learn.microsoft.com/en-us/rest/api/storageservices/understanding-block-blobs--append-blobs--and-page-blobs
|
1565
|
+
# @return [String]
|
1566
|
+
#
|
1567
|
+
# @!attribute [rw] access_tier
|
1568
|
+
# The access tier that you want your objects or files transferred
|
1569
|
+
# into. This only applies when using the location as a transfer
|
1570
|
+
# destination. For more information, see [Access tiers][1].
|
1571
|
+
#
|
1572
|
+
#
|
1573
|
+
#
|
1574
|
+
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/creating-azure-blob-location.html#azure-blob-access-tiers
|
1575
|
+
# @return [String]
|
1576
|
+
#
|
1577
|
+
# @!attribute [rw] agent_arns
|
1578
|
+
# The ARNs of the DataSync agents that can connect with your Azure
|
1579
|
+
# Blob Storage container.
|
1580
|
+
# @return [Array<String>]
|
1581
|
+
#
|
1582
|
+
# @!attribute [rw] creation_time
|
1583
|
+
# The time that your Azure Blob Storage transfer location was created.
|
1584
|
+
# @return [Time]
|
1585
|
+
#
|
1586
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeLocationAzureBlobResponse AWS API Documentation
|
1587
|
+
#
|
1588
|
+
class DescribeLocationAzureBlobResponse < Struct.new(
|
1589
|
+
:location_arn,
|
1590
|
+
:location_uri,
|
1591
|
+
:authentication_type,
|
1592
|
+
:blob_type,
|
1593
|
+
:access_tier,
|
1594
|
+
:agent_arns,
|
1595
|
+
:creation_time)
|
1596
|
+
SENSITIVE = []
|
1597
|
+
include Aws::Structure
|
1598
|
+
end
|
1599
|
+
|
1436
1600
|
# DescribeLocationEfsRequest
|
1437
1601
|
#
|
1438
1602
|
# @!attribute [rw] location_arn
|
@@ -1792,7 +1956,8 @@ module Aws::DataSync
|
|
1792
1956
|
# DescribeLocationNfsRequest
|
1793
1957
|
#
|
1794
1958
|
# @!attribute [rw] location_arn
|
1795
|
-
#
|
1959
|
+
# Specifies the Amazon Resource Name (ARN) of the NFS location that
|
1960
|
+
# you want information about.
|
1796
1961
|
# @return [String]
|
1797
1962
|
#
|
1798
1963
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeLocationNfsRequest AWS API Documentation
|
@@ -1806,25 +1971,24 @@ module Aws::DataSync
|
|
1806
1971
|
# DescribeLocationNfsResponse
|
1807
1972
|
#
|
1808
1973
|
# @!attribute [rw] location_arn
|
1809
|
-
# The
|
1810
|
-
# described.
|
1974
|
+
# The ARN of the NFS location.
|
1811
1975
|
# @return [String]
|
1812
1976
|
#
|
1813
1977
|
# @!attribute [rw] location_uri
|
1814
|
-
# The URL of the
|
1978
|
+
# The URL of the NFS location.
|
1815
1979
|
# @return [String]
|
1816
1980
|
#
|
1817
1981
|
# @!attribute [rw] on_prem_config
|
1818
|
-
#
|
1819
|
-
#
|
1982
|
+
# The DataSync agents that are connecting to a Network File System
|
1983
|
+
# (NFS) location.
|
1820
1984
|
# @return [Types::OnPremConfig]
|
1821
1985
|
#
|
1822
1986
|
# @!attribute [rw] mount_options
|
1823
|
-
# The
|
1987
|
+
# The mount options that DataSync uses to mount your NFS file server.
|
1824
1988
|
# @return [Types::NfsMountOptions]
|
1825
1989
|
#
|
1826
1990
|
# @!attribute [rw] creation_time
|
1827
|
-
# The time
|
1991
|
+
# The time when the NFS location was created.
|
1828
1992
|
# @return [Time]
|
1829
1993
|
#
|
1830
1994
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeLocationNfsResponse AWS API Documentation
|
@@ -2282,7 +2446,8 @@ module Aws::DataSync
|
|
2282
2446
|
# DescribeTaskExecutionRequest
|
2283
2447
|
#
|
2284
2448
|
# @!attribute [rw] task_execution_arn
|
2285
|
-
#
|
2449
|
+
# Specifies the Amazon Resource Name (ARN) of the transfer task
|
2450
|
+
# that's running.
|
2286
2451
|
# @return [String]
|
2287
2452
|
#
|
2288
2453
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeTaskExecutionRequest AWS API Documentation
|
@@ -2420,7 +2585,7 @@ module Aws::DataSync
|
|
2420
2585
|
# DescribeTaskRequest
|
2421
2586
|
#
|
2422
2587
|
# @!attribute [rw] task_arn
|
2423
|
-
#
|
2588
|
+
# Specifies the Amazon Resource Name (ARN) of the transfer task.
|
2424
2589
|
# @return [String]
|
2425
2590
|
#
|
2426
2591
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeTaskRequest AWS API Documentation
|
@@ -3458,6 +3623,11 @@ module Aws::DataSync
|
|
3458
3623
|
# The number of LUNs (logical unit numbers) in the cluster.
|
3459
3624
|
# @return [Integer]
|
3460
3625
|
#
|
3626
|
+
# @!attribute [rw] cluster_cloud_storage_used
|
3627
|
+
# The amount of space in the cluster that's in cloud storage (for
|
3628
|
+
# example, if you're using data tiering).
|
3629
|
+
# @return [Integer]
|
3630
|
+
#
|
3461
3631
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/NetAppONTAPCluster AWS API Documentation
|
3462
3632
|
#
|
3463
3633
|
class NetAppONTAPCluster < Struct.new(
|
@@ -3471,7 +3641,8 @@ module Aws::DataSync
|
|
3471
3641
|
:cluster_block_storage_logical_used,
|
3472
3642
|
:recommendations,
|
3473
3643
|
:recommendation_status,
|
3474
|
-
:lun_count
|
3644
|
+
:lun_count,
|
3645
|
+
:cluster_cloud_storage_used)
|
3475
3646
|
SENSITIVE = []
|
3476
3647
|
include Aws::Structure
|
3477
3648
|
end
|
@@ -3708,11 +3879,12 @@ module Aws::DataSync
|
|
3708
3879
|
include Aws::Structure
|
3709
3880
|
end
|
3710
3881
|
|
3711
|
-
#
|
3712
|
-
#
|
3882
|
+
# The DataSync agents that are connecting to a Network File System (NFS)
|
3883
|
+
# location.
|
3713
3884
|
#
|
3714
3885
|
# @!attribute [rw] agent_arns
|
3715
|
-
# ARNs of the agents to
|
3886
|
+
# The Amazon Resource Names (ARNs) of the agents connecting to a
|
3887
|
+
# transfer location.
|
3716
3888
|
# @return [Array<String>]
|
3717
3889
|
#
|
3718
3890
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/OnPremConfig AWS API Documentation
|
@@ -4087,19 +4259,17 @@ module Aws::DataSync
|
|
4087
4259
|
include Aws::Structure
|
4088
4260
|
end
|
4089
4261
|
|
4090
|
-
#
|
4091
|
-
#
|
4262
|
+
# Specifies how your DataSync agent connects to Amazon Web Services
|
4263
|
+
# using a virtual private cloud (VPC) service endpoint. An agent that
|
4264
|
+
# uses a VPC endpoint isn't accessible over the public internet.
|
4092
4265
|
#
|
4093
4266
|
# @!attribute [rw] vpc_endpoint_id
|
4094
|
-
#
|
4095
|
-
# that is configured with a VPC endpoint will not be accessible over
|
4096
|
-
# the public internet.
|
4267
|
+
# Specifies the ID of the VPC endpoint that your agent connects to.
|
4097
4268
|
# @return [String]
|
4098
4269
|
#
|
4099
4270
|
# @!attribute [rw] private_link_endpoint
|
4100
|
-
#
|
4101
|
-
#
|
4102
|
-
# with this endpoint will not be accessible over the public internet.
|
4271
|
+
# Specifies the VPC endpoint provided by [Amazon Web Services
|
4272
|
+
# PrivateLink][1] that your agent connects to.
|
4103
4273
|
#
|
4104
4274
|
#
|
4105
4275
|
#
|
@@ -4107,15 +4277,14 @@ module Aws::DataSync
|
|
4107
4277
|
# @return [String]
|
4108
4278
|
#
|
4109
4279
|
# @!attribute [rw] subnet_arns
|
4110
|
-
#
|
4111
|
-
#
|
4112
|
-
# endpoint.
|
4280
|
+
# Specifies the ARN of the subnet where your VPC endpoint is located.
|
4281
|
+
# You can only specify one ARN.
|
4113
4282
|
# @return [Array<String>]
|
4114
4283
|
#
|
4115
4284
|
# @!attribute [rw] security_group_arns
|
4116
|
-
#
|
4117
|
-
#
|
4118
|
-
#
|
4285
|
+
# Specifies the Amazon Resource Names (ARN) of the security group that
|
4286
|
+
# provides DataSync access to your VPC endpoint. You can only specify
|
4287
|
+
# one ARN.
|
4119
4288
|
# @return [Array<String>]
|
4120
4289
|
#
|
4121
4290
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/PrivateLinkConfig AWS API Documentation
|
@@ -4826,6 +4995,79 @@ module Aws::DataSync
|
|
4826
4995
|
#
|
4827
4996
|
class UpdateDiscoveryJobResponse < Aws::EmptyStructure; end
|
4828
4997
|
|
4998
|
+
# @!attribute [rw] location_arn
|
4999
|
+
# Specifies the ARN of the Azure Blob Storage transfer location that
|
5000
|
+
# you're updating.
|
5001
|
+
# @return [String]
|
5002
|
+
#
|
5003
|
+
# @!attribute [rw] subdirectory
|
5004
|
+
# Specifies path segments if you want to limit your transfer to a
|
5005
|
+
# virtual directory in your container (for example, `/my/images`).
|
5006
|
+
# @return [String]
|
5007
|
+
#
|
5008
|
+
# @!attribute [rw] authentication_type
|
5009
|
+
# Specifies the authentication method DataSync uses to access your
|
5010
|
+
# Azure Blob Storage. DataSync can access blob storage using a shared
|
5011
|
+
# access signature (SAS).
|
5012
|
+
# @return [String]
|
5013
|
+
#
|
5014
|
+
# @!attribute [rw] sas_configuration
|
5015
|
+
# Specifies the SAS configuration that allows DataSync to access your
|
5016
|
+
# Azure Blob Storage.
|
5017
|
+
# @return [Types::AzureBlobSasConfiguration]
|
5018
|
+
#
|
5019
|
+
# @!attribute [rw] blob_type
|
5020
|
+
# Specifies the type of blob that you want your objects or files to be
|
5021
|
+
# when transferring them into Azure Blob Storage. Currently, DataSync
|
5022
|
+
# only supports moving data into Azure Blob Storage as block blobs.
|
5023
|
+
# For more information on blob types, see the [Azure Blob Storage
|
5024
|
+
# documentation][1].
|
5025
|
+
#
|
5026
|
+
#
|
5027
|
+
#
|
5028
|
+
# [1]: https://learn.microsoft.com/en-us/rest/api/storageservices/understanding-block-blobs--append-blobs--and-page-blobs
|
5029
|
+
# @return [String]
|
5030
|
+
#
|
5031
|
+
# @!attribute [rw] access_tier
|
5032
|
+
# Specifies the access tier that you want your objects or files
|
5033
|
+
# transferred into. This only applies when using the location as a
|
5034
|
+
# transfer destination. For more information, see [Access tiers][1].
|
5035
|
+
#
|
5036
|
+
#
|
5037
|
+
#
|
5038
|
+
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/creating-azure-blob-location.html#azure-blob-access-tiers
|
5039
|
+
# @return [String]
|
5040
|
+
#
|
5041
|
+
# @!attribute [rw] agent_arns
|
5042
|
+
# Specifies the Amazon Resource Name (ARN) of the DataSync agent that
|
5043
|
+
# can connect with your Azure Blob Storage container.
|
5044
|
+
#
|
5045
|
+
# You can specify more than one agent. For more information, see
|
5046
|
+
# [Using multiple agents for your transfer][1].
|
5047
|
+
#
|
5048
|
+
#
|
5049
|
+
#
|
5050
|
+
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/multiple-agents.html
|
5051
|
+
# @return [Array<String>]
|
5052
|
+
#
|
5053
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/UpdateLocationAzureBlobRequest AWS API Documentation
|
5054
|
+
#
|
5055
|
+
class UpdateLocationAzureBlobRequest < Struct.new(
|
5056
|
+
:location_arn,
|
5057
|
+
:subdirectory,
|
5058
|
+
:authentication_type,
|
5059
|
+
:sas_configuration,
|
5060
|
+
:blob_type,
|
5061
|
+
:access_tier,
|
5062
|
+
:agent_arns)
|
5063
|
+
SENSITIVE = []
|
5064
|
+
include Aws::Structure
|
5065
|
+
end
|
5066
|
+
|
5067
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/UpdateLocationAzureBlobResponse AWS API Documentation
|
5068
|
+
#
|
5069
|
+
class UpdateLocationAzureBlobResponse < Aws::EmptyStructure; end
|
5070
|
+
|
4829
5071
|
# @!attribute [rw] location_arn
|
4830
5072
|
# The Amazon Resource Name (ARN) of the source HDFS cluster location.
|
4831
5073
|
# @return [String]
|
@@ -4920,45 +5162,26 @@ module Aws::DataSync
|
|
4920
5162
|
class UpdateLocationHdfsResponse < Aws::EmptyStructure; end
|
4921
5163
|
|
4922
5164
|
# @!attribute [rw] location_arn
|
4923
|
-
#
|
5165
|
+
# Specifies the Amazon Resource Name (ARN) of the NFS transfer
|
5166
|
+
# location that you want to update.
|
4924
5167
|
# @return [String]
|
4925
5168
|
#
|
4926
5169
|
# @!attribute [rw] subdirectory
|
4927
|
-
#
|
4928
|
-
#
|
4929
|
-
# The NFS path should be a path that's exported by the NFS server, or
|
4930
|
-
# a subdirectory of that path. The path should be such that it can be
|
4931
|
-
# mounted by other NFS clients in your network.
|
4932
|
-
#
|
4933
|
-
# To see all the paths exported by your NFS server, run "`showmount
|
4934
|
-
# -e nfs-server-name`" from an NFS client that has access to your
|
4935
|
-
# server. You can specify any directory that appears in the results,
|
4936
|
-
# and any subdirectory of that directory. Ensure that the NFS export
|
4937
|
-
# is accessible without Kerberos authentication.
|
4938
|
-
#
|
4939
|
-
# To transfer all the data in the folder that you specified, DataSync
|
4940
|
-
# must have permissions to read all the data. To ensure this, either
|
4941
|
-
# configure the NFS export with `no_root_squash`, or ensure that the
|
4942
|
-
# files you want DataSync to access have permissions that allow read
|
4943
|
-
# access for all users. Doing either option enables the agent to read
|
4944
|
-
# the files. For the agent to access directories, you must
|
4945
|
-
# additionally enable all execute access.
|
4946
|
-
#
|
4947
|
-
# If you are copying data to or from your Snowcone device, see [NFS
|
4948
|
-
# Server on Snowcone][1] for more information.
|
5170
|
+
# Specifies the export path in your NFS file server that you want
|
5171
|
+
# DataSync to mount.
|
4949
5172
|
#
|
4950
|
-
#
|
4951
|
-
#
|
4952
|
-
#
|
5173
|
+
# This path (or a subdirectory of the path) is where DataSync
|
5174
|
+
# transfers data to or from. For information on configuring an export
|
5175
|
+
# for DataSync, see [Accessing NFS file servers][1].
|
4953
5176
|
#
|
4954
5177
|
#
|
4955
5178
|
#
|
4956
|
-
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html#nfs
|
5179
|
+
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html#accessing-nfs
|
4957
5180
|
# @return [String]
|
4958
5181
|
#
|
4959
5182
|
# @!attribute [rw] on_prem_config
|
4960
|
-
#
|
4961
|
-
#
|
5183
|
+
# The DataSync agents that are connecting to a Network File System
|
5184
|
+
# (NFS) location.
|
4962
5185
|
# @return [Types::OnPremConfig]
|
4963
5186
|
#
|
4964
5187
|
# @!attribute [rw] mount_options
|
@@ -5135,7 +5358,8 @@ module Aws::DataSync
|
|
5135
5358
|
#
|
5136
5359
|
# @!attribute [rw] agent_arns
|
5137
5360
|
# Specifies the Amazon Resource Name (ARN) of the DataSync agent that
|
5138
|
-
# connects to and reads your on-premises storage system.
|
5361
|
+
# connects to and reads your on-premises storage system. You can only
|
5362
|
+
# specify one ARN.
|
5139
5363
|
# @return [Array<String>]
|
5140
5364
|
#
|
5141
5365
|
# @!attribute [rw] name
|
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.64.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: 2023-
|
11
|
+
date: 2023-08-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|