aws-sdk-transfer 1.90.0 → 1.91.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-transfer/client.rb +12 -5
- data/lib/aws-sdk-transfer/types.rb +24 -6
- data/lib/aws-sdk-transfer.rb +1 -1
- data/sig/client.rbs +1 -1
- data/sig/types.rbs +3 -3
- 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: 91b565bd99a0c32392621b15463c51a0ae8818f2fcf40f6db5dfb591b05880f0
|
4
|
+
data.tar.gz: 236c12045314f4c89b848a1a1ae4d62f1ca0941a527ed5035ef1c1dec5afb098
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b8a0d7790a4ba71e81a3b68ae69860f6027a63a4c4d902b929347eea0979a364f7a5b7c8e52102c1175b7c60d12c351c0f184b25655c70ae7d03d027c23825bd
|
7
|
+
data.tar.gz: 34e0bc153374fa54b689cd08969ad5e479926bfdc4d9d91e2c0533ed93d016fdae8fd6666ad3e2afb09077bfd491d817bc9dbc717a0b3b5ab655f93bacbfe0c5
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.91.0 (2024-04-12)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This change releases support for importing self signed certificates to the Transfer Family for sending outbound file transfers over TLS/HTTPS.
|
8
|
+
|
4
9
|
1.90.0 (2024-04-03)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.91.0
|
@@ -2009,7 +2009,7 @@ module Aws::Transfer
|
|
2009
2009
|
#
|
2010
2010
|
# resp.certificate.arn #=> String
|
2011
2011
|
# resp.certificate.certificate_id #=> String
|
2012
|
-
# resp.certificate.usage #=> String, one of "SIGNING", "ENCRYPTION"
|
2012
|
+
# resp.certificate.usage #=> String, one of "SIGNING", "ENCRYPTION", "TLS"
|
2013
2013
|
# resp.certificate.status #=> String, one of "ACTIVE", "PENDING_ROTATION", "INACTIVE"
|
2014
2014
|
# resp.certificate.certificate #=> String
|
2015
2015
|
# resp.certificate.certificate_chain #=> String
|
@@ -2523,7 +2523,14 @@ module Aws::Transfer
|
|
2523
2523
|
# create local (AS2) profiles and partner profiles.
|
2524
2524
|
#
|
2525
2525
|
# @option params [required, String] :usage
|
2526
|
-
# Specifies
|
2526
|
+
# Specifies how this certificate is used. It can be used in the
|
2527
|
+
# following ways:
|
2528
|
+
#
|
2529
|
+
# * `SIGNING`: For signing AS2 messages
|
2530
|
+
#
|
2531
|
+
# * `ENCRYPTION`: For encrypting AS2 messages
|
2532
|
+
#
|
2533
|
+
# * `TLS`: For securing AS2 communications sent over HTTPS
|
2527
2534
|
#
|
2528
2535
|
# @option params [required, String] :certificate
|
2529
2536
|
# * For the CLI, provide a file path for a certificate in URI format.
|
@@ -2564,7 +2571,7 @@ module Aws::Transfer
|
|
2564
2571
|
# @example Request syntax with placeholder values
|
2565
2572
|
#
|
2566
2573
|
# resp = client.import_certificate({
|
2567
|
-
# usage: "SIGNING", # required, accepts SIGNING, ENCRYPTION
|
2574
|
+
# usage: "SIGNING", # required, accepts SIGNING, ENCRYPTION, TLS
|
2568
2575
|
# certificate: "CertificateBodyType", # required
|
2569
2576
|
# certificate_chain: "CertificateChainType",
|
2570
2577
|
# private_key: "PrivateKeyType",
|
@@ -2832,7 +2839,7 @@ module Aws::Transfer
|
|
2832
2839
|
# resp.certificates #=> Array
|
2833
2840
|
# resp.certificates[0].arn #=> String
|
2834
2841
|
# resp.certificates[0].certificate_id #=> String
|
2835
|
-
# resp.certificates[0].usage #=> String, one of "SIGNING", "ENCRYPTION"
|
2842
|
+
# resp.certificates[0].usage #=> String, one of "SIGNING", "ENCRYPTION", "TLS"
|
2836
2843
|
# resp.certificates[0].status #=> String, one of "ACTIVE", "PENDING_ROTATION", "INACTIVE"
|
2837
2844
|
# resp.certificates[0].active_date #=> Time
|
2838
2845
|
# resp.certificates[0].inactive_date #=> Time
|
@@ -4701,7 +4708,7 @@ module Aws::Transfer
|
|
4701
4708
|
params: params,
|
4702
4709
|
config: config)
|
4703
4710
|
context[:gem_name] = 'aws-sdk-transfer'
|
4704
|
-
context[:gem_version] = '1.
|
4711
|
+
context[:gem_version] = '1.91.0'
|
4705
4712
|
Seahorse::Client::Request.new(handlers, context)
|
4706
4713
|
end
|
4707
4714
|
|
@@ -2071,8 +2071,14 @@ module Aws::Transfer
|
|
2071
2071
|
# @return [String]
|
2072
2072
|
#
|
2073
2073
|
# @!attribute [rw] usage
|
2074
|
-
# Specifies
|
2075
|
-
#
|
2074
|
+
# Specifies how this certificate is used. It can be used in the
|
2075
|
+
# following ways:
|
2076
|
+
#
|
2077
|
+
# * `SIGNING`: For signing AS2 messages
|
2078
|
+
#
|
2079
|
+
# * `ENCRYPTION`: For encrypting AS2 messages
|
2080
|
+
#
|
2081
|
+
# * `TLS`: For securing AS2 communications sent over HTTPS
|
2076
2082
|
# @return [String]
|
2077
2083
|
#
|
2078
2084
|
# @!attribute [rw] status
|
@@ -3294,8 +3300,14 @@ module Aws::Transfer
|
|
3294
3300
|
end
|
3295
3301
|
|
3296
3302
|
# @!attribute [rw] usage
|
3297
|
-
# Specifies
|
3298
|
-
#
|
3303
|
+
# Specifies how this certificate is used. It can be used in the
|
3304
|
+
# following ways:
|
3305
|
+
#
|
3306
|
+
# * `SIGNING`: For signing AS2 messages
|
3307
|
+
#
|
3308
|
+
# * `ENCRYPTION`: For encrypting AS2 messages
|
3309
|
+
#
|
3310
|
+
# * `TLS`: For securing AS2 communications sent over HTTPS
|
3299
3311
|
# @return [String]
|
3300
3312
|
#
|
3301
3313
|
# @!attribute [rw] certificate
|
@@ -4225,8 +4237,14 @@ module Aws::Transfer
|
|
4225
4237
|
# @return [String]
|
4226
4238
|
#
|
4227
4239
|
# @!attribute [rw] usage
|
4228
|
-
# Specifies
|
4229
|
-
#
|
4240
|
+
# Specifies how this certificate is used. It can be used in the
|
4241
|
+
# following ways:
|
4242
|
+
#
|
4243
|
+
# * `SIGNING`: For signing AS2 messages
|
4244
|
+
#
|
4245
|
+
# * `ENCRYPTION`: For encrypting AS2 messages
|
4246
|
+
#
|
4247
|
+
# * `TLS`: For securing AS2 communications sent over HTTPS
|
4230
4248
|
# @return [String]
|
4231
4249
|
#
|
4232
4250
|
# @!attribute [rw] status
|
data/lib/aws-sdk-transfer.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -591,7 +591,7 @@ module Aws
|
|
591
591
|
end
|
592
592
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Transfer/Client.html#import_certificate-instance_method
|
593
593
|
def import_certificate: (
|
594
|
-
usage: ("SIGNING" | "ENCRYPTION"),
|
594
|
+
usage: ("SIGNING" | "ENCRYPTION" | "TLS"),
|
595
595
|
certificate: ::String,
|
596
596
|
?certificate_chain: ::String,
|
597
597
|
?private_key: ::String,
|
data/sig/types.rbs
CHANGED
@@ -387,7 +387,7 @@ module Aws::Transfer
|
|
387
387
|
class DescribedCertificate
|
388
388
|
attr_accessor arn: ::String
|
389
389
|
attr_accessor certificate_id: ::String
|
390
|
-
attr_accessor usage: ("SIGNING" | "ENCRYPTION")
|
390
|
+
attr_accessor usage: ("SIGNING" | "ENCRYPTION" | "TLS")
|
391
391
|
attr_accessor status: ("ACTIVE" | "PENDING_ROTATION" | "INACTIVE")
|
392
392
|
attr_accessor certificate: ::String
|
393
393
|
attr_accessor certificate_chain: ::String
|
@@ -569,7 +569,7 @@ module Aws::Transfer
|
|
569
569
|
end
|
570
570
|
|
571
571
|
class ImportCertificateRequest
|
572
|
-
attr_accessor usage: ("SIGNING" | "ENCRYPTION")
|
572
|
+
attr_accessor usage: ("SIGNING" | "ENCRYPTION" | "TLS")
|
573
573
|
attr_accessor certificate: ::String
|
574
574
|
attr_accessor certificate_chain: ::String
|
575
575
|
attr_accessor private_key: ::String
|
@@ -812,7 +812,7 @@ module Aws::Transfer
|
|
812
812
|
class ListedCertificate
|
813
813
|
attr_accessor arn: ::String
|
814
814
|
attr_accessor certificate_id: ::String
|
815
|
-
attr_accessor usage: ("SIGNING" | "ENCRYPTION")
|
815
|
+
attr_accessor usage: ("SIGNING" | "ENCRYPTION" | "TLS")
|
816
816
|
attr_accessor status: ("ACTIVE" | "PENDING_ROTATION" | "INACTIVE")
|
817
817
|
attr_accessor active_date: ::Time
|
818
818
|
attr_accessor inactive_date: ::Time
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-transfer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.91.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-
|
11
|
+
date: 2024-04-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|