aws-sdk-datasync 1.63.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 47476be9fe777713cef4cad10751a5312eeb8f190d6a891725b2cdd3de389e73
4
- data.tar.gz: b6e169c01a64492b9de1195331b622d4fcf81f7a6a4d83ae4a1d01ecbcb9e355
3
+ metadata.gz: 57f28f79db439d714373ac5f32860203ba051d0049a3b3a999ae8dea31aa1675
4
+ data.tar.gz: 7719ec1da51d741b92c4de227f2040219aac876f1538625397ff91027a972af4
5
5
  SHA512:
6
- metadata.gz: b18e962f3747cbf94befe830cf6d088556880455e3bc81e790275e33c103b52d1ea07385382aa7062d34fd504be5b9fc766f5c4e0fc7ffe8285f105e5e547140
7
- data.tar.gz: e75ffea5c597baef2c3330e290caf49c794b7dec1815d700bdb5f97aae875542275ae728fb152a317b42470bba3c59585a4fa7d617713bd8e5b61d2846fe2c9e
6
+ metadata.gz: ff312076f54c88de8792694c943bfca0dba6163fca652a46eb675a36173bfc7d96a934ac89f7cd0adab30ebd612fd68cbf56fde5157fe05695b5879ec8b6f13e
7
+ data.tar.gz: 992649735bbc619082bb1f6a9e023a7250a13e3b19cb60dd239c9d579213f1958f99305616ec0dbe0b7aa032a478fc0a5c6ddf970d82f8b894747084ca44f83c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.64.0 (2023-08-04)
5
+ ------------------
6
+
7
+ * Feature - Display cloud storage used capacity at a cluster level.
8
+
4
9
  1.63.0 (2023-07-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.63.0
1
+ 1.64.0
@@ -1256,67 +1256,53 @@ module Aws::DataSync
1256
1256
  req.send_request(options)
1257
1257
  end
1258
1258
 
1259
- # Creates an endpoint for an Network File System (NFS) file server that
1259
+ # Creates an endpoint for a Network File System (NFS) file server that
1260
1260
  # DataSync can use for a data transfer.
1261
1261
  #
1262
- # @option params [required, String] :subdirectory
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.
1267
- #
1268
- # To see all the paths exported by your NFS server, run "`showmount -e
1269
- # nfs-server-name`" from an NFS client that has access to your server.
1270
- # You can specify any directory that appears in the results, and any
1271
- # subdirectory of that directory. Ensure that the NFS export is
1272
- # accessible without Kerberos authentication.
1273
- #
1274
- # To transfer all the data in the folder you specified, DataSync needs
1275
- # to have permissions to read all the data. To ensure this, either
1276
- # configure the NFS export with `no_root_squash,` or ensure that the
1277
- # permissions for all of the files that you want DataSync allow read
1278
- # access for all users. Doing either enables the agent to read the
1279
- # files. For the agent to access directories, you must additionally
1280
- # enable all execute access.
1262
+ # For more information, see [Configuring transfers to or from an NFS
1263
+ # file server][1].
1281
1264
  #
1282
- # If you are copying data to or from your Snowcone device, see [NFS
1283
- # Server on Snowcone][1] for more information.
1265
+ # <note markdown="1"> If you're copying data to or from an Snowcone device, you can also
1266
+ # use `CreateLocationNfs` to create your transfer location. For more
1267
+ # information, see [Configuring transfers with Snowcone][2].
1284
1268
  #
1269
+ # </note>
1285
1270
  #
1286
1271
  #
1287
- # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html#nfs-on-snowcone
1288
1272
  #
1289
- # @option params [required, String] :server_hostname
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.
1273
+ # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html
1274
+ # [2]: https://docs.aws.amazon.com/datasync/latest/userguide/nfs-on-snowcone.html
1293
1275
  #
1294
- # If you are copying data to or from your Snowcone device, see [NFS
1295
- # Server on Snowcone][1] for more information.
1276
+ # @option params [required, String] :subdirectory
1277
+ # Specifies the export path in your NFS file server that you want
1278
+ # DataSync to mount.
1296
1279
  #
1297
- # <note markdown="1"> You must specify be an IP version 4 address or Domain Name System
1298
- # (DNS)-compliant name.
1280
+ # This path (or a subdirectory of the path) is where DataSync transfers
1281
+ # data to or from. For information on configuring an export for
1282
+ # DataSync, see [Accessing NFS file servers][1].
1299
1283
  #
1300
- # </note>
1301
1284
  #
1302
1285
  #
1286
+ # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html#accessing-nfs
1303
1287
  #
1304
- # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html#nfs-on-snowcone
1288
+ # @option params [required, String] :server_hostname
1289
+ # Specifies the Domain Name System (DNS) name or IP version 4 address of
1290
+ # the NFS file server that your DataSync agent connects to.
1305
1291
  #
1306
1292
  # @option params [required, Types::OnPremConfig] :on_prem_config
1307
- # Specifies the Amazon Resource Names (ARNs) of agents that DataSync
1308
- # uses to connect to your NFS file server.
1293
+ # Specifies the Amazon Resource Name (ARN) of the DataSync agent that
1294
+ # want to connect to your NFS file server.
1309
1295
  #
1310
- # If you are copying data to or from your Snowcone device, see [NFS
1311
- # Server on Snowcone][1] for more information.
1296
+ # You can specify more than one agent. For more information, see [Using
1297
+ # multiple agents for transfers][1].
1312
1298
  #
1313
1299
  #
1314
1300
  #
1315
- # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html#nfs-on-snowcone
1301
+ # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/multiple-agents.html
1316
1302
  #
1317
1303
  # @option params [Types::NfsMountOptions] :mount_options
1318
- # Specifies the mount options that DataSync can use to mount your NFS
1319
- # share.
1304
+ # Specifies the options that DataSync can use to mount your NFS file
1305
+ # server.
1320
1306
  #
1321
1307
  # @option params [Array<Types::TagListEntry>] :tags
1322
1308
  # Specifies labels that help you categorize, filter, and search for your
@@ -2300,10 +2286,12 @@ module Aws::DataSync
2300
2286
  req.send_request(options)
2301
2287
  end
2302
2288
 
2303
- # Returns metadata, such as the path information, about an NFS location.
2289
+ # Provides details about how an DataSync transfer location for a Network
2290
+ # File System (NFS) file server is configured.
2304
2291
  #
2305
2292
  # @option params [required, String] :location_arn
2306
- # The Amazon Resource Name (ARN) of the NFS location to describe.
2293
+ # Specifies the Amazon Resource Name (ARN) of the NFS location that you
2294
+ # want information about.
2307
2295
  #
2308
2296
  # @return [Types::DescribeLocationNfsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2309
2297
  #
@@ -2585,6 +2573,7 @@ module Aws::DataSync
2585
2573
  # resp.metrics[0].capacity.used #=> Integer
2586
2574
  # resp.metrics[0].capacity.provisioned #=> Integer
2587
2575
  # resp.metrics[0].capacity.logical_used #=> Integer
2576
+ # resp.metrics[0].capacity.cluster_cloud_storage_used #=> Integer
2588
2577
  # resp.metrics[0].resource_id #=> String
2589
2578
  # resp.metrics[0].resource_type #=> String, one of "SVM", "VOLUME", "CLUSTER"
2590
2579
  # resp.next_token #=> String
@@ -2735,6 +2724,7 @@ module Aws::DataSync
2735
2724
  # resp.resource_details.net_app_ontap_clusters[0].recommendations[0].estimated_monthly_storage_cost #=> String
2736
2725
  # resp.resource_details.net_app_ontap_clusters[0].recommendation_status #=> String, one of "NONE", "IN_PROGRESS", "COMPLETED", "FAILED"
2737
2726
  # resp.resource_details.net_app_ontap_clusters[0].lun_count #=> Integer
2727
+ # resp.resource_details.net_app_ontap_clusters[0].cluster_cloud_storage_used #=> Integer
2738
2728
  # resp.next_token #=> String
2739
2729
  #
2740
2730
  # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeStorageSystemResources AWS API Documentation
@@ -3820,49 +3810,35 @@ module Aws::DataSync
3820
3810
  req.send_request(options)
3821
3811
  end
3822
3812
 
3823
- # Updates some of the parameters of a previously created location for
3824
- # Network File System (NFS) access. For information about creating an
3825
- # NFS location, see [Creating a location for NFS][1].
3813
+ # Modifies some configurations of the Network File System (NFS) transfer
3814
+ # location that you're using with DataSync.
3815
+ #
3816
+ # For more information, see [Configuring transfers to or from an NFS
3817
+ # file server][1].
3826
3818
  #
3827
3819
  #
3828
3820
  #
3829
3821
  # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html
3830
3822
  #
3831
3823
  # @option params [required, String] :location_arn
3832
- # Specifies the Amazon Resource Name (ARN) of the NFS location that you
3833
- # want to update.
3824
+ # Specifies the Amazon Resource Name (ARN) of the NFS transfer location
3825
+ # that you want to update.
3834
3826
  #
3835
3827
  # @option params [String] :subdirectory
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.
3841
- #
3842
- # To see all the paths exported by your NFS server, run "`showmount -e
3843
- # nfs-server-name`" from an NFS client that has access to your server.
3844
- # You can specify any directory that appears in the results, and any
3845
- # subdirectory of that directory. Ensure that the NFS export is
3846
- # accessible without Kerberos authentication.
3847
- #
3848
- # To transfer all the data in the folder that you specified, DataSync
3849
- # must have permissions to read all the data. To ensure this, either
3850
- # configure the NFS export with `no_root_squash`, or ensure that the
3851
- # files you want DataSync to access have permissions that allow read
3852
- # access for all users. Doing either option enables the agent to read
3853
- # the files. For the agent to access directories, you must additionally
3854
- # enable all execute access.
3828
+ # Specifies the export path in your NFS file server that you want
3829
+ # DataSync to mount.
3855
3830
  #
3856
- # If you are copying data to or from your Snowcone device, see [NFS
3857
- # Server on Snowcone][1] for more information.
3831
+ # This path (or a subdirectory of the path) is where DataSync transfers
3832
+ # data to or from. For information on configuring an export for
3833
+ # DataSync, see [Accessing NFS file servers][1].
3858
3834
  #
3859
3835
  #
3860
3836
  #
3861
- # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html#nfs-on-snowcone
3837
+ # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html#accessing-nfs
3862
3838
  #
3863
3839
  # @option params [Types::OnPremConfig] :on_prem_config
3864
- # A list of Amazon Resource Names (ARNs) of agents to use for a Network
3865
- # File System (NFS) location.
3840
+ # The DataSync agents that are connecting to a Network File System (NFS)
3841
+ # location.
3866
3842
  #
3867
3843
  # @option params [Types::NfsMountOptions] :mount_options
3868
3844
  # Specifies how DataSync can access a location using the NFS protocol.
@@ -4274,7 +4250,7 @@ module Aws::DataSync
4274
4250
  params: params,
4275
4251
  config: config)
4276
4252
  context[:gem_name] = 'aws-sdk-datasync'
4277
- context[:gem_version] = '1.63.0'
4253
+ context[:gem_version] = '1.64.0'
4278
4254
  Seahorse::Client::Request.new(handlers, context)
4279
4255
  end
4280
4256
 
@@ -360,6 +360,7 @@ module Aws::DataSync
360
360
  Capacity.add_member(:used, Shapes::ShapeRef.new(shape: NonNegativeLong, location_name: "Used"))
361
361
  Capacity.add_member(:provisioned, Shapes::ShapeRef.new(shape: NonNegativeLong, location_name: "Provisioned"))
362
362
  Capacity.add_member(:logical_used, Shapes::ShapeRef.new(shape: NonNegativeLong, location_name: "LogicalUsed"))
363
+ Capacity.add_member(:cluster_cloud_storage_used, Shapes::ShapeRef.new(shape: NonNegativeLong, location_name: "ClusterCloudStorageUsed"))
363
364
  Capacity.struct_class = Types::Capacity
364
365
 
365
366
  CreateAgentRequest.add_member(:activation_key, Shapes::ShapeRef.new(shape: ActivationKey, required: true, location_name: "ActivationKey"))
@@ -950,6 +951,7 @@ module Aws::DataSync
950
951
  NetAppONTAPCluster.add_member(:recommendations, Shapes::ShapeRef.new(shape: Recommendations, location_name: "Recommendations"))
951
952
  NetAppONTAPCluster.add_member(:recommendation_status, Shapes::ShapeRef.new(shape: RecommendationStatus, location_name: "RecommendationStatus"))
952
953
  NetAppONTAPCluster.add_member(:lun_count, Shapes::ShapeRef.new(shape: NonNegativeLong, location_name: "LunCount"))
954
+ NetAppONTAPCluster.add_member(:cluster_cloud_storage_used, Shapes::ShapeRef.new(shape: NonNegativeLong, location_name: "ClusterCloudStorageUsed"))
953
955
  NetAppONTAPCluster.struct_class = Types::NetAppONTAPCluster
954
956
 
955
957
  NetAppONTAPClusters.member = Shapes::ShapeRef.new(shape: NetAppONTAPCluster)
@@ -184,12 +184,18 @@ module Aws::DataSync
184
184
  # without accounting for compression or deduplication.
185
185
  # @return [Integer]
186
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
+ #
187
192
  # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/Capacity AWS API Documentation
188
193
  #
189
194
  class Capacity < Struct.new(
190
195
  :used,
191
196
  :provisioned,
192
- :logical_used)
197
+ :logical_used,
198
+ :cluster_cloud_storage_used)
193
199
  SENSITIVE = []
194
200
  include Aws::Structure
195
201
  end
@@ -837,66 +843,38 @@ module Aws::DataSync
837
843
  # CreateLocationNfsRequest
838
844
  #
839
845
  # @!attribute [rw] subdirectory
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.
844
- #
845
- # To see all the paths exported by your NFS server, run "`showmount
846
- # -e nfs-server-name`" from an NFS client that has access to your
847
- # server. You can specify any directory that appears in the results,
848
- # and any subdirectory of that directory. Ensure that the NFS export
849
- # is accessible without Kerberos authentication.
850
- #
851
- # To transfer all the data in the folder you specified, DataSync needs
852
- # to have permissions to read all the data. To ensure this, either
853
- # configure the NFS export with `no_root_squash,` or ensure that the
854
- # permissions for all of the files that you want DataSync allow read
855
- # access for all users. Doing either enables the agent to read the
856
- # files. For the agent to access directories, you must additionally
857
- # enable all execute access.
846
+ # Specifies the export path in your NFS file server that you want
847
+ # DataSync to mount.
858
848
  #
859
- # If you are copying data to or from your Snowcone device, see [NFS
860
- # Server on Snowcone][1] for more information.
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].
861
852
  #
862
853
  #
863
854
  #
864
- # [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
865
856
  # @return [String]
866
857
  #
867
858
  # @!attribute [rw] server_hostname
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.
871
- #
872
- # If you are copying data to or from your Snowcone device, see [NFS
873
- # Server on Snowcone][1] for more information.
874
- #
875
- # <note markdown="1"> You must specify be an IP version 4 address or Domain Name System
876
- # (DNS)-compliant name.
877
- #
878
- # </note>
879
- #
880
- #
881
- #
882
- # [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.
883
861
  # @return [String]
884
862
  #
885
863
  # @!attribute [rw] on_prem_config
886
- # Specifies the Amazon Resource Names (ARNs) of agents that DataSync
887
- # uses to connect to your NFS file server.
864
+ # Specifies the Amazon Resource Name (ARN) of the DataSync agent that
865
+ # want to connect to your NFS file server.
888
866
  #
889
- # If you are copying data to or from your Snowcone device, see [NFS
890
- # Server on Snowcone][1] for more information.
867
+ # You can specify more than one agent. For more information, see
868
+ # [Using multiple agents for transfers][1].
891
869
  #
892
870
  #
893
871
  #
894
- # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html#nfs-on-snowcone
872
+ # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/multiple-agents.html
895
873
  # @return [Types::OnPremConfig]
896
874
  #
897
875
  # @!attribute [rw] mount_options
898
- # Specifies the mount options that DataSync can use to mount your NFS
899
- # share.
876
+ # Specifies the options that DataSync can use to mount your NFS file
877
+ # server.
900
878
  # @return [Types::NfsMountOptions]
901
879
  #
902
880
  # @!attribute [rw] tags
@@ -1978,7 +1956,8 @@ module Aws::DataSync
1978
1956
  # DescribeLocationNfsRequest
1979
1957
  #
1980
1958
  # @!attribute [rw] location_arn
1981
- # The Amazon Resource Name (ARN) of the NFS location to describe.
1959
+ # Specifies the Amazon Resource Name (ARN) of the NFS location that
1960
+ # you want information about.
1982
1961
  # @return [String]
1983
1962
  #
1984
1963
  # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeLocationNfsRequest AWS API Documentation
@@ -1992,25 +1971,24 @@ module Aws::DataSync
1992
1971
  # DescribeLocationNfsResponse
1993
1972
  #
1994
1973
  # @!attribute [rw] location_arn
1995
- # The Amazon Resource Name (ARN) of the NFS location that was
1996
- # described.
1974
+ # The ARN of the NFS location.
1997
1975
  # @return [String]
1998
1976
  #
1999
1977
  # @!attribute [rw] location_uri
2000
- # The URL of the source NFS location that was described.
1978
+ # The URL of the NFS location.
2001
1979
  # @return [String]
2002
1980
  #
2003
1981
  # @!attribute [rw] on_prem_config
2004
- # A list of Amazon Resource Names (ARNs) of agents to use for a
2005
- # Network File System (NFS) location.
1982
+ # The DataSync agents that are connecting to a Network File System
1983
+ # (NFS) location.
2006
1984
  # @return [Types::OnPremConfig]
2007
1985
  #
2008
1986
  # @!attribute [rw] mount_options
2009
- # The mount options that DataSync uses to mount your NFS share.
1987
+ # The mount options that DataSync uses to mount your NFS file server.
2010
1988
  # @return [Types::NfsMountOptions]
2011
1989
  #
2012
1990
  # @!attribute [rw] creation_time
2013
- # The time that the NFS location was created.
1991
+ # The time when the NFS location was created.
2014
1992
  # @return [Time]
2015
1993
  #
2016
1994
  # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeLocationNfsResponse AWS API Documentation
@@ -3645,6 +3623,11 @@ module Aws::DataSync
3645
3623
  # The number of LUNs (logical unit numbers) in the cluster.
3646
3624
  # @return [Integer]
3647
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
+ #
3648
3631
  # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/NetAppONTAPCluster AWS API Documentation
3649
3632
  #
3650
3633
  class NetAppONTAPCluster < Struct.new(
@@ -3658,7 +3641,8 @@ module Aws::DataSync
3658
3641
  :cluster_block_storage_logical_used,
3659
3642
  :recommendations,
3660
3643
  :recommendation_status,
3661
- :lun_count)
3644
+ :lun_count,
3645
+ :cluster_cloud_storage_used)
3662
3646
  SENSITIVE = []
3663
3647
  include Aws::Structure
3664
3648
  end
@@ -3895,11 +3879,12 @@ module Aws::DataSync
3895
3879
  include Aws::Structure
3896
3880
  end
3897
3881
 
3898
- # A list of Amazon Resource Names (ARNs) of agents to use for a Network
3899
- # File System (NFS) location.
3882
+ # The DataSync agents that are connecting to a Network File System (NFS)
3883
+ # location.
3900
3884
  #
3901
3885
  # @!attribute [rw] agent_arns
3902
- # ARNs of the agents to use for an NFS location.
3886
+ # The Amazon Resource Names (ARNs) of the agents connecting to a
3887
+ # transfer location.
3903
3888
  # @return [Array<String>]
3904
3889
  #
3905
3890
  # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/OnPremConfig AWS API Documentation
@@ -5177,42 +5162,26 @@ module Aws::DataSync
5177
5162
  class UpdateLocationHdfsResponse < Aws::EmptyStructure; end
5178
5163
 
5179
5164
  # @!attribute [rw] location_arn
5180
- # Specifies the Amazon Resource Name (ARN) of the NFS location that
5181
- # you want to update.
5165
+ # Specifies the Amazon Resource Name (ARN) of the NFS transfer
5166
+ # location that you want to update.
5182
5167
  # @return [String]
5183
5168
  #
5184
5169
  # @!attribute [rw] subdirectory
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.
5190
- #
5191
- # To see all the paths exported by your NFS server, run "`showmount
5192
- # -e nfs-server-name`" from an NFS client that has access to your
5193
- # server. You can specify any directory that appears in the results,
5194
- # and any subdirectory of that directory. Ensure that the NFS export
5195
- # is accessible without Kerberos authentication.
5196
- #
5197
- # To transfer all the data in the folder that you specified, DataSync
5198
- # must have permissions to read all the data. To ensure this, either
5199
- # configure the NFS export with `no_root_squash`, or ensure that the
5200
- # files you want DataSync to access have permissions that allow read
5201
- # access for all users. Doing either option enables the agent to read
5202
- # the files. For the agent to access directories, you must
5203
- # additionally enable all execute access.
5170
+ # Specifies the export path in your NFS file server that you want
5171
+ # DataSync to mount.
5204
5172
  #
5205
- # If you are copying data to or from your Snowcone device, see [NFS
5206
- # Server on Snowcone][1] for more information.
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].
5207
5176
  #
5208
5177
  #
5209
5178
  #
5210
- # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html#nfs-on-snowcone
5179
+ # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html#accessing-nfs
5211
5180
  # @return [String]
5212
5181
  #
5213
5182
  # @!attribute [rw] on_prem_config
5214
- # A list of Amazon Resource Names (ARNs) of agents to use for a
5215
- # Network File System (NFS) location.
5183
+ # The DataSync agents that are connecting to a Network File System
5184
+ # (NFS) location.
5216
5185
  # @return [Types::OnPremConfig]
5217
5186
  #
5218
5187
  # @!attribute [rw] mount_options
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-datasync/customizations'
52
52
  # @!group service
53
53
  module Aws::DataSync
54
54
 
55
- GEM_VERSION = '1.63.0'
55
+ GEM_VERSION = '1.64.0'
56
56
 
57
57
  end
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.63.0
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-07-25 00:00:00.000000000 Z
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