@aws-sdk/client-eks 3.325.0 → 3.327.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 +7 -7
@@ -33,6 +33,16 @@ export interface ListIdentityProviderConfigsCommandOutput extends ListIdentityPr
33
33
  * };
34
34
  * const command = new ListIdentityProviderConfigsCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListIdentityProviderConfigsResponse
37
+ * // identityProviderConfigs: [ // IdentityProviderConfigs
38
+ * // { // IdentityProviderConfig
39
+ * // type: "STRING_VALUE", // required
40
+ * // name: "STRING_VALUE", // required
41
+ * // },
42
+ * // ],
43
+ * // nextToken: "STRING_VALUE",
44
+ * // };
45
+ *
36
46
  * ```
37
47
  *
38
48
  * @param ListIdentityProviderConfigsCommandInput - {@link ListIdentityProviderConfigsCommandInput}
@@ -62,6 +72,8 @@ export interface ListIdentityProviderConfigsCommandOutput extends ListIdentityPr
62
72
  * @throws {@link ServiceUnavailableException} (server fault)
63
73
  * <p>The service is unavailable. Back off and retry the operation.</p>
64
74
  *
75
+ * @throws {@link EKSServiceException}
76
+ * <p>Base exception class for all service exceptions from EKS service.</p>
65
77
  *
66
78
  */
67
79
  export declare class ListIdentityProviderConfigsCommand extends $Command<ListIdentityProviderConfigsCommandInput, ListIdentityProviderConfigsCommandOutput, EKSClientResolvedConfig> {
@@ -35,6 +35,13 @@ export interface ListNodegroupsCommandOutput extends ListNodegroupsResponse, __M
35
35
  * };
36
36
  * const command = new ListNodegroupsCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // ListNodegroupsResponse
39
+ * // nodegroups: [ // StringList
40
+ * // "STRING_VALUE",
41
+ * // ],
42
+ * // nextToken: "STRING_VALUE",
43
+ * // };
44
+ *
38
45
  * ```
39
46
  *
40
47
  * @param ListNodegroupsCommandInput - {@link ListNodegroupsCommandInput}
@@ -64,6 +71,8 @@ export interface ListNodegroupsCommandOutput extends ListNodegroupsResponse, __M
64
71
  * @throws {@link ServiceUnavailableException} (server fault)
65
72
  * <p>The service is unavailable. Back off and retry the operation.</p>
66
73
  *
74
+ * @throws {@link EKSServiceException}
75
+ * <p>Base exception class for all service exceptions from EKS service.</p>
67
76
  *
68
77
  */
69
78
  export declare class ListNodegroupsCommand extends $Command<ListNodegroupsCommandInput, ListNodegroupsCommandOutput, EKSClientResolvedConfig> {
@@ -31,6 +31,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
31
31
  * };
32
32
  * const command = new ListTagsForResourceCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // ListTagsForResourceResponse
35
+ * // tags: { // TagMap
36
+ * // "<keys>": "STRING_VALUE",
37
+ * // },
38
+ * // };
39
+ *
34
40
  * ```
35
41
  *
36
42
  * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
@@ -47,6 +53,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
47
53
  * <p>A service resource associated with the request could not be found. Clients should not
48
54
  * retry such requests.</p>
49
55
  *
56
+ * @throws {@link EKSServiceException}
57
+ * <p>Base exception class for all service exceptions from EKS service.</p>
50
58
  *
51
59
  * @example To list tags for a cluster
52
60
  * ```javascript
@@ -36,6 +36,13 @@ export interface ListUpdatesCommandOutput extends ListUpdatesResponse, __Metadat
36
36
  * };
37
37
  * const command = new ListUpdatesCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListUpdatesResponse
40
+ * // updateIds: [ // StringList
41
+ * // "STRING_VALUE",
42
+ * // ],
43
+ * // nextToken: "STRING_VALUE",
44
+ * // };
45
+ *
39
46
  * ```
40
47
  *
41
48
  * @param ListUpdatesCommandInput - {@link ListUpdatesCommandInput}
@@ -62,6 +69,8 @@ export interface ListUpdatesCommandOutput extends ListUpdatesResponse, __Metadat
62
69
  * @throws {@link ServerException} (server fault)
63
70
  * <p>These errors are usually caused by a server-side issue.</p>
64
71
  *
72
+ * @throws {@link EKSServiceException}
73
+ * <p>Base exception class for all service exceptions from EKS service.</p>
65
74
  *
66
75
  */
67
76
  export declare class ListUpdatesCommand extends $Command<ListUpdatesCommandInput, ListUpdatesCommandOutput, EKSClientResolvedConfig> {
@@ -51,6 +51,95 @@ export interface RegisterClusterCommandOutput extends RegisterClusterResponse, _
51
51
  * };
52
52
  * const command = new RegisterClusterCommand(input);
53
53
  * const response = await client.send(command);
54
+ * // { // RegisterClusterResponse
55
+ * // cluster: { // Cluster
56
+ * // name: "STRING_VALUE",
57
+ * // arn: "STRING_VALUE",
58
+ * // createdAt: new Date("TIMESTAMP"),
59
+ * // version: "STRING_VALUE",
60
+ * // endpoint: "STRING_VALUE",
61
+ * // roleArn: "STRING_VALUE",
62
+ * // resourcesVpcConfig: { // VpcConfigResponse
63
+ * // subnetIds: [ // StringList
64
+ * // "STRING_VALUE",
65
+ * // ],
66
+ * // securityGroupIds: [
67
+ * // "STRING_VALUE",
68
+ * // ],
69
+ * // clusterSecurityGroupId: "STRING_VALUE",
70
+ * // vpcId: "STRING_VALUE",
71
+ * // endpointPublicAccess: true || false,
72
+ * // endpointPrivateAccess: true || false,
73
+ * // publicAccessCidrs: [
74
+ * // "STRING_VALUE",
75
+ * // ],
76
+ * // },
77
+ * // kubernetesNetworkConfig: { // KubernetesNetworkConfigResponse
78
+ * // serviceIpv4Cidr: "STRING_VALUE",
79
+ * // serviceIpv6Cidr: "STRING_VALUE",
80
+ * // ipFamily: "ipv4" || "ipv6",
81
+ * // },
82
+ * // logging: { // Logging
83
+ * // clusterLogging: [ // LogSetups
84
+ * // { // LogSetup
85
+ * // types: [ // LogTypes
86
+ * // "api" || "audit" || "authenticator" || "controllerManager" || "scheduler",
87
+ * // ],
88
+ * // enabled: true || false,
89
+ * // },
90
+ * // ],
91
+ * // },
92
+ * // identity: { // Identity
93
+ * // oidc: { // OIDC
94
+ * // issuer: "STRING_VALUE",
95
+ * // },
96
+ * // },
97
+ * // status: "CREATING" || "ACTIVE" || "DELETING" || "FAILED" || "UPDATING" || "PENDING",
98
+ * // certificateAuthority: { // Certificate
99
+ * // data: "STRING_VALUE",
100
+ * // },
101
+ * // clientRequestToken: "STRING_VALUE",
102
+ * // platformVersion: "STRING_VALUE",
103
+ * // tags: { // TagMap
104
+ * // "<keys>": "STRING_VALUE",
105
+ * // },
106
+ * // encryptionConfig: [ // EncryptionConfigList
107
+ * // { // EncryptionConfig
108
+ * // resources: [
109
+ * // "STRING_VALUE",
110
+ * // ],
111
+ * // provider: { // Provider
112
+ * // keyArn: "STRING_VALUE",
113
+ * // },
114
+ * // },
115
+ * // ],
116
+ * // connectorConfig: { // ConnectorConfigResponse
117
+ * // activationId: "STRING_VALUE",
118
+ * // activationCode: "STRING_VALUE",
119
+ * // activationExpiry: new Date("TIMESTAMP"),
120
+ * // provider: "STRING_VALUE",
121
+ * // roleArn: "STRING_VALUE",
122
+ * // },
123
+ * // id: "STRING_VALUE",
124
+ * // health: { // ClusterHealth
125
+ * // issues: [ // ClusterIssueList
126
+ * // { // ClusterIssue
127
+ * // code: "AccessDenied" || "ClusterUnreachable" || "ConfigurationConflict" || "InternalFailure" || "ResourceLimitExceeded" || "ResourceNotFound",
128
+ * // message: "STRING_VALUE",
129
+ * // resourceIds: "<StringList>",
130
+ * // },
131
+ * // ],
132
+ * // },
133
+ * // outpostConfig: { // OutpostConfigResponse
134
+ * // outpostArns: "<StringList>", // required
135
+ * // controlPlaneInstanceType: "STRING_VALUE", // required
136
+ * // controlPlanePlacement: { // ControlPlanePlacementResponse
137
+ * // groupName: "STRING_VALUE",
138
+ * // },
139
+ * // },
140
+ * // },
141
+ * // };
142
+ *
54
143
  * ```
55
144
  *
56
145
  * @param RegisterClusterCommandInput - {@link RegisterClusterCommandInput}
@@ -90,6 +179,8 @@ export interface RegisterClusterCommandOutput extends RegisterClusterResponse, _
90
179
  * @throws {@link ServiceUnavailableException} (server fault)
91
180
  * <p>The service is unavailable. Back off and retry the operation.</p>
92
181
  *
182
+ * @throws {@link EKSServiceException}
183
+ * <p>Base exception class for all service exceptions from EKS service.</p>
93
184
  *
94
185
  */
95
186
  export declare class RegisterClusterCommand extends $Command<RegisterClusterCommandInput, RegisterClusterCommandOutput, EKSClientResolvedConfig> {
@@ -39,6 +39,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
39
39
  * };
40
40
  * const command = new TagResourceCommand(input);
41
41
  * const response = await client.send(command);
42
+ * // {};
43
+ *
42
44
  * ```
43
45
  *
44
46
  * @param TagResourceCommandInput - {@link TagResourceCommandInput}
@@ -55,6 +57,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
55
57
  * <p>A service resource associated with the request could not be found. Clients should not
56
58
  * retry such requests.</p>
57
59
  *
60
+ * @throws {@link EKSServiceException}
61
+ * <p>Base exception class for all service exceptions from EKS service.</p>
58
62
  *
59
63
  */
60
64
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, EKSClientResolvedConfig> {
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
34
34
  * };
35
35
  * const command = new UntagResourceCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // {};
38
+ *
37
39
  * ```
38
40
  *
39
41
  * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
@@ -50,6 +52,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
50
52
  * <p>A service resource associated with the request could not be found. Clients should not
51
53
  * retry such requests.</p>
52
54
  *
55
+ * @throws {@link EKSServiceException}
56
+ * <p>Base exception class for all service exceptions from EKS service.</p>
53
57
  *
54
58
  */
55
59
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, EKSClientResolvedConfig> {
@@ -37,6 +37,30 @@ export interface UpdateAddonCommandOutput extends UpdateAddonResponse, __Metadat
37
37
  * };
38
38
  * const command = new UpdateAddonCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // UpdateAddonResponse
41
+ * // update: { // Update
42
+ * // id: "STRING_VALUE",
43
+ * // status: "InProgress" || "Failed" || "Cancelled" || "Successful",
44
+ * // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate",
45
+ * // params: [ // UpdateParams
46
+ * // { // UpdateParam
47
+ * // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage",
48
+ * // value: "STRING_VALUE",
49
+ * // },
50
+ * // ],
51
+ * // createdAt: new Date("TIMESTAMP"),
52
+ * // errors: [ // ErrorDetails
53
+ * // { // ErrorDetail
54
+ * // errorCode: "SubnetNotFound" || "SecurityGroupNotFound" || "EniLimitReached" || "IpNotAvailable" || "AccessDenied" || "OperationNotPermitted" || "VpcIdNotFound" || "Unknown" || "NodeCreationFailure" || "PodEvictionFailure" || "InsufficientFreeAddresses" || "ClusterUnreachable" || "InsufficientNumberOfReplicas" || "ConfigurationConflict" || "AdmissionRequestDenied" || "UnsupportedAddonModification" || "K8sResourceNotFound",
55
+ * // errorMessage: "STRING_VALUE",
56
+ * // resourceIds: [ // StringList
57
+ * // "STRING_VALUE",
58
+ * // ],
59
+ * // },
60
+ * // ],
61
+ * // },
62
+ * // };
63
+ *
40
64
  * ```
41
65
  *
42
66
  * @param UpdateAddonCommandInput - {@link UpdateAddonCommandInput}
@@ -70,6 +94,8 @@ export interface UpdateAddonCommandOutput extends UpdateAddonResponse, __Metadat
70
94
  * @throws {@link ServerException} (server fault)
71
95
  * <p>These errors are usually caused by a server-side issue.</p>
72
96
  *
97
+ * @throws {@link EKSServiceException}
98
+ * <p>Base exception class for all service exceptions from EKS service.</p>
73
99
  *
74
100
  */
75
101
  export declare class UpdateAddonCommand extends $Command<UpdateAddonCommandInput, UpdateAddonCommandOutput, EKSClientResolvedConfig> {
@@ -82,6 +82,30 @@ export interface UpdateClusterConfigCommandOutput extends UpdateClusterConfigRes
82
82
  * };
83
83
  * const command = new UpdateClusterConfigCommand(input);
84
84
  * const response = await client.send(command);
85
+ * // { // UpdateClusterConfigResponse
86
+ * // update: { // Update
87
+ * // id: "STRING_VALUE",
88
+ * // status: "InProgress" || "Failed" || "Cancelled" || "Successful",
89
+ * // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate",
90
+ * // params: [ // UpdateParams
91
+ * // { // UpdateParam
92
+ * // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage",
93
+ * // value: "STRING_VALUE",
94
+ * // },
95
+ * // ],
96
+ * // createdAt: new Date("TIMESTAMP"),
97
+ * // errors: [ // ErrorDetails
98
+ * // { // ErrorDetail
99
+ * // errorCode: "SubnetNotFound" || "SecurityGroupNotFound" || "EniLimitReached" || "IpNotAvailable" || "AccessDenied" || "OperationNotPermitted" || "VpcIdNotFound" || "Unknown" || "NodeCreationFailure" || "PodEvictionFailure" || "InsufficientFreeAddresses" || "ClusterUnreachable" || "InsufficientNumberOfReplicas" || "ConfigurationConflict" || "AdmissionRequestDenied" || "UnsupportedAddonModification" || "K8sResourceNotFound",
100
+ * // errorMessage: "STRING_VALUE",
101
+ * // resourceIds: [ // StringList
102
+ * // "STRING_VALUE",
103
+ * // ],
104
+ * // },
105
+ * // ],
106
+ * // },
107
+ * // };
108
+ *
85
109
  * ```
86
110
  *
87
111
  * @param UpdateClusterConfigCommandInput - {@link UpdateClusterConfigCommandInput}
@@ -115,6 +139,8 @@ export interface UpdateClusterConfigCommandOutput extends UpdateClusterConfigRes
115
139
  * @throws {@link ServerException} (server fault)
116
140
  * <p>These errors are usually caused by a server-side issue.</p>
117
141
  *
142
+ * @throws {@link EKSServiceException}
143
+ * <p>Base exception class for all service exceptions from EKS service.</p>
118
144
  *
119
145
  */
120
146
  export declare class UpdateClusterConfigCommand extends $Command<UpdateClusterConfigCommandInput, UpdateClusterConfigCommandOutput, EKSClientResolvedConfig> {
@@ -42,6 +42,30 @@ export interface UpdateClusterVersionCommandOutput extends UpdateClusterVersionR
42
42
  * };
43
43
  * const command = new UpdateClusterVersionCommand(input);
44
44
  * const response = await client.send(command);
45
+ * // { // UpdateClusterVersionResponse
46
+ * // update: { // Update
47
+ * // id: "STRING_VALUE",
48
+ * // status: "InProgress" || "Failed" || "Cancelled" || "Successful",
49
+ * // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate",
50
+ * // params: [ // UpdateParams
51
+ * // { // UpdateParam
52
+ * // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage",
53
+ * // value: "STRING_VALUE",
54
+ * // },
55
+ * // ],
56
+ * // createdAt: new Date("TIMESTAMP"),
57
+ * // errors: [ // ErrorDetails
58
+ * // { // ErrorDetail
59
+ * // errorCode: "SubnetNotFound" || "SecurityGroupNotFound" || "EniLimitReached" || "IpNotAvailable" || "AccessDenied" || "OperationNotPermitted" || "VpcIdNotFound" || "Unknown" || "NodeCreationFailure" || "PodEvictionFailure" || "InsufficientFreeAddresses" || "ClusterUnreachable" || "InsufficientNumberOfReplicas" || "ConfigurationConflict" || "AdmissionRequestDenied" || "UnsupportedAddonModification" || "K8sResourceNotFound",
60
+ * // errorMessage: "STRING_VALUE",
61
+ * // resourceIds: [ // StringList
62
+ * // "STRING_VALUE",
63
+ * // ],
64
+ * // },
65
+ * // ],
66
+ * // },
67
+ * // };
68
+ *
45
69
  * ```
46
70
  *
47
71
  * @param UpdateClusterVersionCommandInput - {@link UpdateClusterVersionCommandInput}
@@ -75,6 +99,8 @@ export interface UpdateClusterVersionCommandOutput extends UpdateClusterVersionR
75
99
  * @throws {@link ServerException} (server fault)
76
100
  * <p>These errors are usually caused by a server-side issue.</p>
77
101
  *
102
+ * @throws {@link EKSServiceException}
103
+ * <p>Base exception class for all service exceptions from EKS service.</p>
78
104
  *
79
105
  */
80
106
  export declare class UpdateClusterVersionCommand extends $Command<UpdateClusterVersionCommandInput, UpdateClusterVersionCommandOutput, EKSClientResolvedConfig> {
@@ -69,6 +69,30 @@ export interface UpdateNodegroupConfigCommandOutput extends UpdateNodegroupConfi
69
69
  * };
70
70
  * const command = new UpdateNodegroupConfigCommand(input);
71
71
  * const response = await client.send(command);
72
+ * // { // UpdateNodegroupConfigResponse
73
+ * // update: { // Update
74
+ * // id: "STRING_VALUE",
75
+ * // status: "InProgress" || "Failed" || "Cancelled" || "Successful",
76
+ * // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate",
77
+ * // params: [ // UpdateParams
78
+ * // { // UpdateParam
79
+ * // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage",
80
+ * // value: "STRING_VALUE",
81
+ * // },
82
+ * // ],
83
+ * // createdAt: new Date("TIMESTAMP"),
84
+ * // errors: [ // ErrorDetails
85
+ * // { // ErrorDetail
86
+ * // errorCode: "SubnetNotFound" || "SecurityGroupNotFound" || "EniLimitReached" || "IpNotAvailable" || "AccessDenied" || "OperationNotPermitted" || "VpcIdNotFound" || "Unknown" || "NodeCreationFailure" || "PodEvictionFailure" || "InsufficientFreeAddresses" || "ClusterUnreachable" || "InsufficientNumberOfReplicas" || "ConfigurationConflict" || "AdmissionRequestDenied" || "UnsupportedAddonModification" || "K8sResourceNotFound",
87
+ * // errorMessage: "STRING_VALUE",
88
+ * // resourceIds: [ // StringList
89
+ * // "STRING_VALUE",
90
+ * // ],
91
+ * // },
92
+ * // ],
93
+ * // },
94
+ * // };
95
+ *
72
96
  * ```
73
97
  *
74
98
  * @param UpdateNodegroupConfigCommandInput - {@link UpdateNodegroupConfigCommandInput}
@@ -102,6 +126,8 @@ export interface UpdateNodegroupConfigCommandOutput extends UpdateNodegroupConfi
102
126
  * @throws {@link ServerException} (server fault)
103
127
  * <p>These errors are usually caused by a server-side issue.</p>
104
128
  *
129
+ * @throws {@link EKSServiceException}
130
+ * <p>Base exception class for all service exceptions from EKS service.</p>
105
131
  *
106
132
  */
107
133
  export declare class UpdateNodegroupConfigCommand extends $Command<UpdateNodegroupConfigCommandInput, UpdateNodegroupConfigCommandOutput, EKSClientResolvedConfig> {
@@ -61,6 +61,30 @@ export interface UpdateNodegroupVersionCommandOutput extends UpdateNodegroupVers
61
61
  * };
62
62
  * const command = new UpdateNodegroupVersionCommand(input);
63
63
  * const response = await client.send(command);
64
+ * // { // UpdateNodegroupVersionResponse
65
+ * // update: { // Update
66
+ * // id: "STRING_VALUE",
67
+ * // status: "InProgress" || "Failed" || "Cancelled" || "Successful",
68
+ * // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate",
69
+ * // params: [ // UpdateParams
70
+ * // { // UpdateParam
71
+ * // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage",
72
+ * // value: "STRING_VALUE",
73
+ * // },
74
+ * // ],
75
+ * // createdAt: new Date("TIMESTAMP"),
76
+ * // errors: [ // ErrorDetails
77
+ * // { // ErrorDetail
78
+ * // errorCode: "SubnetNotFound" || "SecurityGroupNotFound" || "EniLimitReached" || "IpNotAvailable" || "AccessDenied" || "OperationNotPermitted" || "VpcIdNotFound" || "Unknown" || "NodeCreationFailure" || "PodEvictionFailure" || "InsufficientFreeAddresses" || "ClusterUnreachable" || "InsufficientNumberOfReplicas" || "ConfigurationConflict" || "AdmissionRequestDenied" || "UnsupportedAddonModification" || "K8sResourceNotFound",
79
+ * // errorMessage: "STRING_VALUE",
80
+ * // resourceIds: [ // StringList
81
+ * // "STRING_VALUE",
82
+ * // ],
83
+ * // },
84
+ * // ],
85
+ * // },
86
+ * // };
87
+ *
64
88
  * ```
65
89
  *
66
90
  * @param UpdateNodegroupVersionCommandInput - {@link UpdateNodegroupVersionCommandInput}
@@ -94,6 +118,8 @@ export interface UpdateNodegroupVersionCommandOutput extends UpdateNodegroupVers
94
118
  * @throws {@link ServerException} (server fault)
95
119
  * <p>These errors are usually caused by a server-side issue.</p>
96
120
  *
121
+ * @throws {@link EKSServiceException}
122
+ * <p>Base exception class for all service exceptions from EKS service.</p>
97
123
  *
98
124
  */
99
125
  export declare class UpdateNodegroupVersionCommand extends $Command<UpdateNodegroupVersionCommandInput, UpdateNodegroupVersionCommandOutput, EKSClientResolvedConfig> {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-eks",
3
3
  "description": "AWS SDK for JavaScript Eks Client for Node.js, Browser and React Native",
4
- "version": "3.325.0",
4
+ "version": "3.327.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.325.0",
24
+ "@aws-sdk/client-sts": "3.327.0",
25
25
  "@aws-sdk/config-resolver": "3.310.0",
26
- "@aws-sdk/credential-provider-node": "3.325.0",
26
+ "@aws-sdk/credential-provider-node": "3.327.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.310.0",
28
28
  "@aws-sdk/hash-node": "3.310.0",
29
29
  "@aws-sdk/invalid-dependency": "3.310.0",
@@ -32,11 +32,11 @@
32
32
  "@aws-sdk/middleware-host-header": "3.325.0",
33
33
  "@aws-sdk/middleware-logger": "3.325.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.325.0",
35
- "@aws-sdk/middleware-retry": "3.325.0",
35
+ "@aws-sdk/middleware-retry": "3.327.0",
36
36
  "@aws-sdk/middleware-serde": "3.325.0",
37
37
  "@aws-sdk/middleware-signing": "3.325.0",
38
38
  "@aws-sdk/middleware-stack": "3.325.0",
39
- "@aws-sdk/middleware-user-agent": "3.325.0",
39
+ "@aws-sdk/middleware-user-agent": "3.327.0",
40
40
  "@aws-sdk/node-config-provider": "3.310.0",
41
41
  "@aws-sdk/node-http-handler": "3.321.1",
42
42
  "@aws-sdk/protocol-http": "3.310.0",
@@ -48,8 +48,8 @@
48
48
  "@aws-sdk/util-body-length-node": "3.310.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.325.0",
50
50
  "@aws-sdk/util-defaults-mode-node": "3.325.0",
51
- "@aws-sdk/util-endpoints": "3.319.0",
52
- "@aws-sdk/util-retry": "3.310.0",
51
+ "@aws-sdk/util-endpoints": "3.327.0",
52
+ "@aws-sdk/util-retry": "3.327.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.310.0",
54
54
  "@aws-sdk/util-user-agent-node": "3.310.0",
55
55
  "@aws-sdk/util-utf8": "3.310.0",