aws-sdk-acmpca 1.75.0 → 1.76.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-acmpca/client.rb +4 -4
- data/lib/aws-sdk-acmpca/waiters.rb +20 -20
- 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: 7e8bc983a56021ede01acb6d10fadfd4b7c9a93b17e34a71258760042ba317c6
|
4
|
+
data.tar.gz: ec0a7041e87cc91f1534550a004e1607a4eda81a1457af4ff8d058f7b7bbd37c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 72417373102c0967f6c79ce66bd6588ad1c9321f6b84cbe04e38cb9eb74d54d877d9b4837ef7bfabc5c0ae3578927deb4fb7b0e532c7bf13a75bc0ed0484c527
|
7
|
+
data.tar.gz: d942fa7d7e378f1e6a651f370020bdf0bc120769db8e06f09ff0232e41b1e3b77fee02cdfa1baa5d6300b23085e3dc56163c0cc33cd46c3c8ec545bbd2d96af4
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.76.0
|
@@ -2631,7 +2631,7 @@ module Aws::ACMPCA
|
|
2631
2631
|
params: params,
|
2632
2632
|
config: config)
|
2633
2633
|
context[:gem_name] = 'aws-sdk-acmpca'
|
2634
|
-
context[:gem_version] = '1.
|
2634
|
+
context[:gem_version] = '1.76.0'
|
2635
2635
|
Seahorse::Client::Request.new(handlers, context)
|
2636
2636
|
end
|
2637
2637
|
|
@@ -2699,9 +2699,9 @@ module Aws::ACMPCA
|
|
2699
2699
|
#
|
2700
2700
|
# | waiter_name | params | :delay | :max_attempts |
|
2701
2701
|
# | --------------------------------- | ---------------------------------------------------- | -------- | ------------- |
|
2702
|
-
# | audit_report_created | {Client#describe_certificate_authority_audit_report} | 3 |
|
2703
|
-
# | certificate_authority_csr_created | {Client#get_certificate_authority_csr} | 3 |
|
2704
|
-
# | certificate_issued | {Client#get_certificate} | 1 |
|
2702
|
+
# | audit_report_created | {Client#describe_certificate_authority_audit_report} | 3 | 60 |
|
2703
|
+
# | certificate_authority_csr_created | {Client#get_certificate_authority_csr} | 3 | 60 |
|
2704
|
+
# | certificate_issued | {Client#get_certificate} | 1 | 60 |
|
2705
2705
|
#
|
2706
2706
|
# @raise [Errors::FailureStateError] Raised when the waiter terminates
|
2707
2707
|
# because the waiter has entered a state that it will not transition
|
@@ -69,9 +69,9 @@ module Aws::ACMPCA
|
|
69
69
|
#
|
70
70
|
# | waiter_name | params | :delay | :max_attempts |
|
71
71
|
# | --------------------------------- | ---------------------------------------------------- | -------- | ------------- |
|
72
|
-
# | audit_report_created | {Client#describe_certificate_authority_audit_report} | 3 |
|
73
|
-
# | certificate_authority_csr_created | {Client#get_certificate_authority_csr} | 3 |
|
74
|
-
# | certificate_issued | {Client#get_certificate} | 1 |
|
72
|
+
# | audit_report_created | {Client#describe_certificate_authority_audit_report} | 3 | 60 |
|
73
|
+
# | certificate_authority_csr_created | {Client#get_certificate_authority_csr} | 3 | 60 |
|
74
|
+
# | certificate_issued | {Client#get_certificate} | 1 | 60 |
|
75
75
|
#
|
76
76
|
module Waiters
|
77
77
|
|
@@ -80,33 +80,33 @@ module Aws::ACMPCA
|
|
80
80
|
|
81
81
|
# @param [Hash] options
|
82
82
|
# @option options [required, Client] :client
|
83
|
-
# @option options [Integer] :max_attempts (
|
83
|
+
# @option options [Integer] :max_attempts (60)
|
84
84
|
# @option options [Integer] :delay (3)
|
85
85
|
# @option options [Proc] :before_attempt
|
86
86
|
# @option options [Proc] :before_wait
|
87
87
|
def initialize(options)
|
88
88
|
@client = options.fetch(:client)
|
89
89
|
@waiter = Aws::Waiters::Waiter.new({
|
90
|
-
max_attempts:
|
90
|
+
max_attempts: 60,
|
91
91
|
delay: 3,
|
92
92
|
poller: Aws::Waiters::Poller.new(
|
93
93
|
operation_name: :describe_certificate_authority_audit_report,
|
94
94
|
acceptors: [
|
95
95
|
{
|
96
|
+
"state" => "success",
|
96
97
|
"matcher" => "path",
|
97
98
|
"argument" => "audit_report_status",
|
98
|
-
"state" => "success",
|
99
99
|
"expected" => "SUCCESS"
|
100
100
|
},
|
101
101
|
{
|
102
|
+
"state" => "failure",
|
102
103
|
"matcher" => "path",
|
103
104
|
"argument" => "audit_report_status",
|
104
|
-
"state" => "failure",
|
105
105
|
"expected" => "FAILED"
|
106
106
|
},
|
107
107
|
{
|
108
|
-
"matcher" => "error",
|
109
108
|
"state" => "failure",
|
109
|
+
"matcher" => "error",
|
110
110
|
"expected" => "AccessDeniedException"
|
111
111
|
}
|
112
112
|
]
|
@@ -130,31 +130,31 @@ module Aws::ACMPCA
|
|
130
130
|
|
131
131
|
# @param [Hash] options
|
132
132
|
# @option options [required, Client] :client
|
133
|
-
# @option options [Integer] :max_attempts (
|
133
|
+
# @option options [Integer] :max_attempts (60)
|
134
134
|
# @option options [Integer] :delay (3)
|
135
135
|
# @option options [Proc] :before_attempt
|
136
136
|
# @option options [Proc] :before_wait
|
137
137
|
def initialize(options)
|
138
138
|
@client = options.fetch(:client)
|
139
139
|
@waiter = Aws::Waiters::Waiter.new({
|
140
|
-
max_attempts:
|
140
|
+
max_attempts: 60,
|
141
141
|
delay: 3,
|
142
142
|
poller: Aws::Waiters::Poller.new(
|
143
143
|
operation_name: :get_certificate_authority_csr,
|
144
144
|
acceptors: [
|
145
145
|
{
|
146
|
-
"matcher" => "error",
|
147
146
|
"state" => "success",
|
148
|
-
"
|
147
|
+
"matcher" => "status",
|
148
|
+
"expected" => 200
|
149
149
|
},
|
150
150
|
{
|
151
|
-
"matcher" => "error",
|
152
151
|
"state" => "retry",
|
152
|
+
"matcher" => "error",
|
153
153
|
"expected" => "RequestInProgressException"
|
154
154
|
},
|
155
155
|
{
|
156
|
-
"matcher" => "error",
|
157
156
|
"state" => "failure",
|
157
|
+
"matcher" => "error",
|
158
158
|
"expected" => "AccessDeniedException"
|
159
159
|
}
|
160
160
|
]
|
@@ -178,31 +178,31 @@ module Aws::ACMPCA
|
|
178
178
|
|
179
179
|
# @param [Hash] options
|
180
180
|
# @option options [required, Client] :client
|
181
|
-
# @option options [Integer] :max_attempts (
|
181
|
+
# @option options [Integer] :max_attempts (60)
|
182
182
|
# @option options [Integer] :delay (1)
|
183
183
|
# @option options [Proc] :before_attempt
|
184
184
|
# @option options [Proc] :before_wait
|
185
185
|
def initialize(options)
|
186
186
|
@client = options.fetch(:client)
|
187
187
|
@waiter = Aws::Waiters::Waiter.new({
|
188
|
-
max_attempts:
|
188
|
+
max_attempts: 60,
|
189
189
|
delay: 1,
|
190
190
|
poller: Aws::Waiters::Poller.new(
|
191
191
|
operation_name: :get_certificate,
|
192
192
|
acceptors: [
|
193
193
|
{
|
194
|
-
"matcher" => "error",
|
195
194
|
"state" => "success",
|
196
|
-
"
|
195
|
+
"matcher" => "status",
|
196
|
+
"expected" => 200
|
197
197
|
},
|
198
198
|
{
|
199
|
-
"matcher" => "error",
|
200
199
|
"state" => "retry",
|
200
|
+
"matcher" => "error",
|
201
201
|
"expected" => "RequestInProgressException"
|
202
202
|
},
|
203
203
|
{
|
204
|
-
"matcher" => "error",
|
205
204
|
"state" => "failure",
|
205
|
+
"matcher" => "error",
|
206
206
|
"expected" => "AccessDeniedException"
|
207
207
|
}
|
208
208
|
]
|
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.76.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-07-
|
11
|
+
date: 2024-07-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|