aws-sdk-datasync 1.62.0 → 1.63.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datasync/client.rb +264 -43
- data/lib/aws-sdk-datasync/client_api.rb +82 -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 +308 -53
- 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: 47476be9fe777713cef4cad10751a5312eeb8f190d6a891725b2cdd3de389e73
|
4
|
+
data.tar.gz: b6e169c01a64492b9de1195331b622d4fcf81f7a6a4d83ae4a1d01ecbcb9e355
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b18e962f3747cbf94befe830cf6d088556880455e3bc81e790275e33c103b52d1ea07385382aa7062d34fd504be5b9fc766f5c4e0fc7ffe8285f105e5e547140
|
7
|
+
data.tar.gz: e75ffea5c597baef2c3330e290caf49c794b7dec1815d700bdb5f97aae875542275ae728fb152a317b42470bba3c59585a4fa7d617713bd8e5b61d2846fe2c9e
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.63.0
|
@@ -417,7 +417,7 @@ module Aws::DataSync
|
|
417
417
|
# @option params [required, Array<String>] :agent_arns
|
418
418
|
# Specifies the Amazon Resource Name (ARN) of the DataSync agent that
|
419
419
|
# connects to and reads from your on-premises storage system's
|
420
|
-
# management interface.
|
420
|
+
# management interface. You can only specify one ARN.
|
421
421
|
#
|
422
422
|
# @option params [String] :cloud_watch_log_group_arn
|
423
423
|
# Specifies the ARN of the Amazon CloudWatch log group for monitoring
|
@@ -565,7 +565,8 @@ module Aws::DataSync
|
|
565
565
|
# @option params [Array<String>] :subnet_arns
|
566
566
|
# Specifies the ARN of the subnet where you want to run your DataSync
|
567
567
|
# task when using a VPC endpoint. This is the subnet where DataSync
|
568
|
-
# creates and manages the [network interfaces][1] for your transfer.
|
568
|
+
# creates and manages the [network interfaces][1] for your transfer. You
|
569
|
+
# can only specify one ARN.
|
569
570
|
#
|
570
571
|
#
|
571
572
|
#
|
@@ -574,7 +575,7 @@ module Aws::DataSync
|
|
574
575
|
# @option params [Array<String>] :security_group_arns
|
575
576
|
# Specifies the Amazon Resource Name (ARN) of the security group that
|
576
577
|
# protects your task's [network interfaces][1] when [using a virtual
|
577
|
-
# private cloud (VPC) endpoint][2].
|
578
|
+
# private cloud (VPC) endpoint][2]. You can only specify one ARN.
|
578
579
|
#
|
579
580
|
#
|
580
581
|
#
|
@@ -614,6 +615,110 @@ module Aws::DataSync
|
|
614
615
|
req.send_request(options)
|
615
616
|
end
|
616
617
|
|
618
|
+
# Creates an endpoint for a Microsoft Azure Blob Storage container that
|
619
|
+
# DataSync can use as a transfer source or destination.
|
620
|
+
#
|
621
|
+
# Before you begin, make sure you know [how DataSync accesses Azure Blob
|
622
|
+
# Storage][1] and works with [access tiers][2] and [blob types][3]. You
|
623
|
+
# also need a [DataSync agent][4] that can connect to your container.
|
624
|
+
#
|
625
|
+
#
|
626
|
+
#
|
627
|
+
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/creating-azure-blob-location.html#azure-blob-access
|
628
|
+
# [2]: https://docs.aws.amazon.com/datasync/latest/userguide/creating-azure-blob-location.html#azure-blob-access-tiers
|
629
|
+
# [3]: https://docs.aws.amazon.com/datasync/latest/userguide/creating-azure-blob-location.html#blob-types
|
630
|
+
# [4]: https://docs.aws.amazon.com/datasync/latest/userguide/creating-azure-blob-location.html#azure-blob-creating-agent
|
631
|
+
#
|
632
|
+
# @option params [required, String] :container_url
|
633
|
+
# Specifies the URL of the Azure Blob Storage container involved in your
|
634
|
+
# transfer.
|
635
|
+
#
|
636
|
+
# @option params [required, String] :authentication_type
|
637
|
+
# Specifies the authentication method DataSync uses to access your Azure
|
638
|
+
# Blob Storage. DataSync can access blob storage using a shared access
|
639
|
+
# signature (SAS).
|
640
|
+
#
|
641
|
+
# @option params [Types::AzureBlobSasConfiguration] :sas_configuration
|
642
|
+
# Specifies the SAS configuration that allows DataSync to access your
|
643
|
+
# Azure Blob Storage.
|
644
|
+
#
|
645
|
+
# @option params [String] :blob_type
|
646
|
+
# Specifies the type of blob that you want your objects or files to be
|
647
|
+
# when transferring them into Azure Blob Storage. Currently, DataSync
|
648
|
+
# only supports moving data into Azure Blob Storage as block blobs. For
|
649
|
+
# more information on blob types, see the [Azure Blob Storage
|
650
|
+
# documentation][1].
|
651
|
+
#
|
652
|
+
#
|
653
|
+
#
|
654
|
+
# [1]: https://learn.microsoft.com/en-us/rest/api/storageservices/understanding-block-blobs--append-blobs--and-page-blobs
|
655
|
+
#
|
656
|
+
# @option params [String] :access_tier
|
657
|
+
# Specifies the access tier that you want your objects or files
|
658
|
+
# transferred into. This only applies when using the location as a
|
659
|
+
# transfer destination. For more information, see [Access tiers][1].
|
660
|
+
#
|
661
|
+
#
|
662
|
+
#
|
663
|
+
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/creating-azure-blob-location.html#azure-blob-access-tiers
|
664
|
+
#
|
665
|
+
# @option params [String] :subdirectory
|
666
|
+
# Specifies path segments if you want to limit your transfer to a
|
667
|
+
# virtual directory in your container (for example, `/my/images`).
|
668
|
+
#
|
669
|
+
# @option params [required, Array<String>] :agent_arns
|
670
|
+
# Specifies the Amazon Resource Name (ARN) of the DataSync agent that
|
671
|
+
# can connect with your Azure Blob Storage container.
|
672
|
+
#
|
673
|
+
# You can specify more than one agent. For more information, see [Using
|
674
|
+
# multiple agents for your transfer][1].
|
675
|
+
#
|
676
|
+
#
|
677
|
+
#
|
678
|
+
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/multiple-agents.html
|
679
|
+
#
|
680
|
+
# @option params [Array<Types::TagListEntry>] :tags
|
681
|
+
# Specifies labels that help you categorize, filter, and search for your
|
682
|
+
# Amazon Web Services resources. We recommend creating at least a name
|
683
|
+
# tag for your transfer location.
|
684
|
+
#
|
685
|
+
# @return [Types::CreateLocationAzureBlobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
686
|
+
#
|
687
|
+
# * {Types::CreateLocationAzureBlobResponse#location_arn #location_arn} => String
|
688
|
+
#
|
689
|
+
# @example Request syntax with placeholder values
|
690
|
+
#
|
691
|
+
# resp = client.create_location_azure_blob({
|
692
|
+
# container_url: "AzureBlobContainerUrl", # required
|
693
|
+
# authentication_type: "SAS", # required, accepts SAS
|
694
|
+
# sas_configuration: {
|
695
|
+
# token: "AzureBlobSasToken", # required
|
696
|
+
# },
|
697
|
+
# blob_type: "BLOCK", # accepts BLOCK
|
698
|
+
# access_tier: "HOT", # accepts HOT, COOL, ARCHIVE
|
699
|
+
# subdirectory: "AzureBlobSubdirectory",
|
700
|
+
# agent_arns: ["AgentArn"], # required
|
701
|
+
# tags: [
|
702
|
+
# {
|
703
|
+
# key: "TagKey", # required
|
704
|
+
# value: "TagValue",
|
705
|
+
# },
|
706
|
+
# ],
|
707
|
+
# })
|
708
|
+
#
|
709
|
+
# @example Response structure
|
710
|
+
#
|
711
|
+
# resp.location_arn #=> String
|
712
|
+
#
|
713
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/CreateLocationAzureBlob AWS API Documentation
|
714
|
+
#
|
715
|
+
# @overload create_location_azure_blob(params = {})
|
716
|
+
# @param [Hash] params ({})
|
717
|
+
def create_location_azure_blob(params = {}, options = {})
|
718
|
+
req = build_request(:create_location_azure_blob, params)
|
719
|
+
req.send_request(options)
|
720
|
+
end
|
721
|
+
|
617
722
|
# Creates an endpoint for an Amazon EFS file system that DataSync can
|
618
723
|
# access for a transfer. For more information, see [Creating a location
|
619
724
|
# for Amazon EFS][1].
|
@@ -1151,15 +1256,14 @@ module Aws::DataSync
|
|
1151
1256
|
req.send_request(options)
|
1152
1257
|
end
|
1153
1258
|
|
1154
|
-
#
|
1155
|
-
#
|
1259
|
+
# Creates an endpoint for an Network File System (NFS) file server that
|
1260
|
+
# DataSync can use for a data transfer.
|
1156
1261
|
#
|
1157
1262
|
# @option params [required, String] :subdirectory
|
1158
|
-
#
|
1159
|
-
#
|
1160
|
-
#
|
1161
|
-
#
|
1162
|
-
# mounted by other NFS clients in your network.
|
1263
|
+
# Specifies the subdirectory in the NFS file server that DataSync
|
1264
|
+
# transfers to or from. The NFS path should be a path that's exported
|
1265
|
+
# by the NFS server, or a subdirectory of that path. The path should be
|
1266
|
+
# such that it can be mounted by other NFS clients in your network.
|
1163
1267
|
#
|
1164
1268
|
# To see all the paths exported by your NFS server, run "`showmount -e
|
1165
1269
|
# nfs-server-name`" from an NFS client that has access to your server.
|
@@ -1178,24 +1282,20 @@ module Aws::DataSync
|
|
1178
1282
|
# If you are copying data to or from your Snowcone device, see [NFS
|
1179
1283
|
# Server on Snowcone][1] for more information.
|
1180
1284
|
#
|
1181
|
-
# For information about NFS export configuration, see 18.7. The
|
1182
|
-
# /etc/exports Configuration File in the Red Hat Enterprise Linux
|
1183
|
-
# documentation.
|
1184
|
-
#
|
1185
1285
|
#
|
1186
1286
|
#
|
1187
1287
|
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html#nfs-on-snowcone
|
1188
1288
|
#
|
1189
1289
|
# @option params [required, String] :server_hostname
|
1190
|
-
#
|
1191
|
-
#
|
1192
|
-
#
|
1290
|
+
# Specifies the IP address or domain name of your NFS file server. An
|
1291
|
+
# agent that is installed on-premises uses this hostname to mount the
|
1292
|
+
# NFS server in a network.
|
1193
1293
|
#
|
1194
1294
|
# If you are copying data to or from your Snowcone device, see [NFS
|
1195
1295
|
# Server on Snowcone][1] for more information.
|
1196
1296
|
#
|
1197
|
-
# <note markdown="1">
|
1198
|
-
# (
|
1297
|
+
# <note markdown="1"> You must specify be an IP version 4 address or Domain Name System
|
1298
|
+
# (DNS)-compliant name.
|
1199
1299
|
#
|
1200
1300
|
# </note>
|
1201
1301
|
#
|
@@ -1204,8 +1304,8 @@ module Aws::DataSync
|
|
1204
1304
|
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html#nfs-on-snowcone
|
1205
1305
|
#
|
1206
1306
|
# @option params [required, Types::OnPremConfig] :on_prem_config
|
1207
|
-
#
|
1208
|
-
#
|
1307
|
+
# Specifies the Amazon Resource Names (ARNs) of agents that DataSync
|
1308
|
+
# uses to connect to your NFS file server.
|
1209
1309
|
#
|
1210
1310
|
# If you are copying data to or from your Snowcone device, see [NFS
|
1211
1311
|
# Server on Snowcone][1] for more information.
|
@@ -1215,12 +1315,13 @@ module Aws::DataSync
|
|
1215
1315
|
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html#nfs-on-snowcone
|
1216
1316
|
#
|
1217
1317
|
# @option params [Types::NfsMountOptions] :mount_options
|
1218
|
-
#
|
1318
|
+
# Specifies the mount options that DataSync can use to mount your NFS
|
1319
|
+
# share.
|
1219
1320
|
#
|
1220
1321
|
# @option params [Array<Types::TagListEntry>] :tags
|
1221
|
-
#
|
1222
|
-
#
|
1223
|
-
#
|
1322
|
+
# Specifies labels that help you categorize, filter, and search for your
|
1323
|
+
# Amazon Web Services resources. We recommend creating at least a name
|
1324
|
+
# tag for your location.
|
1224
1325
|
#
|
1225
1326
|
# @return [Types::CreateLocationNfsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1226
1327
|
#
|
@@ -1464,8 +1565,10 @@ module Aws::DataSync
|
|
1464
1565
|
end
|
1465
1566
|
|
1466
1567
|
# Creates an endpoint for a Server Message Block (SMB) file server that
|
1467
|
-
# DataSync can
|
1468
|
-
#
|
1568
|
+
# DataSync can use for a data transfer.
|
1569
|
+
#
|
1570
|
+
# Before you begin, make sure that you understand how DataSync [accesses
|
1571
|
+
# an SMB file server][1].
|
1469
1572
|
#
|
1470
1573
|
#
|
1471
1574
|
#
|
@@ -1876,6 +1979,49 @@ module Aws::DataSync
|
|
1876
1979
|
req.send_request(options)
|
1877
1980
|
end
|
1878
1981
|
|
1982
|
+
# Provides details about how an DataSync transfer location for Microsoft
|
1983
|
+
# Azure Blob Storage is configured.
|
1984
|
+
#
|
1985
|
+
# @option params [required, String] :location_arn
|
1986
|
+
# Specifies the Amazon Resource Name (ARN) of your Azure Blob Storage
|
1987
|
+
# transfer location.
|
1988
|
+
#
|
1989
|
+
# @return [Types::DescribeLocationAzureBlobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1990
|
+
#
|
1991
|
+
# * {Types::DescribeLocationAzureBlobResponse#location_arn #location_arn} => String
|
1992
|
+
# * {Types::DescribeLocationAzureBlobResponse#location_uri #location_uri} => String
|
1993
|
+
# * {Types::DescribeLocationAzureBlobResponse#authentication_type #authentication_type} => String
|
1994
|
+
# * {Types::DescribeLocationAzureBlobResponse#blob_type #blob_type} => String
|
1995
|
+
# * {Types::DescribeLocationAzureBlobResponse#access_tier #access_tier} => String
|
1996
|
+
# * {Types::DescribeLocationAzureBlobResponse#agent_arns #agent_arns} => Array<String>
|
1997
|
+
# * {Types::DescribeLocationAzureBlobResponse#creation_time #creation_time} => Time
|
1998
|
+
#
|
1999
|
+
# @example Request syntax with placeholder values
|
2000
|
+
#
|
2001
|
+
# resp = client.describe_location_azure_blob({
|
2002
|
+
# location_arn: "LocationArn", # required
|
2003
|
+
# })
|
2004
|
+
#
|
2005
|
+
# @example Response structure
|
2006
|
+
#
|
2007
|
+
# resp.location_arn #=> String
|
2008
|
+
# resp.location_uri #=> String
|
2009
|
+
# resp.authentication_type #=> String, one of "SAS"
|
2010
|
+
# resp.blob_type #=> String, one of "BLOCK"
|
2011
|
+
# resp.access_tier #=> String, one of "HOT", "COOL", "ARCHIVE"
|
2012
|
+
# resp.agent_arns #=> Array
|
2013
|
+
# resp.agent_arns[0] #=> String
|
2014
|
+
# resp.creation_time #=> Time
|
2015
|
+
#
|
2016
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeLocationAzureBlob AWS API Documentation
|
2017
|
+
#
|
2018
|
+
# @overload describe_location_azure_blob(params = {})
|
2019
|
+
# @param [Hash] params ({})
|
2020
|
+
def describe_location_azure_blob(params = {}, options = {})
|
2021
|
+
req = build_request(:describe_location_azure_blob, params)
|
2022
|
+
req.send_request(options)
|
2023
|
+
end
|
2024
|
+
|
1879
2025
|
# Returns metadata about your DataSync location for an Amazon EFS file
|
1880
2026
|
# system.
|
1881
2027
|
#
|
@@ -2600,10 +2746,10 @@ module Aws::DataSync
|
|
2600
2746
|
req.send_request(options)
|
2601
2747
|
end
|
2602
2748
|
|
2603
|
-
#
|
2749
|
+
# Provides information about an DataSync transfer task.
|
2604
2750
|
#
|
2605
2751
|
# @option params [required, String] :task_arn
|
2606
|
-
#
|
2752
|
+
# Specifies the Amazon Resource Name (ARN) of the transfer task.
|
2607
2753
|
#
|
2608
2754
|
# @return [Types::DescribeTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2609
2755
|
#
|
@@ -2678,10 +2824,11 @@ module Aws::DataSync
|
|
2678
2824
|
req.send_request(options)
|
2679
2825
|
end
|
2680
2826
|
|
2681
|
-
#
|
2827
|
+
# Provides information about an DataSync transfer task that's running.
|
2682
2828
|
#
|
2683
2829
|
# @option params [required, String] :task_execution_arn
|
2684
|
-
#
|
2830
|
+
# Specifies the Amazon Resource Name (ARN) of the transfer task that's
|
2831
|
+
# running.
|
2685
2832
|
#
|
2686
2833
|
# @return [Types::DescribeTaskExecutionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2687
2834
|
#
|
@@ -3502,6 +3649,82 @@ module Aws::DataSync
|
|
3502
3649
|
req.send_request(options)
|
3503
3650
|
end
|
3504
3651
|
|
3652
|
+
# Modifies some configurations of the Microsoft Azure Blob Storage
|
3653
|
+
# transfer location that you're using with DataSync.
|
3654
|
+
#
|
3655
|
+
# @option params [required, String] :location_arn
|
3656
|
+
# Specifies the ARN of the Azure Blob Storage transfer location that
|
3657
|
+
# you're updating.
|
3658
|
+
#
|
3659
|
+
# @option params [String] :subdirectory
|
3660
|
+
# Specifies path segments if you want to limit your transfer to a
|
3661
|
+
# virtual directory in your container (for example, `/my/images`).
|
3662
|
+
#
|
3663
|
+
# @option params [String] :authentication_type
|
3664
|
+
# Specifies the authentication method DataSync uses to access your Azure
|
3665
|
+
# Blob Storage. DataSync can access blob storage using a shared access
|
3666
|
+
# signature (SAS).
|
3667
|
+
#
|
3668
|
+
# @option params [Types::AzureBlobSasConfiguration] :sas_configuration
|
3669
|
+
# Specifies the SAS configuration that allows DataSync to access your
|
3670
|
+
# Azure Blob Storage.
|
3671
|
+
#
|
3672
|
+
# @option params [String] :blob_type
|
3673
|
+
# Specifies the type of blob that you want your objects or files to be
|
3674
|
+
# when transferring them into Azure Blob Storage. Currently, DataSync
|
3675
|
+
# only supports moving data into Azure Blob Storage as block blobs. For
|
3676
|
+
# more information on blob types, see the [Azure Blob Storage
|
3677
|
+
# documentation][1].
|
3678
|
+
#
|
3679
|
+
#
|
3680
|
+
#
|
3681
|
+
# [1]: https://learn.microsoft.com/en-us/rest/api/storageservices/understanding-block-blobs--append-blobs--and-page-blobs
|
3682
|
+
#
|
3683
|
+
# @option params [String] :access_tier
|
3684
|
+
# Specifies the access tier that you want your objects or files
|
3685
|
+
# transferred into. This only applies when using the location as a
|
3686
|
+
# transfer destination. For more information, see [Access tiers][1].
|
3687
|
+
#
|
3688
|
+
#
|
3689
|
+
#
|
3690
|
+
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/creating-azure-blob-location.html#azure-blob-access-tiers
|
3691
|
+
#
|
3692
|
+
# @option params [Array<String>] :agent_arns
|
3693
|
+
# Specifies the Amazon Resource Name (ARN) of the DataSync agent that
|
3694
|
+
# can connect with your Azure Blob Storage container.
|
3695
|
+
#
|
3696
|
+
# You can specify more than one agent. For more information, see [Using
|
3697
|
+
# multiple agents for your transfer][1].
|
3698
|
+
#
|
3699
|
+
#
|
3700
|
+
#
|
3701
|
+
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/multiple-agents.html
|
3702
|
+
#
|
3703
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3704
|
+
#
|
3705
|
+
# @example Request syntax with placeholder values
|
3706
|
+
#
|
3707
|
+
# resp = client.update_location_azure_blob({
|
3708
|
+
# location_arn: "LocationArn", # required
|
3709
|
+
# subdirectory: "AzureBlobSubdirectory",
|
3710
|
+
# authentication_type: "SAS", # accepts SAS
|
3711
|
+
# sas_configuration: {
|
3712
|
+
# token: "AzureBlobSasToken", # required
|
3713
|
+
# },
|
3714
|
+
# blob_type: "BLOCK", # accepts BLOCK
|
3715
|
+
# access_tier: "HOT", # accepts HOT, COOL, ARCHIVE
|
3716
|
+
# agent_arns: ["AgentArn"],
|
3717
|
+
# })
|
3718
|
+
#
|
3719
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/UpdateLocationAzureBlob AWS API Documentation
|
3720
|
+
#
|
3721
|
+
# @overload update_location_azure_blob(params = {})
|
3722
|
+
# @param [Hash] params ({})
|
3723
|
+
def update_location_azure_blob(params = {}, options = {})
|
3724
|
+
req = build_request(:update_location_azure_blob, params)
|
3725
|
+
req.send_request(options)
|
3726
|
+
end
|
3727
|
+
|
3505
3728
|
# Updates some parameters of a previously created location for a Hadoop
|
3506
3729
|
# Distributed File System cluster.
|
3507
3730
|
#
|
@@ -3606,14 +3829,15 @@ module Aws::DataSync
|
|
3606
3829
|
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html
|
3607
3830
|
#
|
3608
3831
|
# @option params [required, String] :location_arn
|
3609
|
-
#
|
3832
|
+
# Specifies the Amazon Resource Name (ARN) of the NFS location that you
|
3833
|
+
# want to update.
|
3610
3834
|
#
|
3611
3835
|
# @option params [String] :subdirectory
|
3612
|
-
#
|
3613
|
-
#
|
3614
|
-
#
|
3615
|
-
#
|
3616
|
-
#
|
3836
|
+
# Specifies the subdirectory in your NFS file system that DataSync uses
|
3837
|
+
# to read from or write to during a transfer. The NFS path should be
|
3838
|
+
# exported by the NFS server, or a subdirectory of that path. The path
|
3839
|
+
# should be such that it can be mounted by other NFS clients in your
|
3840
|
+
# network.
|
3617
3841
|
#
|
3618
3842
|
# To see all the paths exported by your NFS server, run "`showmount -e
|
3619
3843
|
# nfs-server-name`" from an NFS client that has access to your server.
|
@@ -3632,10 +3856,6 @@ module Aws::DataSync
|
|
3632
3856
|
# If you are copying data to or from your Snowcone device, see [NFS
|
3633
3857
|
# Server on Snowcone][1] for more information.
|
3634
3858
|
#
|
3635
|
-
# For information about NFS export configuration, see 18.7. The
|
3636
|
-
# /etc/exports Configuration File in the Red Hat Enterprise Linux
|
3637
|
-
# documentation.
|
3638
|
-
#
|
3639
3859
|
#
|
3640
3860
|
#
|
3641
3861
|
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html#nfs-on-snowcone
|
@@ -3841,7 +4061,8 @@ module Aws::DataSync
|
|
3841
4061
|
#
|
3842
4062
|
# @option params [Array<String>] :agent_arns
|
3843
4063
|
# Specifies the Amazon Resource Name (ARN) of the DataSync agent that
|
3844
|
-
# connects to and reads your on-premises storage system.
|
4064
|
+
# connects to and reads your on-premises storage system. You can only
|
4065
|
+
# specify one ARN.
|
3845
4066
|
#
|
3846
4067
|
# @option params [String] :name
|
3847
4068
|
# Specifies a familiar name for your on-premises storage system.
|
@@ -4053,7 +4274,7 @@ module Aws::DataSync
|
|
4053
4274
|
params: params,
|
4054
4275
|
config: config)
|
4055
4276
|
context[:gem_name] = 'aws-sdk-datasync'
|
4056
|
-
context[:gem_version] = '1.
|
4277
|
+
context[:gem_version] = '1.63.0'
|
4057
4278
|
Seahorse::Client::Request.new(handlers, context)
|
4058
4279
|
end
|
4059
4280
|
|
@@ -22,6 +22,13 @@ module Aws::DataSync
|
|
22
22
|
AgentListEntry = Shapes::StructureShape.new(name: 'AgentListEntry')
|
23
23
|
AgentStatus = Shapes::StringShape.new(name: 'AgentStatus')
|
24
24
|
Atime = Shapes::StringShape.new(name: 'Atime')
|
25
|
+
AzureAccessTier = Shapes::StringShape.new(name: 'AzureAccessTier')
|
26
|
+
AzureBlobAuthenticationType = Shapes::StringShape.new(name: 'AzureBlobAuthenticationType')
|
27
|
+
AzureBlobContainerUrl = Shapes::StringShape.new(name: 'AzureBlobContainerUrl')
|
28
|
+
AzureBlobSasConfiguration = Shapes::StructureShape.new(name: 'AzureBlobSasConfiguration')
|
29
|
+
AzureBlobSasToken = Shapes::StringShape.new(name: 'AzureBlobSasToken')
|
30
|
+
AzureBlobSubdirectory = Shapes::StringShape.new(name: 'AzureBlobSubdirectory')
|
31
|
+
AzureBlobType = Shapes::StringShape.new(name: 'AzureBlobType')
|
25
32
|
BytesPerSecond = Shapes::IntegerShape.new(name: 'BytesPerSecond')
|
26
33
|
CancelTaskExecutionRequest = Shapes::StructureShape.new(name: 'CancelTaskExecutionRequest')
|
27
34
|
CancelTaskExecutionResponse = Shapes::StructureShape.new(name: 'CancelTaskExecutionResponse')
|
@@ -29,6 +36,8 @@ module Aws::DataSync
|
|
29
36
|
CollectionDurationMinutes = Shapes::IntegerShape.new(name: 'CollectionDurationMinutes')
|
30
37
|
CreateAgentRequest = Shapes::StructureShape.new(name: 'CreateAgentRequest')
|
31
38
|
CreateAgentResponse = Shapes::StructureShape.new(name: 'CreateAgentResponse')
|
39
|
+
CreateLocationAzureBlobRequest = Shapes::StructureShape.new(name: 'CreateLocationAzureBlobRequest')
|
40
|
+
CreateLocationAzureBlobResponse = Shapes::StructureShape.new(name: 'CreateLocationAzureBlobResponse')
|
32
41
|
CreateLocationEfsRequest = Shapes::StructureShape.new(name: 'CreateLocationEfsRequest')
|
33
42
|
CreateLocationEfsResponse = Shapes::StructureShape.new(name: 'CreateLocationEfsResponse')
|
34
43
|
CreateLocationFsxLustreRequest = Shapes::StructureShape.new(name: 'CreateLocationFsxLustreRequest')
|
@@ -62,6 +71,8 @@ module Aws::DataSync
|
|
62
71
|
DescribeAgentResponse = Shapes::StructureShape.new(name: 'DescribeAgentResponse')
|
63
72
|
DescribeDiscoveryJobRequest = Shapes::StructureShape.new(name: 'DescribeDiscoveryJobRequest')
|
64
73
|
DescribeDiscoveryJobResponse = Shapes::StructureShape.new(name: 'DescribeDiscoveryJobResponse')
|
74
|
+
DescribeLocationAzureBlobRequest = Shapes::StructureShape.new(name: 'DescribeLocationAzureBlobRequest')
|
75
|
+
DescribeLocationAzureBlobResponse = Shapes::StructureShape.new(name: 'DescribeLocationAzureBlobResponse')
|
65
76
|
DescribeLocationEfsRequest = Shapes::StructureShape.new(name: 'DescribeLocationEfsRequest')
|
66
77
|
DescribeLocationEfsResponse = Shapes::StructureShape.new(name: 'DescribeLocationEfsResponse')
|
67
78
|
DescribeLocationFsxLustreRequest = Shapes::StructureShape.new(name: 'DescribeLocationFsxLustreRequest')
|
@@ -295,6 +306,8 @@ module Aws::DataSync
|
|
295
306
|
UpdateAgentResponse = Shapes::StructureShape.new(name: 'UpdateAgentResponse')
|
296
307
|
UpdateDiscoveryJobRequest = Shapes::StructureShape.new(name: 'UpdateDiscoveryJobRequest')
|
297
308
|
UpdateDiscoveryJobResponse = Shapes::StructureShape.new(name: 'UpdateDiscoveryJobResponse')
|
309
|
+
UpdateLocationAzureBlobRequest = Shapes::StructureShape.new(name: 'UpdateLocationAzureBlobRequest')
|
310
|
+
UpdateLocationAzureBlobResponse = Shapes::StructureShape.new(name: 'UpdateLocationAzureBlobResponse')
|
298
311
|
UpdateLocationHdfsRequest = Shapes::StructureShape.new(name: 'UpdateLocationHdfsRequest')
|
299
312
|
UpdateLocationHdfsResponse = Shapes::StructureShape.new(name: 'UpdateLocationHdfsResponse')
|
300
313
|
UpdateLocationNfsRequest = Shapes::StructureShape.new(name: 'UpdateLocationNfsRequest')
|
@@ -336,6 +349,9 @@ module Aws::DataSync
|
|
336
349
|
AgentListEntry.add_member(:status, Shapes::ShapeRef.new(shape: AgentStatus, location_name: "Status"))
|
337
350
|
AgentListEntry.struct_class = Types::AgentListEntry
|
338
351
|
|
352
|
+
AzureBlobSasConfiguration.add_member(:token, Shapes::ShapeRef.new(shape: AzureBlobSasToken, required: true, location_name: "Token"))
|
353
|
+
AzureBlobSasConfiguration.struct_class = Types::AzureBlobSasConfiguration
|
354
|
+
|
339
355
|
CancelTaskExecutionRequest.add_member(:task_execution_arn, Shapes::ShapeRef.new(shape: TaskExecutionArn, required: true, location_name: "TaskExecutionArn"))
|
340
356
|
CancelTaskExecutionRequest.struct_class = Types::CancelTaskExecutionRequest
|
341
357
|
|
@@ -357,6 +373,19 @@ module Aws::DataSync
|
|
357
373
|
CreateAgentResponse.add_member(:agent_arn, Shapes::ShapeRef.new(shape: AgentArn, location_name: "AgentArn"))
|
358
374
|
CreateAgentResponse.struct_class = Types::CreateAgentResponse
|
359
375
|
|
376
|
+
CreateLocationAzureBlobRequest.add_member(:container_url, Shapes::ShapeRef.new(shape: AzureBlobContainerUrl, required: true, location_name: "ContainerUrl"))
|
377
|
+
CreateLocationAzureBlobRequest.add_member(:authentication_type, Shapes::ShapeRef.new(shape: AzureBlobAuthenticationType, required: true, location_name: "AuthenticationType"))
|
378
|
+
CreateLocationAzureBlobRequest.add_member(:sas_configuration, Shapes::ShapeRef.new(shape: AzureBlobSasConfiguration, location_name: "SasConfiguration"))
|
379
|
+
CreateLocationAzureBlobRequest.add_member(:blob_type, Shapes::ShapeRef.new(shape: AzureBlobType, location_name: "BlobType"))
|
380
|
+
CreateLocationAzureBlobRequest.add_member(:access_tier, Shapes::ShapeRef.new(shape: AzureAccessTier, location_name: "AccessTier"))
|
381
|
+
CreateLocationAzureBlobRequest.add_member(:subdirectory, Shapes::ShapeRef.new(shape: AzureBlobSubdirectory, location_name: "Subdirectory"))
|
382
|
+
CreateLocationAzureBlobRequest.add_member(:agent_arns, Shapes::ShapeRef.new(shape: AgentArnList, required: true, location_name: "AgentArns"))
|
383
|
+
CreateLocationAzureBlobRequest.add_member(:tags, Shapes::ShapeRef.new(shape: InputTagList, location_name: "Tags"))
|
384
|
+
CreateLocationAzureBlobRequest.struct_class = Types::CreateLocationAzureBlobRequest
|
385
|
+
|
386
|
+
CreateLocationAzureBlobResponse.add_member(:location_arn, Shapes::ShapeRef.new(shape: LocationArn, location_name: "LocationArn"))
|
387
|
+
CreateLocationAzureBlobResponse.struct_class = Types::CreateLocationAzureBlobResponse
|
388
|
+
|
360
389
|
CreateLocationEfsRequest.add_member(:subdirectory, Shapes::ShapeRef.new(shape: EfsSubdirectory, location_name: "Subdirectory"))
|
361
390
|
CreateLocationEfsRequest.add_member(:efs_filesystem_arn, Shapes::ShapeRef.new(shape: EfsFilesystemArn, required: true, location_name: "EfsFilesystemArn"))
|
362
391
|
CreateLocationEfsRequest.add_member(:ec2_config, Shapes::ShapeRef.new(shape: Ec2Config, required: true, location_name: "Ec2Config"))
|
@@ -533,6 +562,18 @@ module Aws::DataSync
|
|
533
562
|
DescribeDiscoveryJobResponse.add_member(:job_end_time, Shapes::ShapeRef.new(shape: DiscoveryTime, location_name: "JobEndTime"))
|
534
563
|
DescribeDiscoveryJobResponse.struct_class = Types::DescribeDiscoveryJobResponse
|
535
564
|
|
565
|
+
DescribeLocationAzureBlobRequest.add_member(:location_arn, Shapes::ShapeRef.new(shape: LocationArn, required: true, location_name: "LocationArn"))
|
566
|
+
DescribeLocationAzureBlobRequest.struct_class = Types::DescribeLocationAzureBlobRequest
|
567
|
+
|
568
|
+
DescribeLocationAzureBlobResponse.add_member(:location_arn, Shapes::ShapeRef.new(shape: LocationArn, location_name: "LocationArn"))
|
569
|
+
DescribeLocationAzureBlobResponse.add_member(:location_uri, Shapes::ShapeRef.new(shape: LocationUri, location_name: "LocationUri"))
|
570
|
+
DescribeLocationAzureBlobResponse.add_member(:authentication_type, Shapes::ShapeRef.new(shape: AzureBlobAuthenticationType, location_name: "AuthenticationType"))
|
571
|
+
DescribeLocationAzureBlobResponse.add_member(:blob_type, Shapes::ShapeRef.new(shape: AzureBlobType, location_name: "BlobType"))
|
572
|
+
DescribeLocationAzureBlobResponse.add_member(:access_tier, Shapes::ShapeRef.new(shape: AzureAccessTier, location_name: "AccessTier"))
|
573
|
+
DescribeLocationAzureBlobResponse.add_member(:agent_arns, Shapes::ShapeRef.new(shape: AgentArnList, location_name: "AgentArns"))
|
574
|
+
DescribeLocationAzureBlobResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: Time, location_name: "CreationTime"))
|
575
|
+
DescribeLocationAzureBlobResponse.struct_class = Types::DescribeLocationAzureBlobResponse
|
576
|
+
|
536
577
|
DescribeLocationEfsRequest.add_member(:location_arn, Shapes::ShapeRef.new(shape: LocationArn, required: true, location_name: "LocationArn"))
|
537
578
|
DescribeLocationEfsRequest.struct_class = Types::DescribeLocationEfsRequest
|
538
579
|
|
@@ -1134,6 +1175,17 @@ module Aws::DataSync
|
|
1134
1175
|
|
1135
1176
|
UpdateDiscoveryJobResponse.struct_class = Types::UpdateDiscoveryJobResponse
|
1136
1177
|
|
1178
|
+
UpdateLocationAzureBlobRequest.add_member(:location_arn, Shapes::ShapeRef.new(shape: LocationArn, required: true, location_name: "LocationArn"))
|
1179
|
+
UpdateLocationAzureBlobRequest.add_member(:subdirectory, Shapes::ShapeRef.new(shape: AzureBlobSubdirectory, location_name: "Subdirectory"))
|
1180
|
+
UpdateLocationAzureBlobRequest.add_member(:authentication_type, Shapes::ShapeRef.new(shape: AzureBlobAuthenticationType, location_name: "AuthenticationType"))
|
1181
|
+
UpdateLocationAzureBlobRequest.add_member(:sas_configuration, Shapes::ShapeRef.new(shape: AzureBlobSasConfiguration, location_name: "SasConfiguration"))
|
1182
|
+
UpdateLocationAzureBlobRequest.add_member(:blob_type, Shapes::ShapeRef.new(shape: AzureBlobType, location_name: "BlobType"))
|
1183
|
+
UpdateLocationAzureBlobRequest.add_member(:access_tier, Shapes::ShapeRef.new(shape: AzureAccessTier, location_name: "AccessTier"))
|
1184
|
+
UpdateLocationAzureBlobRequest.add_member(:agent_arns, Shapes::ShapeRef.new(shape: AgentArnList, location_name: "AgentArns"))
|
1185
|
+
UpdateLocationAzureBlobRequest.struct_class = Types::UpdateLocationAzureBlobRequest
|
1186
|
+
|
1187
|
+
UpdateLocationAzureBlobResponse.struct_class = Types::UpdateLocationAzureBlobResponse
|
1188
|
+
|
1137
1189
|
UpdateLocationHdfsRequest.add_member(:location_arn, Shapes::ShapeRef.new(shape: LocationArn, required: true, location_name: "LocationArn"))
|
1138
1190
|
UpdateLocationHdfsRequest.add_member(:subdirectory, Shapes::ShapeRef.new(shape: HdfsSubdirectory, location_name: "Subdirectory"))
|
1139
1191
|
UpdateLocationHdfsRequest.add_member(:name_nodes, Shapes::ShapeRef.new(shape: HdfsNameNodeList, location_name: "NameNodes"))
|
@@ -1262,6 +1314,16 @@ module Aws::DataSync
|
|
1262
1314
|
o.errors << Shapes::ShapeRef.new(shape: InternalException)
|
1263
1315
|
end)
|
1264
1316
|
|
1317
|
+
api.add_operation(:create_location_azure_blob, Seahorse::Model::Operation.new.tap do |o|
|
1318
|
+
o.name = "CreateLocationAzureBlob"
|
1319
|
+
o.http_method = "POST"
|
1320
|
+
o.http_request_uri = "/"
|
1321
|
+
o.input = Shapes::ShapeRef.new(shape: CreateLocationAzureBlobRequest)
|
1322
|
+
o.output = Shapes::ShapeRef.new(shape: CreateLocationAzureBlobResponse)
|
1323
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
1324
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalException)
|
1325
|
+
end)
|
1326
|
+
|
1265
1327
|
api.add_operation(:create_location_efs, Seahorse::Model::Operation.new.tap do |o|
|
1266
1328
|
o.name = "CreateLocationEfs"
|
1267
1329
|
o.http_method = "POST"
|
@@ -1425,6 +1487,16 @@ module Aws::DataSync
|
|
1425
1487
|
o.errors << Shapes::ShapeRef.new(shape: InternalException)
|
1426
1488
|
end)
|
1427
1489
|
|
1490
|
+
api.add_operation(:describe_location_azure_blob, Seahorse::Model::Operation.new.tap do |o|
|
1491
|
+
o.name = "DescribeLocationAzureBlob"
|
1492
|
+
o.http_method = "POST"
|
1493
|
+
o.http_request_uri = "/"
|
1494
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeLocationAzureBlobRequest)
|
1495
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeLocationAzureBlobResponse)
|
1496
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
1497
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalException)
|
1498
|
+
end)
|
1499
|
+
|
1428
1500
|
api.add_operation(:describe_location_efs, Seahorse::Model::Operation.new.tap do |o|
|
1429
1501
|
o.name = "DescribeLocationEfs"
|
1430
1502
|
o.http_method = "POST"
|
@@ -1819,6 +1891,16 @@ module Aws::DataSync
|
|
1819
1891
|
o.errors << Shapes::ShapeRef.new(shape: InternalException)
|
1820
1892
|
end)
|
1821
1893
|
|
1894
|
+
api.add_operation(:update_location_azure_blob, Seahorse::Model::Operation.new.tap do |o|
|
1895
|
+
o.name = "UpdateLocationAzureBlob"
|
1896
|
+
o.http_method = "POST"
|
1897
|
+
o.http_request_uri = "/"
|
1898
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateLocationAzureBlobRequest)
|
1899
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateLocationAzureBlobResponse)
|
1900
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
1901
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalException)
|
1902
|
+
end)
|
1903
|
+
|
1822
1904
|
api.add_operation(:update_location_hdfs, Seahorse::Model::Operation.new.tap do |o|
|
1823
1905
|
o.name = "UpdateLocationHdfs"
|
1824
1906
|
o.http_method = "POST"
|
@@ -54,6 +54,20 @@ module Aws::DataSync
|
|
54
54
|
end
|
55
55
|
end
|
56
56
|
|
57
|
+
class CreateLocationAzureBlob
|
58
|
+
def self.build(context)
|
59
|
+
unless context.config.regional_endpoint
|
60
|
+
endpoint = context.config.endpoint.to_s
|
61
|
+
end
|
62
|
+
Aws::DataSync::EndpointParameters.new(
|
63
|
+
region: context.config.region,
|
64
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
65
|
+
use_fips: context.config.use_fips_endpoint,
|
66
|
+
endpoint: endpoint,
|
67
|
+
)
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
57
71
|
class CreateLocationEfs
|
58
72
|
def self.build(context)
|
59
73
|
unless context.config.regional_endpoint
|
@@ -278,6 +292,20 @@ module Aws::DataSync
|
|
278
292
|
end
|
279
293
|
end
|
280
294
|
|
295
|
+
class DescribeLocationAzureBlob
|
296
|
+
def self.build(context)
|
297
|
+
unless context.config.regional_endpoint
|
298
|
+
endpoint = context.config.endpoint.to_s
|
299
|
+
end
|
300
|
+
Aws::DataSync::EndpointParameters.new(
|
301
|
+
region: context.config.region,
|
302
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
303
|
+
use_fips: context.config.use_fips_endpoint,
|
304
|
+
endpoint: endpoint,
|
305
|
+
)
|
306
|
+
end
|
307
|
+
end
|
308
|
+
|
281
309
|
class DescribeLocationEfs
|
282
310
|
def self.build(context)
|
283
311
|
unless context.config.regional_endpoint
|
@@ -712,6 +740,20 @@ module Aws::DataSync
|
|
712
740
|
end
|
713
741
|
end
|
714
742
|
|
743
|
+
class UpdateLocationAzureBlob
|
744
|
+
def self.build(context)
|
745
|
+
unless context.config.regional_endpoint
|
746
|
+
endpoint = context.config.endpoint.to_s
|
747
|
+
end
|
748
|
+
Aws::DataSync::EndpointParameters.new(
|
749
|
+
region: context.config.region,
|
750
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
751
|
+
use_fips: context.config.use_fips_endpoint,
|
752
|
+
endpoint: endpoint,
|
753
|
+
)
|
754
|
+
end
|
755
|
+
end
|
756
|
+
|
715
757
|
class UpdateLocationHdfs
|
716
758
|
def self.build(context)
|
717
759
|
unless context.config.regional_endpoint
|
@@ -62,6 +62,8 @@ module Aws::DataSync
|
|
62
62
|
Aws::DataSync::Endpoints::CancelTaskExecution.build(context)
|
63
63
|
when :create_agent
|
64
64
|
Aws::DataSync::Endpoints::CreateAgent.build(context)
|
65
|
+
when :create_location_azure_blob
|
66
|
+
Aws::DataSync::Endpoints::CreateLocationAzureBlob.build(context)
|
65
67
|
when :create_location_efs
|
66
68
|
Aws::DataSync::Endpoints::CreateLocationEfs.build(context)
|
67
69
|
when :create_location_fsx_lustre
|
@@ -94,6 +96,8 @@ module Aws::DataSync
|
|
94
96
|
Aws::DataSync::Endpoints::DescribeAgent.build(context)
|
95
97
|
when :describe_discovery_job
|
96
98
|
Aws::DataSync::Endpoints::DescribeDiscoveryJob.build(context)
|
99
|
+
when :describe_location_azure_blob
|
100
|
+
Aws::DataSync::Endpoints::DescribeLocationAzureBlob.build(context)
|
97
101
|
when :describe_location_efs
|
98
102
|
Aws::DataSync::Endpoints::DescribeLocationEfs.build(context)
|
99
103
|
when :describe_location_fsx_lustre
|
@@ -156,6 +160,8 @@ module Aws::DataSync
|
|
156
160
|
Aws::DataSync::Endpoints::UpdateAgent.build(context)
|
157
161
|
when :update_discovery_job
|
158
162
|
Aws::DataSync::Endpoints::UpdateDiscoveryJob.build(context)
|
163
|
+
when :update_location_azure_blob
|
164
|
+
Aws::DataSync::Endpoints::UpdateLocationAzureBlob.build(context)
|
159
165
|
when :update_location_hdfs
|
160
166
|
Aws::DataSync::Endpoints::UpdateLocationHdfs.build(context)
|
161
167
|
when :update_location_nfs
|
@@ -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
|
@@ -201,6 +229,7 @@ module Aws::DataSync
|
|
201
229
|
# Specifies the ARN of the subnet where you want to run your DataSync
|
202
230
|
# task when using a VPC endpoint. This is the subnet where DataSync
|
203
231
|
# creates and manages the [network interfaces][1] for your transfer.
|
232
|
+
# You can only specify one ARN.
|
204
233
|
#
|
205
234
|
#
|
206
235
|
#
|
@@ -210,7 +239,7 @@ module Aws::DataSync
|
|
210
239
|
# @!attribute [rw] security_group_arns
|
211
240
|
# Specifies the Amazon Resource Name (ARN) of the security group that
|
212
241
|
# protects your task's [network interfaces][1] when [using a virtual
|
213
|
-
# private cloud (VPC) endpoint][2].
|
242
|
+
# private cloud (VPC) endpoint][2]. You can only specify one ARN.
|
214
243
|
#
|
215
244
|
#
|
216
245
|
#
|
@@ -251,6 +280,95 @@ module Aws::DataSync
|
|
251
280
|
include Aws::Structure
|
252
281
|
end
|
253
282
|
|
283
|
+
# @!attribute [rw] container_url
|
284
|
+
# Specifies the URL of the Azure Blob Storage container involved in
|
285
|
+
# your transfer.
|
286
|
+
# @return [String]
|
287
|
+
#
|
288
|
+
# @!attribute [rw] authentication_type
|
289
|
+
# Specifies the authentication method DataSync uses to access your
|
290
|
+
# Azure Blob Storage. DataSync can access blob storage using a shared
|
291
|
+
# access signature (SAS).
|
292
|
+
# @return [String]
|
293
|
+
#
|
294
|
+
# @!attribute [rw] sas_configuration
|
295
|
+
# Specifies the SAS configuration that allows DataSync to access your
|
296
|
+
# Azure Blob Storage.
|
297
|
+
# @return [Types::AzureBlobSasConfiguration]
|
298
|
+
#
|
299
|
+
# @!attribute [rw] blob_type
|
300
|
+
# Specifies the type of blob that you want your objects or files to be
|
301
|
+
# when transferring them into Azure Blob Storage. Currently, DataSync
|
302
|
+
# only supports moving data into Azure Blob Storage as block blobs.
|
303
|
+
# For more information on blob types, see the [Azure Blob Storage
|
304
|
+
# documentation][1].
|
305
|
+
#
|
306
|
+
#
|
307
|
+
#
|
308
|
+
# [1]: https://learn.microsoft.com/en-us/rest/api/storageservices/understanding-block-blobs--append-blobs--and-page-blobs
|
309
|
+
# @return [String]
|
310
|
+
#
|
311
|
+
# @!attribute [rw] access_tier
|
312
|
+
# Specifies the access tier that you want your objects or files
|
313
|
+
# transferred into. This only applies when using the location as a
|
314
|
+
# transfer destination. For more information, see [Access tiers][1].
|
315
|
+
#
|
316
|
+
#
|
317
|
+
#
|
318
|
+
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/creating-azure-blob-location.html#azure-blob-access-tiers
|
319
|
+
# @return [String]
|
320
|
+
#
|
321
|
+
# @!attribute [rw] subdirectory
|
322
|
+
# Specifies path segments if you want to limit your transfer to a
|
323
|
+
# virtual directory in your container (for example, `/my/images`).
|
324
|
+
# @return [String]
|
325
|
+
#
|
326
|
+
# @!attribute [rw] agent_arns
|
327
|
+
# Specifies the Amazon Resource Name (ARN) of the DataSync agent that
|
328
|
+
# can connect with your Azure Blob Storage container.
|
329
|
+
#
|
330
|
+
# You can specify more than one agent. For more information, see
|
331
|
+
# [Using multiple agents for your transfer][1].
|
332
|
+
#
|
333
|
+
#
|
334
|
+
#
|
335
|
+
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/multiple-agents.html
|
336
|
+
# @return [Array<String>]
|
337
|
+
#
|
338
|
+
# @!attribute [rw] tags
|
339
|
+
# Specifies labels that help you categorize, filter, and search for
|
340
|
+
# your Amazon Web Services resources. We recommend creating at least a
|
341
|
+
# name tag for your transfer location.
|
342
|
+
# @return [Array<Types::TagListEntry>]
|
343
|
+
#
|
344
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/CreateLocationAzureBlobRequest AWS API Documentation
|
345
|
+
#
|
346
|
+
class CreateLocationAzureBlobRequest < Struct.new(
|
347
|
+
:container_url,
|
348
|
+
:authentication_type,
|
349
|
+
:sas_configuration,
|
350
|
+
:blob_type,
|
351
|
+
:access_tier,
|
352
|
+
:subdirectory,
|
353
|
+
:agent_arns,
|
354
|
+
:tags)
|
355
|
+
SENSITIVE = []
|
356
|
+
include Aws::Structure
|
357
|
+
end
|
358
|
+
|
359
|
+
# @!attribute [rw] location_arn
|
360
|
+
# The ARN of the Azure Blob Storage transfer location that you
|
361
|
+
# created.
|
362
|
+
# @return [String]
|
363
|
+
#
|
364
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/CreateLocationAzureBlobResponse AWS API Documentation
|
365
|
+
#
|
366
|
+
class CreateLocationAzureBlobResponse < Struct.new(
|
367
|
+
:location_arn)
|
368
|
+
SENSITIVE = []
|
369
|
+
include Aws::Structure
|
370
|
+
end
|
371
|
+
|
254
372
|
# CreateLocationEfsRequest
|
255
373
|
#
|
256
374
|
# @!attribute [rw] subdirectory
|
@@ -719,11 +837,10 @@ module Aws::DataSync
|
|
719
837
|
# CreateLocationNfsRequest
|
720
838
|
#
|
721
839
|
# @!attribute [rw] subdirectory
|
722
|
-
#
|
723
|
-
# from
|
724
|
-
#
|
725
|
-
#
|
726
|
-
# mounted by other NFS clients in your network.
|
840
|
+
# Specifies the subdirectory in the NFS file server that DataSync
|
841
|
+
# transfers to or from. The NFS path should be a path that's exported
|
842
|
+
# by the NFS server, or a subdirectory of that path. The path should
|
843
|
+
# be such that it can be mounted by other NFS clients in your network.
|
727
844
|
#
|
728
845
|
# To see all the paths exported by your NFS server, run "`showmount
|
729
846
|
# -e nfs-server-name`" from an NFS client that has access to your
|
@@ -742,26 +859,21 @@ module Aws::DataSync
|
|
742
859
|
# If you are copying data to or from your Snowcone device, see [NFS
|
743
860
|
# Server on Snowcone][1] for more information.
|
744
861
|
#
|
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
|
-
#
|
749
862
|
#
|
750
863
|
#
|
751
864
|
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html#nfs-on-snowcone
|
752
865
|
# @return [String]
|
753
866
|
#
|
754
867
|
# @!attribute [rw] server_hostname
|
755
|
-
#
|
756
|
-
#
|
757
|
-
#
|
758
|
-
# a network.
|
868
|
+
# Specifies the IP address or domain name of your NFS file server. An
|
869
|
+
# agent that is installed on-premises uses this hostname to mount the
|
870
|
+
# NFS server in a network.
|
759
871
|
#
|
760
872
|
# If you are copying data to or from your Snowcone device, see [NFS
|
761
873
|
# Server on Snowcone][1] for more information.
|
762
874
|
#
|
763
|
-
# <note markdown="1">
|
764
|
-
# (
|
875
|
+
# <note markdown="1"> You must specify be an IP version 4 address or Domain Name System
|
876
|
+
# (DNS)-compliant name.
|
765
877
|
#
|
766
878
|
# </note>
|
767
879
|
#
|
@@ -771,8 +883,8 @@ module Aws::DataSync
|
|
771
883
|
# @return [String]
|
772
884
|
#
|
773
885
|
# @!attribute [rw] on_prem_config
|
774
|
-
#
|
775
|
-
#
|
886
|
+
# Specifies the Amazon Resource Names (ARNs) of agents that DataSync
|
887
|
+
# uses to connect to your NFS file server.
|
776
888
|
#
|
777
889
|
# If you are copying data to or from your Snowcone device, see [NFS
|
778
890
|
# Server on Snowcone][1] for more information.
|
@@ -783,13 +895,14 @@ module Aws::DataSync
|
|
783
895
|
# @return [Types::OnPremConfig]
|
784
896
|
#
|
785
897
|
# @!attribute [rw] mount_options
|
786
|
-
#
|
898
|
+
# Specifies the mount options that DataSync can use to mount your NFS
|
899
|
+
# share.
|
787
900
|
# @return [Types::NfsMountOptions]
|
788
901
|
#
|
789
902
|
# @!attribute [rw] tags
|
790
|
-
#
|
791
|
-
#
|
792
|
-
#
|
903
|
+
# Specifies labels that help you categorize, filter, and search for
|
904
|
+
# your Amazon Web Services resources. We recommend creating at least a
|
905
|
+
# name tag for your location.
|
793
906
|
# @return [Array<Types::TagListEntry>]
|
794
907
|
#
|
795
908
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/CreateLocationNfsRequest AWS API Documentation
|
@@ -807,8 +920,8 @@ module Aws::DataSync
|
|
807
920
|
# CreateLocationNfsResponse
|
808
921
|
#
|
809
922
|
# @!attribute [rw] location_arn
|
810
|
-
# The
|
811
|
-
#
|
923
|
+
# The ARN of the transfer location that you created for your NFS file
|
924
|
+
# server.
|
812
925
|
# @return [String]
|
813
926
|
#
|
814
927
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/CreateLocationNfsResponse AWS API Documentation
|
@@ -1433,6 +1546,79 @@ module Aws::DataSync
|
|
1433
1546
|
include Aws::Structure
|
1434
1547
|
end
|
1435
1548
|
|
1549
|
+
# @!attribute [rw] location_arn
|
1550
|
+
# Specifies the Amazon Resource Name (ARN) of your Azure Blob Storage
|
1551
|
+
# transfer location.
|
1552
|
+
# @return [String]
|
1553
|
+
#
|
1554
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeLocationAzureBlobRequest AWS API Documentation
|
1555
|
+
#
|
1556
|
+
class DescribeLocationAzureBlobRequest < Struct.new(
|
1557
|
+
:location_arn)
|
1558
|
+
SENSITIVE = []
|
1559
|
+
include Aws::Structure
|
1560
|
+
end
|
1561
|
+
|
1562
|
+
# @!attribute [rw] location_arn
|
1563
|
+
# The ARN of your Azure Blob Storage transfer location.
|
1564
|
+
# @return [String]
|
1565
|
+
#
|
1566
|
+
# @!attribute [rw] location_uri
|
1567
|
+
# The URL of the Azure Blob Storage container involved in your
|
1568
|
+
# transfer.
|
1569
|
+
# @return [String]
|
1570
|
+
#
|
1571
|
+
# @!attribute [rw] authentication_type
|
1572
|
+
# The authentication method DataSync uses to access your Azure Blob
|
1573
|
+
# Storage. DataSync can access blob storage using a shared access
|
1574
|
+
# signature (SAS).
|
1575
|
+
# @return [String]
|
1576
|
+
#
|
1577
|
+
# @!attribute [rw] blob_type
|
1578
|
+
# The type of blob that you want your objects or files to be when
|
1579
|
+
# transferring them into Azure Blob Storage. Currently, DataSync only
|
1580
|
+
# supports moving data into Azure Blob Storage as block blobs. For
|
1581
|
+
# more information on blob types, see the [Azure Blob Storage
|
1582
|
+
# documentation][1].
|
1583
|
+
#
|
1584
|
+
#
|
1585
|
+
#
|
1586
|
+
# [1]: https://learn.microsoft.com/en-us/rest/api/storageservices/understanding-block-blobs--append-blobs--and-page-blobs
|
1587
|
+
# @return [String]
|
1588
|
+
#
|
1589
|
+
# @!attribute [rw] access_tier
|
1590
|
+
# The access tier that you want your objects or files transferred
|
1591
|
+
# into. This only applies when using the location as a transfer
|
1592
|
+
# destination. For more information, see [Access tiers][1].
|
1593
|
+
#
|
1594
|
+
#
|
1595
|
+
#
|
1596
|
+
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/creating-azure-blob-location.html#azure-blob-access-tiers
|
1597
|
+
# @return [String]
|
1598
|
+
#
|
1599
|
+
# @!attribute [rw] agent_arns
|
1600
|
+
# The ARNs of the DataSync agents that can connect with your Azure
|
1601
|
+
# Blob Storage container.
|
1602
|
+
# @return [Array<String>]
|
1603
|
+
#
|
1604
|
+
# @!attribute [rw] creation_time
|
1605
|
+
# The time that your Azure Blob Storage transfer location was created.
|
1606
|
+
# @return [Time]
|
1607
|
+
#
|
1608
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeLocationAzureBlobResponse AWS API Documentation
|
1609
|
+
#
|
1610
|
+
class DescribeLocationAzureBlobResponse < Struct.new(
|
1611
|
+
:location_arn,
|
1612
|
+
:location_uri,
|
1613
|
+
:authentication_type,
|
1614
|
+
:blob_type,
|
1615
|
+
:access_tier,
|
1616
|
+
:agent_arns,
|
1617
|
+
:creation_time)
|
1618
|
+
SENSITIVE = []
|
1619
|
+
include Aws::Structure
|
1620
|
+
end
|
1621
|
+
|
1436
1622
|
# DescribeLocationEfsRequest
|
1437
1623
|
#
|
1438
1624
|
# @!attribute [rw] location_arn
|
@@ -1820,7 +2006,7 @@ module Aws::DataSync
|
|
1820
2006
|
# @return [Types::OnPremConfig]
|
1821
2007
|
#
|
1822
2008
|
# @!attribute [rw] mount_options
|
1823
|
-
# The
|
2009
|
+
# The mount options that DataSync uses to mount your NFS share.
|
1824
2010
|
# @return [Types::NfsMountOptions]
|
1825
2011
|
#
|
1826
2012
|
# @!attribute [rw] creation_time
|
@@ -2282,7 +2468,8 @@ module Aws::DataSync
|
|
2282
2468
|
# DescribeTaskExecutionRequest
|
2283
2469
|
#
|
2284
2470
|
# @!attribute [rw] task_execution_arn
|
2285
|
-
#
|
2471
|
+
# Specifies the Amazon Resource Name (ARN) of the transfer task
|
2472
|
+
# that's running.
|
2286
2473
|
# @return [String]
|
2287
2474
|
#
|
2288
2475
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeTaskExecutionRequest AWS API Documentation
|
@@ -2420,7 +2607,7 @@ module Aws::DataSync
|
|
2420
2607
|
# DescribeTaskRequest
|
2421
2608
|
#
|
2422
2609
|
# @!attribute [rw] task_arn
|
2423
|
-
#
|
2610
|
+
# Specifies the Amazon Resource Name (ARN) of the transfer task.
|
2424
2611
|
# @return [String]
|
2425
2612
|
#
|
2426
2613
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeTaskRequest AWS API Documentation
|
@@ -4087,19 +4274,17 @@ module Aws::DataSync
|
|
4087
4274
|
include Aws::Structure
|
4088
4275
|
end
|
4089
4276
|
|
4090
|
-
#
|
4091
|
-
#
|
4277
|
+
# Specifies how your DataSync agent connects to Amazon Web Services
|
4278
|
+
# using a virtual private cloud (VPC) service endpoint. An agent that
|
4279
|
+
# uses a VPC endpoint isn't accessible over the public internet.
|
4092
4280
|
#
|
4093
4281
|
# @!attribute [rw] vpc_endpoint_id
|
4094
|
-
#
|
4095
|
-
# that is configured with a VPC endpoint will not be accessible over
|
4096
|
-
# the public internet.
|
4282
|
+
# Specifies the ID of the VPC endpoint that your agent connects to.
|
4097
4283
|
# @return [String]
|
4098
4284
|
#
|
4099
4285
|
# @!attribute [rw] private_link_endpoint
|
4100
|
-
#
|
4101
|
-
#
|
4102
|
-
# with this endpoint will not be accessible over the public internet.
|
4286
|
+
# Specifies the VPC endpoint provided by [Amazon Web Services
|
4287
|
+
# PrivateLink][1] that your agent connects to.
|
4103
4288
|
#
|
4104
4289
|
#
|
4105
4290
|
#
|
@@ -4107,15 +4292,14 @@ module Aws::DataSync
|
|
4107
4292
|
# @return [String]
|
4108
4293
|
#
|
4109
4294
|
# @!attribute [rw] subnet_arns
|
4110
|
-
#
|
4111
|
-
#
|
4112
|
-
# endpoint.
|
4295
|
+
# Specifies the ARN of the subnet where your VPC endpoint is located.
|
4296
|
+
# You can only specify one ARN.
|
4113
4297
|
# @return [Array<String>]
|
4114
4298
|
#
|
4115
4299
|
# @!attribute [rw] security_group_arns
|
4116
|
-
#
|
4117
|
-
#
|
4118
|
-
#
|
4300
|
+
# Specifies the Amazon Resource Names (ARN) of the security group that
|
4301
|
+
# provides DataSync access to your VPC endpoint. You can only specify
|
4302
|
+
# one ARN.
|
4119
4303
|
# @return [Array<String>]
|
4120
4304
|
#
|
4121
4305
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/PrivateLinkConfig AWS API Documentation
|
@@ -4826,6 +5010,79 @@ module Aws::DataSync
|
|
4826
5010
|
#
|
4827
5011
|
class UpdateDiscoveryJobResponse < Aws::EmptyStructure; end
|
4828
5012
|
|
5013
|
+
# @!attribute [rw] location_arn
|
5014
|
+
# Specifies the ARN of the Azure Blob Storage transfer location that
|
5015
|
+
# you're updating.
|
5016
|
+
# @return [String]
|
5017
|
+
#
|
5018
|
+
# @!attribute [rw] subdirectory
|
5019
|
+
# Specifies path segments if you want to limit your transfer to a
|
5020
|
+
# virtual directory in your container (for example, `/my/images`).
|
5021
|
+
# @return [String]
|
5022
|
+
#
|
5023
|
+
# @!attribute [rw] authentication_type
|
5024
|
+
# Specifies the authentication method DataSync uses to access your
|
5025
|
+
# Azure Blob Storage. DataSync can access blob storage using a shared
|
5026
|
+
# access signature (SAS).
|
5027
|
+
# @return [String]
|
5028
|
+
#
|
5029
|
+
# @!attribute [rw] sas_configuration
|
5030
|
+
# Specifies the SAS configuration that allows DataSync to access your
|
5031
|
+
# Azure Blob Storage.
|
5032
|
+
# @return [Types::AzureBlobSasConfiguration]
|
5033
|
+
#
|
5034
|
+
# @!attribute [rw] blob_type
|
5035
|
+
# Specifies the type of blob that you want your objects or files to be
|
5036
|
+
# when transferring them into Azure Blob Storage. Currently, DataSync
|
5037
|
+
# only supports moving data into Azure Blob Storage as block blobs.
|
5038
|
+
# For more information on blob types, see the [Azure Blob Storage
|
5039
|
+
# documentation][1].
|
5040
|
+
#
|
5041
|
+
#
|
5042
|
+
#
|
5043
|
+
# [1]: https://learn.microsoft.com/en-us/rest/api/storageservices/understanding-block-blobs--append-blobs--and-page-blobs
|
5044
|
+
# @return [String]
|
5045
|
+
#
|
5046
|
+
# @!attribute [rw] access_tier
|
5047
|
+
# Specifies the access tier that you want your objects or files
|
5048
|
+
# transferred into. This only applies when using the location as a
|
5049
|
+
# transfer destination. For more information, see [Access tiers][1].
|
5050
|
+
#
|
5051
|
+
#
|
5052
|
+
#
|
5053
|
+
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/creating-azure-blob-location.html#azure-blob-access-tiers
|
5054
|
+
# @return [String]
|
5055
|
+
#
|
5056
|
+
# @!attribute [rw] agent_arns
|
5057
|
+
# Specifies the Amazon Resource Name (ARN) of the DataSync agent that
|
5058
|
+
# can connect with your Azure Blob Storage container.
|
5059
|
+
#
|
5060
|
+
# You can specify more than one agent. For more information, see
|
5061
|
+
# [Using multiple agents for your transfer][1].
|
5062
|
+
#
|
5063
|
+
#
|
5064
|
+
#
|
5065
|
+
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/multiple-agents.html
|
5066
|
+
# @return [Array<String>]
|
5067
|
+
#
|
5068
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/UpdateLocationAzureBlobRequest AWS API Documentation
|
5069
|
+
#
|
5070
|
+
class UpdateLocationAzureBlobRequest < Struct.new(
|
5071
|
+
:location_arn,
|
5072
|
+
:subdirectory,
|
5073
|
+
:authentication_type,
|
5074
|
+
:sas_configuration,
|
5075
|
+
:blob_type,
|
5076
|
+
:access_tier,
|
5077
|
+
:agent_arns)
|
5078
|
+
SENSITIVE = []
|
5079
|
+
include Aws::Structure
|
5080
|
+
end
|
5081
|
+
|
5082
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/UpdateLocationAzureBlobResponse AWS API Documentation
|
5083
|
+
#
|
5084
|
+
class UpdateLocationAzureBlobResponse < Aws::EmptyStructure; end
|
5085
|
+
|
4829
5086
|
# @!attribute [rw] location_arn
|
4830
5087
|
# The Amazon Resource Name (ARN) of the source HDFS cluster location.
|
4831
5088
|
# @return [String]
|
@@ -4920,15 +5177,16 @@ module Aws::DataSync
|
|
4920
5177
|
class UpdateLocationHdfsResponse < Aws::EmptyStructure; end
|
4921
5178
|
|
4922
5179
|
# @!attribute [rw] location_arn
|
4923
|
-
#
|
5180
|
+
# Specifies the Amazon Resource Name (ARN) of the NFS location that
|
5181
|
+
# you want to update.
|
4924
5182
|
# @return [String]
|
4925
5183
|
#
|
4926
5184
|
# @!attribute [rw] subdirectory
|
4927
|
-
#
|
4928
|
-
#
|
4929
|
-
#
|
4930
|
-
#
|
4931
|
-
#
|
5185
|
+
# Specifies the subdirectory in your NFS file system that DataSync
|
5186
|
+
# uses to read from or write to during a transfer. The NFS path should
|
5187
|
+
# be exported by the NFS server, or a subdirectory of that path. The
|
5188
|
+
# path should be such that it can be mounted by other NFS clients in
|
5189
|
+
# your network.
|
4932
5190
|
#
|
4933
5191
|
# To see all the paths exported by your NFS server, run "`showmount
|
4934
5192
|
# -e nfs-server-name`" from an NFS client that has access to your
|
@@ -4947,10 +5205,6 @@ module Aws::DataSync
|
|
4947
5205
|
# If you are copying data to or from your Snowcone device, see [NFS
|
4948
5206
|
# Server on Snowcone][1] for more information.
|
4949
5207
|
#
|
4950
|
-
# For information about NFS export configuration, see 18.7. The
|
4951
|
-
# /etc/exports Configuration File in the Red Hat Enterprise Linux
|
4952
|
-
# documentation.
|
4953
|
-
#
|
4954
5208
|
#
|
4955
5209
|
#
|
4956
5210
|
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html#nfs-on-snowcone
|
@@ -5135,7 +5389,8 @@ module Aws::DataSync
|
|
5135
5389
|
#
|
5136
5390
|
# @!attribute [rw] agent_arns
|
5137
5391
|
# Specifies the Amazon Resource Name (ARN) of the DataSync agent that
|
5138
|
-
# connects to and reads your on-premises storage system.
|
5392
|
+
# connects to and reads your on-premises storage system. You can only
|
5393
|
+
# specify one ARN.
|
5139
5394
|
# @return [Array<String>]
|
5140
5395
|
#
|
5141
5396
|
# @!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.63.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-07-
|
11
|
+
date: 2023-07-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|