aws-sdk-acmpca 1.66.0 → 1.68.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-acmpca/client.rb +4 -3
- data/lib/aws-sdk-acmpca/client_api.rb +1 -0
- data/lib/aws-sdk-acmpca/waiters.rb +15 -0
- data/lib/aws-sdk-acmpca.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: 6a57def22c5e886637d990a33b5664d56fca5978e27ec9416b09f4a44c0082a1
|
|
4
|
+
data.tar.gz: c1539ed64fd2a90fd2815f3143cb1c1f2792767c9378cdb5617561855ec0dd79
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e78c21105a1bf997bb40119f571caca2157db1f1c8c91bcb575d699ecd95dcc2ff936de71d60dc26525e9c7e76ae7949941df1d9021f0911f66203569e785797
|
|
7
|
+
data.tar.gz: 9b42b9b195acad56614eb1c7efa1ea1d6367fc53e08568452ac0f30e99342fa227af0eb40ede55ff921df4f2a4eacf3316a3a93f1ab3386f0f6477a0f5e1337d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.68.0 (2024-05-16)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release adds support for waiters to fail on AccessDeniedException when having insufficient permissions
|
|
8
|
+
|
|
9
|
+
1.67.0 (2024-05-13)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
4
14
|
1.66.0 (2024-04-25)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.68.0
|
|
@@ -301,8 +301,9 @@ module Aws::ACMPCA
|
|
|
301
301
|
#
|
|
302
302
|
# @option options [String] :sdk_ua_app_id
|
|
303
303
|
# A unique and opaque application ID that is appended to the
|
|
304
|
-
# User-Agent header as app
|
|
305
|
-
# maximum length of 50.
|
|
304
|
+
# User-Agent header as app/sdk_ua_app_id. It should have a
|
|
305
|
+
# maximum length of 50. This variable is sourced from environment
|
|
306
|
+
# variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.
|
|
306
307
|
#
|
|
307
308
|
# @option options [String] :secret_access_key
|
|
308
309
|
#
|
|
@@ -2621,7 +2622,7 @@ module Aws::ACMPCA
|
|
|
2621
2622
|
params: params,
|
|
2622
2623
|
config: config)
|
|
2623
2624
|
context[:gem_name] = 'aws-sdk-acmpca'
|
|
2624
|
-
context[:gem_version] = '1.
|
|
2625
|
+
context[:gem_version] = '1.68.0'
|
|
2625
2626
|
Seahorse::Client::Request.new(handlers, context)
|
|
2626
2627
|
end
|
|
2627
2628
|
|
|
@@ -554,6 +554,7 @@ module Aws::ACMPCA
|
|
|
554
554
|
"endpointPrefix" => "acm-pca",
|
|
555
555
|
"jsonVersion" => "1.1",
|
|
556
556
|
"protocol" => "json",
|
|
557
|
+
"protocols" => ["json"],
|
|
557
558
|
"serviceAbbreviation" => "ACM-PCA",
|
|
558
559
|
"serviceFullName" => "AWS Certificate Manager Private Certificate Authority",
|
|
559
560
|
"serviceId" => "ACM PCA",
|
|
@@ -103,6 +103,11 @@ module Aws::ACMPCA
|
|
|
103
103
|
"matcher" => "path",
|
|
104
104
|
"argument" => "audit_report_status",
|
|
105
105
|
"expected" => "FAILED"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"state" => "failure",
|
|
109
|
+
"matcher" => "error",
|
|
110
|
+
"expected" => "AccessDeniedException"
|
|
106
111
|
}
|
|
107
112
|
]
|
|
108
113
|
)
|
|
@@ -146,6 +151,11 @@ module Aws::ACMPCA
|
|
|
146
151
|
"state" => "retry",
|
|
147
152
|
"matcher" => "error",
|
|
148
153
|
"expected" => "RequestInProgressException"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"state" => "failure",
|
|
157
|
+
"matcher" => "error",
|
|
158
|
+
"expected" => "AccessDeniedException"
|
|
149
159
|
}
|
|
150
160
|
]
|
|
151
161
|
)
|
|
@@ -189,6 +199,11 @@ module Aws::ACMPCA
|
|
|
189
199
|
"state" => "retry",
|
|
190
200
|
"matcher" => "error",
|
|
191
201
|
"expected" => "RequestInProgressException"
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"state" => "failure",
|
|
205
|
+
"matcher" => "error",
|
|
206
|
+
"expected" => "AccessDeniedException"
|
|
192
207
|
}
|
|
193
208
|
]
|
|
194
209
|
)
|
data/lib/aws-sdk-acmpca.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-acmpca
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.68.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-
|
|
11
|
+
date: 2024-05-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|