@aws-sdk/client-eks 3.325.0 → 3.326.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 (36) hide show
  1. package/dist-types/commands/AssociateEncryptionConfigCommand.d.ts +26 -0
  2. package/dist-types/commands/AssociateIdentityProviderConfigCommand.d.ts +29 -0
  3. package/dist-types/commands/CreateAddonCommand.d.ts +36 -0
  4. package/dist-types/commands/CreateClusterCommand.d.ts +91 -0
  5. package/dist-types/commands/CreateFargateProfileCommand.d.ts +27 -0
  6. package/dist-types/commands/CreateNodegroupCommand.d.ts +75 -0
  7. package/dist-types/commands/DeleteAddonCommand.d.ts +36 -0
  8. package/dist-types/commands/DeleteClusterCommand.d.ts +91 -0
  9. package/dist-types/commands/DeleteFargateProfileCommand.d.ts +27 -0
  10. package/dist-types/commands/DeleteNodegroupCommand.d.ts +75 -0
  11. package/dist-types/commands/DeregisterClusterCommand.d.ts +91 -0
  12. package/dist-types/commands/DescribeAddonCommand.d.ts +36 -0
  13. package/dist-types/commands/DescribeAddonConfigurationCommand.d.ts +8 -0
  14. package/dist-types/commands/DescribeAddonVersionsCommand.d.ts +36 -0
  15. package/dist-types/commands/DescribeClusterCommand.d.ts +91 -0
  16. package/dist-types/commands/DescribeFargateProfileCommand.d.ts +27 -0
  17. package/dist-types/commands/DescribeIdentityProviderConfigCommand.d.ts +25 -0
  18. package/dist-types/commands/DescribeNodegroupCommand.d.ts +75 -0
  19. package/dist-types/commands/DescribeUpdateCommand.d.ts +26 -0
  20. package/dist-types/commands/DisassociateIdentityProviderConfigCommand.d.ts +26 -0
  21. package/dist-types/commands/ListAddonsCommand.d.ts +9 -0
  22. package/dist-types/commands/ListClustersCommand.d.ts +9 -0
  23. package/dist-types/commands/ListFargateProfilesCommand.d.ts +9 -0
  24. package/dist-types/commands/ListIdentityProviderConfigsCommand.d.ts +12 -0
  25. package/dist-types/commands/ListNodegroupsCommand.d.ts +9 -0
  26. package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
  27. package/dist-types/commands/ListUpdatesCommand.d.ts +9 -0
  28. package/dist-types/commands/RegisterClusterCommand.d.ts +91 -0
  29. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  30. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  31. package/dist-types/commands/UpdateAddonCommand.d.ts +26 -0
  32. package/dist-types/commands/UpdateClusterConfigCommand.d.ts +26 -0
  33. package/dist-types/commands/UpdateClusterVersionCommand.d.ts +26 -0
  34. package/dist-types/commands/UpdateNodegroupConfigCommand.d.ts +26 -0
  35. package/dist-types/commands/UpdateNodegroupVersionCommand.d.ts +26 -0
  36. package/package.json +3 -3
@@ -32,6 +32,95 @@ export interface DeregisterClusterCommandOutput extends DeregisterClusterRespons
32
32
  * };
33
33
  * const command = new DeregisterClusterCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DeregisterClusterResponse
36
+ * // cluster: { // Cluster
37
+ * // name: "STRING_VALUE",
38
+ * // arn: "STRING_VALUE",
39
+ * // createdAt: new Date("TIMESTAMP"),
40
+ * // version: "STRING_VALUE",
41
+ * // endpoint: "STRING_VALUE",
42
+ * // roleArn: "STRING_VALUE",
43
+ * // resourcesVpcConfig: { // VpcConfigResponse
44
+ * // subnetIds: [ // StringList
45
+ * // "STRING_VALUE",
46
+ * // ],
47
+ * // securityGroupIds: [
48
+ * // "STRING_VALUE",
49
+ * // ],
50
+ * // clusterSecurityGroupId: "STRING_VALUE",
51
+ * // vpcId: "STRING_VALUE",
52
+ * // endpointPublicAccess: true || false,
53
+ * // endpointPrivateAccess: true || false,
54
+ * // publicAccessCidrs: [
55
+ * // "STRING_VALUE",
56
+ * // ],
57
+ * // },
58
+ * // kubernetesNetworkConfig: { // KubernetesNetworkConfigResponse
59
+ * // serviceIpv4Cidr: "STRING_VALUE",
60
+ * // serviceIpv6Cidr: "STRING_VALUE",
61
+ * // ipFamily: "ipv4" || "ipv6",
62
+ * // },
63
+ * // logging: { // Logging
64
+ * // clusterLogging: [ // LogSetups
65
+ * // { // LogSetup
66
+ * // types: [ // LogTypes
67
+ * // "api" || "audit" || "authenticator" || "controllerManager" || "scheduler",
68
+ * // ],
69
+ * // enabled: true || false,
70
+ * // },
71
+ * // ],
72
+ * // },
73
+ * // identity: { // Identity
74
+ * // oidc: { // OIDC
75
+ * // issuer: "STRING_VALUE",
76
+ * // },
77
+ * // },
78
+ * // status: "CREATING" || "ACTIVE" || "DELETING" || "FAILED" || "UPDATING" || "PENDING",
79
+ * // certificateAuthority: { // Certificate
80
+ * // data: "STRING_VALUE",
81
+ * // },
82
+ * // clientRequestToken: "STRING_VALUE",
83
+ * // platformVersion: "STRING_VALUE",
84
+ * // tags: { // TagMap
85
+ * // "<keys>": "STRING_VALUE",
86
+ * // },
87
+ * // encryptionConfig: [ // EncryptionConfigList
88
+ * // { // EncryptionConfig
89
+ * // resources: [
90
+ * // "STRING_VALUE",
91
+ * // ],
92
+ * // provider: { // Provider
93
+ * // keyArn: "STRING_VALUE",
94
+ * // },
95
+ * // },
96
+ * // ],
97
+ * // connectorConfig: { // ConnectorConfigResponse
98
+ * // activationId: "STRING_VALUE",
99
+ * // activationCode: "STRING_VALUE",
100
+ * // activationExpiry: new Date("TIMESTAMP"),
101
+ * // provider: "STRING_VALUE",
102
+ * // roleArn: "STRING_VALUE",
103
+ * // },
104
+ * // id: "STRING_VALUE",
105
+ * // health: { // ClusterHealth
106
+ * // issues: [ // ClusterIssueList
107
+ * // { // ClusterIssue
108
+ * // code: "AccessDenied" || "ClusterUnreachable" || "ConfigurationConflict" || "InternalFailure" || "ResourceLimitExceeded" || "ResourceNotFound",
109
+ * // message: "STRING_VALUE",
110
+ * // resourceIds: "<StringList>",
111
+ * // },
112
+ * // ],
113
+ * // },
114
+ * // outpostConfig: { // OutpostConfigResponse
115
+ * // outpostArns: "<StringList>", // required
116
+ * // controlPlaneInstanceType: "STRING_VALUE", // required
117
+ * // controlPlanePlacement: { // ControlPlanePlacementResponse
118
+ * // groupName: "STRING_VALUE",
119
+ * // },
120
+ * // },
121
+ * // },
122
+ * // };
123
+ *
35
124
  * ```
36
125
  *
37
126
  * @param DeregisterClusterCommandInput - {@link DeregisterClusterCommandInput}
@@ -66,6 +155,8 @@ export interface DeregisterClusterCommandOutput extends DeregisterClusterRespons
66
155
  * @throws {@link ServiceUnavailableException} (server fault)
67
156
  * <p>The service is unavailable. Back off and retry the operation.</p>
68
157
  *
158
+ * @throws {@link EKSServiceException}
159
+ * <p>Base exception class for all service exceptions from EKS service.</p>
69
160
  *
70
161
  */
71
162
  export declare class DeregisterClusterCommand extends $Command<DeregisterClusterCommandInput, DeregisterClusterCommandOutput, EKSClientResolvedConfig> {
@@ -32,6 +32,40 @@ export interface DescribeAddonCommandOutput extends DescribeAddonResponse, __Met
32
32
  * };
33
33
  * const command = new DescribeAddonCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DescribeAddonResponse
36
+ * // addon: { // Addon
37
+ * // addonName: "STRING_VALUE",
38
+ * // clusterName: "STRING_VALUE",
39
+ * // status: "CREATING" || "ACTIVE" || "CREATE_FAILED" || "UPDATING" || "DELETING" || "DELETE_FAILED" || "DEGRADED" || "UPDATE_FAILED",
40
+ * // addonVersion: "STRING_VALUE",
41
+ * // health: { // AddonHealth
42
+ * // issues: [ // AddonIssueList
43
+ * // { // AddonIssue
44
+ * // code: "AccessDenied" || "InternalFailure" || "ClusterUnreachable" || "InsufficientNumberOfReplicas" || "ConfigurationConflict" || "AdmissionRequestDenied" || "UnsupportedAddonModification" || "K8sResourceNotFound",
45
+ * // message: "STRING_VALUE",
46
+ * // resourceIds: [ // StringList
47
+ * // "STRING_VALUE",
48
+ * // ],
49
+ * // },
50
+ * // ],
51
+ * // },
52
+ * // addonArn: "STRING_VALUE",
53
+ * // createdAt: new Date("TIMESTAMP"),
54
+ * // modifiedAt: new Date("TIMESTAMP"),
55
+ * // serviceAccountRoleArn: "STRING_VALUE",
56
+ * // tags: { // TagMap
57
+ * // "<keys>": "STRING_VALUE",
58
+ * // },
59
+ * // publisher: "STRING_VALUE",
60
+ * // owner: "STRING_VALUE",
61
+ * // marketplaceInformation: { // MarketplaceInformation
62
+ * // productId: "STRING_VALUE",
63
+ * // productUrl: "STRING_VALUE",
64
+ * // },
65
+ * // configurationValues: "STRING_VALUE",
66
+ * // },
67
+ * // };
68
+ *
35
69
  * ```
36
70
  *
37
71
  * @param DescribeAddonCommandInput - {@link DescribeAddonCommandInput}
@@ -62,6 +96,8 @@ export interface DescribeAddonCommandOutput extends DescribeAddonResponse, __Met
62
96
  * @throws {@link ServerException} (server fault)
63
97
  * <p>These errors are usually caused by a server-side issue.</p>
64
98
  *
99
+ * @throws {@link EKSServiceException}
100
+ * <p>Base exception class for all service exceptions from EKS service.</p>
65
101
  *
66
102
  */
67
103
  export declare class DescribeAddonCommand extends $Command<DescribeAddonCommandInput, DescribeAddonCommandOutput, EKSClientResolvedConfig> {
@@ -32,6 +32,12 @@ export interface DescribeAddonConfigurationCommandOutput extends DescribeAddonCo
32
32
  * };
33
33
  * const command = new DescribeAddonConfigurationCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DescribeAddonConfigurationResponse
36
+ * // addonName: "STRING_VALUE",
37
+ * // addonVersion: "STRING_VALUE",
38
+ * // configurationSchema: "STRING_VALUE",
39
+ * // };
40
+ *
35
41
  * ```
36
42
  *
37
43
  * @param DescribeAddonConfigurationCommandInput - {@link DescribeAddonConfigurationCommandInput}
@@ -53,6 +59,8 @@ export interface DescribeAddonConfigurationCommandOutput extends DescribeAddonCo
53
59
  * @throws {@link ServerException} (server fault)
54
60
  * <p>These errors are usually caused by a server-side issue.</p>
55
61
  *
62
+ * @throws {@link EKSServiceException}
63
+ * <p>Base exception class for all service exceptions from EKS service.</p>
56
64
  *
57
65
  */
58
66
  export declare class DescribeAddonConfigurationCommand extends $Command<DescribeAddonConfigurationCommandInput, DescribeAddonConfigurationCommandOutput, EKSClientResolvedConfig> {
@@ -45,6 +45,40 @@ export interface DescribeAddonVersionsCommandOutput extends DescribeAddonVersion
45
45
  * };
46
46
  * const command = new DescribeAddonVersionsCommand(input);
47
47
  * const response = await client.send(command);
48
+ * // { // DescribeAddonVersionsResponse
49
+ * // addons: [ // Addons
50
+ * // { // AddonInfo
51
+ * // addonName: "STRING_VALUE",
52
+ * // type: "STRING_VALUE",
53
+ * // addonVersions: [ // AddonVersionInfoList
54
+ * // { // AddonVersionInfo
55
+ * // addonVersion: "STRING_VALUE",
56
+ * // architecture: [ // StringList
57
+ * // "STRING_VALUE",
58
+ * // ],
59
+ * // compatibilities: [ // Compatibilities
60
+ * // { // Compatibility
61
+ * // clusterVersion: "STRING_VALUE",
62
+ * // platformVersions: [
63
+ * // "STRING_VALUE",
64
+ * // ],
65
+ * // defaultVersion: true || false,
66
+ * // },
67
+ * // ],
68
+ * // requiresConfiguration: true || false,
69
+ * // },
70
+ * // ],
71
+ * // publisher: "STRING_VALUE",
72
+ * // owner: "STRING_VALUE",
73
+ * // marketplaceInformation: { // MarketplaceInformation
74
+ * // productId: "STRING_VALUE",
75
+ * // productUrl: "STRING_VALUE",
76
+ * // },
77
+ * // },
78
+ * // ],
79
+ * // nextToken: "STRING_VALUE",
80
+ * // };
81
+ *
48
82
  * ```
49
83
  *
50
84
  * @param DescribeAddonVersionsCommandInput - {@link DescribeAddonVersionsCommandInput}
@@ -66,6 +100,8 @@ export interface DescribeAddonVersionsCommandOutput extends DescribeAddonVersion
66
100
  * @throws {@link ServerException} (server fault)
67
101
  * <p>These errors are usually caused by a server-side issue.</p>
68
102
  *
103
+ * @throws {@link EKSServiceException}
104
+ * <p>Base exception class for all service exceptions from EKS service.</p>
69
105
  *
70
106
  */
71
107
  export declare class DescribeAddonVersionsCommand extends $Command<DescribeAddonVersionsCommandInput, DescribeAddonVersionsCommandOutput, EKSClientResolvedConfig> {
@@ -39,6 +39,95 @@ export interface DescribeClusterCommandOutput extends DescribeClusterResponse, _
39
39
  * };
40
40
  * const command = new DescribeClusterCommand(input);
41
41
  * const response = await client.send(command);
42
+ * // { // DescribeClusterResponse
43
+ * // cluster: { // Cluster
44
+ * // name: "STRING_VALUE",
45
+ * // arn: "STRING_VALUE",
46
+ * // createdAt: new Date("TIMESTAMP"),
47
+ * // version: "STRING_VALUE",
48
+ * // endpoint: "STRING_VALUE",
49
+ * // roleArn: "STRING_VALUE",
50
+ * // resourcesVpcConfig: { // VpcConfigResponse
51
+ * // subnetIds: [ // StringList
52
+ * // "STRING_VALUE",
53
+ * // ],
54
+ * // securityGroupIds: [
55
+ * // "STRING_VALUE",
56
+ * // ],
57
+ * // clusterSecurityGroupId: "STRING_VALUE",
58
+ * // vpcId: "STRING_VALUE",
59
+ * // endpointPublicAccess: true || false,
60
+ * // endpointPrivateAccess: true || false,
61
+ * // publicAccessCidrs: [
62
+ * // "STRING_VALUE",
63
+ * // ],
64
+ * // },
65
+ * // kubernetesNetworkConfig: { // KubernetesNetworkConfigResponse
66
+ * // serviceIpv4Cidr: "STRING_VALUE",
67
+ * // serviceIpv6Cidr: "STRING_VALUE",
68
+ * // ipFamily: "ipv4" || "ipv6",
69
+ * // },
70
+ * // logging: { // Logging
71
+ * // clusterLogging: [ // LogSetups
72
+ * // { // LogSetup
73
+ * // types: [ // LogTypes
74
+ * // "api" || "audit" || "authenticator" || "controllerManager" || "scheduler",
75
+ * // ],
76
+ * // enabled: true || false,
77
+ * // },
78
+ * // ],
79
+ * // },
80
+ * // identity: { // Identity
81
+ * // oidc: { // OIDC
82
+ * // issuer: "STRING_VALUE",
83
+ * // },
84
+ * // },
85
+ * // status: "CREATING" || "ACTIVE" || "DELETING" || "FAILED" || "UPDATING" || "PENDING",
86
+ * // certificateAuthority: { // Certificate
87
+ * // data: "STRING_VALUE",
88
+ * // },
89
+ * // clientRequestToken: "STRING_VALUE",
90
+ * // platformVersion: "STRING_VALUE",
91
+ * // tags: { // TagMap
92
+ * // "<keys>": "STRING_VALUE",
93
+ * // },
94
+ * // encryptionConfig: [ // EncryptionConfigList
95
+ * // { // EncryptionConfig
96
+ * // resources: [
97
+ * // "STRING_VALUE",
98
+ * // ],
99
+ * // provider: { // Provider
100
+ * // keyArn: "STRING_VALUE",
101
+ * // },
102
+ * // },
103
+ * // ],
104
+ * // connectorConfig: { // ConnectorConfigResponse
105
+ * // activationId: "STRING_VALUE",
106
+ * // activationCode: "STRING_VALUE",
107
+ * // activationExpiry: new Date("TIMESTAMP"),
108
+ * // provider: "STRING_VALUE",
109
+ * // roleArn: "STRING_VALUE",
110
+ * // },
111
+ * // id: "STRING_VALUE",
112
+ * // health: { // ClusterHealth
113
+ * // issues: [ // ClusterIssueList
114
+ * // { // ClusterIssue
115
+ * // code: "AccessDenied" || "ClusterUnreachable" || "ConfigurationConflict" || "InternalFailure" || "ResourceLimitExceeded" || "ResourceNotFound",
116
+ * // message: "STRING_VALUE",
117
+ * // resourceIds: "<StringList>",
118
+ * // },
119
+ * // ],
120
+ * // },
121
+ * // outpostConfig: { // OutpostConfigResponse
122
+ * // outpostArns: "<StringList>", // required
123
+ * // controlPlaneInstanceType: "STRING_VALUE", // required
124
+ * // controlPlanePlacement: { // ControlPlanePlacementResponse
125
+ * // groupName: "STRING_VALUE",
126
+ * // },
127
+ * // },
128
+ * // },
129
+ * // };
130
+ *
42
131
  * ```
43
132
  *
44
133
  * @param DescribeClusterCommandInput - {@link DescribeClusterCommandInput}
@@ -64,6 +153,8 @@ export interface DescribeClusterCommandOutput extends DescribeClusterResponse, _
64
153
  * @throws {@link ServiceUnavailableException} (server fault)
65
154
  * <p>The service is unavailable. Back off and retry the operation.</p>
66
155
  *
156
+ * @throws {@link EKSServiceException}
157
+ * <p>Base exception class for all service exceptions from EKS service.</p>
67
158
  *
68
159
  * @example To describe a cluster
69
160
  * ```javascript
@@ -32,6 +32,31 @@ export interface DescribeFargateProfileCommandOutput extends DescribeFargateProf
32
32
  * };
33
33
  * const command = new DescribeFargateProfileCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DescribeFargateProfileResponse
36
+ * // fargateProfile: { // FargateProfile
37
+ * // fargateProfileName: "STRING_VALUE",
38
+ * // fargateProfileArn: "STRING_VALUE",
39
+ * // clusterName: "STRING_VALUE",
40
+ * // createdAt: new Date("TIMESTAMP"),
41
+ * // podExecutionRoleArn: "STRING_VALUE",
42
+ * // subnets: [ // StringList
43
+ * // "STRING_VALUE",
44
+ * // ],
45
+ * // selectors: [ // FargateProfileSelectors
46
+ * // { // FargateProfileSelector
47
+ * // namespace: "STRING_VALUE",
48
+ * // labels: { // FargateProfileLabel
49
+ * // "<keys>": "STRING_VALUE",
50
+ * // },
51
+ * // },
52
+ * // ],
53
+ * // status: "CREATING" || "ACTIVE" || "DELETING" || "CREATE_FAILED" || "DELETE_FAILED",
54
+ * // tags: { // TagMap
55
+ * // "<keys>": "STRING_VALUE",
56
+ * // },
57
+ * // },
58
+ * // };
59
+ *
35
60
  * ```
36
61
  *
37
62
  * @param DescribeFargateProfileCommandInput - {@link DescribeFargateProfileCommandInput}
@@ -58,6 +83,8 @@ export interface DescribeFargateProfileCommandOutput extends DescribeFargateProf
58
83
  * @throws {@link ServerException} (server fault)
59
84
  * <p>These errors are usually caused by a server-side issue.</p>
60
85
  *
86
+ * @throws {@link EKSServiceException}
87
+ * <p>Base exception class for all service exceptions from EKS service.</p>
61
88
  *
62
89
  */
63
90
  export declare class DescribeFargateProfileCommand extends $Command<DescribeFargateProfileCommandInput, DescribeFargateProfileCommandOutput, EKSClientResolvedConfig> {
@@ -35,6 +35,29 @@ export interface DescribeIdentityProviderConfigCommandOutput extends DescribeIde
35
35
  * };
36
36
  * const command = new DescribeIdentityProviderConfigCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // DescribeIdentityProviderConfigResponse
39
+ * // identityProviderConfig: { // IdentityProviderConfigResponse
40
+ * // oidc: { // OidcIdentityProviderConfig
41
+ * // identityProviderConfigName: "STRING_VALUE",
42
+ * // identityProviderConfigArn: "STRING_VALUE",
43
+ * // clusterName: "STRING_VALUE",
44
+ * // issuerUrl: "STRING_VALUE",
45
+ * // clientId: "STRING_VALUE",
46
+ * // usernameClaim: "STRING_VALUE",
47
+ * // usernamePrefix: "STRING_VALUE",
48
+ * // groupsClaim: "STRING_VALUE",
49
+ * // groupsPrefix: "STRING_VALUE",
50
+ * // requiredClaims: { // requiredClaimsMap
51
+ * // "<keys>": "STRING_VALUE",
52
+ * // },
53
+ * // tags: { // TagMap
54
+ * // "<keys>": "STRING_VALUE",
55
+ * // },
56
+ * // status: "CREATING" || "DELETING" || "ACTIVE",
57
+ * // },
58
+ * // },
59
+ * // };
60
+ *
38
61
  * ```
39
62
  *
40
63
  * @param DescribeIdentityProviderConfigCommandInput - {@link DescribeIdentityProviderConfigCommandInput}
@@ -64,6 +87,8 @@ export interface DescribeIdentityProviderConfigCommandOutput extends DescribeIde
64
87
  * @throws {@link ServiceUnavailableException} (server fault)
65
88
  * <p>The service is unavailable. Back off and retry the operation.</p>
66
89
  *
90
+ * @throws {@link EKSServiceException}
91
+ * <p>Base exception class for all service exceptions from EKS service.</p>
67
92
  *
68
93
  */
69
94
  export declare class DescribeIdentityProviderConfigCommand extends $Command<DescribeIdentityProviderConfigCommandInput, DescribeIdentityProviderConfigCommandOutput, EKSClientResolvedConfig> {
@@ -32,6 +32,79 @@ export interface DescribeNodegroupCommandOutput extends DescribeNodegroupRespons
32
32
  * };
33
33
  * const command = new DescribeNodegroupCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DescribeNodegroupResponse
36
+ * // nodegroup: { // Nodegroup
37
+ * // nodegroupName: "STRING_VALUE",
38
+ * // nodegroupArn: "STRING_VALUE",
39
+ * // clusterName: "STRING_VALUE",
40
+ * // version: "STRING_VALUE",
41
+ * // releaseVersion: "STRING_VALUE",
42
+ * // createdAt: new Date("TIMESTAMP"),
43
+ * // modifiedAt: new Date("TIMESTAMP"),
44
+ * // status: "CREATING" || "ACTIVE" || "UPDATING" || "DELETING" || "CREATE_FAILED" || "DELETE_FAILED" || "DEGRADED",
45
+ * // capacityType: "ON_DEMAND" || "SPOT",
46
+ * // scalingConfig: { // NodegroupScalingConfig
47
+ * // minSize: Number("int"),
48
+ * // maxSize: Number("int"),
49
+ * // desiredSize: Number("int"),
50
+ * // },
51
+ * // instanceTypes: [ // StringList
52
+ * // "STRING_VALUE",
53
+ * // ],
54
+ * // subnets: [
55
+ * // "STRING_VALUE",
56
+ * // ],
57
+ * // remoteAccess: { // RemoteAccessConfig
58
+ * // ec2SshKey: "STRING_VALUE",
59
+ * // sourceSecurityGroups: [
60
+ * // "STRING_VALUE",
61
+ * // ],
62
+ * // },
63
+ * // amiType: "AL2_x86_64" || "AL2_x86_64_GPU" || "AL2_ARM_64" || "CUSTOM" || "BOTTLEROCKET_ARM_64" || "BOTTLEROCKET_x86_64" || "BOTTLEROCKET_ARM_64_NVIDIA" || "BOTTLEROCKET_x86_64_NVIDIA" || "WINDOWS_CORE_2019_x86_64" || "WINDOWS_FULL_2019_x86_64" || "WINDOWS_CORE_2022_x86_64" || "WINDOWS_FULL_2022_x86_64",
64
+ * // nodeRole: "STRING_VALUE",
65
+ * // labels: { // labelsMap
66
+ * // "<keys>": "STRING_VALUE",
67
+ * // },
68
+ * // taints: [ // taintsList
69
+ * // { // Taint
70
+ * // key: "STRING_VALUE",
71
+ * // value: "STRING_VALUE",
72
+ * // effect: "NO_SCHEDULE" || "NO_EXECUTE" || "PREFER_NO_SCHEDULE",
73
+ * // },
74
+ * // ],
75
+ * // resources: { // NodegroupResources
76
+ * // autoScalingGroups: [ // AutoScalingGroupList
77
+ * // { // AutoScalingGroup
78
+ * // name: "STRING_VALUE",
79
+ * // },
80
+ * // ],
81
+ * // remoteAccessSecurityGroup: "STRING_VALUE",
82
+ * // },
83
+ * // diskSize: Number("int"),
84
+ * // health: { // NodegroupHealth
85
+ * // issues: [ // IssueList
86
+ * // { // Issue
87
+ * // code: "AutoScalingGroupNotFound" || "AutoScalingGroupInvalidConfiguration" || "Ec2SecurityGroupNotFound" || "Ec2SecurityGroupDeletionFailure" || "Ec2LaunchTemplateNotFound" || "Ec2LaunchTemplateVersionMismatch" || "Ec2SubnetNotFound" || "Ec2SubnetInvalidConfiguration" || "IamInstanceProfileNotFound" || "IamLimitExceeded" || "IamNodeRoleNotFound" || "NodeCreationFailure" || "AsgInstanceLaunchFailures" || "InstanceLimitExceeded" || "InsufficientFreeAddresses" || "AccessDenied" || "InternalFailure" || "ClusterUnreachable" || "Ec2SubnetMissingIpv6Assignment",
88
+ * // message: "STRING_VALUE",
89
+ * // resourceIds: "<StringList>",
90
+ * // },
91
+ * // ],
92
+ * // },
93
+ * // updateConfig: { // NodegroupUpdateConfig
94
+ * // maxUnavailable: Number("int"),
95
+ * // maxUnavailablePercentage: Number("int"),
96
+ * // },
97
+ * // launchTemplate: { // LaunchTemplateSpecification
98
+ * // name: "STRING_VALUE",
99
+ * // version: "STRING_VALUE",
100
+ * // id: "STRING_VALUE",
101
+ * // },
102
+ * // tags: { // TagMap
103
+ * // "<keys>": "STRING_VALUE",
104
+ * // },
105
+ * // },
106
+ * // };
107
+ *
35
108
  * ```
36
109
  *
37
110
  * @param DescribeNodegroupCommandInput - {@link DescribeNodegroupCommandInput}
@@ -61,6 +134,8 @@ export interface DescribeNodegroupCommandOutput extends DescribeNodegroupRespons
61
134
  * @throws {@link ServiceUnavailableException} (server fault)
62
135
  * <p>The service is unavailable. Back off and retry the operation.</p>
63
136
  *
137
+ * @throws {@link EKSServiceException}
138
+ * <p>Base exception class for all service exceptions from EKS service.</p>
64
139
  *
65
140
  */
66
141
  export declare class DescribeNodegroupCommand extends $Command<DescribeNodegroupCommandInput, DescribeNodegroupCommandOutput, EKSClientResolvedConfig> {
@@ -38,6 +38,30 @@ export interface DescribeUpdateCommandOutput extends DescribeUpdateResponse, __M
38
38
  * };
39
39
  * const command = new DescribeUpdateCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // { // DescribeUpdateResponse
42
+ * // update: { // Update
43
+ * // id: "STRING_VALUE",
44
+ * // status: "InProgress" || "Failed" || "Cancelled" || "Successful",
45
+ * // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate",
46
+ * // params: [ // UpdateParams
47
+ * // { // UpdateParam
48
+ * // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage",
49
+ * // value: "STRING_VALUE",
50
+ * // },
51
+ * // ],
52
+ * // createdAt: new Date("TIMESTAMP"),
53
+ * // errors: [ // ErrorDetails
54
+ * // { // ErrorDetail
55
+ * // errorCode: "SubnetNotFound" || "SecurityGroupNotFound" || "EniLimitReached" || "IpNotAvailable" || "AccessDenied" || "OperationNotPermitted" || "VpcIdNotFound" || "Unknown" || "NodeCreationFailure" || "PodEvictionFailure" || "InsufficientFreeAddresses" || "ClusterUnreachable" || "InsufficientNumberOfReplicas" || "ConfigurationConflict" || "AdmissionRequestDenied" || "UnsupportedAddonModification" || "K8sResourceNotFound",
56
+ * // errorMessage: "STRING_VALUE",
57
+ * // resourceIds: [ // StringList
58
+ * // "STRING_VALUE",
59
+ * // ],
60
+ * // },
61
+ * // ],
62
+ * // },
63
+ * // };
64
+ *
41
65
  * ```
42
66
  *
43
67
  * @param DescribeUpdateCommandInput - {@link DescribeUpdateCommandInput}
@@ -64,6 +88,8 @@ export interface DescribeUpdateCommandOutput extends DescribeUpdateResponse, __M
64
88
  * @throws {@link ServerException} (server fault)
65
89
  * <p>These errors are usually caused by a server-side issue.</p>
66
90
  *
91
+ * @throws {@link EKSServiceException}
92
+ * <p>Base exception class for all service exceptions from EKS service.</p>
67
93
  *
68
94
  */
69
95
  export declare class DescribeUpdateCommand extends $Command<DescribeUpdateCommandInput, DescribeUpdateCommandOutput, EKSClientResolvedConfig> {
@@ -39,6 +39,30 @@ export interface DisassociateIdentityProviderConfigCommandOutput extends Disasso
39
39
  * };
40
40
  * const command = new DisassociateIdentityProviderConfigCommand(input);
41
41
  * const response = await client.send(command);
42
+ * // { // DisassociateIdentityProviderConfigResponse
43
+ * // update: { // Update
44
+ * // id: "STRING_VALUE",
45
+ * // status: "InProgress" || "Failed" || "Cancelled" || "Successful",
46
+ * // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate",
47
+ * // params: [ // UpdateParams
48
+ * // { // UpdateParam
49
+ * // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage",
50
+ * // value: "STRING_VALUE",
51
+ * // },
52
+ * // ],
53
+ * // createdAt: new Date("TIMESTAMP"),
54
+ * // errors: [ // ErrorDetails
55
+ * // { // ErrorDetail
56
+ * // errorCode: "SubnetNotFound" || "SecurityGroupNotFound" || "EniLimitReached" || "IpNotAvailable" || "AccessDenied" || "OperationNotPermitted" || "VpcIdNotFound" || "Unknown" || "NodeCreationFailure" || "PodEvictionFailure" || "InsufficientFreeAddresses" || "ClusterUnreachable" || "InsufficientNumberOfReplicas" || "ConfigurationConflict" || "AdmissionRequestDenied" || "UnsupportedAddonModification" || "K8sResourceNotFound",
57
+ * // errorMessage: "STRING_VALUE",
58
+ * // resourceIds: [ // StringList
59
+ * // "STRING_VALUE",
60
+ * // ],
61
+ * // },
62
+ * // ],
63
+ * // },
64
+ * // };
65
+ *
42
66
  * ```
43
67
  *
44
68
  * @param DisassociateIdentityProviderConfigCommandInput - {@link DisassociateIdentityProviderConfigCommandInput}
@@ -72,6 +96,8 @@ export interface DisassociateIdentityProviderConfigCommandOutput extends Disasso
72
96
  * @throws {@link ServerException} (server fault)
73
97
  * <p>These errors are usually caused by a server-side issue.</p>
74
98
  *
99
+ * @throws {@link EKSServiceException}
100
+ * <p>Base exception class for all service exceptions from EKS service.</p>
75
101
  *
76
102
  */
77
103
  export declare class DisassociateIdentityProviderConfigCommand extends $Command<DisassociateIdentityProviderConfigCommandInput, DisassociateIdentityProviderConfigCommandOutput, EKSClientResolvedConfig> {
@@ -33,6 +33,13 @@ export interface ListAddonsCommandOutput extends ListAddonsResponse, __MetadataB
33
33
  * };
34
34
  * const command = new ListAddonsCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListAddonsResponse
37
+ * // addons: [ // StringList
38
+ * // "STRING_VALUE",
39
+ * // ],
40
+ * // nextToken: "STRING_VALUE",
41
+ * // };
42
+ *
36
43
  * ```
37
44
  *
38
45
  * @param ListAddonsCommandInput - {@link ListAddonsCommandInput}
@@ -63,6 +70,8 @@ export interface ListAddonsCommandOutput extends ListAddonsResponse, __MetadataB
63
70
  * @throws {@link ServerException} (server fault)
64
71
  * <p>These errors are usually caused by a server-side issue.</p>
65
72
  *
73
+ * @throws {@link EKSServiceException}
74
+ * <p>Base exception class for all service exceptions from EKS service.</p>
66
75
  *
67
76
  */
68
77
  export declare class ListAddonsCommand extends $Command<ListAddonsCommandInput, ListAddonsCommandOutput, EKSClientResolvedConfig> {
@@ -36,6 +36,13 @@ export interface ListClustersCommandOutput extends ListClustersResponse, __Metad
36
36
  * };
37
37
  * const command = new ListClustersCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListClustersResponse
40
+ * // clusters: [ // StringList
41
+ * // "STRING_VALUE",
42
+ * // ],
43
+ * // nextToken: "STRING_VALUE",
44
+ * // };
45
+ *
39
46
  * ```
40
47
  *
41
48
  * @param ListClustersCommandInput - {@link ListClustersCommandInput}
@@ -59,6 +66,8 @@ export interface ListClustersCommandOutput extends ListClustersResponse, __Metad
59
66
  * @throws {@link ServiceUnavailableException} (server fault)
60
67
  * <p>The service is unavailable. Back off and retry the operation.</p>
61
68
  *
69
+ * @throws {@link EKSServiceException}
70
+ * <p>Base exception class for all service exceptions from EKS service.</p>
62
71
  *
63
72
  * @example To list your available clusters
64
73
  * ```javascript
@@ -34,6 +34,13 @@ export interface ListFargateProfilesCommandOutput extends ListFargateProfilesRes
34
34
  * };
35
35
  * const command = new ListFargateProfilesCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // ListFargateProfilesResponse
38
+ * // fargateProfileNames: [ // StringList
39
+ * // "STRING_VALUE",
40
+ * // ],
41
+ * // nextToken: "STRING_VALUE",
42
+ * // };
43
+ *
37
44
  * ```
38
45
  *
39
46
  * @param ListFargateProfilesCommandInput - {@link ListFargateProfilesCommandInput}
@@ -60,6 +67,8 @@ export interface ListFargateProfilesCommandOutput extends ListFargateProfilesRes
60
67
  * @throws {@link ServerException} (server fault)
61
68
  * <p>These errors are usually caused by a server-side issue.</p>
62
69
  *
70
+ * @throws {@link EKSServiceException}
71
+ * <p>Base exception class for all service exceptions from EKS service.</p>
63
72
  *
64
73
  */
65
74
  export declare class ListFargateProfilesCommand extends $Command<ListFargateProfilesCommandInput, ListFargateProfilesCommandOutput, EKSClientResolvedConfig> {