aws-sdk-eks 1.121.0 → 1.123.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-eks/client.rb +165 -19
- data/lib/aws-sdk-eks/client_api.rb +71 -0
- data/lib/aws-sdk-eks/types.rb +481 -5
- data/lib/aws-sdk-eks.rb +1 -1
- data/sig/client.rbs +49 -1
- data/sig/types.rbs +78 -2
- metadata +2 -2
data/sig/client.rbs
CHANGED
@@ -192,7 +192,10 @@ module Aws
|
|
192
192
|
},
|
193
193
|
?kubernetes_network_config: {
|
194
194
|
service_ipv_4_cidr: ::String?,
|
195
|
-
ip_family: ("ipv4" | "ipv6")
|
195
|
+
ip_family: ("ipv4" | "ipv6")?,
|
196
|
+
elastic_load_balancing: {
|
197
|
+
enabled: bool?
|
198
|
+
}?
|
196
199
|
},
|
197
200
|
?logging: {
|
198
201
|
cluster_logging: Array[
|
@@ -229,6 +232,28 @@ module Aws
|
|
229
232
|
},
|
230
233
|
?zonal_shift_config: {
|
231
234
|
enabled: bool?
|
235
|
+
},
|
236
|
+
?remote_network_config: {
|
237
|
+
remote_node_networks: Array[
|
238
|
+
{
|
239
|
+
cidrs: Array[::String]?
|
240
|
+
},
|
241
|
+
]?,
|
242
|
+
remote_pod_networks: Array[
|
243
|
+
{
|
244
|
+
cidrs: Array[::String]?
|
245
|
+
},
|
246
|
+
]?
|
247
|
+
},
|
248
|
+
?compute_config: {
|
249
|
+
enabled: bool?,
|
250
|
+
node_pools: Array[::String]?,
|
251
|
+
node_role_arn: ::String?
|
252
|
+
},
|
253
|
+
?storage_config: {
|
254
|
+
block_storage: {
|
255
|
+
enabled: bool?
|
256
|
+
}?
|
232
257
|
}
|
233
258
|
) -> _CreateClusterResponseSuccess
|
234
259
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateClusterResponseSuccess
|
@@ -314,6 +339,9 @@ module Aws
|
|
314
339
|
max_unavailable: ::Integer?,
|
315
340
|
max_unavailable_percentage: ::Integer?
|
316
341
|
},
|
342
|
+
?node_repair_config: {
|
343
|
+
enabled: bool?
|
344
|
+
},
|
317
345
|
?capacity_type: ("ON_DEMAND" | "SPOT" | "CAPACITY_BLOCK"),
|
318
346
|
?version: ::String,
|
319
347
|
?release_version: ::String
|
@@ -871,6 +899,23 @@ module Aws
|
|
871
899
|
},
|
872
900
|
?zonal_shift_config: {
|
873
901
|
enabled: bool?
|
902
|
+
},
|
903
|
+
?compute_config: {
|
904
|
+
enabled: bool?,
|
905
|
+
node_pools: Array[::String]?,
|
906
|
+
node_role_arn: ::String?
|
907
|
+
},
|
908
|
+
?kubernetes_network_config: {
|
909
|
+
service_ipv_4_cidr: ::String?,
|
910
|
+
ip_family: ("ipv4" | "ipv6")?,
|
911
|
+
elastic_load_balancing: {
|
912
|
+
enabled: bool?
|
913
|
+
}?
|
914
|
+
},
|
915
|
+
?storage_config: {
|
916
|
+
block_storage: {
|
917
|
+
enabled: bool?
|
918
|
+
}?
|
874
919
|
}
|
875
920
|
) -> _UpdateClusterConfigResponseSuccess
|
876
921
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateClusterConfigResponseSuccess
|
@@ -936,6 +981,9 @@ module Aws
|
|
936
981
|
max_unavailable: ::Integer?,
|
937
982
|
max_unavailable_percentage: ::Integer?
|
938
983
|
},
|
984
|
+
?node_repair_config: {
|
985
|
+
enabled: bool?
|
986
|
+
},
|
939
987
|
?client_request_token: ::String
|
940
988
|
) -> _UpdateNodegroupConfigResponseSuccess
|
941
989
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateNodegroupConfigResponseSuccess
|
data/sig/types.rbs
CHANGED
@@ -100,6 +100,7 @@ module Aws::EKS
|
|
100
100
|
class AddonVersionInfo
|
101
101
|
attr_accessor addon_version: ::String
|
102
102
|
attr_accessor architecture: ::Array[::String]
|
103
|
+
attr_accessor compute_types: ::Array[::String]
|
103
104
|
attr_accessor compatibilities: ::Array[Types::Compatibility]
|
104
105
|
attr_accessor requires_configuration: bool
|
105
106
|
attr_accessor requires_iam_permissions: bool
|
@@ -165,6 +166,11 @@ module Aws::EKS
|
|
165
166
|
SENSITIVE: []
|
166
167
|
end
|
167
168
|
|
169
|
+
class BlockStorage
|
170
|
+
attr_accessor enabled: bool
|
171
|
+
SENSITIVE: []
|
172
|
+
end
|
173
|
+
|
168
174
|
class Certificate
|
169
175
|
attr_accessor data: ::String
|
170
176
|
SENSITIVE: []
|
@@ -210,6 +216,9 @@ module Aws::EKS
|
|
210
216
|
attr_accessor access_config: Types::AccessConfigResponse
|
211
217
|
attr_accessor upgrade_policy: Types::UpgradePolicyResponse
|
212
218
|
attr_accessor zonal_shift_config: Types::ZonalShiftConfigResponse
|
219
|
+
attr_accessor remote_network_config: Types::RemoteNetworkConfigResponse
|
220
|
+
attr_accessor compute_config: Types::ComputeConfigResponse
|
221
|
+
attr_accessor storage_config: Types::StorageConfigResponse
|
213
222
|
SENSITIVE: []
|
214
223
|
end
|
215
224
|
|
@@ -232,6 +241,20 @@ module Aws::EKS
|
|
232
241
|
SENSITIVE: []
|
233
242
|
end
|
234
243
|
|
244
|
+
class ComputeConfigRequest
|
245
|
+
attr_accessor enabled: bool
|
246
|
+
attr_accessor node_pools: ::Array[::String]
|
247
|
+
attr_accessor node_role_arn: ::String
|
248
|
+
SENSITIVE: []
|
249
|
+
end
|
250
|
+
|
251
|
+
class ComputeConfigResponse
|
252
|
+
attr_accessor enabled: bool
|
253
|
+
attr_accessor node_pools: ::Array[::String]
|
254
|
+
attr_accessor node_role_arn: ::String
|
255
|
+
SENSITIVE: []
|
256
|
+
end
|
257
|
+
|
235
258
|
class ConnectorConfigRequest
|
236
259
|
attr_accessor role_arn: ::String
|
237
260
|
attr_accessor provider: ("EKS_ANYWHERE" | "ANTHOS" | "GKE" | "AKS" | "OPENSHIFT" | "TANZU" | "RANCHER" | "EC2" | "OTHER")
|
@@ -312,6 +335,9 @@ module Aws::EKS
|
|
312
335
|
attr_accessor bootstrap_self_managed_addons: bool
|
313
336
|
attr_accessor upgrade_policy: Types::UpgradePolicyRequest
|
314
337
|
attr_accessor zonal_shift_config: Types::ZonalShiftConfigRequest
|
338
|
+
attr_accessor remote_network_config: Types::RemoteNetworkConfigRequest
|
339
|
+
attr_accessor compute_config: Types::ComputeConfigRequest
|
340
|
+
attr_accessor storage_config: Types::StorageConfigRequest
|
315
341
|
SENSITIVE: []
|
316
342
|
end
|
317
343
|
|
@@ -368,6 +394,7 @@ module Aws::EKS
|
|
368
394
|
attr_accessor client_request_token: ::String
|
369
395
|
attr_accessor launch_template: Types::LaunchTemplateSpecification
|
370
396
|
attr_accessor update_config: Types::NodegroupUpdateConfig
|
397
|
+
attr_accessor node_repair_config: Types::NodeRepairConfig
|
371
398
|
attr_accessor capacity_type: ("ON_DEMAND" | "SPOT" | "CAPACITY_BLOCK")
|
372
399
|
attr_accessor version: ::String
|
373
400
|
attr_accessor release_version: ::String
|
@@ -672,6 +699,11 @@ module Aws::EKS
|
|
672
699
|
SENSITIVE: []
|
673
700
|
end
|
674
701
|
|
702
|
+
class ElasticLoadBalancing
|
703
|
+
attr_accessor enabled: bool
|
704
|
+
SENSITIVE: []
|
705
|
+
end
|
706
|
+
|
675
707
|
class EncryptionConfig
|
676
708
|
attr_accessor resources: ::Array[::String]
|
677
709
|
attr_accessor provider: Types::Provider
|
@@ -815,6 +847,7 @@ module Aws::EKS
|
|
815
847
|
class KubernetesNetworkConfigRequest
|
816
848
|
attr_accessor service_ipv_4_cidr: ::String
|
817
849
|
attr_accessor ip_family: ("ipv4" | "ipv6")
|
850
|
+
attr_accessor elastic_load_balancing: Types::ElasticLoadBalancing
|
818
851
|
SENSITIVE: []
|
819
852
|
end
|
820
853
|
|
@@ -822,6 +855,7 @@ module Aws::EKS
|
|
822
855
|
attr_accessor service_ipv_4_cidr: ::String
|
823
856
|
attr_accessor service_ipv_6_cidr: ::String
|
824
857
|
attr_accessor ip_family: ("ipv4" | "ipv6")
|
858
|
+
attr_accessor elastic_load_balancing: Types::ElasticLoadBalancing
|
825
859
|
SENSITIVE: []
|
826
860
|
end
|
827
861
|
|
@@ -1023,6 +1057,11 @@ module Aws::EKS
|
|
1023
1057
|
SENSITIVE: []
|
1024
1058
|
end
|
1025
1059
|
|
1060
|
+
class NodeRepairConfig
|
1061
|
+
attr_accessor enabled: bool
|
1062
|
+
SENSITIVE: []
|
1063
|
+
end
|
1064
|
+
|
1026
1065
|
class Nodegroup
|
1027
1066
|
attr_accessor nodegroup_name: ::String
|
1028
1067
|
attr_accessor nodegroup_arn: ::String
|
@@ -1045,6 +1084,7 @@ module Aws::EKS
|
|
1045
1084
|
attr_accessor disk_size: ::Integer
|
1046
1085
|
attr_accessor health: Types::NodegroupHealth
|
1047
1086
|
attr_accessor update_config: Types::NodegroupUpdateConfig
|
1087
|
+
attr_accessor node_repair_config: Types::NodeRepairConfig
|
1048
1088
|
attr_accessor launch_template: Types::LaunchTemplateSpecification
|
1049
1089
|
attr_accessor tags: ::Hash[::String, ::String]
|
1050
1090
|
SENSITIVE: []
|
@@ -1174,6 +1214,28 @@ module Aws::EKS
|
|
1174
1214
|
SENSITIVE: []
|
1175
1215
|
end
|
1176
1216
|
|
1217
|
+
class RemoteNetworkConfigRequest
|
1218
|
+
attr_accessor remote_node_networks: ::Array[Types::RemoteNodeNetwork]
|
1219
|
+
attr_accessor remote_pod_networks: ::Array[Types::RemotePodNetwork]
|
1220
|
+
SENSITIVE: []
|
1221
|
+
end
|
1222
|
+
|
1223
|
+
class RemoteNetworkConfigResponse
|
1224
|
+
attr_accessor remote_node_networks: ::Array[Types::RemoteNodeNetwork]
|
1225
|
+
attr_accessor remote_pod_networks: ::Array[Types::RemotePodNetwork]
|
1226
|
+
SENSITIVE: []
|
1227
|
+
end
|
1228
|
+
|
1229
|
+
class RemoteNodeNetwork
|
1230
|
+
attr_accessor cidrs: ::Array[::String]
|
1231
|
+
SENSITIVE: []
|
1232
|
+
end
|
1233
|
+
|
1234
|
+
class RemotePodNetwork
|
1235
|
+
attr_accessor cidrs: ::Array[::String]
|
1236
|
+
SENSITIVE: []
|
1237
|
+
end
|
1238
|
+
|
1177
1239
|
class ResourceInUseException
|
1178
1240
|
attr_accessor cluster_name: ::String
|
1179
1241
|
attr_accessor nodegroup_name: ::String
|
@@ -1219,6 +1281,16 @@ module Aws::EKS
|
|
1219
1281
|
SENSITIVE: []
|
1220
1282
|
end
|
1221
1283
|
|
1284
|
+
class StorageConfigRequest
|
1285
|
+
attr_accessor block_storage: Types::BlockStorage
|
1286
|
+
SENSITIVE: []
|
1287
|
+
end
|
1288
|
+
|
1289
|
+
class StorageConfigResponse
|
1290
|
+
attr_accessor block_storage: Types::BlockStorage
|
1291
|
+
SENSITIVE: []
|
1292
|
+
end
|
1293
|
+
|
1222
1294
|
class TagResourceRequest
|
1223
1295
|
attr_accessor resource_arn: ::String
|
1224
1296
|
attr_accessor tags: ::Hash[::String, ::String]
|
@@ -1255,7 +1327,7 @@ module Aws::EKS
|
|
1255
1327
|
class Update
|
1256
1328
|
attr_accessor id: ::String
|
1257
1329
|
attr_accessor status: ("InProgress" | "Failed" | "Cancelled" | "Successful")
|
1258
|
-
attr_accessor type: ("VersionUpdate" | "EndpointAccessUpdate" | "LoggingUpdate" | "ConfigUpdate" | "AssociateIdentityProviderConfig" | "DisassociateIdentityProviderConfig" | "AssociateEncryptionConfig" | "AddonUpdate" | "VpcConfigUpdate" | "AccessConfigUpdate" | "UpgradePolicyUpdate" | "ZonalShiftConfigUpdate")
|
1330
|
+
attr_accessor type: ("VersionUpdate" | "EndpointAccessUpdate" | "LoggingUpdate" | "ConfigUpdate" | "AssociateIdentityProviderConfig" | "DisassociateIdentityProviderConfig" | "AssociateEncryptionConfig" | "AddonUpdate" | "VpcConfigUpdate" | "AccessConfigUpdate" | "UpgradePolicyUpdate" | "ZonalShiftConfigUpdate" | "AutoModeUpdate")
|
1259
1331
|
attr_accessor params: ::Array[Types::UpdateParam]
|
1260
1332
|
attr_accessor created_at: ::Time
|
1261
1333
|
attr_accessor errors: ::Array[Types::ErrorDetail]
|
@@ -1306,6 +1378,9 @@ module Aws::EKS
|
|
1306
1378
|
attr_accessor access_config: Types::UpdateAccessConfigRequest
|
1307
1379
|
attr_accessor upgrade_policy: Types::UpgradePolicyRequest
|
1308
1380
|
attr_accessor zonal_shift_config: Types::ZonalShiftConfigRequest
|
1381
|
+
attr_accessor compute_config: Types::ComputeConfigRequest
|
1382
|
+
attr_accessor kubernetes_network_config: Types::KubernetesNetworkConfigRequest
|
1383
|
+
attr_accessor storage_config: Types::StorageConfigRequest
|
1309
1384
|
SENSITIVE: []
|
1310
1385
|
end
|
1311
1386
|
|
@@ -1351,6 +1426,7 @@ module Aws::EKS
|
|
1351
1426
|
attr_accessor taints: Types::UpdateTaintsPayload
|
1352
1427
|
attr_accessor scaling_config: Types::NodegroupScalingConfig
|
1353
1428
|
attr_accessor update_config: Types::NodegroupUpdateConfig
|
1429
|
+
attr_accessor node_repair_config: Types::NodeRepairConfig
|
1354
1430
|
attr_accessor client_request_token: ::String
|
1355
1431
|
SENSITIVE: []
|
1356
1432
|
end
|
@@ -1377,7 +1453,7 @@ module Aws::EKS
|
|
1377
1453
|
end
|
1378
1454
|
|
1379
1455
|
class UpdateParam
|
1380
|
-
attr_accessor type: ("Version" | "PlatformVersion" | "EndpointPrivateAccess" | "EndpointPublicAccess" | "ClusterLogging" | "DesiredSize" | "LabelsToAdd" | "LabelsToRemove" | "TaintsToAdd" | "TaintsToRemove" | "MaxSize" | "MinSize" | "ReleaseVersion" | "PublicAccessCidrs" | "LaunchTemplateName" | "LaunchTemplateVersion" | "IdentityProviderConfig" | "EncryptionConfig" | "AddonVersion" | "ServiceAccountRoleArn" | "ResolveConflicts" | "MaxUnavailable" | "MaxUnavailablePercentage" | "ConfigurationValues" | "SecurityGroups" | "Subnets" | "AuthenticationMode" | "PodIdentityAssociations" | "UpgradePolicy" | "ZonalShiftConfig")
|
1456
|
+
attr_accessor 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" | "ConfigurationValues" | "SecurityGroups" | "Subnets" | "AuthenticationMode" | "PodIdentityAssociations" | "UpgradePolicy" | "ZonalShiftConfig" | "ComputeConfig" | "StorageConfig" | "KubernetesNetworkConfig")
|
1381
1457
|
attr_accessor value: ::String
|
1382
1458
|
SENSITIVE: []
|
1383
1459
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-eks
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.123.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-12-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|