aws-sdk-signer 1.79.0 → 1.80.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 +23 -11
- data/lib/aws-sdk-signer/client_api.rb +1 -1
- data/lib/aws-sdk-signer/types.rb +1 -1
- data/lib/aws-sdk-signer.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: be0aa4a44a95b9e816c45e7e36123ff75f6ee49237c60532b1fcafc8a9ba42f0
|
|
4
|
+
data.tar.gz: 011af1c1ed80f1dfef53d79768937808e17d7991658493ac608cd2331f0ce10e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0f7670ffe2bbf11a2a5bd301d33d3c52c2f61946733c189cb0946fde20b60f358a28dfb6e45301f9c547942c77069880fc6e0ef0452acc54dc34de5eb83dea04
|
|
7
|
+
data.tar.gz: cbb489c4142656185bfbec4aeb977a88284738d14f3b67ad7f65fec94321bd2686ec0bbfaf5866da5470cab3f8d27f2ef839c545af84e1b38181e251e3ac96a1
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.80.0
|
|
@@ -505,7 +505,7 @@ module Aws::Signer
|
|
|
505
505
|
#
|
|
506
506
|
#
|
|
507
507
|
#
|
|
508
|
-
# [1]:
|
|
508
|
+
# [1]: http://docs.aws.amazon.com/signer/latest/developerguide/signing-profile-cross-account.html
|
|
509
509
|
#
|
|
510
510
|
# @option params [required, String] :principal
|
|
511
511
|
# The AWS principal receiving cross-account permissions. This may be an
|
|
@@ -547,8 +547,13 @@ module Aws::Signer
|
|
|
547
547
|
|
|
548
548
|
# Changes the state of an `ACTIVE` signing profile to `CANCELED`. A
|
|
549
549
|
# canceled profile is still viewable with the `ListSigningProfiles`
|
|
550
|
-
# operation, but it cannot perform new signing jobs
|
|
551
|
-
#
|
|
550
|
+
# operation, but it cannot perform new signing jobs. See [Data
|
|
551
|
+
# Retention][1] for more information on scheduled deletion of a canceled
|
|
552
|
+
# signing profile.
|
|
553
|
+
#
|
|
554
|
+
#
|
|
555
|
+
#
|
|
556
|
+
# [1]: https://docs.aws.amazon.com/signer/latest/developerguide/retention.html
|
|
552
557
|
#
|
|
553
558
|
# @option params [required, String] :profile_name
|
|
554
559
|
# The name of the signing profile to be canceled.
|
|
@@ -1262,8 +1267,8 @@ module Aws::Signer
|
|
|
1262
1267
|
req.send_request(options)
|
|
1263
1268
|
end
|
|
1264
1269
|
|
|
1265
|
-
# Changes the state of a signing job to REVOKED
|
|
1266
|
-
# signature is no longer valid.
|
|
1270
|
+
# Changes the state of a signing job to `REVOKED`. This indicates that
|
|
1271
|
+
# the signature is no longer valid.
|
|
1267
1272
|
#
|
|
1268
1273
|
# @option params [required, String] :job_id
|
|
1269
1274
|
# ID of the signing job to be revoked.
|
|
@@ -1293,9 +1298,16 @@ module Aws::Signer
|
|
|
1293
1298
|
req.send_request(options)
|
|
1294
1299
|
end
|
|
1295
1300
|
|
|
1296
|
-
# Changes the state of a signing profile to REVOKED
|
|
1297
|
-
# signatures generated using the signing profile after an effective
|
|
1298
|
-
# start date are no longer valid.
|
|
1301
|
+
# Changes the state of a signing profile to `REVOKED`. This indicates
|
|
1302
|
+
# that signatures generated using the signing profile after an effective
|
|
1303
|
+
# start date are no longer valid. A revoked profile is still viewable
|
|
1304
|
+
# with the `ListSigningProfiles` operation, but it cannot perform new
|
|
1305
|
+
# signing jobs. See [Data Retention][1] for more information on
|
|
1306
|
+
# scheduled deletion of a revoked signing profile.
|
|
1307
|
+
#
|
|
1308
|
+
#
|
|
1309
|
+
#
|
|
1310
|
+
# [1]: https://docs.aws.amazon.com/signer/latest/developerguide/retention.html
|
|
1299
1311
|
#
|
|
1300
1312
|
# @option params [required, String] :profile_name
|
|
1301
1313
|
# The name of the signing profile to be revoked.
|
|
@@ -1380,8 +1392,8 @@ module Aws::Signer
|
|
|
1380
1392
|
end
|
|
1381
1393
|
|
|
1382
1394
|
# Initiates a signing job to be performed on the code provided. Signing
|
|
1383
|
-
# jobs are viewable by the `ListSigningJobs` operation
|
|
1384
|
-
#
|
|
1395
|
+
# jobs are viewable by the `ListSigningJobs` operation. Note the
|
|
1396
|
+
# following requirements:
|
|
1385
1397
|
#
|
|
1386
1398
|
# * You must create an Amazon S3 source bucket. For more information,
|
|
1387
1399
|
# see [Creating a Bucket][1] in the *Amazon S3 Getting Started Guide*.
|
|
@@ -1549,7 +1561,7 @@ module Aws::Signer
|
|
|
1549
1561
|
tracer: tracer
|
|
1550
1562
|
)
|
|
1551
1563
|
context[:gem_name] = 'aws-sdk-signer'
|
|
1552
|
-
context[:gem_version] = '1.
|
|
1564
|
+
context[:gem_version] = '1.80.0'
|
|
1553
1565
|
Seahorse::Client::Request.new(handlers, context)
|
|
1554
1566
|
end
|
|
1555
1567
|
|
|
@@ -582,7 +582,7 @@ module Aws::Signer
|
|
|
582
582
|
o.http_method = "GET"
|
|
583
583
|
o.http_request_uri = "/revocations"
|
|
584
584
|
o.endpoint_pattern = {
|
|
585
|
-
"hostPrefix" => "
|
|
585
|
+
"hostPrefix" => "data-",
|
|
586
586
|
}
|
|
587
587
|
o.input = Shapes::ShapeRef.new(shape: GetRevocationStatusRequest)
|
|
588
588
|
o.output = Shapes::ShapeRef.new(shape: GetRevocationStatusResponse)
|
data/lib/aws-sdk-signer/types.rb
CHANGED
|
@@ -56,7 +56,7 @@ module Aws::Signer
|
|
|
56
56
|
#
|
|
57
57
|
#
|
|
58
58
|
#
|
|
59
|
-
# [1]:
|
|
59
|
+
# [1]: http://docs.aws.amazon.com/signer/latest/developerguide/signing-profile-cross-account.html
|
|
60
60
|
# @return [String]
|
|
61
61
|
#
|
|
62
62
|
# @!attribute [rw] principal
|
data/lib/aws-sdk-signer.rb
CHANGED