aws-sdk-datasync 1.45.0 → 1.48.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datasync/client.rb +242 -81
- data/lib/aws-sdk-datasync/client_api.rb +67 -0
- data/lib/aws-sdk-datasync/errors.rb +5 -0
- data/lib/aws-sdk-datasync/types.rb +484 -205
- 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: bd6bbd2b4bc78fc6d4b88d163675f6e951060df52a590a11f3078f8405834930
|
4
|
+
data.tar.gz: 5c416587f63dc2314e812f6620a8f5e61b96ec0f066bf2941d0b944432be91d9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1d161dfc927a944b5264cb5bc5c2d0bd92417356f7083dfde598cb9a49241631d69e0f6e8d04da4b40b9f69b1fd240792e505fca023a0609f93382fc866eeb39
|
7
|
+
data.tar.gz: 64c165aa7e495ec1b8892a6302116674d279658b358109dc5a16122b10eb5e45a7fd0dc182d0d2c1358d628d3ab2bec729baca75c5b7a5802b734443bf3e6e99
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.48.0 (2022-06-28)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - AWS DataSync now supports Amazon FSx for NetApp ONTAP locations.
|
8
|
+
|
9
|
+
1.47.0 (2022-05-27)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - AWS DataSync now supports TLS encryption in transit, file system policies and access points for EFS locations.
|
13
|
+
|
14
|
+
1.46.0 (2022-05-05)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - AWS DataSync now supports a new ObjectTags Task API option that can be used to control whether Object Tags are transferred.
|
18
|
+
|
4
19
|
1.45.0 (2022-04-05)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.48.0
|
@@ -508,50 +508,54 @@ module Aws::DataSync
|
|
508
508
|
req.send_request(options)
|
509
509
|
end
|
510
510
|
|
511
|
-
# Creates an endpoint for an Amazon EFS file system
|
511
|
+
# Creates an endpoint for an Amazon EFS file system that DataSync can
|
512
|
+
# access for a transfer. For more information, see [Creating a location
|
513
|
+
# for Amazon EFS][1].
|
514
|
+
#
|
515
|
+
#
|
516
|
+
#
|
517
|
+
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-efs-location.html
|
512
518
|
#
|
513
519
|
# @option params [String] :subdirectory
|
514
|
-
#
|
515
|
-
#
|
516
|
-
#
|
517
|
-
#
|
520
|
+
# Specifies a mount path for your Amazon EFS file system. This is where
|
521
|
+
# DataSync reads or writes data (depending on if this is a source or
|
522
|
+
# destination location). By default, DataSync uses the root directory,
|
523
|
+
# but you can also include subdirectories.
|
518
524
|
#
|
519
|
-
# <note markdown="1">
|
520
|
-
# `/path/to/folder
|
525
|
+
# <note markdown="1"> You must specify a value with forward slashes (for example,
|
526
|
+
# `/path/to/folder`).
|
521
527
|
#
|
522
528
|
# </note>
|
523
529
|
#
|
524
530
|
# @option params [required, String] :efs_filesystem_arn
|
525
|
-
#
|
531
|
+
# Specifies the ARN for the Amazon EFS file system.
|
526
532
|
#
|
527
533
|
# @option params [required, Types::Ec2Config] :ec2_config
|
528
|
-
#
|
529
|
-
#
|
530
|
-
# with the security group on the mount target in the subnet specified.
|
531
|
-
#
|
532
|
-
# The exact relationship between security group M (of the mount target)
|
533
|
-
# and security group S (which you provide for DataSync to use at this
|
534
|
-
# stage) is as follows:
|
535
|
-
#
|
536
|
-
# * Security group M (which you associate with the mount target) must
|
537
|
-
# allow inbound access for the Transmission Control Protocol (TCP) on
|
538
|
-
# the NFS port (2049) from security group S. You can enable inbound
|
539
|
-
# connections either by IP address (CIDR range) or security group.
|
540
|
-
#
|
541
|
-
# * Security group S (provided to DataSync to access EFS) should have a
|
542
|
-
# rule that enables outbound connections to the NFS port on one of the
|
543
|
-
# file system’s mount targets. You can enable outbound connections
|
544
|
-
# either by IP address (CIDR range) or security group.
|
545
|
-
#
|
546
|
-
# For information about security groups and mount targets, see
|
547
|
-
# Security Groups for Amazon EC2 Instances and Mount Targets in the
|
548
|
-
# *Amazon EFS User Guide.*
|
534
|
+
# Specifies the subnet and security groups DataSync uses to access your
|
535
|
+
# Amazon EFS file system.
|
549
536
|
#
|
550
537
|
# @option params [Array<Types::TagListEntry>] :tags
|
551
|
-
#
|
552
|
-
# resource. The value can be an empty string. This value
|
553
|
-
# manage, filter, and search for your resources. We recommend
|
554
|
-
# create a name tag for your location.
|
538
|
+
# Specifies the key-value pair that represents a tag that you want to
|
539
|
+
# add to the resource. The value can be an empty string. This value
|
540
|
+
# helps you manage, filter, and search for your resources. We recommend
|
541
|
+
# that you create a name tag for your location.
|
542
|
+
#
|
543
|
+
# @option params [String] :access_point_arn
|
544
|
+
# Specifies the Amazon Resource Name (ARN) of the access point that
|
545
|
+
# DataSync uses to access the Amazon EFS file system.
|
546
|
+
#
|
547
|
+
# @option params [String] :file_system_access_role_arn
|
548
|
+
# Specifies an Identity and Access Management (IAM) role that DataSync
|
549
|
+
# assumes when mounting the Amazon EFS file system.
|
550
|
+
#
|
551
|
+
# @option params [String] :in_transit_encryption
|
552
|
+
# Specifies whether you want DataSync to use Transport Layer Security
|
553
|
+
# (TLS) 1.2 encryption when it copies data to or from the Amazon EFS
|
554
|
+
# file system.
|
555
|
+
#
|
556
|
+
# If you specify an access point using `AccessPointArn` or an IAM role
|
557
|
+
# using `FileSystemAccessRoleArn`, you must set this parameter to
|
558
|
+
# `TLS1_2`.
|
555
559
|
#
|
556
560
|
# @return [Types::CreateLocationEfsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
557
561
|
#
|
@@ -572,6 +576,9 @@ module Aws::DataSync
|
|
572
576
|
# value: "TagValue",
|
573
577
|
# },
|
574
578
|
# ],
|
579
|
+
# access_point_arn: "EfsAccessPointArn",
|
580
|
+
# file_system_access_role_arn: "IamRoleArn",
|
581
|
+
# in_transit_encryption: "NONE", # accepts NONE, TLS1_2
|
575
582
|
# })
|
576
583
|
#
|
577
584
|
# @example Response structure
|
@@ -638,6 +645,100 @@ module Aws::DataSync
|
|
638
645
|
req.send_request(options)
|
639
646
|
end
|
640
647
|
|
648
|
+
# Creates an endpoint for an Amazon FSx for NetApp ONTAP file system
|
649
|
+
# that DataSync can access for a transfer. For more information, see
|
650
|
+
# [Creating a location for FSx for ONTAP][1].
|
651
|
+
#
|
652
|
+
#
|
653
|
+
#
|
654
|
+
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-ontap-location.html
|
655
|
+
#
|
656
|
+
# @option params [required, Types::FsxProtocol] :protocol
|
657
|
+
# Specifies the data transfer protocol that DataSync uses to access your
|
658
|
+
# Amazon FSx file system.
|
659
|
+
#
|
660
|
+
# @option params [required, Array<String>] :security_group_arns
|
661
|
+
# Specifies the security groups that DataSync can use to access your FSx
|
662
|
+
# for ONTAP file system. You must configure the security groups to allow
|
663
|
+
# outbound traffic on the following ports (depending on the protocol
|
664
|
+
# that you're using):
|
665
|
+
#
|
666
|
+
# * **Network File System (NFS)**\: TCP port 2049
|
667
|
+
#
|
668
|
+
# * **Server Message Block (SMB)**\: TCP port 445
|
669
|
+
#
|
670
|
+
# Your file system's security groups must also allow inbound traffic on
|
671
|
+
# the same port.
|
672
|
+
#
|
673
|
+
# @option params [required, String] :storage_virtual_machine_arn
|
674
|
+
# Specifies the ARN of the storage virtual machine (SVM) on your file
|
675
|
+
# system where you're copying data to or from.
|
676
|
+
#
|
677
|
+
# @option params [String] :subdirectory
|
678
|
+
# Specifies the junction path (also known as a mount point) in the SVM
|
679
|
+
# volume where you're copying data to or from (for example, `/vol1`).
|
680
|
+
#
|
681
|
+
# <note markdown="1"> Don't specify a junction path in the SVM's root volume. For more
|
682
|
+
# information, see [Managing FSx for ONTAP storage virtual machines][1]
|
683
|
+
# in the *Amazon FSx for NetApp ONTAP User Guide*.
|
684
|
+
#
|
685
|
+
# </note>
|
686
|
+
#
|
687
|
+
#
|
688
|
+
#
|
689
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/managing-svms.html
|
690
|
+
#
|
691
|
+
# @option params [Array<Types::TagListEntry>] :tags
|
692
|
+
# Specifies labels that help you categorize, filter, and search for your
|
693
|
+
# Amazon Web Services resources. We recommend creating at least a name
|
694
|
+
# tag for your location.
|
695
|
+
#
|
696
|
+
# @return [Types::CreateLocationFsxOntapResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
697
|
+
#
|
698
|
+
# * {Types::CreateLocationFsxOntapResponse#location_arn #location_arn} => String
|
699
|
+
#
|
700
|
+
# @example Request syntax with placeholder values
|
701
|
+
#
|
702
|
+
# resp = client.create_location_fsx_ontap({
|
703
|
+
# protocol: { # required
|
704
|
+
# nfs: {
|
705
|
+
# mount_options: {
|
706
|
+
# version: "AUTOMATIC", # accepts AUTOMATIC, NFS3, NFS4_0, NFS4_1
|
707
|
+
# },
|
708
|
+
# },
|
709
|
+
# smb: {
|
710
|
+
# domain: "SmbDomain",
|
711
|
+
# mount_options: {
|
712
|
+
# version: "AUTOMATIC", # accepts AUTOMATIC, SMB2, SMB3
|
713
|
+
# },
|
714
|
+
# password: "SmbPassword", # required
|
715
|
+
# user: "SmbUser", # required
|
716
|
+
# },
|
717
|
+
# },
|
718
|
+
# security_group_arns: ["Ec2SecurityGroupArn"], # required
|
719
|
+
# storage_virtual_machine_arn: "StorageVirtualMachineArn", # required
|
720
|
+
# subdirectory: "FsxOntapSubdirectory",
|
721
|
+
# tags: [
|
722
|
+
# {
|
723
|
+
# key: "TagKey", # required
|
724
|
+
# value: "TagValue",
|
725
|
+
# },
|
726
|
+
# ],
|
727
|
+
# })
|
728
|
+
#
|
729
|
+
# @example Response structure
|
730
|
+
#
|
731
|
+
# resp.location_arn #=> String
|
732
|
+
#
|
733
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/CreateLocationFsxOntap AWS API Documentation
|
734
|
+
#
|
735
|
+
# @overload create_location_fsx_ontap(params = {})
|
736
|
+
# @param [Hash] params ({})
|
737
|
+
def create_location_fsx_ontap(params = {}, options = {})
|
738
|
+
req = build_request(:create_location_fsx_ontap, params)
|
739
|
+
req.send_request(options)
|
740
|
+
end
|
741
|
+
|
641
742
|
# Creates an endpoint for an Amazon FSx for OpenZFS file system.
|
642
743
|
#
|
643
744
|
# @option params [required, String] :fsx_filesystem_arn
|
@@ -675,6 +776,14 @@ module Aws::DataSync
|
|
675
776
|
# version: "AUTOMATIC", # accepts AUTOMATIC, NFS3, NFS4_0, NFS4_1
|
676
777
|
# },
|
677
778
|
# },
|
779
|
+
# smb: {
|
780
|
+
# domain: "SmbDomain",
|
781
|
+
# mount_options: {
|
782
|
+
# version: "AUTOMATIC", # accepts AUTOMATIC, SMB2, SMB3
|
783
|
+
# },
|
784
|
+
# password: "SmbPassword", # required
|
785
|
+
# user: "SmbUser", # required
|
786
|
+
# },
|
678
787
|
# },
|
679
788
|
# security_group_arns: ["Ec2SecurityGroupArn"], # required
|
680
789
|
# subdirectory: "FsxOpenZfsSubdirectory",
|
@@ -1014,58 +1123,53 @@ module Aws::DataSync
|
|
1014
1123
|
req.send_request(options)
|
1015
1124
|
end
|
1016
1125
|
|
1017
|
-
# Creates an endpoint for
|
1018
|
-
#
|
1019
|
-
#
|
1126
|
+
# Creates an endpoint for an object storage system that DataSync can
|
1127
|
+
# access for a transfer. For more information, see [Creating a location
|
1128
|
+
# for object storage][1].
|
1020
1129
|
#
|
1021
1130
|
#
|
1022
1131
|
#
|
1023
1132
|
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-object-location.html
|
1024
1133
|
#
|
1025
1134
|
# @option params [required, String] :server_hostname
|
1026
|
-
#
|
1027
|
-
#
|
1028
|
-
# server. An agent uses this hostname to mount the object storage server
|
1135
|
+
# Specifies the domain name or IP address of the object storage server.
|
1136
|
+
# A DataSync agent uses this hostname to mount the object storage server
|
1029
1137
|
# in a network.
|
1030
1138
|
#
|
1031
1139
|
# @option params [Integer] :server_port
|
1032
|
-
#
|
1033
|
-
# network traffic on
|
1034
|
-
# or TCP 443 (HTTPS). You can specify a custom port if your self-managed
|
1035
|
-
# object storage server requires one.
|
1140
|
+
# Specifies the port that your object storage server accepts inbound
|
1141
|
+
# network traffic on (for example, port 443).
|
1036
1142
|
#
|
1037
1143
|
# @option params [String] :server_protocol
|
1038
|
-
#
|
1039
|
-
#
|
1144
|
+
# Specifies the protocol that your object storage server uses to
|
1145
|
+
# communicate.
|
1040
1146
|
#
|
1041
1147
|
# @option params [String] :subdirectory
|
1042
|
-
#
|
1043
|
-
#
|
1148
|
+
# Specifies the object prefix for your object storage server. If this is
|
1149
|
+
# a source location, DataSync only copies objects with this prefix. If
|
1150
|
+
# this is a destination location, DataSync writes all objects with this
|
1151
|
+
# prefix.
|
1044
1152
|
#
|
1045
1153
|
# @option params [required, String] :bucket_name
|
1046
|
-
#
|
1047
|
-
#
|
1154
|
+
# Specifies the name of the object storage bucket involved in the
|
1155
|
+
# transfer.
|
1048
1156
|
#
|
1049
1157
|
# @option params [String] :access_key
|
1050
|
-
#
|
1051
|
-
# the
|
1052
|
-
# requires a user name and password to authenticate, use `AccessKey` and
|
1053
|
-
# `SecretKey` to provide the user name and password, respectively.
|
1158
|
+
# Specifies the access key (for example, a user name) if credentials are
|
1159
|
+
# required to authenticate with the object storage server.
|
1054
1160
|
#
|
1055
1161
|
# @option params [String] :secret_key
|
1056
|
-
#
|
1057
|
-
# the
|
1058
|
-
# requires a user name and password to authenticate, use `AccessKey` and
|
1059
|
-
# `SecretKey` to provide the user name and password, respectively.
|
1162
|
+
# Specifies the secret key (for example, a password) if credentials are
|
1163
|
+
# required to authenticate with the object storage server.
|
1060
1164
|
#
|
1061
1165
|
# @option params [required, Array<String>] :agent_arns
|
1062
|
-
#
|
1063
|
-
#
|
1166
|
+
# Specifies the Amazon Resource Names (ARNs) of the DataSync agents that
|
1167
|
+
# can securely connect with your location.
|
1064
1168
|
#
|
1065
1169
|
# @option params [Array<Types::TagListEntry>] :tags
|
1066
|
-
#
|
1067
|
-
#
|
1068
|
-
# name your
|
1170
|
+
# Specifies the key-value pair that represents a tag that you want to
|
1171
|
+
# add to the resource. Tags can help you manage, filter, and search for
|
1172
|
+
# your resources. We recommend creating a name tag for your location.
|
1069
1173
|
#
|
1070
1174
|
# @return [Types::CreateLocationObjectStorageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1071
1175
|
#
|
@@ -1236,8 +1340,8 @@ module Aws::DataSync
|
|
1236
1340
|
# and folders in the SMB share.
|
1237
1341
|
#
|
1238
1342
|
# For information about choosing a user name that ensures sufficient
|
1239
|
-
# permissions to files, folders, and metadata, see
|
1240
|
-
#
|
1343
|
+
# permissions to files, folders, and metadata, see the [User
|
1344
|
+
# setting](create-smb-location.html#SMBuser) for SMB locations.
|
1241
1345
|
#
|
1242
1346
|
# @option params [String] :domain
|
1243
1347
|
# The name of the Windows domain that the SMB server belongs to.
|
@@ -1404,6 +1508,7 @@ module Aws::DataSync
|
|
1404
1508
|
# log_level: "OFF", # accepts OFF, BASIC, TRANSFER
|
1405
1509
|
# transfer_mode: "CHANGED", # accepts CHANGED, ALL
|
1406
1510
|
# security_descriptor_copy_flags: "NONE", # accepts NONE, OWNER_DACL, OWNER_DACL_SACL
|
1511
|
+
# object_tags: "PRESERVE", # accepts PRESERVE, NONE
|
1407
1512
|
# },
|
1408
1513
|
# excludes: [
|
1409
1514
|
# {
|
@@ -1561,11 +1666,12 @@ module Aws::DataSync
|
|
1561
1666
|
req.send_request(options)
|
1562
1667
|
end
|
1563
1668
|
|
1564
|
-
# Returns metadata
|
1565
|
-
#
|
1669
|
+
# Returns metadata about your DataSync location for an Amazon EFS file
|
1670
|
+
# system.
|
1566
1671
|
#
|
1567
1672
|
# @option params [required, String] :location_arn
|
1568
|
-
# The Amazon Resource Name (ARN) of the EFS
|
1673
|
+
# The Amazon Resource Name (ARN) of the Amazon EFS file system location
|
1674
|
+
# that you want information about.
|
1569
1675
|
#
|
1570
1676
|
# @return [Types::DescribeLocationEfsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1571
1677
|
#
|
@@ -1573,6 +1679,9 @@ module Aws::DataSync
|
|
1573
1679
|
# * {Types::DescribeLocationEfsResponse#location_uri #location_uri} => String
|
1574
1680
|
# * {Types::DescribeLocationEfsResponse#ec2_config #ec2_config} => Types::Ec2Config
|
1575
1681
|
# * {Types::DescribeLocationEfsResponse#creation_time #creation_time} => Time
|
1682
|
+
# * {Types::DescribeLocationEfsResponse#access_point_arn #access_point_arn} => String
|
1683
|
+
# * {Types::DescribeLocationEfsResponse#file_system_access_role_arn #file_system_access_role_arn} => String
|
1684
|
+
# * {Types::DescribeLocationEfsResponse#in_transit_encryption #in_transit_encryption} => String
|
1576
1685
|
#
|
1577
1686
|
# @example Request syntax with placeholder values
|
1578
1687
|
#
|
@@ -1588,6 +1697,9 @@ module Aws::DataSync
|
|
1588
1697
|
# resp.ec2_config.security_group_arns #=> Array
|
1589
1698
|
# resp.ec2_config.security_group_arns[0] #=> String
|
1590
1699
|
# resp.creation_time #=> Time
|
1700
|
+
# resp.access_point_arn #=> String
|
1701
|
+
# resp.file_system_access_role_arn #=> String
|
1702
|
+
# resp.in_transit_encryption #=> String, one of "NONE", "TLS1_2"
|
1591
1703
|
#
|
1592
1704
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeLocationEfs AWS API Documentation
|
1593
1705
|
#
|
@@ -1635,6 +1747,53 @@ module Aws::DataSync
|
|
1635
1747
|
req.send_request(options)
|
1636
1748
|
end
|
1637
1749
|
|
1750
|
+
# Provides details about how an DataSync location for an Amazon FSx for
|
1751
|
+
# NetApp ONTAP file system is configured.
|
1752
|
+
#
|
1753
|
+
# @option params [required, String] :location_arn
|
1754
|
+
# Specifies the Amazon Resource Name (ARN) of the FSx for ONTAP file
|
1755
|
+
# system location that you want information about.
|
1756
|
+
#
|
1757
|
+
# @return [Types::DescribeLocationFsxOntapResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1758
|
+
#
|
1759
|
+
# * {Types::DescribeLocationFsxOntapResponse#creation_time #creation_time} => Time
|
1760
|
+
# * {Types::DescribeLocationFsxOntapResponse#location_arn #location_arn} => String
|
1761
|
+
# * {Types::DescribeLocationFsxOntapResponse#location_uri #location_uri} => String
|
1762
|
+
# * {Types::DescribeLocationFsxOntapResponse#protocol #protocol} => Types::FsxProtocol
|
1763
|
+
# * {Types::DescribeLocationFsxOntapResponse#security_group_arns #security_group_arns} => Array<String>
|
1764
|
+
# * {Types::DescribeLocationFsxOntapResponse#storage_virtual_machine_arn #storage_virtual_machine_arn} => String
|
1765
|
+
# * {Types::DescribeLocationFsxOntapResponse#fsx_filesystem_arn #fsx_filesystem_arn} => String
|
1766
|
+
#
|
1767
|
+
# @example Request syntax with placeholder values
|
1768
|
+
#
|
1769
|
+
# resp = client.describe_location_fsx_ontap({
|
1770
|
+
# location_arn: "LocationArn", # required
|
1771
|
+
# })
|
1772
|
+
#
|
1773
|
+
# @example Response structure
|
1774
|
+
#
|
1775
|
+
# resp.creation_time #=> Time
|
1776
|
+
# resp.location_arn #=> String
|
1777
|
+
# resp.location_uri #=> String
|
1778
|
+
# resp.protocol.nfs.mount_options.version #=> String, one of "AUTOMATIC", "NFS3", "NFS4_0", "NFS4_1"
|
1779
|
+
# resp.protocol.smb.domain #=> String
|
1780
|
+
# resp.protocol.smb.mount_options.version #=> String, one of "AUTOMATIC", "SMB2", "SMB3"
|
1781
|
+
# resp.protocol.smb.password #=> String
|
1782
|
+
# resp.protocol.smb.user #=> String
|
1783
|
+
# resp.security_group_arns #=> Array
|
1784
|
+
# resp.security_group_arns[0] #=> String
|
1785
|
+
# resp.storage_virtual_machine_arn #=> String
|
1786
|
+
# resp.fsx_filesystem_arn #=> String
|
1787
|
+
#
|
1788
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeLocationFsxOntap AWS API Documentation
|
1789
|
+
#
|
1790
|
+
# @overload describe_location_fsx_ontap(params = {})
|
1791
|
+
# @param [Hash] params ({})
|
1792
|
+
def describe_location_fsx_ontap(params = {}, options = {})
|
1793
|
+
req = build_request(:describe_location_fsx_ontap, params)
|
1794
|
+
req.send_request(options)
|
1795
|
+
end
|
1796
|
+
|
1638
1797
|
# Returns metadata about an Amazon FSx for OpenZFS location, such as
|
1639
1798
|
# information about its path.
|
1640
1799
|
#
|
@@ -1663,6 +1822,10 @@ module Aws::DataSync
|
|
1663
1822
|
# resp.security_group_arns #=> Array
|
1664
1823
|
# resp.security_group_arns[0] #=> String
|
1665
1824
|
# resp.protocol.nfs.mount_options.version #=> String, one of "AUTOMATIC", "NFS3", "NFS4_0", "NFS4_1"
|
1825
|
+
# resp.protocol.smb.domain #=> String
|
1826
|
+
# resp.protocol.smb.mount_options.version #=> String, one of "AUTOMATIC", "SMB2", "SMB3"
|
1827
|
+
# resp.protocol.smb.password #=> String
|
1828
|
+
# resp.protocol.smb.user #=> String
|
1666
1829
|
# resp.creation_time #=> Time
|
1667
1830
|
#
|
1668
1831
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeLocationFsxOpenZfs AWS API Documentation
|
@@ -1808,17 +1971,12 @@ module Aws::DataSync
|
|
1808
1971
|
req.send_request(options)
|
1809
1972
|
end
|
1810
1973
|
|
1811
|
-
# Returns metadata about
|
1812
|
-
#
|
1813
|
-
# [Creating a location for object storage][1].
|
1814
|
-
#
|
1815
|
-
#
|
1816
|
-
#
|
1817
|
-
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-object-location.html
|
1974
|
+
# Returns metadata about your DataSync location for an object storage
|
1975
|
+
# system.
|
1818
1976
|
#
|
1819
1977
|
# @option params [required, String] :location_arn
|
1820
|
-
# The Amazon Resource Name (ARN) of the
|
1821
|
-
#
|
1978
|
+
# The Amazon Resource Name (ARN) of the object storage system location
|
1979
|
+
# that you want information about.
|
1822
1980
|
#
|
1823
1981
|
# @return [Types::DescribeLocationObjectStorageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1824
1982
|
#
|
@@ -1996,6 +2154,7 @@ module Aws::DataSync
|
|
1996
2154
|
# resp.options.log_level #=> String, one of "OFF", "BASIC", "TRANSFER"
|
1997
2155
|
# resp.options.transfer_mode #=> String, one of "CHANGED", "ALL"
|
1998
2156
|
# resp.options.security_descriptor_copy_flags #=> String, one of "NONE", "OWNER_DACL", "OWNER_DACL_SACL"
|
2157
|
+
# resp.options.object_tags #=> String, one of "PRESERVE", "NONE"
|
1999
2158
|
# resp.excludes #=> Array
|
2000
2159
|
# resp.excludes[0].filter_type #=> String, one of "SIMPLE_PATTERN"
|
2001
2160
|
# resp.excludes[0].value #=> String
|
@@ -2060,6 +2219,7 @@ module Aws::DataSync
|
|
2060
2219
|
# resp.options.log_level #=> String, one of "OFF", "BASIC", "TRANSFER"
|
2061
2220
|
# resp.options.transfer_mode #=> String, one of "CHANGED", "ALL"
|
2062
2221
|
# resp.options.security_descriptor_copy_flags #=> String, one of "NONE", "OWNER_DACL", "OWNER_DACL_SACL"
|
2222
|
+
# resp.options.object_tags #=> String, one of "PRESERVE", "NONE"
|
2063
2223
|
# resp.excludes #=> Array
|
2064
2224
|
# resp.excludes[0].filter_type #=> String, one of "SIMPLE_PATTERN"
|
2065
2225
|
# resp.excludes[0].value #=> String
|
@@ -2403,6 +2563,7 @@ module Aws::DataSync
|
|
2403
2563
|
# log_level: "OFF", # accepts OFF, BASIC, TRANSFER
|
2404
2564
|
# transfer_mode: "CHANGED", # accepts CHANGED, ALL
|
2405
2565
|
# security_descriptor_copy_flags: "NONE", # accepts NONE, OWNER_DACL, OWNER_DACL_SACL
|
2566
|
+
# object_tags: "PRESERVE", # accepts PRESERVE, NONE
|
2406
2567
|
# },
|
2407
2568
|
# includes: [
|
2408
2569
|
# {
|
@@ -2657,8 +2818,7 @@ module Aws::DataSync
|
|
2657
2818
|
# File System (NFS) location.
|
2658
2819
|
#
|
2659
2820
|
# @option params [Types::NfsMountOptions] :mount_options
|
2660
|
-
#
|
2661
|
-
# an NFS location.
|
2821
|
+
# Specifies how DataSync can access a location using the NFS protocol.
|
2662
2822
|
#
|
2663
2823
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2664
2824
|
#
|
@@ -2804,8 +2964,7 @@ module Aws::DataSync
|
|
2804
2964
|
# Block (SMB) location.
|
2805
2965
|
#
|
2806
2966
|
# @option params [Types::SmbMountOptions] :mount_options
|
2807
|
-
#
|
2808
|
-
# an SMB location.
|
2967
|
+
# Specifies how DataSync can access a location using the SMB protocol.
|
2809
2968
|
#
|
2810
2969
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2811
2970
|
#
|
@@ -2906,6 +3065,7 @@ module Aws::DataSync
|
|
2906
3065
|
# log_level: "OFF", # accepts OFF, BASIC, TRANSFER
|
2907
3066
|
# transfer_mode: "CHANGED", # accepts CHANGED, ALL
|
2908
3067
|
# security_descriptor_copy_flags: "NONE", # accepts NONE, OWNER_DACL, OWNER_DACL_SACL
|
3068
|
+
# object_tags: "PRESERVE", # accepts PRESERVE, NONE
|
2909
3069
|
# },
|
2910
3070
|
# excludes: [
|
2911
3071
|
# {
|
@@ -2991,6 +3151,7 @@ module Aws::DataSync
|
|
2991
3151
|
# log_level: "OFF", # accepts OFF, BASIC, TRANSFER
|
2992
3152
|
# transfer_mode: "CHANGED", # accepts CHANGED, ALL
|
2993
3153
|
# security_descriptor_copy_flags: "NONE", # accepts NONE, OWNER_DACL, OWNER_DACL_SACL
|
3154
|
+
# object_tags: "PRESERVE", # accepts PRESERVE, NONE
|
2994
3155
|
# },
|
2995
3156
|
# })
|
2996
3157
|
#
|
@@ -3016,7 +3177,7 @@ module Aws::DataSync
|
|
3016
3177
|
params: params,
|
3017
3178
|
config: config)
|
3018
3179
|
context[:gem_name] = 'aws-sdk-datasync'
|
3019
|
-
context[:gem_version] = '1.
|
3180
|
+
context[:gem_version] = '1.48.0'
|
3020
3181
|
Seahorse::Client::Request.new(handlers, context)
|
3021
3182
|
end
|
3022
3183
|
|