@aws-sdk/client-eks 3.1107.0 → 3.1108.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +252 -15
- package/dist-es/models/enums.js +8 -0
- package/dist-es/schemas/schemas_0.js +215 -14
- package/dist-types/commands/AssociateEncryptionConfigCommand.d.ts +2 -2
- package/dist-types/commands/AssociateIdentityProviderConfigCommand.d.ts +2 -2
- package/dist-types/commands/CancelUpdateCommand.d.ts +2 -2
- package/dist-types/commands/CreateClusterCommand.d.ts +50 -0
- package/dist-types/commands/DeleteClusterCommand.d.ts +25 -0
- package/dist-types/commands/DeregisterClusterCommand.d.ts +25 -0
- package/dist-types/commands/DescribeClusterCommand.d.ts +25 -0
- package/dist-types/commands/DescribeClusterVersionsCommand.d.ts +121 -0
- package/dist-types/commands/DescribeUpdateCommand.d.ts +2 -2
- package/dist-types/commands/DisassociateIdentityProviderConfigCommand.d.ts +2 -2
- package/dist-types/commands/RegisterClusterCommand.d.ts +25 -0
- package/dist-types/commands/UpdateAddonCommand.d.ts +2 -2
- package/dist-types/commands/UpdateCapabilityCommand.d.ts +2 -2
- package/dist-types/commands/UpdateClusterConfigCommand.d.ts +27 -2
- package/dist-types/commands/UpdateClusterVersionCommand.d.ts +2 -2
- package/dist-types/commands/UpdateNodegroupConfigCommand.d.ts +2 -2
- package/dist-types/commands/UpdateNodegroupVersionCommand.d.ts +2 -2
- package/dist-types/models/enums.d.ts +16 -0
- package/dist-types/models/models_0.d.ts +464 -1
- package/dist-types/schemas/schemas_0.d.ts +28 -0
- package/dist-types/ts3.4/models/enums.d.ts +9 -0
- package/dist-types/ts3.4/models/models_0.d.ts +122 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +28 -0
- package/package.json +6 -6
|
@@ -171,6 +171,31 @@ declare const CreateClusterCommand_base: {
|
|
|
171
171
|
* controlPlaneScalingConfig: { // ControlPlaneScalingConfig
|
|
172
172
|
* tier: "standard" || "tier-xl" || "tier-2xl" || "tier-4xl" || "tier-8xl",
|
|
173
173
|
* },
|
|
174
|
+
* kubeApiServerConfig: { // KubeApiServerConfigRequest
|
|
175
|
+
* eventTtl: "STRING_VALUE",
|
|
176
|
+
* serviceNodePortRange: { // ServiceNodePortRange
|
|
177
|
+
* minPort: Number("int"),
|
|
178
|
+
* maxPort: Number("int"),
|
|
179
|
+
* },
|
|
180
|
+
* },
|
|
181
|
+
* kubeSchedulerConfig: { // KubeSchedulerConfigRequest
|
|
182
|
+
* nodeResourcesFit: { // NodeResourcesFitConfig
|
|
183
|
+
* scoringStrategy: { // ScoringStrategy
|
|
184
|
+
* type: "LeastAllocated" || "MostAllocated",
|
|
185
|
+
* resources: [ // ResourceWeightList
|
|
186
|
+
* { // ResourceWeight
|
|
187
|
+
* name: "STRING_VALUE",
|
|
188
|
+
* weight: Number("int"),
|
|
189
|
+
* },
|
|
190
|
+
* ],
|
|
191
|
+
* },
|
|
192
|
+
* },
|
|
193
|
+
* },
|
|
194
|
+
* kubeControllerManagerConfig: { // KubeControllerManagerConfigRequest
|
|
195
|
+
* horizontalPodAutoscalerControllerConfig: { // HorizontalPodAutoscalerControllerConfigRequest
|
|
196
|
+
* horizontalPodAutoscalerSyncPeriod: "STRING_VALUE",
|
|
197
|
+
* },
|
|
198
|
+
* },
|
|
174
199
|
* };
|
|
175
200
|
* const command = new CreateClusterCommand(input);
|
|
176
201
|
* const response = await client.send(command);
|
|
@@ -305,6 +330,31 @@ declare const CreateClusterCommand_base: {
|
|
|
305
330
|
* // controlPlaneScalingConfig: { // ControlPlaneScalingConfig
|
|
306
331
|
* // tier: "standard" || "tier-xl" || "tier-2xl" || "tier-4xl" || "tier-8xl",
|
|
307
332
|
* // },
|
|
333
|
+
* // kubeApiServerConfig: { // KubeApiServerConfigResponse
|
|
334
|
+
* // eventTtl: "STRING_VALUE",
|
|
335
|
+
* // serviceNodePortRange: { // ServiceNodePortRange
|
|
336
|
+
* // minPort: Number("int"),
|
|
337
|
+
* // maxPort: Number("int"),
|
|
338
|
+
* // },
|
|
339
|
+
* // },
|
|
340
|
+
* // kubeSchedulerConfig: { // KubeSchedulerConfigResponse
|
|
341
|
+
* // nodeResourcesFit: { // NodeResourcesFitConfig
|
|
342
|
+
* // scoringStrategy: { // ScoringStrategy
|
|
343
|
+
* // type: "LeastAllocated" || "MostAllocated",
|
|
344
|
+
* // resources: [ // ResourceWeightList
|
|
345
|
+
* // { // ResourceWeight
|
|
346
|
+
* // name: "STRING_VALUE",
|
|
347
|
+
* // weight: Number("int"),
|
|
348
|
+
* // },
|
|
349
|
+
* // ],
|
|
350
|
+
* // },
|
|
351
|
+
* // },
|
|
352
|
+
* // },
|
|
353
|
+
* // kubeControllerManagerConfig: { // KubeControllerManagerConfigResponse
|
|
354
|
+
* // horizontalPodAutoscalerControllerConfig: { // HorizontalPodAutoscalerControllerConfigResponse
|
|
355
|
+
* // horizontalPodAutoscalerSyncPeriod: "STRING_VALUE",
|
|
356
|
+
* // },
|
|
357
|
+
* // },
|
|
308
358
|
* // },
|
|
309
359
|
* // };
|
|
310
360
|
*
|
|
@@ -177,6 +177,31 @@ declare const DeleteClusterCommand_base: {
|
|
|
177
177
|
* // controlPlaneScalingConfig: { // ControlPlaneScalingConfig
|
|
178
178
|
* // tier: "standard" || "tier-xl" || "tier-2xl" || "tier-4xl" || "tier-8xl",
|
|
179
179
|
* // },
|
|
180
|
+
* // kubeApiServerConfig: { // KubeApiServerConfigResponse
|
|
181
|
+
* // eventTtl: "STRING_VALUE",
|
|
182
|
+
* // serviceNodePortRange: { // ServiceNodePortRange
|
|
183
|
+
* // minPort: Number("int"),
|
|
184
|
+
* // maxPort: Number("int"),
|
|
185
|
+
* // },
|
|
186
|
+
* // },
|
|
187
|
+
* // kubeSchedulerConfig: { // KubeSchedulerConfigResponse
|
|
188
|
+
* // nodeResourcesFit: { // NodeResourcesFitConfig
|
|
189
|
+
* // scoringStrategy: { // ScoringStrategy
|
|
190
|
+
* // type: "LeastAllocated" || "MostAllocated",
|
|
191
|
+
* // resources: [ // ResourceWeightList
|
|
192
|
+
* // { // ResourceWeight
|
|
193
|
+
* // name: "STRING_VALUE",
|
|
194
|
+
* // weight: Number("int"),
|
|
195
|
+
* // },
|
|
196
|
+
* // ],
|
|
197
|
+
* // },
|
|
198
|
+
* // },
|
|
199
|
+
* // },
|
|
200
|
+
* // kubeControllerManagerConfig: { // KubeControllerManagerConfigResponse
|
|
201
|
+
* // horizontalPodAutoscalerControllerConfig: { // HorizontalPodAutoscalerControllerConfigResponse
|
|
202
|
+
* // horizontalPodAutoscalerSyncPeriod: "STRING_VALUE",
|
|
203
|
+
* // },
|
|
204
|
+
* // },
|
|
180
205
|
* // },
|
|
181
206
|
* // };
|
|
182
207
|
*
|
|
@@ -171,6 +171,31 @@ declare const DeregisterClusterCommand_base: {
|
|
|
171
171
|
* // controlPlaneScalingConfig: { // ControlPlaneScalingConfig
|
|
172
172
|
* // tier: "standard" || "tier-xl" || "tier-2xl" || "tier-4xl" || "tier-8xl",
|
|
173
173
|
* // },
|
|
174
|
+
* // kubeApiServerConfig: { // KubeApiServerConfigResponse
|
|
175
|
+
* // eventTtl: "STRING_VALUE",
|
|
176
|
+
* // serviceNodePortRange: { // ServiceNodePortRange
|
|
177
|
+
* // minPort: Number("int"),
|
|
178
|
+
* // maxPort: Number("int"),
|
|
179
|
+
* // },
|
|
180
|
+
* // },
|
|
181
|
+
* // kubeSchedulerConfig: { // KubeSchedulerConfigResponse
|
|
182
|
+
* // nodeResourcesFit: { // NodeResourcesFitConfig
|
|
183
|
+
* // scoringStrategy: { // ScoringStrategy
|
|
184
|
+
* // type: "LeastAllocated" || "MostAllocated",
|
|
185
|
+
* // resources: [ // ResourceWeightList
|
|
186
|
+
* // { // ResourceWeight
|
|
187
|
+
* // name: "STRING_VALUE",
|
|
188
|
+
* // weight: Number("int"),
|
|
189
|
+
* // },
|
|
190
|
+
* // ],
|
|
191
|
+
* // },
|
|
192
|
+
* // },
|
|
193
|
+
* // },
|
|
194
|
+
* // kubeControllerManagerConfig: { // KubeControllerManagerConfigResponse
|
|
195
|
+
* // horizontalPodAutoscalerControllerConfig: { // HorizontalPodAutoscalerControllerConfigResponse
|
|
196
|
+
* // horizontalPodAutoscalerSyncPeriod: "STRING_VALUE",
|
|
197
|
+
* // },
|
|
198
|
+
* // },
|
|
174
199
|
* // },
|
|
175
200
|
* // };
|
|
176
201
|
*
|
|
@@ -177,6 +177,31 @@ declare const DescribeClusterCommand_base: {
|
|
|
177
177
|
* // controlPlaneScalingConfig: { // ControlPlaneScalingConfig
|
|
178
178
|
* // tier: "standard" || "tier-xl" || "tier-2xl" || "tier-4xl" || "tier-8xl",
|
|
179
179
|
* // },
|
|
180
|
+
* // kubeApiServerConfig: { // KubeApiServerConfigResponse
|
|
181
|
+
* // eventTtl: "STRING_VALUE",
|
|
182
|
+
* // serviceNodePortRange: { // ServiceNodePortRange
|
|
183
|
+
* // minPort: Number("int"),
|
|
184
|
+
* // maxPort: Number("int"),
|
|
185
|
+
* // },
|
|
186
|
+
* // },
|
|
187
|
+
* // kubeSchedulerConfig: { // KubeSchedulerConfigResponse
|
|
188
|
+
* // nodeResourcesFit: { // NodeResourcesFitConfig
|
|
189
|
+
* // scoringStrategy: { // ScoringStrategy
|
|
190
|
+
* // type: "LeastAllocated" || "MostAllocated",
|
|
191
|
+
* // resources: [ // ResourceWeightList
|
|
192
|
+
* // { // ResourceWeight
|
|
193
|
+
* // name: "STRING_VALUE",
|
|
194
|
+
* // weight: Number("int"),
|
|
195
|
+
* // },
|
|
196
|
+
* // ],
|
|
197
|
+
* // },
|
|
198
|
+
* // },
|
|
199
|
+
* // },
|
|
200
|
+
* // kubeControllerManagerConfig: { // KubeControllerManagerConfigResponse
|
|
201
|
+
* // horizontalPodAutoscalerControllerConfig: { // HorizontalPodAutoscalerControllerConfigResponse
|
|
202
|
+
* // horizontalPodAutoscalerSyncPeriod: "STRING_VALUE",
|
|
203
|
+
* // },
|
|
204
|
+
* // },
|
|
180
205
|
* // },
|
|
181
206
|
* // };
|
|
182
207
|
*
|
|
@@ -61,6 +61,127 @@ declare const DescribeClusterVersionsCommand_base: {
|
|
|
61
61
|
* // status: "unsupported" || "standard-support" || "extended-support",
|
|
62
62
|
* // versionStatus: "UNSUPPORTED" || "STANDARD_SUPPORT" || "EXTENDED_SUPPORT",
|
|
63
63
|
* // kubernetesPatchVersion: "STRING_VALUE",
|
|
64
|
+
* // controlPlaneScalingTiers: [ // ControlPlaneScalingTierList
|
|
65
|
+
* // { // ControlPlaneScalingTierInfo
|
|
66
|
+
* // tierName: "STRING_VALUE",
|
|
67
|
+
* // apiRequestConcurrency: Number("int"),
|
|
68
|
+
* // podSchedulingRatePerSecond: Number("int"),
|
|
69
|
+
* // clusterDatabaseSizeGb: Number("int"),
|
|
70
|
+
* // controlPlaneComponentConfigOverrides: { // ControlPlaneConfigInfo
|
|
71
|
+
* // kubeApiServerConfig: { // KubeApiServerVersionConfig
|
|
72
|
+
* // eventTtl: { // DurationParameterConfig
|
|
73
|
+
* // defaultValue: "STRING_VALUE",
|
|
74
|
+
* // constraints: { // DurationConstraints
|
|
75
|
+
* // min: "STRING_VALUE",
|
|
76
|
+
* // max: "STRING_VALUE",
|
|
77
|
+
* // },
|
|
78
|
+
* // },
|
|
79
|
+
* // serviceNodePortRange: { // PortRangeParameterConfig
|
|
80
|
+
* // defaultValue: { // ServiceNodePortRange
|
|
81
|
+
* // minPort: Number("int"),
|
|
82
|
+
* // maxPort: Number("int"),
|
|
83
|
+
* // },
|
|
84
|
+
* // constraints: { // PortRangeConstraints
|
|
85
|
+
* // minPort: { // IntegerRangeConstraint
|
|
86
|
+
* // min: Number("int"),
|
|
87
|
+
* // max: Number("int"),
|
|
88
|
+
* // },
|
|
89
|
+
* // maxPort: {
|
|
90
|
+
* // min: Number("int"),
|
|
91
|
+
* // max: Number("int"),
|
|
92
|
+
* // },
|
|
93
|
+
* // },
|
|
94
|
+
* // },
|
|
95
|
+
* // },
|
|
96
|
+
* // kubeSchedulerConfig: { // KubeSchedulerVersionConfig
|
|
97
|
+
* // nodeResourcesFit: { // NodeResourcesFitVersionConfig
|
|
98
|
+
* // scoringStrategy: { // ScoringStrategyConfig
|
|
99
|
+
* // defaultValue: { // ScoringStrategy
|
|
100
|
+
* // type: "LeastAllocated" || "MostAllocated",
|
|
101
|
+
* // resources: [ // ResourceWeightList
|
|
102
|
+
* // { // ResourceWeight
|
|
103
|
+
* // name: "STRING_VALUE",
|
|
104
|
+
* // weight: Number("int"),
|
|
105
|
+
* // },
|
|
106
|
+
* // ],
|
|
107
|
+
* // },
|
|
108
|
+
* // constraints: { // ScoringStrategyConstraints
|
|
109
|
+
* // scoringStrategy: { // AllowedValuesConstraint
|
|
110
|
+
* // allowedValues: [ // AllowedValuesList
|
|
111
|
+
* // "STRING_VALUE",
|
|
112
|
+
* // ],
|
|
113
|
+
* // },
|
|
114
|
+
* // resources: { // ResourceConstraints
|
|
115
|
+
* // name: {
|
|
116
|
+
* // allowedValues: [
|
|
117
|
+
* // "STRING_VALUE",
|
|
118
|
+
* // ],
|
|
119
|
+
* // },
|
|
120
|
+
* // weight: {
|
|
121
|
+
* // min: Number("int"),
|
|
122
|
+
* // max: Number("int"),
|
|
123
|
+
* // },
|
|
124
|
+
* // },
|
|
125
|
+
* // },
|
|
126
|
+
* // },
|
|
127
|
+
* // },
|
|
128
|
+
* // },
|
|
129
|
+
* // kubeControllerManagerConfig: { // KubeControllerManagerVersionConfig
|
|
130
|
+
* // horizontalPodAutoscalerControllerConfig: { // HorizontalPodAutoscalerControllerVersionConfig
|
|
131
|
+
* // horizontalPodAutoscalerSyncPeriod: {
|
|
132
|
+
* // defaultValue: "STRING_VALUE",
|
|
133
|
+
* // constraints: {
|
|
134
|
+
* // min: "STRING_VALUE",
|
|
135
|
+
* // max: "STRING_VALUE",
|
|
136
|
+
* // },
|
|
137
|
+
* // },
|
|
138
|
+
* // },
|
|
139
|
+
* // },
|
|
140
|
+
* // },
|
|
141
|
+
* // },
|
|
142
|
+
* // ],
|
|
143
|
+
* // controlPlaneComponentConfig: {
|
|
144
|
+
* // kubeApiServerConfig: {
|
|
145
|
+
* // eventTtl: "<DurationParameterConfig>",
|
|
146
|
+
* // serviceNodePortRange: {
|
|
147
|
+
* // defaultValue: {
|
|
148
|
+
* // minPort: Number("int"),
|
|
149
|
+
* // maxPort: Number("int"),
|
|
150
|
+
* // },
|
|
151
|
+
* // constraints: {
|
|
152
|
+
* // minPort: "<IntegerRangeConstraint>",
|
|
153
|
+
* // maxPort: "<IntegerRangeConstraint>",
|
|
154
|
+
* // },
|
|
155
|
+
* // },
|
|
156
|
+
* // },
|
|
157
|
+
* // kubeSchedulerConfig: {
|
|
158
|
+
* // nodeResourcesFit: {
|
|
159
|
+
* // scoringStrategy: {
|
|
160
|
+
* // defaultValue: {
|
|
161
|
+
* // type: "LeastAllocated" || "MostAllocated",
|
|
162
|
+
* // resources: [
|
|
163
|
+
* // {
|
|
164
|
+
* // name: "STRING_VALUE",
|
|
165
|
+
* // weight: Number("int"),
|
|
166
|
+
* // },
|
|
167
|
+
* // ],
|
|
168
|
+
* // },
|
|
169
|
+
* // constraints: {
|
|
170
|
+
* // scoringStrategy: "<AllowedValuesConstraint>",
|
|
171
|
+
* // resources: {
|
|
172
|
+
* // name: "<AllowedValuesConstraint>",
|
|
173
|
+
* // weight: "<IntegerRangeConstraint>",
|
|
174
|
+
* // },
|
|
175
|
+
* // },
|
|
176
|
+
* // },
|
|
177
|
+
* // },
|
|
178
|
+
* // },
|
|
179
|
+
* // kubeControllerManagerConfig: {
|
|
180
|
+
* // horizontalPodAutoscalerControllerConfig: {
|
|
181
|
+
* // horizontalPodAutoscalerSyncPeriod: "<DurationParameterConfig>",
|
|
182
|
+
* // },
|
|
183
|
+
* // },
|
|
184
|
+
* // },
|
|
64
185
|
* // },
|
|
65
186
|
* // ],
|
|
66
187
|
* // };
|
|
@@ -49,10 +49,10 @@ declare const DescribeUpdateCommand_base: {
|
|
|
49
49
|
* // update: { // Update
|
|
50
50
|
* // id: "STRING_VALUE",
|
|
51
51
|
* // status: "InProgress" || "Failed" || "Cancelled" || "Successful",
|
|
52
|
-
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback",
|
|
52
|
+
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback" || "ControlPlaneComponentConfigUpdate",
|
|
53
53
|
* // params: [ // UpdateParams
|
|
54
54
|
* // { // UpdateParam
|
|
55
|
-
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode",
|
|
55
|
+
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode" || "KubeApiServerConfig" || "KubeSchedulerConfig" || "KubeControllerManagerConfig",
|
|
56
56
|
* // value: "STRING_VALUE",
|
|
57
57
|
* // },
|
|
58
58
|
* // ],
|
|
@@ -50,10 +50,10 @@ declare const DisassociateIdentityProviderConfigCommand_base: {
|
|
|
50
50
|
* // update: { // Update
|
|
51
51
|
* // id: "STRING_VALUE",
|
|
52
52
|
* // status: "InProgress" || "Failed" || "Cancelled" || "Successful",
|
|
53
|
-
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback",
|
|
53
|
+
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback" || "ControlPlaneComponentConfigUpdate",
|
|
54
54
|
* // params: [ // UpdateParams
|
|
55
55
|
* // { // UpdateParam
|
|
56
|
-
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode",
|
|
56
|
+
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode" || "KubeApiServerConfig" || "KubeSchedulerConfig" || "KubeControllerManagerConfig",
|
|
57
57
|
* // value: "STRING_VALUE",
|
|
58
58
|
* // },
|
|
59
59
|
* // ],
|
|
@@ -190,6 +190,31 @@ declare const RegisterClusterCommand_base: {
|
|
|
190
190
|
* // controlPlaneScalingConfig: { // ControlPlaneScalingConfig
|
|
191
191
|
* // tier: "standard" || "tier-xl" || "tier-2xl" || "tier-4xl" || "tier-8xl",
|
|
192
192
|
* // },
|
|
193
|
+
* // kubeApiServerConfig: { // KubeApiServerConfigResponse
|
|
194
|
+
* // eventTtl: "STRING_VALUE",
|
|
195
|
+
* // serviceNodePortRange: { // ServiceNodePortRange
|
|
196
|
+
* // minPort: Number("int"),
|
|
197
|
+
* // maxPort: Number("int"),
|
|
198
|
+
* // },
|
|
199
|
+
* // },
|
|
200
|
+
* // kubeSchedulerConfig: { // KubeSchedulerConfigResponse
|
|
201
|
+
* // nodeResourcesFit: { // NodeResourcesFitConfig
|
|
202
|
+
* // scoringStrategy: { // ScoringStrategy
|
|
203
|
+
* // type: "LeastAllocated" || "MostAllocated",
|
|
204
|
+
* // resources: [ // ResourceWeightList
|
|
205
|
+
* // { // ResourceWeight
|
|
206
|
+
* // name: "STRING_VALUE",
|
|
207
|
+
* // weight: Number("int"),
|
|
208
|
+
* // },
|
|
209
|
+
* // ],
|
|
210
|
+
* // },
|
|
211
|
+
* // },
|
|
212
|
+
* // },
|
|
213
|
+
* // kubeControllerManagerConfig: { // KubeControllerManagerConfigResponse
|
|
214
|
+
* // horizontalPodAutoscalerControllerConfig: { // HorizontalPodAutoscalerControllerConfigResponse
|
|
215
|
+
* // horizontalPodAutoscalerSyncPeriod: "STRING_VALUE",
|
|
216
|
+
* // },
|
|
217
|
+
* // },
|
|
193
218
|
* // },
|
|
194
219
|
* // };
|
|
195
220
|
*
|
|
@@ -54,10 +54,10 @@ declare const UpdateAddonCommand_base: {
|
|
|
54
54
|
* // update: { // Update
|
|
55
55
|
* // id: "STRING_VALUE",
|
|
56
56
|
* // status: "InProgress" || "Failed" || "Cancelled" || "Successful",
|
|
57
|
-
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback",
|
|
57
|
+
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback" || "ControlPlaneComponentConfigUpdate",
|
|
58
58
|
* // params: [ // UpdateParams
|
|
59
59
|
* // { // UpdateParam
|
|
60
|
-
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode",
|
|
60
|
+
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode" || "KubeApiServerConfig" || "KubeSchedulerConfig" || "KubeControllerManagerConfig",
|
|
61
61
|
* // value: "STRING_VALUE",
|
|
62
62
|
* // },
|
|
63
63
|
* // ],
|
|
@@ -80,10 +80,10 @@ declare const UpdateCapabilityCommand_base: {
|
|
|
80
80
|
* // update: { // Update
|
|
81
81
|
* // id: "STRING_VALUE",
|
|
82
82
|
* // status: "InProgress" || "Failed" || "Cancelled" || "Successful",
|
|
83
|
-
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback",
|
|
83
|
+
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback" || "ControlPlaneComponentConfigUpdate",
|
|
84
84
|
* // params: [ // UpdateParams
|
|
85
85
|
* // { // UpdateParam
|
|
86
|
-
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode",
|
|
86
|
+
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode" || "KubeApiServerConfig" || "KubeSchedulerConfig" || "KubeControllerManagerConfig",
|
|
87
87
|
* // value: "STRING_VALUE",
|
|
88
88
|
* // },
|
|
89
89
|
* // ],
|
|
@@ -158,6 +158,31 @@ declare const UpdateClusterConfigCommand_base: {
|
|
|
158
158
|
* controlPlaneScalingConfig: { // ControlPlaneScalingConfig
|
|
159
159
|
* tier: "standard" || "tier-xl" || "tier-2xl" || "tier-4xl" || "tier-8xl",
|
|
160
160
|
* },
|
|
161
|
+
* kubeApiServerConfig: { // KubeApiServerConfigRequest
|
|
162
|
+
* eventTtl: "STRING_VALUE",
|
|
163
|
+
* serviceNodePortRange: { // ServiceNodePortRange
|
|
164
|
+
* minPort: Number("int"),
|
|
165
|
+
* maxPort: Number("int"),
|
|
166
|
+
* },
|
|
167
|
+
* },
|
|
168
|
+
* kubeSchedulerConfig: { // KubeSchedulerConfigRequest
|
|
169
|
+
* nodeResourcesFit: { // NodeResourcesFitConfig
|
|
170
|
+
* scoringStrategy: { // ScoringStrategy
|
|
171
|
+
* type: "LeastAllocated" || "MostAllocated",
|
|
172
|
+
* resources: [ // ResourceWeightList
|
|
173
|
+
* { // ResourceWeight
|
|
174
|
+
* name: "STRING_VALUE",
|
|
175
|
+
* weight: Number("int"),
|
|
176
|
+
* },
|
|
177
|
+
* ],
|
|
178
|
+
* },
|
|
179
|
+
* },
|
|
180
|
+
* },
|
|
181
|
+
* kubeControllerManagerConfig: { // KubeControllerManagerConfigRequest
|
|
182
|
+
* horizontalPodAutoscalerControllerConfig: { // HorizontalPodAutoscalerControllerConfigRequest
|
|
183
|
+
* horizontalPodAutoscalerSyncPeriod: "STRING_VALUE",
|
|
184
|
+
* },
|
|
185
|
+
* },
|
|
161
186
|
* };
|
|
162
187
|
* const command = new UpdateClusterConfigCommand(input);
|
|
163
188
|
* const response = await client.send(command);
|
|
@@ -165,10 +190,10 @@ declare const UpdateClusterConfigCommand_base: {
|
|
|
165
190
|
* // update: { // Update
|
|
166
191
|
* // id: "STRING_VALUE",
|
|
167
192
|
* // status: "InProgress" || "Failed" || "Cancelled" || "Successful",
|
|
168
|
-
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback",
|
|
193
|
+
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback" || "ControlPlaneComponentConfigUpdate",
|
|
169
194
|
* // params: [ // UpdateParams
|
|
170
195
|
* // { // UpdateParam
|
|
171
|
-
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode",
|
|
196
|
+
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode" || "KubeApiServerConfig" || "KubeSchedulerConfig" || "KubeControllerManagerConfig",
|
|
172
197
|
* // value: "STRING_VALUE",
|
|
173
198
|
* // },
|
|
174
199
|
* // ],
|
|
@@ -59,10 +59,10 @@ declare const UpdateClusterVersionCommand_base: {
|
|
|
59
59
|
* // update: { // Update
|
|
60
60
|
* // id: "STRING_VALUE",
|
|
61
61
|
* // status: "InProgress" || "Failed" || "Cancelled" || "Successful",
|
|
62
|
-
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback",
|
|
62
|
+
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback" || "ControlPlaneComponentConfigUpdate",
|
|
63
63
|
* // params: [ // UpdateParams
|
|
64
64
|
* // { // UpdateParam
|
|
65
|
-
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode",
|
|
65
|
+
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode" || "KubeApiServerConfig" || "KubeSchedulerConfig" || "KubeControllerManagerConfig",
|
|
66
66
|
* // value: "STRING_VALUE",
|
|
67
67
|
* // },
|
|
68
68
|
* // ],
|
|
@@ -105,10 +105,10 @@ declare const UpdateNodegroupConfigCommand_base: {
|
|
|
105
105
|
* // update: { // Update
|
|
106
106
|
* // id: "STRING_VALUE",
|
|
107
107
|
* // status: "InProgress" || "Failed" || "Cancelled" || "Successful",
|
|
108
|
-
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback",
|
|
108
|
+
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback" || "ControlPlaneComponentConfigUpdate",
|
|
109
109
|
* // params: [ // UpdateParams
|
|
110
110
|
* // { // UpdateParam
|
|
111
|
-
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode",
|
|
111
|
+
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode" || "KubeApiServerConfig" || "KubeSchedulerConfig" || "KubeControllerManagerConfig",
|
|
112
112
|
* // value: "STRING_VALUE",
|
|
113
113
|
* // },
|
|
114
114
|
* // ],
|
|
@@ -73,10 +73,10 @@ declare const UpdateNodegroupVersionCommand_base: {
|
|
|
73
73
|
* // update: { // Update
|
|
74
74
|
* // id: "STRING_VALUE",
|
|
75
75
|
* // status: "InProgress" || "Failed" || "Cancelled" || "Successful",
|
|
76
|
-
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback",
|
|
76
|
+
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback" || "ControlPlaneComponentConfigUpdate",
|
|
77
77
|
* // params: [ // UpdateParams
|
|
78
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" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode",
|
|
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" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode" || "KubeApiServerConfig" || "KubeSchedulerConfig" || "KubeControllerManagerConfig",
|
|
80
80
|
* // value: "STRING_VALUE",
|
|
81
81
|
* // },
|
|
82
82
|
* // ],
|
|
@@ -177,6 +177,9 @@ export declare const UpdateParamType: {
|
|
|
177
177
|
readonly ENDPOINT_PUBLIC_ACCESS: "EndpointPublicAccess";
|
|
178
178
|
readonly IDENTITY_PROVIDER_CONFIG: "IdentityProviderConfig";
|
|
179
179
|
readonly KUBERNETES_NETWORK_CONFIG: "KubernetesNetworkConfig";
|
|
180
|
+
readonly KUBE_API_SERVER_CONFIG: "KubeApiServerConfig";
|
|
181
|
+
readonly KUBE_CONTROLLER_MANAGER_CONFIG: "KubeControllerManagerConfig";
|
|
182
|
+
readonly KUBE_SCHEDULER_CONFIG: "KubeSchedulerConfig";
|
|
180
183
|
readonly LABELS_TO_ADD: "LabelsToAdd";
|
|
181
184
|
readonly LABELS_TO_REMOVE: "LabelsToRemove";
|
|
182
185
|
readonly LAUNCH_TEMPLATE_NAME: "LaunchTemplateName";
|
|
@@ -246,6 +249,7 @@ export declare const UpdateType: {
|
|
|
246
249
|
readonly AUTO_MODE_UPDATE: "AutoModeUpdate";
|
|
247
250
|
readonly CAPABILITY_UPDATE: "CapabilityUpdate";
|
|
248
251
|
readonly CONFIG_UPDATE: "ConfigUpdate";
|
|
252
|
+
readonly CONTROL_PLANE_COMPONENT_CONFIG_UPDATE: "ControlPlaneComponentConfigUpdate";
|
|
249
253
|
readonly CONTROL_PLANE_EGRESS_UPDATE: "ControlPlaneEgressUpdate";
|
|
250
254
|
readonly CONTROL_PLANE_SCALING_CONFIG_UPDATE: "ControlPlaneScalingConfigUpdate";
|
|
251
255
|
readonly DELETION_PROTECTION_UPDATE: "DeletionProtectionUpdate";
|
|
@@ -357,6 +361,18 @@ export declare const IpFamily: {
|
|
|
357
361
|
* @public
|
|
358
362
|
*/
|
|
359
363
|
export type IpFamily = (typeof IpFamily)[keyof typeof IpFamily];
|
|
364
|
+
/**
|
|
365
|
+
* @public
|
|
366
|
+
* @enum
|
|
367
|
+
*/
|
|
368
|
+
export declare const ScoringStrategyType: {
|
|
369
|
+
readonly LEAST_ALLOCATED: "LeastAllocated";
|
|
370
|
+
readonly MOST_ALLOCATED: "MostAllocated";
|
|
371
|
+
};
|
|
372
|
+
/**
|
|
373
|
+
* @public
|
|
374
|
+
*/
|
|
375
|
+
export type ScoringStrategyType = (typeof ScoringStrategyType)[keyof typeof ScoringStrategyType];
|
|
360
376
|
/**
|
|
361
377
|
* @public
|
|
362
378
|
* @enum
|