aws-sdk-datasync 1.105.0 → 1.107.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datasync/client.rb +56 -36
- data/lib/aws-sdk-datasync/types.rb +42 -32
- data/lib/aws-sdk-datasync.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/resource.rbs +1 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9a9639c61c74a436d20c9482c4de63ffd1d6f06d7b21b3328cdefde002450c99
|
4
|
+
data.tar.gz: 2b8fc6aa9752e9c07120dc096443ed428eebd76da9f9366a1dfe1fcd73c37c61
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2690e798a81d3e874de2a94af90d45f6be1009d330d8e75e2d78f2a8d33c616abd0169cce159cbbfac90de26cad0abe85164ffee3e489942b215df2bdee6217d
|
7
|
+
data.tar.gz: 2ff45d38f8756e671c9158618c38c0d9cc51de15161f3f26531ca4b2b99599ab4183eed39657989d8968622df474bb03b15f3ed17a21c6e71ab331626a929e2d
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.107.0 (2025-07-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.106.0 (2025-07-16)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - AWS DataSync now supports IPv6 address inputs and outputs in create, update, and describe operations for NFS, SMB, and Object Storage locations
|
13
|
+
|
4
14
|
1.105.0 (2025-06-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.107.0
|
@@ -95,7 +95,7 @@ module Aws::DataSync
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials. This can be an instance of any one of the
|
98
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
99
99
|
# following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -128,18 +128,23 @@ module Aws::DataSync
|
|
128
128
|
# locations will be searched for credentials:
|
129
129
|
#
|
130
130
|
# * `Aws.config[:credentials]`
|
131
|
+
#
|
131
132
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
132
133
|
# `:account_id` options.
|
133
|
-
#
|
134
|
-
#
|
134
|
+
#
|
135
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
136
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
137
|
+
#
|
135
138
|
# * `~/.aws/credentials`
|
139
|
+
#
|
136
140
|
# * `~/.aws/config`
|
141
|
+
#
|
137
142
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
138
143
|
# are very aggressive. Construct and pass an instance of
|
139
144
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
140
145
|
# enable retries and extended timeouts. Instance profile credential
|
141
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
142
|
-
# to true
|
146
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
+
# to `true`.
|
143
148
|
#
|
144
149
|
# @option options [required, String] :region
|
145
150
|
# The AWS region to connect to. The configured `:region` is
|
@@ -167,6 +172,11 @@ module Aws::DataSync
|
|
167
172
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
168
173
|
# not retry instead of sleeping.
|
169
174
|
#
|
175
|
+
# @option options [Array<String>] :auth_scheme_preference
|
176
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
177
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
178
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
179
|
+
#
|
170
180
|
# @option options [Boolean] :client_side_monitoring (false)
|
171
181
|
# When `true`, client-side metrics will be collected for all API requests from
|
172
182
|
# this client.
|
@@ -253,8 +263,8 @@ module Aws::DataSync
|
|
253
263
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
254
264
|
#
|
255
265
|
# @option options [String] :profile ("default")
|
256
|
-
# Used when loading credentials from the shared credentials file
|
257
|
-
#
|
266
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
267
|
+
# When not specified, 'default' is used.
|
258
268
|
#
|
259
269
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
260
270
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -374,7 +384,7 @@ module Aws::DataSync
|
|
374
384
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
375
385
|
#
|
376
386
|
# @option options [Aws::TokenProvider] :token_provider
|
377
|
-
#
|
387
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
378
388
|
# following classes:
|
379
389
|
#
|
380
390
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -1394,8 +1404,8 @@ module Aws::DataSync
|
|
1394
1404
|
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html#accessing-nfs
|
1395
1405
|
#
|
1396
1406
|
# @option params [required, String] :server_hostname
|
1397
|
-
# Specifies the DNS name or IP
|
1398
|
-
# that your DataSync agent connects to.
|
1407
|
+
# Specifies the DNS name or IP address (IPv4 or IPv6) of the NFS file
|
1408
|
+
# server that your DataSync agent connects to.
|
1399
1409
|
#
|
1400
1410
|
# @option params [required, Types::OnPremConfig] :on_prem_config
|
1401
1411
|
# Specifies the Amazon Resource Name (ARN) of the DataSync agent that
|
@@ -1466,7 +1476,7 @@ module Aws::DataSync
|
|
1466
1476
|
# [2]: https://docs.aws.amazon.com/datasync/latest/userguide/create-object-location.html#create-object-location-prerequisites
|
1467
1477
|
#
|
1468
1478
|
# @option params [required, String] :server_hostname
|
1469
|
-
# Specifies the domain name or IP
|
1479
|
+
# Specifies the domain name or IP address (IPv4 or IPv6) of the object
|
1470
1480
|
# storage server that your DataSync agent connects to.
|
1471
1481
|
#
|
1472
1482
|
# @option params [Integer] :server_port
|
@@ -1475,7 +1485,7 @@ module Aws::DataSync
|
|
1475
1485
|
#
|
1476
1486
|
# @option params [String] :server_protocol
|
1477
1487
|
# Specifies the protocol that your object storage server uses to
|
1478
|
-
# communicate.
|
1488
|
+
# communicate. If not specified, the default value is `HTTPS`.
|
1479
1489
|
#
|
1480
1490
|
# @option params [String] :subdirectory
|
1481
1491
|
# Specifies the object prefix for your object storage server. If this is
|
@@ -1495,6 +1505,13 @@ module Aws::DataSync
|
|
1495
1505
|
# Specifies the secret key (for example, a password) if credentials are
|
1496
1506
|
# required to authenticate with the object storage server.
|
1497
1507
|
#
|
1508
|
+
# <note markdown="1"> If you provide a secret using `SecretKey`, but do not provide secret
|
1509
|
+
# configuration details using `CmkSecretConfig` or `CustomSecretConfig`,
|
1510
|
+
# then DataSync stores the token using your Amazon Web Services
|
1511
|
+
# account's Secrets Manager secret.
|
1512
|
+
#
|
1513
|
+
# </note>
|
1514
|
+
#
|
1498
1515
|
# @option params [Array<String>] :agent_arns
|
1499
1516
|
# (Optional) Specifies the Amazon Resource Names (ARNs) of the DataSync
|
1500
1517
|
# agents that can connect with your object storage system. If you are
|
@@ -1768,15 +1785,13 @@ module Aws::DataSync
|
|
1768
1785
|
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-smb-location.html#configuring-smb-permissions
|
1769
1786
|
#
|
1770
1787
|
# @option params [required, String] :server_hostname
|
1771
|
-
# Specifies the domain name or IP address of the SMB file
|
1772
|
-
# your DataSync agent connects to.
|
1773
|
-
#
|
1774
|
-
# Remember the following when configuring this parameter:
|
1788
|
+
# Specifies the domain name or IP address (IPv4 or IPv6) of the SMB file
|
1789
|
+
# server that your DataSync agent connects to.
|
1775
1790
|
#
|
1776
|
-
#
|
1791
|
+
# <note markdown="1"> If you're using Kerberos authentication, you must specify a domain
|
1792
|
+
# name.
|
1777
1793
|
#
|
1778
|
-
#
|
1779
|
-
# name.
|
1794
|
+
# </note>
|
1780
1795
|
#
|
1781
1796
|
# @option params [String] :user
|
1782
1797
|
# Specifies the user that can mount and access the files, folders, and
|
@@ -1832,16 +1847,16 @@ module Aws::DataSync
|
|
1832
1847
|
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-smb-location.html#configuring-smb-permissions
|
1833
1848
|
#
|
1834
1849
|
# @option params [Array<String>] :dns_ip_addresses
|
1835
|
-
# Specifies the IPv4 addresses for the DNS servers that your SMB
|
1836
|
-
# server belongs to. This parameter applies only if
|
1837
|
-
# is set to `KERBEROS`.
|
1850
|
+
# Specifies the IPv4 or IPv6 addresses for the DNS servers that your SMB
|
1851
|
+
# file server belongs to. This parameter applies only if
|
1852
|
+
# `AuthenticationType` is set to `KERBEROS`.
|
1838
1853
|
#
|
1839
1854
|
# If you have multiple domains in your environment, configuring this
|
1840
1855
|
# parameter makes sure that DataSync connects to the right SMB file
|
1841
1856
|
# server.
|
1842
1857
|
#
|
1843
1858
|
# @option params [String] :kerberos_principal
|
1844
|
-
# Specifies a Kerberos
|
1859
|
+
# Specifies a Kerberos principal, which is an identity in your Kerberos
|
1845
1860
|
# realm that has permission to access the files, folders, and file
|
1846
1861
|
# metadata in your SMB file server.
|
1847
1862
|
#
|
@@ -4124,7 +4139,7 @@ module Aws::DataSync
|
|
4124
4139
|
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html#accessing-nfs
|
4125
4140
|
#
|
4126
4141
|
# @option params [String] :server_hostname
|
4127
|
-
# Specifies the DNS name or IP
|
4142
|
+
# Specifies the DNS name or IP address (IPv4 or IPv6) of the NFS file
|
4128
4143
|
# server that your DataSync agent connects to.
|
4129
4144
|
#
|
4130
4145
|
# @option params [Types::OnPremConfig] :on_prem_config
|
@@ -4188,7 +4203,7 @@ module Aws::DataSync
|
|
4188
4203
|
# prefix.
|
4189
4204
|
#
|
4190
4205
|
# @option params [String] :server_hostname
|
4191
|
-
# Specifies the domain name or IP
|
4206
|
+
# Specifies the domain name or IP address (IPv4 or IPv6) of the object
|
4192
4207
|
# storage server that your DataSync agent connects to.
|
4193
4208
|
#
|
4194
4209
|
# @option params [String] :access_key
|
@@ -4199,6 +4214,13 @@ module Aws::DataSync
|
|
4199
4214
|
# Specifies the secret key (for example, a password) if credentials are
|
4200
4215
|
# required to authenticate with the object storage server.
|
4201
4216
|
#
|
4217
|
+
# <note markdown="1"> If you provide a secret using `SecretKey`, but do not provide secret
|
4218
|
+
# configuration details using `CmkSecretConfig` or `CustomSecretConfig`,
|
4219
|
+
# then DataSync stores the token using your Amazon Web Services
|
4220
|
+
# account's Secrets Manager secret.
|
4221
|
+
#
|
4222
|
+
# </note>
|
4223
|
+
#
|
4202
4224
|
# @option params [Array<String>] :agent_arns
|
4203
4225
|
# (Optional) Specifies the Amazon Resource Names (ARNs) of the DataSync
|
4204
4226
|
# agents that can connect with your object storage system. If you are
|
@@ -4395,15 +4417,13 @@ module Aws::DataSync
|
|
4395
4417
|
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-smb-location.html#configuring-smb-permissions
|
4396
4418
|
#
|
4397
4419
|
# @option params [String] :server_hostname
|
4398
|
-
# Specifies the domain name or IP address of the SMB file
|
4399
|
-
# your DataSync agent connects to.
|
4400
|
-
#
|
4401
|
-
# Remember the following when configuring this parameter:
|
4420
|
+
# Specifies the domain name or IP address (IPv4 or IPv6) of the SMB file
|
4421
|
+
# server that your DataSync agent connects to.
|
4402
4422
|
#
|
4403
|
-
#
|
4423
|
+
# <note markdown="1"> If you're using Kerberos authentication, you must specify a domain
|
4424
|
+
# name.
|
4404
4425
|
#
|
4405
|
-
#
|
4406
|
-
# name.
|
4426
|
+
# </note>
|
4407
4427
|
#
|
4408
4428
|
# @option params [String] :user
|
4409
4429
|
# Specifies the user name that can mount your SMB file server and has
|
@@ -4454,9 +4474,9 @@ module Aws::DataSync
|
|
4454
4474
|
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-smb-location.html#configuring-smb-permissions
|
4455
4475
|
#
|
4456
4476
|
# @option params [Array<String>] :dns_ip_addresses
|
4457
|
-
# Specifies the
|
4458
|
-
# server belongs to. This parameter applies only if
|
4459
|
-
# is set to `KERBEROS`.
|
4477
|
+
# Specifies the IP addresses (IPv4 or IPv6) for the DNS servers that
|
4478
|
+
# your SMB file server belongs to. This parameter applies only if
|
4479
|
+
# `AuthenticationType` is set to `KERBEROS`.
|
4460
4480
|
#
|
4461
4481
|
# If you have multiple domains in your environment, configuring this
|
4462
4482
|
# parameter makes sure that DataSync connects to the right SMB file
|
@@ -4795,7 +4815,7 @@ module Aws::DataSync
|
|
4795
4815
|
tracer: tracer
|
4796
4816
|
)
|
4797
4817
|
context[:gem_name] = 'aws-sdk-datasync'
|
4798
|
-
context[:gem_version] = '1.
|
4818
|
+
context[:gem_version] = '1.107.0'
|
4799
4819
|
Seahorse::Client::Request.new(handlers, context)
|
4800
4820
|
end
|
4801
4821
|
|
@@ -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
|
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
|
948
|
-
#
|
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
|
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
|
-
#
|
1239
|
+
# <note markdown="1"> If you're using Kerberos authentication, you must specify a domain
|
1240
|
+
# name.
|
1235
1241
|
#
|
1236
|
-
#
|
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
|
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
|
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
|
2468
|
-
# belongs to. This element applies only if `AuthenticationType`
|
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
|
3630
|
-
# compliant with
|
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
|
5666
|
-
#
|
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
|
5718
|
-
#
|
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
|
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
|
-
#
|
5912
|
+
# <note markdown="1"> If you're using Kerberos authentication, you must specify a domain
|
5913
|
+
# name.
|
5903
5914
|
#
|
5904
|
-
#
|
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
|
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
|
data/lib/aws-sdk-datasync.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
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.
|
4
|
+
version: 1.107.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.227.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.227.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|