@aws-sdk/client-eks 3.688.0 → 3.692.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/dist-types/models/models_0.d.ts +513 -513
- package/dist-types/ts3.4/models/models_0.d.ts +513 -513
- package/package.json +36 -36
|
@@ -23,12 +23,12 @@ export interface AccessConfigResponse {
|
|
|
23
23
|
* cluster admin access entry during cluster creation time.</p>
|
|
24
24
|
* @public
|
|
25
25
|
*/
|
|
26
|
-
bootstrapClusterCreatorAdminPermissions?: boolean;
|
|
26
|
+
bootstrapClusterCreatorAdminPermissions?: boolean | undefined;
|
|
27
27
|
/**
|
|
28
28
|
* <p>The current authentication mode of the cluster.</p>
|
|
29
29
|
* @public
|
|
30
30
|
*/
|
|
31
|
-
authenticationMode?: AuthenticationMode;
|
|
31
|
+
authenticationMode?: AuthenticationMode | undefined;
|
|
32
32
|
}
|
|
33
33
|
/**
|
|
34
34
|
* <p>You don't have permissions to perform the requested operation. The <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_terms-and-concepts.html">IAM principal</a>
|
|
@@ -59,7 +59,7 @@ export interface AccessEntry {
|
|
|
59
59
|
* <p>The name of your cluster.</p>
|
|
60
60
|
* @public
|
|
61
61
|
*/
|
|
62
|
-
clusterName?: string;
|
|
62
|
+
clusterName?: string | undefined;
|
|
63
63
|
/**
|
|
64
64
|
* <p>The ARN of the IAM principal for the access entry. If you ever delete
|
|
65
65
|
* the IAM principal with this ARN, the access entry isn't automatically
|
|
@@ -74,46 +74,46 @@ export interface AccessEntry {
|
|
|
74
74
|
* for an access entry, Amazon EKS stores it with the access entry.</p>
|
|
75
75
|
* @public
|
|
76
76
|
*/
|
|
77
|
-
principalArn?: string;
|
|
77
|
+
principalArn?: string | undefined;
|
|
78
78
|
/**
|
|
79
79
|
* <p>A <code>name</code> that you've specified in a Kubernetes <code>RoleBinding</code> or
|
|
80
80
|
* <code>ClusterRoleBinding</code> object so that Kubernetes authorizes the
|
|
81
81
|
* <code>principalARN</code> access to cluster objects.</p>
|
|
82
82
|
* @public
|
|
83
83
|
*/
|
|
84
|
-
kubernetesGroups?: string[];
|
|
84
|
+
kubernetesGroups?: string[] | undefined;
|
|
85
85
|
/**
|
|
86
86
|
* <p>The ARN of the access entry.</p>
|
|
87
87
|
* @public
|
|
88
88
|
*/
|
|
89
|
-
accessEntryArn?: string;
|
|
89
|
+
accessEntryArn?: string | undefined;
|
|
90
90
|
/**
|
|
91
91
|
* <p>The Unix epoch timestamp at object creation.</p>
|
|
92
92
|
* @public
|
|
93
93
|
*/
|
|
94
|
-
createdAt?: Date;
|
|
94
|
+
createdAt?: Date | undefined;
|
|
95
95
|
/**
|
|
96
96
|
* <p>The Unix epoch timestamp for the last modification to the object.</p>
|
|
97
97
|
* @public
|
|
98
98
|
*/
|
|
99
|
-
modifiedAt?: Date;
|
|
99
|
+
modifiedAt?: Date | undefined;
|
|
100
100
|
/**
|
|
101
101
|
* <p>Metadata that assists with categorization and organization.
|
|
102
102
|
* Each tag consists of a key and an optional value. You define both. Tags don't
|
|
103
103
|
* propagate to any other cluster or Amazon Web Services resources.</p>
|
|
104
104
|
* @public
|
|
105
105
|
*/
|
|
106
|
-
tags?: Record<string, string
|
|
106
|
+
tags?: Record<string, string> | undefined;
|
|
107
107
|
/**
|
|
108
108
|
* <p>The <code>name</code> of a user that can authenticate to your cluster.</p>
|
|
109
109
|
* @public
|
|
110
110
|
*/
|
|
111
|
-
username?: string;
|
|
111
|
+
username?: string | undefined;
|
|
112
112
|
/**
|
|
113
113
|
* <p>The type of the access entry.</p>
|
|
114
114
|
* @public
|
|
115
115
|
*/
|
|
116
|
-
type?: string;
|
|
116
|
+
type?: string | undefined;
|
|
117
117
|
}
|
|
118
118
|
/**
|
|
119
119
|
* <p>An access policy includes permissions that allow Amazon EKS to authorize an
|
|
@@ -132,12 +132,12 @@ export interface AccessPolicy {
|
|
|
132
132
|
* <p>The name of the access policy.</p>
|
|
133
133
|
* @public
|
|
134
134
|
*/
|
|
135
|
-
name?: string;
|
|
135
|
+
name?: string | undefined;
|
|
136
136
|
/**
|
|
137
137
|
* <p>The ARN of the access policy.</p>
|
|
138
138
|
* @public
|
|
139
139
|
*/
|
|
140
|
-
arn?: string;
|
|
140
|
+
arn?: string | undefined;
|
|
141
141
|
}
|
|
142
142
|
/**
|
|
143
143
|
* @public
|
|
@@ -161,13 +161,13 @@ export interface AccessScope {
|
|
|
161
161
|
* <p>The scope type of an access policy.</p>
|
|
162
162
|
* @public
|
|
163
163
|
*/
|
|
164
|
-
type?: AccessScopeType;
|
|
164
|
+
type?: AccessScopeType | undefined;
|
|
165
165
|
/**
|
|
166
166
|
* <p>A Kubernetes <code>namespace</code> that an access policy is scoped to. A value is required
|
|
167
167
|
* if you specified <code>namespace</code> for <code>Type</code>.</p>
|
|
168
168
|
* @public
|
|
169
169
|
*/
|
|
170
|
-
namespaces?: string[];
|
|
170
|
+
namespaces?: string[] | undefined;
|
|
171
171
|
}
|
|
172
172
|
/**
|
|
173
173
|
* @public
|
|
@@ -198,17 +198,17 @@ export interface AddonIssue {
|
|
|
198
198
|
* <p>A code that describes the type of issue.</p>
|
|
199
199
|
* @public
|
|
200
200
|
*/
|
|
201
|
-
code?: AddonIssueCode;
|
|
201
|
+
code?: AddonIssueCode | undefined;
|
|
202
202
|
/**
|
|
203
203
|
* <p>A message that provides details about the issue and what might cause it.</p>
|
|
204
204
|
* @public
|
|
205
205
|
*/
|
|
206
|
-
message?: string;
|
|
206
|
+
message?: string | undefined;
|
|
207
207
|
/**
|
|
208
208
|
* <p>The resource IDs of the issue.</p>
|
|
209
209
|
* @public
|
|
210
210
|
*/
|
|
211
|
-
resourceIds?: string[];
|
|
211
|
+
resourceIds?: string[] | undefined;
|
|
212
212
|
}
|
|
213
213
|
/**
|
|
214
214
|
* <p>The health of the add-on.</p>
|
|
@@ -219,7 +219,7 @@ export interface AddonHealth {
|
|
|
219
219
|
* <p>An object representing the health issues for an add-on.</p>
|
|
220
220
|
* @public
|
|
221
221
|
*/
|
|
222
|
-
issues?: AddonIssue[];
|
|
222
|
+
issues?: AddonIssue[] | undefined;
|
|
223
223
|
}
|
|
224
224
|
/**
|
|
225
225
|
* <p>Information about an Amazon EKS add-on from the Amazon Web Services Marketplace.</p>
|
|
@@ -230,12 +230,12 @@ export interface MarketplaceInformation {
|
|
|
230
230
|
* <p>The product ID from the Amazon Web Services Marketplace.</p>
|
|
231
231
|
* @public
|
|
232
232
|
*/
|
|
233
|
-
productId?: string;
|
|
233
|
+
productId?: string | undefined;
|
|
234
234
|
/**
|
|
235
235
|
* <p>The product URL from the Amazon Web Services Marketplace.</p>
|
|
236
236
|
* @public
|
|
237
237
|
*/
|
|
238
|
-
productUrl?: string;
|
|
238
|
+
productUrl?: string | undefined;
|
|
239
239
|
}
|
|
240
240
|
/**
|
|
241
241
|
* @public
|
|
@@ -265,81 +265,81 @@ export interface Addon {
|
|
|
265
265
|
* <p>The name of the add-on.</p>
|
|
266
266
|
* @public
|
|
267
267
|
*/
|
|
268
|
-
addonName?: string;
|
|
268
|
+
addonName?: string | undefined;
|
|
269
269
|
/**
|
|
270
270
|
* <p>The name of your cluster.</p>
|
|
271
271
|
* @public
|
|
272
272
|
*/
|
|
273
|
-
clusterName?: string;
|
|
273
|
+
clusterName?: string | undefined;
|
|
274
274
|
/**
|
|
275
275
|
* <p>The status of the add-on.</p>
|
|
276
276
|
* @public
|
|
277
277
|
*/
|
|
278
|
-
status?: AddonStatus;
|
|
278
|
+
status?: AddonStatus | undefined;
|
|
279
279
|
/**
|
|
280
280
|
* <p>The version of the add-on.</p>
|
|
281
281
|
* @public
|
|
282
282
|
*/
|
|
283
|
-
addonVersion?: string;
|
|
283
|
+
addonVersion?: string | undefined;
|
|
284
284
|
/**
|
|
285
285
|
* <p>An object that represents the health of the add-on.</p>
|
|
286
286
|
* @public
|
|
287
287
|
*/
|
|
288
|
-
health?: AddonHealth;
|
|
288
|
+
health?: AddonHealth | undefined;
|
|
289
289
|
/**
|
|
290
290
|
* <p>The Amazon Resource Name (ARN) of the add-on.</p>
|
|
291
291
|
* @public
|
|
292
292
|
*/
|
|
293
|
-
addonArn?: string;
|
|
293
|
+
addonArn?: string | undefined;
|
|
294
294
|
/**
|
|
295
295
|
* <p>The Unix epoch timestamp at object creation.</p>
|
|
296
296
|
* @public
|
|
297
297
|
*/
|
|
298
|
-
createdAt?: Date;
|
|
298
|
+
createdAt?: Date | undefined;
|
|
299
299
|
/**
|
|
300
300
|
* <p>The Unix epoch timestamp for the last modification to the object.</p>
|
|
301
301
|
* @public
|
|
302
302
|
*/
|
|
303
|
-
modifiedAt?: Date;
|
|
303
|
+
modifiedAt?: Date | undefined;
|
|
304
304
|
/**
|
|
305
305
|
* <p>The Amazon Resource Name (ARN) of the IAM role that's bound to the Kubernetes
|
|
306
306
|
* <code>ServiceAccount</code> object that the add-on uses.</p>
|
|
307
307
|
* @public
|
|
308
308
|
*/
|
|
309
|
-
serviceAccountRoleArn?: string;
|
|
309
|
+
serviceAccountRoleArn?: string | undefined;
|
|
310
310
|
/**
|
|
311
311
|
* <p>Metadata that assists with categorization and organization.
|
|
312
312
|
* Each tag consists of a key and an optional value. You define both. Tags don't
|
|
313
313
|
* propagate to any other cluster or Amazon Web Services resources.</p>
|
|
314
314
|
* @public
|
|
315
315
|
*/
|
|
316
|
-
tags?: Record<string, string
|
|
316
|
+
tags?: Record<string, string> | undefined;
|
|
317
317
|
/**
|
|
318
318
|
* <p>The publisher of the add-on.</p>
|
|
319
319
|
* @public
|
|
320
320
|
*/
|
|
321
|
-
publisher?: string;
|
|
321
|
+
publisher?: string | undefined;
|
|
322
322
|
/**
|
|
323
323
|
* <p>The owner of the add-on.</p>
|
|
324
324
|
* @public
|
|
325
325
|
*/
|
|
326
|
-
owner?: string;
|
|
326
|
+
owner?: string | undefined;
|
|
327
327
|
/**
|
|
328
328
|
* <p>Information about an Amazon EKS add-on from the Amazon Web Services Marketplace.</p>
|
|
329
329
|
* @public
|
|
330
330
|
*/
|
|
331
|
-
marketplaceInformation?: MarketplaceInformation;
|
|
331
|
+
marketplaceInformation?: MarketplaceInformation | undefined;
|
|
332
332
|
/**
|
|
333
333
|
* <p>The configuration values that you provided.</p>
|
|
334
334
|
* @public
|
|
335
335
|
*/
|
|
336
|
-
configurationValues?: string;
|
|
336
|
+
configurationValues?: string | undefined;
|
|
337
337
|
/**
|
|
338
338
|
* <p>An array of Pod Identity Assocations owned by the Addon. Each EKS Pod Identity association maps a role to a service account in a namespace in the cluster.</p>
|
|
339
339
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/add-ons-iam.html">Attach an IAM Role to an Amazon EKS add-on using Pod Identity</a> in the EKS User Guide.</p>
|
|
340
340
|
* @public
|
|
341
341
|
*/
|
|
342
|
-
podIdentityAssociations?: string[];
|
|
342
|
+
podIdentityAssociations?: string[] | undefined;
|
|
343
343
|
}
|
|
344
344
|
/**
|
|
345
345
|
* <p>Compatibility information.</p>
|
|
@@ -350,17 +350,17 @@ export interface Compatibility {
|
|
|
350
350
|
* <p>The supported Kubernetes version of the cluster.</p>
|
|
351
351
|
* @public
|
|
352
352
|
*/
|
|
353
|
-
clusterVersion?: string;
|
|
353
|
+
clusterVersion?: string | undefined;
|
|
354
354
|
/**
|
|
355
355
|
* <p>The supported compute platform.</p>
|
|
356
356
|
* @public
|
|
357
357
|
*/
|
|
358
|
-
platformVersions?: string[];
|
|
358
|
+
platformVersions?: string[] | undefined;
|
|
359
359
|
/**
|
|
360
360
|
* <p>The supported default version.</p>
|
|
361
361
|
* @public
|
|
362
362
|
*/
|
|
363
|
-
defaultVersion?: boolean;
|
|
363
|
+
defaultVersion?: boolean | undefined;
|
|
364
364
|
}
|
|
365
365
|
/**
|
|
366
366
|
* <p>Information about an add-on version.</p>
|
|
@@ -371,27 +371,27 @@ export interface AddonVersionInfo {
|
|
|
371
371
|
* <p>The version of the add-on.</p>
|
|
372
372
|
* @public
|
|
373
373
|
*/
|
|
374
|
-
addonVersion?: string;
|
|
374
|
+
addonVersion?: string | undefined;
|
|
375
375
|
/**
|
|
376
376
|
* <p>The architectures that the version supports.</p>
|
|
377
377
|
* @public
|
|
378
378
|
*/
|
|
379
|
-
architecture?: string[];
|
|
379
|
+
architecture?: string[] | undefined;
|
|
380
380
|
/**
|
|
381
381
|
* <p>An object representing the compatibilities of a version.</p>
|
|
382
382
|
* @public
|
|
383
383
|
*/
|
|
384
|
-
compatibilities?: Compatibility[];
|
|
384
|
+
compatibilities?: Compatibility[] | undefined;
|
|
385
385
|
/**
|
|
386
386
|
* <p>Whether the add-on requires configuration.</p>
|
|
387
387
|
* @public
|
|
388
388
|
*/
|
|
389
|
-
requiresConfiguration?: boolean;
|
|
389
|
+
requiresConfiguration?: boolean | undefined;
|
|
390
390
|
/**
|
|
391
391
|
* <p>Indicates if the Addon requires IAM Permissions to operate, such as networking permissions.</p>
|
|
392
392
|
* @public
|
|
393
393
|
*/
|
|
394
|
-
requiresIamPermissions?: boolean;
|
|
394
|
+
requiresIamPermissions?: boolean | undefined;
|
|
395
395
|
}
|
|
396
396
|
/**
|
|
397
397
|
* <p>Information about an add-on.</p>
|
|
@@ -402,33 +402,33 @@ export interface AddonInfo {
|
|
|
402
402
|
* <p>The name of the add-on.</p>
|
|
403
403
|
* @public
|
|
404
404
|
*/
|
|
405
|
-
addonName?: string;
|
|
405
|
+
addonName?: string | undefined;
|
|
406
406
|
/**
|
|
407
407
|
* <p>The type of the add-on.</p>
|
|
408
408
|
* @public
|
|
409
409
|
*/
|
|
410
|
-
type?: string;
|
|
410
|
+
type?: string | undefined;
|
|
411
411
|
/**
|
|
412
412
|
* <p>An object representing information about available add-on versions and compatible
|
|
413
413
|
* Kubernetes versions.</p>
|
|
414
414
|
* @public
|
|
415
415
|
*/
|
|
416
|
-
addonVersions?: AddonVersionInfo[];
|
|
416
|
+
addonVersions?: AddonVersionInfo[] | undefined;
|
|
417
417
|
/**
|
|
418
418
|
* <p>The publisher of the add-on.</p>
|
|
419
419
|
* @public
|
|
420
420
|
*/
|
|
421
|
-
publisher?: string;
|
|
421
|
+
publisher?: string | undefined;
|
|
422
422
|
/**
|
|
423
423
|
* <p>The owner of the add-on.</p>
|
|
424
424
|
* @public
|
|
425
425
|
*/
|
|
426
|
-
owner?: string;
|
|
426
|
+
owner?: string | undefined;
|
|
427
427
|
/**
|
|
428
428
|
* <p>Information about the add-on from the Amazon Web Services Marketplace.</p>
|
|
429
429
|
* @public
|
|
430
430
|
*/
|
|
431
|
-
marketplaceInformation?: MarketplaceInformation;
|
|
431
|
+
marketplaceInformation?: MarketplaceInformation | undefined;
|
|
432
432
|
}
|
|
433
433
|
/**
|
|
434
434
|
* <p>A type of Pod Identity Association owned by an Amazon EKS Add-on.</p>
|
|
@@ -457,12 +457,12 @@ export interface AddonPodIdentityConfiguration {
|
|
|
457
457
|
* <p>The Kubernetes Service Account name used by the addon.</p>
|
|
458
458
|
* @public
|
|
459
459
|
*/
|
|
460
|
-
serviceAccount?: string;
|
|
460
|
+
serviceAccount?: string | undefined;
|
|
461
461
|
/**
|
|
462
462
|
* <p>A suggested IAM Policy for the addon.</p>
|
|
463
463
|
* @public
|
|
464
464
|
*/
|
|
465
|
-
recommendedManagedPolicies?: string[];
|
|
465
|
+
recommendedManagedPolicies?: string[] | undefined;
|
|
466
466
|
}
|
|
467
467
|
/**
|
|
468
468
|
* @public
|
|
@@ -527,23 +527,23 @@ export interface AssociatedAccessPolicy {
|
|
|
527
527
|
* <p>The ARN of the <code>AccessPolicy</code>.</p>
|
|
528
528
|
* @public
|
|
529
529
|
*/
|
|
530
|
-
policyArn?: string;
|
|
530
|
+
policyArn?: string | undefined;
|
|
531
531
|
/**
|
|
532
532
|
* <p>The scope of the access policy.</p>
|
|
533
533
|
* @public
|
|
534
534
|
*/
|
|
535
|
-
accessScope?: AccessScope;
|
|
535
|
+
accessScope?: AccessScope | undefined;
|
|
536
536
|
/**
|
|
537
537
|
* <p>The date and time the <code>AccessPolicy</code> was associated with an
|
|
538
538
|
* <code>AccessEntry</code>.</p>
|
|
539
539
|
* @public
|
|
540
540
|
*/
|
|
541
|
-
associatedAt?: Date;
|
|
541
|
+
associatedAt?: Date | undefined;
|
|
542
542
|
/**
|
|
543
543
|
* <p>The Unix epoch timestamp for the last modification to the object.</p>
|
|
544
544
|
* @public
|
|
545
545
|
*/
|
|
546
|
-
modifiedAt?: Date;
|
|
546
|
+
modifiedAt?: Date | undefined;
|
|
547
547
|
}
|
|
548
548
|
/**
|
|
549
549
|
* @public
|
|
@@ -553,18 +553,18 @@ export interface AssociateAccessPolicyResponse {
|
|
|
553
553
|
* <p>The name of your cluster.</p>
|
|
554
554
|
* @public
|
|
555
555
|
*/
|
|
556
|
-
clusterName?: string;
|
|
556
|
+
clusterName?: string | undefined;
|
|
557
557
|
/**
|
|
558
558
|
* <p>The ARN of the IAM principal for the <code>AccessEntry</code>.</p>
|
|
559
559
|
* @public
|
|
560
560
|
*/
|
|
561
|
-
principalArn?: string;
|
|
561
|
+
principalArn?: string | undefined;
|
|
562
562
|
/**
|
|
563
563
|
* <p>The <code>AccessPolicy</code> and scope associated to the
|
|
564
564
|
* <code>AccessEntry</code>.</p>
|
|
565
565
|
* @public
|
|
566
566
|
*/
|
|
567
|
-
associatedAccessPolicy?: AssociatedAccessPolicy;
|
|
567
|
+
associatedAccessPolicy?: AssociatedAccessPolicy | undefined;
|
|
568
568
|
}
|
|
569
569
|
/**
|
|
570
570
|
* <p>The specified parameter is invalid. Review the available parameters for the API
|
|
@@ -578,28 +578,28 @@ export declare class InvalidParameterException extends __BaseException {
|
|
|
578
578
|
* <p>The Amazon EKS cluster associated with the exception.</p>
|
|
579
579
|
* @public
|
|
580
580
|
*/
|
|
581
|
-
clusterName?: string;
|
|
581
|
+
clusterName?: string | undefined;
|
|
582
582
|
/**
|
|
583
583
|
* <p>The Amazon EKS managed node group associated with the exception.</p>
|
|
584
584
|
* @public
|
|
585
585
|
*/
|
|
586
|
-
nodegroupName?: string;
|
|
586
|
+
nodegroupName?: string | undefined;
|
|
587
587
|
/**
|
|
588
588
|
* <p>The Fargate profile associated with the exception.</p>
|
|
589
589
|
* @public
|
|
590
590
|
*/
|
|
591
|
-
fargateProfileName?: string;
|
|
591
|
+
fargateProfileName?: string | undefined;
|
|
592
592
|
/**
|
|
593
593
|
* <p>The specified parameter for the add-on name is invalid. Review the available
|
|
594
594
|
* parameters for the API request</p>
|
|
595
595
|
* @public
|
|
596
596
|
*/
|
|
597
|
-
addonName?: string;
|
|
597
|
+
addonName?: string | undefined;
|
|
598
598
|
/**
|
|
599
599
|
* <p>The Amazon EKS subscription ID with the exception.</p>
|
|
600
600
|
* @public
|
|
601
601
|
*/
|
|
602
|
-
subscriptionId?: string;
|
|
602
|
+
subscriptionId?: string | undefined;
|
|
603
603
|
/**
|
|
604
604
|
* @internal
|
|
605
605
|
*/
|
|
@@ -617,23 +617,23 @@ export declare class InvalidRequestException extends __BaseException {
|
|
|
617
617
|
* <p>The Amazon EKS cluster associated with the exception.</p>
|
|
618
618
|
* @public
|
|
619
619
|
*/
|
|
620
|
-
clusterName?: string;
|
|
620
|
+
clusterName?: string | undefined;
|
|
621
621
|
/**
|
|
622
622
|
* <p>The Amazon EKS managed node group associated with the exception.</p>
|
|
623
623
|
* @public
|
|
624
624
|
*/
|
|
625
|
-
nodegroupName?: string;
|
|
625
|
+
nodegroupName?: string | undefined;
|
|
626
626
|
/**
|
|
627
627
|
* <p>The request is invalid given the state of the add-on name. Check the state of the
|
|
628
628
|
* cluster and the associated operations.</p>
|
|
629
629
|
* @public
|
|
630
630
|
*/
|
|
631
|
-
addonName?: string;
|
|
631
|
+
addonName?: string | undefined;
|
|
632
632
|
/**
|
|
633
633
|
* <p>The Amazon EKS subscription ID with the exception.</p>
|
|
634
634
|
* @public
|
|
635
635
|
*/
|
|
636
|
-
subscriptionId?: string;
|
|
636
|
+
subscriptionId?: string | undefined;
|
|
637
637
|
/**
|
|
638
638
|
* @internal
|
|
639
639
|
*/
|
|
@@ -652,27 +652,27 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
652
652
|
* <p>The Amazon EKS cluster associated with the exception.</p>
|
|
653
653
|
* @public
|
|
654
654
|
*/
|
|
655
|
-
clusterName?: string;
|
|
655
|
+
clusterName?: string | undefined;
|
|
656
656
|
/**
|
|
657
657
|
* <p>The Amazon EKS managed node group associated with the exception.</p>
|
|
658
658
|
* @public
|
|
659
659
|
*/
|
|
660
|
-
nodegroupName?: string;
|
|
660
|
+
nodegroupName?: string | undefined;
|
|
661
661
|
/**
|
|
662
662
|
* <p>The Fargate profile associated with the exception.</p>
|
|
663
663
|
* @public
|
|
664
664
|
*/
|
|
665
|
-
fargateProfileName?: string;
|
|
665
|
+
fargateProfileName?: string | undefined;
|
|
666
666
|
/**
|
|
667
667
|
* <p>The Amazon EKS add-on name associated with the exception.</p>
|
|
668
668
|
* @public
|
|
669
669
|
*/
|
|
670
|
-
addonName?: string;
|
|
670
|
+
addonName?: string | undefined;
|
|
671
671
|
/**
|
|
672
672
|
* <p>The Amazon EKS subscription ID with the exception.</p>
|
|
673
673
|
* @public
|
|
674
674
|
*/
|
|
675
|
-
subscriptionId?: string;
|
|
675
|
+
subscriptionId?: string | undefined;
|
|
676
676
|
/**
|
|
677
677
|
* @internal
|
|
678
678
|
*/
|
|
@@ -689,22 +689,22 @@ export declare class ServerException extends __BaseException {
|
|
|
689
689
|
* <p>The Amazon EKS cluster associated with the exception.</p>
|
|
690
690
|
* @public
|
|
691
691
|
*/
|
|
692
|
-
clusterName?: string;
|
|
692
|
+
clusterName?: string | undefined;
|
|
693
693
|
/**
|
|
694
694
|
* <p>The Amazon EKS managed node group associated with the exception.</p>
|
|
695
695
|
* @public
|
|
696
696
|
*/
|
|
697
|
-
nodegroupName?: string;
|
|
697
|
+
nodegroupName?: string | undefined;
|
|
698
698
|
/**
|
|
699
699
|
* <p>The Amazon EKS add-on name associated with the exception.</p>
|
|
700
700
|
* @public
|
|
701
701
|
*/
|
|
702
|
-
addonName?: string;
|
|
702
|
+
addonName?: string | undefined;
|
|
703
703
|
/**
|
|
704
704
|
* <p>The Amazon EKS subscription ID with the exception.</p>
|
|
705
705
|
* @public
|
|
706
706
|
*/
|
|
707
|
-
subscriptionId?: string;
|
|
707
|
+
subscriptionId?: string | undefined;
|
|
708
708
|
/**
|
|
709
709
|
* @internal
|
|
710
710
|
*/
|
|
@@ -725,7 +725,7 @@ export interface Provider {
|
|
|
725
725
|
* <i>Key Management Service Developer Guide</i>.</p>
|
|
726
726
|
* @public
|
|
727
727
|
*/
|
|
728
|
-
keyArn?: string;
|
|
728
|
+
keyArn?: string | undefined;
|
|
729
729
|
}
|
|
730
730
|
/**
|
|
731
731
|
* <p>The encryption configuration for the cluster.</p>
|
|
@@ -737,13 +737,13 @@ export interface EncryptionConfig {
|
|
|
737
737
|
* <code>secrets</code>.</p>
|
|
738
738
|
* @public
|
|
739
739
|
*/
|
|
740
|
-
resources?: string[];
|
|
740
|
+
resources?: string[] | undefined;
|
|
741
741
|
/**
|
|
742
742
|
* <p>Key Management Service (KMS) key. Either the ARN or the alias can be
|
|
743
743
|
* used.</p>
|
|
744
744
|
* @public
|
|
745
745
|
*/
|
|
746
|
-
provider?: Provider;
|
|
746
|
+
provider?: Provider | undefined;
|
|
747
747
|
}
|
|
748
748
|
/**
|
|
749
749
|
* @public
|
|
@@ -764,7 +764,7 @@ export interface AssociateEncryptionConfigRequest {
|
|
|
764
764
|
* the idempotency of the request.</p>
|
|
765
765
|
* @public
|
|
766
766
|
*/
|
|
767
|
-
clientRequestToken?: string;
|
|
767
|
+
clientRequestToken?: string | undefined;
|
|
768
768
|
}
|
|
769
769
|
/**
|
|
770
770
|
* @public
|
|
@@ -840,17 +840,17 @@ export interface ErrorDetail {
|
|
|
840
840
|
* </ul>
|
|
841
841
|
* @public
|
|
842
842
|
*/
|
|
843
|
-
errorCode?: ErrorCode;
|
|
843
|
+
errorCode?: ErrorCode | undefined;
|
|
844
844
|
/**
|
|
845
845
|
* <p>A more complete description of the error.</p>
|
|
846
846
|
* @public
|
|
847
847
|
*/
|
|
848
|
-
errorMessage?: string;
|
|
848
|
+
errorMessage?: string | undefined;
|
|
849
849
|
/**
|
|
850
850
|
* <p>An optional field that contains the resource IDs associated with the error.</p>
|
|
851
851
|
* @public
|
|
852
852
|
*/
|
|
853
|
-
resourceIds?: string[];
|
|
853
|
+
resourceIds?: string[] | undefined;
|
|
854
854
|
}
|
|
855
855
|
/**
|
|
856
856
|
* @public
|
|
@@ -901,12 +901,12 @@ export interface UpdateParam {
|
|
|
901
901
|
* <p>The keys associated with an update request.</p>
|
|
902
902
|
* @public
|
|
903
903
|
*/
|
|
904
|
-
type?: UpdateParamType;
|
|
904
|
+
type?: UpdateParamType | undefined;
|
|
905
905
|
/**
|
|
906
906
|
* <p>The value of the keys submitted as part of an update request.</p>
|
|
907
907
|
* @public
|
|
908
908
|
*/
|
|
909
|
-
value?: string;
|
|
909
|
+
value?: string | undefined;
|
|
910
910
|
}
|
|
911
911
|
/**
|
|
912
912
|
* @public
|
|
@@ -953,32 +953,32 @@ export interface Update {
|
|
|
953
953
|
* <p>A UUID that is used to track the update.</p>
|
|
954
954
|
* @public
|
|
955
955
|
*/
|
|
956
|
-
id?: string;
|
|
956
|
+
id?: string | undefined;
|
|
957
957
|
/**
|
|
958
958
|
* <p>The current status of the update.</p>
|
|
959
959
|
* @public
|
|
960
960
|
*/
|
|
961
|
-
status?: UpdateStatus;
|
|
961
|
+
status?: UpdateStatus | undefined;
|
|
962
962
|
/**
|
|
963
963
|
* <p>The type of the update.</p>
|
|
964
964
|
* @public
|
|
965
965
|
*/
|
|
966
|
-
type?: UpdateType;
|
|
966
|
+
type?: UpdateType | undefined;
|
|
967
967
|
/**
|
|
968
968
|
* <p>A key-value map that contains the parameters associated with the update.</p>
|
|
969
969
|
* @public
|
|
970
970
|
*/
|
|
971
|
-
params?: UpdateParam[];
|
|
971
|
+
params?: UpdateParam[] | undefined;
|
|
972
972
|
/**
|
|
973
973
|
* <p>The Unix epoch timestamp at object creation.</p>
|
|
974
974
|
* @public
|
|
975
975
|
*/
|
|
976
|
-
createdAt?: Date;
|
|
976
|
+
createdAt?: Date | undefined;
|
|
977
977
|
/**
|
|
978
978
|
* <p>Any errors associated with a <code>Failed</code> update.</p>
|
|
979
979
|
* @public
|
|
980
980
|
*/
|
|
981
|
-
errors?: ErrorDetail[];
|
|
981
|
+
errors?: ErrorDetail[] | undefined;
|
|
982
982
|
}
|
|
983
983
|
/**
|
|
984
984
|
* @public
|
|
@@ -988,7 +988,7 @@ export interface AssociateEncryptionConfigResponse {
|
|
|
988
988
|
* <p>An object representing an asynchronous update.</p>
|
|
989
989
|
* @public
|
|
990
990
|
*/
|
|
991
|
-
update?: Update;
|
|
991
|
+
update?: Update | undefined;
|
|
992
992
|
}
|
|
993
993
|
/**
|
|
994
994
|
* <p>These errors are usually caused by a client action. Actions can include using an
|
|
@@ -1003,22 +1003,22 @@ export declare class ClientException extends __BaseException {
|
|
|
1003
1003
|
* <p>The Amazon EKS cluster associated with the exception.</p>
|
|
1004
1004
|
* @public
|
|
1005
1005
|
*/
|
|
1006
|
-
clusterName?: string;
|
|
1006
|
+
clusterName?: string | undefined;
|
|
1007
1007
|
/**
|
|
1008
1008
|
* <p>The Amazon EKS managed node group associated with the exception.</p>
|
|
1009
1009
|
* @public
|
|
1010
1010
|
*/
|
|
1011
|
-
nodegroupName?: string;
|
|
1011
|
+
nodegroupName?: string | undefined;
|
|
1012
1012
|
/**
|
|
1013
1013
|
* <p>The Amazon EKS add-on name associated with the exception.</p>
|
|
1014
1014
|
* @public
|
|
1015
1015
|
*/
|
|
1016
|
-
addonName?: string;
|
|
1016
|
+
addonName?: string | undefined;
|
|
1017
1017
|
/**
|
|
1018
1018
|
* <p>The Amazon EKS subscription ID with the exception.</p>
|
|
1019
1019
|
* @public
|
|
1020
1020
|
*/
|
|
1021
|
-
subscriptionId?: string;
|
|
1021
|
+
subscriptionId?: string | undefined;
|
|
1022
1022
|
/**
|
|
1023
1023
|
* @internal
|
|
1024
1024
|
*/
|
|
@@ -1035,17 +1035,17 @@ export declare class ResourceInUseException extends __BaseException {
|
|
|
1035
1035
|
* <p>The Amazon EKS cluster associated with the exception.</p>
|
|
1036
1036
|
* @public
|
|
1037
1037
|
*/
|
|
1038
|
-
clusterName?: string;
|
|
1038
|
+
clusterName?: string | undefined;
|
|
1039
1039
|
/**
|
|
1040
1040
|
* <p>The Amazon EKS managed node group associated with the exception.</p>
|
|
1041
1041
|
* @public
|
|
1042
1042
|
*/
|
|
1043
|
-
nodegroupName?: string;
|
|
1043
|
+
nodegroupName?: string | undefined;
|
|
1044
1044
|
/**
|
|
1045
1045
|
* <p>The specified add-on name is in use.</p>
|
|
1046
1046
|
* @public
|
|
1047
1047
|
*/
|
|
1048
|
-
addonName?: string;
|
|
1048
|
+
addonName?: string | undefined;
|
|
1049
1049
|
/**
|
|
1050
1050
|
* @internal
|
|
1051
1051
|
*/
|
|
@@ -1090,7 +1090,7 @@ export interface OidcIdentityProviderConfigRequest {
|
|
|
1090
1090
|
* issuer URL to prevent naming clashes with other plug-ins.</p>
|
|
1091
1091
|
* @public
|
|
1092
1092
|
*/
|
|
1093
|
-
usernameClaim?: string;
|
|
1093
|
+
usernameClaim?: string | undefined;
|
|
1094
1094
|
/**
|
|
1095
1095
|
* <p>The prefix that is prepended to username claims to prevent clashes with existing
|
|
1096
1096
|
* names. If you do not provide this field, and <code>username</code> is a value other than
|
|
@@ -1098,12 +1098,12 @@ export interface OidcIdentityProviderConfigRequest {
|
|
|
1098
1098
|
* value <code>-</code> to disable all prefixing.</p>
|
|
1099
1099
|
* @public
|
|
1100
1100
|
*/
|
|
1101
|
-
usernamePrefix?: string;
|
|
1101
|
+
usernamePrefix?: string | undefined;
|
|
1102
1102
|
/**
|
|
1103
1103
|
* <p>The JWT claim that the provider uses to return your groups.</p>
|
|
1104
1104
|
* @public
|
|
1105
1105
|
*/
|
|
1106
|
-
groupsClaim?: string;
|
|
1106
|
+
groupsClaim?: string | undefined;
|
|
1107
1107
|
/**
|
|
1108
1108
|
* <p>The prefix that is prepended to group claims to prevent clashes with existing names
|
|
1109
1109
|
* (such as <code>system:</code> groups). For example, the value<code> oidc:</code> will
|
|
@@ -1111,7 +1111,7 @@ export interface OidcIdentityProviderConfigRequest {
|
|
|
1111
1111
|
* <code>oidc:infra</code>.</p>
|
|
1112
1112
|
* @public
|
|
1113
1113
|
*/
|
|
1114
|
-
groupsPrefix?: string;
|
|
1114
|
+
groupsPrefix?: string | undefined;
|
|
1115
1115
|
/**
|
|
1116
1116
|
* <p>The key value pairs that describe required claims in the identity token. If set, each
|
|
1117
1117
|
* claim is verified to be present in the token with a matching value. For the maximum
|
|
@@ -1119,7 +1119,7 @@ export interface OidcIdentityProviderConfigRequest {
|
|
|
1119
1119
|
* quotas</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
1120
1120
|
* @public
|
|
1121
1121
|
*/
|
|
1122
|
-
requiredClaims?: Record<string, string
|
|
1122
|
+
requiredClaims?: Record<string, string> | undefined;
|
|
1123
1123
|
}
|
|
1124
1124
|
/**
|
|
1125
1125
|
* @public
|
|
@@ -1141,13 +1141,13 @@ export interface AssociateIdentityProviderConfigRequest {
|
|
|
1141
1141
|
* propagate to any other cluster or Amazon Web Services resources.</p>
|
|
1142
1142
|
* @public
|
|
1143
1143
|
*/
|
|
1144
|
-
tags?: Record<string, string
|
|
1144
|
+
tags?: Record<string, string> | undefined;
|
|
1145
1145
|
/**
|
|
1146
1146
|
* <p>A unique, case-sensitive identifier that you provide to ensure
|
|
1147
1147
|
* the idempotency of the request.</p>
|
|
1148
1148
|
* @public
|
|
1149
1149
|
*/
|
|
1150
|
-
clientRequestToken?: string;
|
|
1150
|
+
clientRequestToken?: string | undefined;
|
|
1151
1151
|
}
|
|
1152
1152
|
/**
|
|
1153
1153
|
* @public
|
|
@@ -1157,12 +1157,12 @@ export interface AssociateIdentityProviderConfigResponse {
|
|
|
1157
1157
|
* <p>An object representing an asynchronous update.</p>
|
|
1158
1158
|
* @public
|
|
1159
1159
|
*/
|
|
1160
|
-
update?: Update;
|
|
1160
|
+
update?: Update | undefined;
|
|
1161
1161
|
/**
|
|
1162
1162
|
* <p>The tags for the resource.</p>
|
|
1163
1163
|
* @public
|
|
1164
1164
|
*/
|
|
1165
|
-
tags?: Record<string, string
|
|
1165
|
+
tags?: Record<string, string> | undefined;
|
|
1166
1166
|
}
|
|
1167
1167
|
/**
|
|
1168
1168
|
* <p>An Auto Scaling group that is associated with an Amazon EKS managed node
|
|
@@ -1175,7 +1175,7 @@ export interface AutoScalingGroup {
|
|
|
1175
1175
|
* node group.</p>
|
|
1176
1176
|
* @public
|
|
1177
1177
|
*/
|
|
1178
|
-
name?: string;
|
|
1178
|
+
name?: string | undefined;
|
|
1179
1179
|
}
|
|
1180
1180
|
/**
|
|
1181
1181
|
* @public
|
|
@@ -1226,20 +1226,20 @@ export interface CreateAccessEntryRequest {
|
|
|
1226
1226
|
* objects that the group names are bound to.</p>
|
|
1227
1227
|
* @public
|
|
1228
1228
|
*/
|
|
1229
|
-
kubernetesGroups?: string[];
|
|
1229
|
+
kubernetesGroups?: string[] | undefined;
|
|
1230
1230
|
/**
|
|
1231
1231
|
* <p>Metadata that assists with categorization and organization.
|
|
1232
1232
|
* Each tag consists of a key and an optional value. You define both. Tags don't
|
|
1233
1233
|
* propagate to any other cluster or Amazon Web Services resources.</p>
|
|
1234
1234
|
* @public
|
|
1235
1235
|
*/
|
|
1236
|
-
tags?: Record<string, string
|
|
1236
|
+
tags?: Record<string, string> | undefined;
|
|
1237
1237
|
/**
|
|
1238
1238
|
* <p>A unique, case-sensitive identifier that you provide to ensure
|
|
1239
1239
|
* the idempotency of the request.</p>
|
|
1240
1240
|
* @public
|
|
1241
1241
|
*/
|
|
1242
|
-
clientRequestToken?: string;
|
|
1242
|
+
clientRequestToken?: string | undefined;
|
|
1243
1243
|
/**
|
|
1244
1244
|
* <p>The username to authenticate to Kubernetes with. We recommend not specifying a username and
|
|
1245
1245
|
* letting Amazon EKS specify it for you. For more information about the value
|
|
@@ -1248,7 +1248,7 @@ export interface CreateAccessEntryRequest {
|
|
|
1248
1248
|
* access entries</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
1249
1249
|
* @public
|
|
1250
1250
|
*/
|
|
1251
|
-
username?: string;
|
|
1251
|
+
username?: string | undefined;
|
|
1252
1252
|
/**
|
|
1253
1253
|
* <p>The type of the new access entry. Valid values are <code>Standard</code>,
|
|
1254
1254
|
* <code>FARGATE_LINUX</code>, <code>EC2_LINUX</code>, and
|
|
@@ -1267,7 +1267,7 @@ export interface CreateAccessEntryRequest {
|
|
|
1267
1267
|
* <code>AccessPolicy</code> to the access entry.</p>
|
|
1268
1268
|
* @public
|
|
1269
1269
|
*/
|
|
1270
|
-
type?: string;
|
|
1270
|
+
type?: string | undefined;
|
|
1271
1271
|
}
|
|
1272
1272
|
/**
|
|
1273
1273
|
* @public
|
|
@@ -1281,7 +1281,7 @@ export interface CreateAccessEntryResponse {
|
|
|
1281
1281
|
* entries</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
1282
1282
|
* @public
|
|
1283
1283
|
*/
|
|
1284
|
-
accessEntry?: AccessEntry;
|
|
1284
|
+
accessEntry?: AccessEntry | undefined;
|
|
1285
1285
|
}
|
|
1286
1286
|
/**
|
|
1287
1287
|
* <p>You have encountered a service limit on the specified resource.</p>
|
|
@@ -1294,17 +1294,17 @@ export declare class ResourceLimitExceededException extends __BaseException {
|
|
|
1294
1294
|
* <p>The Amazon EKS cluster associated with the exception.</p>
|
|
1295
1295
|
* @public
|
|
1296
1296
|
*/
|
|
1297
|
-
clusterName?: string;
|
|
1297
|
+
clusterName?: string | undefined;
|
|
1298
1298
|
/**
|
|
1299
1299
|
* <p>The Amazon EKS managed node group associated with the exception.</p>
|
|
1300
1300
|
* @public
|
|
1301
1301
|
*/
|
|
1302
|
-
nodegroupName?: string;
|
|
1302
|
+
nodegroupName?: string | undefined;
|
|
1303
1303
|
/**
|
|
1304
1304
|
* <p>The Amazon EKS subscription ID with the exception.</p>
|
|
1305
1305
|
* @public
|
|
1306
1306
|
*/
|
|
1307
|
-
subscriptionId?: string;
|
|
1307
|
+
subscriptionId?: string | undefined;
|
|
1308
1308
|
/**
|
|
1309
1309
|
* @internal
|
|
1310
1310
|
*/
|
|
@@ -1344,7 +1344,7 @@ export interface CreateAddonRequest {
|
|
|
1344
1344
|
* </a>.</p>
|
|
1345
1345
|
* @public
|
|
1346
1346
|
*/
|
|
1347
|
-
addonVersion?: string;
|
|
1347
|
+
addonVersion?: string | undefined;
|
|
1348
1348
|
/**
|
|
1349
1349
|
* <p>The Amazon Resource Name (ARN) of an existing IAM role to bind to the add-on's service account. The role must be assigned the IAM permissions required by the add-on. If you don't specify an existing IAM role, then the add-on uses the
|
|
1350
1350
|
* permissions assigned to the node IAM role. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/create-node-role.html">Amazon EKS node IAM role</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
@@ -1356,7 +1356,7 @@ export interface CreateAddonRequest {
|
|
|
1356
1356
|
* </note>
|
|
1357
1357
|
* @public
|
|
1358
1358
|
*/
|
|
1359
|
-
serviceAccountRoleArn?: string;
|
|
1359
|
+
serviceAccountRoleArn?: string | undefined;
|
|
1360
1360
|
/**
|
|
1361
1361
|
* <p>How to resolve field value conflicts for an Amazon EKS add-on. Conflicts are
|
|
1362
1362
|
* handled based on the value you choose:</p>
|
|
@@ -1388,33 +1388,33 @@ export interface CreateAddonRequest {
|
|
|
1388
1388
|
* to default values, regardless of the option that you specify.</p>
|
|
1389
1389
|
* @public
|
|
1390
1390
|
*/
|
|
1391
|
-
resolveConflicts?: ResolveConflicts;
|
|
1391
|
+
resolveConflicts?: ResolveConflicts | undefined;
|
|
1392
1392
|
/**
|
|
1393
1393
|
* <p>A unique, case-sensitive identifier that you provide to ensure
|
|
1394
1394
|
* the idempotency of the request.</p>
|
|
1395
1395
|
* @public
|
|
1396
1396
|
*/
|
|
1397
|
-
clientRequestToken?: string;
|
|
1397
|
+
clientRequestToken?: string | undefined;
|
|
1398
1398
|
/**
|
|
1399
1399
|
* <p>Metadata that assists with categorization and organization.
|
|
1400
1400
|
* Each tag consists of a key and an optional value. You define both. Tags don't
|
|
1401
1401
|
* propagate to any other cluster or Amazon Web Services resources.</p>
|
|
1402
1402
|
* @public
|
|
1403
1403
|
*/
|
|
1404
|
-
tags?: Record<string, string
|
|
1404
|
+
tags?: Record<string, string> | undefined;
|
|
1405
1405
|
/**
|
|
1406
1406
|
* <p>The set of configuration values for the add-on that's created. The values that you
|
|
1407
1407
|
* provide are validated against the schema returned by
|
|
1408
1408
|
* <code>DescribeAddonConfiguration</code>.</p>
|
|
1409
1409
|
* @public
|
|
1410
1410
|
*/
|
|
1411
|
-
configurationValues?: string;
|
|
1411
|
+
configurationValues?: string | undefined;
|
|
1412
1412
|
/**
|
|
1413
1413
|
* <p>An array of Pod Identity Assocations to be created. Each EKS Pod Identity association maps a Kubernetes service account to an IAM Role.</p>
|
|
1414
1414
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/add-ons-iam.html">Attach an IAM Role to an Amazon EKS add-on using Pod Identity</a> in the EKS User Guide.</p>
|
|
1415
1415
|
* @public
|
|
1416
1416
|
*/
|
|
1417
|
-
podIdentityAssociations?: AddonPodIdentityAssociations[];
|
|
1417
|
+
podIdentityAssociations?: AddonPodIdentityAssociations[] | undefined;
|
|
1418
1418
|
}
|
|
1419
1419
|
/**
|
|
1420
1420
|
* @public
|
|
@@ -1425,7 +1425,7 @@ export interface CreateAddonResponse {
|
|
|
1425
1425
|
* the <i>Amazon EKS User Guide</i>.</p>
|
|
1426
1426
|
* @public
|
|
1427
1427
|
*/
|
|
1428
|
-
addon?: Addon;
|
|
1428
|
+
addon?: Addon | undefined;
|
|
1429
1429
|
}
|
|
1430
1430
|
/**
|
|
1431
1431
|
* <p>The access configuration information for the cluster.</p>
|
|
@@ -1438,7 +1438,7 @@ export interface CreateAccessConfigRequest {
|
|
|
1438
1438
|
* <code>true</code>.</p>
|
|
1439
1439
|
* @public
|
|
1440
1440
|
*/
|
|
1441
|
-
bootstrapClusterCreatorAdminPermissions?: boolean;
|
|
1441
|
+
bootstrapClusterCreatorAdminPermissions?: boolean | undefined;
|
|
1442
1442
|
/**
|
|
1443
1443
|
* <p>The desired authentication mode for the cluster. If you create a cluster by using the
|
|
1444
1444
|
* EKS API, Amazon Web Services SDKs, or CloudFormation, the default is <code>CONFIG_MAP</code>. If you create
|
|
@@ -1446,7 +1446,7 @@ export interface CreateAccessConfigRequest {
|
|
|
1446
1446
|
* <code>API_AND_CONFIG_MAP</code>.</p>
|
|
1447
1447
|
* @public
|
|
1448
1448
|
*/
|
|
1449
|
-
authenticationMode?: AuthenticationMode;
|
|
1449
|
+
authenticationMode?: AuthenticationMode | undefined;
|
|
1450
1450
|
}
|
|
1451
1451
|
/**
|
|
1452
1452
|
* @public
|
|
@@ -1491,7 +1491,7 @@ export interface KubernetesNetworkConfigRequest {
|
|
|
1491
1491
|
* </important>
|
|
1492
1492
|
* @public
|
|
1493
1493
|
*/
|
|
1494
|
-
serviceIpv4Cidr?: string;
|
|
1494
|
+
serviceIpv4Cidr?: string | undefined;
|
|
1495
1495
|
/**
|
|
1496
1496
|
* <p>Specify which IP family is used to assign Kubernetes pod and service IP addresses. If you
|
|
1497
1497
|
* don't specify a value, <code>ipv4</code> is used by default. You can only specify an IP
|
|
@@ -1510,7 +1510,7 @@ export interface KubernetesNetworkConfigRequest {
|
|
|
1510
1510
|
* Pod addresses are assigned from the subnet's <code>IPv6</code> CIDR.</p>
|
|
1511
1511
|
* @public
|
|
1512
1512
|
*/
|
|
1513
|
-
ipFamily?: IpFamily;
|
|
1513
|
+
ipFamily?: IpFamily | undefined;
|
|
1514
1514
|
}
|
|
1515
1515
|
/**
|
|
1516
1516
|
* @public
|
|
@@ -1537,13 +1537,13 @@ export interface LogSetup {
|
|
|
1537
1537
|
* <p>The available cluster control plane log types.</p>
|
|
1538
1538
|
* @public
|
|
1539
1539
|
*/
|
|
1540
|
-
types?: LogType[];
|
|
1540
|
+
types?: LogType[] | undefined;
|
|
1541
1541
|
/**
|
|
1542
1542
|
* <p>If a log type is enabled, that log type exports its control plane logs to CloudWatch Logs. If a log type isn't enabled, that log type doesn't export its control
|
|
1543
1543
|
* plane logs. Each individual log type can be enabled or disabled independently.</p>
|
|
1544
1544
|
* @public
|
|
1545
1545
|
*/
|
|
1546
|
-
enabled?: boolean;
|
|
1546
|
+
enabled?: boolean | undefined;
|
|
1547
1547
|
}
|
|
1548
1548
|
/**
|
|
1549
1549
|
* <p>An object representing the logging configuration for resources in your cluster.</p>
|
|
@@ -1554,7 +1554,7 @@ export interface Logging {
|
|
|
1554
1554
|
* <p>The cluster control plane logging configuration for your cluster.</p>
|
|
1555
1555
|
* @public
|
|
1556
1556
|
*/
|
|
1557
|
-
clusterLogging?: LogSetup[];
|
|
1557
|
+
clusterLogging?: LogSetup[] | undefined;
|
|
1558
1558
|
}
|
|
1559
1559
|
/**
|
|
1560
1560
|
* <p>The placement configuration for all the control plane instances of your local Amazon EKS cluster on an Amazon Web Services Outpost. For more information, see
|
|
@@ -1568,7 +1568,7 @@ export interface ControlPlanePlacementRequest {
|
|
|
1568
1568
|
* can't be changed after cluster creation. </p>
|
|
1569
1569
|
* @public
|
|
1570
1570
|
*/
|
|
1571
|
-
groupName?: string;
|
|
1571
|
+
groupName?: string | undefined;
|
|
1572
1572
|
}
|
|
1573
1573
|
/**
|
|
1574
1574
|
* <p>The configuration of your local Amazon EKS cluster on an Amazon Web Services
|
|
@@ -1601,7 +1601,7 @@ export interface OutpostConfigRequest {
|
|
|
1601
1601
|
* information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-capacity-considerations.html">Capacity considerations</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
1602
1602
|
* @public
|
|
1603
1603
|
*/
|
|
1604
|
-
controlPlanePlacement?: ControlPlanePlacementRequest;
|
|
1604
|
+
controlPlanePlacement?: ControlPlanePlacementRequest | undefined;
|
|
1605
1605
|
}
|
|
1606
1606
|
/**
|
|
1607
1607
|
* <p>An object representing the VPC configuration to use for an Amazon EKS
|
|
@@ -1615,7 +1615,7 @@ export interface VpcConfigRequest {
|
|
|
1615
1615
|
* your nodes and the Kubernetes control plane.</p>
|
|
1616
1616
|
* @public
|
|
1617
1617
|
*/
|
|
1618
|
-
subnetIds?: string[];
|
|
1618
|
+
subnetIds?: string[] | undefined;
|
|
1619
1619
|
/**
|
|
1620
1620
|
* <p>Specify one or more security groups for the cross-account elastic network interfaces
|
|
1621
1621
|
* that Amazon EKS creates to use that allow communication between your nodes and
|
|
@@ -1627,7 +1627,7 @@ export interface VpcConfigRequest {
|
|
|
1627
1627
|
* </i>.</p>
|
|
1628
1628
|
* @public
|
|
1629
1629
|
*/
|
|
1630
|
-
securityGroupIds?: string[];
|
|
1630
|
+
securityGroupIds?: string[] | undefined;
|
|
1631
1631
|
/**
|
|
1632
1632
|
* <p>Set this value to <code>false</code> to disable public access to your cluster's Kubernetes
|
|
1633
1633
|
* API server endpoint. If you disable public access, your cluster's Kubernetes API server can
|
|
@@ -1639,7 +1639,7 @@ export interface VpcConfigRequest {
|
|
|
1639
1639
|
* </i>.</p>
|
|
1640
1640
|
* @public
|
|
1641
1641
|
*/
|
|
1642
|
-
endpointPublicAccess?: boolean;
|
|
1642
|
+
endpointPublicAccess?: boolean | undefined;
|
|
1643
1643
|
/**
|
|
1644
1644
|
* <p>Set this value to <code>true</code> to enable private access for your cluster's Kubernetes
|
|
1645
1645
|
* API server endpoint. If you enable private access, Kubernetes API requests from within your
|
|
@@ -1654,7 +1654,7 @@ export interface VpcConfigRequest {
|
|
|
1654
1654
|
* </i>.</p>
|
|
1655
1655
|
* @public
|
|
1656
1656
|
*/
|
|
1657
|
-
endpointPrivateAccess?: boolean;
|
|
1657
|
+
endpointPrivateAccess?: boolean | undefined;
|
|
1658
1658
|
/**
|
|
1659
1659
|
* <p>The CIDR blocks that are allowed access to your cluster's public Kubernetes API server
|
|
1660
1660
|
* endpoint. Communication to the endpoint from addresses outside of the CIDR blocks that
|
|
@@ -1667,7 +1667,7 @@ export interface VpcConfigRequest {
|
|
|
1667
1667
|
* </i>.</p>
|
|
1668
1668
|
* @public
|
|
1669
1669
|
*/
|
|
1670
|
-
publicAccessCidrs?: string[];
|
|
1670
|
+
publicAccessCidrs?: string[] | undefined;
|
|
1671
1671
|
}
|
|
1672
1672
|
/**
|
|
1673
1673
|
* @public
|
|
@@ -1696,7 +1696,7 @@ export interface UpgradePolicyRequest {
|
|
|
1696
1696
|
* </p>
|
|
1697
1697
|
* @public
|
|
1698
1698
|
*/
|
|
1699
|
-
supportType?: SupportType;
|
|
1699
|
+
supportType?: SupportType | undefined;
|
|
1700
1700
|
}
|
|
1701
1701
|
/**
|
|
1702
1702
|
* <p>The configuration for zonal shift for the cluster.</p>
|
|
@@ -1707,7 +1707,7 @@ export interface ZonalShiftConfigRequest {
|
|
|
1707
1707
|
* <p>If zonal shift is enabled, Amazon Web Services configures zonal autoshift for the cluster.</p>
|
|
1708
1708
|
* @public
|
|
1709
1709
|
*/
|
|
1710
|
-
enabled?: boolean;
|
|
1710
|
+
enabled?: boolean | undefined;
|
|
1711
1711
|
}
|
|
1712
1712
|
/**
|
|
1713
1713
|
* @public
|
|
@@ -1729,7 +1729,7 @@ export interface CreateClusterRequest {
|
|
|
1729
1729
|
* </note>
|
|
1730
1730
|
* @public
|
|
1731
1731
|
*/
|
|
1732
|
-
version?: string;
|
|
1732
|
+
version?: string | undefined;
|
|
1733
1733
|
/**
|
|
1734
1734
|
* <p>The Amazon Resource Name (ARN) of the IAM role that provides permissions for the Kubernetes
|
|
1735
1735
|
* control plane to make calls to Amazon Web Services API operations on your behalf. For
|
|
@@ -1754,7 +1754,7 @@ export interface CreateClusterRequest {
|
|
|
1754
1754
|
* <p>The Kubernetes network configuration for the cluster.</p>
|
|
1755
1755
|
* @public
|
|
1756
1756
|
*/
|
|
1757
|
-
kubernetesNetworkConfig?: KubernetesNetworkConfigRequest;
|
|
1757
|
+
kubernetesNetworkConfig?: KubernetesNetworkConfigRequest | undefined;
|
|
1758
1758
|
/**
|
|
1759
1759
|
* <p>Enable or disable exporting the Kubernetes control plane logs for your cluster to CloudWatch Logs. By default, cluster control plane logs aren't exported to CloudWatch Logs. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/control-plane-logs.html">Amazon EKS Cluster control plane logs</a> in the
|
|
1760
1760
|
* <i>
|
|
@@ -1767,25 +1767,25 @@ export interface CreateClusterRequest {
|
|
|
1767
1767
|
* </note>
|
|
1768
1768
|
* @public
|
|
1769
1769
|
*/
|
|
1770
|
-
logging?: Logging;
|
|
1770
|
+
logging?: Logging | undefined;
|
|
1771
1771
|
/**
|
|
1772
1772
|
* <p>A unique, case-sensitive identifier that you provide to ensure
|
|
1773
1773
|
* the idempotency of the request.</p>
|
|
1774
1774
|
* @public
|
|
1775
1775
|
*/
|
|
1776
|
-
clientRequestToken?: string;
|
|
1776
|
+
clientRequestToken?: string | undefined;
|
|
1777
1777
|
/**
|
|
1778
1778
|
* <p>Metadata that assists with categorization and organization.
|
|
1779
1779
|
* Each tag consists of a key and an optional value. You define both. Tags don't
|
|
1780
1780
|
* propagate to any other cluster or Amazon Web Services resources.</p>
|
|
1781
1781
|
* @public
|
|
1782
1782
|
*/
|
|
1783
|
-
tags?: Record<string, string
|
|
1783
|
+
tags?: Record<string, string> | undefined;
|
|
1784
1784
|
/**
|
|
1785
1785
|
* <p>The encryption configuration for the cluster.</p>
|
|
1786
1786
|
* @public
|
|
1787
1787
|
*/
|
|
1788
|
-
encryptionConfig?: EncryptionConfig[];
|
|
1788
|
+
encryptionConfig?: EncryptionConfig[] | undefined;
|
|
1789
1789
|
/**
|
|
1790
1790
|
* <p>An object representing the configuration of your local Amazon EKS cluster on
|
|
1791
1791
|
* an Amazon Web Services Outpost. Before creating a local cluster on an Outpost, review
|
|
@@ -1795,24 +1795,24 @@ export interface CreateClusterRequest {
|
|
|
1795
1795
|
* on the Amazon Web Services cloud.</p>
|
|
1796
1796
|
* @public
|
|
1797
1797
|
*/
|
|
1798
|
-
outpostConfig?: OutpostConfigRequest;
|
|
1798
|
+
outpostConfig?: OutpostConfigRequest | undefined;
|
|
1799
1799
|
/**
|
|
1800
1800
|
* <p>The access configuration for the cluster.</p>
|
|
1801
1801
|
* @public
|
|
1802
1802
|
*/
|
|
1803
|
-
accessConfig?: CreateAccessConfigRequest;
|
|
1803
|
+
accessConfig?: CreateAccessConfigRequest | undefined;
|
|
1804
1804
|
/**
|
|
1805
1805
|
* <p>If you set this value to <code>False</code> when creating a cluster, the default networking add-ons will not be installed.</p>
|
|
1806
1806
|
* <p>The default networking addons include vpc-cni, coredns, and kube-proxy.</p>
|
|
1807
1807
|
* <p>Use this option when you plan to install third-party alternative add-ons or self-manage the default networking add-ons.</p>
|
|
1808
1808
|
* @public
|
|
1809
1809
|
*/
|
|
1810
|
-
bootstrapSelfManagedAddons?: boolean;
|
|
1810
|
+
bootstrapSelfManagedAddons?: boolean | undefined;
|
|
1811
1811
|
/**
|
|
1812
1812
|
* <p>New clusters, by default, have extended support enabled. You can disable extended support when creating a cluster by setting this value to <code>STANDARD</code>.</p>
|
|
1813
1813
|
* @public
|
|
1814
1814
|
*/
|
|
1815
|
-
upgradePolicy?: UpgradePolicyRequest;
|
|
1815
|
+
upgradePolicy?: UpgradePolicyRequest | undefined;
|
|
1816
1816
|
/**
|
|
1817
1817
|
* <p>Enable or disable ARC zonal shift for the cluster. If zonal shift is enabled, Amazon Web Services
|
|
1818
1818
|
* configures zonal autoshift for the cluster.</p>
|
|
@@ -1832,7 +1832,7 @@ export interface CreateClusterRequest {
|
|
|
1832
1832
|
* </i>.</p>
|
|
1833
1833
|
* @public
|
|
1834
1834
|
*/
|
|
1835
|
-
zonalShiftConfig?: ZonalShiftConfigRequest;
|
|
1835
|
+
zonalShiftConfig?: ZonalShiftConfigRequest | undefined;
|
|
1836
1836
|
}
|
|
1837
1837
|
/**
|
|
1838
1838
|
* <p>An object representing the <code>certificate-authority-data</code> for your
|
|
@@ -1846,7 +1846,7 @@ export interface Certificate {
|
|
|
1846
1846
|
* <code>kubeconfig</code> file for your cluster.</p>
|
|
1847
1847
|
* @public
|
|
1848
1848
|
*/
|
|
1849
|
-
data?: string;
|
|
1849
|
+
data?: string | undefined;
|
|
1850
1850
|
}
|
|
1851
1851
|
/**
|
|
1852
1852
|
* <p>The full description of your connected cluster.</p>
|
|
@@ -1857,29 +1857,29 @@ export interface ConnectorConfigResponse {
|
|
|
1857
1857
|
* <p>A unique ID associated with the cluster for registration purposes.</p>
|
|
1858
1858
|
* @public
|
|
1859
1859
|
*/
|
|
1860
|
-
activationId?: string;
|
|
1860
|
+
activationId?: string | undefined;
|
|
1861
1861
|
/**
|
|
1862
1862
|
* <p>A unique code associated with the cluster for registration purposes.</p>
|
|
1863
1863
|
* @public
|
|
1864
1864
|
*/
|
|
1865
|
-
activationCode?: string;
|
|
1865
|
+
activationCode?: string | undefined;
|
|
1866
1866
|
/**
|
|
1867
1867
|
* <p>The expiration time of the connected cluster. The cluster's YAML file must be applied
|
|
1868
1868
|
* through the native provider.</p>
|
|
1869
1869
|
* @public
|
|
1870
1870
|
*/
|
|
1871
|
-
activationExpiry?: Date;
|
|
1871
|
+
activationExpiry?: Date | undefined;
|
|
1872
1872
|
/**
|
|
1873
1873
|
* <p>The cluster's cloud service provider.</p>
|
|
1874
1874
|
* @public
|
|
1875
1875
|
*/
|
|
1876
|
-
provider?: string;
|
|
1876
|
+
provider?: string | undefined;
|
|
1877
1877
|
/**
|
|
1878
1878
|
* <p>The Amazon Resource Name (ARN) of the role to communicate with services from the connected Kubernetes
|
|
1879
1879
|
* cluster.</p>
|
|
1880
1880
|
* @public
|
|
1881
1881
|
*/
|
|
1882
|
-
roleArn?: string;
|
|
1882
|
+
roleArn?: string | undefined;
|
|
1883
1883
|
}
|
|
1884
1884
|
/**
|
|
1885
1885
|
* @public
|
|
@@ -1919,17 +1919,17 @@ export interface ClusterIssue {
|
|
|
1919
1919
|
* <p>The error code of the issue.</p>
|
|
1920
1920
|
* @public
|
|
1921
1921
|
*/
|
|
1922
|
-
code?: ClusterIssueCode;
|
|
1922
|
+
code?: ClusterIssueCode | undefined;
|
|
1923
1923
|
/**
|
|
1924
1924
|
* <p>A description of the issue.</p>
|
|
1925
1925
|
* @public
|
|
1926
1926
|
*/
|
|
1927
|
-
message?: string;
|
|
1927
|
+
message?: string | undefined;
|
|
1928
1928
|
/**
|
|
1929
1929
|
* <p>The resource IDs that the issue relates to.</p>
|
|
1930
1930
|
* @public
|
|
1931
1931
|
*/
|
|
1932
|
-
resourceIds?: string[];
|
|
1932
|
+
resourceIds?: string[] | undefined;
|
|
1933
1933
|
}
|
|
1934
1934
|
/**
|
|
1935
1935
|
* <p>An object representing the health of your Amazon EKS cluster.</p>
|
|
@@ -1940,7 +1940,7 @@ export interface ClusterHealth {
|
|
|
1940
1940
|
* <p>An object representing the health issues of your Amazon EKS cluster.</p>
|
|
1941
1941
|
* @public
|
|
1942
1942
|
*/
|
|
1943
|
-
issues?: ClusterIssue[];
|
|
1943
|
+
issues?: ClusterIssue[] | undefined;
|
|
1944
1944
|
}
|
|
1945
1945
|
/**
|
|
1946
1946
|
* <p>An object representing the <a href="https://openid.net/connect/">OpenID Connect</a>
|
|
@@ -1952,7 +1952,7 @@ export interface OIDC {
|
|
|
1952
1952
|
* <p>The issuer URL for the OIDC identity provider.</p>
|
|
1953
1953
|
* @public
|
|
1954
1954
|
*/
|
|
1955
|
-
issuer?: string;
|
|
1955
|
+
issuer?: string | undefined;
|
|
1956
1956
|
}
|
|
1957
1957
|
/**
|
|
1958
1958
|
* <p>An object representing an identity provider.</p>
|
|
@@ -1964,7 +1964,7 @@ export interface Identity {
|
|
|
1964
1964
|
* identity provider information.</p>
|
|
1965
1965
|
* @public
|
|
1966
1966
|
*/
|
|
1967
|
-
oidc?: OIDC;
|
|
1967
|
+
oidc?: OIDC | undefined;
|
|
1968
1968
|
}
|
|
1969
1969
|
/**
|
|
1970
1970
|
* <p>The Kubernetes network configuration for the cluster. The response contains a value for
|
|
@@ -1982,7 +1982,7 @@ export interface KubernetesNetworkConfigResponse {
|
|
|
1982
1982
|
* changed.</p>
|
|
1983
1983
|
* @public
|
|
1984
1984
|
*/
|
|
1985
|
-
serviceIpv4Cidr?: string;
|
|
1985
|
+
serviceIpv4Cidr?: string | undefined;
|
|
1986
1986
|
/**
|
|
1987
1987
|
* <p>The CIDR block that Kubernetes pod and service IP addresses are assigned from if you
|
|
1988
1988
|
* created a 1.21 or later cluster with version 1.10.1 or later of the Amazon VPC CNI add-on and
|
|
@@ -1992,7 +1992,7 @@ export interface KubernetesNetworkConfigResponse {
|
|
|
1992
1992
|
* create the cluster.</p>
|
|
1993
1993
|
* @public
|
|
1994
1994
|
*/
|
|
1995
|
-
serviceIpv6Cidr?: string;
|
|
1995
|
+
serviceIpv6Cidr?: string | undefined;
|
|
1996
1996
|
/**
|
|
1997
1997
|
* <p>The IP family used to assign Kubernetes <code>Pod</code> and <code>Service</code> objects
|
|
1998
1998
|
* IP addresses. The IP family is always <code>ipv4</code>, unless you have a
|
|
@@ -2001,7 +2001,7 @@ export interface KubernetesNetworkConfigResponse {
|
|
|
2001
2001
|
* </p>
|
|
2002
2002
|
* @public
|
|
2003
2003
|
*/
|
|
2004
|
-
ipFamily?: IpFamily;
|
|
2004
|
+
ipFamily?: IpFamily | undefined;
|
|
2005
2005
|
}
|
|
2006
2006
|
/**
|
|
2007
2007
|
* <p>The placement configuration for all the control plane instances of your local Amazon EKS cluster on an Amazon Web Services Outpost. For more information, see
|
|
@@ -2013,7 +2013,7 @@ export interface ControlPlanePlacementResponse {
|
|
|
2013
2013
|
* <p>The name of the placement group for the Kubernetes control plane instances.</p>
|
|
2014
2014
|
* @public
|
|
2015
2015
|
*/
|
|
2016
|
-
groupName?: string;
|
|
2016
|
+
groupName?: string | undefined;
|
|
2017
2017
|
}
|
|
2018
2018
|
/**
|
|
2019
2019
|
* <p>An object representing the configuration of your local Amazon EKS cluster on
|
|
@@ -2041,7 +2041,7 @@ export interface OutpostConfigResponse {
|
|
|
2041
2041
|
* considerations</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
2042
2042
|
* @public
|
|
2043
2043
|
*/
|
|
2044
|
-
controlPlanePlacement?: ControlPlanePlacementResponse;
|
|
2044
|
+
controlPlanePlacement?: ControlPlanePlacementResponse | undefined;
|
|
2045
2045
|
}
|
|
2046
2046
|
/**
|
|
2047
2047
|
* <p>An object representing an Amazon EKS cluster VPC configuration
|
|
@@ -2053,30 +2053,30 @@ export interface VpcConfigResponse {
|
|
|
2053
2053
|
* <p>The subnets associated with your cluster.</p>
|
|
2054
2054
|
* @public
|
|
2055
2055
|
*/
|
|
2056
|
-
subnetIds?: string[];
|
|
2056
|
+
subnetIds?: string[] | undefined;
|
|
2057
2057
|
/**
|
|
2058
2058
|
* <p>The security groups associated with the cross-account elastic network interfaces that
|
|
2059
2059
|
* are used to allow communication between your nodes and the Kubernetes control plane.</p>
|
|
2060
2060
|
* @public
|
|
2061
2061
|
*/
|
|
2062
|
-
securityGroupIds?: string[];
|
|
2062
|
+
securityGroupIds?: string[] | undefined;
|
|
2063
2063
|
/**
|
|
2064
2064
|
* <p>The cluster security group that was created by Amazon EKS for the cluster.
|
|
2065
2065
|
* Managed node groups use this security group for control-plane-to-data-plane
|
|
2066
2066
|
* communication.</p>
|
|
2067
2067
|
* @public
|
|
2068
2068
|
*/
|
|
2069
|
-
clusterSecurityGroupId?: string;
|
|
2069
|
+
clusterSecurityGroupId?: string | undefined;
|
|
2070
2070
|
/**
|
|
2071
2071
|
* <p>The VPC associated with your cluster.</p>
|
|
2072
2072
|
* @public
|
|
2073
2073
|
*/
|
|
2074
|
-
vpcId?: string;
|
|
2074
|
+
vpcId?: string | undefined;
|
|
2075
2075
|
/**
|
|
2076
2076
|
* <p>Whether the public API server endpoint is enabled.</p>
|
|
2077
2077
|
* @public
|
|
2078
2078
|
*/
|
|
2079
|
-
endpointPublicAccess?: boolean;
|
|
2079
|
+
endpointPublicAccess?: boolean | undefined;
|
|
2080
2080
|
/**
|
|
2081
2081
|
* <p>This parameter indicates whether the Amazon EKS private API server endpoint is
|
|
2082
2082
|
* enabled. If the Amazon EKS private API server endpoint is enabled, Kubernetes API
|
|
@@ -2090,13 +2090,13 @@ export interface VpcConfigResponse {
|
|
|
2090
2090
|
* </i>.</p>
|
|
2091
2091
|
* @public
|
|
2092
2092
|
*/
|
|
2093
|
-
endpointPrivateAccess?: boolean;
|
|
2093
|
+
endpointPrivateAccess?: boolean | undefined;
|
|
2094
2094
|
/**
|
|
2095
2095
|
* <p>The CIDR blocks that are allowed access to your cluster's public Kubernetes API server
|
|
2096
2096
|
* endpoint.</p>
|
|
2097
2097
|
* @public
|
|
2098
2098
|
*/
|
|
2099
|
-
publicAccessCidrs?: string[];
|
|
2099
|
+
publicAccessCidrs?: string[] | undefined;
|
|
2100
2100
|
}
|
|
2101
2101
|
/**
|
|
2102
2102
|
* @public
|
|
@@ -2129,7 +2129,7 @@ export interface UpgradePolicyResponse {
|
|
|
2129
2129
|
* </p>
|
|
2130
2130
|
* @public
|
|
2131
2131
|
*/
|
|
2132
|
-
supportType?: SupportType;
|
|
2132
|
+
supportType?: SupportType | undefined;
|
|
2133
2133
|
}
|
|
2134
2134
|
/**
|
|
2135
2135
|
* <p>The status of zonal shift configuration for the cluster</p>
|
|
@@ -2140,7 +2140,7 @@ export interface ZonalShiftConfigResponse {
|
|
|
2140
2140
|
* <p>Whether the zonal shift is enabled.</p>
|
|
2141
2141
|
* @public
|
|
2142
2142
|
*/
|
|
2143
|
-
enabled?: boolean;
|
|
2143
|
+
enabled?: boolean | undefined;
|
|
2144
2144
|
}
|
|
2145
2145
|
/**
|
|
2146
2146
|
* <p>An object representing an Amazon EKS cluster.</p>
|
|
@@ -2151,33 +2151,33 @@ export interface Cluster {
|
|
|
2151
2151
|
* <p>The name of your cluster.</p>
|
|
2152
2152
|
* @public
|
|
2153
2153
|
*/
|
|
2154
|
-
name?: string;
|
|
2154
|
+
name?: string | undefined;
|
|
2155
2155
|
/**
|
|
2156
2156
|
* <p>The Amazon Resource Name (ARN) of the cluster.</p>
|
|
2157
2157
|
* @public
|
|
2158
2158
|
*/
|
|
2159
|
-
arn?: string;
|
|
2159
|
+
arn?: string | undefined;
|
|
2160
2160
|
/**
|
|
2161
2161
|
* <p>The Unix epoch timestamp at object creation.</p>
|
|
2162
2162
|
* @public
|
|
2163
2163
|
*/
|
|
2164
|
-
createdAt?: Date;
|
|
2164
|
+
createdAt?: Date | undefined;
|
|
2165
2165
|
/**
|
|
2166
2166
|
* <p>The Kubernetes server version for the cluster.</p>
|
|
2167
2167
|
* @public
|
|
2168
2168
|
*/
|
|
2169
|
-
version?: string;
|
|
2169
|
+
version?: string | undefined;
|
|
2170
2170
|
/**
|
|
2171
2171
|
* <p>The endpoint for your Kubernetes API server.</p>
|
|
2172
2172
|
* @public
|
|
2173
2173
|
*/
|
|
2174
|
-
endpoint?: string;
|
|
2174
|
+
endpoint?: string | undefined;
|
|
2175
2175
|
/**
|
|
2176
2176
|
* <p>The Amazon Resource Name (ARN) of the IAM role that provides permissions for the Kubernetes
|
|
2177
2177
|
* control plane to make calls to Amazon Web Services API operations on your behalf.</p>
|
|
2178
2178
|
* @public
|
|
2179
2179
|
*/
|
|
2180
|
-
roleArn?: string;
|
|
2180
|
+
roleArn?: string | undefined;
|
|
2181
2181
|
/**
|
|
2182
2182
|
* <p>The VPC configuration used by the cluster control plane. Amazon EKS VPC
|
|
2183
2183
|
* resources have specific requirements to work properly with Kubernetes. For more information,
|
|
@@ -2186,38 +2186,38 @@ export interface Cluster {
|
|
|
2186
2186
|
* <i>Amazon EKS User Guide</i>.</p>
|
|
2187
2187
|
* @public
|
|
2188
2188
|
*/
|
|
2189
|
-
resourcesVpcConfig?: VpcConfigResponse;
|
|
2189
|
+
resourcesVpcConfig?: VpcConfigResponse | undefined;
|
|
2190
2190
|
/**
|
|
2191
2191
|
* <p>The Kubernetes network configuration for the cluster.</p>
|
|
2192
2192
|
* @public
|
|
2193
2193
|
*/
|
|
2194
|
-
kubernetesNetworkConfig?: KubernetesNetworkConfigResponse;
|
|
2194
|
+
kubernetesNetworkConfig?: KubernetesNetworkConfigResponse | undefined;
|
|
2195
2195
|
/**
|
|
2196
2196
|
* <p>The logging configuration for your cluster.</p>
|
|
2197
2197
|
* @public
|
|
2198
2198
|
*/
|
|
2199
|
-
logging?: Logging;
|
|
2199
|
+
logging?: Logging | undefined;
|
|
2200
2200
|
/**
|
|
2201
2201
|
* <p>The identity provider information for the cluster.</p>
|
|
2202
2202
|
* @public
|
|
2203
2203
|
*/
|
|
2204
|
-
identity?: Identity;
|
|
2204
|
+
identity?: Identity | undefined;
|
|
2205
2205
|
/**
|
|
2206
2206
|
* <p>The current status of the cluster.</p>
|
|
2207
2207
|
* @public
|
|
2208
2208
|
*/
|
|
2209
|
-
status?: ClusterStatus;
|
|
2209
|
+
status?: ClusterStatus | undefined;
|
|
2210
2210
|
/**
|
|
2211
2211
|
* <p>The <code>certificate-authority-data</code> for your cluster.</p>
|
|
2212
2212
|
* @public
|
|
2213
2213
|
*/
|
|
2214
|
-
certificateAuthority?: Certificate;
|
|
2214
|
+
certificateAuthority?: Certificate | undefined;
|
|
2215
2215
|
/**
|
|
2216
2216
|
* <p>A unique, case-sensitive identifier that you provide to ensure
|
|
2217
2217
|
* the idempotency of the request.</p>
|
|
2218
2218
|
* @public
|
|
2219
2219
|
*/
|
|
2220
|
-
clientRequestToken?: string;
|
|
2220
|
+
clientRequestToken?: string | undefined;
|
|
2221
2221
|
/**
|
|
2222
2222
|
* <p>The platform version of your Amazon EKS cluster. For more information about
|
|
2223
2223
|
* clusters deployed on the Amazon Web Services Cloud, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/platform-versions.html">Platform
|
|
@@ -2230,47 +2230,47 @@ export interface Cluster {
|
|
|
2230
2230
|
* </i>.</p>
|
|
2231
2231
|
* @public
|
|
2232
2232
|
*/
|
|
2233
|
-
platformVersion?: string;
|
|
2233
|
+
platformVersion?: string | undefined;
|
|
2234
2234
|
/**
|
|
2235
2235
|
* <p>Metadata that assists with categorization and organization.
|
|
2236
2236
|
* Each tag consists of a key and an optional value. You define both. Tags don't
|
|
2237
2237
|
* propagate to any other cluster or Amazon Web Services resources.</p>
|
|
2238
2238
|
* @public
|
|
2239
2239
|
*/
|
|
2240
|
-
tags?: Record<string, string
|
|
2240
|
+
tags?: Record<string, string> | undefined;
|
|
2241
2241
|
/**
|
|
2242
2242
|
* <p>The encryption configuration for the cluster.</p>
|
|
2243
2243
|
* @public
|
|
2244
2244
|
*/
|
|
2245
|
-
encryptionConfig?: EncryptionConfig[];
|
|
2245
|
+
encryptionConfig?: EncryptionConfig[] | undefined;
|
|
2246
2246
|
/**
|
|
2247
2247
|
* <p>The configuration used to connect to a cluster for registration.</p>
|
|
2248
2248
|
* @public
|
|
2249
2249
|
*/
|
|
2250
|
-
connectorConfig?: ConnectorConfigResponse;
|
|
2250
|
+
connectorConfig?: ConnectorConfigResponse | undefined;
|
|
2251
2251
|
/**
|
|
2252
2252
|
* <p>The ID of your local Amazon EKS cluster on an Amazon Web Services Outpost. This
|
|
2253
2253
|
* property isn't available for an Amazon EKS cluster on the Amazon Web Services
|
|
2254
2254
|
* cloud.</p>
|
|
2255
2255
|
* @public
|
|
2256
2256
|
*/
|
|
2257
|
-
id?: string;
|
|
2257
|
+
id?: string | undefined;
|
|
2258
2258
|
/**
|
|
2259
2259
|
* <p>An object representing the health of your Amazon EKS cluster.</p>
|
|
2260
2260
|
* @public
|
|
2261
2261
|
*/
|
|
2262
|
-
health?: ClusterHealth;
|
|
2262
|
+
health?: ClusterHealth | undefined;
|
|
2263
2263
|
/**
|
|
2264
2264
|
* <p>An object representing the configuration of your local Amazon EKS cluster on
|
|
2265
2265
|
* an Amazon Web Services Outpost. This object isn't available for clusters on the Amazon Web Services cloud.</p>
|
|
2266
2266
|
* @public
|
|
2267
2267
|
*/
|
|
2268
|
-
outpostConfig?: OutpostConfigResponse;
|
|
2268
|
+
outpostConfig?: OutpostConfigResponse | undefined;
|
|
2269
2269
|
/**
|
|
2270
2270
|
* <p>The access configuration for the cluster.</p>
|
|
2271
2271
|
* @public
|
|
2272
2272
|
*/
|
|
2273
|
-
accessConfig?: AccessConfigResponse;
|
|
2273
|
+
accessConfig?: AccessConfigResponse | undefined;
|
|
2274
2274
|
/**
|
|
2275
2275
|
* <p>This value indicates if extended support is enabled or disabled for the cluster.</p>
|
|
2276
2276
|
* <p>
|
|
@@ -2278,12 +2278,12 @@ export interface Cluster {
|
|
|
2278
2278
|
* </p>
|
|
2279
2279
|
* @public
|
|
2280
2280
|
*/
|
|
2281
|
-
upgradePolicy?: UpgradePolicyResponse;
|
|
2281
|
+
upgradePolicy?: UpgradePolicyResponse | undefined;
|
|
2282
2282
|
/**
|
|
2283
2283
|
* <p>The configuration for zonal shift for the cluster.</p>
|
|
2284
2284
|
* @public
|
|
2285
2285
|
*/
|
|
2286
|
-
zonalShiftConfig?: ZonalShiftConfigResponse;
|
|
2286
|
+
zonalShiftConfig?: ZonalShiftConfigResponse | undefined;
|
|
2287
2287
|
}
|
|
2288
2288
|
/**
|
|
2289
2289
|
* @public
|
|
@@ -2293,7 +2293,7 @@ export interface CreateClusterResponse {
|
|
|
2293
2293
|
* <p>The full description of your new cluster.</p>
|
|
2294
2294
|
* @public
|
|
2295
2295
|
*/
|
|
2296
|
-
cluster?: Cluster;
|
|
2296
|
+
cluster?: Cluster | undefined;
|
|
2297
2297
|
}
|
|
2298
2298
|
/**
|
|
2299
2299
|
* <p>The service is unavailable. Back off and retry the operation.</p>
|
|
@@ -2321,18 +2321,18 @@ export declare class UnsupportedAvailabilityZoneException extends __BaseExceptio
|
|
|
2321
2321
|
* <p>The Amazon EKS cluster associated with the exception.</p>
|
|
2322
2322
|
* @public
|
|
2323
2323
|
*/
|
|
2324
|
-
clusterName?: string;
|
|
2324
|
+
clusterName?: string | undefined;
|
|
2325
2325
|
/**
|
|
2326
2326
|
* <p>The Amazon EKS managed node group associated with the exception.</p>
|
|
2327
2327
|
* @public
|
|
2328
2328
|
*/
|
|
2329
|
-
nodegroupName?: string;
|
|
2329
|
+
nodegroupName?: string | undefined;
|
|
2330
2330
|
/**
|
|
2331
2331
|
* <p>The supported Availability Zones for your account. Choose subnets in these
|
|
2332
2332
|
* Availability Zones for your cluster.</p>
|
|
2333
2333
|
* @public
|
|
2334
2334
|
*/
|
|
2335
|
-
validZones?: string[];
|
|
2335
|
+
validZones?: string[] | undefined;
|
|
2336
2336
|
/**
|
|
2337
2337
|
* @internal
|
|
2338
2338
|
*/
|
|
@@ -2372,12 +2372,12 @@ export interface EksAnywhereSubscriptionTerm {
|
|
|
2372
2372
|
* month or 36 month subscription.</p>
|
|
2373
2373
|
* @public
|
|
2374
2374
|
*/
|
|
2375
|
-
duration?: number;
|
|
2375
|
+
duration?: number | undefined;
|
|
2376
2376
|
/**
|
|
2377
2377
|
* <p>The term unit of the subscription. Valid value is <code>MONTHS</code>.</p>
|
|
2378
2378
|
* @public
|
|
2379
2379
|
*/
|
|
2380
|
-
unit?: EksAnywhereSubscriptionTermUnit;
|
|
2380
|
+
unit?: EksAnywhereSubscriptionTermUnit | undefined;
|
|
2381
2381
|
}
|
|
2382
2382
|
/**
|
|
2383
2383
|
* @public
|
|
@@ -2404,33 +2404,33 @@ export interface CreateEksAnywhereSubscriptionRequest {
|
|
|
2404
2404
|
* and 100. This value can't be changed after creating the subscription.</p>
|
|
2405
2405
|
* @public
|
|
2406
2406
|
*/
|
|
2407
|
-
licenseQuantity?: number;
|
|
2407
|
+
licenseQuantity?: number | undefined;
|
|
2408
2408
|
/**
|
|
2409
2409
|
* <p>The license type for all licenses in the subscription. Valid value is CLUSTER. With
|
|
2410
2410
|
* the CLUSTER license type, each license covers support for a single EKS Anywhere
|
|
2411
2411
|
* cluster.</p>
|
|
2412
2412
|
* @public
|
|
2413
2413
|
*/
|
|
2414
|
-
licenseType?: EksAnywhereSubscriptionLicenseType;
|
|
2414
|
+
licenseType?: EksAnywhereSubscriptionLicenseType | undefined;
|
|
2415
2415
|
/**
|
|
2416
2416
|
* <p>A boolean indicating whether the subscription auto renews at the end of the
|
|
2417
2417
|
* term.</p>
|
|
2418
2418
|
* @public
|
|
2419
2419
|
*/
|
|
2420
|
-
autoRenew?: boolean;
|
|
2420
|
+
autoRenew?: boolean | undefined;
|
|
2421
2421
|
/**
|
|
2422
2422
|
* <p>A unique, case-sensitive identifier that you provide to ensure
|
|
2423
2423
|
* the idempotency of the request.</p>
|
|
2424
2424
|
* @public
|
|
2425
2425
|
*/
|
|
2426
|
-
clientRequestToken?: string;
|
|
2426
|
+
clientRequestToken?: string | undefined;
|
|
2427
2427
|
/**
|
|
2428
2428
|
* <p>The metadata for a subscription to assist with categorization and organization. Each
|
|
2429
2429
|
* tag consists of a key and an optional value. Subscription tags don't propagate to any
|
|
2430
2430
|
* other resources associated with the subscription.</p>
|
|
2431
2431
|
* @public
|
|
2432
2432
|
*/
|
|
2433
|
-
tags?: Record<string, string
|
|
2433
|
+
tags?: Record<string, string> | undefined;
|
|
2434
2434
|
}
|
|
2435
2435
|
/**
|
|
2436
2436
|
* <p>An EKS Anywhere subscription authorizing the customer to support for licensed clusters
|
|
@@ -2442,69 +2442,69 @@ export interface EksAnywhereSubscription {
|
|
|
2442
2442
|
* <p>UUID identifying a subscription.</p>
|
|
2443
2443
|
* @public
|
|
2444
2444
|
*/
|
|
2445
|
-
id?: string;
|
|
2445
|
+
id?: string | undefined;
|
|
2446
2446
|
/**
|
|
2447
2447
|
* <p>The Amazon Resource Name (ARN) for the subscription.</p>
|
|
2448
2448
|
* @public
|
|
2449
2449
|
*/
|
|
2450
|
-
arn?: string;
|
|
2450
|
+
arn?: string | undefined;
|
|
2451
2451
|
/**
|
|
2452
2452
|
* <p>The Unix timestamp in seconds for when the subscription was created.</p>
|
|
2453
2453
|
* @public
|
|
2454
2454
|
*/
|
|
2455
|
-
createdAt?: Date;
|
|
2455
|
+
createdAt?: Date | undefined;
|
|
2456
2456
|
/**
|
|
2457
2457
|
* <p>The Unix timestamp in seconds for when the subscription is effective.</p>
|
|
2458
2458
|
* @public
|
|
2459
2459
|
*/
|
|
2460
|
-
effectiveDate?: Date;
|
|
2460
|
+
effectiveDate?: Date | undefined;
|
|
2461
2461
|
/**
|
|
2462
2462
|
* <p>The Unix timestamp in seconds for when the subscription will expire or auto renew,
|
|
2463
2463
|
* depending on the auto renew configuration of the subscription object.</p>
|
|
2464
2464
|
* @public
|
|
2465
2465
|
*/
|
|
2466
|
-
expirationDate?: Date;
|
|
2466
|
+
expirationDate?: Date | undefined;
|
|
2467
2467
|
/**
|
|
2468
2468
|
* <p>The number of licenses included in a subscription. Valid values are between 1 and
|
|
2469
2469
|
* 100.</p>
|
|
2470
2470
|
* @public
|
|
2471
2471
|
*/
|
|
2472
|
-
licenseQuantity?: number;
|
|
2472
|
+
licenseQuantity?: number | undefined;
|
|
2473
2473
|
/**
|
|
2474
2474
|
* <p>The type of licenses included in the subscription. Valid value is CLUSTER. With the
|
|
2475
2475
|
* CLUSTER license type, each license covers support for a single EKS Anywhere
|
|
2476
2476
|
* cluster.</p>
|
|
2477
2477
|
* @public
|
|
2478
2478
|
*/
|
|
2479
|
-
licenseType?: EksAnywhereSubscriptionLicenseType;
|
|
2479
|
+
licenseType?: EksAnywhereSubscriptionLicenseType | undefined;
|
|
2480
2480
|
/**
|
|
2481
2481
|
* <p>An EksAnywhereSubscriptionTerm object. </p>
|
|
2482
2482
|
* @public
|
|
2483
2483
|
*/
|
|
2484
|
-
term?: EksAnywhereSubscriptionTerm;
|
|
2484
|
+
term?: EksAnywhereSubscriptionTerm | undefined;
|
|
2485
2485
|
/**
|
|
2486
2486
|
* <p>The status of a subscription.</p>
|
|
2487
2487
|
* @public
|
|
2488
2488
|
*/
|
|
2489
|
-
status?: string;
|
|
2489
|
+
status?: string | undefined;
|
|
2490
2490
|
/**
|
|
2491
2491
|
* <p>A boolean indicating whether or not a subscription will auto renew when it
|
|
2492
2492
|
* expires.</p>
|
|
2493
2493
|
* @public
|
|
2494
2494
|
*/
|
|
2495
|
-
autoRenew?: boolean;
|
|
2495
|
+
autoRenew?: boolean | undefined;
|
|
2496
2496
|
/**
|
|
2497
2497
|
* <p>Amazon Web Services License Manager ARN associated with the subscription.</p>
|
|
2498
2498
|
* @public
|
|
2499
2499
|
*/
|
|
2500
|
-
licenseArns?: string[];
|
|
2500
|
+
licenseArns?: string[] | undefined;
|
|
2501
2501
|
/**
|
|
2502
2502
|
* <p>The metadata for a subscription to assist with categorization and organization. Each
|
|
2503
2503
|
* tag consists of a key and an optional value. Subscription tags do not propagate to any
|
|
2504
2504
|
* other resources associated with the subscription.</p>
|
|
2505
2505
|
* @public
|
|
2506
2506
|
*/
|
|
2507
|
-
tags?: Record<string, string
|
|
2507
|
+
tags?: Record<string, string> | undefined;
|
|
2508
2508
|
}
|
|
2509
2509
|
/**
|
|
2510
2510
|
* @public
|
|
@@ -2514,7 +2514,7 @@ export interface CreateEksAnywhereSubscriptionResponse {
|
|
|
2514
2514
|
* <p>The full description of the subscription.</p>
|
|
2515
2515
|
* @public
|
|
2516
2516
|
*/
|
|
2517
|
-
subscription?: EksAnywhereSubscription;
|
|
2517
|
+
subscription?: EksAnywhereSubscription | undefined;
|
|
2518
2518
|
}
|
|
2519
2519
|
/**
|
|
2520
2520
|
* <p>An object representing an Fargate profile selector.</p>
|
|
@@ -2525,13 +2525,13 @@ export interface FargateProfileSelector {
|
|
|
2525
2525
|
* <p>The Kubernetes <code>namespace</code> that the selector should match.</p>
|
|
2526
2526
|
* @public
|
|
2527
2527
|
*/
|
|
2528
|
-
namespace?: string;
|
|
2528
|
+
namespace?: string | undefined;
|
|
2529
2529
|
/**
|
|
2530
2530
|
* <p>The Kubernetes labels that the selector should match. A pod must contain all of the labels
|
|
2531
2531
|
* that are specified in the selector for it to be considered a match.</p>
|
|
2532
2532
|
* @public
|
|
2533
2533
|
*/
|
|
2534
|
-
labels?: Record<string, string
|
|
2534
|
+
labels?: Record<string, string> | undefined;
|
|
2535
2535
|
}
|
|
2536
2536
|
/**
|
|
2537
2537
|
* @public
|
|
@@ -2564,7 +2564,7 @@ export interface CreateFargateProfileRequest {
|
|
|
2564
2564
|
* (with no direct route to an Internet Gateway) are accepted for this parameter.</p>
|
|
2565
2565
|
* @public
|
|
2566
2566
|
*/
|
|
2567
|
-
subnets?: string[];
|
|
2567
|
+
subnets?: string[] | undefined;
|
|
2568
2568
|
/**
|
|
2569
2569
|
* <p>The selectors to match for a <code>Pod</code> to use this Fargate
|
|
2570
2570
|
* profile. Each selector must have an associated Kubernetes <code>namespace</code>. Optionally,
|
|
@@ -2572,20 +2572,20 @@ export interface CreateFargateProfileRequest {
|
|
|
2572
2572
|
* up to five selectors in a Fargate profile.</p>
|
|
2573
2573
|
* @public
|
|
2574
2574
|
*/
|
|
2575
|
-
selectors?: FargateProfileSelector[];
|
|
2575
|
+
selectors?: FargateProfileSelector[] | undefined;
|
|
2576
2576
|
/**
|
|
2577
2577
|
* <p>A unique, case-sensitive identifier that you provide to ensure
|
|
2578
2578
|
* the idempotency of the request.</p>
|
|
2579
2579
|
* @public
|
|
2580
2580
|
*/
|
|
2581
|
-
clientRequestToken?: string;
|
|
2581
|
+
clientRequestToken?: string | undefined;
|
|
2582
2582
|
/**
|
|
2583
2583
|
* <p>Metadata that assists with categorization and organization.
|
|
2584
2584
|
* Each tag consists of a key and an optional value. You define both. Tags don't
|
|
2585
2585
|
* propagate to any other cluster or Amazon Web Services resources.</p>
|
|
2586
2586
|
* @public
|
|
2587
2587
|
*/
|
|
2588
|
-
tags?: Record<string, string
|
|
2588
|
+
tags?: Record<string, string> | undefined;
|
|
2589
2589
|
}
|
|
2590
2590
|
/**
|
|
2591
2591
|
* @public
|
|
@@ -2610,17 +2610,17 @@ export interface FargateProfileIssue {
|
|
|
2610
2610
|
* <p>A brief description of the error.</p>
|
|
2611
2611
|
* @public
|
|
2612
2612
|
*/
|
|
2613
|
-
code?: FargateProfileIssueCode;
|
|
2613
|
+
code?: FargateProfileIssueCode | undefined;
|
|
2614
2614
|
/**
|
|
2615
2615
|
* <p>The error message associated with the issue.</p>
|
|
2616
2616
|
* @public
|
|
2617
2617
|
*/
|
|
2618
|
-
message?: string;
|
|
2618
|
+
message?: string | undefined;
|
|
2619
2619
|
/**
|
|
2620
2620
|
* <p>The Amazon Web Services resources that are affected by this issue.</p>
|
|
2621
2621
|
* @public
|
|
2622
2622
|
*/
|
|
2623
|
-
resourceIds?: string[];
|
|
2623
|
+
resourceIds?: string[] | undefined;
|
|
2624
2624
|
}
|
|
2625
2625
|
/**
|
|
2626
2626
|
* <p>The health status of the Fargate profile. If there are issues with
|
|
@@ -2632,7 +2632,7 @@ export interface FargateProfileHealth {
|
|
|
2632
2632
|
* <p>Any issues that are associated with the Fargate profile.</p>
|
|
2633
2633
|
* @public
|
|
2634
2634
|
*/
|
|
2635
|
-
issues?: FargateProfileIssue[];
|
|
2635
|
+
issues?: FargateProfileIssue[] | undefined;
|
|
2636
2636
|
}
|
|
2637
2637
|
/**
|
|
2638
2638
|
* @public
|
|
@@ -2658,22 +2658,22 @@ export interface FargateProfile {
|
|
|
2658
2658
|
* <p>The name of the Fargate profile.</p>
|
|
2659
2659
|
* @public
|
|
2660
2660
|
*/
|
|
2661
|
-
fargateProfileName?: string;
|
|
2661
|
+
fargateProfileName?: string | undefined;
|
|
2662
2662
|
/**
|
|
2663
2663
|
* <p>The full Amazon Resource Name (ARN) of the Fargate profile.</p>
|
|
2664
2664
|
* @public
|
|
2665
2665
|
*/
|
|
2666
|
-
fargateProfileArn?: string;
|
|
2666
|
+
fargateProfileArn?: string | undefined;
|
|
2667
2667
|
/**
|
|
2668
2668
|
* <p>The name of your cluster.</p>
|
|
2669
2669
|
* @public
|
|
2670
2670
|
*/
|
|
2671
|
-
clusterName?: string;
|
|
2671
|
+
clusterName?: string | undefined;
|
|
2672
2672
|
/**
|
|
2673
2673
|
* <p>The Unix epoch timestamp at object creation.</p>
|
|
2674
2674
|
* @public
|
|
2675
2675
|
*/
|
|
2676
|
-
createdAt?: Date;
|
|
2676
|
+
createdAt?: Date | undefined;
|
|
2677
2677
|
/**
|
|
2678
2678
|
* <p>The Amazon Resource Name (ARN) of the <code>Pod</code> execution role to use for any <code>Pod</code>
|
|
2679
2679
|
* that matches the selectors in the Fargate profile. For more information,
|
|
@@ -2681,36 +2681,36 @@ export interface FargateProfile {
|
|
|
2681
2681
|
* <code>Pod</code> execution role</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
2682
2682
|
* @public
|
|
2683
2683
|
*/
|
|
2684
|
-
podExecutionRoleArn?: string;
|
|
2684
|
+
podExecutionRoleArn?: string | undefined;
|
|
2685
2685
|
/**
|
|
2686
2686
|
* <p>The IDs of subnets to launch a <code>Pod</code> into.</p>
|
|
2687
2687
|
* @public
|
|
2688
2688
|
*/
|
|
2689
|
-
subnets?: string[];
|
|
2689
|
+
subnets?: string[] | undefined;
|
|
2690
2690
|
/**
|
|
2691
2691
|
* <p>The selectors to match for a <code>Pod</code> to use this Fargate
|
|
2692
2692
|
* profile.</p>
|
|
2693
2693
|
* @public
|
|
2694
2694
|
*/
|
|
2695
|
-
selectors?: FargateProfileSelector[];
|
|
2695
|
+
selectors?: FargateProfileSelector[] | undefined;
|
|
2696
2696
|
/**
|
|
2697
2697
|
* <p>The current status of the Fargate profile.</p>
|
|
2698
2698
|
* @public
|
|
2699
2699
|
*/
|
|
2700
|
-
status?: FargateProfileStatus;
|
|
2700
|
+
status?: FargateProfileStatus | undefined;
|
|
2701
2701
|
/**
|
|
2702
2702
|
* <p>Metadata that assists with categorization and organization.
|
|
2703
2703
|
* Each tag consists of a key and an optional value. You define both. Tags don't
|
|
2704
2704
|
* propagate to any other cluster or Amazon Web Services resources.</p>
|
|
2705
2705
|
* @public
|
|
2706
2706
|
*/
|
|
2707
|
-
tags?: Record<string, string
|
|
2707
|
+
tags?: Record<string, string> | undefined;
|
|
2708
2708
|
/**
|
|
2709
2709
|
* <p>The health status of the Fargate profile. If there are issues with
|
|
2710
2710
|
* your Fargate profile's health, they are listed here.</p>
|
|
2711
2711
|
* @public
|
|
2712
2712
|
*/
|
|
2713
|
-
health?: FargateProfileHealth;
|
|
2713
|
+
health?: FargateProfileHealth | undefined;
|
|
2714
2714
|
}
|
|
2715
2715
|
/**
|
|
2716
2716
|
* @public
|
|
@@ -2720,7 +2720,7 @@ export interface CreateFargateProfileResponse {
|
|
|
2720
2720
|
* <p>The full description of your new Fargate profile.</p>
|
|
2721
2721
|
* @public
|
|
2722
2722
|
*/
|
|
2723
|
-
fargateProfile?: FargateProfile;
|
|
2723
|
+
fargateProfile?: FargateProfile | undefined;
|
|
2724
2724
|
}
|
|
2725
2725
|
/**
|
|
2726
2726
|
* @public
|
|
@@ -2763,20 +2763,20 @@ export interface LaunchTemplateSpecification {
|
|
|
2763
2763
|
* request, but not both.</p>
|
|
2764
2764
|
* @public
|
|
2765
2765
|
*/
|
|
2766
|
-
name?: string;
|
|
2766
|
+
name?: string | undefined;
|
|
2767
2767
|
/**
|
|
2768
2768
|
* <p>The version number of the launch template to use. If no version is specified, then the
|
|
2769
2769
|
* template's default version is used.</p>
|
|
2770
2770
|
* @public
|
|
2771
2771
|
*/
|
|
2772
|
-
version?: string;
|
|
2772
|
+
version?: string | undefined;
|
|
2773
2773
|
/**
|
|
2774
2774
|
* <p>The ID of the launch template.</p>
|
|
2775
2775
|
* <p>You must specify either the launch template ID or the launch template name in the
|
|
2776
2776
|
* request, but not both.</p>
|
|
2777
2777
|
* @public
|
|
2778
2778
|
*/
|
|
2779
|
-
id?: string;
|
|
2779
|
+
id?: string | undefined;
|
|
2780
2780
|
}
|
|
2781
2781
|
/**
|
|
2782
2782
|
* <p>An object representing the remote access configuration for the managed node
|
|
@@ -2792,7 +2792,7 @@ export interface RemoteAccessConfig {
|
|
|
2792
2792
|
* the <i>Amazon Elastic Compute Cloud User Guide for Windows Instances</i>.</p>
|
|
2793
2793
|
* @public
|
|
2794
2794
|
*/
|
|
2795
|
-
ec2SshKey?: string;
|
|
2795
|
+
ec2SshKey?: string | undefined;
|
|
2796
2796
|
/**
|
|
2797
2797
|
* <p>The security group IDs that are allowed SSH access (port 22) to the nodes. For
|
|
2798
2798
|
* Windows, the port is 3389. If you specify an Amazon EC2 SSH key but don't
|
|
@@ -2801,7 +2801,7 @@ export interface RemoteAccessConfig {
|
|
|
2801
2801
|
* <a href="https://docs.aws.amazon.com/vpc/latest/userguide/VPC_SecurityGroups.html">Security Groups for Your VPC</a> in the <i>Amazon Virtual Private Cloud User Guide</i>.</p>
|
|
2802
2802
|
* @public
|
|
2803
2803
|
*/
|
|
2804
|
-
sourceSecurityGroups?: string[];
|
|
2804
|
+
sourceSecurityGroups?: string[] | undefined;
|
|
2805
2805
|
}
|
|
2806
2806
|
/**
|
|
2807
2807
|
* <p>An object representing the scaling configuration details for the Auto Scaling
|
|
@@ -2815,13 +2815,13 @@ export interface NodegroupScalingConfig {
|
|
|
2815
2815
|
* <p>The minimum number of nodes that the managed node group can scale in to.</p>
|
|
2816
2816
|
* @public
|
|
2817
2817
|
*/
|
|
2818
|
-
minSize?: number;
|
|
2818
|
+
minSize?: number | undefined;
|
|
2819
2819
|
/**
|
|
2820
2820
|
* <p>The maximum number of nodes that the managed node group can scale out to. For
|
|
2821
2821
|
* information about the maximum number that you can specify, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/service-quotas.html">Amazon EKS service quotas</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
2822
2822
|
* @public
|
|
2823
2823
|
*/
|
|
2824
|
-
maxSize?: number;
|
|
2824
|
+
maxSize?: number | undefined;
|
|
2825
2825
|
/**
|
|
2826
2826
|
* <p>The current number of nodes that the managed node group should maintain.</p>
|
|
2827
2827
|
* <important>
|
|
@@ -2846,7 +2846,7 @@ export interface NodegroupScalingConfig {
|
|
|
2846
2846
|
* node group lower than <code>minSize</code> or higher than <code>maxSize</code>.</p>
|
|
2847
2847
|
* @public
|
|
2848
2848
|
*/
|
|
2849
|
-
desiredSize?: number;
|
|
2849
|
+
desiredSize?: number | undefined;
|
|
2850
2850
|
}
|
|
2851
2851
|
/**
|
|
2852
2852
|
* @public
|
|
@@ -2872,17 +2872,17 @@ export interface Taint {
|
|
|
2872
2872
|
* <p>The key of the taint.</p>
|
|
2873
2873
|
* @public
|
|
2874
2874
|
*/
|
|
2875
|
-
key?: string;
|
|
2875
|
+
key?: string | undefined;
|
|
2876
2876
|
/**
|
|
2877
2877
|
* <p>The value of the taint.</p>
|
|
2878
2878
|
* @public
|
|
2879
2879
|
*/
|
|
2880
|
-
value?: string;
|
|
2880
|
+
value?: string | undefined;
|
|
2881
2881
|
/**
|
|
2882
2882
|
* <p>The effect of the taint.</p>
|
|
2883
2883
|
* @public
|
|
2884
2884
|
*/
|
|
2885
|
-
effect?: TaintEffect;
|
|
2885
|
+
effect?: TaintEffect | undefined;
|
|
2886
2886
|
}
|
|
2887
2887
|
/**
|
|
2888
2888
|
* <p>The node group update configuration.</p>
|
|
@@ -2895,14 +2895,14 @@ export interface NodegroupUpdateConfig {
|
|
|
2895
2895
|
* have a value.The maximum number is 100.</p>
|
|
2896
2896
|
* @public
|
|
2897
2897
|
*/
|
|
2898
|
-
maxUnavailable?: number;
|
|
2898
|
+
maxUnavailable?: number | undefined;
|
|
2899
2899
|
/**
|
|
2900
2900
|
* <p>The maximum percentage of nodes unavailable during a version update. This percentage
|
|
2901
2901
|
* of nodes are updated in parallel, up to 100 nodes at once. This value or
|
|
2902
2902
|
* <code>maxUnavailable</code> is required to have a value.</p>
|
|
2903
2903
|
* @public
|
|
2904
2904
|
*/
|
|
2905
|
-
maxUnavailablePercentage?: number;
|
|
2905
|
+
maxUnavailablePercentage?: number | undefined;
|
|
2906
2906
|
}
|
|
2907
2907
|
/**
|
|
2908
2908
|
* @public
|
|
@@ -2923,7 +2923,7 @@ export interface CreateNodegroupRequest {
|
|
|
2923
2923
|
* node group.</p>
|
|
2924
2924
|
* @public
|
|
2925
2925
|
*/
|
|
2926
|
-
scalingConfig?: NodegroupScalingConfig;
|
|
2926
|
+
scalingConfig?: NodegroupScalingConfig | undefined;
|
|
2927
2927
|
/**
|
|
2928
2928
|
* <p>The root device disk size (in GiB) for your node group instances. The default disk
|
|
2929
2929
|
* size is 20 GiB for Linux and Bottlerocket. The default disk size is 50 GiB for Windows.
|
|
@@ -2931,7 +2931,7 @@ export interface CreateNodegroupRequest {
|
|
|
2931
2931
|
* deployment will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Customizing managed nodes with launch templates</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
2932
2932
|
* @public
|
|
2933
2933
|
*/
|
|
2934
|
-
diskSize?: number;
|
|
2934
|
+
diskSize?: number | undefined;
|
|
2935
2935
|
/**
|
|
2936
2936
|
* <p>The subnets to use for the Auto Scaling group that is created for your node group.
|
|
2937
2937
|
* If you specify <code>launchTemplate</code>, then don't specify <code>
|
|
@@ -2955,7 +2955,7 @@ export interface CreateNodegroupRequest {
|
|
|
2955
2955
|
* the <i>Amazon EKS User Guide</i>.</p>
|
|
2956
2956
|
* @public
|
|
2957
2957
|
*/
|
|
2958
|
-
instanceTypes?: string[];
|
|
2958
|
+
instanceTypes?: string[] | undefined;
|
|
2959
2959
|
/**
|
|
2960
2960
|
* <p>The AMI type for your node group. If you specify <code>launchTemplate</code>, and your launch template uses a custom AMI,
|
|
2961
2961
|
* then don't specify <code>amiType</code>, or the node group deployment
|
|
@@ -2965,7 +2965,7 @@ export interface CreateNodegroupRequest {
|
|
|
2965
2965
|
* <code>ConfigMap</code>. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Customizing managed nodes with launch templates</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
2966
2966
|
* @public
|
|
2967
2967
|
*/
|
|
2968
|
-
amiType?: AMITypes;
|
|
2968
|
+
amiType?: AMITypes | undefined;
|
|
2969
2969
|
/**
|
|
2970
2970
|
* <p>The remote access configuration to use with your node group. For Linux, the protocol
|
|
2971
2971
|
* is SSH. For Windows, the protocol is RDP. If you specify <code>launchTemplate</code>, then don't specify
|
|
@@ -2973,7 +2973,7 @@ export interface CreateNodegroupRequest {
|
|
|
2973
2973
|
* For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Customizing managed nodes with launch templates</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
2974
2974
|
* @public
|
|
2975
2975
|
*/
|
|
2976
|
-
remoteAccess?: RemoteAccessConfig;
|
|
2976
|
+
remoteAccess?: RemoteAccessConfig | undefined;
|
|
2977
2977
|
/**
|
|
2978
2978
|
* <p>The Amazon Resource Name (ARN) of the IAM role to associate with your node group. The
|
|
2979
2979
|
* Amazon EKS worker node <code>kubelet</code> daemon makes calls to Amazon Web Services APIs on your behalf. Nodes receive permissions for these API calls
|
|
@@ -2995,27 +2995,27 @@ export interface CreateNodegroupRequest {
|
|
|
2995
2995
|
* created.</p>
|
|
2996
2996
|
* @public
|
|
2997
2997
|
*/
|
|
2998
|
-
labels?: Record<string, string
|
|
2998
|
+
labels?: Record<string, string> | undefined;
|
|
2999
2999
|
/**
|
|
3000
3000
|
* <p>The Kubernetes taints to be applied to the nodes in the node group. For more information,
|
|
3001
3001
|
* see <a href="https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html">Node taints on
|
|
3002
3002
|
* managed node groups</a>.</p>
|
|
3003
3003
|
* @public
|
|
3004
3004
|
*/
|
|
3005
|
-
taints?: Taint[];
|
|
3005
|
+
taints?: Taint[] | undefined;
|
|
3006
3006
|
/**
|
|
3007
3007
|
* <p>Metadata that assists with categorization and organization.
|
|
3008
3008
|
* Each tag consists of a key and an optional value. You define both. Tags don't
|
|
3009
3009
|
* propagate to any other cluster or Amazon Web Services resources.</p>
|
|
3010
3010
|
* @public
|
|
3011
3011
|
*/
|
|
3012
|
-
tags?: Record<string, string
|
|
3012
|
+
tags?: Record<string, string> | undefined;
|
|
3013
3013
|
/**
|
|
3014
3014
|
* <p>A unique, case-sensitive identifier that you provide to ensure
|
|
3015
3015
|
* the idempotency of the request.</p>
|
|
3016
3016
|
* @public
|
|
3017
3017
|
*/
|
|
3018
|
-
clientRequestToken?: string;
|
|
3018
|
+
clientRequestToken?: string | undefined;
|
|
3019
3019
|
/**
|
|
3020
3020
|
* <p>An object representing a node group's launch template specification. When using this
|
|
3021
3021
|
* object, don't directly specify <code>instanceTypes</code>, <code>diskSize</code>, or
|
|
@@ -3025,17 +3025,17 @@ export interface CreateNodegroupRequest {
|
|
|
3025
3025
|
* the <i>Amazon EKS User Guide</i>.</p>
|
|
3026
3026
|
* @public
|
|
3027
3027
|
*/
|
|
3028
|
-
launchTemplate?: LaunchTemplateSpecification;
|
|
3028
|
+
launchTemplate?: LaunchTemplateSpecification | undefined;
|
|
3029
3029
|
/**
|
|
3030
3030
|
* <p>The node group update configuration.</p>
|
|
3031
3031
|
* @public
|
|
3032
3032
|
*/
|
|
3033
|
-
updateConfig?: NodegroupUpdateConfig;
|
|
3033
|
+
updateConfig?: NodegroupUpdateConfig | undefined;
|
|
3034
3034
|
/**
|
|
3035
3035
|
* <p>The capacity type for your node group.</p>
|
|
3036
3036
|
* @public
|
|
3037
3037
|
*/
|
|
3038
|
-
capacityType?: CapacityTypes;
|
|
3038
|
+
capacityType?: CapacityTypes | undefined;
|
|
3039
3039
|
/**
|
|
3040
3040
|
* <p>The Kubernetes version to use for your managed nodes. By default, the Kubernetes version of the
|
|
3041
3041
|
* cluster is used, and this is the only accepted specified value. If you specify <code>launchTemplate</code>,
|
|
@@ -3043,7 +3043,7 @@ export interface CreateNodegroupRequest {
|
|
|
3043
3043
|
* deployment will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Customizing managed nodes with launch templates</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
3044
3044
|
* @public
|
|
3045
3045
|
*/
|
|
3046
|
-
version?: string;
|
|
3046
|
+
version?: string | undefined;
|
|
3047
3047
|
/**
|
|
3048
3048
|
* <p>The AMI version of the Amazon EKS optimized AMI to use with your node group.
|
|
3049
3049
|
* By default, the latest available AMI version for the node group's current Kubernetes version
|
|
@@ -3055,7 +3055,7 @@ export interface CreateNodegroupRequest {
|
|
|
3055
3055
|
* For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Customizing managed nodes with launch templates</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
3056
3056
|
* @public
|
|
3057
3057
|
*/
|
|
3058
|
-
releaseVersion?: string;
|
|
3058
|
+
releaseVersion?: string | undefined;
|
|
3059
3059
|
}
|
|
3060
3060
|
/**
|
|
3061
3061
|
* @public
|
|
@@ -3218,17 +3218,17 @@ export interface Issue {
|
|
|
3218
3218
|
* </ul>
|
|
3219
3219
|
* @public
|
|
3220
3220
|
*/
|
|
3221
|
-
code?: NodegroupIssueCode;
|
|
3221
|
+
code?: NodegroupIssueCode | undefined;
|
|
3222
3222
|
/**
|
|
3223
3223
|
* <p>The error message associated with the issue.</p>
|
|
3224
3224
|
* @public
|
|
3225
3225
|
*/
|
|
3226
|
-
message?: string;
|
|
3226
|
+
message?: string | undefined;
|
|
3227
3227
|
/**
|
|
3228
3228
|
* <p>The Amazon Web Services resources that are afflicted by this issue.</p>
|
|
3229
3229
|
* @public
|
|
3230
3230
|
*/
|
|
3231
|
-
resourceIds?: string[];
|
|
3231
|
+
resourceIds?: string[] | undefined;
|
|
3232
3232
|
}
|
|
3233
3233
|
/**
|
|
3234
3234
|
* <p>An object representing the health status of the node group.</p>
|
|
@@ -3239,7 +3239,7 @@ export interface NodegroupHealth {
|
|
|
3239
3239
|
* <p>Any issues that are associated with the node group. </p>
|
|
3240
3240
|
* @public
|
|
3241
3241
|
*/
|
|
3242
|
-
issues?: Issue[];
|
|
3242
|
+
issues?: Issue[] | undefined;
|
|
3243
3243
|
}
|
|
3244
3244
|
/**
|
|
3245
3245
|
* <p>An object representing the resources associated with the node group, such as Auto
|
|
@@ -3251,13 +3251,13 @@ export interface NodegroupResources {
|
|
|
3251
3251
|
* <p>The Auto Scaling groups associated with the node group.</p>
|
|
3252
3252
|
* @public
|
|
3253
3253
|
*/
|
|
3254
|
-
autoScalingGroups?: AutoScalingGroup[];
|
|
3254
|
+
autoScalingGroups?: AutoScalingGroup[] | undefined;
|
|
3255
3255
|
/**
|
|
3256
3256
|
* <p>The remote access security group associated with the node group. This security group
|
|
3257
3257
|
* controls SSH access to the nodes.</p>
|
|
3258
3258
|
* @public
|
|
3259
3259
|
*/
|
|
3260
|
-
remoteAccessSecurityGroup?: string;
|
|
3260
|
+
remoteAccessSecurityGroup?: string | undefined;
|
|
3261
3261
|
}
|
|
3262
3262
|
/**
|
|
3263
3263
|
* @public
|
|
@@ -3285,22 +3285,22 @@ export interface Nodegroup {
|
|
|
3285
3285
|
* <p>The name associated with an Amazon EKS managed node group.</p>
|
|
3286
3286
|
* @public
|
|
3287
3287
|
*/
|
|
3288
|
-
nodegroupName?: string;
|
|
3288
|
+
nodegroupName?: string | undefined;
|
|
3289
3289
|
/**
|
|
3290
3290
|
* <p>The Amazon Resource Name (ARN) associated with the managed node group.</p>
|
|
3291
3291
|
* @public
|
|
3292
3292
|
*/
|
|
3293
|
-
nodegroupArn?: string;
|
|
3293
|
+
nodegroupArn?: string | undefined;
|
|
3294
3294
|
/**
|
|
3295
3295
|
* <p>The name of your cluster.</p>
|
|
3296
3296
|
* @public
|
|
3297
3297
|
*/
|
|
3298
|
-
clusterName?: string;
|
|
3298
|
+
clusterName?: string | undefined;
|
|
3299
3299
|
/**
|
|
3300
3300
|
* <p>The Kubernetes version of the managed node group.</p>
|
|
3301
3301
|
* @public
|
|
3302
3302
|
*/
|
|
3303
|
-
version?: string;
|
|
3303
|
+
version?: string | undefined;
|
|
3304
3304
|
/**
|
|
3305
3305
|
* <p>If the node group was deployed using a launch template with a custom AMI, then this is
|
|
3306
3306
|
* the AMI ID that was specified in the launch template. For node groups that weren't
|
|
@@ -3308,60 +3308,60 @@ export interface Nodegroup {
|
|
|
3308
3308
|
* optimized AMI that the node group was deployed with.</p>
|
|
3309
3309
|
* @public
|
|
3310
3310
|
*/
|
|
3311
|
-
releaseVersion?: string;
|
|
3311
|
+
releaseVersion?: string | undefined;
|
|
3312
3312
|
/**
|
|
3313
3313
|
* <p>The Unix epoch timestamp at object creation.</p>
|
|
3314
3314
|
* @public
|
|
3315
3315
|
*/
|
|
3316
|
-
createdAt?: Date;
|
|
3316
|
+
createdAt?: Date | undefined;
|
|
3317
3317
|
/**
|
|
3318
3318
|
* <p>The Unix epoch timestamp for the last modification to the object.</p>
|
|
3319
3319
|
* @public
|
|
3320
3320
|
*/
|
|
3321
|
-
modifiedAt?: Date;
|
|
3321
|
+
modifiedAt?: Date | undefined;
|
|
3322
3322
|
/**
|
|
3323
3323
|
* <p>The current status of the managed node group.</p>
|
|
3324
3324
|
* @public
|
|
3325
3325
|
*/
|
|
3326
|
-
status?: NodegroupStatus;
|
|
3326
|
+
status?: NodegroupStatus | undefined;
|
|
3327
3327
|
/**
|
|
3328
3328
|
* <p>The capacity type of your managed node group.</p>
|
|
3329
3329
|
* @public
|
|
3330
3330
|
*/
|
|
3331
|
-
capacityType?: CapacityTypes;
|
|
3331
|
+
capacityType?: CapacityTypes | undefined;
|
|
3332
3332
|
/**
|
|
3333
3333
|
* <p>The scaling configuration details for the Auto Scaling group that is associated with
|
|
3334
3334
|
* your node group.</p>
|
|
3335
3335
|
* @public
|
|
3336
3336
|
*/
|
|
3337
|
-
scalingConfig?: NodegroupScalingConfig;
|
|
3337
|
+
scalingConfig?: NodegroupScalingConfig | undefined;
|
|
3338
3338
|
/**
|
|
3339
3339
|
* <p>If the node group wasn't deployed with a launch template, then this is the instance
|
|
3340
3340
|
* type that is associated with the node group. If the node group was deployed with a
|
|
3341
3341
|
* launch template, then this is <code>null</code>.</p>
|
|
3342
3342
|
* @public
|
|
3343
3343
|
*/
|
|
3344
|
-
instanceTypes?: string[];
|
|
3344
|
+
instanceTypes?: string[] | undefined;
|
|
3345
3345
|
/**
|
|
3346
3346
|
* <p>The subnets that were specified for the Auto Scaling group that is associated with
|
|
3347
3347
|
* your node group.</p>
|
|
3348
3348
|
* @public
|
|
3349
3349
|
*/
|
|
3350
|
-
subnets?: string[];
|
|
3350
|
+
subnets?: string[] | undefined;
|
|
3351
3351
|
/**
|
|
3352
3352
|
* <p>If the node group wasn't deployed with a launch template, then this is the remote
|
|
3353
3353
|
* access configuration that is associated with the node group. If the node group was
|
|
3354
3354
|
* deployed with a launch template, then this is <code>null</code>.</p>
|
|
3355
3355
|
* @public
|
|
3356
3356
|
*/
|
|
3357
|
-
remoteAccess?: RemoteAccessConfig;
|
|
3357
|
+
remoteAccess?: RemoteAccessConfig | undefined;
|
|
3358
3358
|
/**
|
|
3359
3359
|
* <p>If the node group was deployed using a launch template with a custom AMI, then this is
|
|
3360
3360
|
* <code>CUSTOM</code>. For node groups that weren't deployed using a launch template,
|
|
3361
3361
|
* this is the AMI type that was specified in the node group configuration.</p>
|
|
3362
3362
|
* @public
|
|
3363
3363
|
*/
|
|
3364
|
-
amiType?: AMITypes;
|
|
3364
|
+
amiType?: AMITypes | undefined;
|
|
3365
3365
|
/**
|
|
3366
3366
|
* <p>The IAM role associated with your node group. The Amazon EKS
|
|
3367
3367
|
* node <code>kubelet</code> daemon makes calls to Amazon Web Services APIs on your behalf.
|
|
@@ -3369,7 +3369,7 @@ export interface Nodegroup {
|
|
|
3369
3369
|
* profile and associated policies.</p>
|
|
3370
3370
|
* @public
|
|
3371
3371
|
*/
|
|
3372
|
-
nodeRole?: string;
|
|
3372
|
+
nodeRole?: string | undefined;
|
|
3373
3373
|
/**
|
|
3374
3374
|
* <p>The Kubernetes <code>labels</code> applied to the nodes in the node group.</p>
|
|
3375
3375
|
* <note>
|
|
@@ -3379,7 +3379,7 @@ export interface Nodegroup {
|
|
|
3379
3379
|
* </note>
|
|
3380
3380
|
* @public
|
|
3381
3381
|
*/
|
|
3382
|
-
labels?: Record<string, string
|
|
3382
|
+
labels?: Record<string, string> | undefined;
|
|
3383
3383
|
/**
|
|
3384
3384
|
* <p>The Kubernetes taints to be applied to the nodes in the node group when they are created.
|
|
3385
3385
|
* Effect is one of <code>No_Schedule</code>, <code>Prefer_No_Schedule</code>, or
|
|
@@ -3387,44 +3387,44 @@ export interface Nodegroup {
|
|
|
3387
3387
|
* control how workloads are scheduled to your nodes. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html">Node taints on managed node groups</a>.</p>
|
|
3388
3388
|
* @public
|
|
3389
3389
|
*/
|
|
3390
|
-
taints?: Taint[];
|
|
3390
|
+
taints?: Taint[] | undefined;
|
|
3391
3391
|
/**
|
|
3392
3392
|
* <p>The resources associated with the node group, such as Auto Scaling groups and security
|
|
3393
3393
|
* groups for remote access.</p>
|
|
3394
3394
|
* @public
|
|
3395
3395
|
*/
|
|
3396
|
-
resources?: NodegroupResources;
|
|
3396
|
+
resources?: NodegroupResources | undefined;
|
|
3397
3397
|
/**
|
|
3398
3398
|
* <p>If the node group wasn't deployed with a launch template, then this is the disk size
|
|
3399
3399
|
* in the node group configuration. If the node group was deployed with a launch template,
|
|
3400
3400
|
* then this is <code>null</code>.</p>
|
|
3401
3401
|
* @public
|
|
3402
3402
|
*/
|
|
3403
|
-
diskSize?: number;
|
|
3403
|
+
diskSize?: number | undefined;
|
|
3404
3404
|
/**
|
|
3405
3405
|
* <p>The health status of the node group. If there are issues with your node group's
|
|
3406
3406
|
* health, they are listed here.</p>
|
|
3407
3407
|
* @public
|
|
3408
3408
|
*/
|
|
3409
|
-
health?: NodegroupHealth;
|
|
3409
|
+
health?: NodegroupHealth | undefined;
|
|
3410
3410
|
/**
|
|
3411
3411
|
* <p>The node group update configuration.</p>
|
|
3412
3412
|
* @public
|
|
3413
3413
|
*/
|
|
3414
|
-
updateConfig?: NodegroupUpdateConfig;
|
|
3414
|
+
updateConfig?: NodegroupUpdateConfig | undefined;
|
|
3415
3415
|
/**
|
|
3416
3416
|
* <p>If a launch template was used to create the node group, then this is the launch
|
|
3417
3417
|
* template that was used.</p>
|
|
3418
3418
|
* @public
|
|
3419
3419
|
*/
|
|
3420
|
-
launchTemplate?: LaunchTemplateSpecification;
|
|
3420
|
+
launchTemplate?: LaunchTemplateSpecification | undefined;
|
|
3421
3421
|
/**
|
|
3422
3422
|
* <p>Metadata that assists with categorization and organization.
|
|
3423
3423
|
* Each tag consists of a key and an optional value. You define both. Tags don't
|
|
3424
3424
|
* propagate to any other cluster or Amazon Web Services resources.</p>
|
|
3425
3425
|
* @public
|
|
3426
3426
|
*/
|
|
3427
|
-
tags?: Record<string, string
|
|
3427
|
+
tags?: Record<string, string> | undefined;
|
|
3428
3428
|
}
|
|
3429
3429
|
/**
|
|
3430
3430
|
* @public
|
|
@@ -3434,7 +3434,7 @@ export interface CreateNodegroupResponse {
|
|
|
3434
3434
|
* <p>The full description of your new node group.</p>
|
|
3435
3435
|
* @public
|
|
3436
3436
|
*/
|
|
3437
|
-
nodegroup?: Nodegroup;
|
|
3437
|
+
nodegroup?: Nodegroup | undefined;
|
|
3438
3438
|
}
|
|
3439
3439
|
/**
|
|
3440
3440
|
* @public
|
|
@@ -3469,7 +3469,7 @@ export interface CreatePodIdentityAssociationRequest {
|
|
|
3469
3469
|
* the idempotency of the request.</p>
|
|
3470
3470
|
* @public
|
|
3471
3471
|
*/
|
|
3472
|
-
clientRequestToken?: string;
|
|
3472
|
+
clientRequestToken?: string | undefined;
|
|
3473
3473
|
/**
|
|
3474
3474
|
* <p>Metadata that assists with categorization and organization.
|
|
3475
3475
|
* Each tag consists of a key and an optional value. You define both. Tags don't
|
|
@@ -3507,7 +3507,7 @@ export interface CreatePodIdentityAssociationRequest {
|
|
|
3507
3507
|
* </ul>
|
|
3508
3508
|
* @public
|
|
3509
3509
|
*/
|
|
3510
|
-
tags?: Record<string, string
|
|
3510
|
+
tags?: Record<string, string> | undefined;
|
|
3511
3511
|
}
|
|
3512
3512
|
/**
|
|
3513
3513
|
* <p>Amazon EKS Pod Identity associations provide the ability to manage credentials for your applications, similar to the way that Amazon EC2 instance profiles provide credentials to Amazon EC2 instances.</p>
|
|
@@ -3518,36 +3518,36 @@ export interface PodIdentityAssociation {
|
|
|
3518
3518
|
* <p>The name of the cluster that the association is in.</p>
|
|
3519
3519
|
* @public
|
|
3520
3520
|
*/
|
|
3521
|
-
clusterName?: string;
|
|
3521
|
+
clusterName?: string | undefined;
|
|
3522
3522
|
/**
|
|
3523
3523
|
* <p>The name of the Kubernetes namespace inside the cluster to create the association in. The
|
|
3524
3524
|
* service account and the pods that use the service account must be in this
|
|
3525
3525
|
* namespace.</p>
|
|
3526
3526
|
* @public
|
|
3527
3527
|
*/
|
|
3528
|
-
namespace?: string;
|
|
3528
|
+
namespace?: string | undefined;
|
|
3529
3529
|
/**
|
|
3530
3530
|
* <p>The name of the Kubernetes service account inside the cluster to associate the IAM credentials with.</p>
|
|
3531
3531
|
* @public
|
|
3532
3532
|
*/
|
|
3533
|
-
serviceAccount?: string;
|
|
3533
|
+
serviceAccount?: string | undefined;
|
|
3534
3534
|
/**
|
|
3535
3535
|
* <p>The Amazon Resource Name (ARN) of the IAM role to associate with the service account. The EKS Pod Identity
|
|
3536
3536
|
* agent manages credentials to assume this role for applications in the containers in the
|
|
3537
3537
|
* pods that use this service account.</p>
|
|
3538
3538
|
* @public
|
|
3539
3539
|
*/
|
|
3540
|
-
roleArn?: string;
|
|
3540
|
+
roleArn?: string | undefined;
|
|
3541
3541
|
/**
|
|
3542
3542
|
* <p>The Amazon Resource Name (ARN) of the association.</p>
|
|
3543
3543
|
* @public
|
|
3544
3544
|
*/
|
|
3545
|
-
associationArn?: string;
|
|
3545
|
+
associationArn?: string | undefined;
|
|
3546
3546
|
/**
|
|
3547
3547
|
* <p>The ID of the association.</p>
|
|
3548
3548
|
* @public
|
|
3549
3549
|
*/
|
|
3550
|
-
associationId?: string;
|
|
3550
|
+
associationId?: string | undefined;
|
|
3551
3551
|
/**
|
|
3552
3552
|
* <p>Metadata that assists with categorization and organization.
|
|
3553
3553
|
* Each tag consists of a key and an optional value. You define both. Tags don't
|
|
@@ -3585,22 +3585,22 @@ export interface PodIdentityAssociation {
|
|
|
3585
3585
|
* </ul>
|
|
3586
3586
|
* @public
|
|
3587
3587
|
*/
|
|
3588
|
-
tags?: Record<string, string
|
|
3588
|
+
tags?: Record<string, string> | undefined;
|
|
3589
3589
|
/**
|
|
3590
3590
|
* <p>The timestamp that the association was created at.</p>
|
|
3591
3591
|
* @public
|
|
3592
3592
|
*/
|
|
3593
|
-
createdAt?: Date;
|
|
3593
|
+
createdAt?: Date | undefined;
|
|
3594
3594
|
/**
|
|
3595
3595
|
* <p>The most recent timestamp that the association was modified at</p>
|
|
3596
3596
|
* @public
|
|
3597
3597
|
*/
|
|
3598
|
-
modifiedAt?: Date;
|
|
3598
|
+
modifiedAt?: Date | undefined;
|
|
3599
3599
|
/**
|
|
3600
3600
|
* <p>If defined, the Pod Identity Association is owned by an Amazon EKS Addon.</p>
|
|
3601
3601
|
* @public
|
|
3602
3602
|
*/
|
|
3603
|
-
ownerArn?: string;
|
|
3603
|
+
ownerArn?: string | undefined;
|
|
3604
3604
|
}
|
|
3605
3605
|
/**
|
|
3606
3606
|
* @public
|
|
@@ -3612,7 +3612,7 @@ export interface CreatePodIdentityAssociationResponse {
|
|
|
3612
3612
|
* actions to manage the association.</p>
|
|
3613
3613
|
* @public
|
|
3614
3614
|
*/
|
|
3615
|
-
association?: PodIdentityAssociation;
|
|
3615
|
+
association?: PodIdentityAssociation | undefined;
|
|
3616
3616
|
}
|
|
3617
3617
|
/**
|
|
3618
3618
|
* @public
|
|
@@ -3655,7 +3655,7 @@ export interface DeleteAddonRequest {
|
|
|
3655
3655
|
* account is associated with the add-on, it isn't removed.</p>
|
|
3656
3656
|
* @public
|
|
3657
3657
|
*/
|
|
3658
|
-
preserve?: boolean;
|
|
3658
|
+
preserve?: boolean | undefined;
|
|
3659
3659
|
}
|
|
3660
3660
|
/**
|
|
3661
3661
|
* @public
|
|
@@ -3666,7 +3666,7 @@ export interface DeleteAddonResponse {
|
|
|
3666
3666
|
* the <i>Amazon EKS User Guide</i>.</p>
|
|
3667
3667
|
* @public
|
|
3668
3668
|
*/
|
|
3669
|
-
addon?: Addon;
|
|
3669
|
+
addon?: Addon | undefined;
|
|
3670
3670
|
}
|
|
3671
3671
|
/**
|
|
3672
3672
|
* @public
|
|
@@ -3686,7 +3686,7 @@ export interface DeleteClusterResponse {
|
|
|
3686
3686
|
* <p>The full description of the cluster to delete.</p>
|
|
3687
3687
|
* @public
|
|
3688
3688
|
*/
|
|
3689
|
-
cluster?: Cluster;
|
|
3689
|
+
cluster?: Cluster | undefined;
|
|
3690
3690
|
}
|
|
3691
3691
|
/**
|
|
3692
3692
|
* @public
|
|
@@ -3706,7 +3706,7 @@ export interface DeleteEksAnywhereSubscriptionResponse {
|
|
|
3706
3706
|
* <p>The full description of the subscription to be deleted.</p>
|
|
3707
3707
|
* @public
|
|
3708
3708
|
*/
|
|
3709
|
-
subscription?: EksAnywhereSubscription;
|
|
3709
|
+
subscription?: EksAnywhereSubscription | undefined;
|
|
3710
3710
|
}
|
|
3711
3711
|
/**
|
|
3712
3712
|
* @public
|
|
@@ -3731,7 +3731,7 @@ export interface DeleteFargateProfileResponse {
|
|
|
3731
3731
|
* <p>The deleted Fargate profile.</p>
|
|
3732
3732
|
* @public
|
|
3733
3733
|
*/
|
|
3734
|
-
fargateProfile?: FargateProfile;
|
|
3734
|
+
fargateProfile?: FargateProfile | undefined;
|
|
3735
3735
|
}
|
|
3736
3736
|
/**
|
|
3737
3737
|
* @public
|
|
@@ -3756,7 +3756,7 @@ export interface DeleteNodegroupResponse {
|
|
|
3756
3756
|
* <p>The full description of your deleted node group.</p>
|
|
3757
3757
|
* @public
|
|
3758
3758
|
*/
|
|
3759
|
-
nodegroup?: Nodegroup;
|
|
3759
|
+
nodegroup?: Nodegroup | undefined;
|
|
3760
3760
|
}
|
|
3761
3761
|
/**
|
|
3762
3762
|
* @public
|
|
@@ -3781,7 +3781,7 @@ export interface DeletePodIdentityAssociationResponse {
|
|
|
3781
3781
|
* <p>The full description of the EKS Pod Identity association that was deleted.</p>
|
|
3782
3782
|
* @public
|
|
3783
3783
|
*/
|
|
3784
|
-
association?: PodIdentityAssociation;
|
|
3784
|
+
association?: PodIdentityAssociation | undefined;
|
|
3785
3785
|
}
|
|
3786
3786
|
/**
|
|
3787
3787
|
* @public
|
|
@@ -3801,7 +3801,7 @@ export interface DeregisterClusterResponse {
|
|
|
3801
3801
|
* <p>An object representing an Amazon EKS cluster.</p>
|
|
3802
3802
|
* @public
|
|
3803
3803
|
*/
|
|
3804
|
-
cluster?: Cluster;
|
|
3804
|
+
cluster?: Cluster | undefined;
|
|
3805
3805
|
}
|
|
3806
3806
|
/**
|
|
3807
3807
|
* @public
|
|
@@ -3826,7 +3826,7 @@ export interface DescribeAccessEntryResponse {
|
|
|
3826
3826
|
* <p>Information about the access entry.</p>
|
|
3827
3827
|
* @public
|
|
3828
3828
|
*/
|
|
3829
|
-
accessEntry?: AccessEntry;
|
|
3829
|
+
accessEntry?: AccessEntry | undefined;
|
|
3830
3830
|
}
|
|
3831
3831
|
/**
|
|
3832
3832
|
* @public
|
|
@@ -3854,7 +3854,7 @@ export interface DescribeAddonResponse {
|
|
|
3854
3854
|
* the <i>Amazon EKS User Guide</i>.</p>
|
|
3855
3855
|
* @public
|
|
3856
3856
|
*/
|
|
3857
|
-
addon?: Addon;
|
|
3857
|
+
addon?: Addon | undefined;
|
|
3858
3858
|
}
|
|
3859
3859
|
/**
|
|
3860
3860
|
* @public
|
|
@@ -3882,25 +3882,25 @@ export interface DescribeAddonConfigurationResponse {
|
|
|
3882
3882
|
* <p>The name of the add-on.</p>
|
|
3883
3883
|
* @public
|
|
3884
3884
|
*/
|
|
3885
|
-
addonName?: string;
|
|
3885
|
+
addonName?: string | undefined;
|
|
3886
3886
|
/**
|
|
3887
3887
|
* <p>The version of the add-on. The version must match one of the versions returned by <a href="https://docs.aws.amazon.com/eks/latest/APIReference/API_DescribeAddonVersions.html">
|
|
3888
3888
|
* <code>DescribeAddonVersions</code>
|
|
3889
3889
|
* </a>.</p>
|
|
3890
3890
|
* @public
|
|
3891
3891
|
*/
|
|
3892
|
-
addonVersion?: string;
|
|
3892
|
+
addonVersion?: string | undefined;
|
|
3893
3893
|
/**
|
|
3894
3894
|
* <p>A JSON schema that's used to validate the configuration values you provide when an
|
|
3895
3895
|
* add-on is created or updated.</p>
|
|
3896
3896
|
* @public
|
|
3897
3897
|
*/
|
|
3898
|
-
configurationSchema?: string;
|
|
3898
|
+
configurationSchema?: string | undefined;
|
|
3899
3899
|
/**
|
|
3900
3900
|
* <p>The Kubernetes service account name used by the addon, and any suggested IAM policies. Use this information to create an IAM Role for the Addon.</p>
|
|
3901
3901
|
* @public
|
|
3902
3902
|
*/
|
|
3903
|
-
podIdentityConfiguration?: AddonPodIdentityConfiguration[];
|
|
3903
|
+
podIdentityConfiguration?: AddonPodIdentityConfiguration[] | undefined;
|
|
3904
3904
|
}
|
|
3905
3905
|
/**
|
|
3906
3906
|
* @public
|
|
@@ -3910,7 +3910,7 @@ export interface DescribeAddonVersionsRequest {
|
|
|
3910
3910
|
* <p>The Kubernetes versions that you can use the add-on with.</p>
|
|
3911
3911
|
* @public
|
|
3912
3912
|
*/
|
|
3913
|
-
kubernetesVersion?: string;
|
|
3913
|
+
kubernetesVersion?: string | undefined;
|
|
3914
3914
|
/**
|
|
3915
3915
|
* <p>The maximum number of results, returned in paginated output. You receive
|
|
3916
3916
|
* <code>maxResults</code> in a single page, along with a <code>nextToken</code>
|
|
@@ -3921,7 +3921,7 @@ export interface DescribeAddonVersionsRequest {
|
|
|
3921
3921
|
* returned.</p>
|
|
3922
3922
|
* @public
|
|
3923
3923
|
*/
|
|
3924
|
-
maxResults?: number;
|
|
3924
|
+
maxResults?: number | undefined;
|
|
3925
3925
|
/**
|
|
3926
3926
|
* <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and
|
|
3927
3927
|
* the results exceeded the value of that parameter. Pagination continues from the end of
|
|
@@ -3932,32 +3932,32 @@ export interface DescribeAddonVersionsRequest {
|
|
|
3932
3932
|
* </note>
|
|
3933
3933
|
* @public
|
|
3934
3934
|
*/
|
|
3935
|
-
nextToken?: string;
|
|
3935
|
+
nextToken?: string | undefined;
|
|
3936
3936
|
/**
|
|
3937
3937
|
* <p>The name of the add-on. The name must match one of the names returned by <a href="https://docs.aws.amazon.com/eks/latest/APIReference/API_ListAddons.html">
|
|
3938
3938
|
* <code>ListAddons</code>
|
|
3939
3939
|
* </a>.</p>
|
|
3940
3940
|
* @public
|
|
3941
3941
|
*/
|
|
3942
|
-
addonName?: string;
|
|
3942
|
+
addonName?: string | undefined;
|
|
3943
3943
|
/**
|
|
3944
3944
|
* <p>The type of the add-on. For valid <code>types</code>, don't specify a value for this
|
|
3945
3945
|
* property.</p>
|
|
3946
3946
|
* @public
|
|
3947
3947
|
*/
|
|
3948
|
-
types?: string[];
|
|
3948
|
+
types?: string[] | undefined;
|
|
3949
3949
|
/**
|
|
3950
3950
|
* <p>The publisher of the add-on. For valid <code>publishers</code>, don't specify a value
|
|
3951
3951
|
* for this property.</p>
|
|
3952
3952
|
* @public
|
|
3953
3953
|
*/
|
|
3954
|
-
publishers?: string[];
|
|
3954
|
+
publishers?: string[] | undefined;
|
|
3955
3955
|
/**
|
|
3956
3956
|
* <p>The owner of the add-on. For valid <code>owners</code>, don't specify a value for this
|
|
3957
3957
|
* property.</p>
|
|
3958
3958
|
* @public
|
|
3959
3959
|
*/
|
|
3960
|
-
owners?: string[];
|
|
3960
|
+
owners?: string[] | undefined;
|
|
3961
3961
|
}
|
|
3962
3962
|
/**
|
|
3963
3963
|
* @public
|
|
@@ -3968,7 +3968,7 @@ export interface DescribeAddonVersionsResponse {
|
|
|
3968
3968
|
* properties.</p>
|
|
3969
3969
|
* @public
|
|
3970
3970
|
*/
|
|
3971
|
-
addons?: AddonInfo[];
|
|
3971
|
+
addons?: AddonInfo[] | undefined;
|
|
3972
3972
|
/**
|
|
3973
3973
|
* <p>The <code>nextToken</code> value to include in a future
|
|
3974
3974
|
* <code>DescribeAddonVersions</code> request. When the results of a
|
|
@@ -3981,7 +3981,7 @@ export interface DescribeAddonVersionsResponse {
|
|
|
3981
3981
|
* </note>
|
|
3982
3982
|
* @public
|
|
3983
3983
|
*/
|
|
3984
|
-
nextToken?: string;
|
|
3984
|
+
nextToken?: string | undefined;
|
|
3985
3985
|
}
|
|
3986
3986
|
/**
|
|
3987
3987
|
* @public
|
|
@@ -4001,7 +4001,7 @@ export interface DescribeClusterResponse {
|
|
|
4001
4001
|
* <p>The full description of your specified cluster.</p>
|
|
4002
4002
|
* @public
|
|
4003
4003
|
*/
|
|
4004
|
-
cluster?: Cluster;
|
|
4004
|
+
cluster?: Cluster | undefined;
|
|
4005
4005
|
}
|
|
4006
4006
|
/**
|
|
4007
4007
|
* @public
|
|
@@ -4021,7 +4021,7 @@ export interface DescribeEksAnywhereSubscriptionResponse {
|
|
|
4021
4021
|
* <p>The full description of the subscription.</p>
|
|
4022
4022
|
* @public
|
|
4023
4023
|
*/
|
|
4024
|
-
subscription?: EksAnywhereSubscription;
|
|
4024
|
+
subscription?: EksAnywhereSubscription | undefined;
|
|
4025
4025
|
}
|
|
4026
4026
|
/**
|
|
4027
4027
|
* @public
|
|
@@ -4046,7 +4046,7 @@ export interface DescribeFargateProfileResponse {
|
|
|
4046
4046
|
* <p>The full description of your Fargate profile.</p>
|
|
4047
4047
|
* @public
|
|
4048
4048
|
*/
|
|
4049
|
-
fargateProfile?: FargateProfile;
|
|
4049
|
+
fargateProfile?: FargateProfile | undefined;
|
|
4050
4050
|
}
|
|
4051
4051
|
/**
|
|
4052
4052
|
* <p>An object representing an identity provider configuration.</p>
|
|
@@ -4103,46 +4103,46 @@ export interface OidcIdentityProviderConfig {
|
|
|
4103
4103
|
* <p>The name of the configuration.</p>
|
|
4104
4104
|
* @public
|
|
4105
4105
|
*/
|
|
4106
|
-
identityProviderConfigName?: string;
|
|
4106
|
+
identityProviderConfigName?: string | undefined;
|
|
4107
4107
|
/**
|
|
4108
4108
|
* <p>The ARN of the configuration.</p>
|
|
4109
4109
|
* @public
|
|
4110
4110
|
*/
|
|
4111
|
-
identityProviderConfigArn?: string;
|
|
4111
|
+
identityProviderConfigArn?: string | undefined;
|
|
4112
4112
|
/**
|
|
4113
4113
|
* <p>The name of your cluster.</p>
|
|
4114
4114
|
* @public
|
|
4115
4115
|
*/
|
|
4116
|
-
clusterName?: string;
|
|
4116
|
+
clusterName?: string | undefined;
|
|
4117
4117
|
/**
|
|
4118
4118
|
* <p>The URL of the OIDC identity provider that allows the API server to discover public
|
|
4119
4119
|
* signing keys for verifying tokens.</p>
|
|
4120
4120
|
* @public
|
|
4121
4121
|
*/
|
|
4122
|
-
issuerUrl?: string;
|
|
4122
|
+
issuerUrl?: string | undefined;
|
|
4123
4123
|
/**
|
|
4124
4124
|
* <p>This is also known as <i>audience</i>. The ID of the client application
|
|
4125
4125
|
* that makes authentication requests to the OIDC identity provider.</p>
|
|
4126
4126
|
* @public
|
|
4127
4127
|
*/
|
|
4128
|
-
clientId?: string;
|
|
4128
|
+
clientId?: string | undefined;
|
|
4129
4129
|
/**
|
|
4130
4130
|
* <p>The JSON Web token (JWT) claim that is used as the username.</p>
|
|
4131
4131
|
* @public
|
|
4132
4132
|
*/
|
|
4133
|
-
usernameClaim?: string;
|
|
4133
|
+
usernameClaim?: string | undefined;
|
|
4134
4134
|
/**
|
|
4135
4135
|
* <p>The prefix that is prepended to username claims to prevent clashes with existing
|
|
4136
4136
|
* names. The prefix can't contain <code>system:</code>
|
|
4137
4137
|
* </p>
|
|
4138
4138
|
* @public
|
|
4139
4139
|
*/
|
|
4140
|
-
usernamePrefix?: string;
|
|
4140
|
+
usernamePrefix?: string | undefined;
|
|
4141
4141
|
/**
|
|
4142
4142
|
* <p>The JSON web token (JWT) claim that the provider uses to return your groups.</p>
|
|
4143
4143
|
* @public
|
|
4144
4144
|
*/
|
|
4145
|
-
groupsClaim?: string;
|
|
4145
|
+
groupsClaim?: string | undefined;
|
|
4146
4146
|
/**
|
|
4147
4147
|
* <p>The prefix that is prepended to group claims to prevent clashes with existing names
|
|
4148
4148
|
* (such as <code>system:</code> groups). For example, the value<code> oidc:</code> creates
|
|
@@ -4151,25 +4151,25 @@ export interface OidcIdentityProviderConfig {
|
|
|
4151
4151
|
* </p>
|
|
4152
4152
|
* @public
|
|
4153
4153
|
*/
|
|
4154
|
-
groupsPrefix?: string;
|
|
4154
|
+
groupsPrefix?: string | undefined;
|
|
4155
4155
|
/**
|
|
4156
4156
|
* <p>The key-value pairs that describe required claims in the identity token. If set, each
|
|
4157
4157
|
* claim is verified to be present in the token with a matching value.</p>
|
|
4158
4158
|
* @public
|
|
4159
4159
|
*/
|
|
4160
|
-
requiredClaims?: Record<string, string
|
|
4160
|
+
requiredClaims?: Record<string, string> | undefined;
|
|
4161
4161
|
/**
|
|
4162
4162
|
* <p>Metadata that assists with categorization and organization.
|
|
4163
4163
|
* Each tag consists of a key and an optional value. You define both. Tags don't
|
|
4164
4164
|
* propagate to any other cluster or Amazon Web Services resources.</p>
|
|
4165
4165
|
* @public
|
|
4166
4166
|
*/
|
|
4167
|
-
tags?: Record<string, string
|
|
4167
|
+
tags?: Record<string, string> | undefined;
|
|
4168
4168
|
/**
|
|
4169
4169
|
* <p>The status of the OIDC identity provider.</p>
|
|
4170
4170
|
* @public
|
|
4171
4171
|
*/
|
|
4172
|
-
status?: ConfigStatus;
|
|
4172
|
+
status?: ConfigStatus | undefined;
|
|
4173
4173
|
}
|
|
4174
4174
|
/**
|
|
4175
4175
|
* <p>The full description of your identity configuration.</p>
|
|
@@ -4180,7 +4180,7 @@ export interface IdentityProviderConfigResponse {
|
|
|
4180
4180
|
* <p>An object representing an OpenID Connect (OIDC) identity provider configuration.</p>
|
|
4181
4181
|
* @public
|
|
4182
4182
|
*/
|
|
4183
|
-
oidc?: OidcIdentityProviderConfig;
|
|
4183
|
+
oidc?: OidcIdentityProviderConfig | undefined;
|
|
4184
4184
|
}
|
|
4185
4185
|
/**
|
|
4186
4186
|
* @public
|
|
@@ -4191,7 +4191,7 @@ export interface DescribeIdentityProviderConfigResponse {
|
|
|
4191
4191
|
* configuration.</p>
|
|
4192
4192
|
* @public
|
|
4193
4193
|
*/
|
|
4194
|
-
identityProviderConfig?: IdentityProviderConfigResponse;
|
|
4194
|
+
identityProviderConfig?: IdentityProviderConfigResponse | undefined;
|
|
4195
4195
|
}
|
|
4196
4196
|
/**
|
|
4197
4197
|
* @public
|
|
@@ -4228,17 +4228,17 @@ export interface ClientStat {
|
|
|
4228
4228
|
* <p>The user agent of the Kubernetes client using the deprecated resource.</p>
|
|
4229
4229
|
* @public
|
|
4230
4230
|
*/
|
|
4231
|
-
userAgent?: string;
|
|
4231
|
+
userAgent?: string | undefined;
|
|
4232
4232
|
/**
|
|
4233
4233
|
* <p>The number of requests from the Kubernetes client seen over the last 30 days.</p>
|
|
4234
4234
|
* @public
|
|
4235
4235
|
*/
|
|
4236
|
-
numberOfRequestsLast30Days?: number;
|
|
4236
|
+
numberOfRequestsLast30Days?: number | undefined;
|
|
4237
4237
|
/**
|
|
4238
4238
|
* <p>The timestamp of the last request seen from the Kubernetes client.</p>
|
|
4239
4239
|
* @public
|
|
4240
4240
|
*/
|
|
4241
|
-
lastRequestTime?: Date;
|
|
4241
|
+
lastRequestTime?: Date | undefined;
|
|
4242
4242
|
}
|
|
4243
4243
|
/**
|
|
4244
4244
|
* <p>The summary information about deprecated resource usage for an insight check in the
|
|
@@ -4250,29 +4250,29 @@ export interface DeprecationDetail {
|
|
|
4250
4250
|
* <p>The deprecated version of the resource.</p>
|
|
4251
4251
|
* @public
|
|
4252
4252
|
*/
|
|
4253
|
-
usage?: string;
|
|
4253
|
+
usage?: string | undefined;
|
|
4254
4254
|
/**
|
|
4255
4255
|
* <p>The newer version of the resource to migrate to if applicable. </p>
|
|
4256
4256
|
* @public
|
|
4257
4257
|
*/
|
|
4258
|
-
replacedWith?: string;
|
|
4258
|
+
replacedWith?: string | undefined;
|
|
4259
4259
|
/**
|
|
4260
4260
|
* <p>The version of the software where the deprecated resource version will stop being
|
|
4261
4261
|
* served.</p>
|
|
4262
4262
|
* @public
|
|
4263
4263
|
*/
|
|
4264
|
-
stopServingVersion?: string;
|
|
4264
|
+
stopServingVersion?: string | undefined;
|
|
4265
4265
|
/**
|
|
4266
4266
|
* <p>The version of the software where the newer resource version became available to
|
|
4267
4267
|
* migrate to if applicable.</p>
|
|
4268
4268
|
* @public
|
|
4269
4269
|
*/
|
|
4270
|
-
startServingReplacementVersion?: string;
|
|
4270
|
+
startServingReplacementVersion?: string | undefined;
|
|
4271
4271
|
/**
|
|
4272
4272
|
* <p>Details about Kubernetes clients using the deprecated resources.</p>
|
|
4273
4273
|
* @public
|
|
4274
4274
|
*/
|
|
4275
|
-
clientStats?: ClientStat[];
|
|
4275
|
+
clientStats?: ClientStat[] | undefined;
|
|
4276
4276
|
}
|
|
4277
4277
|
/**
|
|
4278
4278
|
* <p>Summary information that relates to the category of the insight. Currently only
|
|
@@ -4285,7 +4285,7 @@ export interface InsightCategorySpecificSummary {
|
|
|
4285
4285
|
* <code>UPGRADE_READINESS</code> category.</p>
|
|
4286
4286
|
* @public
|
|
4287
4287
|
*/
|
|
4288
|
-
deprecationDetails?: DeprecationDetail[];
|
|
4288
|
+
deprecationDetails?: DeprecationDetail[] | undefined;
|
|
4289
4289
|
}
|
|
4290
4290
|
/**
|
|
4291
4291
|
* @public
|
|
@@ -4310,12 +4310,12 @@ export interface InsightStatus {
|
|
|
4310
4310
|
* <p>The status of the resource.</p>
|
|
4311
4311
|
* @public
|
|
4312
4312
|
*/
|
|
4313
|
-
status?: InsightStatusValue;
|
|
4313
|
+
status?: InsightStatusValue | undefined;
|
|
4314
4314
|
/**
|
|
4315
4315
|
* <p>Explanation on the reasoning for the status of the resource. </p>
|
|
4316
4316
|
* @public
|
|
4317
4317
|
*/
|
|
4318
|
-
reason?: string;
|
|
4318
|
+
reason?: string | undefined;
|
|
4319
4319
|
}
|
|
4320
4320
|
/**
|
|
4321
4321
|
* <p>Returns information about the resource being evaluated.</p>
|
|
@@ -4326,17 +4326,17 @@ export interface InsightResourceDetail {
|
|
|
4326
4326
|
* <p>An object containing more detail on the status of the insight resource.</p>
|
|
4327
4327
|
* @public
|
|
4328
4328
|
*/
|
|
4329
|
-
insightStatus?: InsightStatus;
|
|
4329
|
+
insightStatus?: InsightStatus | undefined;
|
|
4330
4330
|
/**
|
|
4331
4331
|
* <p>The Kubernetes resource URI if applicable.</p>
|
|
4332
4332
|
* @public
|
|
4333
4333
|
*/
|
|
4334
|
-
kubernetesResourceUri?: string;
|
|
4334
|
+
kubernetesResourceUri?: string | undefined;
|
|
4335
4335
|
/**
|
|
4336
4336
|
* <p>The Amazon Resource Name (ARN) if applicable.</p>
|
|
4337
4337
|
* @public
|
|
4338
4338
|
*/
|
|
4339
|
-
arn?: string;
|
|
4339
|
+
arn?: string | undefined;
|
|
4340
4340
|
}
|
|
4341
4341
|
/**
|
|
4342
4342
|
* <p>A check that provides recommendations to remedy potential upgrade-impacting
|
|
@@ -4348,65 +4348,65 @@ export interface Insight {
|
|
|
4348
4348
|
* <p>The ID of the insight.</p>
|
|
4349
4349
|
* @public
|
|
4350
4350
|
*/
|
|
4351
|
-
id?: string;
|
|
4351
|
+
id?: string | undefined;
|
|
4352
4352
|
/**
|
|
4353
4353
|
* <p>The name of the insight.</p>
|
|
4354
4354
|
* @public
|
|
4355
4355
|
*/
|
|
4356
|
-
name?: string;
|
|
4356
|
+
name?: string | undefined;
|
|
4357
4357
|
/**
|
|
4358
4358
|
* <p>The category of the insight.</p>
|
|
4359
4359
|
* @public
|
|
4360
4360
|
*/
|
|
4361
|
-
category?: Category;
|
|
4361
|
+
category?: Category | undefined;
|
|
4362
4362
|
/**
|
|
4363
4363
|
* <p>The Kubernetes minor version associated with an insight if applicable.</p>
|
|
4364
4364
|
* @public
|
|
4365
4365
|
*/
|
|
4366
|
-
kubernetesVersion?: string;
|
|
4366
|
+
kubernetesVersion?: string | undefined;
|
|
4367
4367
|
/**
|
|
4368
4368
|
* <p>The time Amazon EKS last successfully completed a refresh of this insight check on the
|
|
4369
4369
|
* cluster.</p>
|
|
4370
4370
|
* @public
|
|
4371
4371
|
*/
|
|
4372
|
-
lastRefreshTime?: Date;
|
|
4372
|
+
lastRefreshTime?: Date | undefined;
|
|
4373
4373
|
/**
|
|
4374
4374
|
* <p>The time the status of the insight last changed.</p>
|
|
4375
4375
|
* @public
|
|
4376
4376
|
*/
|
|
4377
|
-
lastTransitionTime?: Date;
|
|
4377
|
+
lastTransitionTime?: Date | undefined;
|
|
4378
4378
|
/**
|
|
4379
4379
|
* <p>The description of the insight which includes alert criteria, remediation
|
|
4380
4380
|
* recommendation, and additional resources (contains Markdown).</p>
|
|
4381
4381
|
* @public
|
|
4382
4382
|
*/
|
|
4383
|
-
description?: string;
|
|
4383
|
+
description?: string | undefined;
|
|
4384
4384
|
/**
|
|
4385
4385
|
* <p>An object containing more detail on the status of the insight resource.</p>
|
|
4386
4386
|
* @public
|
|
4387
4387
|
*/
|
|
4388
|
-
insightStatus?: InsightStatus;
|
|
4388
|
+
insightStatus?: InsightStatus | undefined;
|
|
4389
4389
|
/**
|
|
4390
4390
|
* <p>A summary of how to remediate the finding of this insight if applicable. </p>
|
|
4391
4391
|
* @public
|
|
4392
4392
|
*/
|
|
4393
|
-
recommendation?: string;
|
|
4393
|
+
recommendation?: string | undefined;
|
|
4394
4394
|
/**
|
|
4395
4395
|
* <p>Links to sources that provide additional context on the insight.</p>
|
|
4396
4396
|
* @public
|
|
4397
4397
|
*/
|
|
4398
|
-
additionalInfo?: Record<string, string
|
|
4398
|
+
additionalInfo?: Record<string, string> | undefined;
|
|
4399
4399
|
/**
|
|
4400
4400
|
* <p>The details about each resource listed in the insight check result.</p>
|
|
4401
4401
|
* @public
|
|
4402
4402
|
*/
|
|
4403
|
-
resources?: InsightResourceDetail[];
|
|
4403
|
+
resources?: InsightResourceDetail[] | undefined;
|
|
4404
4404
|
/**
|
|
4405
4405
|
* <p>Summary information that relates to the category of the insight. Currently only
|
|
4406
4406
|
* returned with certain insights having category <code>UPGRADE_READINESS</code>.</p>
|
|
4407
4407
|
* @public
|
|
4408
4408
|
*/
|
|
4409
|
-
categorySpecificSummary?: InsightCategorySpecificSummary;
|
|
4409
|
+
categorySpecificSummary?: InsightCategorySpecificSummary | undefined;
|
|
4410
4410
|
}
|
|
4411
4411
|
/**
|
|
4412
4412
|
* @public
|
|
@@ -4416,7 +4416,7 @@ export interface DescribeInsightResponse {
|
|
|
4416
4416
|
* <p>The full description of the insight.</p>
|
|
4417
4417
|
* @public
|
|
4418
4418
|
*/
|
|
4419
|
-
insight?: Insight;
|
|
4419
|
+
insight?: Insight | undefined;
|
|
4420
4420
|
}
|
|
4421
4421
|
/**
|
|
4422
4422
|
* @public
|
|
@@ -4441,7 +4441,7 @@ export interface DescribeNodegroupResponse {
|
|
|
4441
4441
|
* <p>The full description of your node group.</p>
|
|
4442
4442
|
* @public
|
|
4443
4443
|
*/
|
|
4444
|
-
nodegroup?: Nodegroup;
|
|
4444
|
+
nodegroup?: Nodegroup | undefined;
|
|
4445
4445
|
}
|
|
4446
4446
|
/**
|
|
4447
4447
|
* @public
|
|
@@ -4466,7 +4466,7 @@ export interface DescribePodIdentityAssociationResponse {
|
|
|
4466
4466
|
* <p>The full description of the EKS Pod Identity association.</p>
|
|
4467
4467
|
* @public
|
|
4468
4468
|
*/
|
|
4469
|
-
association?: PodIdentityAssociation;
|
|
4469
|
+
association?: PodIdentityAssociation | undefined;
|
|
4470
4470
|
}
|
|
4471
4471
|
/**
|
|
4472
4472
|
* <p>Describes an update request.</p>
|
|
@@ -4488,14 +4488,14 @@ export interface DescribeUpdateRequest {
|
|
|
4488
4488
|
* parameter is required if the update is a node group update.</p>
|
|
4489
4489
|
* @public
|
|
4490
4490
|
*/
|
|
4491
|
-
nodegroupName?: string;
|
|
4491
|
+
nodegroupName?: string | undefined;
|
|
4492
4492
|
/**
|
|
4493
4493
|
* <p>The name of the add-on. The name must match one of the names returned by <a href="https://docs.aws.amazon.com/eks/latest/APIReference/API_ListAddons.html">
|
|
4494
4494
|
* <code>ListAddons</code>
|
|
4495
4495
|
* </a>. This parameter is required if the update is an add-on update.</p>
|
|
4496
4496
|
* @public
|
|
4497
4497
|
*/
|
|
4498
|
-
addonName?: string;
|
|
4498
|
+
addonName?: string | undefined;
|
|
4499
4499
|
}
|
|
4500
4500
|
/**
|
|
4501
4501
|
* @public
|
|
@@ -4505,7 +4505,7 @@ export interface DescribeUpdateResponse {
|
|
|
4505
4505
|
* <p>The full description of the specified update.</p>
|
|
4506
4506
|
* @public
|
|
4507
4507
|
*/
|
|
4508
|
-
update?: Update;
|
|
4508
|
+
update?: Update | undefined;
|
|
4509
4509
|
}
|
|
4510
4510
|
/**
|
|
4511
4511
|
* @public
|
|
@@ -4552,7 +4552,7 @@ export interface DisassociateIdentityProviderConfigRequest {
|
|
|
4552
4552
|
* the idempotency of the request.</p>
|
|
4553
4553
|
* @public
|
|
4554
4554
|
*/
|
|
4555
|
-
clientRequestToken?: string;
|
|
4555
|
+
clientRequestToken?: string | undefined;
|
|
4556
4556
|
}
|
|
4557
4557
|
/**
|
|
4558
4558
|
* @public
|
|
@@ -4562,7 +4562,7 @@ export interface DisassociateIdentityProviderConfigResponse {
|
|
|
4562
4562
|
* <p>An object representing an asynchronous update.</p>
|
|
4563
4563
|
* @public
|
|
4564
4564
|
*/
|
|
4565
|
-
update?: Update;
|
|
4565
|
+
update?: Update | undefined;
|
|
4566
4566
|
}
|
|
4567
4567
|
/**
|
|
4568
4568
|
* @public
|
|
@@ -4579,7 +4579,7 @@ export interface ListAccessEntriesRequest {
|
|
|
4579
4579
|
* available policy ARNs, use <code>ListAccessPolicies</code>.</p>
|
|
4580
4580
|
* @public
|
|
4581
4581
|
*/
|
|
4582
|
-
associatedPolicyArn?: string;
|
|
4582
|
+
associatedPolicyArn?: string | undefined;
|
|
4583
4583
|
/**
|
|
4584
4584
|
* <p>The maximum number of results, returned in paginated output. You receive
|
|
4585
4585
|
* <code>maxResults</code> in a single page, along with a <code>nextToken</code>
|
|
@@ -4590,7 +4590,7 @@ export interface ListAccessEntriesRequest {
|
|
|
4590
4590
|
* returned.</p>
|
|
4591
4591
|
* @public
|
|
4592
4592
|
*/
|
|
4593
|
-
maxResults?: number;
|
|
4593
|
+
maxResults?: number | undefined;
|
|
4594
4594
|
/**
|
|
4595
4595
|
* <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and
|
|
4596
4596
|
* the results exceeded the value of that parameter. Pagination continues from the end of
|
|
@@ -4601,7 +4601,7 @@ export interface ListAccessEntriesRequest {
|
|
|
4601
4601
|
* </note>
|
|
4602
4602
|
* @public
|
|
4603
4603
|
*/
|
|
4604
|
-
nextToken?: string;
|
|
4604
|
+
nextToken?: string | undefined;
|
|
4605
4605
|
}
|
|
4606
4606
|
/**
|
|
4607
4607
|
* @public
|
|
@@ -4611,7 +4611,7 @@ export interface ListAccessEntriesResponse {
|
|
|
4611
4611
|
* <p>The list of access entries that exist for the cluster.</p>
|
|
4612
4612
|
* @public
|
|
4613
4613
|
*/
|
|
4614
|
-
accessEntries?: string[];
|
|
4614
|
+
accessEntries?: string[] | undefined;
|
|
4615
4615
|
/**
|
|
4616
4616
|
* <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and
|
|
4617
4617
|
* the results exceeded the value of that parameter. Pagination continues from the end of
|
|
@@ -4622,7 +4622,7 @@ export interface ListAccessEntriesResponse {
|
|
|
4622
4622
|
* </note>
|
|
4623
4623
|
* @public
|
|
4624
4624
|
*/
|
|
4625
|
-
nextToken?: string;
|
|
4625
|
+
nextToken?: string | undefined;
|
|
4626
4626
|
}
|
|
4627
4627
|
/**
|
|
4628
4628
|
* @public
|
|
@@ -4638,7 +4638,7 @@ export interface ListAccessPoliciesRequest {
|
|
|
4638
4638
|
* returned.</p>
|
|
4639
4639
|
* @public
|
|
4640
4640
|
*/
|
|
4641
|
-
maxResults?: number;
|
|
4641
|
+
maxResults?: number | undefined;
|
|
4642
4642
|
/**
|
|
4643
4643
|
* <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and
|
|
4644
4644
|
* the results exceeded the value of that parameter. Pagination continues from the end of
|
|
@@ -4649,7 +4649,7 @@ export interface ListAccessPoliciesRequest {
|
|
|
4649
4649
|
* </note>
|
|
4650
4650
|
* @public
|
|
4651
4651
|
*/
|
|
4652
|
-
nextToken?: string;
|
|
4652
|
+
nextToken?: string | undefined;
|
|
4653
4653
|
}
|
|
4654
4654
|
/**
|
|
4655
4655
|
* @public
|
|
@@ -4661,7 +4661,7 @@ export interface ListAccessPoliciesResponse {
|
|
|
4661
4661
|
* policy permissions</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
4662
4662
|
* @public
|
|
4663
4663
|
*/
|
|
4664
|
-
accessPolicies?: AccessPolicy[];
|
|
4664
|
+
accessPolicies?: AccessPolicy[] | undefined;
|
|
4665
4665
|
/**
|
|
4666
4666
|
* <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and
|
|
4667
4667
|
* the results exceeded the value of that parameter. Pagination continues from the end of
|
|
@@ -4672,7 +4672,7 @@ export interface ListAccessPoliciesResponse {
|
|
|
4672
4672
|
* </note>
|
|
4673
4673
|
* @public
|
|
4674
4674
|
*/
|
|
4675
|
-
nextToken?: string;
|
|
4675
|
+
nextToken?: string | undefined;
|
|
4676
4676
|
}
|
|
4677
4677
|
/**
|
|
4678
4678
|
* @public
|
|
@@ -4693,7 +4693,7 @@ export interface ListAddonsRequest {
|
|
|
4693
4693
|
* returned.</p>
|
|
4694
4694
|
* @public
|
|
4695
4695
|
*/
|
|
4696
|
-
maxResults?: number;
|
|
4696
|
+
maxResults?: number | undefined;
|
|
4697
4697
|
/**
|
|
4698
4698
|
* <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and
|
|
4699
4699
|
* the results exceeded the value of that parameter. Pagination continues from the end of
|
|
@@ -4704,7 +4704,7 @@ export interface ListAddonsRequest {
|
|
|
4704
4704
|
* </note>
|
|
4705
4705
|
* @public
|
|
4706
4706
|
*/
|
|
4707
|
-
nextToken?: string;
|
|
4707
|
+
nextToken?: string | undefined;
|
|
4708
4708
|
}
|
|
4709
4709
|
/**
|
|
4710
4710
|
* @public
|
|
@@ -4714,7 +4714,7 @@ export interface ListAddonsResponse {
|
|
|
4714
4714
|
* <p>A list of installed add-ons.</p>
|
|
4715
4715
|
* @public
|
|
4716
4716
|
*/
|
|
4717
|
-
addons?: string[];
|
|
4717
|
+
addons?: string[] | undefined;
|
|
4718
4718
|
/**
|
|
4719
4719
|
* <p>The <code>nextToken</code> value to include in a future <code>ListAddons</code>
|
|
4720
4720
|
* request. When the results of a <code>ListAddons</code> request exceed
|
|
@@ -4727,7 +4727,7 @@ export interface ListAddonsResponse {
|
|
|
4727
4727
|
* </note>
|
|
4728
4728
|
* @public
|
|
4729
4729
|
*/
|
|
4730
|
-
nextToken?: string;
|
|
4730
|
+
nextToken?: string | undefined;
|
|
4731
4731
|
}
|
|
4732
4732
|
/**
|
|
4733
4733
|
* @public
|
|
@@ -4753,7 +4753,7 @@ export interface ListAssociatedAccessPoliciesRequest {
|
|
|
4753
4753
|
* returned.</p>
|
|
4754
4754
|
* @public
|
|
4755
4755
|
*/
|
|
4756
|
-
maxResults?: number;
|
|
4756
|
+
maxResults?: number | undefined;
|
|
4757
4757
|
/**
|
|
4758
4758
|
* <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and
|
|
4759
4759
|
* the results exceeded the value of that parameter. Pagination continues from the end of
|
|
@@ -4764,7 +4764,7 @@ export interface ListAssociatedAccessPoliciesRequest {
|
|
|
4764
4764
|
* </note>
|
|
4765
4765
|
* @public
|
|
4766
4766
|
*/
|
|
4767
|
-
nextToken?: string;
|
|
4767
|
+
nextToken?: string | undefined;
|
|
4768
4768
|
}
|
|
4769
4769
|
/**
|
|
4770
4770
|
* @public
|
|
@@ -4774,12 +4774,12 @@ export interface ListAssociatedAccessPoliciesResponse {
|
|
|
4774
4774
|
* <p>The name of your cluster.</p>
|
|
4775
4775
|
* @public
|
|
4776
4776
|
*/
|
|
4777
|
-
clusterName?: string;
|
|
4777
|
+
clusterName?: string | undefined;
|
|
4778
4778
|
/**
|
|
4779
4779
|
* <p>The ARN of the IAM principal for the <code>AccessEntry</code>.</p>
|
|
4780
4780
|
* @public
|
|
4781
4781
|
*/
|
|
4782
|
-
principalArn?: string;
|
|
4782
|
+
principalArn?: string | undefined;
|
|
4783
4783
|
/**
|
|
4784
4784
|
* <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and
|
|
4785
4785
|
* the results exceeded the value of that parameter. Pagination continues from the end of
|
|
@@ -4790,12 +4790,12 @@ export interface ListAssociatedAccessPoliciesResponse {
|
|
|
4790
4790
|
* </note>
|
|
4791
4791
|
* @public
|
|
4792
4792
|
*/
|
|
4793
|
-
nextToken?: string;
|
|
4793
|
+
nextToken?: string | undefined;
|
|
4794
4794
|
/**
|
|
4795
4795
|
* <p>The list of access policies associated with the access entry.</p>
|
|
4796
4796
|
* @public
|
|
4797
4797
|
*/
|
|
4798
|
-
associatedAccessPolicies?: AssociatedAccessPolicy[];
|
|
4798
|
+
associatedAccessPolicies?: AssociatedAccessPolicy[] | undefined;
|
|
4799
4799
|
}
|
|
4800
4800
|
/**
|
|
4801
4801
|
* @public
|
|
@@ -4811,7 +4811,7 @@ export interface ListClustersRequest {
|
|
|
4811
4811
|
* returned.</p>
|
|
4812
4812
|
* @public
|
|
4813
4813
|
*/
|
|
4814
|
-
maxResults?: number;
|
|
4814
|
+
maxResults?: number | undefined;
|
|
4815
4815
|
/**
|
|
4816
4816
|
* <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and
|
|
4817
4817
|
* the results exceeded the value of that parameter. Pagination continues from the end of
|
|
@@ -4822,7 +4822,7 @@ export interface ListClustersRequest {
|
|
|
4822
4822
|
* </note>
|
|
4823
4823
|
* @public
|
|
4824
4824
|
*/
|
|
4825
|
-
nextToken?: string;
|
|
4825
|
+
nextToken?: string | undefined;
|
|
4826
4826
|
/**
|
|
4827
4827
|
* <p>Indicates whether external clusters are included in the returned list. Use
|
|
4828
4828
|
* '<code>all</code>' to return <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-connector.html">https://docs.aws.amazon.com/eks/latest/userguide/eks-connector.html</a>connected clusters, or blank to
|
|
@@ -4830,7 +4830,7 @@ export interface ListClustersRequest {
|
|
|
4830
4830
|
* otherwise an error occurs.</p>
|
|
4831
4831
|
* @public
|
|
4832
4832
|
*/
|
|
4833
|
-
include?: string[];
|
|
4833
|
+
include?: string[] | undefined;
|
|
4834
4834
|
}
|
|
4835
4835
|
/**
|
|
4836
4836
|
* @public
|
|
@@ -4840,7 +4840,7 @@ export interface ListClustersResponse {
|
|
|
4840
4840
|
* <p>A list of all of the clusters for your account in the specified Amazon Web Services Region.</p>
|
|
4841
4841
|
* @public
|
|
4842
4842
|
*/
|
|
4843
|
-
clusters?: string[];
|
|
4843
|
+
clusters?: string[] | undefined;
|
|
4844
4844
|
/**
|
|
4845
4845
|
* <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and
|
|
4846
4846
|
* the results exceeded the value of that parameter. Pagination continues from the end of
|
|
@@ -4851,7 +4851,7 @@ export interface ListClustersResponse {
|
|
|
4851
4851
|
* </note>
|
|
4852
4852
|
* @public
|
|
4853
4853
|
*/
|
|
4854
|
-
nextToken?: string;
|
|
4854
|
+
nextToken?: string | undefined;
|
|
4855
4855
|
}
|
|
4856
4856
|
/**
|
|
4857
4857
|
* @public
|
|
@@ -4883,7 +4883,7 @@ export interface ListEksAnywhereSubscriptionsRequest {
|
|
|
4883
4883
|
* returns up to 10 results and a nextToken value if applicable.</p>
|
|
4884
4884
|
* @public
|
|
4885
4885
|
*/
|
|
4886
|
-
maxResults?: number;
|
|
4886
|
+
maxResults?: number | undefined;
|
|
4887
4887
|
/**
|
|
4888
4888
|
* <p>The <code>nextToken</code> value returned from a previous paginated
|
|
4889
4889
|
* <code>ListEksAnywhereSubscriptions</code> request where <code>maxResults</code> was
|
|
@@ -4891,12 +4891,12 @@ export interface ListEksAnywhereSubscriptionsRequest {
|
|
|
4891
4891
|
* end of the previous results that returned the <code>nextToken</code> value.</p>
|
|
4892
4892
|
* @public
|
|
4893
4893
|
*/
|
|
4894
|
-
nextToken?: string;
|
|
4894
|
+
nextToken?: string | undefined;
|
|
4895
4895
|
/**
|
|
4896
4896
|
* <p>An array of subscription statuses to filter on.</p>
|
|
4897
4897
|
* @public
|
|
4898
4898
|
*/
|
|
4899
|
-
includeStatus?: EksAnywhereSubscriptionStatus[];
|
|
4899
|
+
includeStatus?: EksAnywhereSubscriptionStatus[] | undefined;
|
|
4900
4900
|
}
|
|
4901
4901
|
/**
|
|
4902
4902
|
* @public
|
|
@@ -4907,7 +4907,7 @@ export interface ListEksAnywhereSubscriptionsResponse {
|
|
|
4907
4907
|
* paginated by nextToken and maxResults.</p>
|
|
4908
4908
|
* @public
|
|
4909
4909
|
*/
|
|
4910
|
-
subscriptions?: EksAnywhereSubscription[];
|
|
4910
|
+
subscriptions?: EksAnywhereSubscription[] | undefined;
|
|
4911
4911
|
/**
|
|
4912
4912
|
* <p>The nextToken value to include in a future ListEksAnywhereSubscriptions request. When
|
|
4913
4913
|
* the results of a ListEksAnywhereSubscriptions request exceed maxResults, you can use
|
|
@@ -4915,7 +4915,7 @@ export interface ListEksAnywhereSubscriptionsResponse {
|
|
|
4915
4915
|
* more results to return.</p>
|
|
4916
4916
|
* @public
|
|
4917
4917
|
*/
|
|
4918
|
-
nextToken?: string;
|
|
4918
|
+
nextToken?: string | undefined;
|
|
4919
4919
|
}
|
|
4920
4920
|
/**
|
|
4921
4921
|
* @public
|
|
@@ -4936,7 +4936,7 @@ export interface ListFargateProfilesRequest {
|
|
|
4936
4936
|
* returned.</p>
|
|
4937
4937
|
* @public
|
|
4938
4938
|
*/
|
|
4939
|
-
maxResults?: number;
|
|
4939
|
+
maxResults?: number | undefined;
|
|
4940
4940
|
/**
|
|
4941
4941
|
* <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and
|
|
4942
4942
|
* the results exceeded the value of that parameter. Pagination continues from the end of
|
|
@@ -4947,7 +4947,7 @@ export interface ListFargateProfilesRequest {
|
|
|
4947
4947
|
* </note>
|
|
4948
4948
|
* @public
|
|
4949
4949
|
*/
|
|
4950
|
-
nextToken?: string;
|
|
4950
|
+
nextToken?: string | undefined;
|
|
4951
4951
|
}
|
|
4952
4952
|
/**
|
|
4953
4953
|
* @public
|
|
@@ -4958,7 +4958,7 @@ export interface ListFargateProfilesResponse {
|
|
|
4958
4958
|
* cluster.</p>
|
|
4959
4959
|
* @public
|
|
4960
4960
|
*/
|
|
4961
|
-
fargateProfileNames?: string[];
|
|
4961
|
+
fargateProfileNames?: string[] | undefined;
|
|
4962
4962
|
/**
|
|
4963
4963
|
* <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and
|
|
4964
4964
|
* the results exceeded the value of that parameter. Pagination continues from the end of
|
|
@@ -4969,7 +4969,7 @@ export interface ListFargateProfilesResponse {
|
|
|
4969
4969
|
* </note>
|
|
4970
4970
|
* @public
|
|
4971
4971
|
*/
|
|
4972
|
-
nextToken?: string;
|
|
4972
|
+
nextToken?: string | undefined;
|
|
4973
4973
|
}
|
|
4974
4974
|
/**
|
|
4975
4975
|
* @public
|
|
@@ -4990,7 +4990,7 @@ export interface ListIdentityProviderConfigsRequest {
|
|
|
4990
4990
|
* returned.</p>
|
|
4991
4991
|
* @public
|
|
4992
4992
|
*/
|
|
4993
|
-
maxResults?: number;
|
|
4993
|
+
maxResults?: number | undefined;
|
|
4994
4994
|
/**
|
|
4995
4995
|
* <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and
|
|
4996
4996
|
* the results exceeded the value of that parameter. Pagination continues from the end of
|
|
@@ -5001,7 +5001,7 @@ export interface ListIdentityProviderConfigsRequest {
|
|
|
5001
5001
|
* </note>
|
|
5002
5002
|
* @public
|
|
5003
5003
|
*/
|
|
5004
|
-
nextToken?: string;
|
|
5004
|
+
nextToken?: string | undefined;
|
|
5005
5005
|
}
|
|
5006
5006
|
/**
|
|
5007
5007
|
* @public
|
|
@@ -5011,7 +5011,7 @@ export interface ListIdentityProviderConfigsResponse {
|
|
|
5011
5011
|
* <p>The identity provider configurations for the cluster.</p>
|
|
5012
5012
|
* @public
|
|
5013
5013
|
*/
|
|
5014
|
-
identityProviderConfigs?: IdentityProviderConfig[];
|
|
5014
|
+
identityProviderConfigs?: IdentityProviderConfig[] | undefined;
|
|
5015
5015
|
/**
|
|
5016
5016
|
* <p>The <code>nextToken</code> value to include in a future
|
|
5017
5017
|
* <code>ListIdentityProviderConfigsResponse</code> request. When the results of a
|
|
@@ -5025,7 +5025,7 @@ export interface ListIdentityProviderConfigsResponse {
|
|
|
5025
5025
|
* </note>
|
|
5026
5026
|
* @public
|
|
5027
5027
|
*/
|
|
5028
|
-
nextToken?: string;
|
|
5028
|
+
nextToken?: string | undefined;
|
|
5029
5029
|
}
|
|
5030
5030
|
/**
|
|
5031
5031
|
* <p>The criteria to use for the insights.</p>
|
|
@@ -5036,17 +5036,17 @@ export interface InsightsFilter {
|
|
|
5036
5036
|
* <p>The categories to use to filter insights.</p>
|
|
5037
5037
|
* @public
|
|
5038
5038
|
*/
|
|
5039
|
-
categories?: Category[];
|
|
5039
|
+
categories?: Category[] | undefined;
|
|
5040
5040
|
/**
|
|
5041
5041
|
* <p>The Kubernetes versions to use to filter the insights.</p>
|
|
5042
5042
|
* @public
|
|
5043
5043
|
*/
|
|
5044
|
-
kubernetesVersions?: string[];
|
|
5044
|
+
kubernetesVersions?: string[] | undefined;
|
|
5045
5045
|
/**
|
|
5046
5046
|
* <p>The statuses to use to filter the insights. </p>
|
|
5047
5047
|
* @public
|
|
5048
5048
|
*/
|
|
5049
|
-
statuses?: InsightStatusValue[];
|
|
5049
|
+
statuses?: InsightStatusValue[] | undefined;
|
|
5050
5050
|
}
|
|
5051
5051
|
/**
|
|
5052
5052
|
* @public
|
|
@@ -5062,7 +5062,7 @@ export interface ListInsightsRequest {
|
|
|
5062
5062
|
* insights are returned by category, associated Kubernetes version, and status.</p>
|
|
5063
5063
|
* @public
|
|
5064
5064
|
*/
|
|
5065
|
-
filter?: InsightsFilter;
|
|
5065
|
+
filter?: InsightsFilter | undefined;
|
|
5066
5066
|
/**
|
|
5067
5067
|
* <p>The maximum number of identity provider configurations returned by
|
|
5068
5068
|
* <code>ListInsights</code> in paginated output. When you use this parameter,
|
|
@@ -5075,7 +5075,7 @@ export interface ListInsightsRequest {
|
|
|
5075
5075
|
* applicable.</p>
|
|
5076
5076
|
* @public
|
|
5077
5077
|
*/
|
|
5078
|
-
maxResults?: number;
|
|
5078
|
+
maxResults?: number | undefined;
|
|
5079
5079
|
/**
|
|
5080
5080
|
* <p>The <code>nextToken</code> value returned from a previous paginated
|
|
5081
5081
|
* <code>ListInsights</code> request. When the results of a <code>ListInsights</code>
|
|
@@ -5084,7 +5084,7 @@ export interface ListInsightsRequest {
|
|
|
5084
5084
|
* return.</p>
|
|
5085
5085
|
* @public
|
|
5086
5086
|
*/
|
|
5087
|
-
nextToken?: string;
|
|
5087
|
+
nextToken?: string | undefined;
|
|
5088
5088
|
}
|
|
5089
5089
|
/**
|
|
5090
5090
|
* <p>The summarized description of the insight.</p>
|
|
@@ -5095,44 +5095,44 @@ export interface InsightSummary {
|
|
|
5095
5095
|
* <p>The ID of the insight.</p>
|
|
5096
5096
|
* @public
|
|
5097
5097
|
*/
|
|
5098
|
-
id?: string;
|
|
5098
|
+
id?: string | undefined;
|
|
5099
5099
|
/**
|
|
5100
5100
|
* <p>The name of the insight.</p>
|
|
5101
5101
|
* @public
|
|
5102
5102
|
*/
|
|
5103
|
-
name?: string;
|
|
5103
|
+
name?: string | undefined;
|
|
5104
5104
|
/**
|
|
5105
5105
|
* <p>The category of the insight.</p>
|
|
5106
5106
|
* @public
|
|
5107
5107
|
*/
|
|
5108
|
-
category?: Category;
|
|
5108
|
+
category?: Category | undefined;
|
|
5109
5109
|
/**
|
|
5110
5110
|
* <p>The Kubernetes minor version associated with an insight if applicable. </p>
|
|
5111
5111
|
* @public
|
|
5112
5112
|
*/
|
|
5113
|
-
kubernetesVersion?: string;
|
|
5113
|
+
kubernetesVersion?: string | undefined;
|
|
5114
5114
|
/**
|
|
5115
5115
|
* <p>The time Amazon EKS last successfully completed a refresh of this insight check on the
|
|
5116
5116
|
* cluster.</p>
|
|
5117
5117
|
* @public
|
|
5118
5118
|
*/
|
|
5119
|
-
lastRefreshTime?: Date;
|
|
5119
|
+
lastRefreshTime?: Date | undefined;
|
|
5120
5120
|
/**
|
|
5121
5121
|
* <p>The time the status of the insight last changed.</p>
|
|
5122
5122
|
* @public
|
|
5123
5123
|
*/
|
|
5124
|
-
lastTransitionTime?: Date;
|
|
5124
|
+
lastTransitionTime?: Date | undefined;
|
|
5125
5125
|
/**
|
|
5126
5126
|
* <p>The description of the insight which includes alert criteria, remediation
|
|
5127
5127
|
* recommendation, and additional resources (contains Markdown).</p>
|
|
5128
5128
|
* @public
|
|
5129
5129
|
*/
|
|
5130
|
-
description?: string;
|
|
5130
|
+
description?: string | undefined;
|
|
5131
5131
|
/**
|
|
5132
5132
|
* <p>An object containing more detail on the status of the insight.</p>
|
|
5133
5133
|
* @public
|
|
5134
5134
|
*/
|
|
5135
|
-
insightStatus?: InsightStatus;
|
|
5135
|
+
insightStatus?: InsightStatus | undefined;
|
|
5136
5136
|
}
|
|
5137
5137
|
/**
|
|
5138
5138
|
* @public
|
|
@@ -5142,7 +5142,7 @@ export interface ListInsightsResponse {
|
|
|
5142
5142
|
* <p>The returned list of insights.</p>
|
|
5143
5143
|
* @public
|
|
5144
5144
|
*/
|
|
5145
|
-
insights?: InsightSummary[];
|
|
5145
|
+
insights?: InsightSummary[] | undefined;
|
|
5146
5146
|
/**
|
|
5147
5147
|
* <p>The <code>nextToken</code> value to include in a future <code>ListInsights</code>
|
|
5148
5148
|
* request. When the results of a <code>ListInsights</code> request exceed
|
|
@@ -5151,7 +5151,7 @@ export interface ListInsightsResponse {
|
|
|
5151
5151
|
* return.</p>
|
|
5152
5152
|
* @public
|
|
5153
5153
|
*/
|
|
5154
|
-
nextToken?: string;
|
|
5154
|
+
nextToken?: string | undefined;
|
|
5155
5155
|
}
|
|
5156
5156
|
/**
|
|
5157
5157
|
* @public
|
|
@@ -5172,7 +5172,7 @@ export interface ListNodegroupsRequest {
|
|
|
5172
5172
|
* returned.</p>
|
|
5173
5173
|
* @public
|
|
5174
5174
|
*/
|
|
5175
|
-
maxResults?: number;
|
|
5175
|
+
maxResults?: number | undefined;
|
|
5176
5176
|
/**
|
|
5177
5177
|
* <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and
|
|
5178
5178
|
* the results exceeded the value of that parameter. Pagination continues from the end of
|
|
@@ -5183,7 +5183,7 @@ export interface ListNodegroupsRequest {
|
|
|
5183
5183
|
* </note>
|
|
5184
5184
|
* @public
|
|
5185
5185
|
*/
|
|
5186
|
-
nextToken?: string;
|
|
5186
|
+
nextToken?: string | undefined;
|
|
5187
5187
|
}
|
|
5188
5188
|
/**
|
|
5189
5189
|
* @public
|
|
@@ -5193,7 +5193,7 @@ export interface ListNodegroupsResponse {
|
|
|
5193
5193
|
* <p>A list of all of the node groups associated with the specified cluster.</p>
|
|
5194
5194
|
* @public
|
|
5195
5195
|
*/
|
|
5196
|
-
nodegroups?: string[];
|
|
5196
|
+
nodegroups?: string[] | undefined;
|
|
5197
5197
|
/**
|
|
5198
5198
|
* <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and
|
|
5199
5199
|
* the results exceeded the value of that parameter. Pagination continues from the end of
|
|
@@ -5204,7 +5204,7 @@ export interface ListNodegroupsResponse {
|
|
|
5204
5204
|
* </note>
|
|
5205
5205
|
* @public
|
|
5206
5206
|
*/
|
|
5207
|
-
nextToken?: string;
|
|
5207
|
+
nextToken?: string | undefined;
|
|
5208
5208
|
}
|
|
5209
5209
|
/**
|
|
5210
5210
|
* @public
|
|
@@ -5219,12 +5219,12 @@ export interface ListPodIdentityAssociationsRequest {
|
|
|
5219
5219
|
* <p>The name of the Kubernetes namespace inside the cluster that the associations are in.</p>
|
|
5220
5220
|
* @public
|
|
5221
5221
|
*/
|
|
5222
|
-
namespace?: string;
|
|
5222
|
+
namespace?: string | undefined;
|
|
5223
5223
|
/**
|
|
5224
5224
|
* <p>The name of the Kubernetes service account that the associations use.</p>
|
|
5225
5225
|
* @public
|
|
5226
5226
|
*/
|
|
5227
|
-
serviceAccount?: string;
|
|
5227
|
+
serviceAccount?: string | undefined;
|
|
5228
5228
|
/**
|
|
5229
5229
|
* <p>The maximum number of EKS Pod Identity association results returned by
|
|
5230
5230
|
* <code>ListPodIdentityAssociations</code> in paginated output. When you use this
|
|
@@ -5238,7 +5238,7 @@ export interface ListPodIdentityAssociationsRequest {
|
|
|
5238
5238
|
* and a <code>nextToken</code> value if applicable.</p>
|
|
5239
5239
|
* @public
|
|
5240
5240
|
*/
|
|
5241
|
-
maxResults?: number;
|
|
5241
|
+
maxResults?: number | undefined;
|
|
5242
5242
|
/**
|
|
5243
5243
|
* <p>The <code>nextToken</code> value returned from a previous paginated
|
|
5244
5244
|
* <code>ListUpdates</code> request where <code>maxResults</code> was used and the
|
|
@@ -5250,7 +5250,7 @@ export interface ListPodIdentityAssociationsRequest {
|
|
|
5250
5250
|
* </note>
|
|
5251
5251
|
* @public
|
|
5252
5252
|
*/
|
|
5253
|
-
nextToken?: string;
|
|
5253
|
+
nextToken?: string | undefined;
|
|
5254
5254
|
}
|
|
5255
5255
|
/**
|
|
5256
5256
|
* <p>The summarized description of the association.</p>
|
|
@@ -5282,35 +5282,35 @@ export interface PodIdentityAssociationSummary {
|
|
|
5282
5282
|
* <p>The name of the cluster that the association is in.</p>
|
|
5283
5283
|
* @public
|
|
5284
5284
|
*/
|
|
5285
|
-
clusterName?: string;
|
|
5285
|
+
clusterName?: string | undefined;
|
|
5286
5286
|
/**
|
|
5287
5287
|
* <p>The name of the Kubernetes namespace inside the cluster to create the association in. The
|
|
5288
5288
|
* service account and the pods that use the service account must be in this
|
|
5289
5289
|
* namespace.</p>
|
|
5290
5290
|
* @public
|
|
5291
5291
|
*/
|
|
5292
|
-
namespace?: string;
|
|
5292
|
+
namespace?: string | undefined;
|
|
5293
5293
|
/**
|
|
5294
5294
|
* <p>The name of the Kubernetes service account inside the cluster to associate the IAM
|
|
5295
5295
|
* credentials with.</p>
|
|
5296
5296
|
* @public
|
|
5297
5297
|
*/
|
|
5298
|
-
serviceAccount?: string;
|
|
5298
|
+
serviceAccount?: string | undefined;
|
|
5299
5299
|
/**
|
|
5300
5300
|
* <p>The Amazon Resource Name (ARN) of the association.</p>
|
|
5301
5301
|
* @public
|
|
5302
5302
|
*/
|
|
5303
|
-
associationArn?: string;
|
|
5303
|
+
associationArn?: string | undefined;
|
|
5304
5304
|
/**
|
|
5305
5305
|
* <p>The ID of the association.</p>
|
|
5306
5306
|
* @public
|
|
5307
5307
|
*/
|
|
5308
|
-
associationId?: string;
|
|
5308
|
+
associationId?: string | undefined;
|
|
5309
5309
|
/**
|
|
5310
5310
|
* <p>If defined, the Pod Identity Association is owned by an Amazon EKS Addon.</p>
|
|
5311
5311
|
* @public
|
|
5312
5312
|
*/
|
|
5313
|
-
ownerArn?: string;
|
|
5313
|
+
ownerArn?: string | undefined;
|
|
5314
5314
|
}
|
|
5315
5315
|
/**
|
|
5316
5316
|
* @public
|
|
@@ -5342,7 +5342,7 @@ export interface ListPodIdentityAssociationsResponse {
|
|
|
5342
5342
|
* </ul>
|
|
5343
5343
|
* @public
|
|
5344
5344
|
*/
|
|
5345
|
-
associations?: PodIdentityAssociationSummary[];
|
|
5345
|
+
associations?: PodIdentityAssociationSummary[] | undefined;
|
|
5346
5346
|
/**
|
|
5347
5347
|
* <p>The <code>nextToken</code> value to include in a future
|
|
5348
5348
|
* <code>ListPodIdentityAssociations</code> request. When the results of a
|
|
@@ -5355,7 +5355,7 @@ export interface ListPodIdentityAssociationsResponse {
|
|
|
5355
5355
|
* </note>
|
|
5356
5356
|
* @public
|
|
5357
5357
|
*/
|
|
5358
|
-
nextToken?: string;
|
|
5358
|
+
nextToken?: string | undefined;
|
|
5359
5359
|
}
|
|
5360
5360
|
/**
|
|
5361
5361
|
* <p>This exception is thrown if the request contains a semantic error. The precise meaning
|
|
@@ -5388,7 +5388,7 @@ export interface ListTagsForResourceResponse {
|
|
|
5388
5388
|
* <p>The tags for the resource.</p>
|
|
5389
5389
|
* @public
|
|
5390
5390
|
*/
|
|
5391
|
-
tags?: Record<string, string
|
|
5391
|
+
tags?: Record<string, string> | undefined;
|
|
5392
5392
|
}
|
|
5393
5393
|
/**
|
|
5394
5394
|
* <p>A service resource associated with the request could not be found. Clients should not
|
|
@@ -5416,12 +5416,12 @@ export interface ListUpdatesRequest {
|
|
|
5416
5416
|
* <p>The name of the Amazon EKS managed node group to list updates for.</p>
|
|
5417
5417
|
* @public
|
|
5418
5418
|
*/
|
|
5419
|
-
nodegroupName?: string;
|
|
5419
|
+
nodegroupName?: string | undefined;
|
|
5420
5420
|
/**
|
|
5421
5421
|
* <p>The names of the installed add-ons that have available updates.</p>
|
|
5422
5422
|
* @public
|
|
5423
5423
|
*/
|
|
5424
|
-
addonName?: string;
|
|
5424
|
+
addonName?: string | undefined;
|
|
5425
5425
|
/**
|
|
5426
5426
|
* <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and
|
|
5427
5427
|
* the results exceeded the value of that parameter. Pagination continues from the end of
|
|
@@ -5432,7 +5432,7 @@ export interface ListUpdatesRequest {
|
|
|
5432
5432
|
* </note>
|
|
5433
5433
|
* @public
|
|
5434
5434
|
*/
|
|
5435
|
-
nextToken?: string;
|
|
5435
|
+
nextToken?: string | undefined;
|
|
5436
5436
|
/**
|
|
5437
5437
|
* <p>The maximum number of results, returned in paginated output. You receive
|
|
5438
5438
|
* <code>maxResults</code> in a single page, along with a <code>nextToken</code>
|
|
@@ -5443,7 +5443,7 @@ export interface ListUpdatesRequest {
|
|
|
5443
5443
|
* returned.</p>
|
|
5444
5444
|
* @public
|
|
5445
5445
|
*/
|
|
5446
|
-
maxResults?: number;
|
|
5446
|
+
maxResults?: number | undefined;
|
|
5447
5447
|
}
|
|
5448
5448
|
/**
|
|
5449
5449
|
* @public
|
|
@@ -5453,7 +5453,7 @@ export interface ListUpdatesResponse {
|
|
|
5453
5453
|
* <p>A list of all the updates for the specified cluster and Region.</p>
|
|
5454
5454
|
* @public
|
|
5455
5455
|
*/
|
|
5456
|
-
updateIds?: string[];
|
|
5456
|
+
updateIds?: string[] | undefined;
|
|
5457
5457
|
/**
|
|
5458
5458
|
* <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and
|
|
5459
5459
|
* the results exceeded the value of that parameter. Pagination continues from the end of
|
|
@@ -5464,7 +5464,7 @@ export interface ListUpdatesResponse {
|
|
|
5464
5464
|
* </note>
|
|
5465
5465
|
* @public
|
|
5466
5466
|
*/
|
|
5467
|
-
nextToken?: string;
|
|
5467
|
+
nextToken?: string | undefined;
|
|
5468
5468
|
}
|
|
5469
5469
|
/**
|
|
5470
5470
|
* @public
|
|
@@ -5521,14 +5521,14 @@ export interface RegisterClusterRequest {
|
|
|
5521
5521
|
* the idempotency of the request.</p>
|
|
5522
5522
|
* @public
|
|
5523
5523
|
*/
|
|
5524
|
-
clientRequestToken?: string;
|
|
5524
|
+
clientRequestToken?: string | undefined;
|
|
5525
5525
|
/**
|
|
5526
5526
|
* <p>Metadata that assists with categorization and organization.
|
|
5527
5527
|
* Each tag consists of a key and an optional value. You define both. Tags don't
|
|
5528
5528
|
* propagate to any other cluster or Amazon Web Services resources.</p>
|
|
5529
5529
|
* @public
|
|
5530
5530
|
*/
|
|
5531
|
-
tags?: Record<string, string
|
|
5531
|
+
tags?: Record<string, string> | undefined;
|
|
5532
5532
|
}
|
|
5533
5533
|
/**
|
|
5534
5534
|
* @public
|
|
@@ -5538,7 +5538,7 @@ export interface RegisterClusterResponse {
|
|
|
5538
5538
|
* <p>An object representing an Amazon EKS cluster.</p>
|
|
5539
5539
|
* @public
|
|
5540
5540
|
*/
|
|
5541
|
-
cluster?: Cluster;
|
|
5541
|
+
cluster?: Cluster | undefined;
|
|
5542
5542
|
}
|
|
5543
5543
|
/**
|
|
5544
5544
|
* <p>Required resources (such as service-linked roles) were created and are still
|
|
@@ -5631,13 +5631,13 @@ export interface UpdateAccessEntryRequest {
|
|
|
5631
5631
|
* objects that the group names are bound to.</p>
|
|
5632
5632
|
* @public
|
|
5633
5633
|
*/
|
|
5634
|
-
kubernetesGroups?: string[];
|
|
5634
|
+
kubernetesGroups?: string[] | undefined;
|
|
5635
5635
|
/**
|
|
5636
5636
|
* <p>A unique, case-sensitive identifier that you provide to ensure
|
|
5637
5637
|
* the idempotency of the request.</p>
|
|
5638
5638
|
* @public
|
|
5639
5639
|
*/
|
|
5640
|
-
clientRequestToken?: string;
|
|
5640
|
+
clientRequestToken?: string | undefined;
|
|
5641
5641
|
/**
|
|
5642
5642
|
* <p>The username to authenticate to Kubernetes with. We recommend not specifying a username and
|
|
5643
5643
|
* letting Amazon EKS specify it for you. For more information about the value
|
|
@@ -5646,7 +5646,7 @@ export interface UpdateAccessEntryRequest {
|
|
|
5646
5646
|
* access entries</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
5647
5647
|
* @public
|
|
5648
5648
|
*/
|
|
5649
|
-
username?: string;
|
|
5649
|
+
username?: string | undefined;
|
|
5650
5650
|
}
|
|
5651
5651
|
/**
|
|
5652
5652
|
* @public
|
|
@@ -5656,7 +5656,7 @@ export interface UpdateAccessEntryResponse {
|
|
|
5656
5656
|
* <p>The ARN of the IAM principal for the <code>AccessEntry</code>.</p>
|
|
5657
5657
|
* @public
|
|
5658
5658
|
*/
|
|
5659
|
-
accessEntry?: AccessEntry;
|
|
5659
|
+
accessEntry?: AccessEntry | undefined;
|
|
5660
5660
|
}
|
|
5661
5661
|
/**
|
|
5662
5662
|
* @public
|
|
@@ -5680,7 +5680,7 @@ export interface UpdateAddonRequest {
|
|
|
5680
5680
|
* </a>.</p>
|
|
5681
5681
|
* @public
|
|
5682
5682
|
*/
|
|
5683
|
-
addonVersion?: string;
|
|
5683
|
+
addonVersion?: string | undefined;
|
|
5684
5684
|
/**
|
|
5685
5685
|
* <p>The Amazon Resource Name (ARN) of an existing IAM role to bind to the add-on's service account. The role must be assigned the IAM permissions required by the add-on. If you don't specify an existing IAM role, then the add-on uses the
|
|
5686
5686
|
* permissions assigned to the node IAM role. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/create-node-role.html">Amazon EKS node IAM role</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
@@ -5692,7 +5692,7 @@ export interface UpdateAddonRequest {
|
|
|
5692
5692
|
* </note>
|
|
5693
5693
|
* @public
|
|
5694
5694
|
*/
|
|
5695
|
-
serviceAccountRoleArn?: string;
|
|
5695
|
+
serviceAccountRoleArn?: string | undefined;
|
|
5696
5696
|
/**
|
|
5697
5697
|
* <p>How to resolve field value conflicts for an Amazon EKS add-on if you've
|
|
5698
5698
|
* changed a value from the Amazon EKS default value. Conflicts are handled based
|
|
@@ -5719,26 +5719,26 @@ export interface UpdateAddonRequest {
|
|
|
5719
5719
|
* </ul>
|
|
5720
5720
|
* @public
|
|
5721
5721
|
*/
|
|
5722
|
-
resolveConflicts?: ResolveConflicts;
|
|
5722
|
+
resolveConflicts?: ResolveConflicts | undefined;
|
|
5723
5723
|
/**
|
|
5724
5724
|
* <p>A unique, case-sensitive identifier that you provide to ensure
|
|
5725
5725
|
* the idempotency of the request.</p>
|
|
5726
5726
|
* @public
|
|
5727
5727
|
*/
|
|
5728
|
-
clientRequestToken?: string;
|
|
5728
|
+
clientRequestToken?: string | undefined;
|
|
5729
5729
|
/**
|
|
5730
5730
|
* <p>The set of configuration values for the add-on that's created. The values that you
|
|
5731
5731
|
* provide are validated against the schema returned by
|
|
5732
5732
|
* <code>DescribeAddonConfiguration</code>.</p>
|
|
5733
5733
|
* @public
|
|
5734
5734
|
*/
|
|
5735
|
-
configurationValues?: string;
|
|
5735
|
+
configurationValues?: string | undefined;
|
|
5736
5736
|
/**
|
|
5737
5737
|
* <p>An array of Pod Identity Assocations to be updated. Each EKS Pod Identity association maps a Kubernetes service account to an IAM Role. If this value is left blank, no change. If an empty array is provided, existing Pod Identity Assocations owned by the Addon are deleted.</p>
|
|
5738
5738
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/add-ons-iam.html">Attach an IAM Role to an Amazon EKS add-on using Pod Identity</a> in the EKS User Guide.</p>
|
|
5739
5739
|
* @public
|
|
5740
5740
|
*/
|
|
5741
|
-
podIdentityAssociations?: AddonPodIdentityAssociations[];
|
|
5741
|
+
podIdentityAssociations?: AddonPodIdentityAssociations[] | undefined;
|
|
5742
5742
|
}
|
|
5743
5743
|
/**
|
|
5744
5744
|
* @public
|
|
@@ -5748,7 +5748,7 @@ export interface UpdateAddonResponse {
|
|
|
5748
5748
|
* <p>An object representing an asynchronous update.</p>
|
|
5749
5749
|
* @public
|
|
5750
5750
|
*/
|
|
5751
|
-
update?: Update;
|
|
5751
|
+
update?: Update | undefined;
|
|
5752
5752
|
}
|
|
5753
5753
|
/**
|
|
5754
5754
|
* <p>The access configuration information for the cluster.</p>
|
|
@@ -5759,7 +5759,7 @@ export interface UpdateAccessConfigRequest {
|
|
|
5759
5759
|
* <p>The desired authentication mode for the cluster.</p>
|
|
5760
5760
|
* @public
|
|
5761
5761
|
*/
|
|
5762
|
-
authenticationMode?: AuthenticationMode;
|
|
5762
|
+
authenticationMode?: AuthenticationMode | undefined;
|
|
5763
5763
|
}
|
|
5764
5764
|
/**
|
|
5765
5765
|
* @public
|
|
@@ -5775,7 +5775,7 @@ export interface UpdateClusterConfigRequest {
|
|
|
5775
5775
|
* cluster.</p>
|
|
5776
5776
|
* @public
|
|
5777
5777
|
*/
|
|
5778
|
-
resourcesVpcConfig?: VpcConfigRequest;
|
|
5778
|
+
resourcesVpcConfig?: VpcConfigRequest | undefined;
|
|
5779
5779
|
/**
|
|
5780
5780
|
* <p>Enable or disable exporting the Kubernetes control plane logs for your cluster to CloudWatch Logs. By default, cluster control plane logs aren't exported to CloudWatch Logs. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/control-plane-logs.html">Amazon EKS cluster control plane logs</a> in the
|
|
5781
5781
|
* <i>
|
|
@@ -5788,23 +5788,23 @@ export interface UpdateClusterConfigRequest {
|
|
|
5788
5788
|
* </note>
|
|
5789
5789
|
* @public
|
|
5790
5790
|
*/
|
|
5791
|
-
logging?: Logging;
|
|
5791
|
+
logging?: Logging | undefined;
|
|
5792
5792
|
/**
|
|
5793
5793
|
* <p>A unique, case-sensitive identifier that you provide to ensure
|
|
5794
5794
|
* the idempotency of the request.</p>
|
|
5795
5795
|
* @public
|
|
5796
5796
|
*/
|
|
5797
|
-
clientRequestToken?: string;
|
|
5797
|
+
clientRequestToken?: string | undefined;
|
|
5798
5798
|
/**
|
|
5799
5799
|
* <p>The access configuration for the cluster.</p>
|
|
5800
5800
|
* @public
|
|
5801
5801
|
*/
|
|
5802
|
-
accessConfig?: UpdateAccessConfigRequest;
|
|
5802
|
+
accessConfig?: UpdateAccessConfigRequest | undefined;
|
|
5803
5803
|
/**
|
|
5804
5804
|
* <p>You can enable or disable extended support for clusters currently on standard support. You cannot disable extended support once it starts. You must enable extended support before your cluster exits standard support.</p>
|
|
5805
5805
|
* @public
|
|
5806
5806
|
*/
|
|
5807
|
-
upgradePolicy?: UpgradePolicyRequest;
|
|
5807
|
+
upgradePolicy?: UpgradePolicyRequest | undefined;
|
|
5808
5808
|
/**
|
|
5809
5809
|
* <p>Enable or disable ARC zonal shift for the cluster. If zonal shift is enabled, Amazon Web Services
|
|
5810
5810
|
* configures zonal autoshift for the cluster.</p>
|
|
@@ -5824,7 +5824,7 @@ export interface UpdateClusterConfigRequest {
|
|
|
5824
5824
|
* </i>.</p>
|
|
5825
5825
|
* @public
|
|
5826
5826
|
*/
|
|
5827
|
-
zonalShiftConfig?: ZonalShiftConfigRequest;
|
|
5827
|
+
zonalShiftConfig?: ZonalShiftConfigRequest | undefined;
|
|
5828
5828
|
}
|
|
5829
5829
|
/**
|
|
5830
5830
|
* @public
|
|
@@ -5834,7 +5834,7 @@ export interface UpdateClusterConfigResponse {
|
|
|
5834
5834
|
* <p>An object representing an asynchronous update.</p>
|
|
5835
5835
|
* @public
|
|
5836
5836
|
*/
|
|
5837
|
-
update?: Update;
|
|
5837
|
+
update?: Update | undefined;
|
|
5838
5838
|
}
|
|
5839
5839
|
/**
|
|
5840
5840
|
* @public
|
|
@@ -5855,7 +5855,7 @@ export interface UpdateClusterVersionRequest {
|
|
|
5855
5855
|
* the idempotency of the request.</p>
|
|
5856
5856
|
* @public
|
|
5857
5857
|
*/
|
|
5858
|
-
clientRequestToken?: string;
|
|
5858
|
+
clientRequestToken?: string | undefined;
|
|
5859
5859
|
}
|
|
5860
5860
|
/**
|
|
5861
5861
|
* @public
|
|
@@ -5865,7 +5865,7 @@ export interface UpdateClusterVersionResponse {
|
|
|
5865
5865
|
* <p>The full description of the specified update</p>
|
|
5866
5866
|
* @public
|
|
5867
5867
|
*/
|
|
5868
|
-
update?: Update;
|
|
5868
|
+
update?: Update | undefined;
|
|
5869
5869
|
}
|
|
5870
5870
|
/**
|
|
5871
5871
|
* @public
|
|
@@ -5885,7 +5885,7 @@ export interface UpdateEksAnywhereSubscriptionRequest {
|
|
|
5885
5885
|
* <p>Unique, case-sensitive identifier to ensure the idempotency of the request.</p>
|
|
5886
5886
|
* @public
|
|
5887
5887
|
*/
|
|
5888
|
-
clientRequestToken?: string;
|
|
5888
|
+
clientRequestToken?: string | undefined;
|
|
5889
5889
|
}
|
|
5890
5890
|
/**
|
|
5891
5891
|
* @public
|
|
@@ -5895,7 +5895,7 @@ export interface UpdateEksAnywhereSubscriptionResponse {
|
|
|
5895
5895
|
* <p>The full description of the updated subscription.</p>
|
|
5896
5896
|
* @public
|
|
5897
5897
|
*/
|
|
5898
|
-
subscription?: EksAnywhereSubscription;
|
|
5898
|
+
subscription?: EksAnywhereSubscription | undefined;
|
|
5899
5899
|
}
|
|
5900
5900
|
/**
|
|
5901
5901
|
* <p>An object representing a Kubernetes <code>label</code> change for a managed node
|
|
@@ -5907,12 +5907,12 @@ export interface UpdateLabelsPayload {
|
|
|
5907
5907
|
* <p>The Kubernetes <code>labels</code> to add or update.</p>
|
|
5908
5908
|
* @public
|
|
5909
5909
|
*/
|
|
5910
|
-
addOrUpdateLabels?: Record<string, string
|
|
5910
|
+
addOrUpdateLabels?: Record<string, string> | undefined;
|
|
5911
5911
|
/**
|
|
5912
5912
|
* <p>The Kubernetes <code>labels</code> to remove.</p>
|
|
5913
5913
|
* @public
|
|
5914
5914
|
*/
|
|
5915
|
-
removeLabels?: string[];
|
|
5915
|
+
removeLabels?: string[] | undefined;
|
|
5916
5916
|
}
|
|
5917
5917
|
/**
|
|
5918
5918
|
* <p>An object representing the details of an update to a taints payload. For more
|
|
@@ -5925,12 +5925,12 @@ export interface UpdateTaintsPayload {
|
|
|
5925
5925
|
* <p>Kubernetes taints to be added or updated.</p>
|
|
5926
5926
|
* @public
|
|
5927
5927
|
*/
|
|
5928
|
-
addOrUpdateTaints?: Taint[];
|
|
5928
|
+
addOrUpdateTaints?: Taint[] | undefined;
|
|
5929
5929
|
/**
|
|
5930
5930
|
* <p>Kubernetes taints to remove.</p>
|
|
5931
5931
|
* @public
|
|
5932
5932
|
*/
|
|
5933
|
-
removeTaints?: Taint[];
|
|
5933
|
+
removeTaints?: Taint[] | undefined;
|
|
5934
5934
|
}
|
|
5935
5935
|
/**
|
|
5936
5936
|
* @public
|
|
@@ -5951,30 +5951,30 @@ export interface UpdateNodegroupConfigRequest {
|
|
|
5951
5951
|
* update.</p>
|
|
5952
5952
|
* @public
|
|
5953
5953
|
*/
|
|
5954
|
-
labels?: UpdateLabelsPayload;
|
|
5954
|
+
labels?: UpdateLabelsPayload | undefined;
|
|
5955
5955
|
/**
|
|
5956
5956
|
* <p>The Kubernetes taints to be applied to the nodes in the node group after the update. For
|
|
5957
5957
|
* more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html">Node taints on
|
|
5958
5958
|
* managed node groups</a>.</p>
|
|
5959
5959
|
* @public
|
|
5960
5960
|
*/
|
|
5961
|
-
taints?: UpdateTaintsPayload;
|
|
5961
|
+
taints?: UpdateTaintsPayload | undefined;
|
|
5962
5962
|
/**
|
|
5963
5963
|
* <p>The scaling configuration details for the Auto Scaling group after the update.</p>
|
|
5964
5964
|
* @public
|
|
5965
5965
|
*/
|
|
5966
|
-
scalingConfig?: NodegroupScalingConfig;
|
|
5966
|
+
scalingConfig?: NodegroupScalingConfig | undefined;
|
|
5967
5967
|
/**
|
|
5968
5968
|
* <p>The node group update configuration.</p>
|
|
5969
5969
|
* @public
|
|
5970
5970
|
*/
|
|
5971
|
-
updateConfig?: NodegroupUpdateConfig;
|
|
5971
|
+
updateConfig?: NodegroupUpdateConfig | undefined;
|
|
5972
5972
|
/**
|
|
5973
5973
|
* <p>A unique, case-sensitive identifier that you provide to ensure
|
|
5974
5974
|
* the idempotency of the request.</p>
|
|
5975
5975
|
* @public
|
|
5976
5976
|
*/
|
|
5977
|
-
clientRequestToken?: string;
|
|
5977
|
+
clientRequestToken?: string | undefined;
|
|
5978
5978
|
}
|
|
5979
5979
|
/**
|
|
5980
5980
|
* @public
|
|
@@ -5984,7 +5984,7 @@ export interface UpdateNodegroupConfigResponse {
|
|
|
5984
5984
|
* <p>An object representing an asynchronous update.</p>
|
|
5985
5985
|
* @public
|
|
5986
5986
|
*/
|
|
5987
|
-
update?: Update;
|
|
5987
|
+
update?: Update | undefined;
|
|
5988
5988
|
}
|
|
5989
5989
|
/**
|
|
5990
5990
|
* @public
|
|
@@ -6008,7 +6008,7 @@ export interface UpdateNodegroupVersionRequest {
|
|
|
6008
6008
|
* or the node group update will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Customizing managed nodes with launch templates</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
6009
6009
|
* @public
|
|
6010
6010
|
*/
|
|
6011
|
-
version?: string;
|
|
6011
|
+
version?: string | undefined;
|
|
6012
6012
|
/**
|
|
6013
6013
|
* <p>The AMI version of the Amazon EKS optimized AMI to use for the update. By
|
|
6014
6014
|
* default, the latest available AMI version for the node group's Kubernetes version is used.
|
|
@@ -6020,14 +6020,14 @@ export interface UpdateNodegroupVersionRequest {
|
|
|
6020
6020
|
* For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Customizing managed nodes with launch templates</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
6021
6021
|
* @public
|
|
6022
6022
|
*/
|
|
6023
|
-
releaseVersion?: string;
|
|
6023
|
+
releaseVersion?: string | undefined;
|
|
6024
6024
|
/**
|
|
6025
6025
|
* <p>An object representing a node group's launch template specification. You can only
|
|
6026
6026
|
* update a node group using a launch template if the node group was originally deployed
|
|
6027
6027
|
* with a launch template.</p>
|
|
6028
6028
|
* @public
|
|
6029
6029
|
*/
|
|
6030
|
-
launchTemplate?: LaunchTemplateSpecification;
|
|
6030
|
+
launchTemplate?: LaunchTemplateSpecification | undefined;
|
|
6031
6031
|
/**
|
|
6032
6032
|
* <p>Force the update if any <code>Pod</code> on the existing node group can't be drained
|
|
6033
6033
|
* due to a <code>Pod</code> disruption budget issue. If an update fails because all Pods
|
|
@@ -6035,13 +6035,13 @@ export interface UpdateNodegroupVersionRequest {
|
|
|
6035
6035
|
* whether or not any <code>Pod</code> is running on the node.</p>
|
|
6036
6036
|
* @public
|
|
6037
6037
|
*/
|
|
6038
|
-
force?: boolean;
|
|
6038
|
+
force?: boolean | undefined;
|
|
6039
6039
|
/**
|
|
6040
6040
|
* <p>A unique, case-sensitive identifier that you provide to ensure
|
|
6041
6041
|
* the idempotency of the request.</p>
|
|
6042
6042
|
* @public
|
|
6043
6043
|
*/
|
|
6044
|
-
clientRequestToken?: string;
|
|
6044
|
+
clientRequestToken?: string | undefined;
|
|
6045
6045
|
}
|
|
6046
6046
|
/**
|
|
6047
6047
|
* @public
|
|
@@ -6051,7 +6051,7 @@ export interface UpdateNodegroupVersionResponse {
|
|
|
6051
6051
|
* <p>An object representing an asynchronous update.</p>
|
|
6052
6052
|
* @public
|
|
6053
6053
|
*/
|
|
6054
|
-
update?: Update;
|
|
6054
|
+
update?: Update | undefined;
|
|
6055
6055
|
}
|
|
6056
6056
|
/**
|
|
6057
6057
|
* @public
|
|
@@ -6071,13 +6071,13 @@ export interface UpdatePodIdentityAssociationRequest {
|
|
|
6071
6071
|
* <p>The new IAM role to change the </p>
|
|
6072
6072
|
* @public
|
|
6073
6073
|
*/
|
|
6074
|
-
roleArn?: string;
|
|
6074
|
+
roleArn?: string | undefined;
|
|
6075
6075
|
/**
|
|
6076
6076
|
* <p>A unique, case-sensitive identifier that you provide to ensure
|
|
6077
6077
|
* the idempotency of the request.</p>
|
|
6078
6078
|
* @public
|
|
6079
6079
|
*/
|
|
6080
|
-
clientRequestToken?: string;
|
|
6080
|
+
clientRequestToken?: string | undefined;
|
|
6081
6081
|
}
|
|
6082
6082
|
/**
|
|
6083
6083
|
* @public
|
|
@@ -6087,5 +6087,5 @@ export interface UpdatePodIdentityAssociationResponse {
|
|
|
6087
6087
|
* <p>The full description of the EKS Pod Identity association that was updated.</p>
|
|
6088
6088
|
* @public
|
|
6089
6089
|
*/
|
|
6090
|
-
association?: PodIdentityAssociation;
|
|
6090
|
+
association?: PodIdentityAssociation | undefined;
|
|
6091
6091
|
}
|