aws-sdk-datasync 1.75.0 → 1.76.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: 8f1af93138fc57bcd8f3feed5932b5bf6a6c232efd9f340b9e96b4a1701349a1
4
- data.tar.gz: 93418ae1d4f38b2430d8d435f842f85b76eec526c91b485a98ac9ebfd976add2
3
+ metadata.gz: 6c4dfa76783b34f5495768bc4ab658b1eee836d058d48771ea039e258b305154
4
+ data.tar.gz: 3def60dcb53d8be382b2f14d559f8355b2e0b2758a5e969f32dcd5063c992c3d
5
5
  SHA512:
6
- metadata.gz: bc0bfab8858668110ee1bdb3eb01c4cb4e66a721289398af28fba9f6e3382193d0371f17e05f2ea75b0495c0ce9697e8a7b70495bb9936b986e0a6c56559e96d
7
- data.tar.gz: 43e24c4f8e74a94c2058362e3466aa3f3f90a7a925dc438b5d7afe3a967439aa578188b0e98958297445f1b08664216e16e7f5150ef9fc088cb9b8090e75dcd7
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.75.0
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 file with the certificates that are used to sign the
1469
- # object storage server's certificate (for example,
1470
- # `file:///home/user/.ssh/storage_sys_certificate.pem`). The file you
1471
- # specify must include the following:
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
- # * The certificate of the signing certificate authority (CA)
1474
+ # The certificate chain might include:
1474
1475
  #
1475
- # * Any intermediate certificates
1476
+ # * The object storage system's certificate
1476
1477
  #
1477
- # * base64 encoding
1478
+ # * All intermediate certificates (if there are any)
1478
1479
  #
1479
- # * A `.pem` extension
1480
+ # * The root certificate of the signing CA
1480
1481
  #
1481
- # The file can be up to 32768 bytes (before base64 encoding).
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 object storage location that
4161
- # DataSync accesses for a transfer. For information about creating a
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 an object storage system
4201
- # that uses a private or self-signed certificate authority (CA). You
4202
- # must specify a Base64-encoded `.pem` file (for example,
4203
- # `file:///home/user/.ssh/storage_sys_certificate.pem`). The certificate
4204
- # can be up to 32768 bytes (before Base64 encoding).
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 the certificate doesn't interfere with tasks that you have
4209
- # in progress.
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.75.0'
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 file with the certificates that are used to sign the
987
- # object storage server's certificate (for example,
988
- # `file:///home/user/.ssh/storage_sys_certificate.pem`). The file you
989
- # specify must include the following:
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
- # * The certificate of the signing certificate authority (CA)
992
+ # The certificate chain might include:
992
993
  #
993
- # * Any intermediate certificates
994
+ # * The object storage system's certificate
994
995
  #
995
- # * base64 encoding
996
+ # * All intermediate certificates (if there are any)
996
997
  #
997
- # * A `.pem` extension
998
+ # * The root certificate of the signing CA
998
999
  #
999
- # The file can be up to 32768 bytes (before base64 encoding).
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 self-signed certificate that DataSync uses to securely
2143
- # authenticate with your object storage system.
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 or fix an issue with your task or perform
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 an object storage
5942
- # system that uses a private or self-signed certificate authority
5943
- # (CA). You must specify a Base64-encoded `.pem` file (for example,
5944
- # `file:///home/user/.ssh/storage_sys_certificate.pem`). The
5945
- # certificate can be up to 32768 bytes (before Base64 encoding).
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 the certificate doesn't interfere with tasks that you have
5973
+ # Updating this parameter doesn't interfere with tasks that you have
5950
5974
  # in progress.
5951
5975
  # @return [String]
5952
5976
  #
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-datasync/customizations'
52
52
  # @!group service
53
53
  module Aws::DataSync
54
54
 
55
- GEM_VERSION = '1.75.0'
55
+ GEM_VERSION = '1.76.0'
56
56
 
57
57
  end
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.75.0
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-04-25 00:00:00.000000000 Z
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