aws-sdk-eks 1.120.0 → 1.122.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.
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
 
@@ -672,6 +698,11 @@ module Aws::EKS
672
698
  SENSITIVE: []
673
699
  end
674
700
 
701
+ class ElasticLoadBalancing
702
+ attr_accessor enabled: bool
703
+ SENSITIVE: []
704
+ end
705
+
675
706
  class EncryptionConfig
676
707
  attr_accessor resources: ::Array[::String]
677
708
  attr_accessor provider: Types::Provider
@@ -806,7 +837,7 @@ module Aws::EKS
806
837
  end
807
838
 
808
839
  class Issue
809
- attr_accessor code: ("AutoScalingGroupNotFound" | "AutoScalingGroupInvalidConfiguration" | "Ec2SecurityGroupNotFound" | "Ec2SecurityGroupDeletionFailure" | "Ec2LaunchTemplateNotFound" | "Ec2LaunchTemplateVersionMismatch" | "Ec2SubnetNotFound" | "Ec2SubnetInvalidConfiguration" | "IamInstanceProfileNotFound" | "Ec2SubnetMissingIpv6Assignment" | "IamLimitExceeded" | "IamNodeRoleNotFound" | "NodeCreationFailure" | "AsgInstanceLaunchFailures" | "InstanceLimitExceeded" | "InsufficientFreeAddresses" | "AccessDenied" | "InternalFailure" | "ClusterUnreachable" | "AmiIdNotFound" | "AutoScalingGroupOptInRequired" | "AutoScalingGroupRateLimitExceeded" | "Ec2LaunchTemplateDeletionFailure" | "Ec2LaunchTemplateInvalidConfiguration" | "Ec2LaunchTemplateMaxLimitExceeded" | "Ec2SubnetListTooLong" | "IamThrottling" | "NodeTerminationFailure" | "PodEvictionFailure" | "SourceEc2LaunchTemplateNotFound" | "LimitExceeded" | "Unknown" | "AutoScalingGroupInstanceRefreshActive" | "KubernetesLabelInvalid" | "Ec2LaunchTemplateVersionMaxLimitExceeded")
840
+ attr_accessor code: ("AutoScalingGroupNotFound" | "AutoScalingGroupInvalidConfiguration" | "Ec2SecurityGroupNotFound" | "Ec2SecurityGroupDeletionFailure" | "Ec2LaunchTemplateNotFound" | "Ec2LaunchTemplateVersionMismatch" | "Ec2SubnetNotFound" | "Ec2SubnetInvalidConfiguration" | "IamInstanceProfileNotFound" | "Ec2SubnetMissingIpv6Assignment" | "IamLimitExceeded" | "IamNodeRoleNotFound" | "NodeCreationFailure" | "AsgInstanceLaunchFailures" | "InstanceLimitExceeded" | "InsufficientFreeAddresses" | "AccessDenied" | "InternalFailure" | "ClusterUnreachable" | "AmiIdNotFound" | "AutoScalingGroupOptInRequired" | "AutoScalingGroupRateLimitExceeded" | "Ec2LaunchTemplateDeletionFailure" | "Ec2LaunchTemplateInvalidConfiguration" | "Ec2LaunchTemplateMaxLimitExceeded" | "Ec2SubnetListTooLong" | "IamThrottling" | "NodeTerminationFailure" | "PodEvictionFailure" | "SourceEc2LaunchTemplateNotFound" | "LimitExceeded" | "Unknown" | "AutoScalingGroupInstanceRefreshActive" | "KubernetesLabelInvalid" | "Ec2LaunchTemplateVersionMaxLimitExceeded" | "Ec2InstanceTypeDoesNotExist")
810
841
  attr_accessor message: ::String
811
842
  attr_accessor resource_ids: ::Array[::String]
812
843
  SENSITIVE: []
@@ -815,6 +846,7 @@ module Aws::EKS
815
846
  class KubernetesNetworkConfigRequest
816
847
  attr_accessor service_ipv_4_cidr: ::String
817
848
  attr_accessor ip_family: ("ipv4" | "ipv6")
849
+ attr_accessor elastic_load_balancing: Types::ElasticLoadBalancing
818
850
  SENSITIVE: []
819
851
  end
820
852
 
@@ -822,6 +854,7 @@ module Aws::EKS
822
854
  attr_accessor service_ipv_4_cidr: ::String
823
855
  attr_accessor service_ipv_6_cidr: ::String
824
856
  attr_accessor ip_family: ("ipv4" | "ipv6")
857
+ attr_accessor elastic_load_balancing: Types::ElasticLoadBalancing
825
858
  SENSITIVE: []
826
859
  end
827
860
 
@@ -1174,6 +1207,28 @@ module Aws::EKS
1174
1207
  SENSITIVE: []
1175
1208
  end
1176
1209
 
1210
+ class RemoteNetworkConfigRequest
1211
+ attr_accessor remote_node_networks: ::Array[Types::RemoteNodeNetwork]
1212
+ attr_accessor remote_pod_networks: ::Array[Types::RemotePodNetwork]
1213
+ SENSITIVE: []
1214
+ end
1215
+
1216
+ class RemoteNetworkConfigResponse
1217
+ attr_accessor remote_node_networks: ::Array[Types::RemoteNodeNetwork]
1218
+ attr_accessor remote_pod_networks: ::Array[Types::RemotePodNetwork]
1219
+ SENSITIVE: []
1220
+ end
1221
+
1222
+ class RemoteNodeNetwork
1223
+ attr_accessor cidrs: ::Array[::String]
1224
+ SENSITIVE: []
1225
+ end
1226
+
1227
+ class RemotePodNetwork
1228
+ attr_accessor cidrs: ::Array[::String]
1229
+ SENSITIVE: []
1230
+ end
1231
+
1177
1232
  class ResourceInUseException
1178
1233
  attr_accessor cluster_name: ::String
1179
1234
  attr_accessor nodegroup_name: ::String
@@ -1219,6 +1274,16 @@ module Aws::EKS
1219
1274
  SENSITIVE: []
1220
1275
  end
1221
1276
 
1277
+ class StorageConfigRequest
1278
+ attr_accessor block_storage: Types::BlockStorage
1279
+ SENSITIVE: []
1280
+ end
1281
+
1282
+ class StorageConfigResponse
1283
+ attr_accessor block_storage: Types::BlockStorage
1284
+ SENSITIVE: []
1285
+ end
1286
+
1222
1287
  class TagResourceRequest
1223
1288
  attr_accessor resource_arn: ::String
1224
1289
  attr_accessor tags: ::Hash[::String, ::String]
@@ -1255,7 +1320,7 @@ module Aws::EKS
1255
1320
  class Update
1256
1321
  attr_accessor id: ::String
1257
1322
  attr_accessor status: ("InProgress" | "Failed" | "Cancelled" | "Successful")
1258
- attr_accessor type: ("VersionUpdate" | "EndpointAccessUpdate" | "LoggingUpdate" | "ConfigUpdate" | "AssociateIdentityProviderConfig" | "DisassociateIdentityProviderConfig" | "AssociateEncryptionConfig" | "AddonUpdate" | "VpcConfigUpdate" | "AccessConfigUpdate" | "UpgradePolicyUpdate" | "ZonalShiftConfigUpdate")
1323
+ attr_accessor type: ("VersionUpdate" | "EndpointAccessUpdate" | "LoggingUpdate" | "ConfigUpdate" | "AssociateIdentityProviderConfig" | "DisassociateIdentityProviderConfig" | "AssociateEncryptionConfig" | "AddonUpdate" | "VpcConfigUpdate" | "AccessConfigUpdate" | "UpgradePolicyUpdate" | "ZonalShiftConfigUpdate" | "AutoModeUpdate")
1259
1324
  attr_accessor params: ::Array[Types::UpdateParam]
1260
1325
  attr_accessor created_at: ::Time
1261
1326
  attr_accessor errors: ::Array[Types::ErrorDetail]
@@ -1306,6 +1371,9 @@ module Aws::EKS
1306
1371
  attr_accessor access_config: Types::UpdateAccessConfigRequest
1307
1372
  attr_accessor upgrade_policy: Types::UpgradePolicyRequest
1308
1373
  attr_accessor zonal_shift_config: Types::ZonalShiftConfigRequest
1374
+ attr_accessor compute_config: Types::ComputeConfigRequest
1375
+ attr_accessor kubernetes_network_config: Types::KubernetesNetworkConfigRequest
1376
+ attr_accessor storage_config: Types::StorageConfigRequest
1309
1377
  SENSITIVE: []
1310
1378
  end
1311
1379
 
@@ -1377,7 +1445,7 @@ module Aws::EKS
1377
1445
  end
1378
1446
 
1379
1447
  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")
1448
+ 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" | "ComputeConfig" | "StorageConfig" | "KubernetesNetworkConfig")
1381
1449
  attr_accessor value: ::String
1382
1450
  SENSITIVE: []
1383
1451
  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.120.0
4
+ version: 1.122.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-10-21 00:00:00.000000000 Z
11
+ date: 2024-12-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core