@aws-sdk/client-eks 3.939.0 → 3.942.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.
Files changed (42) hide show
  1. package/README.md +40 -0
  2. package/dist-cjs/index.js +435 -68
  3. package/dist-es/EKS.js +10 -0
  4. package/dist-es/commands/CreateCapabilityCommand.js +16 -0
  5. package/dist-es/commands/DeleteCapabilityCommand.js +16 -0
  6. package/dist-es/commands/DescribeCapabilityCommand.js +16 -0
  7. package/dist-es/commands/ListCapabilitiesCommand.js +16 -0
  8. package/dist-es/commands/UpdateCapabilityCommand.js +16 -0
  9. package/dist-es/commands/index.js +5 -0
  10. package/dist-es/models/enums.js +30 -0
  11. package/dist-es/pagination/ListCapabilitiesPaginator.js +4 -0
  12. package/dist-es/pagination/index.js +1 -0
  13. package/dist-es/schemas/schemas_0.js +326 -68
  14. package/dist-types/EKS.d.ts +35 -0
  15. package/dist-types/EKSClient.d.ts +7 -2
  16. package/dist-types/commands/CreateCapabilityCommand.d.ts +186 -0
  17. package/dist-types/commands/DeleteCapabilityCommand.d.ts +147 -0
  18. package/dist-types/commands/DescribeCapabilityCommand.d.ts +143 -0
  19. package/dist-types/commands/DescribeUpdateCommand.d.ts +1 -0
  20. package/dist-types/commands/ListCapabilitiesCommand.d.ts +94 -0
  21. package/dist-types/commands/ListUpdatesCommand.d.ts +1 -0
  22. package/dist-types/commands/UpdateCapabilityCommand.d.ts +154 -0
  23. package/dist-types/commands/index.d.ts +5 -0
  24. package/dist-types/models/enums.d.ts +78 -0
  25. package/dist-types/models/models_0.d.ts +672 -1
  26. package/dist-types/pagination/ListCapabilitiesPaginator.d.ts +7 -0
  27. package/dist-types/pagination/index.d.ts +1 -0
  28. package/dist-types/schemas/schemas_0.d.ts +36 -0
  29. package/dist-types/ts3.4/EKS.d.ts +85 -0
  30. package/dist-types/ts3.4/EKSClient.d.ts +30 -0
  31. package/dist-types/ts3.4/commands/CreateCapabilityCommand.d.ts +50 -0
  32. package/dist-types/ts3.4/commands/DeleteCapabilityCommand.d.ts +50 -0
  33. package/dist-types/ts3.4/commands/DescribeCapabilityCommand.d.ts +51 -0
  34. package/dist-types/ts3.4/commands/ListCapabilitiesCommand.d.ts +50 -0
  35. package/dist-types/ts3.4/commands/UpdateCapabilityCommand.d.ts +50 -0
  36. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  37. package/dist-types/ts3.4/models/enums.d.ts +41 -0
  38. package/dist-types/ts3.4/models/models_0.d.ts +139 -0
  39. package/dist-types/ts3.4/pagination/ListCapabilitiesPaginator.d.ts +11 -0
  40. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  41. package/dist-types/ts3.4/schemas/schemas_0.d.ts +36 -0
  42. package/package.json +5 -5
@@ -1,4 +1,4 @@
1
- import { AccessScopeType, AddonIssueCode, AddonStatus, AMITypes, AuthenticationMode, CapacityTypes, Category, ClusterIssueCode, ClusterStatus, ClusterVersionStatus, ConfigStatus, ConnectorConfigProvider, EksAnywhereSubscriptionLicenseType, EksAnywhereSubscriptionStatus, EksAnywhereSubscriptionTermUnit, ErrorCode, FargateProfileIssueCode, FargateProfileStatus, InsightsRefreshStatus, InsightStatusValue, IpFamily, LogType, NodegroupIssueCode, NodegroupStatus, NodegroupUpdateStrategies, ProvisionedControlPlaneTier, RepairAction, ResolveConflicts, SupportType, TaintEffect, UpdateParamType, UpdateStatus, UpdateType, VersionStatus } from "./enums";
1
+ import { AccessScopeType, AddonIssueCode, AddonStatus, AMITypes, ArgoCdRole, AuthenticationMode, CapabilityDeletePropagationPolicy, CapabilityIssueCode, CapabilityStatus, CapabilityType, CapacityTypes, Category, ClusterIssueCode, ClusterStatus, ClusterVersionStatus, ConfigStatus, ConnectorConfigProvider, EksAnywhereSubscriptionLicenseType, EksAnywhereSubscriptionStatus, EksAnywhereSubscriptionTermUnit, ErrorCode, FargateProfileIssueCode, FargateProfileStatus, InsightsRefreshStatus, InsightStatusValue, IpFamily, LogType, NodegroupIssueCode, NodegroupStatus, NodegroupUpdateStrategies, ProvisionedControlPlaneTier, RepairAction, ResolveConflicts, SsoIdentityType, SupportType, TaintEffect, UpdateParamType, UpdateStatus, UpdateType, VersionStatus } from "./enums";
2
2
  /**
3
3
  * <p>The access configuration for the cluster.</p>
4
4
  * @public
@@ -443,6 +443,168 @@ export interface AddonPodIdentityConfiguration {
443
443
  */
444
444
  recommendedManagedPolicies?: string[] | undefined;
445
445
  }
446
+ /**
447
+ * <p>Configuration for integrating Argo CD with IAM Identity CenterIAM; Identity Center. This allows you to use your organization's identity provider for authentication to Argo CD.</p>
448
+ * @public
449
+ */
450
+ export interface ArgoCdAwsIdcConfigRequest {
451
+ /**
452
+ * <p>The Amazon Resource Name (ARN) of the IAM Identity CenterIAM; Identity Center instance to use for authentication.</p>
453
+ * @public
454
+ */
455
+ idcInstanceArn: string | undefined;
456
+ /**
457
+ * <p>The Region where your IAM Identity CenterIAM; Identity Center instance is located.</p>
458
+ * @public
459
+ */
460
+ idcRegion?: string | undefined;
461
+ }
462
+ /**
463
+ * <p>The response object containing IAM Identity CenterIAM; Identity Center configuration details for an Argo CD capability.</p>
464
+ * @public
465
+ */
466
+ export interface ArgoCdAwsIdcConfigResponse {
467
+ /**
468
+ * <p>The Amazon Resource Name (ARN) of the IAM Identity CenterIAM; Identity Center instance used for authentication.</p>
469
+ * @public
470
+ */
471
+ idcInstanceArn?: string | undefined;
472
+ /**
473
+ * <p>The Region where the IAM Identity CenterIAM; Identity Center instance is located.</p>
474
+ * @public
475
+ */
476
+ idcRegion?: string | undefined;
477
+ /**
478
+ * <p>The Amazon Resource Name (ARN) of the managed application created in IAM Identity CenterIAM; Identity Center for this Argo CD capability. This application is automatically created and managed by Amazon EKS.</p>
479
+ * @public
480
+ */
481
+ idcManagedApplicationArn?: string | undefined;
482
+ }
483
+ /**
484
+ * <p>Configuration for network access to the Argo CD capability's managed API server endpoint. When VPC endpoint IDs are specified, public access is blocked and the Argo CD server is only accessible through the specified VPC endpoints.</p>
485
+ * @public
486
+ */
487
+ export interface ArgoCdNetworkAccessConfigRequest {
488
+ /**
489
+ * <p>A list of VPC endpoint IDs to associate with the managed Argo CD API server endpoint. Each VPC endpoint provides private connectivity from a specific VPC to the Argo CD server. You can specify multiple VPC endpoint IDs to enable access from multiple VPCs.</p>
490
+ * @public
491
+ */
492
+ vpceIds?: string[] | undefined;
493
+ }
494
+ /**
495
+ * <p>An IAM Identity CenterIAM; Identity Center identity (user or group) that can be assigned permissions in a capability.</p>
496
+ * @public
497
+ */
498
+ export interface SsoIdentity {
499
+ /**
500
+ * <p>The unique identifier of the IAM Identity CenterIAM; Identity Center user or group.</p>
501
+ * @public
502
+ */
503
+ id: string | undefined;
504
+ /**
505
+ * <p>The type of identity. Valid values are <code>SSO_USER</code> or <code>SSO_GROUP</code>.</p>
506
+ * @public
507
+ */
508
+ type: SsoIdentityType | undefined;
509
+ }
510
+ /**
511
+ * <p>A mapping between an Argo CD role and IAM Identity CenterIAM; Identity Center identities. This defines which users or groups have specific permissions in Argo CD.</p>
512
+ * @public
513
+ */
514
+ export interface ArgoCdRoleMapping {
515
+ /**
516
+ * <p>The Argo CD role to assign. Valid values are:</p>
517
+ * <ul>
518
+ * <li>
519
+ * <p>
520
+ * <code>ADMIN</code> – Full administrative access to Argo CD.</p>
521
+ * </li>
522
+ * <li>
523
+ * <p>
524
+ * <code>EDITOR</code> – Edit access to Argo CD resources.</p>
525
+ * </li>
526
+ * <li>
527
+ * <p>
528
+ * <code>VIEWER</code> – Read-only access to Argo CD resources.</p>
529
+ * </li>
530
+ * </ul>
531
+ * @public
532
+ */
533
+ role: ArgoCdRole | undefined;
534
+ /**
535
+ * <p>A list of IAM Identity CenterIAM; Identity Center identities (users or groups) that should be assigned this Argo CD role.</p>
536
+ * @public
537
+ */
538
+ identities: SsoIdentity[] | undefined;
539
+ }
540
+ /**
541
+ * <p>Configuration settings for an Argo CD capability. This includes the Kubernetes namespace, IAM Identity CenterIAM; Identity Center integration, RBAC role mappings, and network access configuration.</p>
542
+ * @public
543
+ */
544
+ export interface ArgoCdConfigRequest {
545
+ /**
546
+ * <p>The Kubernetes namespace where Argo CD resources will be created. If not specified, the default namespace is used.</p>
547
+ * @public
548
+ */
549
+ namespace?: string | undefined;
550
+ /**
551
+ * <p>Configuration for IAM Identity CenterIAM; Identity Center integration. When configured, users can authenticate to Argo CD using their IAM Identity CenterIAM; Identity Center credentials.</p>
552
+ * @public
553
+ */
554
+ awsIdc: ArgoCdAwsIdcConfigRequest | undefined;
555
+ /**
556
+ * <p>A list of role mappings that define which IAM Identity CenterIAM; Identity Center users or groups have which Argo CD roles. Each mapping associates an Argo CD role (<code>ADMIN</code>, <code>EDITOR</code>, or <code>VIEWER</code>) with one or more IAM Identity CenterIAM; Identity Center identities.</p>
557
+ * @public
558
+ */
559
+ rbacRoleMappings?: ArgoCdRoleMapping[] | undefined;
560
+ /**
561
+ * <p>Configuration for network access to the Argo CD capability's managed API server endpoint. By default, the Argo CD server is accessible via a public endpoint. You can optionally specify one or more VPC endpoint IDs to enable private connectivity from your VPCs. When VPC endpoints are configured, public access is blocked and the Argo CD server is only accessible through the specified VPC endpoints.</p>
562
+ * @public
563
+ */
564
+ networkAccess?: ArgoCdNetworkAccessConfigRequest | undefined;
565
+ }
566
+ /**
567
+ * <p>The response object containing network access configuration for the Argo CD capability's managed API server endpoint. If VPC endpoint IDs are present, public access is blocked and the Argo CD server is only accessible through the specified VPC endpoints.</p>
568
+ * @public
569
+ */
570
+ export interface ArgoCdNetworkAccessConfigResponse {
571
+ /**
572
+ * <p>The list of VPC endpoint IDs associated with the managed Argo CD API server endpoint. Each VPC endpoint provides private connectivity from a specific VPC to the Argo CD server.</p>
573
+ * @public
574
+ */
575
+ vpceIds?: string[] | undefined;
576
+ }
577
+ /**
578
+ * <p>The response object containing Argo CD configuration details, including the server URL that you use to access the Argo CD web interface and API.</p>
579
+ * @public
580
+ */
581
+ export interface ArgoCdConfigResponse {
582
+ /**
583
+ * <p>The Kubernetes namespace where Argo CD resources are monitored by your Argo CD Capability.</p>
584
+ * @public
585
+ */
586
+ namespace?: string | undefined;
587
+ /**
588
+ * <p>The IAM Identity CenterIAM; Identity Center integration configuration.</p>
589
+ * @public
590
+ */
591
+ awsIdc?: ArgoCdAwsIdcConfigResponse | undefined;
592
+ /**
593
+ * <p>The list of role mappings that define which IAM Identity CenterIAM; Identity Center users or groups have which Argo CD roles.</p>
594
+ * @public
595
+ */
596
+ rbacRoleMappings?: ArgoCdRoleMapping[] | undefined;
597
+ /**
598
+ * <p>The network access configuration for the Argo CD capability's managed API server endpoint. If VPC endpoint IDs are specified, public access is blocked and the Argo CD server is only accessible through the specified VPC endpoints.</p>
599
+ * @public
600
+ */
601
+ networkAccess?: ArgoCdNetworkAccessConfigResponse | undefined;
602
+ /**
603
+ * <p>The URL of the Argo CD server. Use this URL to access the Argo CD web interface and API.</p>
604
+ * @public
605
+ */
606
+ serverUrl?: string | undefined;
607
+ }
446
608
  /**
447
609
  * @public
448
610
  */
@@ -1040,6 +1202,291 @@ export interface CreateAddonResponse {
1040
1202
  */
1041
1203
  addon?: Addon | undefined;
1042
1204
  }
1205
+ /**
1206
+ * <p>Configuration settings for a capability. The structure of this object varies depending on the capability type.</p>
1207
+ * @public
1208
+ */
1209
+ export interface CapabilityConfigurationRequest {
1210
+ /**
1211
+ * <p>Configuration settings specific to Argo CD capabilities. This field is only used when creating or updating an Argo CD capability.</p>
1212
+ * @public
1213
+ */
1214
+ argoCd?: ArgoCdConfigRequest | undefined;
1215
+ }
1216
+ /**
1217
+ * @public
1218
+ */
1219
+ export interface CreateCapabilityRequest {
1220
+ /**
1221
+ * <p>A unique name for the capability. The name must be unique within your cluster and can contain alphanumeric characters, hyphens, and underscores.</p>
1222
+ * @public
1223
+ */
1224
+ capabilityName: string | undefined;
1225
+ /**
1226
+ * <p>The name of the Amazon EKS cluster where you want to create the capability.</p>
1227
+ * @public
1228
+ */
1229
+ clusterName: string | undefined;
1230
+ /**
1231
+ * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This token is valid for 24 hours after creation. If you retry a request with the same client request token and the same parameters after the original request has completed successfully, the result of the original request is returned.</p>
1232
+ * @public
1233
+ */
1234
+ clientRequestToken?: string | undefined;
1235
+ /**
1236
+ * <p>The type of capability to create. Valid values are:</p>
1237
+ * <ul>
1238
+ * <li>
1239
+ * <p>
1240
+ * <code>ACK</code> – Amazon Web Services Controllers for Kubernetes (ACK), which lets you manage resources directly from Kubernetes.</p>
1241
+ * </li>
1242
+ * <li>
1243
+ * <p>
1244
+ * <code>ARGOCD</code> – Argo CD for GitOps-based continuous delivery.</p>
1245
+ * </li>
1246
+ * <li>
1247
+ * <p>
1248
+ * <code>KRO</code> – Kube Resource Orchestrator (KRO) for composing and managing custom Kubernetes resources.</p>
1249
+ * </li>
1250
+ * </ul>
1251
+ * @public
1252
+ */
1253
+ type: CapabilityType | undefined;
1254
+ /**
1255
+ * <p>The Amazon Resource Name (ARN) of the IAM role that the capability uses to interact with Amazon Web Services services. This role must have a trust policy that allows the EKS service principal to assume it, and it must have the necessary permissions for the capability type you're creating.</p>
1256
+ * <p>For ACK capabilities, the role needs permissions to manage the resources you want to control through Kubernetes. For Argo CD capabilities, the role needs permissions to access Git repositories and Secrets Manager. For KRO capabilities, the role needs permissions based on the resources you'll be orchestrating.</p>
1257
+ * @public
1258
+ */
1259
+ roleArn: string | undefined;
1260
+ /**
1261
+ * <p>The configuration settings for the capability. The structure of this object varies depending on the capability type. For Argo CD capabilities, you can configure IAM Identity CenterIAM; Identity Center integration, RBAC role mappings, and network access settings.</p>
1262
+ * @public
1263
+ */
1264
+ configuration?: CapabilityConfigurationRequest | undefined;
1265
+ /**
1266
+ * <p>The metadata that you apply to a resource to help you categorize and organize them.
1267
+ * Each tag consists of a key and an optional value. You define them.</p>
1268
+ * <p>The following basic restrictions apply to tags:</p>
1269
+ * <ul>
1270
+ * <li>
1271
+ * <p>Maximum number of tags per resource – 50</p>
1272
+ * </li>
1273
+ * <li>
1274
+ * <p>For each resource, each tag key must be unique, and each tag key can have only
1275
+ * one value.</p>
1276
+ * </li>
1277
+ * <li>
1278
+ * <p>Maximum key length – 128 Unicode characters in UTF-8</p>
1279
+ * </li>
1280
+ * <li>
1281
+ * <p>Maximum value length – 256 Unicode characters in UTF-8</p>
1282
+ * </li>
1283
+ * <li>
1284
+ * <p>If your tagging schema is used across multiple services and resources,
1285
+ * remember that other services may have restrictions on allowed characters.
1286
+ * Generally allowed characters are: letters, numbers, and spaces representable in
1287
+ * UTF-8, and the following characters: + - = . _ : / @.</p>
1288
+ * </li>
1289
+ * <li>
1290
+ * <p>Tag keys and values are case-sensitive.</p>
1291
+ * </li>
1292
+ * <li>
1293
+ * <p>Do not use <code>aws:</code>, <code>AWS:</code>, or any upper or lowercase
1294
+ * combination of such as a prefix for either keys or values as it is reserved for
1295
+ * Amazon Web Services use. You cannot edit or delete tag keys or values with this prefix. Tags with
1296
+ * this prefix do not count against your tags per resource limit.</p>
1297
+ * </li>
1298
+ * </ul>
1299
+ * @public
1300
+ */
1301
+ tags?: Record<string, string> | undefined;
1302
+ /**
1303
+ * <p>Specifies how Kubernetes resources managed by the capability should be handled when the capability is deleted. Currently, the only supported value is <code>RETAIN</code> which retains all Kubernetes resources managed by the capability when the capability is deleted.</p>
1304
+ * <p>Because resources are retained, all Kubernetes resources created by the capability should be deleted from the cluster before deleting the capability itself. After the capability is deleted, these resources become difficult to manage because the controller is no longer available.</p>
1305
+ * @public
1306
+ */
1307
+ deletePropagationPolicy: CapabilityDeletePropagationPolicy | undefined;
1308
+ }
1309
+ /**
1310
+ * <p>The response object containing capability configuration details.</p>
1311
+ * @public
1312
+ */
1313
+ export interface CapabilityConfigurationResponse {
1314
+ /**
1315
+ * <p>Configuration settings for an Argo CD capability, including the server URL and other Argo CD-specific settings.</p>
1316
+ * @public
1317
+ */
1318
+ argoCd?: ArgoCdConfigResponse | undefined;
1319
+ }
1320
+ /**
1321
+ * <p>An issue affecting a capability's health or operation.</p>
1322
+ * @public
1323
+ */
1324
+ export interface CapabilityIssue {
1325
+ /**
1326
+ * <p>A code identifying the type of issue. This can be used to programmatically handle specific issue types.</p>
1327
+ * @public
1328
+ */
1329
+ code?: CapabilityIssueCode | undefined;
1330
+ /**
1331
+ * <p>A human-readable message describing the issue and potential remediation steps.</p>
1332
+ * @public
1333
+ */
1334
+ message?: string | undefined;
1335
+ }
1336
+ /**
1337
+ * <p>Health information for a capability, including any issues that may be affecting its operation.</p>
1338
+ * @public
1339
+ */
1340
+ export interface CapabilityHealth {
1341
+ /**
1342
+ * <p>A list of issues affecting the capability. If this list is empty, the capability is healthy.</p>
1343
+ * @public
1344
+ */
1345
+ issues?: CapabilityIssue[] | undefined;
1346
+ }
1347
+ /**
1348
+ * <p>An object representing a managed capability in an Amazon EKS cluster. This includes all configuration, status, and health information for the capability.</p>
1349
+ * @public
1350
+ */
1351
+ export interface Capability {
1352
+ /**
1353
+ * <p>The unique name of the capability within the cluster.</p>
1354
+ * @public
1355
+ */
1356
+ capabilityName?: string | undefined;
1357
+ /**
1358
+ * <p>The Amazon Resource Name (ARN) of the capability.</p>
1359
+ * @public
1360
+ */
1361
+ arn?: string | undefined;
1362
+ /**
1363
+ * <p>The name of the Amazon EKS cluster that contains this capability.</p>
1364
+ * @public
1365
+ */
1366
+ clusterName?: string | undefined;
1367
+ /**
1368
+ * <p>The type of capability. Valid values are <code>ACK</code>, <code>ARGOCD</code>, or <code>KRO</code>.</p>
1369
+ * @public
1370
+ */
1371
+ type?: CapabilityType | undefined;
1372
+ /**
1373
+ * <p>The Amazon Resource Name (ARN) of the IAM role that the capability uses to interact with Amazon Web Services services.</p>
1374
+ * @public
1375
+ */
1376
+ roleArn?: string | undefined;
1377
+ /**
1378
+ * <p>The current status of the capability. Valid values include:</p>
1379
+ * <ul>
1380
+ * <li>
1381
+ * <p>
1382
+ * <code>CREATING</code> – The capability is being created.</p>
1383
+ * </li>
1384
+ * <li>
1385
+ * <p>
1386
+ * <code>ACTIVE</code> – The capability is running and available.</p>
1387
+ * </li>
1388
+ * <li>
1389
+ * <p>
1390
+ * <code>UPDATING</code> – The capability is being updated.</p>
1391
+ * </li>
1392
+ * <li>
1393
+ * <p>
1394
+ * <code>DELETING</code> – The capability is being deleted.</p>
1395
+ * </li>
1396
+ * <li>
1397
+ * <p>
1398
+ * <code>CREATE_FAILED</code> – The capability creation failed.</p>
1399
+ * </li>
1400
+ * <li>
1401
+ * <p>
1402
+ * <code>UPDATE_FAILED</code> – The capability update failed.</p>
1403
+ * </li>
1404
+ * <li>
1405
+ * <p>
1406
+ * <code>DELETE_FAILED</code> – The capability deletion failed.</p>
1407
+ * </li>
1408
+ * </ul>
1409
+ * @public
1410
+ */
1411
+ status?: CapabilityStatus | undefined;
1412
+ /**
1413
+ * <p>The version of the capability software that is currently running.</p>
1414
+ * @public
1415
+ */
1416
+ version?: string | undefined;
1417
+ /**
1418
+ * <p>The configuration settings for the capability. The structure varies depending on the capability type.</p>
1419
+ * @public
1420
+ */
1421
+ configuration?: CapabilityConfigurationResponse | undefined;
1422
+ /**
1423
+ * <p>The metadata that you apply to a resource to help you categorize and organize them.
1424
+ * Each tag consists of a key and an optional value. You define them.</p>
1425
+ * <p>The following basic restrictions apply to tags:</p>
1426
+ * <ul>
1427
+ * <li>
1428
+ * <p>Maximum number of tags per resource – 50</p>
1429
+ * </li>
1430
+ * <li>
1431
+ * <p>For each resource, each tag key must be unique, and each tag key can have only
1432
+ * one value.</p>
1433
+ * </li>
1434
+ * <li>
1435
+ * <p>Maximum key length – 128 Unicode characters in UTF-8</p>
1436
+ * </li>
1437
+ * <li>
1438
+ * <p>Maximum value length – 256 Unicode characters in UTF-8</p>
1439
+ * </li>
1440
+ * <li>
1441
+ * <p>If your tagging schema is used across multiple services and resources,
1442
+ * remember that other services may have restrictions on allowed characters.
1443
+ * Generally allowed characters are: letters, numbers, and spaces representable in
1444
+ * UTF-8, and the following characters: + - = . _ : / @.</p>
1445
+ * </li>
1446
+ * <li>
1447
+ * <p>Tag keys and values are case-sensitive.</p>
1448
+ * </li>
1449
+ * <li>
1450
+ * <p>Do not use <code>aws:</code>, <code>AWS:</code>, or any upper or lowercase
1451
+ * combination of such as a prefix for either keys or values as it is reserved for
1452
+ * Amazon Web Services use. You cannot edit or delete tag keys or values with this prefix. Tags with
1453
+ * this prefix do not count against your tags per resource limit.</p>
1454
+ * </li>
1455
+ * </ul>
1456
+ * @public
1457
+ */
1458
+ tags?: Record<string, string> | undefined;
1459
+ /**
1460
+ * <p>Health information for the capability, including any issues that may be affecting its operation.</p>
1461
+ * @public
1462
+ */
1463
+ health?: CapabilityHealth | undefined;
1464
+ /**
1465
+ * <p>The Unix epoch timestamp in seconds for when the capability was created.</p>
1466
+ * @public
1467
+ */
1468
+ createdAt?: Date | undefined;
1469
+ /**
1470
+ * <p>The Unix epoch timestamp in seconds for when the capability was last modified.</p>
1471
+ * @public
1472
+ */
1473
+ modifiedAt?: Date | undefined;
1474
+ /**
1475
+ * <p>The delete propagation policy for the capability. Currently, the only supported value is <code>RETAIN</code>, which keeps all resources managed by the capability when the capability is deleted.</p>
1476
+ * @public
1477
+ */
1478
+ deletePropagationPolicy?: CapabilityDeletePropagationPolicy | undefined;
1479
+ }
1480
+ /**
1481
+ * @public
1482
+ */
1483
+ export interface CreateCapabilityResponse {
1484
+ /**
1485
+ * <p>An object containing information about the newly created capability, including its name, ARN, status, and configuration.</p>
1486
+ * @public
1487
+ */
1488
+ capability?: Capability | undefined;
1489
+ }
1043
1490
  /**
1044
1491
  * <p>The access configuration information for the cluster.</p>
1045
1492
  * @public
@@ -3655,6 +4102,31 @@ export interface DeleteAddonResponse {
3655
4102
  */
3656
4103
  addon?: Addon | undefined;
3657
4104
  }
4105
+ /**
4106
+ * @public
4107
+ */
4108
+ export interface DeleteCapabilityRequest {
4109
+ /**
4110
+ * <p>The name of the Amazon EKS cluster that contains the capability you want to delete.</p>
4111
+ * @public
4112
+ */
4113
+ clusterName: string | undefined;
4114
+ /**
4115
+ * <p>The name of the capability to delete.</p>
4116
+ * @public
4117
+ */
4118
+ capabilityName: string | undefined;
4119
+ }
4120
+ /**
4121
+ * @public
4122
+ */
4123
+ export interface DeleteCapabilityResponse {
4124
+ /**
4125
+ * <p>An object containing information about the deleted capability, including its final status and configuration.</p>
4126
+ * @public
4127
+ */
4128
+ capability?: Capability | undefined;
4129
+ }
3658
4130
  /**
3659
4131
  * @public
3660
4132
  */
@@ -3971,6 +4443,31 @@ export interface DescribeAddonVersionsResponse {
3971
4443
  */
3972
4444
  nextToken?: string | undefined;
3973
4445
  }
4446
+ /**
4447
+ * @public
4448
+ */
4449
+ export interface DescribeCapabilityRequest {
4450
+ /**
4451
+ * <p>The name of the Amazon EKS cluster that contains the capability you want to describe.</p>
4452
+ * @public
4453
+ */
4454
+ clusterName: string | undefined;
4455
+ /**
4456
+ * <p>The name of the capability to describe.</p>
4457
+ * @public
4458
+ */
4459
+ capabilityName: string | undefined;
4460
+ }
4461
+ /**
4462
+ * @public
4463
+ */
4464
+ export interface DescribeCapabilityResponse {
4465
+ /**
4466
+ * <p>An object containing detailed information about the capability, including its name, ARN, type, status, version, configuration, health status, and timestamps for when it was created and last modified.</p>
4467
+ * @public
4468
+ */
4469
+ capability?: Capability | undefined;
4470
+ }
3974
4471
  /**
3975
4472
  * @public
3976
4473
  */
@@ -4612,6 +5109,11 @@ export interface DescribeUpdateRequest {
4612
5109
  * @public
4613
5110
  */
4614
5111
  addonName?: string | undefined;
5112
+ /**
5113
+ * <p>The name of the capability for which you want to describe updates.</p>
5114
+ * @public
5115
+ */
5116
+ capabilityName?: string | undefined;
4615
5117
  }
4616
5118
  /**
4617
5119
  * @public
@@ -4913,6 +5415,82 @@ export interface ListAssociatedAccessPoliciesResponse {
4913
5415
  */
4914
5416
  associatedAccessPolicies?: AssociatedAccessPolicy[] | undefined;
4915
5417
  }
5418
+ /**
5419
+ * @public
5420
+ */
5421
+ export interface ListCapabilitiesRequest {
5422
+ /**
5423
+ * <p>The name of the Amazon EKS cluster for which you want to list capabilities.</p>
5424
+ * @public
5425
+ */
5426
+ clusterName: string | undefined;
5427
+ /**
5428
+ * <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the <code>nextToken</code> value. This value is null when there are no more results to return.</p>
5429
+ * @public
5430
+ */
5431
+ nextToken?: string | undefined;
5432
+ /**
5433
+ * <p>The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned <code>nextToken</code> value. If you don't specify a value, the default is 100 results.</p>
5434
+ * @public
5435
+ */
5436
+ maxResults?: number | undefined;
5437
+ }
5438
+ /**
5439
+ * <p>A summary of a capability, containing basic information without the full configuration details. This is returned by the <code>ListCapabilities</code> operation.</p>
5440
+ * @public
5441
+ */
5442
+ export interface CapabilitySummary {
5443
+ /**
5444
+ * <p>The unique name of the capability within the cluster.</p>
5445
+ * @public
5446
+ */
5447
+ capabilityName?: string | undefined;
5448
+ /**
5449
+ * <p>The Amazon Resource Name (ARN) of the capability.</p>
5450
+ * @public
5451
+ */
5452
+ arn?: string | undefined;
5453
+ /**
5454
+ * <p>The type of capability. Valid values are <code>ACK</code>, <code>ARGOCD</code>, or <code>KRO</code>.</p>
5455
+ * @public
5456
+ */
5457
+ type?: CapabilityType | undefined;
5458
+ /**
5459
+ * <p>The current status of the capability.</p>
5460
+ * @public
5461
+ */
5462
+ status?: CapabilityStatus | undefined;
5463
+ /**
5464
+ * <p>The version of the capability software that is currently running.</p>
5465
+ * @public
5466
+ */
5467
+ version?: string | undefined;
5468
+ /**
5469
+ * <p>The Unix epoch timestamp in seconds for when the capability was created.</p>
5470
+ * @public
5471
+ */
5472
+ createdAt?: Date | undefined;
5473
+ /**
5474
+ * <p>The Unix epoch timestamp in seconds for when the capability was last modified.</p>
5475
+ * @public
5476
+ */
5477
+ modifiedAt?: Date | undefined;
5478
+ }
5479
+ /**
5480
+ * @public
5481
+ */
5482
+ export interface ListCapabilitiesResponse {
5483
+ /**
5484
+ * <p>A list of capability summary objects, each containing basic information about a capability including its name, ARN, type, status, version, and timestamps.</p>
5485
+ * @public
5486
+ */
5487
+ capabilities?: CapabilitySummary[] | undefined;
5488
+ /**
5489
+ * <p>The <code>nextToken</code> value to include in a future <code>ListCapabilities</code> request. When the results of a <code>ListCapabilities</code> request exceed <code>maxResults</code>, you can use this value to retrieve the next page of results. This value is null when there are no more results to return.</p>
5490
+ * @public
5491
+ */
5492
+ nextToken?: string | undefined;
5493
+ }
4916
5494
  /**
4917
5495
  * @public
4918
5496
  */
@@ -5508,6 +6086,11 @@ export interface ListUpdatesRequest {
5508
6086
  * @public
5509
6087
  */
5510
6088
  addonName?: string | undefined;
6089
+ /**
6090
+ * <p>The name of the capability for which you want to list updates.</p>
6091
+ * @public
6092
+ */
6093
+ capabilityName?: string | undefined;
5511
6094
  /**
5512
6095
  * <p>The <code>nextToken</code> value returned from a previous paginated request, where <code>maxResults</code> was used and
5513
6096
  * the results exceeded the value of that parameter. Pagination continues from the end of
@@ -5832,6 +6415,94 @@ export interface UpdateAddonResponse {
5832
6415
  */
5833
6416
  update?: Update | undefined;
5834
6417
  }
6418
+ /**
6419
+ * <p>Updates to RBAC role mappings for an Argo CD capability. You can add, update, or remove role mappings in a single operation.</p>
6420
+ * @public
6421
+ */
6422
+ export interface UpdateRoleMappings {
6423
+ /**
6424
+ * <p>A list of role mappings to add or update. If a mapping for the specified role already exists, it will be updated with the new identities. If it doesn't exist, a new mapping will be created.</p>
6425
+ * @public
6426
+ */
6427
+ addOrUpdateRoleMappings?: ArgoCdRoleMapping[] | undefined;
6428
+ /**
6429
+ * <p>A list of role mappings to remove from the RBAC configuration. Each mapping specifies an Argo CD role (<code>ADMIN</code>, <code>EDITOR</code>, or <code>VIEWER</code>) and the identities to remove from that role.</p>
6430
+ * @public
6431
+ */
6432
+ removeRoleMappings?: ArgoCdRoleMapping[] | undefined;
6433
+ }
6434
+ /**
6435
+ * <p>Configuration updates for an Argo CD capability. You only need to specify the fields you want to update.</p>
6436
+ * @public
6437
+ */
6438
+ export interface UpdateArgoCdConfig {
6439
+ /**
6440
+ * <p>Updated RBAC role mappings for the Argo CD capability. You can add, update, or remove role mappings.</p>
6441
+ * @public
6442
+ */
6443
+ rbacRoleMappings?: UpdateRoleMappings | undefined;
6444
+ /**
6445
+ * <p>Updated network access configuration for the Argo CD capability's managed API server endpoint. You can add or remove VPC endpoint associations to control which VPCs have private access to the Argo CD server.</p>
6446
+ * @public
6447
+ */
6448
+ networkAccess?: ArgoCdNetworkAccessConfigRequest | undefined;
6449
+ }
6450
+ /**
6451
+ * <p>Configuration updates for a capability. The structure varies depending on the capability type.</p>
6452
+ * @public
6453
+ */
6454
+ export interface UpdateCapabilityConfiguration {
6455
+ /**
6456
+ * <p>Configuration updates specific to Argo CD capabilities.</p>
6457
+ * @public
6458
+ */
6459
+ argoCd?: UpdateArgoCdConfig | undefined;
6460
+ }
6461
+ /**
6462
+ * @public
6463
+ */
6464
+ export interface UpdateCapabilityRequest {
6465
+ /**
6466
+ * <p>The name of the Amazon EKS cluster that contains the capability you want to update configuration for.</p>
6467
+ * @public
6468
+ */
6469
+ clusterName: string | undefined;
6470
+ /**
6471
+ * <p>The name of the capability to update configuration for.</p>
6472
+ * @public
6473
+ */
6474
+ capabilityName: string | undefined;
6475
+ /**
6476
+ * <p>The Amazon Resource Name (ARN) of the IAM role that the capability uses to interact with Amazon Web Services services. If you specify a new role ARN, the capability will start using the new role for all subsequent operations.</p>
6477
+ * @public
6478
+ */
6479
+ roleArn?: string | undefined;
6480
+ /**
6481
+ * <p>The updated configuration settings for the capability. You only need to specify the configuration parameters you want to change. For Argo CD capabilities, you can update RBAC role mappings and network access settings.</p>
6482
+ * @public
6483
+ */
6484
+ configuration?: UpdateCapabilityConfiguration | undefined;
6485
+ /**
6486
+ * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This token is valid for 24 hours after creation.</p>
6487
+ * @public
6488
+ */
6489
+ clientRequestToken?: string | undefined;
6490
+ /**
6491
+ * <p>The updated delete propagation policy for the capability. Currently, the only supported value is <code>RETAIN</code>.</p>
6492
+ * @public
6493
+ */
6494
+ deletePropagationPolicy?: CapabilityDeletePropagationPolicy | undefined;
6495
+ }
6496
+ /**
6497
+ * @public
6498
+ */
6499
+ export interface UpdateCapabilityResponse {
6500
+ /**
6501
+ * <p>An object representing an asynchronous update.</p>
6502
+ * @public
6503
+ */
6504
+ update?: Update | undefined;
6505
+ }
5835
6506
  /**
5836
6507
  * <p>The access configuration information for the cluster.</p>
5837
6508
  * @public