aws-sdk-eks 1.76.0 → 1.77.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-eks/client.rb +70 -5
- data/lib/aws-sdk-eks/client_api.rb +28 -0
- data/lib/aws-sdk-eks/types.rb +181 -14
- data/lib/aws-sdk-eks.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 54e128a9fd123efb747c37733491ba52f4ed2191ecebc0df1a053662780ecb14
|
4
|
+
data.tar.gz: c94e35b02928f0ea190e01bece0df8d1a213d705870d5d3be3f899ff3a26209a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eacfc8c8777c57e971fa6a918d4dd0d0c9dceb6c1c47a053de36f1b2c17f7234b711858f0704beadeb9424057ed173894304800908ddaf1c9261d59d0ead8cc6
|
7
|
+
data.tar.gz: 4d8650e0f34bcd4e32f572513c9f51908b4051e2b76b25cb0f0bfdf204eacaf379f10b140a1966817ddfb32c59d3a71e0659d53e2c04319c9e0330878ff16b5c
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.77.0
|
data/lib/aws-sdk-eks/client.rb
CHANGED
@@ -433,7 +433,7 @@ module Aws::EKS
|
|
433
433
|
# The name of the cluster to associate the configuration to.
|
434
434
|
#
|
435
435
|
# @option params [required, Types::OidcIdentityProviderConfigRequest] :oidc
|
436
|
-
# An object
|
436
|
+
# An object representing an OpenID Connect (OIDC) identity provider
|
437
437
|
# configuration.
|
438
438
|
#
|
439
439
|
# @option params [Hash<String,String>] :tags
|
@@ -673,7 +673,11 @@ module Aws::EKS
|
|
673
673
|
#
|
674
674
|
# @option params [String] :version
|
675
675
|
# The desired Kubernetes version for your cluster. If you don't specify
|
676
|
-
# a value here, the
|
676
|
+
# a value here, the default version available in Amazon EKS is used.
|
677
|
+
#
|
678
|
+
# <note markdown="1"> The default version might not be the latest version available.
|
679
|
+
#
|
680
|
+
# </note>
|
677
681
|
#
|
678
682
|
# @option params [required, String] :role_arn
|
679
683
|
# The Amazon Resource Name (ARN) of the IAM role that provides
|
@@ -736,6 +740,18 @@ module Aws::EKS
|
|
736
740
|
# @option params [Array<Types::EncryptionConfig>] :encryption_config
|
737
741
|
# The encryption configuration for the cluster.
|
738
742
|
#
|
743
|
+
# @option params [Types::OutpostConfigRequest] :outpost_config
|
744
|
+
# An object representing the configuration of your local Amazon EKS
|
745
|
+
# cluster on an Amazon Web Services Outpost. Before creating a local
|
746
|
+
# cluster on an Outpost, review [Creating an Amazon EKS cluster on an
|
747
|
+
# Amazon Web Services Outpost][1] in the *Amazon EKS User Guide*. This
|
748
|
+
# object isn't available for creating Amazon EKS clusters on the Amazon
|
749
|
+
# Web Services cloud.
|
750
|
+
#
|
751
|
+
#
|
752
|
+
#
|
753
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/create-cluster-outpost.html
|
754
|
+
#
|
739
755
|
# @return [Types::CreateClusterResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
740
756
|
#
|
741
757
|
# * {Types::CreateClusterResponse#cluster #cluster} => Types::Cluster
|
@@ -802,6 +818,10 @@ module Aws::EKS
|
|
802
818
|
# },
|
803
819
|
# },
|
804
820
|
# ],
|
821
|
+
# outpost_config: {
|
822
|
+
# outpost_arns: ["String"], # required
|
823
|
+
# control_plane_instance_type: "String", # required
|
824
|
+
# },
|
805
825
|
# })
|
806
826
|
#
|
807
827
|
# @example Response structure
|
@@ -845,6 +865,15 @@ module Aws::EKS
|
|
845
865
|
# resp.cluster.connector_config.activation_expiry #=> Time
|
846
866
|
# resp.cluster.connector_config.provider #=> String
|
847
867
|
# resp.cluster.connector_config.role_arn #=> String
|
868
|
+
# resp.cluster.id #=> String
|
869
|
+
# resp.cluster.health.issues #=> Array
|
870
|
+
# resp.cluster.health.issues[0].code #=> String, one of "AccessDenied", "ClusterUnreachable", "ConfigurationConflict", "InternalFailure", "ResourceLimitExceeded", "ResourceNotFound"
|
871
|
+
# resp.cluster.health.issues[0].message #=> String
|
872
|
+
# resp.cluster.health.issues[0].resource_ids #=> Array
|
873
|
+
# resp.cluster.health.issues[0].resource_ids[0] #=> String
|
874
|
+
# resp.cluster.outpost_config.outpost_arns #=> Array
|
875
|
+
# resp.cluster.outpost_config.outpost_arns[0] #=> String
|
876
|
+
# resp.cluster.outpost_config.control_plane_instance_type #=> String
|
848
877
|
#
|
849
878
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/CreateCluster AWS API Documentation
|
850
879
|
#
|
@@ -1427,6 +1456,15 @@ module Aws::EKS
|
|
1427
1456
|
# resp.cluster.connector_config.activation_expiry #=> Time
|
1428
1457
|
# resp.cluster.connector_config.provider #=> String
|
1429
1458
|
# resp.cluster.connector_config.role_arn #=> String
|
1459
|
+
# resp.cluster.id #=> String
|
1460
|
+
# resp.cluster.health.issues #=> Array
|
1461
|
+
# resp.cluster.health.issues[0].code #=> String, one of "AccessDenied", "ClusterUnreachable", "ConfigurationConflict", "InternalFailure", "ResourceLimitExceeded", "ResourceNotFound"
|
1462
|
+
# resp.cluster.health.issues[0].message #=> String
|
1463
|
+
# resp.cluster.health.issues[0].resource_ids #=> Array
|
1464
|
+
# resp.cluster.health.issues[0].resource_ids[0] #=> String
|
1465
|
+
# resp.cluster.outpost_config.outpost_arns #=> Array
|
1466
|
+
# resp.cluster.outpost_config.outpost_arns[0] #=> String
|
1467
|
+
# resp.cluster.outpost_config.control_plane_instance_type #=> String
|
1430
1468
|
#
|
1431
1469
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DeleteCluster AWS API Documentation
|
1432
1470
|
#
|
@@ -1625,6 +1663,15 @@ module Aws::EKS
|
|
1625
1663
|
# resp.cluster.connector_config.activation_expiry #=> Time
|
1626
1664
|
# resp.cluster.connector_config.provider #=> String
|
1627
1665
|
# resp.cluster.connector_config.role_arn #=> String
|
1666
|
+
# resp.cluster.id #=> String
|
1667
|
+
# resp.cluster.health.issues #=> Array
|
1668
|
+
# resp.cluster.health.issues[0].code #=> String, one of "AccessDenied", "ClusterUnreachable", "ConfigurationConflict", "InternalFailure", "ResourceLimitExceeded", "ResourceNotFound"
|
1669
|
+
# resp.cluster.health.issues[0].message #=> String
|
1670
|
+
# resp.cluster.health.issues[0].resource_ids #=> Array
|
1671
|
+
# resp.cluster.health.issues[0].resource_ids[0] #=> String
|
1672
|
+
# resp.cluster.outpost_config.outpost_arns #=> Array
|
1673
|
+
# resp.cluster.outpost_config.outpost_arns[0] #=> String
|
1674
|
+
# resp.cluster.outpost_config.control_plane_instance_type #=> String
|
1628
1675
|
#
|
1629
1676
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DeregisterCluster AWS API Documentation
|
1630
1677
|
#
|
@@ -1867,6 +1914,15 @@ module Aws::EKS
|
|
1867
1914
|
# resp.cluster.connector_config.activation_expiry #=> Time
|
1868
1915
|
# resp.cluster.connector_config.provider #=> String
|
1869
1916
|
# resp.cluster.connector_config.role_arn #=> String
|
1917
|
+
# resp.cluster.id #=> String
|
1918
|
+
# resp.cluster.health.issues #=> Array
|
1919
|
+
# resp.cluster.health.issues[0].code #=> String, one of "AccessDenied", "ClusterUnreachable", "ConfigurationConflict", "InternalFailure", "ResourceLimitExceeded", "ResourceNotFound"
|
1920
|
+
# resp.cluster.health.issues[0].message #=> String
|
1921
|
+
# resp.cluster.health.issues[0].resource_ids #=> Array
|
1922
|
+
# resp.cluster.health.issues[0].resource_ids[0] #=> String
|
1923
|
+
# resp.cluster.outpost_config.outpost_arns #=> Array
|
1924
|
+
# resp.cluster.outpost_config.outpost_arns[0] #=> String
|
1925
|
+
# resp.cluster.outpost_config.control_plane_instance_type #=> String
|
1870
1926
|
#
|
1871
1927
|
#
|
1872
1928
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -1943,7 +1999,7 @@ module Aws::EKS
|
|
1943
1999
|
# associated to.
|
1944
2000
|
#
|
1945
2001
|
# @option params [required, Types::IdentityProviderConfig] :identity_provider_config
|
1946
|
-
# An object
|
2002
|
+
# An object representing an identity provider configuration.
|
1947
2003
|
#
|
1948
2004
|
# @return [Types::DescribeIdentityProviderConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1949
2005
|
#
|
@@ -2137,7 +2193,7 @@ module Aws::EKS
|
|
2137
2193
|
# The name of the cluster to disassociate an identity provider from.
|
2138
2194
|
#
|
2139
2195
|
# @option params [required, Types::IdentityProviderConfig] :identity_provider_config
|
2140
|
-
# An object
|
2196
|
+
# An object representing an identity provider configuration.
|
2141
2197
|
#
|
2142
2198
|
# @option params [String] :client_request_token
|
2143
2199
|
# A unique, case-sensitive identifier that you provide to ensure the
|
@@ -2691,6 +2747,15 @@ module Aws::EKS
|
|
2691
2747
|
# resp.cluster.connector_config.activation_expiry #=> Time
|
2692
2748
|
# resp.cluster.connector_config.provider #=> String
|
2693
2749
|
# resp.cluster.connector_config.role_arn #=> String
|
2750
|
+
# resp.cluster.id #=> String
|
2751
|
+
# resp.cluster.health.issues #=> Array
|
2752
|
+
# resp.cluster.health.issues[0].code #=> String, one of "AccessDenied", "ClusterUnreachable", "ConfigurationConflict", "InternalFailure", "ResourceLimitExceeded", "ResourceNotFound"
|
2753
|
+
# resp.cluster.health.issues[0].message #=> String
|
2754
|
+
# resp.cluster.health.issues[0].resource_ids #=> Array
|
2755
|
+
# resp.cluster.health.issues[0].resource_ids[0] #=> String
|
2756
|
+
# resp.cluster.outpost_config.outpost_arns #=> Array
|
2757
|
+
# resp.cluster.outpost_config.outpost_arns[0] #=> String
|
2758
|
+
# resp.cluster.outpost_config.control_plane_instance_type #=> String
|
2694
2759
|
#
|
2695
2760
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/RegisterCluster AWS API Documentation
|
2696
2761
|
#
|
@@ -3305,7 +3370,7 @@ module Aws::EKS
|
|
3305
3370
|
params: params,
|
3306
3371
|
config: config)
|
3307
3372
|
context[:gem_name] = 'aws-sdk-eks'
|
3308
|
-
context[:gem_version] = '1.
|
3373
|
+
context[:gem_version] = '1.77.0'
|
3309
3374
|
Seahorse::Client::Request.new(handlers, context)
|
3310
3375
|
end
|
3311
3376
|
|
@@ -40,6 +40,10 @@ module Aws::EKS
|
|
40
40
|
Certificate = Shapes::StructureShape.new(name: 'Certificate')
|
41
41
|
ClientException = Shapes::StructureShape.new(name: 'ClientException')
|
42
42
|
Cluster = Shapes::StructureShape.new(name: 'Cluster')
|
43
|
+
ClusterHealth = Shapes::StructureShape.new(name: 'ClusterHealth')
|
44
|
+
ClusterIssue = Shapes::StructureShape.new(name: 'ClusterIssue')
|
45
|
+
ClusterIssueCode = Shapes::StringShape.new(name: 'ClusterIssueCode')
|
46
|
+
ClusterIssueList = Shapes::ListShape.new(name: 'ClusterIssueList')
|
43
47
|
ClusterName = Shapes::StringShape.new(name: 'ClusterName')
|
44
48
|
ClusterStatus = Shapes::StringShape.new(name: 'ClusterStatus')
|
45
49
|
Compatibilities = Shapes::ListShape.new(name: 'Compatibilities')
|
@@ -142,6 +146,8 @@ module Aws::EKS
|
|
142
146
|
OIDC = Shapes::StructureShape.new(name: 'OIDC')
|
143
147
|
OidcIdentityProviderConfig = Shapes::StructureShape.new(name: 'OidcIdentityProviderConfig')
|
144
148
|
OidcIdentityProviderConfigRequest = Shapes::StructureShape.new(name: 'OidcIdentityProviderConfigRequest')
|
149
|
+
OutpostConfigRequest = Shapes::StructureShape.new(name: 'OutpostConfigRequest')
|
150
|
+
OutpostConfigResponse = Shapes::StructureShape.new(name: 'OutpostConfigResponse')
|
145
151
|
PercentCapacity = Shapes::IntegerShape.new(name: 'PercentCapacity')
|
146
152
|
Provider = Shapes::StructureShape.new(name: 'Provider')
|
147
153
|
RegisterClusterRequest = Shapes::StructureShape.new(name: 'RegisterClusterRequest')
|
@@ -293,8 +299,21 @@ module Aws::EKS
|
|
293
299
|
Cluster.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
294
300
|
Cluster.add_member(:encryption_config, Shapes::ShapeRef.new(shape: EncryptionConfigList, location_name: "encryptionConfig"))
|
295
301
|
Cluster.add_member(:connector_config, Shapes::ShapeRef.new(shape: ConnectorConfigResponse, location_name: "connectorConfig"))
|
302
|
+
Cluster.add_member(:id, Shapes::ShapeRef.new(shape: String, location_name: "id"))
|
303
|
+
Cluster.add_member(:health, Shapes::ShapeRef.new(shape: ClusterHealth, location_name: "health"))
|
304
|
+
Cluster.add_member(:outpost_config, Shapes::ShapeRef.new(shape: OutpostConfigResponse, location_name: "outpostConfig"))
|
296
305
|
Cluster.struct_class = Types::Cluster
|
297
306
|
|
307
|
+
ClusterHealth.add_member(:issues, Shapes::ShapeRef.new(shape: ClusterIssueList, location_name: "issues"))
|
308
|
+
ClusterHealth.struct_class = Types::ClusterHealth
|
309
|
+
|
310
|
+
ClusterIssue.add_member(:code, Shapes::ShapeRef.new(shape: ClusterIssueCode, location_name: "code"))
|
311
|
+
ClusterIssue.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
312
|
+
ClusterIssue.add_member(:resource_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "resourceIds"))
|
313
|
+
ClusterIssue.struct_class = Types::ClusterIssue
|
314
|
+
|
315
|
+
ClusterIssueList.member = Shapes::ShapeRef.new(shape: ClusterIssue)
|
316
|
+
|
298
317
|
Compatibilities.member = Shapes::ShapeRef.new(shape: Compatibility)
|
299
318
|
|
300
319
|
Compatibility.add_member(:cluster_version, Shapes::ShapeRef.new(shape: String, location_name: "clusterVersion"))
|
@@ -334,6 +353,7 @@ module Aws::EKS
|
|
334
353
|
CreateClusterRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: String, location_name: "clientRequestToken", metadata: {"idempotencyToken"=>true}))
|
335
354
|
CreateClusterRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
336
355
|
CreateClusterRequest.add_member(:encryption_config, Shapes::ShapeRef.new(shape: EncryptionConfigList, location_name: "encryptionConfig"))
|
356
|
+
CreateClusterRequest.add_member(:outpost_config, Shapes::ShapeRef.new(shape: OutpostConfigRequest, location_name: "outpostConfig"))
|
337
357
|
CreateClusterRequest.struct_class = Types::CreateClusterRequest
|
338
358
|
|
339
359
|
CreateClusterResponse.add_member(:cluster, Shapes::ShapeRef.new(shape: Cluster, location_name: "cluster"))
|
@@ -694,6 +714,14 @@ module Aws::EKS
|
|
694
714
|
OidcIdentityProviderConfigRequest.add_member(:required_claims, Shapes::ShapeRef.new(shape: requiredClaimsMap, location_name: "requiredClaims"))
|
695
715
|
OidcIdentityProviderConfigRequest.struct_class = Types::OidcIdentityProviderConfigRequest
|
696
716
|
|
717
|
+
OutpostConfigRequest.add_member(:outpost_arns, Shapes::ShapeRef.new(shape: StringList, required: true, location_name: "outpostArns"))
|
718
|
+
OutpostConfigRequest.add_member(:control_plane_instance_type, Shapes::ShapeRef.new(shape: String, required: true, location_name: "controlPlaneInstanceType"))
|
719
|
+
OutpostConfigRequest.struct_class = Types::OutpostConfigRequest
|
720
|
+
|
721
|
+
OutpostConfigResponse.add_member(:outpost_arns, Shapes::ShapeRef.new(shape: StringList, required: true, location_name: "outpostArns"))
|
722
|
+
OutpostConfigResponse.add_member(:control_plane_instance_type, Shapes::ShapeRef.new(shape: String, required: true, location_name: "controlPlaneInstanceType"))
|
723
|
+
OutpostConfigResponse.struct_class = Types::OutpostConfigResponse
|
724
|
+
|
697
725
|
Provider.add_member(:key_arn, Shapes::ShapeRef.new(shape: String, location_name: "keyArn"))
|
698
726
|
Provider.struct_class = Types::Provider
|
699
727
|
|
data/lib/aws-sdk-eks/types.rb
CHANGED
@@ -54,7 +54,7 @@ module Aws::EKS
|
|
54
54
|
# @return [String]
|
55
55
|
#
|
56
56
|
# @!attribute [rw] health
|
57
|
-
# An object
|
57
|
+
# An object representing the health of the add-on.
|
58
58
|
# @return [Types::AddonHealth]
|
59
59
|
#
|
60
60
|
# @!attribute [rw] addon_arn
|
@@ -101,7 +101,7 @@ module Aws::EKS
|
|
101
101
|
# The health of the add-on.
|
102
102
|
#
|
103
103
|
# @!attribute [rw] issues
|
104
|
-
# An object
|
104
|
+
# An object representing the health issues for an add-on.
|
105
105
|
# @return [Array<Types::AddonIssue>]
|
106
106
|
#
|
107
107
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/AddonHealth AWS API Documentation
|
@@ -123,8 +123,8 @@ module Aws::EKS
|
|
123
123
|
# @return [String]
|
124
124
|
#
|
125
125
|
# @!attribute [rw] addon_versions
|
126
|
-
# An object
|
127
|
-
#
|
126
|
+
# An object representing information about available add-on versions
|
127
|
+
# and compatible Kubernetes versions.
|
128
128
|
# @return [Array<Types::AddonVersionInfo>]
|
129
129
|
#
|
130
130
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/AddonInfo AWS API Documentation
|
@@ -173,7 +173,7 @@ module Aws::EKS
|
|
173
173
|
# @return [Array<String>]
|
174
174
|
#
|
175
175
|
# @!attribute [rw] compatibilities
|
176
|
-
# An object
|
176
|
+
# An object representing the compatibilities of a version.
|
177
177
|
# @return [Array<Types::Compatibility>]
|
178
178
|
#
|
179
179
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/AddonVersionInfo AWS API Documentation
|
@@ -269,7 +269,7 @@ module Aws::EKS
|
|
269
269
|
# @return [String]
|
270
270
|
#
|
271
271
|
# @!attribute [rw] oidc
|
272
|
-
# An object
|
272
|
+
# An object representing an OpenID Connect (OIDC) identity provider
|
273
273
|
# configuration.
|
274
274
|
# @return [Types::OidcIdentityProviderConfigRequest]
|
275
275
|
#
|
@@ -485,6 +485,24 @@ module Aws::EKS
|
|
485
485
|
# The configuration used to connect to a cluster for registration.
|
486
486
|
# @return [Types::ConnectorConfigResponse]
|
487
487
|
#
|
488
|
+
# @!attribute [rw] id
|
489
|
+
# The ID of your local Amazon EKS cluster on an Amazon Web Services
|
490
|
+
# Outpost. This property isn't available for an Amazon EKS cluster on
|
491
|
+
# the Amazon Web Services cloud.
|
492
|
+
# @return [String]
|
493
|
+
#
|
494
|
+
# @!attribute [rw] health
|
495
|
+
# An object representing the health of your local Amazon EKS cluster
|
496
|
+
# on an Amazon Web Services Outpost. This object isn't available for
|
497
|
+
# clusters on the Amazon Web Services cloud.
|
498
|
+
# @return [Types::ClusterHealth]
|
499
|
+
#
|
500
|
+
# @!attribute [rw] outpost_config
|
501
|
+
# An object representing the configuration of your local Amazon EKS
|
502
|
+
# cluster on an Amazon Web Services Outpost. This object isn't
|
503
|
+
# available for clusters on the Amazon Web Services cloud.
|
504
|
+
# @return [Types::OutpostConfigResponse]
|
505
|
+
#
|
488
506
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/Cluster AWS API Documentation
|
489
507
|
#
|
490
508
|
class Cluster < Struct.new(
|
@@ -504,7 +522,53 @@ module Aws::EKS
|
|
504
522
|
:platform_version,
|
505
523
|
:tags,
|
506
524
|
:encryption_config,
|
507
|
-
:connector_config
|
525
|
+
:connector_config,
|
526
|
+
:id,
|
527
|
+
:health,
|
528
|
+
:outpost_config)
|
529
|
+
SENSITIVE = []
|
530
|
+
include Aws::Structure
|
531
|
+
end
|
532
|
+
|
533
|
+
# An object representing the health of your local Amazon EKS cluster on
|
534
|
+
# an Amazon Web Services Outpost. You can't use this API with an Amazon
|
535
|
+
# EKS cluster on the Amazon Web Services cloud.
|
536
|
+
#
|
537
|
+
# @!attribute [rw] issues
|
538
|
+
# An object representing the health issues of your local Amazon EKS
|
539
|
+
# cluster on an Amazon Web Services Outpost.
|
540
|
+
# @return [Array<Types::ClusterIssue>]
|
541
|
+
#
|
542
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/ClusterHealth AWS API Documentation
|
543
|
+
#
|
544
|
+
class ClusterHealth < Struct.new(
|
545
|
+
:issues)
|
546
|
+
SENSITIVE = []
|
547
|
+
include Aws::Structure
|
548
|
+
end
|
549
|
+
|
550
|
+
# An issue with your local Amazon EKS cluster on an Amazon Web Services
|
551
|
+
# Outpost. You can't use this API with an Amazon EKS cluster on the
|
552
|
+
# Amazon Web Services cloud.
|
553
|
+
#
|
554
|
+
# @!attribute [rw] code
|
555
|
+
# The error code of the issue.
|
556
|
+
# @return [String]
|
557
|
+
#
|
558
|
+
# @!attribute [rw] message
|
559
|
+
# A description of the issue.
|
560
|
+
# @return [String]
|
561
|
+
#
|
562
|
+
# @!attribute [rw] resource_ids
|
563
|
+
# The resource IDs that the issue relates to.
|
564
|
+
# @return [Array<String>]
|
565
|
+
#
|
566
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/ClusterIssue AWS API Documentation
|
567
|
+
#
|
568
|
+
class ClusterIssue < Struct.new(
|
569
|
+
:code,
|
570
|
+
:message,
|
571
|
+
:resource_ids)
|
508
572
|
SENSITIVE = []
|
509
573
|
include Aws::Structure
|
510
574
|
end
|
@@ -764,6 +828,10 @@ module Aws::EKS
|
|
764
828
|
# },
|
765
829
|
# },
|
766
830
|
# ],
|
831
|
+
# outpost_config: {
|
832
|
+
# outpost_arns: ["String"], # required
|
833
|
+
# control_plane_instance_type: "String", # required
|
834
|
+
# },
|
767
835
|
# }
|
768
836
|
#
|
769
837
|
# @!attribute [rw] name
|
@@ -772,8 +840,12 @@ module Aws::EKS
|
|
772
840
|
#
|
773
841
|
# @!attribute [rw] version
|
774
842
|
# The desired Kubernetes version for your cluster. If you don't
|
775
|
-
# specify a value here, the
|
843
|
+
# specify a value here, the default version available in Amazon EKS is
|
776
844
|
# used.
|
845
|
+
#
|
846
|
+
# <note markdown="1"> The default version might not be the latest version available.
|
847
|
+
#
|
848
|
+
# </note>
|
777
849
|
# @return [String]
|
778
850
|
#
|
779
851
|
# @!attribute [rw] role_arn
|
@@ -845,6 +917,19 @@ module Aws::EKS
|
|
845
917
|
# The encryption configuration for the cluster.
|
846
918
|
# @return [Array<Types::EncryptionConfig>]
|
847
919
|
#
|
920
|
+
# @!attribute [rw] outpost_config
|
921
|
+
# An object representing the configuration of your local Amazon EKS
|
922
|
+
# cluster on an Amazon Web Services Outpost. Before creating a local
|
923
|
+
# cluster on an Outpost, review [Creating an Amazon EKS cluster on an
|
924
|
+
# Amazon Web Services Outpost][1] in the *Amazon EKS User Guide*. This
|
925
|
+
# object isn't available for creating Amazon EKS clusters on the
|
926
|
+
# Amazon Web Services cloud.
|
927
|
+
#
|
928
|
+
#
|
929
|
+
#
|
930
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/create-cluster-outpost.html
|
931
|
+
# @return [Types::OutpostConfigRequest]
|
932
|
+
#
|
848
933
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/CreateClusterRequest AWS API Documentation
|
849
934
|
#
|
850
935
|
class CreateClusterRequest < Struct.new(
|
@@ -856,7 +941,8 @@ module Aws::EKS
|
|
856
941
|
:logging,
|
857
942
|
:client_request_token,
|
858
943
|
:tags,
|
859
|
-
:encryption_config
|
944
|
+
:encryption_config,
|
945
|
+
:outpost_config)
|
860
946
|
SENSITIVE = []
|
861
947
|
include Aws::Structure
|
862
948
|
end
|
@@ -1651,7 +1737,7 @@ module Aws::EKS
|
|
1651
1737
|
# @return [String]
|
1652
1738
|
#
|
1653
1739
|
# @!attribute [rw] identity_provider_config
|
1654
|
-
# An object
|
1740
|
+
# An object representing an identity provider configuration.
|
1655
1741
|
# @return [Types::IdentityProviderConfig]
|
1656
1742
|
#
|
1657
1743
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DescribeIdentityProviderConfigRequest AWS API Documentation
|
@@ -1786,7 +1872,7 @@ module Aws::EKS
|
|
1786
1872
|
# @return [String]
|
1787
1873
|
#
|
1788
1874
|
# @!attribute [rw] identity_provider_config
|
1789
|
-
# An object
|
1875
|
+
# An object representing an identity provider configuration.
|
1790
1876
|
# @return [Types::IdentityProviderConfig]
|
1791
1877
|
#
|
1792
1878
|
# @!attribute [rw] client_request_token
|
@@ -2045,7 +2131,7 @@ module Aws::EKS
|
|
2045
2131
|
# The full description of your identity configuration.
|
2046
2132
|
#
|
2047
2133
|
# @!attribute [rw] oidc
|
2048
|
-
# An object
|
2134
|
+
# An object representing an OpenID Connect (OIDC) identity provider
|
2049
2135
|
# configuration.
|
2050
2136
|
# @return [Types::OidcIdentityProviderConfig]
|
2051
2137
|
#
|
@@ -3223,8 +3309,8 @@ module Aws::EKS
|
|
3223
3309
|
include Aws::Structure
|
3224
3310
|
end
|
3225
3311
|
|
3226
|
-
# An object
|
3227
|
-
#
|
3312
|
+
# An object representing the configuration for an OpenID Connect (OIDC)
|
3313
|
+
# identity provider.
|
3228
3314
|
#
|
3229
3315
|
# @!attribute [rw] identity_provider_config_name
|
3230
3316
|
# The name of the configuration.
|
@@ -3404,6 +3490,87 @@ module Aws::EKS
|
|
3404
3490
|
include Aws::Structure
|
3405
3491
|
end
|
3406
3492
|
|
3493
|
+
# The configuration of your local Amazon EKS cluster on an Amazon Web
|
3494
|
+
# Services Outpost. Before creating a cluster on an Outpost, review
|
3495
|
+
# [Creating a local Amazon EKS cluster on an Amazon Web Services
|
3496
|
+
# Outpost][1] in the *Amazon EKS User Guide*. This API isn't available
|
3497
|
+
# for Amazon EKS clusters on the Amazon Web Services cloud.
|
3498
|
+
#
|
3499
|
+
#
|
3500
|
+
#
|
3501
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/create-cluster-outpost.html
|
3502
|
+
#
|
3503
|
+
# @note When making an API call, you may pass OutpostConfigRequest
|
3504
|
+
# data as a hash:
|
3505
|
+
#
|
3506
|
+
# {
|
3507
|
+
# outpost_arns: ["String"], # required
|
3508
|
+
# control_plane_instance_type: "String", # required
|
3509
|
+
# }
|
3510
|
+
#
|
3511
|
+
# @!attribute [rw] outpost_arns
|
3512
|
+
# The ARN of the Outpost that you want to use for your local Amazon
|
3513
|
+
# EKS cluster on Outposts. Only a single Outpost ARN is supported.
|
3514
|
+
# @return [Array<String>]
|
3515
|
+
#
|
3516
|
+
# @!attribute [rw] control_plane_instance_type
|
3517
|
+
# The Amazon EC2 instance type that you want to use for your local
|
3518
|
+
# Amazon EKS cluster on Outposts. The instance type that you specify
|
3519
|
+
# is used for all Kubernetes control plane instances. The instance
|
3520
|
+
# type can't be changed after cluster creation.
|
3521
|
+
#
|
3522
|
+
# Choose an instance type based on the number of nodes that your
|
3523
|
+
# cluster will have. If your cluster will have:
|
3524
|
+
#
|
3525
|
+
# * 1–20 nodes, then we recommend specifying a `large` instance type.
|
3526
|
+
#
|
3527
|
+
# * 21–100 nodes, then we recommend specifying an `xlarge` instance
|
3528
|
+
# type.
|
3529
|
+
#
|
3530
|
+
# * 101–250 nodes, then we recommend specifying a `2xlarge` instance
|
3531
|
+
# type.
|
3532
|
+
#
|
3533
|
+
# For a list of the available Amazon EC2 instance types, see Compute
|
3534
|
+
# and storage in [Outposts rack features][1]. The control plane is not
|
3535
|
+
# automatically scaled by Amazon EKS.
|
3536
|
+
#
|
3537
|
+
#
|
3538
|
+
#
|
3539
|
+
# [1]: http://aws.amazon.com/outposts/rack/features/
|
3540
|
+
# @return [String]
|
3541
|
+
#
|
3542
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/OutpostConfigRequest AWS API Documentation
|
3543
|
+
#
|
3544
|
+
class OutpostConfigRequest < Struct.new(
|
3545
|
+
:outpost_arns,
|
3546
|
+
:control_plane_instance_type)
|
3547
|
+
SENSITIVE = []
|
3548
|
+
include Aws::Structure
|
3549
|
+
end
|
3550
|
+
|
3551
|
+
# An object representing the configuration of your local Amazon EKS
|
3552
|
+
# cluster on an Amazon Web Services Outpost. This API isn't available
|
3553
|
+
# for Amazon EKS clusters on the Amazon Web Services cloud.
|
3554
|
+
#
|
3555
|
+
# @!attribute [rw] outpost_arns
|
3556
|
+
# The ARN of the Outpost that you specified for use with your local
|
3557
|
+
# Amazon EKS cluster on Outposts.
|
3558
|
+
# @return [Array<String>]
|
3559
|
+
#
|
3560
|
+
# @!attribute [rw] control_plane_instance_type
|
3561
|
+
# The Amazon EC2 instance type used for the control plane. The
|
3562
|
+
# instance type is the same for all control plane instances.
|
3563
|
+
# @return [String]
|
3564
|
+
#
|
3565
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/OutpostConfigResponse AWS API Documentation
|
3566
|
+
#
|
3567
|
+
class OutpostConfigResponse < Struct.new(
|
3568
|
+
:outpost_arns,
|
3569
|
+
:control_plane_instance_type)
|
3570
|
+
SENSITIVE = []
|
3571
|
+
include Aws::Structure
|
3572
|
+
end
|
3573
|
+
|
3407
3574
|
# Identifies the Key Management Service (KMS) key used to encrypt the
|
3408
3575
|
# secrets.
|
3409
3576
|
#
|
data/lib/aws-sdk-eks.rb
CHANGED
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.77.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: 2022-09-
|
11
|
+
date: 2022-09-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|