@aws-sdk/client-eks 3.186.0 → 3.188.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.
- package/CHANGELOG.md +8 -0
- package/dist-es/EKS.js +138 -145
- package/dist-es/EKSClient.js +22 -28
- package/dist-es/commands/AssociateEncryptionConfigCommand.js +21 -28
- package/dist-es/commands/AssociateIdentityProviderConfigCommand.js +21 -28
- package/dist-es/commands/CreateAddonCommand.js +21 -28
- package/dist-es/commands/CreateClusterCommand.js +21 -28
- package/dist-es/commands/CreateFargateProfileCommand.js +21 -28
- package/dist-es/commands/CreateNodegroupCommand.js +21 -28
- package/dist-es/commands/DeleteAddonCommand.js +21 -28
- package/dist-es/commands/DeleteClusterCommand.js +21 -28
- package/dist-es/commands/DeleteFargateProfileCommand.js +21 -28
- package/dist-es/commands/DeleteNodegroupCommand.js +21 -28
- package/dist-es/commands/DeregisterClusterCommand.js +21 -28
- package/dist-es/commands/DescribeAddonCommand.js +21 -28
- package/dist-es/commands/DescribeAddonVersionsCommand.js +21 -28
- package/dist-es/commands/DescribeClusterCommand.js +21 -28
- package/dist-es/commands/DescribeFargateProfileCommand.js +21 -28
- package/dist-es/commands/DescribeIdentityProviderConfigCommand.js +21 -28
- package/dist-es/commands/DescribeNodegroupCommand.js +21 -28
- package/dist-es/commands/DescribeUpdateCommand.js +21 -28
- package/dist-es/commands/DisassociateIdentityProviderConfigCommand.js +21 -28
- package/dist-es/commands/ListAddonsCommand.js +21 -28
- package/dist-es/commands/ListClustersCommand.js +21 -28
- package/dist-es/commands/ListFargateProfilesCommand.js +21 -28
- package/dist-es/commands/ListIdentityProviderConfigsCommand.js +21 -28
- package/dist-es/commands/ListNodegroupsCommand.js +21 -28
- package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
- package/dist-es/commands/ListUpdatesCommand.js +21 -28
- package/dist-es/commands/RegisterClusterCommand.js +21 -28
- package/dist-es/commands/TagResourceCommand.js +21 -28
- package/dist-es/commands/UntagResourceCommand.js +21 -28
- package/dist-es/commands/UpdateAddonCommand.js +21 -28
- package/dist-es/commands/UpdateClusterConfigCommand.js +21 -28
- package/dist-es/commands/UpdateClusterVersionCommand.js +21 -28
- package/dist-es/commands/UpdateNodegroupConfigCommand.js +21 -28
- package/dist-es/commands/UpdateNodegroupVersionCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/EKSServiceException.js +5 -10
- package/dist-es/models/models_0.js +507 -282
- package/dist-es/pagination/DescribeAddonVersionsPaginator.js +25 -68
- package/dist-es/pagination/ListAddonsPaginator.js +25 -68
- package/dist-es/pagination/ListClustersPaginator.js +25 -68
- package/dist-es/pagination/ListFargateProfilesPaginator.js +25 -68
- package/dist-es/pagination/ListIdentityProviderConfigsPaginator.js +25 -68
- package/dist-es/pagination/ListNodegroupsPaginator.js +25 -68
- package/dist-es/pagination/ListUpdatesPaginator.js +25 -68
- package/dist-es/protocols/Aws_restJson1.js +2836 -3829
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/dist-es/waiters/waitForAddonActive.js +45 -65
- package/dist-es/waiters/waitForAddonDeleted.js +30 -50
- package/dist-es/waiters/waitForClusterActive.js +45 -65
- package/dist-es/waiters/waitForClusterDeleted.js +48 -68
- package/dist-es/waiters/waitForFargateProfileActive.js +36 -56
- package/dist-es/waiters/waitForFargateProfileDeleted.js +30 -50
- package/dist-es/waiters/waitForNodegroupActive.js +36 -56
- package/dist-es/waiters/waitForNodegroupDeleted.js +30 -50
- package/package.json +34 -34
|
@@ -1,17 +1,16 @@
|
|
|
1
|
-
import { __assign, __extends } from "tslib";
|
|
2
1
|
import { EKSServiceException as __BaseException } from "./EKSServiceException";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
2
|
+
export class AccessDeniedException extends __BaseException {
|
|
3
|
+
constructor(opts) {
|
|
4
|
+
super({
|
|
5
|
+
name: "AccessDeniedException",
|
|
6
|
+
$fault: "client",
|
|
7
|
+
...opts,
|
|
8
|
+
});
|
|
9
|
+
this.name = "AccessDeniedException";
|
|
10
|
+
this.$fault = "client";
|
|
11
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
11
12
|
}
|
|
12
|
-
|
|
13
|
-
}(__BaseException));
|
|
14
|
-
export { AccessDeniedException };
|
|
13
|
+
}
|
|
15
14
|
export var AddonIssueCode;
|
|
16
15
|
(function (AddonIssueCode) {
|
|
17
16
|
AddonIssueCode["ACCESS_DENIED"] = "AccessDenied";
|
|
@@ -87,98 +86,98 @@ export var UpdateType;
|
|
|
87
86
|
UpdateType["LOGGING_UPDATE"] = "LoggingUpdate";
|
|
88
87
|
UpdateType["VERSION_UPDATE"] = "VersionUpdate";
|
|
89
88
|
})(UpdateType || (UpdateType = {}));
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
89
|
+
export class ClientException extends __BaseException {
|
|
90
|
+
constructor(opts) {
|
|
91
|
+
super({
|
|
92
|
+
name: "ClientException",
|
|
93
|
+
$fault: "client",
|
|
94
|
+
...opts,
|
|
95
|
+
});
|
|
96
|
+
this.name = "ClientException";
|
|
97
|
+
this.$fault = "client";
|
|
98
|
+
Object.setPrototypeOf(this, ClientException.prototype);
|
|
99
|
+
this.clusterName = opts.clusterName;
|
|
100
|
+
this.nodegroupName = opts.nodegroupName;
|
|
101
|
+
this.addonName = opts.addonName;
|
|
101
102
|
}
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
103
|
+
}
|
|
104
|
+
export class InvalidParameterException extends __BaseException {
|
|
105
|
+
constructor(opts) {
|
|
106
|
+
super({
|
|
107
|
+
name: "InvalidParameterException",
|
|
108
|
+
$fault: "client",
|
|
109
|
+
...opts,
|
|
110
|
+
});
|
|
111
|
+
this.name = "InvalidParameterException";
|
|
112
|
+
this.$fault = "client";
|
|
113
|
+
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
114
|
+
this.clusterName = opts.clusterName;
|
|
115
|
+
this.nodegroupName = opts.nodegroupName;
|
|
116
|
+
this.fargateProfileName = opts.fargateProfileName;
|
|
117
|
+
this.addonName = opts.addonName;
|
|
117
118
|
}
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
119
|
+
}
|
|
120
|
+
export class InvalidRequestException extends __BaseException {
|
|
121
|
+
constructor(opts) {
|
|
122
|
+
super({
|
|
123
|
+
name: "InvalidRequestException",
|
|
124
|
+
$fault: "client",
|
|
125
|
+
...opts,
|
|
126
|
+
});
|
|
127
|
+
this.name = "InvalidRequestException";
|
|
128
|
+
this.$fault = "client";
|
|
129
|
+
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
130
|
+
this.clusterName = opts.clusterName;
|
|
131
|
+
this.nodegroupName = opts.nodegroupName;
|
|
132
|
+
this.addonName = opts.addonName;
|
|
132
133
|
}
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
134
|
+
}
|
|
135
|
+
export class ResourceInUseException extends __BaseException {
|
|
136
|
+
constructor(opts) {
|
|
137
|
+
super({
|
|
138
|
+
name: "ResourceInUseException",
|
|
139
|
+
$fault: "client",
|
|
140
|
+
...opts,
|
|
141
|
+
});
|
|
142
|
+
this.name = "ResourceInUseException";
|
|
143
|
+
this.$fault = "client";
|
|
144
|
+
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
145
|
+
this.clusterName = opts.clusterName;
|
|
146
|
+
this.nodegroupName = opts.nodegroupName;
|
|
147
|
+
this.addonName = opts.addonName;
|
|
147
148
|
}
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
149
|
+
}
|
|
150
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
151
|
+
constructor(opts) {
|
|
152
|
+
super({
|
|
153
|
+
name: "ResourceNotFoundException",
|
|
154
|
+
$fault: "client",
|
|
155
|
+
...opts,
|
|
156
|
+
});
|
|
157
|
+
this.name = "ResourceNotFoundException";
|
|
158
|
+
this.$fault = "client";
|
|
159
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
160
|
+
this.clusterName = opts.clusterName;
|
|
161
|
+
this.nodegroupName = opts.nodegroupName;
|
|
162
|
+
this.fargateProfileName = opts.fargateProfileName;
|
|
163
|
+
this.addonName = opts.addonName;
|
|
163
164
|
}
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
165
|
+
}
|
|
166
|
+
export class ServerException extends __BaseException {
|
|
167
|
+
constructor(opts) {
|
|
168
|
+
super({
|
|
169
|
+
name: "ServerException",
|
|
170
|
+
$fault: "server",
|
|
171
|
+
...opts,
|
|
172
|
+
});
|
|
173
|
+
this.name = "ServerException";
|
|
174
|
+
this.$fault = "server";
|
|
175
|
+
Object.setPrototypeOf(this, ServerException.prototype);
|
|
176
|
+
this.clusterName = opts.clusterName;
|
|
177
|
+
this.nodegroupName = opts.nodegroupName;
|
|
178
|
+
this.addonName = opts.addonName;
|
|
178
179
|
}
|
|
179
|
-
|
|
180
|
-
}(__BaseException));
|
|
181
|
-
export { ServerException };
|
|
180
|
+
}
|
|
182
181
|
export var IpFamily;
|
|
183
182
|
(function (IpFamily) {
|
|
184
183
|
IpFamily["IPV4"] = "ipv4";
|
|
@@ -201,47 +200,47 @@ export var ClusterIssueCode;
|
|
|
201
200
|
ClusterIssueCode["RESOURCE_LIMIT_EXCEEDED"] = "ResourceLimitExceeded";
|
|
202
201
|
ClusterIssueCode["RESOURCE_NOT_FOUND"] = "ResourceNotFound";
|
|
203
202
|
})(ClusterIssueCode || (ClusterIssueCode = {}));
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
203
|
+
export class ResourceLimitExceededException extends __BaseException {
|
|
204
|
+
constructor(opts) {
|
|
205
|
+
super({
|
|
206
|
+
name: "ResourceLimitExceededException",
|
|
207
|
+
$fault: "client",
|
|
208
|
+
...opts,
|
|
209
|
+
});
|
|
210
|
+
this.name = "ResourceLimitExceededException";
|
|
211
|
+
this.$fault = "client";
|
|
212
|
+
Object.setPrototypeOf(this, ResourceLimitExceededException.prototype);
|
|
213
|
+
this.clusterName = opts.clusterName;
|
|
214
|
+
this.nodegroupName = opts.nodegroupName;
|
|
214
215
|
}
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
216
|
+
}
|
|
217
|
+
export class ServiceUnavailableException extends __BaseException {
|
|
218
|
+
constructor(opts) {
|
|
219
|
+
super({
|
|
220
|
+
name: "ServiceUnavailableException",
|
|
221
|
+
$fault: "server",
|
|
222
|
+
...opts,
|
|
223
|
+
});
|
|
224
|
+
this.name = "ServiceUnavailableException";
|
|
225
|
+
this.$fault = "server";
|
|
226
|
+
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
226
227
|
}
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
228
|
+
}
|
|
229
|
+
export class UnsupportedAvailabilityZoneException extends __BaseException {
|
|
230
|
+
constructor(opts) {
|
|
231
|
+
super({
|
|
232
|
+
name: "UnsupportedAvailabilityZoneException",
|
|
233
|
+
$fault: "client",
|
|
234
|
+
...opts,
|
|
235
|
+
});
|
|
236
|
+
this.name = "UnsupportedAvailabilityZoneException";
|
|
237
|
+
this.$fault = "client";
|
|
238
|
+
Object.setPrototypeOf(this, UnsupportedAvailabilityZoneException.prototype);
|
|
239
|
+
this.clusterName = opts.clusterName;
|
|
240
|
+
this.nodegroupName = opts.nodegroupName;
|
|
241
|
+
this.validZones = opts.validZones;
|
|
241
242
|
}
|
|
242
|
-
|
|
243
|
-
}(__BaseException));
|
|
244
|
-
export { UnsupportedAvailabilityZoneException };
|
|
243
|
+
}
|
|
245
244
|
export var TaintEffect;
|
|
246
245
|
(function (TaintEffect) {
|
|
247
246
|
TaintEffect["NO_EXECUTE"] = "NO_EXECUTE";
|
|
@@ -276,30 +275,30 @@ export var ConfigStatus;
|
|
|
276
275
|
ConfigStatus["CREATING"] = "CREATING";
|
|
277
276
|
ConfigStatus["DELETING"] = "DELETING";
|
|
278
277
|
})(ConfigStatus || (ConfigStatus = {}));
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
278
|
+
export class BadRequestException extends __BaseException {
|
|
279
|
+
constructor(opts) {
|
|
280
|
+
super({
|
|
281
|
+
name: "BadRequestException",
|
|
282
|
+
$fault: "client",
|
|
283
|
+
...opts,
|
|
284
|
+
});
|
|
285
|
+
this.name = "BadRequestException";
|
|
286
|
+
this.$fault = "client";
|
|
287
|
+
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
287
288
|
}
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
289
|
+
}
|
|
290
|
+
export class NotFoundException extends __BaseException {
|
|
291
|
+
constructor(opts) {
|
|
292
|
+
super({
|
|
293
|
+
name: "NotFoundException",
|
|
294
|
+
$fault: "client",
|
|
295
|
+
...opts,
|
|
296
|
+
});
|
|
297
|
+
this.name = "NotFoundException";
|
|
298
|
+
this.$fault = "client";
|
|
299
|
+
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
299
300
|
}
|
|
300
|
-
|
|
301
|
-
}(__BaseException));
|
|
302
|
-
export { NotFoundException };
|
|
301
|
+
}
|
|
303
302
|
export var ConnectorConfigProvider;
|
|
304
303
|
(function (ConnectorConfigProvider) {
|
|
305
304
|
ConnectorConfigProvider["AKS"] = "AKS";
|
|
@@ -312,128 +311,354 @@ export var ConnectorConfigProvider;
|
|
|
312
311
|
ConnectorConfigProvider["RANCHER"] = "RANCHER";
|
|
313
312
|
ConnectorConfigProvider["TANZU"] = "TANZU";
|
|
314
313
|
})(ConnectorConfigProvider || (ConnectorConfigProvider = {}));
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
314
|
+
export class ResourcePropagationDelayException extends __BaseException {
|
|
315
|
+
constructor(opts) {
|
|
316
|
+
super({
|
|
317
|
+
name: "ResourcePropagationDelayException",
|
|
318
|
+
$fault: "client",
|
|
319
|
+
...opts,
|
|
320
|
+
});
|
|
321
|
+
this.name = "ResourcePropagationDelayException";
|
|
322
|
+
this.$fault = "client";
|
|
323
|
+
Object.setPrototypeOf(this, ResourcePropagationDelayException.prototype);
|
|
323
324
|
}
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
export
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
export
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
export
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
export
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
export
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
export
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
export
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
export
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
export
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
export
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
export
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
export
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
export
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
export
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
export
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
export
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
export
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
export
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
export
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
export
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
export
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
export
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
export
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
export
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
export
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
export
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
export
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
export
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
export
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
export
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
export
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
export
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
export
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
export
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
export
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
export
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
export
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
export
|
|
325
|
+
}
|
|
326
|
+
export const AddonIssueFilterSensitiveLog = (obj) => ({
|
|
327
|
+
...obj,
|
|
328
|
+
});
|
|
329
|
+
export const AddonHealthFilterSensitiveLog = (obj) => ({
|
|
330
|
+
...obj,
|
|
331
|
+
});
|
|
332
|
+
export const AddonFilterSensitiveLog = (obj) => ({
|
|
333
|
+
...obj,
|
|
334
|
+
});
|
|
335
|
+
export const CompatibilityFilterSensitiveLog = (obj) => ({
|
|
336
|
+
...obj,
|
|
337
|
+
});
|
|
338
|
+
export const AddonVersionInfoFilterSensitiveLog = (obj) => ({
|
|
339
|
+
...obj,
|
|
340
|
+
});
|
|
341
|
+
export const AddonInfoFilterSensitiveLog = (obj) => ({
|
|
342
|
+
...obj,
|
|
343
|
+
});
|
|
344
|
+
export const ProviderFilterSensitiveLog = (obj) => ({
|
|
345
|
+
...obj,
|
|
346
|
+
});
|
|
347
|
+
export const EncryptionConfigFilterSensitiveLog = (obj) => ({
|
|
348
|
+
...obj,
|
|
349
|
+
});
|
|
350
|
+
export const AssociateEncryptionConfigRequestFilterSensitiveLog = (obj) => ({
|
|
351
|
+
...obj,
|
|
352
|
+
});
|
|
353
|
+
export const ErrorDetailFilterSensitiveLog = (obj) => ({
|
|
354
|
+
...obj,
|
|
355
|
+
});
|
|
356
|
+
export const UpdateParamFilterSensitiveLog = (obj) => ({
|
|
357
|
+
...obj,
|
|
358
|
+
});
|
|
359
|
+
export const UpdateFilterSensitiveLog = (obj) => ({
|
|
360
|
+
...obj,
|
|
361
|
+
});
|
|
362
|
+
export const AssociateEncryptionConfigResponseFilterSensitiveLog = (obj) => ({
|
|
363
|
+
...obj,
|
|
364
|
+
});
|
|
365
|
+
export const OidcIdentityProviderConfigRequestFilterSensitiveLog = (obj) => ({
|
|
366
|
+
...obj,
|
|
367
|
+
});
|
|
368
|
+
export const AssociateIdentityProviderConfigRequestFilterSensitiveLog = (obj) => ({
|
|
369
|
+
...obj,
|
|
370
|
+
});
|
|
371
|
+
export const AssociateIdentityProviderConfigResponseFilterSensitiveLog = (obj) => ({
|
|
372
|
+
...obj,
|
|
373
|
+
});
|
|
374
|
+
export const AutoScalingGroupFilterSensitiveLog = (obj) => ({
|
|
375
|
+
...obj,
|
|
376
|
+
});
|
|
377
|
+
export const CreateAddonRequestFilterSensitiveLog = (obj) => ({
|
|
378
|
+
...obj,
|
|
379
|
+
});
|
|
380
|
+
export const CreateAddonResponseFilterSensitiveLog = (obj) => ({
|
|
381
|
+
...obj,
|
|
382
|
+
});
|
|
383
|
+
export const KubernetesNetworkConfigRequestFilterSensitiveLog = (obj) => ({
|
|
384
|
+
...obj,
|
|
385
|
+
});
|
|
386
|
+
export const LogSetupFilterSensitiveLog = (obj) => ({
|
|
387
|
+
...obj,
|
|
388
|
+
});
|
|
389
|
+
export const LoggingFilterSensitiveLog = (obj) => ({
|
|
390
|
+
...obj,
|
|
391
|
+
});
|
|
392
|
+
export const OutpostConfigRequestFilterSensitiveLog = (obj) => ({
|
|
393
|
+
...obj,
|
|
394
|
+
});
|
|
395
|
+
export const VpcConfigRequestFilterSensitiveLog = (obj) => ({
|
|
396
|
+
...obj,
|
|
397
|
+
});
|
|
398
|
+
export const CreateClusterRequestFilterSensitiveLog = (obj) => ({
|
|
399
|
+
...obj,
|
|
400
|
+
});
|
|
401
|
+
export const CertificateFilterSensitiveLog = (obj) => ({
|
|
402
|
+
...obj,
|
|
403
|
+
});
|
|
404
|
+
export const ConnectorConfigResponseFilterSensitiveLog = (obj) => ({
|
|
405
|
+
...obj,
|
|
406
|
+
});
|
|
407
|
+
export const ClusterIssueFilterSensitiveLog = (obj) => ({
|
|
408
|
+
...obj,
|
|
409
|
+
});
|
|
410
|
+
export const ClusterHealthFilterSensitiveLog = (obj) => ({
|
|
411
|
+
...obj,
|
|
412
|
+
});
|
|
413
|
+
export const OIDCFilterSensitiveLog = (obj) => ({
|
|
414
|
+
...obj,
|
|
415
|
+
});
|
|
416
|
+
export const IdentityFilterSensitiveLog = (obj) => ({
|
|
417
|
+
...obj,
|
|
418
|
+
});
|
|
419
|
+
export const KubernetesNetworkConfigResponseFilterSensitiveLog = (obj) => ({
|
|
420
|
+
...obj,
|
|
421
|
+
});
|
|
422
|
+
export const OutpostConfigResponseFilterSensitiveLog = (obj) => ({
|
|
423
|
+
...obj,
|
|
424
|
+
});
|
|
425
|
+
export const VpcConfigResponseFilterSensitiveLog = (obj) => ({
|
|
426
|
+
...obj,
|
|
427
|
+
});
|
|
428
|
+
export const ClusterFilterSensitiveLog = (obj) => ({
|
|
429
|
+
...obj,
|
|
430
|
+
});
|
|
431
|
+
export const CreateClusterResponseFilterSensitiveLog = (obj) => ({
|
|
432
|
+
...obj,
|
|
433
|
+
});
|
|
434
|
+
export const FargateProfileSelectorFilterSensitiveLog = (obj) => ({
|
|
435
|
+
...obj,
|
|
436
|
+
});
|
|
437
|
+
export const CreateFargateProfileRequestFilterSensitiveLog = (obj) => ({
|
|
438
|
+
...obj,
|
|
439
|
+
});
|
|
440
|
+
export const FargateProfileFilterSensitiveLog = (obj) => ({
|
|
441
|
+
...obj,
|
|
442
|
+
});
|
|
443
|
+
export const CreateFargateProfileResponseFilterSensitiveLog = (obj) => ({
|
|
444
|
+
...obj,
|
|
445
|
+
});
|
|
446
|
+
export const LaunchTemplateSpecificationFilterSensitiveLog = (obj) => ({
|
|
447
|
+
...obj,
|
|
448
|
+
});
|
|
449
|
+
export const RemoteAccessConfigFilterSensitiveLog = (obj) => ({
|
|
450
|
+
...obj,
|
|
451
|
+
});
|
|
452
|
+
export const NodegroupScalingConfigFilterSensitiveLog = (obj) => ({
|
|
453
|
+
...obj,
|
|
454
|
+
});
|
|
455
|
+
export const TaintFilterSensitiveLog = (obj) => ({
|
|
456
|
+
...obj,
|
|
457
|
+
});
|
|
458
|
+
export const NodegroupUpdateConfigFilterSensitiveLog = (obj) => ({
|
|
459
|
+
...obj,
|
|
460
|
+
});
|
|
461
|
+
export const CreateNodegroupRequestFilterSensitiveLog = (obj) => ({
|
|
462
|
+
...obj,
|
|
463
|
+
});
|
|
464
|
+
export const IssueFilterSensitiveLog = (obj) => ({
|
|
465
|
+
...obj,
|
|
466
|
+
});
|
|
467
|
+
export const NodegroupHealthFilterSensitiveLog = (obj) => ({
|
|
468
|
+
...obj,
|
|
469
|
+
});
|
|
470
|
+
export const NodegroupResourcesFilterSensitiveLog = (obj) => ({
|
|
471
|
+
...obj,
|
|
472
|
+
});
|
|
473
|
+
export const NodegroupFilterSensitiveLog = (obj) => ({
|
|
474
|
+
...obj,
|
|
475
|
+
});
|
|
476
|
+
export const CreateNodegroupResponseFilterSensitiveLog = (obj) => ({
|
|
477
|
+
...obj,
|
|
478
|
+
});
|
|
479
|
+
export const DeleteAddonRequestFilterSensitiveLog = (obj) => ({
|
|
480
|
+
...obj,
|
|
481
|
+
});
|
|
482
|
+
export const DeleteAddonResponseFilterSensitiveLog = (obj) => ({
|
|
483
|
+
...obj,
|
|
484
|
+
});
|
|
485
|
+
export const DeleteClusterRequestFilterSensitiveLog = (obj) => ({
|
|
486
|
+
...obj,
|
|
487
|
+
});
|
|
488
|
+
export const DeleteClusterResponseFilterSensitiveLog = (obj) => ({
|
|
489
|
+
...obj,
|
|
490
|
+
});
|
|
491
|
+
export const DeleteFargateProfileRequestFilterSensitiveLog = (obj) => ({
|
|
492
|
+
...obj,
|
|
493
|
+
});
|
|
494
|
+
export const DeleteFargateProfileResponseFilterSensitiveLog = (obj) => ({
|
|
495
|
+
...obj,
|
|
496
|
+
});
|
|
497
|
+
export const DeleteNodegroupRequestFilterSensitiveLog = (obj) => ({
|
|
498
|
+
...obj,
|
|
499
|
+
});
|
|
500
|
+
export const DeleteNodegroupResponseFilterSensitiveLog = (obj) => ({
|
|
501
|
+
...obj,
|
|
502
|
+
});
|
|
503
|
+
export const DeregisterClusterRequestFilterSensitiveLog = (obj) => ({
|
|
504
|
+
...obj,
|
|
505
|
+
});
|
|
506
|
+
export const DeregisterClusterResponseFilterSensitiveLog = (obj) => ({
|
|
507
|
+
...obj,
|
|
508
|
+
});
|
|
509
|
+
export const DescribeAddonRequestFilterSensitiveLog = (obj) => ({
|
|
510
|
+
...obj,
|
|
511
|
+
});
|
|
512
|
+
export const DescribeAddonResponseFilterSensitiveLog = (obj) => ({
|
|
513
|
+
...obj,
|
|
514
|
+
});
|
|
515
|
+
export const DescribeAddonVersionsRequestFilterSensitiveLog = (obj) => ({
|
|
516
|
+
...obj,
|
|
517
|
+
});
|
|
518
|
+
export const DescribeAddonVersionsResponseFilterSensitiveLog = (obj) => ({
|
|
519
|
+
...obj,
|
|
520
|
+
});
|
|
521
|
+
export const DescribeClusterRequestFilterSensitiveLog = (obj) => ({
|
|
522
|
+
...obj,
|
|
523
|
+
});
|
|
524
|
+
export const DescribeClusterResponseFilterSensitiveLog = (obj) => ({
|
|
525
|
+
...obj,
|
|
526
|
+
});
|
|
527
|
+
export const DescribeFargateProfileRequestFilterSensitiveLog = (obj) => ({
|
|
528
|
+
...obj,
|
|
529
|
+
});
|
|
530
|
+
export const DescribeFargateProfileResponseFilterSensitiveLog = (obj) => ({
|
|
531
|
+
...obj,
|
|
532
|
+
});
|
|
533
|
+
export const IdentityProviderConfigFilterSensitiveLog = (obj) => ({
|
|
534
|
+
...obj,
|
|
535
|
+
});
|
|
536
|
+
export const DescribeIdentityProviderConfigRequestFilterSensitiveLog = (obj) => ({
|
|
537
|
+
...obj,
|
|
538
|
+
});
|
|
539
|
+
export const OidcIdentityProviderConfigFilterSensitiveLog = (obj) => ({
|
|
540
|
+
...obj,
|
|
541
|
+
});
|
|
542
|
+
export const IdentityProviderConfigResponseFilterSensitiveLog = (obj) => ({
|
|
543
|
+
...obj,
|
|
544
|
+
});
|
|
545
|
+
export const DescribeIdentityProviderConfigResponseFilterSensitiveLog = (obj) => ({
|
|
546
|
+
...obj,
|
|
547
|
+
});
|
|
548
|
+
export const DescribeNodegroupRequestFilterSensitiveLog = (obj) => ({
|
|
549
|
+
...obj,
|
|
550
|
+
});
|
|
551
|
+
export const DescribeNodegroupResponseFilterSensitiveLog = (obj) => ({
|
|
552
|
+
...obj,
|
|
553
|
+
});
|
|
554
|
+
export const DescribeUpdateRequestFilterSensitiveLog = (obj) => ({
|
|
555
|
+
...obj,
|
|
556
|
+
});
|
|
557
|
+
export const DescribeUpdateResponseFilterSensitiveLog = (obj) => ({
|
|
558
|
+
...obj,
|
|
559
|
+
});
|
|
560
|
+
export const DisassociateIdentityProviderConfigRequestFilterSensitiveLog = (obj) => ({
|
|
561
|
+
...obj,
|
|
562
|
+
});
|
|
563
|
+
export const DisassociateIdentityProviderConfigResponseFilterSensitiveLog = (obj) => ({
|
|
564
|
+
...obj,
|
|
565
|
+
});
|
|
566
|
+
export const ListAddonsRequestFilterSensitiveLog = (obj) => ({
|
|
567
|
+
...obj,
|
|
568
|
+
});
|
|
569
|
+
export const ListAddonsResponseFilterSensitiveLog = (obj) => ({
|
|
570
|
+
...obj,
|
|
571
|
+
});
|
|
572
|
+
export const ListClustersRequestFilterSensitiveLog = (obj) => ({
|
|
573
|
+
...obj,
|
|
574
|
+
});
|
|
575
|
+
export const ListClustersResponseFilterSensitiveLog = (obj) => ({
|
|
576
|
+
...obj,
|
|
577
|
+
});
|
|
578
|
+
export const ListFargateProfilesRequestFilterSensitiveLog = (obj) => ({
|
|
579
|
+
...obj,
|
|
580
|
+
});
|
|
581
|
+
export const ListFargateProfilesResponseFilterSensitiveLog = (obj) => ({
|
|
582
|
+
...obj,
|
|
583
|
+
});
|
|
584
|
+
export const ListIdentityProviderConfigsRequestFilterSensitiveLog = (obj) => ({
|
|
585
|
+
...obj,
|
|
586
|
+
});
|
|
587
|
+
export const ListIdentityProviderConfigsResponseFilterSensitiveLog = (obj) => ({
|
|
588
|
+
...obj,
|
|
589
|
+
});
|
|
590
|
+
export const ListNodegroupsRequestFilterSensitiveLog = (obj) => ({
|
|
591
|
+
...obj,
|
|
592
|
+
});
|
|
593
|
+
export const ListNodegroupsResponseFilterSensitiveLog = (obj) => ({
|
|
594
|
+
...obj,
|
|
595
|
+
});
|
|
596
|
+
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
597
|
+
...obj,
|
|
598
|
+
});
|
|
599
|
+
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
600
|
+
...obj,
|
|
601
|
+
});
|
|
602
|
+
export const ListUpdatesRequestFilterSensitiveLog = (obj) => ({
|
|
603
|
+
...obj,
|
|
604
|
+
});
|
|
605
|
+
export const ListUpdatesResponseFilterSensitiveLog = (obj) => ({
|
|
606
|
+
...obj,
|
|
607
|
+
});
|
|
608
|
+
export const ConnectorConfigRequestFilterSensitiveLog = (obj) => ({
|
|
609
|
+
...obj,
|
|
610
|
+
});
|
|
611
|
+
export const RegisterClusterRequestFilterSensitiveLog = (obj) => ({
|
|
612
|
+
...obj,
|
|
613
|
+
});
|
|
614
|
+
export const RegisterClusterResponseFilterSensitiveLog = (obj) => ({
|
|
615
|
+
...obj,
|
|
616
|
+
});
|
|
617
|
+
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
618
|
+
...obj,
|
|
619
|
+
});
|
|
620
|
+
export const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
621
|
+
...obj,
|
|
622
|
+
});
|
|
623
|
+
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
624
|
+
...obj,
|
|
625
|
+
});
|
|
626
|
+
export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
627
|
+
...obj,
|
|
628
|
+
});
|
|
629
|
+
export const UpdateAddonRequestFilterSensitiveLog = (obj) => ({
|
|
630
|
+
...obj,
|
|
631
|
+
});
|
|
632
|
+
export const UpdateAddonResponseFilterSensitiveLog = (obj) => ({
|
|
633
|
+
...obj,
|
|
634
|
+
});
|
|
635
|
+
export const UpdateClusterConfigRequestFilterSensitiveLog = (obj) => ({
|
|
636
|
+
...obj,
|
|
637
|
+
});
|
|
638
|
+
export const UpdateClusterConfigResponseFilterSensitiveLog = (obj) => ({
|
|
639
|
+
...obj,
|
|
640
|
+
});
|
|
641
|
+
export const UpdateClusterVersionRequestFilterSensitiveLog = (obj) => ({
|
|
642
|
+
...obj,
|
|
643
|
+
});
|
|
644
|
+
export const UpdateClusterVersionResponseFilterSensitiveLog = (obj) => ({
|
|
645
|
+
...obj,
|
|
646
|
+
});
|
|
647
|
+
export const UpdateLabelsPayloadFilterSensitiveLog = (obj) => ({
|
|
648
|
+
...obj,
|
|
649
|
+
});
|
|
650
|
+
export const UpdateTaintsPayloadFilterSensitiveLog = (obj) => ({
|
|
651
|
+
...obj,
|
|
652
|
+
});
|
|
653
|
+
export const UpdateNodegroupConfigRequestFilterSensitiveLog = (obj) => ({
|
|
654
|
+
...obj,
|
|
655
|
+
});
|
|
656
|
+
export const UpdateNodegroupConfigResponseFilterSensitiveLog = (obj) => ({
|
|
657
|
+
...obj,
|
|
658
|
+
});
|
|
659
|
+
export const UpdateNodegroupVersionRequestFilterSensitiveLog = (obj) => ({
|
|
660
|
+
...obj,
|
|
661
|
+
});
|
|
662
|
+
export const UpdateNodegroupVersionResponseFilterSensitiveLog = (obj) => ({
|
|
663
|
+
...obj,
|
|
664
|
+
});
|