aws-sdk-datasync 1.74.0 → 1.76.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 +111 -70
- data/lib/aws-sdk-datasync/client_api.rb +1 -0
- data/lib/aws-sdk-datasync/types.rb +42 -18
- data/lib/aws-sdk-datasync.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6c4dfa76783b34f5495768bc4ab658b1eee836d058d48771ea039e258b305154
|
4
|
+
data.tar.gz: 3def60dcb53d8be382b2f14d559f8355b2e0b2758a5e969f32dcd5063c992c3d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b5dbb23d2c97f670b6bfd770c9fb24c8c843837623c72b0106d18ba10e89d0d9da98ce728f2b190606406afd255e6fe77773d9e80e3adbcbc3bd1a5cc5495b89
|
7
|
+
data.tar.gz: 671f569b9f5569bc28011111b65d92bc5701383fb1afe0abbf11f1e99ac49159e8b4444ef617439ade0931fcf64fb5bedff4f546719962e7dd2242f6821ba986
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.76.0 (2024-05-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Updated guidance on using private or self-signed certificate authorities (CAs) with AWS DataSync object storage locations.
|
8
|
+
|
9
|
+
1.75.0 (2024-04-25)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.74.0 (2024-04-24)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.76.0
|
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
|
|
22
22
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
23
23
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
24
24
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
25
|
+
require 'aws-sdk-core/plugins/invocation_id.rb'
|
25
26
|
require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
26
27
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
27
28
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
@@ -72,6 +73,7 @@ module Aws::DataSync
|
|
72
73
|
add_plugin(Aws::Plugins::ResponsePaging)
|
73
74
|
add_plugin(Aws::Plugins::StubResponses)
|
74
75
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
76
|
+
add_plugin(Aws::Plugins::InvocationId)
|
75
77
|
add_plugin(Aws::Plugins::JsonvalueConverter)
|
76
78
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
77
79
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
@@ -196,10 +198,17 @@ module Aws::DataSync
|
|
196
198
|
# When set to 'true' the request body will not be compressed
|
197
199
|
# for supported operations.
|
198
200
|
#
|
199
|
-
# @option options [String] :endpoint
|
200
|
-
#
|
201
|
-
#
|
202
|
-
#
|
201
|
+
# @option options [String, URI::HTTPS, URI::HTTP] :endpoint
|
202
|
+
# Normally you should not configure the `:endpoint` option
|
203
|
+
# directly. This is normally constructed from the `:region`
|
204
|
+
# option. Configuring `:endpoint` is normally reserved for
|
205
|
+
# connecting to test or custom endpoints. The endpoint should
|
206
|
+
# be a URI formatted like:
|
207
|
+
#
|
208
|
+
# 'http://example.com'
|
209
|
+
# 'https://example.com'
|
210
|
+
# 'http://example.com:123'
|
211
|
+
#
|
203
212
|
#
|
204
213
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
205
214
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -347,50 +356,65 @@ module Aws::DataSync
|
|
347
356
|
# @option options [Aws::DataSync::EndpointProvider] :endpoint_provider
|
348
357
|
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::DataSync::EndpointParameters`
|
349
358
|
#
|
350
|
-
# @option options [
|
351
|
-
#
|
352
|
-
#
|
353
|
-
#
|
354
|
-
#
|
355
|
-
#
|
356
|
-
#
|
357
|
-
#
|
358
|
-
#
|
359
|
-
#
|
360
|
-
#
|
361
|
-
# @option options [Float] :
|
362
|
-
#
|
363
|
-
#
|
364
|
-
#
|
365
|
-
#
|
366
|
-
#
|
367
|
-
#
|
368
|
-
#
|
369
|
-
#
|
370
|
-
#
|
371
|
-
#
|
372
|
-
#
|
373
|
-
#
|
374
|
-
#
|
359
|
+
# @option options [Float] :http_continue_timeout (1)
|
360
|
+
# The number of seconds to wait for a 100-continue response before sending the
|
361
|
+
# request body. This option has no effect unless the request has "Expect"
|
362
|
+
# header set to "100-continue". Defaults to `nil` which disables this
|
363
|
+
# behaviour. This value can safely be set per request on the session.
|
364
|
+
#
|
365
|
+
# @option options [Float] :http_idle_timeout (5)
|
366
|
+
# The number of seconds a connection is allowed to sit idle before it
|
367
|
+
# is considered stale. Stale connections are closed and removed from the
|
368
|
+
# pool before making a request.
|
369
|
+
#
|
370
|
+
# @option options [Float] :http_open_timeout (15)
|
371
|
+
# The default number of seconds to wait for response data.
|
372
|
+
# This value can safely be set per-request on the session.
|
373
|
+
#
|
374
|
+
# @option options [URI::HTTP,String] :http_proxy
|
375
|
+
# A proxy to send requests through. Formatted like 'http://proxy.com:123'.
|
376
|
+
#
|
377
|
+
# @option options [Float] :http_read_timeout (60)
|
378
|
+
# The default number of seconds to wait for response data.
|
379
|
+
# This value can safely be set per-request on the session.
|
380
|
+
#
|
381
|
+
# @option options [Boolean] :http_wire_trace (false)
|
382
|
+
# When `true`, HTTP debug output will be sent to the `:logger`.
|
383
|
+
#
|
384
|
+
# @option options [Proc] :on_chunk_received
|
385
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
386
|
+
# of the response body is received. It provides three arguments: the chunk,
|
387
|
+
# the number of bytes received, and the total number of
|
388
|
+
# bytes in the response (or nil if the server did not send a `content-length`).
|
389
|
+
#
|
390
|
+
# @option options [Proc] :on_chunk_sent
|
391
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
392
|
+
# of the request body is sent. It provides three arguments: the chunk,
|
393
|
+
# the number of bytes read from the body, and the total number of
|
394
|
+
# bytes in the body.
|
395
|
+
#
|
396
|
+
# @option options [Boolean] :raise_response_errors (true)
|
397
|
+
# When `true`, response errors are raised.
|
398
|
+
#
|
399
|
+
# @option options [String] :ssl_ca_bundle
|
400
|
+
# Full path to the SSL certificate authority bundle file that should be used when
|
401
|
+
# verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
|
402
|
+
# `:ssl_ca_directory` the the system default will be used if available.
|
403
|
+
#
|
404
|
+
# @option options [String] :ssl_ca_directory
|
405
|
+
# Full path of the directory that contains the unbundled SSL certificate
|
406
|
+
# authority files for verifying peer certificates. If you do
|
407
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
|
408
|
+
# default will be used if available.
|
375
409
|
#
|
376
|
-
# @option options [
|
377
|
-
#
|
410
|
+
# @option options [String] :ssl_ca_store
|
411
|
+
# Sets the X509::Store to verify peer certificate.
|
378
412
|
#
|
379
|
-
# @option options [
|
380
|
-
#
|
381
|
-
# connection.
|
413
|
+
# @option options [Float] :ssl_timeout
|
414
|
+
# Sets the SSL timeout in seconds
|
382
415
|
#
|
383
|
-
# @option options [
|
384
|
-
#
|
385
|
-
# verifying peer certificates. If you do not pass
|
386
|
-
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
387
|
-
# will be used if available.
|
388
|
-
#
|
389
|
-
# @option options [String] :ssl_ca_directory Full path of the
|
390
|
-
# directory that contains the unbundled SSL certificate
|
391
|
-
# authority files for verifying peer certificates. If you do
|
392
|
-
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
393
|
-
# system default will be used if available.
|
416
|
+
# @option options [Boolean] :ssl_verify_peer (true)
|
417
|
+
# When `true`, SSL peer certificates are verified when establishing a connection.
|
394
418
|
#
|
395
419
|
def initialize(*args)
|
396
420
|
super
|
@@ -1441,20 +1465,27 @@ module Aws::DataSync
|
|
1441
1465
|
# your resources. We recommend creating a name tag for your location.
|
1442
1466
|
#
|
1443
1467
|
# @option params [String, StringIO, File] :server_certificate
|
1444
|
-
# Specifies a
|
1445
|
-
# object storage
|
1446
|
-
#
|
1447
|
-
#
|
1468
|
+
# Specifies a certificate chain for DataSync to authenticate with your
|
1469
|
+
# object storage system if the system uses a private or self-signed
|
1470
|
+
# certificate authority (CA). You must specify a single `.pem` file with
|
1471
|
+
# a full certificate chain (for example,
|
1472
|
+
# `file:///home/user/.ssh/object_storage_certificates.pem`).
|
1448
1473
|
#
|
1449
|
-
#
|
1474
|
+
# The certificate chain might include:
|
1450
1475
|
#
|
1451
|
-
# *
|
1476
|
+
# * The object storage system's certificate
|
1452
1477
|
#
|
1453
|
-
# *
|
1478
|
+
# * All intermediate certificates (if there are any)
|
1454
1479
|
#
|
1455
|
-
# *
|
1480
|
+
# * The root certificate of the signing CA
|
1456
1481
|
#
|
1457
|
-
#
|
1482
|
+
# You can concatenate your certificates into a `.pem` file (which can be
|
1483
|
+
# up to 32768 bytes before base64 encoding). The following example `cat`
|
1484
|
+
# command creates an `object_storage_certificates.pem` file that
|
1485
|
+
# includes three certificates:
|
1486
|
+
#
|
1487
|
+
# `cat object_server_certificate.pem intermediate_certificate.pem
|
1488
|
+
# ca_root_certificate.pem > object_storage_certificates.pem`
|
1458
1489
|
#
|
1459
1490
|
# To use this parameter, configure `ServerProtocol` to `HTTPS`.
|
1460
1491
|
#
|
@@ -4133,14 +4164,8 @@ module Aws::DataSync
|
|
4133
4164
|
req.send_request(options)
|
4134
4165
|
end
|
4135
4166
|
|
4136
|
-
# Updates some parameters of an existing
|
4137
|
-
#
|
4138
|
-
# self-managed object storage location, see [Creating a location for
|
4139
|
-
# object storage][1].
|
4140
|
-
#
|
4141
|
-
#
|
4142
|
-
#
|
4143
|
-
# [1]: https://docs.aws.amazon.com/datasync/latest/userguide/create-object-location.html
|
4167
|
+
# Updates some parameters of an existing DataSync location for an object
|
4168
|
+
# storage system.
|
4144
4169
|
#
|
4145
4170
|
# @option params [required, String] :location_arn
|
4146
4171
|
# Specifies the ARN of the object storage system location that you're
|
@@ -4173,16 +4198,32 @@ module Aws::DataSync
|
|
4173
4198
|
# can securely connect with your location.
|
4174
4199
|
#
|
4175
4200
|
# @option params [String, StringIO, File] :server_certificate
|
4176
|
-
# Specifies a certificate to authenticate with
|
4177
|
-
#
|
4178
|
-
# must specify a
|
4179
|
-
#
|
4180
|
-
#
|
4201
|
+
# Specifies a certificate chain for DataSync to authenticate with your
|
4202
|
+
# object storage system if the system uses a private or self-signed
|
4203
|
+
# certificate authority (CA). You must specify a single `.pem` file with
|
4204
|
+
# a full certificate chain (for example,
|
4205
|
+
# `file:///home/user/.ssh/object_storage_certificates.pem`).
|
4206
|
+
#
|
4207
|
+
# The certificate chain might include:
|
4208
|
+
#
|
4209
|
+
# * The object storage system's certificate
|
4210
|
+
#
|
4211
|
+
# * All intermediate certificates (if there are any)
|
4212
|
+
#
|
4213
|
+
# * The root certificate of the signing CA
|
4214
|
+
#
|
4215
|
+
# You can concatenate your certificates into a `.pem` file (which can be
|
4216
|
+
# up to 32768 bytes before base64 encoding). The following example `cat`
|
4217
|
+
# command creates an `object_storage_certificates.pem` file that
|
4218
|
+
# includes three certificates:
|
4219
|
+
#
|
4220
|
+
# `cat object_server_certificate.pem intermediate_certificate.pem
|
4221
|
+
# ca_root_certificate.pem > object_storage_certificates.pem`
|
4181
4222
|
#
|
4182
4223
|
# To use this parameter, configure `ServerProtocol` to `HTTPS`.
|
4183
4224
|
#
|
4184
|
-
# Updating
|
4185
|
-
#
|
4225
|
+
# Updating this parameter doesn't interfere with tasks that you have in
|
4226
|
+
# progress.
|
4186
4227
|
#
|
4187
4228
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4188
4229
|
#
|
@@ -4611,7 +4652,7 @@ module Aws::DataSync
|
|
4611
4652
|
params: params,
|
4612
4653
|
config: config)
|
4613
4654
|
context[:gem_name] = 'aws-sdk-datasync'
|
4614
|
-
context[:gem_version] = '1.
|
4655
|
+
context[:gem_version] = '1.76.0'
|
4615
4656
|
Seahorse::Client::Request.new(handlers, context)
|
4616
4657
|
end
|
4617
4658
|
|
@@ -1365,6 +1365,7 @@ module Aws::DataSync
|
|
1365
1365
|
"endpointPrefix" => "datasync",
|
1366
1366
|
"jsonVersion" => "1.1",
|
1367
1367
|
"protocol" => "json",
|
1368
|
+
"protocols" => ["json"],
|
1368
1369
|
"serviceAbbreviation" => "DataSync",
|
1369
1370
|
"serviceFullName" => "AWS DataSync",
|
1370
1371
|
"serviceId" => "DataSync",
|
@@ -983,20 +983,27 @@ module Aws::DataSync
|
|
983
983
|
# @return [Array<Types::TagListEntry>]
|
984
984
|
#
|
985
985
|
# @!attribute [rw] server_certificate
|
986
|
-
# Specifies a
|
987
|
-
# object storage
|
988
|
-
#
|
989
|
-
#
|
986
|
+
# Specifies a certificate chain for DataSync to authenticate with your
|
987
|
+
# object storage system if the system uses a private or self-signed
|
988
|
+
# certificate authority (CA). You must specify a single `.pem` file
|
989
|
+
# with a full certificate chain (for example,
|
990
|
+
# `file:///home/user/.ssh/object_storage_certificates.pem`).
|
990
991
|
#
|
991
|
-
#
|
992
|
+
# The certificate chain might include:
|
992
993
|
#
|
993
|
-
# *
|
994
|
+
# * The object storage system's certificate
|
994
995
|
#
|
995
|
-
# *
|
996
|
+
# * All intermediate certificates (if there are any)
|
996
997
|
#
|
997
|
-
# *
|
998
|
+
# * The root certificate of the signing CA
|
998
999
|
#
|
999
|
-
#
|
1000
|
+
# You can concatenate your certificates into a `.pem` file (which can
|
1001
|
+
# be up to 32768 bytes before base64 encoding). The following example
|
1002
|
+
# `cat` command creates an `object_storage_certificates.pem` file that
|
1003
|
+
# includes three certificates:
|
1004
|
+
#
|
1005
|
+
# `cat object_server_certificate.pem intermediate_certificate.pem
|
1006
|
+
# ca_root_certificate.pem > object_storage_certificates.pem`
|
1000
1007
|
#
|
1001
1008
|
# To use this parameter, configure `ServerProtocol` to `HTTPS`.
|
1002
1009
|
# @return [String]
|
@@ -2139,8 +2146,9 @@ module Aws::DataSync
|
|
2139
2146
|
# @return [Time]
|
2140
2147
|
#
|
2141
2148
|
# @!attribute [rw] server_certificate
|
2142
|
-
# The
|
2143
|
-
#
|
2149
|
+
# The certificate chain for DataSync to authenticate with your object
|
2150
|
+
# storage system if the system uses a private or self-signed
|
2151
|
+
# certificate authority (CA).
|
2144
2152
|
# @return [String]
|
2145
2153
|
#
|
2146
2154
|
# @see http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeLocationObjectStorageResponse AWS API Documentation
|
@@ -5516,7 +5524,7 @@ module Aws::DataSync
|
|
5516
5524
|
# Specifies whether to enable or disable your task schedule. Your
|
5517
5525
|
# schedule is enabled by default, but there can be situations where
|
5518
5526
|
# you need to disable it. For example, you might need to pause a
|
5519
|
-
# recurring transfer
|
5527
|
+
# recurring transfer to fix an issue with your task or perform
|
5520
5528
|
# maintenance on your storage system.
|
5521
5529
|
#
|
5522
5530
|
# DataSync might disable your schedule automatically if your task
|
@@ -5938,15 +5946,31 @@ module Aws::DataSync
|
|
5938
5946
|
# @return [Array<String>]
|
5939
5947
|
#
|
5940
5948
|
# @!attribute [rw] server_certificate
|
5941
|
-
# Specifies a certificate to authenticate with
|
5942
|
-
# system
|
5943
|
-
# (CA). You must specify a
|
5944
|
-
#
|
5945
|
-
#
|
5949
|
+
# Specifies a certificate chain for DataSync to authenticate with your
|
5950
|
+
# object storage system if the system uses a private or self-signed
|
5951
|
+
# certificate authority (CA). You must specify a single `.pem` file
|
5952
|
+
# with a full certificate chain (for example,
|
5953
|
+
# `file:///home/user/.ssh/object_storage_certificates.pem`).
|
5954
|
+
#
|
5955
|
+
# The certificate chain might include:
|
5956
|
+
#
|
5957
|
+
# * The object storage system's certificate
|
5958
|
+
#
|
5959
|
+
# * All intermediate certificates (if there are any)
|
5960
|
+
#
|
5961
|
+
# * The root certificate of the signing CA
|
5962
|
+
#
|
5963
|
+
# You can concatenate your certificates into a `.pem` file (which can
|
5964
|
+
# be up to 32768 bytes before base64 encoding). The following example
|
5965
|
+
# `cat` command creates an `object_storage_certificates.pem` file that
|
5966
|
+
# includes three certificates:
|
5967
|
+
#
|
5968
|
+
# `cat object_server_certificate.pem intermediate_certificate.pem
|
5969
|
+
# ca_root_certificate.pem > object_storage_certificates.pem`
|
5946
5970
|
#
|
5947
5971
|
# To use this parameter, configure `ServerProtocol` to `HTTPS`.
|
5948
5972
|
#
|
5949
|
-
# Updating
|
5973
|
+
# Updating this parameter doesn't interfere with tasks that you have
|
5950
5974
|
# in progress.
|
5951
5975
|
# @return [String]
|
5952
5976
|
#
|
data/lib/aws-sdk-datasync.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-datasync
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.76.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-05-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.193.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.193.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|