aws-sdk-signer 1.52.0 → 1.53.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: 6c476411790109ab53cb7f7f035a6c963ed35f74e17ddd56dedd63eb4bfee19a
4
- data.tar.gz: eef1132ac7992a67cd01a5b5bfe5c957c553582fd14119e3be1e0eabf2a42c53
3
+ metadata.gz: b70a1404c9d02c38eade3ceae84ca14b120023577091f3c082525532e6d7b513
4
+ data.tar.gz: 3132a245c93f39761c03ad700783fd689c88e0a87ccaeef6bb1e3910370b199a
5
5
  SHA512:
6
- metadata.gz: 9f32f4a05b114e5e2f87a50815fb00955ae36b4ec96a433d7dfd9302788d7fce37a5d548c7072124ea344e3d81a2e3499c030b4f0468f6cd68c3bdc5b5269935
7
- data.tar.gz: b293ded5f0125df22e11ff107e33d0830bd423a75242ecc69ba5cdb933e865d5940fda6d33d02f289c4b8760b5136d2ae7f44abda35bb96386e792791e6276f2
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.52.0
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
- # The AWS Signer action permitted as part of cross-account permissions.
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.52.0'
1483
+ context[:gem_version] = '1.53.0'
1461
1484
  Seahorse::Client::Request.new(handlers, context)
1462
1485
  end
1463
1486
 
@@ -527,6 +527,7 @@ module Aws::Signer
527
527
  "endpointPrefix" => "signer",
528
528
  "jsonVersion" => "1.1",
529
529
  "protocol" => "rest-json",
530
+ "protocols" => ["rest-json"],
530
531
  "serviceAbbreviation" => "signer",
531
532
  "serviceFullName" => "AWS Signer",
532
533
  "serviceId" => "signer",
@@ -36,8 +36,27 @@ module Aws::Signer
36
36
  # @return [String]
37
37
  #
38
38
  # @!attribute [rw] action
39
- # The AWS Signer action permitted as part of cross-account
40
- # permissions.
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
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-signer/customizations'
53
53
  # @!group service
54
54
  module Aws::Signer
55
55
 
56
- GEM_VERSION = '1.52.0'
56
+ GEM_VERSION = '1.53.0'
57
57
 
58
58
  end
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.52.0
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-25 00:00:00.000000000 Z
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