aws-sdk-datasync 1.47.0 → 1.48.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f4b4666d779f79d3e61f739a78e58ce6c2f99dd4896bca06a5c8974f27687418
4
- data.tar.gz: 9bef7aa7fb8dfbc06c9ed60e1866017981cfe83749133ce08f2ce3ba393d8d9f
3
+ metadata.gz: bd6bbd2b4bc78fc6d4b88d163675f6e951060df52a590a11f3078f8405834930
4
+ data.tar.gz: 5c416587f63dc2314e812f6620a8f5e61b96ec0f066bf2941d0b944432be91d9
5
5
  SHA512:
6
- metadata.gz: 14263ad0d6e96e6ff3cc74963fdb1716d5956bf6c0fd85a93b57e02da0da9cd3cd3b76e87f0ed91850100ee7bb1532ec54c09e4180f8ade5254c10b0c8e3a0dc
7
- data.tar.gz: 2cafbcf534a3933d757cebb5d39b78a5679f91df0f7baac2aec6e9c88e744f6452268b77835cdfa655de193c3ab7f7afe5e6a212c8b7116e7e4cfb9201444eed
6
+ metadata.gz: 1d161dfc927a944b5264cb5bc5c2d0bd92417356f7083dfde598cb9a49241631d69e0f6e8d04da4b40b9f69b1fd240792e505fca023a0609f93382fc866eeb39
7
+ data.tar.gz: 64c165aa7e495ec1b8892a6302116674d279658b358109dc5a16122b10eb5e45a7fd0dc182d0d2c1358d628d3ab2bec729baca75c5b7a5802b734443bf3e6e99
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.47.0 (2022-05-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.47.0
1
+ 1.48.0
@@ -549,8 +549,9 @@ module Aws::DataSync
549
549
  # assumes when mounting the Amazon EFS file system.
550
550
  #
551
551
  # @option params [String] :in_transit_encryption
552
- # Specifies whether you want DataSync to use TLS encryption when
553
- # transferring data to or from your Amazon EFS file system.
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.
554
555
  #
555
556
  # If you specify an access point using `AccessPointArn` or an IAM role
556
557
  # using `FileSystemAccessRoleArn`, you must set this parameter to
@@ -644,6 +645,100 @@ module Aws::DataSync
644
645
  req.send_request(options)
645
646
  end
646
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
+
647
742
  # Creates an endpoint for an Amazon FSx for OpenZFS file system.
648
743
  #
649
744
  # @option params [required, String] :fsx_filesystem_arn
@@ -681,6 +776,14 @@ module Aws::DataSync
681
776
  # version: "AUTOMATIC", # accepts AUTOMATIC, NFS3, NFS4_0, NFS4_1
682
777
  # },
683
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
+ # },
684
787
  # },
685
788
  # security_group_arns: ["Ec2SecurityGroupArn"], # required
686
789
  # subdirectory: "FsxOpenZfsSubdirectory",
@@ -1020,58 +1123,53 @@ module Aws::DataSync
1020
1123
  req.send_request(options)
1021
1124
  end
1022
1125
 
1023
- # Creates an endpoint for a self-managed object storage bucket. For more
1024
- # information about self-managed object storage locations, see [Creating
1025
- # a location for object storage][1].
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].
1026
1129
  #
1027
1130
  #
1028
1131
  #
1029
1132
  # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-object-location.html
1030
1133
  #
1031
1134
  # @option params [required, String] :server_hostname
1032
- # The name of the self-managed object storage server. This value is the
1033
- # IP address or Domain Name Service (DNS) name of the object storage
1034
- # 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
1035
1137
  # in a network.
1036
1138
  #
1037
1139
  # @option params [Integer] :server_port
1038
- # The port that your self-managed object storage server accepts inbound
1039
- # network traffic on. The server port is set by default to TCP 80 (HTTP)
1040
- # or TCP 443 (HTTPS). You can specify a custom port if your self-managed
1041
- # object storage server requires one.
1140
+ # Specifies the port that your object storage server accepts inbound
1141
+ # network traffic on (for example, port 443).
1042
1142
  #
1043
1143
  # @option params [String] :server_protocol
1044
- # The protocol that the object storage server uses to communicate. Valid
1045
- # values are HTTP or HTTPS.
1144
+ # Specifies the protocol that your object storage server uses to
1145
+ # communicate.
1046
1146
  #
1047
1147
  # @option params [String] :subdirectory
1048
- # The subdirectory in the self-managed object storage server that is
1049
- # used to read data from.
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.
1050
1152
  #
1051
1153
  # @option params [required, String] :bucket_name
1052
- # The bucket on the self-managed object storage server that is used to
1053
- # read data from.
1154
+ # Specifies the name of the object storage bucket involved in the
1155
+ # transfer.
1054
1156
  #
1055
1157
  # @option params [String] :access_key
1056
- # Optional. The access key is used if credentials are required to access
1057
- # the self-managed object storage server. If your object storage
1058
- # requires a user name and password to authenticate, use `AccessKey` and
1059
- # `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.
1060
1160
  #
1061
1161
  # @option params [String] :secret_key
1062
- # Optional. The secret key is used if credentials are required to access
1063
- # the self-managed object storage server. If your object storage
1064
- # requires a user name and password to authenticate, use `AccessKey` and
1065
- # `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.
1066
1164
  #
1067
1165
  # @option params [required, Array<String>] :agent_arns
1068
- # The Amazon Resource Name (ARN) of the agents associated with the
1069
- # self-managed object storage server location.
1166
+ # Specifies the Amazon Resource Names (ARNs) of the DataSync agents that
1167
+ # can securely connect with your location.
1070
1168
  #
1071
1169
  # @option params [Array<Types::TagListEntry>] :tags
1072
- # The key-value pair that represents the tag that you want to add to the
1073
- # location. The value can be an empty string. We recommend using tags to
1074
- # name your resources.
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.
1075
1173
  #
1076
1174
  # @return [Types::CreateLocationObjectStorageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1077
1175
  #
@@ -1242,8 +1340,8 @@ module Aws::DataSync
1242
1340
  # and folders in the SMB share.
1243
1341
  #
1244
1342
  # For information about choosing a user name that ensures sufficient
1245
- # permissions to files, folders, and metadata, see
1246
- # [user](create-smb-location.html#SMBuser).
1343
+ # permissions to files, folders, and metadata, see the [User
1344
+ # setting](create-smb-location.html#SMBuser) for SMB locations.
1247
1345
  #
1248
1346
  # @option params [String] :domain
1249
1347
  # The name of the Windows domain that the SMB server belongs to.
@@ -1649,6 +1747,53 @@ module Aws::DataSync
1649
1747
  req.send_request(options)
1650
1748
  end
1651
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&lt;String&gt;
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
+
1652
1797
  # Returns metadata about an Amazon FSx for OpenZFS location, such as
1653
1798
  # information about its path.
1654
1799
  #
@@ -1677,6 +1822,10 @@ module Aws::DataSync
1677
1822
  # resp.security_group_arns #=> Array
1678
1823
  # resp.security_group_arns[0] #=> String
1679
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
1680
1829
  # resp.creation_time #=> Time
1681
1830
  #
1682
1831
  # @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeLocationFsxOpenZfs AWS API Documentation
@@ -1822,17 +1971,12 @@ module Aws::DataSync
1822
1971
  req.send_request(options)
1823
1972
  end
1824
1973
 
1825
- # Returns metadata about a self-managed object storage server location.
1826
- # For more information about self-managed object storage locations, see
1827
- # [Creating a location for object storage][1].
1828
- #
1829
- #
1830
- #
1831
- # [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.
1832
1976
  #
1833
1977
  # @option params [required, String] :location_arn
1834
- # The Amazon Resource Name (ARN) of the self-managed object storage
1835
- # server location that was described.
1978
+ # The Amazon Resource Name (ARN) of the object storage system location
1979
+ # that you want information about.
1836
1980
  #
1837
1981
  # @return [Types::DescribeLocationObjectStorageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1838
1982
  #
@@ -2674,8 +2818,7 @@ module Aws::DataSync
2674
2818
  # File System (NFS) location.
2675
2819
  #
2676
2820
  # @option params [Types::NfsMountOptions] :mount_options
2677
- # Represents the mount options that are available for DataSync to access
2678
- # an NFS location.
2821
+ # Specifies how DataSync can access a location using the NFS protocol.
2679
2822
  #
2680
2823
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2681
2824
  #
@@ -2821,8 +2964,7 @@ module Aws::DataSync
2821
2964
  # Block (SMB) location.
2822
2965
  #
2823
2966
  # @option params [Types::SmbMountOptions] :mount_options
2824
- # Represents the mount options that are available for DataSync to access
2825
- # an SMB location.
2967
+ # Specifies how DataSync can access a location using the SMB protocol.
2826
2968
  #
2827
2969
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2828
2970
  #
@@ -3035,7 +3177,7 @@ module Aws::DataSync
3035
3177
  params: params,
3036
3178
  config: config)
3037
3179
  context[:gem_name] = 'aws-sdk-datasync'
3038
- context[:gem_version] = '1.47.0'
3180
+ context[:gem_version] = '1.48.0'
3039
3181
  Seahorse::Client::Request.new(handlers, context)
3040
3182
  end
3041
3183
 
@@ -29,6 +29,8 @@ module Aws::DataSync
29
29
  CreateLocationEfsResponse = Shapes::StructureShape.new(name: 'CreateLocationEfsResponse')
30
30
  CreateLocationFsxLustreRequest = Shapes::StructureShape.new(name: 'CreateLocationFsxLustreRequest')
31
31
  CreateLocationFsxLustreResponse = Shapes::StructureShape.new(name: 'CreateLocationFsxLustreResponse')
32
+ CreateLocationFsxOntapRequest = Shapes::StructureShape.new(name: 'CreateLocationFsxOntapRequest')
33
+ CreateLocationFsxOntapResponse = Shapes::StructureShape.new(name: 'CreateLocationFsxOntapResponse')
32
34
  CreateLocationFsxOpenZfsRequest = Shapes::StructureShape.new(name: 'CreateLocationFsxOpenZfsRequest')
33
35
  CreateLocationFsxOpenZfsResponse = Shapes::StructureShape.new(name: 'CreateLocationFsxOpenZfsResponse')
34
36
  CreateLocationFsxWindowsRequest = Shapes::StructureShape.new(name: 'CreateLocationFsxWindowsRequest')
@@ -57,6 +59,8 @@ module Aws::DataSync
57
59
  DescribeLocationEfsResponse = Shapes::StructureShape.new(name: 'DescribeLocationEfsResponse')
58
60
  DescribeLocationFsxLustreRequest = Shapes::StructureShape.new(name: 'DescribeLocationFsxLustreRequest')
59
61
  DescribeLocationFsxLustreResponse = Shapes::StructureShape.new(name: 'DescribeLocationFsxLustreResponse')
62
+ DescribeLocationFsxOntapRequest = Shapes::StructureShape.new(name: 'DescribeLocationFsxOntapRequest')
63
+ DescribeLocationFsxOntapResponse = Shapes::StructureShape.new(name: 'DescribeLocationFsxOntapResponse')
60
64
  DescribeLocationFsxOpenZfsRequest = Shapes::StructureShape.new(name: 'DescribeLocationFsxOpenZfsRequest')
61
65
  DescribeLocationFsxOpenZfsResponse = Shapes::StructureShape.new(name: 'DescribeLocationFsxOpenZfsResponse')
62
66
  DescribeLocationFsxWindowsRequest = Shapes::StructureShape.new(name: 'DescribeLocationFsxWindowsRequest')
@@ -95,9 +99,11 @@ module Aws::DataSync
95
99
  FilterValues = Shapes::ListShape.new(name: 'FilterValues')
96
100
  FsxFilesystemArn = Shapes::StringShape.new(name: 'FsxFilesystemArn')
97
101
  FsxLustreSubdirectory = Shapes::StringShape.new(name: 'FsxLustreSubdirectory')
102
+ FsxOntapSubdirectory = Shapes::StringShape.new(name: 'FsxOntapSubdirectory')
98
103
  FsxOpenZfsSubdirectory = Shapes::StringShape.new(name: 'FsxOpenZfsSubdirectory')
99
104
  FsxProtocol = Shapes::StructureShape.new(name: 'FsxProtocol')
100
105
  FsxProtocolNfs = Shapes::StructureShape.new(name: 'FsxProtocolNfs')
106
+ FsxProtocolSmb = Shapes::StructureShape.new(name: 'FsxProtocolSmb')
101
107
  FsxWindowsSubdirectory = Shapes::StringShape.new(name: 'FsxWindowsSubdirectory')
102
108
  Gid = Shapes::StringShape.new(name: 'Gid')
103
109
  HdfsAuthenticationType = Shapes::StringShape.new(name: 'HdfsAuthenticationType')
@@ -180,6 +186,7 @@ module Aws::DataSync
180
186
  SourceNetworkInterfaceArns = Shapes::ListShape.new(name: 'SourceNetworkInterfaceArns')
181
187
  StartTaskExecutionRequest = Shapes::StructureShape.new(name: 'StartTaskExecutionRequest')
182
188
  StartTaskExecutionResponse = Shapes::StructureShape.new(name: 'StartTaskExecutionResponse')
189
+ StorageVirtualMachineArn = Shapes::StringShape.new(name: 'StorageVirtualMachineArn')
183
190
  TagKey = Shapes::StringShape.new(name: 'TagKey')
184
191
  TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
185
192
  TagListEntry = Shapes::StructureShape.new(name: 'TagListEntry')
@@ -271,6 +278,16 @@ module Aws::DataSync
271
278
  CreateLocationFsxLustreResponse.add_member(:location_arn, Shapes::ShapeRef.new(shape: LocationArn, location_name: "LocationArn"))
272
279
  CreateLocationFsxLustreResponse.struct_class = Types::CreateLocationFsxLustreResponse
273
280
 
281
+ CreateLocationFsxOntapRequest.add_member(:protocol, Shapes::ShapeRef.new(shape: FsxProtocol, required: true, location_name: "Protocol"))
282
+ CreateLocationFsxOntapRequest.add_member(:security_group_arns, Shapes::ShapeRef.new(shape: Ec2SecurityGroupArnList, required: true, location_name: "SecurityGroupArns"))
283
+ CreateLocationFsxOntapRequest.add_member(:storage_virtual_machine_arn, Shapes::ShapeRef.new(shape: StorageVirtualMachineArn, required: true, location_name: "StorageVirtualMachineArn"))
284
+ CreateLocationFsxOntapRequest.add_member(:subdirectory, Shapes::ShapeRef.new(shape: FsxOntapSubdirectory, location_name: "Subdirectory"))
285
+ CreateLocationFsxOntapRequest.add_member(:tags, Shapes::ShapeRef.new(shape: InputTagList, location_name: "Tags"))
286
+ CreateLocationFsxOntapRequest.struct_class = Types::CreateLocationFsxOntapRequest
287
+
288
+ CreateLocationFsxOntapResponse.add_member(:location_arn, Shapes::ShapeRef.new(shape: LocationArn, location_name: "LocationArn"))
289
+ CreateLocationFsxOntapResponse.struct_class = Types::CreateLocationFsxOntapResponse
290
+
274
291
  CreateLocationFsxOpenZfsRequest.add_member(:fsx_filesystem_arn, Shapes::ShapeRef.new(shape: FsxFilesystemArn, required: true, location_name: "FsxFilesystemArn"))
275
292
  CreateLocationFsxOpenZfsRequest.add_member(:protocol, Shapes::ShapeRef.new(shape: FsxProtocol, required: true, location_name: "Protocol"))
276
293
  CreateLocationFsxOpenZfsRequest.add_member(:security_group_arns, Shapes::ShapeRef.new(shape: Ec2SecurityGroupArnList, required: true, location_name: "SecurityGroupArns"))
@@ -421,6 +438,18 @@ module Aws::DataSync
421
438
  DescribeLocationFsxLustreResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: Time, location_name: "CreationTime"))
422
439
  DescribeLocationFsxLustreResponse.struct_class = Types::DescribeLocationFsxLustreResponse
423
440
 
441
+ DescribeLocationFsxOntapRequest.add_member(:location_arn, Shapes::ShapeRef.new(shape: LocationArn, required: true, location_name: "LocationArn"))
442
+ DescribeLocationFsxOntapRequest.struct_class = Types::DescribeLocationFsxOntapRequest
443
+
444
+ DescribeLocationFsxOntapResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: Time, location_name: "CreationTime"))
445
+ DescribeLocationFsxOntapResponse.add_member(:location_arn, Shapes::ShapeRef.new(shape: LocationArn, location_name: "LocationArn"))
446
+ DescribeLocationFsxOntapResponse.add_member(:location_uri, Shapes::ShapeRef.new(shape: LocationUri, location_name: "LocationUri"))
447
+ DescribeLocationFsxOntapResponse.add_member(:protocol, Shapes::ShapeRef.new(shape: FsxProtocol, location_name: "Protocol"))
448
+ DescribeLocationFsxOntapResponse.add_member(:security_group_arns, Shapes::ShapeRef.new(shape: Ec2SecurityGroupArnList, location_name: "SecurityGroupArns"))
449
+ DescribeLocationFsxOntapResponse.add_member(:storage_virtual_machine_arn, Shapes::ShapeRef.new(shape: StorageVirtualMachineArn, location_name: "StorageVirtualMachineArn"))
450
+ DescribeLocationFsxOntapResponse.add_member(:fsx_filesystem_arn, Shapes::ShapeRef.new(shape: FsxFilesystemArn, location_name: "FsxFilesystemArn"))
451
+ DescribeLocationFsxOntapResponse.struct_class = Types::DescribeLocationFsxOntapResponse
452
+
424
453
  DescribeLocationFsxOpenZfsRequest.add_member(:location_arn, Shapes::ShapeRef.new(shape: LocationArn, required: true, location_name: "LocationArn"))
425
454
  DescribeLocationFsxOpenZfsRequest.struct_class = Types::DescribeLocationFsxOpenZfsRequest
426
455
 
@@ -559,11 +588,18 @@ module Aws::DataSync
559
588
  FilterValues.member = Shapes::ShapeRef.new(shape: FilterAttributeValue)
560
589
 
561
590
  FsxProtocol.add_member(:nfs, Shapes::ShapeRef.new(shape: FsxProtocolNfs, location_name: "NFS"))
591
+ FsxProtocol.add_member(:smb, Shapes::ShapeRef.new(shape: FsxProtocolSmb, location_name: "SMB"))
562
592
  FsxProtocol.struct_class = Types::FsxProtocol
563
593
 
564
594
  FsxProtocolNfs.add_member(:mount_options, Shapes::ShapeRef.new(shape: NfsMountOptions, location_name: "MountOptions"))
565
595
  FsxProtocolNfs.struct_class = Types::FsxProtocolNfs
566
596
 
597
+ FsxProtocolSmb.add_member(:domain, Shapes::ShapeRef.new(shape: SmbDomain, location_name: "Domain"))
598
+ FsxProtocolSmb.add_member(:mount_options, Shapes::ShapeRef.new(shape: SmbMountOptions, location_name: "MountOptions"))
599
+ FsxProtocolSmb.add_member(:password, Shapes::ShapeRef.new(shape: SmbPassword, required: true, location_name: "Password"))
600
+ FsxProtocolSmb.add_member(:user, Shapes::ShapeRef.new(shape: SmbUser, required: true, location_name: "User"))
601
+ FsxProtocolSmb.struct_class = Types::FsxProtocolSmb
602
+
567
603
  HdfsNameNode.add_member(:hostname, Shapes::ShapeRef.new(shape: HdfsServerHostname, required: true, location_name: "Hostname"))
568
604
  HdfsNameNode.add_member(:port, Shapes::ShapeRef.new(shape: HdfsServerPort, required: true, location_name: "Port"))
569
605
  HdfsNameNode.struct_class = Types::HdfsNameNode
@@ -876,6 +912,16 @@ module Aws::DataSync
876
912
  o.errors << Shapes::ShapeRef.new(shape: InternalException)
877
913
  end)
878
914
 
915
+ api.add_operation(:create_location_fsx_ontap, Seahorse::Model::Operation.new.tap do |o|
916
+ o.name = "CreateLocationFsxOntap"
917
+ o.http_method = "POST"
918
+ o.http_request_uri = "/"
919
+ o.input = Shapes::ShapeRef.new(shape: CreateLocationFsxOntapRequest)
920
+ o.output = Shapes::ShapeRef.new(shape: CreateLocationFsxOntapResponse)
921
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
922
+ o.errors << Shapes::ShapeRef.new(shape: InternalException)
923
+ end)
924
+
879
925
  api.add_operation(:create_location_fsx_open_zfs, Seahorse::Model::Operation.new.tap do |o|
880
926
  o.name = "CreateLocationFsxOpenZfs"
881
927
  o.http_method = "POST"
@@ -1016,6 +1062,16 @@ module Aws::DataSync
1016
1062
  o.errors << Shapes::ShapeRef.new(shape: InternalException)
1017
1063
  end)
1018
1064
 
1065
+ api.add_operation(:describe_location_fsx_ontap, Seahorse::Model::Operation.new.tap do |o|
1066
+ o.name = "DescribeLocationFsxOntap"
1067
+ o.http_method = "POST"
1068
+ o.http_request_uri = "/"
1069
+ o.input = Shapes::ShapeRef.new(shape: DescribeLocationFsxOntapRequest)
1070
+ o.output = Shapes::ShapeRef.new(shape: DescribeLocationFsxOntapResponse)
1071
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
1072
+ o.errors << Shapes::ShapeRef.new(shape: InternalException)
1073
+ end)
1074
+
1019
1075
  api.add_operation(:describe_location_fsx_open_zfs, Seahorse::Model::Operation.new.tap do |o|
1020
1076
  o.name = "DescribeLocationFsxOpenZfs"
1021
1077
  o.http_method = "POST"