aws-sdk-signer 1.52.0 → 1.53.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-signer/client.rb +25 -2
- data/lib/aws-sdk-signer/client_api.rb +1 -0
- data/lib/aws-sdk-signer/types.rb +21 -2
- data/lib/aws-sdk-signer.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: b70a1404c9d02c38eade3ceae84ca14b120023577091f3c082525532e6d7b513
|
|
4
|
+
data.tar.gz: 3132a245c93f39761c03ad700783fd689c88e0a87ccaeef6bb1e3910370b199a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d95cdc7b26c8d4a91ce80df88f6ba4d1ddff1ffcd4b1a46abb98693ebf828bbad77e3627079777a0ce10439282fba2deca5fce158acebb441f60d7749229a9f6
|
|
7
|
+
data.tar.gz: 1be9f9b43b01943ccfdd40ed43ac42cea40f367483157861c41b8bc56d732c6e2ff8f5111c3e90cb99f59abb721ac786ad9d0d4538aab11316d68bb17cfd4f6c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.53.0 (2024-04-30)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Documentation updates for AWS Signer. Adds cross-account signing constraint and definitions for cross-account actions.
|
|
8
|
+
|
|
4
9
|
1.52.0 (2024-04-25)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.53.0
|
|
@@ -421,7 +421,27 @@ module Aws::Signer
|
|
|
421
421
|
# The version of the signing profile.
|
|
422
422
|
#
|
|
423
423
|
# @option params [required, String] :action
|
|
424
|
-
#
|
|
424
|
+
# For cross-account signing. Grant a designated account permission to
|
|
425
|
+
# perform one or more of the following actions. Each action is
|
|
426
|
+
# associated with a specific API's operations. For more information
|
|
427
|
+
# about cross-account signing, see [Using cross-account signing with
|
|
428
|
+
# signing profiles][1] in the *AWS Signer Developer Guide*.
|
|
429
|
+
#
|
|
430
|
+
# You can designate the following actions to an account.
|
|
431
|
+
#
|
|
432
|
+
# * `signer:StartSigningJob`. This action isn't supported for container
|
|
433
|
+
# image workflows. For details, see StartSigningJob.
|
|
434
|
+
#
|
|
435
|
+
# * `signer:SignPayload`. This action isn't supported for AWS Lambda
|
|
436
|
+
# workflows. For details, see SignPayload
|
|
437
|
+
#
|
|
438
|
+
# * `signer:GetSigningProfile`. For details, see GetSigningProfile.
|
|
439
|
+
#
|
|
440
|
+
# * `signer:RevokeSignature`. For details, see RevokeSignature.
|
|
441
|
+
#
|
|
442
|
+
#
|
|
443
|
+
#
|
|
444
|
+
# [1]: https://docs.aws.amazon.com/signer/latest/developerguide/signing-profile-cross-account.html
|
|
425
445
|
#
|
|
426
446
|
# @option params [required, String] :principal
|
|
427
447
|
# The AWS principal receiving cross-account permissions. This may be an
|
|
@@ -1310,6 +1330,9 @@ module Aws::Signer
|
|
|
1310
1330
|
# * You specify the name of the source and destination buckets when
|
|
1311
1331
|
# calling the `StartSigningJob` operation.
|
|
1312
1332
|
#
|
|
1333
|
+
# * You must ensure the S3 buckets are from the same Region as the
|
|
1334
|
+
# signing profile. Cross-Region signing isn't supported.
|
|
1335
|
+
#
|
|
1313
1336
|
# * You must also specify a request token that identifies your request
|
|
1314
1337
|
# to Signer.
|
|
1315
1338
|
#
|
|
@@ -1457,7 +1480,7 @@ module Aws::Signer
|
|
|
1457
1480
|
params: params,
|
|
1458
1481
|
config: config)
|
|
1459
1482
|
context[:gem_name] = 'aws-sdk-signer'
|
|
1460
|
-
context[:gem_version] = '1.
|
|
1483
|
+
context[:gem_version] = '1.53.0'
|
|
1461
1484
|
Seahorse::Client::Request.new(handlers, context)
|
|
1462
1485
|
end
|
|
1463
1486
|
|
data/lib/aws-sdk-signer/types.rb
CHANGED
|
@@ -36,8 +36,27 @@ module Aws::Signer
|
|
|
36
36
|
# @return [String]
|
|
37
37
|
#
|
|
38
38
|
# @!attribute [rw] action
|
|
39
|
-
#
|
|
40
|
-
#
|
|
39
|
+
# For cross-account signing. Grant a designated account permission to
|
|
40
|
+
# perform one or more of the following actions. Each action is
|
|
41
|
+
# associated with a specific API's operations. For more information
|
|
42
|
+
# about cross-account signing, see [Using cross-account signing with
|
|
43
|
+
# signing profiles][1] in the *AWS Signer Developer Guide*.
|
|
44
|
+
#
|
|
45
|
+
# You can designate the following actions to an account.
|
|
46
|
+
#
|
|
47
|
+
# * `signer:StartSigningJob`. This action isn't supported for
|
|
48
|
+
# container image workflows. For details, see StartSigningJob.
|
|
49
|
+
#
|
|
50
|
+
# * `signer:SignPayload`. This action isn't supported for AWS Lambda
|
|
51
|
+
# workflows. For details, see SignPayload
|
|
52
|
+
#
|
|
53
|
+
# * `signer:GetSigningProfile`. For details, see GetSigningProfile.
|
|
54
|
+
#
|
|
55
|
+
# * `signer:RevokeSignature`. For details, see RevokeSignature.
|
|
56
|
+
#
|
|
57
|
+
#
|
|
58
|
+
#
|
|
59
|
+
# [1]: https://docs.aws.amazon.com/signer/latest/developerguide/signing-profile-cross-account.html
|
|
41
60
|
# @return [String]
|
|
42
61
|
#
|
|
43
62
|
# @!attribute [rw] principal
|
data/lib/aws-sdk-signer.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-signer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.53.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-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|