aws-sdk-datasync 1.75.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datasync/client.rb +42 -25
- 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 +2 -2
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,11 @@
|
|
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
|
+
|
4
9
|
1.75.0 (2024-04-25)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.76.0
|
@@ -1465,20 +1465,27 @@ module Aws::DataSync
|
|
1465
1465
|
# your resources. We recommend creating a name tag for your location.
|
1466
1466
|
#
|
1467
1467
|
# @option params [String, StringIO, File] :server_certificate
|
1468
|
-
# Specifies a
|
1469
|
-
# object storage
|
1470
|
-
#
|
1471
|
-
#
|
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`).
|
1472
1473
|
#
|
1473
|
-
#
|
1474
|
+
# The certificate chain might include:
|
1474
1475
|
#
|
1475
|
-
# *
|
1476
|
+
# * The object storage system's certificate
|
1476
1477
|
#
|
1477
|
-
# *
|
1478
|
+
# * All intermediate certificates (if there are any)
|
1478
1479
|
#
|
1479
|
-
# *
|
1480
|
+
# * The root certificate of the signing CA
|
1480
1481
|
#
|
1481
|
-
#
|
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`
|
1482
1489
|
#
|
1483
1490
|
# To use this parameter, configure `ServerProtocol` to `HTTPS`.
|
1484
1491
|
#
|
@@ -4157,14 +4164,8 @@ module Aws::DataSync
|
|
4157
4164
|
req.send_request(options)
|
4158
4165
|
end
|
4159
4166
|
|
4160
|
-
# Updates some parameters of an existing
|
4161
|
-
#
|
4162
|
-
# self-managed object storage location, see [Creating a location for
|
4163
|
-
# object storage][1].
|
4164
|
-
#
|
4165
|
-
#
|
4166
|
-
#
|
4167
|
-
# [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.
|
4168
4169
|
#
|
4169
4170
|
# @option params [required, String] :location_arn
|
4170
4171
|
# Specifies the ARN of the object storage system location that you're
|
@@ -4197,16 +4198,32 @@ module Aws::DataSync
|
|
4197
4198
|
# can securely connect with your location.
|
4198
4199
|
#
|
4199
4200
|
# @option params [String, StringIO, File] :server_certificate
|
4200
|
-
# Specifies a certificate to authenticate with
|
4201
|
-
#
|
4202
|
-
# must specify a
|
4203
|
-
#
|
4204
|
-
#
|
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`
|
4205
4222
|
#
|
4206
4223
|
# To use this parameter, configure `ServerProtocol` to `HTTPS`.
|
4207
4224
|
#
|
4208
|
-
# Updating
|
4209
|
-
#
|
4225
|
+
# Updating this parameter doesn't interfere with tasks that you have in
|
4226
|
+
# progress.
|
4210
4227
|
#
|
4211
4228
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4212
4229
|
#
|
@@ -4635,7 +4652,7 @@ module Aws::DataSync
|
|
4635
4652
|
params: params,
|
4636
4653
|
config: config)
|
4637
4654
|
context[:gem_name] = 'aws-sdk-datasync'
|
4638
|
-
context[:gem_version] = '1.
|
4655
|
+
context[:gem_version] = '1.76.0'
|
4639
4656
|
Seahorse::Client::Request.new(handlers, context)
|
4640
4657
|
end
|
4641
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
|