aws-sdk-acmpca 1.75.0 → 1.76.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5ee4ff840b924005a8397e7a17bfde6251614a6249432c0e0d63b8f38af34cf6
4
- data.tar.gz: 4fc7e20a83dde8beb53fadebffb6290791f2f89f791e4ad3b0674cfbbe176d8b
3
+ metadata.gz: 7e8bc983a56021ede01acb6d10fadfd4b7c9a93b17e34a71258760042ba317c6
4
+ data.tar.gz: ec0a7041e87cc91f1534550a004e1607a4eda81a1457af4ff8d058f7b7bbd37c
5
5
  SHA512:
6
- metadata.gz: 1e231ad743ecdab92e3166aa23f263372ff0f7489613e50f066581f20a3f0616373c8eb5d051ea4384beba33a9b0ab88bbe77407c77c7c00ac60db1d6d95c749
7
- data.tar.gz: dcc3d906d5aca728b34a5f603ba3ab77985d8be448881529ab23673ddfb8017bd7f3f98e5990dd96286fc7e423b2a4bac15073df82771d1c1218dcb6861baf9a
6
+ metadata.gz: 72417373102c0967f6c79ce66bd6588ad1c9321f6b84cbe04e38cb9eb74d54d877d9b4837ef7bfabc5c0ae3578927deb4fb7b0e532c7bf13a75bc0ed0484c527
7
+ data.tar.gz: d942fa7d7e378f1e6a651f370020bdf0bc120769db8e06f09ff0232e41b1e3b77fee02cdfa1baa5d6300b23085e3dc56163c0cc33cd46c3c8ec545bbd2d96af4
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.76.0 (2024-07-18)
5
+ ------------------
6
+
7
+ * Feature - Fix broken waiters for the acm-pca client. Waiters broke in version 1.13.144 of the Boto3 SDK.
8
+
4
9
  1.75.0 (2024-07-12)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.75.0
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.75.0'
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 | 40 |
2703
- # | certificate_authority_csr_created | {Client#get_certificate_authority_csr} | 3 | 40 |
2704
- # | certificate_issued | {Client#get_certificate} | 1 | 120 |
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 | 40 |
73
- # | certificate_authority_csr_created | {Client#get_certificate_authority_csr} | 3 | 40 |
74
- # | certificate_issued | {Client#get_certificate} | 1 | 120 |
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 (40)
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: 40,
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 (40)
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: 40,
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
- "expected" => false
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 (120)
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: 120,
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
- "expected" => false
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
  ]
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-acmpca/customizations'
53
53
  # @!group service
54
54
  module Aws::ACMPCA
55
55
 
56
- GEM_VERSION = '1.75.0'
56
+ GEM_VERSION = '1.76.0'
57
57
 
58
58
  end
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.75.0
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-12 00:00:00.000000000 Z
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