aws-sdk-datasync 1.105.0 → 1.106.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: 657e7dda5b3575aa5dd157aaa0f08a6c4a16618774065765a87ea9183e92b1eb
4
- data.tar.gz: 5a41b072a64098f1bbb73d2a661bb47a3c79d066a6d9beef6cbdabb2c3b2e054
3
+ metadata.gz: 1ec64e4c68f5d274715f7edc7468318126912ced1f4512468202e7caac4bc4b3
4
+ data.tar.gz: 2384f5c4e73f20e0bcc1d8841a0aa3799c488163029bc3916f02522eee279c1e
5
5
  SHA512:
6
- metadata.gz: b12b0f37034f32e917433bc9a3653e5629ae1e835697f612f9727a23db244acd6340d53bc82f6c81eb3c1095928af8cabf5741f293e899a460d8db80f7911693
7
- data.tar.gz: e54046e32e51e7cfb934a1ed2f31a349cd6a9f76de9a7f978ccf81b75ec0d74ec77317698fa2eb8f91527c26130b081890d0004e5f6818bb3c7437a3c2b1eabc
6
+ metadata.gz: ecf84e8a1e86ae2fff0cb3bc7ac52affc7aaed7a3f37b5db7967daaf0b5ef0dabb137039be872bb1f39248501cf4c654c38ccedf1349f57e02bc474c62fcffe3
7
+ data.tar.gz: '059c47e0508be38a8554311977eb91133d4f94bc4e92f9c607d89ed23fc15422b2657d1acaa33c6bea12c7aa679dabe3c214570fe639ae75d95c35b2437e2b8c'
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.106.0 (2025-07-16)
5
+ ------------------
6
+
7
+ * Feature - AWS DataSync now supports IPv6 address inputs and outputs in create, update, and describe operations for NFS, SMB, and Object Storage locations
8
+
4
9
  1.105.0 (2025-06-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.105.0
1
+ 1.106.0
@@ -1394,8 +1394,8 @@ module Aws::DataSync
1394
1394
  # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html#accessing-nfs
1395
1395
  #
1396
1396
  # @option params [required, String] :server_hostname
1397
- # Specifies the DNS name or IP version 4 address of the NFS file server
1398
- # that your DataSync agent connects to.
1397
+ # Specifies the DNS name or IP address (IPv4 or IPv6) of the NFS file
1398
+ # server that your DataSync agent connects to.
1399
1399
  #
1400
1400
  # @option params [required, Types::OnPremConfig] :on_prem_config
1401
1401
  # Specifies the Amazon Resource Name (ARN) of the DataSync agent that
@@ -1466,7 +1466,7 @@ module Aws::DataSync
1466
1466
  # [2]: https://docs.aws.amazon.com/datasync/latest/userguide/create-object-location.html#create-object-location-prerequisites
1467
1467
  #
1468
1468
  # @option params [required, String] :server_hostname
1469
- # Specifies the domain name or IP version 4 (IPv4) address of the object
1469
+ # Specifies the domain name or IP address (IPv4 or IPv6) of the object
1470
1470
  # storage server that your DataSync agent connects to.
1471
1471
  #
1472
1472
  # @option params [Integer] :server_port
@@ -1475,7 +1475,7 @@ module Aws::DataSync
1475
1475
  #
1476
1476
  # @option params [String] :server_protocol
1477
1477
  # Specifies the protocol that your object storage server uses to
1478
- # communicate.
1478
+ # communicate. If not specified, the default value is `HTTPS`.
1479
1479
  #
1480
1480
  # @option params [String] :subdirectory
1481
1481
  # Specifies the object prefix for your object storage server. If this is
@@ -1495,6 +1495,13 @@ module Aws::DataSync
1495
1495
  # Specifies the secret key (for example, a password) if credentials are
1496
1496
  # required to authenticate with the object storage server.
1497
1497
  #
1498
+ # <note markdown="1"> If you provide a secret using `SecretKey`, but do not provide secret
1499
+ # configuration details using `CmkSecretConfig` or `CustomSecretConfig`,
1500
+ # then DataSync stores the token using your Amazon Web Services
1501
+ # account's Secrets Manager secret.
1502
+ #
1503
+ # </note>
1504
+ #
1498
1505
  # @option params [Array<String>] :agent_arns
1499
1506
  # (Optional) Specifies the Amazon Resource Names (ARNs) of the DataSync
1500
1507
  # agents that can connect with your object storage system. If you are
@@ -1768,15 +1775,13 @@ module Aws::DataSync
1768
1775
  # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-smb-location.html#configuring-smb-permissions
1769
1776
  #
1770
1777
  # @option params [required, String] :server_hostname
1771
- # Specifies the domain name or IP address of the SMB file server that
1772
- # your DataSync agent connects to.
1773
- #
1774
- # Remember the following when configuring this parameter:
1778
+ # Specifies the domain name or IP address (IPv4 or IPv6) of the SMB file
1779
+ # server that your DataSync agent connects to.
1775
1780
  #
1776
- # * You can't specify an IP version 6 (IPv6) address.
1781
+ # <note markdown="1"> If you're using Kerberos authentication, you must specify a domain
1782
+ # name.
1777
1783
  #
1778
- # * If you're using Kerberos authentication, you must specify a domain
1779
- # name.
1784
+ # </note>
1780
1785
  #
1781
1786
  # @option params [String] :user
1782
1787
  # Specifies the user that can mount and access the files, folders, and
@@ -1832,16 +1837,16 @@ module Aws::DataSync
1832
1837
  # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-smb-location.html#configuring-smb-permissions
1833
1838
  #
1834
1839
  # @option params [Array<String>] :dns_ip_addresses
1835
- # Specifies the IPv4 addresses for the DNS servers that your SMB file
1836
- # server belongs to. This parameter applies only if `AuthenticationType`
1837
- # is set to `KERBEROS`.
1840
+ # Specifies the IPv4 or IPv6 addresses for the DNS servers that your SMB
1841
+ # file server belongs to. This parameter applies only if
1842
+ # `AuthenticationType` is set to `KERBEROS`.
1838
1843
  #
1839
1844
  # If you have multiple domains in your environment, configuring this
1840
1845
  # parameter makes sure that DataSync connects to the right SMB file
1841
1846
  # server.
1842
1847
  #
1843
1848
  # @option params [String] :kerberos_principal
1844
- # Specifies a Kerberos prinicpal, which is an identity in your Kerberos
1849
+ # Specifies a Kerberos principal, which is an identity in your Kerberos
1845
1850
  # realm that has permission to access the files, folders, and file
1846
1851
  # metadata in your SMB file server.
1847
1852
  #
@@ -4124,7 +4129,7 @@ module Aws::DataSync
4124
4129
  # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html#accessing-nfs
4125
4130
  #
4126
4131
  # @option params [String] :server_hostname
4127
- # Specifies the DNS name or IP version 4 (IPv4) address of the NFS file
4132
+ # Specifies the DNS name or IP address (IPv4 or IPv6) of the NFS file
4128
4133
  # server that your DataSync agent connects to.
4129
4134
  #
4130
4135
  # @option params [Types::OnPremConfig] :on_prem_config
@@ -4188,7 +4193,7 @@ module Aws::DataSync
4188
4193
  # prefix.
4189
4194
  #
4190
4195
  # @option params [String] :server_hostname
4191
- # Specifies the domain name or IP version 4 (IPv4) address of the object
4196
+ # Specifies the domain name or IP address (IPv4 or IPv6) of the object
4192
4197
  # storage server that your DataSync agent connects to.
4193
4198
  #
4194
4199
  # @option params [String] :access_key
@@ -4199,6 +4204,13 @@ module Aws::DataSync
4199
4204
  # Specifies the secret key (for example, a password) if credentials are
4200
4205
  # required to authenticate with the object storage server.
4201
4206
  #
4207
+ # <note markdown="1"> If you provide a secret using `SecretKey`, but do not provide secret
4208
+ # configuration details using `CmkSecretConfig` or `CustomSecretConfig`,
4209
+ # then DataSync stores the token using your Amazon Web Services
4210
+ # account's Secrets Manager secret.
4211
+ #
4212
+ # </note>
4213
+ #
4202
4214
  # @option params [Array<String>] :agent_arns
4203
4215
  # (Optional) Specifies the Amazon Resource Names (ARNs) of the DataSync
4204
4216
  # agents that can connect with your object storage system. If you are
@@ -4395,15 +4407,13 @@ module Aws::DataSync
4395
4407
  # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-smb-location.html#configuring-smb-permissions
4396
4408
  #
4397
4409
  # @option params [String] :server_hostname
4398
- # Specifies the domain name or IP address of the SMB file server that
4399
- # your DataSync agent connects to.
4400
- #
4401
- # Remember the following when configuring this parameter:
4410
+ # Specifies the domain name or IP address (IPv4 or IPv6) of the SMB file
4411
+ # server that your DataSync agent connects to.
4402
4412
  #
4403
- # * You can't specify an IP version 6 (IPv6) address.
4413
+ # <note markdown="1"> If you're using Kerberos authentication, you must specify a domain
4414
+ # name.
4404
4415
  #
4405
- # * If you're using Kerberos authentication, you must specify a domain
4406
- # name.
4416
+ # </note>
4407
4417
  #
4408
4418
  # @option params [String] :user
4409
4419
  # Specifies the user name that can mount your SMB file server and has
@@ -4454,9 +4464,9 @@ module Aws::DataSync
4454
4464
  # [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-smb-location.html#configuring-smb-permissions
4455
4465
  #
4456
4466
  # @option params [Array<String>] :dns_ip_addresses
4457
- # Specifies the IPv4 addresses for the DNS servers that your SMB file
4458
- # server belongs to. This parameter applies only if `AuthenticationType`
4459
- # is set to `KERBEROS`.
4467
+ # Specifies the IP addresses (IPv4 or IPv6) for the DNS servers that
4468
+ # your SMB file server belongs to. This parameter applies only if
4469
+ # `AuthenticationType` is set to `KERBEROS`.
4460
4470
  #
4461
4471
  # If you have multiple domains in your environment, configuring this
4462
4472
  # parameter makes sure that DataSync connects to the right SMB file
@@ -4795,7 +4805,7 @@ module Aws::DataSync
4795
4805
  tracer: tracer
4796
4806
  )
4797
4807
  context[:gem_name] = 'aws-sdk-datasync'
4798
- context[:gem_version] = '1.105.0'
4808
+ context[:gem_version] = '1.106.0'
4799
4809
  Seahorse::Client::Request.new(handlers, context)
4800
4810
  end
4801
4811
 
@@ -887,7 +887,7 @@ module Aws::DataSync
887
887
  # @return [String]
888
888
  #
889
889
  # @!attribute [rw] server_hostname
890
- # Specifies the DNS name or IP version 4 address of the NFS file
890
+ # Specifies the DNS name or IP address (IPv4 or IPv6) of the NFS file
891
891
  # server that your DataSync agent connects to.
892
892
  # @return [String]
893
893
  #
@@ -944,8 +944,8 @@ module Aws::DataSync
944
944
  # CreateLocationObjectStorageRequest
945
945
  #
946
946
  # @!attribute [rw] server_hostname
947
- # Specifies the domain name or IP version 4 (IPv4) address of the
948
- # object storage server that your DataSync agent connects to.
947
+ # Specifies the domain name or IP address (IPv4 or IPv6) of the object
948
+ # storage server that your DataSync agent connects to.
949
949
  # @return [String]
950
950
  #
951
951
  # @!attribute [rw] server_port
@@ -955,7 +955,7 @@ module Aws::DataSync
955
955
  #
956
956
  # @!attribute [rw] server_protocol
957
957
  # Specifies the protocol that your object storage server uses to
958
- # communicate.
958
+ # communicate. If not specified, the default value is `HTTPS`.
959
959
  # @return [String]
960
960
  #
961
961
  # @!attribute [rw] subdirectory
@@ -978,6 +978,13 @@ module Aws::DataSync
978
978
  # @!attribute [rw] secret_key
979
979
  # Specifies the secret key (for example, a password) if credentials
980
980
  # are required to authenticate with the object storage server.
981
+ #
982
+ # <note markdown="1"> If you provide a secret using `SecretKey`, but do not provide secret
983
+ # configuration details using `CmkSecretConfig` or
984
+ # `CustomSecretConfig`, then DataSync stores the token using your
985
+ # Amazon Web Services account's Secrets Manager secret.
986
+ #
987
+ # </note>
981
988
  # @return [String]
982
989
  #
983
990
  # @!attribute [rw] agent_arns
@@ -1226,15 +1233,13 @@ module Aws::DataSync
1226
1233
  # @return [String]
1227
1234
  #
1228
1235
  # @!attribute [rw] server_hostname
1229
- # Specifies the domain name or IP address of the SMB file server that
1230
- # your DataSync agent connects to.
1231
- #
1232
- # Remember the following when configuring this parameter:
1236
+ # Specifies the domain name or IP address (IPv4 or IPv6) of the SMB
1237
+ # file server that your DataSync agent connects to.
1233
1238
  #
1234
- # * You can't specify an IP version 6 (IPv6) address.
1239
+ # <note markdown="1"> If you're using Kerberos authentication, you must specify a domain
1240
+ # name.
1235
1241
  #
1236
- # * If you're using Kerberos authentication, you must specify a
1237
- # domain name.
1242
+ # </note>
1238
1243
  # @return [String]
1239
1244
  #
1240
1245
  # @!attribute [rw] user
@@ -1299,8 +1304,8 @@ module Aws::DataSync
1299
1304
  # @return [String]
1300
1305
  #
1301
1306
  # @!attribute [rw] dns_ip_addresses
1302
- # Specifies the IPv4 addresses for the DNS servers that your SMB file
1303
- # server belongs to. This parameter applies only if
1307
+ # Specifies the IPv4 or IPv6 addresses for the DNS servers that your
1308
+ # SMB file server belongs to. This parameter applies only if
1304
1309
  # `AuthenticationType` is set to `KERBEROS`.
1305
1310
  #
1306
1311
  # If you have multiple domains in your environment, configuring this
@@ -1309,7 +1314,7 @@ module Aws::DataSync
1309
1314
  # @return [Array<String>]
1310
1315
  #
1311
1316
  # @!attribute [rw] kerberos_principal
1312
- # Specifies a Kerberos prinicpal, which is an identity in your
1317
+ # Specifies a Kerberos principal, which is an identity in your
1313
1318
  # Kerberos realm that has permission to access the files, folders, and
1314
1319
  # file metadata in your SMB file server.
1315
1320
  #
@@ -2464,9 +2469,9 @@ module Aws::DataSync
2464
2469
  # @return [Time]
2465
2470
  #
2466
2471
  # @!attribute [rw] dns_ip_addresses
2467
- # The IPv4 addresses for the DNS servers that your SMB file server
2468
- # belongs to. This element applies only if `AuthenticationType` is set
2469
- # to `KERBEROS`.
2472
+ # The IPv4 or IPv6 addresses for the DNS servers that your SMB file
2473
+ # server belongs to. This element applies only if `AuthenticationType`
2474
+ # is set to `KERBEROS`.
2470
2475
  # @return [Array<String>]
2471
2476
  #
2472
2477
  # @!attribute [rw] kerberos_principal
@@ -3626,8 +3631,8 @@ module Aws::DataSync
3626
3631
  # GLOBAL\_ID is the globally unique identifier of the resource that
3627
3632
  # backs the location. An example for EFS is `us-east-2.fs-abcd1234`.
3628
3633
  # An example for Amazon S3 is the bucket name, such as `myBucket`. An
3629
- # example for NFS is a valid IPv4 address or a hostname that is
3630
- # compliant with Domain Name Service (DNS).
3634
+ # example for NFS is a valid IPv4 or IPv6 address or a hostname that
3635
+ # is compliant with DNS.
3631
3636
  #
3632
3637
  # SUBDIR is a valid file system path, delimited by forward slashes as
3633
3638
  # is the *nix convention. For NFS and Amazon EFS, it's the export
@@ -5662,8 +5667,8 @@ module Aws::DataSync
5662
5667
  # @return [String]
5663
5668
  #
5664
5669
  # @!attribute [rw] server_hostname
5665
- # Specifies the DNS name or IP version 4 (IPv4) address of the NFS
5666
- # file server that your DataSync agent connects to.
5670
+ # Specifies the DNS name or IP address (IPv4 or IPv6) of the NFS file
5671
+ # server that your DataSync agent connects to.
5667
5672
  # @return [String]
5668
5673
  #
5669
5674
  # @!attribute [rw] on_prem_config
@@ -5714,8 +5719,8 @@ module Aws::DataSync
5714
5719
  # @return [String]
5715
5720
  #
5716
5721
  # @!attribute [rw] server_hostname
5717
- # Specifies the domain name or IP version 4 (IPv4) address of the
5718
- # object storage server that your DataSync agent connects to.
5722
+ # Specifies the domain name or IP address (IPv4 or IPv6) of the object
5723
+ # storage server that your DataSync agent connects to.
5719
5724
  # @return [String]
5720
5725
  #
5721
5726
  # @!attribute [rw] access_key
@@ -5726,6 +5731,13 @@ module Aws::DataSync
5726
5731
  # @!attribute [rw] secret_key
5727
5732
  # Specifies the secret key (for example, a password) if credentials
5728
5733
  # are required to authenticate with the object storage server.
5734
+ #
5735
+ # <note markdown="1"> If you provide a secret using `SecretKey`, but do not provide secret
5736
+ # configuration details using `CmkSecretConfig` or
5737
+ # `CustomSecretConfig`, then DataSync stores the token using your
5738
+ # Amazon Web Services account's Secrets Manager secret.
5739
+ #
5740
+ # </note>
5729
5741
  # @return [String]
5730
5742
  #
5731
5743
  # @!attribute [rw] agent_arns
@@ -5894,15 +5906,13 @@ module Aws::DataSync
5894
5906
  # @return [String]
5895
5907
  #
5896
5908
  # @!attribute [rw] server_hostname
5897
- # Specifies the domain name or IP address of the SMB file server that
5898
- # your DataSync agent connects to.
5899
- #
5900
- # Remember the following when configuring this parameter:
5909
+ # Specifies the domain name or IP address (IPv4 or IPv6) of the SMB
5910
+ # file server that your DataSync agent connects to.
5901
5911
  #
5902
- # * You can't specify an IP version 6 (IPv6) address.
5912
+ # <note markdown="1"> If you're using Kerberos authentication, you must specify a domain
5913
+ # name.
5903
5914
  #
5904
- # * If you're using Kerberos authentication, you must specify a
5905
- # domain name.
5915
+ # </note>
5906
5916
  # @return [String]
5907
5917
  #
5908
5918
  # @!attribute [rw] user
@@ -5962,8 +5972,8 @@ module Aws::DataSync
5962
5972
  # @return [String]
5963
5973
  #
5964
5974
  # @!attribute [rw] dns_ip_addresses
5965
- # Specifies the IPv4 addresses for the DNS servers that your SMB file
5966
- # server belongs to. This parameter applies only if
5975
+ # Specifies the IP addresses (IPv4 or IPv6) for the DNS servers that
5976
+ # your SMB file server belongs to. This parameter applies only if
5967
5977
  # `AuthenticationType` is set to `KERBEROS`.
5968
5978
  #
5969
5979
  # If you have multiple domains in your environment, configuring this
@@ -54,7 +54,7 @@ module Aws::DataSync
54
54
  autoload :EndpointProvider, 'aws-sdk-datasync/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-datasync/endpoints'
56
56
 
57
- GEM_VERSION = '1.105.0'
57
+ GEM_VERSION = '1.106.0'
58
58
 
59
59
  end
60
60
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-datasync
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.105.0
4
+ version: 1.106.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services