aws-sdk-eks 1.45.0 → 1.46.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -69,6 +69,8 @@ module Aws::EKS
69
69
  #
70
70
  # | waiter_name | params | :delay | :max_attempts |
71
71
  # | ----------------- | --------------------------- | -------- | ------------- |
72
+ # | addon_active | {Client#describe_addon} | 10 | 60 |
73
+ # | addon_deleted | {Client#describe_addon} | 10 | 60 |
72
74
  # | cluster_active | {Client#describe_cluster} | 30 | 40 |
73
75
  # | cluster_deleted | {Client#describe_cluster} | 30 | 40 |
74
76
  # | nodegroup_active | {Client#describe_nodegroup} | 30 | 80 |
@@ -76,6 +78,93 @@ module Aws::EKS
76
78
  #
77
79
  module Waiters
78
80
 
81
+ class AddonActive
82
+
83
+ # @param [Hash] options
84
+ # @option options [required, Client] :client
85
+ # @option options [Integer] :max_attempts (60)
86
+ # @option options [Integer] :delay (10)
87
+ # @option options [Proc] :before_attempt
88
+ # @option options [Proc] :before_wait
89
+ def initialize(options)
90
+ @client = options.fetch(:client)
91
+ @waiter = Aws::Waiters::Waiter.new({
92
+ max_attempts: 60,
93
+ delay: 10,
94
+ poller: Aws::Waiters::Poller.new(
95
+ operation_name: :describe_addon,
96
+ acceptors: [
97
+ {
98
+ "expected" => "CREATE_FAILED",
99
+ "matcher" => "path",
100
+ "state" => "failure",
101
+ "argument" => "addon.status"
102
+ },
103
+ {
104
+ "expected" => "ACTIVE",
105
+ "matcher" => "path",
106
+ "state" => "success",
107
+ "argument" => "addon.status"
108
+ }
109
+ ]
110
+ )
111
+ }.merge(options))
112
+ end
113
+
114
+ # @option (see Client#describe_addon)
115
+ # @return (see Client#describe_addon)
116
+ def wait(params = {})
117
+ @waiter.wait(client: @client, params: params)
118
+ end
119
+
120
+ # @api private
121
+ attr_reader :waiter
122
+
123
+ end
124
+
125
+ class AddonDeleted
126
+
127
+ # @param [Hash] options
128
+ # @option options [required, Client] :client
129
+ # @option options [Integer] :max_attempts (60)
130
+ # @option options [Integer] :delay (10)
131
+ # @option options [Proc] :before_attempt
132
+ # @option options [Proc] :before_wait
133
+ def initialize(options)
134
+ @client = options.fetch(:client)
135
+ @waiter = Aws::Waiters::Waiter.new({
136
+ max_attempts: 60,
137
+ delay: 10,
138
+ poller: Aws::Waiters::Poller.new(
139
+ operation_name: :describe_addon,
140
+ acceptors: [
141
+ {
142
+ "expected" => "DELETE_FAILED",
143
+ "matcher" => "path",
144
+ "state" => "failure",
145
+ "argument" => "addon.status"
146
+ },
147
+ {
148
+ "expected" => "ResourceNotFoundException",
149
+ "matcher" => "error",
150
+ "state" => "success"
151
+ }
152
+ ]
153
+ )
154
+ }.merge(options))
155
+ end
156
+
157
+ # @option (see Client#describe_addon)
158
+ # @return (see Client#describe_addon)
159
+ def wait(params = {})
160
+ @waiter.wait(client: @client, params: params)
161
+ end
162
+
163
+ # @api private
164
+ attr_reader :waiter
165
+
166
+ end
167
+
79
168
  class ClusterActive
80
169
 
81
170
  # @param [Hash] options
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-eks
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.45.0
4
+ version: 1.46.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: 2020-10-09 00:00:00.000000000 Z
11
+ date: 2020-12-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core