File tree Expand file tree Collapse file tree 2 files changed +43
-0
lines changed
services/eks/src/main/resources/codegen-resources Expand file tree Collapse file tree 2 files changed +43
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "type" : " feature" ,
3
+ "category" : " Amazon Elastic Kubernetes Service" ,
4
+ "contributor" : " " ,
5
+ "description" : " Added waiters for EKS FargateProfiles."
6
+ }
Original file line number Diff line number Diff line change 129
129
"state" : " success"
130
130
}
131
131
]
132
+ },
133
+ "FargateProfileActive" : {
134
+ "delay" : 10 ,
135
+ "operation" : " DescribeFargateProfile" ,
136
+ "maxAttempts" : 60 ,
137
+ "acceptors" : [
138
+ {
139
+ "expected" : " CREATE_FAILED" ,
140
+ "matcher" : " path" ,
141
+ "state" : " failure" ,
142
+ "argument" : " fargateProfile.status"
143
+ },
144
+ {
145
+ "expected" : " ACTIVE" ,
146
+ "matcher" : " path" ,
147
+ "state" : " success" ,
148
+ "argument" : " fargateProfile.status"
149
+ }
150
+ ]
151
+ },
152
+ "FargateProfileDeleted" : {
153
+ "delay" : 30 ,
154
+ "operation" : " DescribeFargateProfile" ,
155
+ "maxAttempts" : 60 ,
156
+ "acceptors" : [
157
+ {
158
+ "expected" : " DELETE_FAILED" ,
159
+ "matcher" : " path" ,
160
+ "state" : " failure" ,
161
+ "argument" : " fargateProfile.status"
162
+ },
163
+ {
164
+ "expected" : " ResourceNotFoundException" ,
165
+ "matcher" : " error" ,
166
+ "state" : " success"
167
+ }
168
+ ]
132
169
}
133
170
}
134
171
}
You can’t perform that action at this time.
0 commit comments