aws-sdk-eks 1.76.0 → 1.78.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-eks/client.rb +89 -7
- data/lib/aws-sdk-eks/client_api.rb +28 -0
- data/lib/aws-sdk-eks/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-eks/endpoint_provider.rb +121 -0
- data/lib/aws-sdk-eks/endpoints.rb +491 -0
- data/lib/aws-sdk-eks/plugins/endpoints.rb +136 -0
- data/lib/aws-sdk-eks/types.rb +181 -14
- data/lib/aws-sdk-eks.rb +5 -1
- metadata +8 -4
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
@@ -13,10 +13,14 @@ require 'aws-sigv4'
|
|
13
13
|
|
14
14
|
require_relative 'aws-sdk-eks/types'
|
15
15
|
require_relative 'aws-sdk-eks/client_api'
|
16
|
+
require_relative 'aws-sdk-eks/plugins/endpoints.rb'
|
16
17
|
require_relative 'aws-sdk-eks/client'
|
17
18
|
require_relative 'aws-sdk-eks/errors'
|
18
19
|
require_relative 'aws-sdk-eks/waiters'
|
19
20
|
require_relative 'aws-sdk-eks/resource'
|
21
|
+
require_relative 'aws-sdk-eks/endpoint_parameters'
|
22
|
+
require_relative 'aws-sdk-eks/endpoint_provider'
|
23
|
+
require_relative 'aws-sdk-eks/endpoints'
|
20
24
|
require_relative 'aws-sdk-eks/customizations'
|
21
25
|
|
22
26
|
# This module provides support for Amazon Elastic Kubernetes Service. This module is available in the
|
@@ -49,6 +53,6 @@ require_relative 'aws-sdk-eks/customizations'
|
|
49
53
|
# @!group service
|
50
54
|
module Aws::EKS
|
51
55
|
|
52
|
-
GEM_VERSION = '1.
|
56
|
+
GEM_VERSION = '1.78.0'
|
53
57
|
|
54
58
|
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.78.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-
|
11
|
+
date: 2022-10-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.165.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.165.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -59,7 +59,11 @@ files:
|
|
59
59
|
- lib/aws-sdk-eks/client.rb
|
60
60
|
- lib/aws-sdk-eks/client_api.rb
|
61
61
|
- lib/aws-sdk-eks/customizations.rb
|
62
|
+
- lib/aws-sdk-eks/endpoint_parameters.rb
|
63
|
+
- lib/aws-sdk-eks/endpoint_provider.rb
|
64
|
+
- lib/aws-sdk-eks/endpoints.rb
|
62
65
|
- lib/aws-sdk-eks/errors.rb
|
66
|
+
- lib/aws-sdk-eks/plugins/endpoints.rb
|
63
67
|
- lib/aws-sdk-eks/resource.rb
|
64
68
|
- lib/aws-sdk-eks/types.rb
|
65
69
|
- lib/aws-sdk-eks/waiters.rb
|