cdk-lambda-subminute 2.0.328 → 2.0.330
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/.jsii +3 -3
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/cognito-idp-2016-04-18.min.json +163 -152
- package/node_modules/aws-sdk/apis/eks-2017-11-01.min.json +507 -112
- package/node_modules/aws-sdk/apis/eks-2017-11-01.paginators.json +22 -0
- package/node_modules/aws-sdk/apis/route53resolver-2018-04-01.min.json +86 -73
- package/node_modules/aws-sdk/clients/cognitoidentityserviceprovider.d.ts +96 -81
- package/node_modules/aws-sdk/clients/eks.d.ts +592 -178
- package/node_modules/aws-sdk/clients/quicksight.d.ts +2 -2
- package/node_modules/aws-sdk/clients/route53resolver.d.ts +35 -17
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +5 -5
- package/node_modules/aws-sdk/dist/aws-sdk.js +166 -155
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +9 -9
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +4 -4
@@ -13,21 +13,37 @@ declare class EKS extends Service {
|
|
13
13
|
constructor(options?: EKS.Types.ClientConfiguration)
|
14
14
|
config: Config & EKS.Types.ClientConfiguration;
|
15
15
|
/**
|
16
|
-
*
|
16
|
+
* Associates an access policy and its scope to an access entry. For more information about associating access policies, see Associating and disassociating access policies to and from access entries in the Amazon EKS User Guide.
|
17
|
+
*/
|
18
|
+
associateAccessPolicy(params: EKS.Types.AssociateAccessPolicyRequest, callback?: (err: AWSError, data: EKS.Types.AssociateAccessPolicyResponse) => void): Request<EKS.Types.AssociateAccessPolicyResponse, AWSError>;
|
19
|
+
/**
|
20
|
+
* Associates an access policy and its scope to an access entry. For more information about associating access policies, see Associating and disassociating access policies to and from access entries in the Amazon EKS User Guide.
|
21
|
+
*/
|
22
|
+
associateAccessPolicy(callback?: (err: AWSError, data: EKS.Types.AssociateAccessPolicyResponse) => void): Request<EKS.Types.AssociateAccessPolicyResponse, AWSError>;
|
23
|
+
/**
|
24
|
+
* Associates an encryption configuration to an existing cluster. Use this API to enable encryption on existing clusters that don't already have encryption enabled. This allows you to implement a defense-in-depth security strategy without migrating applications to new Amazon EKS clusters.
|
17
25
|
*/
|
18
26
|
associateEncryptionConfig(params: EKS.Types.AssociateEncryptionConfigRequest, callback?: (err: AWSError, data: EKS.Types.AssociateEncryptionConfigResponse) => void): Request<EKS.Types.AssociateEncryptionConfigResponse, AWSError>;
|
19
27
|
/**
|
20
|
-
*
|
28
|
+
* Associates an encryption configuration to an existing cluster. Use this API to enable encryption on existing clusters that don't already have encryption enabled. This allows you to implement a defense-in-depth security strategy without migrating applications to new Amazon EKS clusters.
|
21
29
|
*/
|
22
30
|
associateEncryptionConfig(callback?: (err: AWSError, data: EKS.Types.AssociateEncryptionConfigResponse) => void): Request<EKS.Types.AssociateEncryptionConfigResponse, AWSError>;
|
23
31
|
/**
|
24
|
-
*
|
32
|
+
* Associates an identity provider configuration to a cluster. If you want to authenticate identities using an identity provider, you can create an identity provider configuration and associate it to your cluster. After configuring authentication to your cluster you can create Kubernetes Role and ClusterRole objects, assign permissions to them, and then bind them to the identities using Kubernetes RoleBinding and ClusterRoleBinding objects. For more information see Using RBAC Authorization in the Kubernetes documentation.
|
25
33
|
*/
|
26
34
|
associateIdentityProviderConfig(params: EKS.Types.AssociateIdentityProviderConfigRequest, callback?: (err: AWSError, data: EKS.Types.AssociateIdentityProviderConfigResponse) => void): Request<EKS.Types.AssociateIdentityProviderConfigResponse, AWSError>;
|
27
35
|
/**
|
28
|
-
*
|
36
|
+
* Associates an identity provider configuration to a cluster. If you want to authenticate identities using an identity provider, you can create an identity provider configuration and associate it to your cluster. After configuring authentication to your cluster you can create Kubernetes Role and ClusterRole objects, assign permissions to them, and then bind them to the identities using Kubernetes RoleBinding and ClusterRoleBinding objects. For more information see Using RBAC Authorization in the Kubernetes documentation.
|
29
37
|
*/
|
30
38
|
associateIdentityProviderConfig(callback?: (err: AWSError, data: EKS.Types.AssociateIdentityProviderConfigResponse) => void): Request<EKS.Types.AssociateIdentityProviderConfigResponse, AWSError>;
|
39
|
+
/**
|
40
|
+
* Creates an access entry. An access entry allows an IAM principal to access your cluster. Access entries can replace the need to maintain entries in the aws-auth ConfigMap for authentication. You have the following options for authorizing an IAM principal to access Kubernetes objects on your cluster: Kubernetes role-based access control (RBAC), Amazon EKS, or both. Kubernetes RBAC authorization requires you to create and manage Kubernetes Role, ClusterRole, RoleBinding, and ClusterRoleBinding objects, in addition to managing access entries. If you use Amazon EKS authorization exclusively, you don't need to create and manage Kubernetes Role, ClusterRole, RoleBinding, and ClusterRoleBinding objects. For more information about access entries, see Access entries in the Amazon EKS User Guide.
|
41
|
+
*/
|
42
|
+
createAccessEntry(params: EKS.Types.CreateAccessEntryRequest, callback?: (err: AWSError, data: EKS.Types.CreateAccessEntryResponse) => void): Request<EKS.Types.CreateAccessEntryResponse, AWSError>;
|
43
|
+
/**
|
44
|
+
* Creates an access entry. An access entry allows an IAM principal to access your cluster. Access entries can replace the need to maintain entries in the aws-auth ConfigMap for authentication. You have the following options for authorizing an IAM principal to access Kubernetes objects on your cluster: Kubernetes role-based access control (RBAC), Amazon EKS, or both. Kubernetes RBAC authorization requires you to create and manage Kubernetes Role, ClusterRole, RoleBinding, and ClusterRoleBinding objects, in addition to managing access entries. If you use Amazon EKS authorization exclusively, you don't need to create and manage Kubernetes Role, ClusterRole, RoleBinding, and ClusterRoleBinding objects. For more information about access entries, see Access entries in the Amazon EKS User Guide.
|
45
|
+
*/
|
46
|
+
createAccessEntry(callback?: (err: AWSError, data: EKS.Types.CreateAccessEntryResponse) => void): Request<EKS.Types.CreateAccessEntryResponse, AWSError>;
|
31
47
|
/**
|
32
48
|
* Creates an Amazon EKS add-on. Amazon EKS add-ons help to automate the provisioning and lifecycle management of common operational software for Amazon EKS clusters. For more information, see Amazon EKS add-ons in the Amazon EKS User Guide.
|
33
49
|
*/
|
@@ -37,11 +53,11 @@ declare class EKS extends Service {
|
|
37
53
|
*/
|
38
54
|
createAddon(callback?: (err: AWSError, data: EKS.Types.CreateAddonResponse) => void): Request<EKS.Types.CreateAddonResponse, AWSError>;
|
39
55
|
/**
|
40
|
-
* Creates an Amazon EKS control plane.
|
56
|
+
* Creates an Amazon EKS control plane. The Amazon EKS control plane consists of control plane instances that run the Kubernetes software, such as etcd and the API server. The control plane runs in an account managed by Amazon Web Services, and the Kubernetes API is exposed by the Amazon EKS API server endpoint. Each Amazon EKS cluster control plane is single tenant and unique. It runs on its own set of Amazon EC2 instances. The cluster control plane is provisioned across multiple Availability Zones and fronted by an Elastic Load Balancing Network Load Balancer. Amazon EKS also provisions elastic network interfaces in your VPC subnets to provide connectivity from the control plane instances to the nodes (for example, to support kubectl exec, logs, and proxy data flows). Amazon EKS nodes run in your Amazon Web Services account and connect to your cluster's control plane over the Kubernetes API server endpoint and a certificate file that is created for your cluster. You can use the endpointPublicAccess and endpointPrivateAccess parameters to enable or disable public and private access to your cluster's Kubernetes API server endpoint. By default, public access is enabled, and private access is disabled. For more information, see Amazon EKS Cluster Endpoint Access Control in the Amazon EKS User Guide . You can use the logging parameter to enable or disable exporting the Kubernetes control plane logs for your cluster to CloudWatch Logs. By default, cluster control plane logs aren't exported to CloudWatch Logs. For more information, see Amazon EKS Cluster Control Plane Logs in the Amazon EKS User Guide . CloudWatch Logs ingestion, archive storage, and data scanning rates apply to exported control plane logs. For more information, see CloudWatch Pricing. In most cases, it takes several minutes to create a cluster. After you create an Amazon EKS cluster, you must configure your Kubernetes tooling to communicate with the API server and launch nodes into your cluster. For more information, see Managing Cluster Authentication and Launching Amazon EKS nodes in the Amazon EKS User Guide.
|
41
57
|
*/
|
42
58
|
createCluster(params: EKS.Types.CreateClusterRequest, callback?: (err: AWSError, data: EKS.Types.CreateClusterResponse) => void): Request<EKS.Types.CreateClusterResponse, AWSError>;
|
43
59
|
/**
|
44
|
-
* Creates an Amazon EKS control plane.
|
60
|
+
* Creates an Amazon EKS control plane. The Amazon EKS control plane consists of control plane instances that run the Kubernetes software, such as etcd and the API server. The control plane runs in an account managed by Amazon Web Services, and the Kubernetes API is exposed by the Amazon EKS API server endpoint. Each Amazon EKS cluster control plane is single tenant and unique. It runs on its own set of Amazon EC2 instances. The cluster control plane is provisioned across multiple Availability Zones and fronted by an Elastic Load Balancing Network Load Balancer. Amazon EKS also provisions elastic network interfaces in your VPC subnets to provide connectivity from the control plane instances to the nodes (for example, to support kubectl exec, logs, and proxy data flows). Amazon EKS nodes run in your Amazon Web Services account and connect to your cluster's control plane over the Kubernetes API server endpoint and a certificate file that is created for your cluster. You can use the endpointPublicAccess and endpointPrivateAccess parameters to enable or disable public and private access to your cluster's Kubernetes API server endpoint. By default, public access is enabled, and private access is disabled. For more information, see Amazon EKS Cluster Endpoint Access Control in the Amazon EKS User Guide . You can use the logging parameter to enable or disable exporting the Kubernetes control plane logs for your cluster to CloudWatch Logs. By default, cluster control plane logs aren't exported to CloudWatch Logs. For more information, see Amazon EKS Cluster Control Plane Logs in the Amazon EKS User Guide . CloudWatch Logs ingestion, archive storage, and data scanning rates apply to exported control plane logs. For more information, see CloudWatch Pricing. In most cases, it takes several minutes to create a cluster. After you create an Amazon EKS cluster, you must configure your Kubernetes tooling to communicate with the API server and launch nodes into your cluster. For more information, see Managing Cluster Authentication and Launching Amazon EKS nodes in the Amazon EKS User Guide.
|
45
61
|
*/
|
46
62
|
createCluster(callback?: (err: AWSError, data: EKS.Types.CreateClusterResponse) => void): Request<EKS.Types.CreateClusterResponse, AWSError>;
|
47
63
|
/**
|
@@ -53,43 +69,51 @@ declare class EKS extends Service {
|
|
53
69
|
*/
|
54
70
|
createEksAnywhereSubscription(callback?: (err: AWSError, data: EKS.Types.CreateEksAnywhereSubscriptionResponse) => void): Request<EKS.Types.CreateEksAnywhereSubscriptionResponse, AWSError>;
|
55
71
|
/**
|
56
|
-
* Creates an Fargate profile for your Amazon EKS cluster. You must have at least one Fargate profile in a cluster to be able to run pods on Fargate. The Fargate profile allows an administrator to declare which pods run on Fargate and specify which pods run on which Fargate profile. This declaration is done through the profile’s selectors. Each profile can have up to five selectors that contain a namespace and labels. A namespace is required for every selector. The label field consists of multiple optional key-value pairs. Pods that match the selectors are scheduled on Fargate. If a to-be-scheduled pod matches any of the selectors in the Fargate profile, then that pod is run on Fargate. When you create a Fargate profile, you must specify a pod execution role to use with the pods that are scheduled with the profile. This role is added to the cluster's Kubernetes Role Based Access Control (RBAC) for authorization so that the kubelet that is running on the Fargate infrastructure can register with your Amazon EKS cluster so that it can appear in your cluster as a node. The pod execution role also provides IAM permissions to the Fargate infrastructure to allow read access to Amazon ECR image repositories. For more information, see Pod Execution Role in the Amazon EKS User Guide. Fargate profiles are immutable. However, you can create a new updated profile to replace an existing profile and then delete the original after the updated profile has finished creating. If any Fargate profiles in a cluster are in the DELETING status, you must wait for that Fargate profile to finish deleting before you can create any other profiles in that cluster. For more information, see Fargate
|
72
|
+
* Creates an Fargate profile for your Amazon EKS cluster. You must have at least one Fargate profile in a cluster to be able to run pods on Fargate. The Fargate profile allows an administrator to declare which pods run on Fargate and specify which pods run on which Fargate profile. This declaration is done through the profile’s selectors. Each profile can have up to five selectors that contain a namespace and labels. A namespace is required for every selector. The label field consists of multiple optional key-value pairs. Pods that match the selectors are scheduled on Fargate. If a to-be-scheduled pod matches any of the selectors in the Fargate profile, then that pod is run on Fargate. When you create a Fargate profile, you must specify a pod execution role to use with the pods that are scheduled with the profile. This role is added to the cluster's Kubernetes Role Based Access Control (RBAC) for authorization so that the kubelet that is running on the Fargate infrastructure can register with your Amazon EKS cluster so that it can appear in your cluster as a node. The pod execution role also provides IAM permissions to the Fargate infrastructure to allow read access to Amazon ECR image repositories. For more information, see Pod Execution Role in the Amazon EKS User Guide. Fargate profiles are immutable. However, you can create a new updated profile to replace an existing profile and then delete the original after the updated profile has finished creating. If any Fargate profiles in a cluster are in the DELETING status, you must wait for that Fargate profile to finish deleting before you can create any other profiles in that cluster. For more information, see Fargate profile in the Amazon EKS User Guide.
|
57
73
|
*/
|
58
74
|
createFargateProfile(params: EKS.Types.CreateFargateProfileRequest, callback?: (err: AWSError, data: EKS.Types.CreateFargateProfileResponse) => void): Request<EKS.Types.CreateFargateProfileResponse, AWSError>;
|
59
75
|
/**
|
60
|
-
* Creates an Fargate profile for your Amazon EKS cluster. You must have at least one Fargate profile in a cluster to be able to run pods on Fargate. The Fargate profile allows an administrator to declare which pods run on Fargate and specify which pods run on which Fargate profile. This declaration is done through the profile’s selectors. Each profile can have up to five selectors that contain a namespace and labels. A namespace is required for every selector. The label field consists of multiple optional key-value pairs. Pods that match the selectors are scheduled on Fargate. If a to-be-scheduled pod matches any of the selectors in the Fargate profile, then that pod is run on Fargate. When you create a Fargate profile, you must specify a pod execution role to use with the pods that are scheduled with the profile. This role is added to the cluster's Kubernetes Role Based Access Control (RBAC) for authorization so that the kubelet that is running on the Fargate infrastructure can register with your Amazon EKS cluster so that it can appear in your cluster as a node. The pod execution role also provides IAM permissions to the Fargate infrastructure to allow read access to Amazon ECR image repositories. For more information, see Pod Execution Role in the Amazon EKS User Guide. Fargate profiles are immutable. However, you can create a new updated profile to replace an existing profile and then delete the original after the updated profile has finished creating. If any Fargate profiles in a cluster are in the DELETING status, you must wait for that Fargate profile to finish deleting before you can create any other profiles in that cluster. For more information, see Fargate
|
76
|
+
* Creates an Fargate profile for your Amazon EKS cluster. You must have at least one Fargate profile in a cluster to be able to run pods on Fargate. The Fargate profile allows an administrator to declare which pods run on Fargate and specify which pods run on which Fargate profile. This declaration is done through the profile’s selectors. Each profile can have up to five selectors that contain a namespace and labels. A namespace is required for every selector. The label field consists of multiple optional key-value pairs. Pods that match the selectors are scheduled on Fargate. If a to-be-scheduled pod matches any of the selectors in the Fargate profile, then that pod is run on Fargate. When you create a Fargate profile, you must specify a pod execution role to use with the pods that are scheduled with the profile. This role is added to the cluster's Kubernetes Role Based Access Control (RBAC) for authorization so that the kubelet that is running on the Fargate infrastructure can register with your Amazon EKS cluster so that it can appear in your cluster as a node. The pod execution role also provides IAM permissions to the Fargate infrastructure to allow read access to Amazon ECR image repositories. For more information, see Pod Execution Role in the Amazon EKS User Guide. Fargate profiles are immutable. However, you can create a new updated profile to replace an existing profile and then delete the original after the updated profile has finished creating. If any Fargate profiles in a cluster are in the DELETING status, you must wait for that Fargate profile to finish deleting before you can create any other profiles in that cluster. For more information, see Fargate profile in the Amazon EKS User Guide.
|
61
77
|
*/
|
62
78
|
createFargateProfile(callback?: (err: AWSError, data: EKS.Types.CreateFargateProfileResponse) => void): Request<EKS.Types.CreateFargateProfileResponse, AWSError>;
|
63
79
|
/**
|
64
|
-
* Creates a managed node group for an Amazon EKS cluster. You can only create a node group for your cluster that is equal to the current Kubernetes version for the cluster. An Amazon EKS managed node group is an Amazon EC2 Auto Scaling group and associated Amazon EC2 instances that are managed by Amazon Web Services for an Amazon EKS cluster. For more information, see Managed node groups in the Amazon EKS User Guide. Windows AMI types are only supported for commercial Regions that support Windows Amazon EKS.
|
80
|
+
* Creates a managed node group for an Amazon EKS cluster. You can only create a node group for your cluster that is equal to the current Kubernetes version for the cluster. All node groups are created with the latest AMI release version for the respective minor Kubernetes version of the cluster, unless you deploy a custom AMI using a launch template. For more information about using launch templates, see Launch template support. An Amazon EKS managed node group is an Amazon EC2 Auto Scaling group and associated Amazon EC2 instances that are managed by Amazon Web Services for an Amazon EKS cluster. For more information, see Managed node groups in the Amazon EKS User Guide. Windows AMI types are only supported for commercial Amazon Web Services Regions that support Windows on Amazon EKS.
|
65
81
|
*/
|
66
82
|
createNodegroup(params: EKS.Types.CreateNodegroupRequest, callback?: (err: AWSError, data: EKS.Types.CreateNodegroupResponse) => void): Request<EKS.Types.CreateNodegroupResponse, AWSError>;
|
67
83
|
/**
|
68
|
-
* Creates a managed node group for an Amazon EKS cluster. You can only create a node group for your cluster that is equal to the current Kubernetes version for the cluster. An Amazon EKS managed node group is an Amazon EC2 Auto Scaling group and associated Amazon EC2 instances that are managed by Amazon Web Services for an Amazon EKS cluster. For more information, see Managed node groups in the Amazon EKS User Guide. Windows AMI types are only supported for commercial Regions that support Windows Amazon EKS.
|
84
|
+
* Creates a managed node group for an Amazon EKS cluster. You can only create a node group for your cluster that is equal to the current Kubernetes version for the cluster. All node groups are created with the latest AMI release version for the respective minor Kubernetes version of the cluster, unless you deploy a custom AMI using a launch template. For more information about using launch templates, see Launch template support. An Amazon EKS managed node group is an Amazon EC2 Auto Scaling group and associated Amazon EC2 instances that are managed by Amazon Web Services for an Amazon EKS cluster. For more information, see Managed node groups in the Amazon EKS User Guide. Windows AMI types are only supported for commercial Amazon Web Services Regions that support Windows on Amazon EKS.
|
69
85
|
*/
|
70
86
|
createNodegroup(callback?: (err: AWSError, data: EKS.Types.CreateNodegroupResponse) => void): Request<EKS.Types.CreateNodegroupResponse, AWSError>;
|
71
87
|
/**
|
72
|
-
* Creates an EKS Pod Identity association between a service account in an Amazon EKS cluster and an IAM role with EKS Pod Identity. Use EKS Pod Identity to give temporary IAM credentials to pods and the credentials are rotated automatically. Amazon EKS Pod Identity associations provide the ability to manage credentials for your applications, similar to the way that
|
88
|
+
* Creates an EKS Pod Identity association between a service account in an Amazon EKS cluster and an IAM role with EKS Pod Identity. Use EKS Pod Identity to give temporary IAM credentials to pods and the credentials are rotated automatically. Amazon EKS Pod Identity associations provide the ability to manage credentials for your applications, similar to the way that Amazon EC2 instance profiles provide credentials to Amazon EC2 instances. If a pod uses a service account that has an association, Amazon EKS sets environment variables in the containers of the pod. The environment variables configure the Amazon Web Services SDKs, including the Command Line Interface, to use the EKS Pod Identity credentials. Pod Identity is a simpler method than IAM roles for service accounts, as this method doesn't use OIDC identity providers. Additionally, you can configure a role for Pod Identity once, and reuse it across clusters.
|
73
89
|
*/
|
74
90
|
createPodIdentityAssociation(params: EKS.Types.CreatePodIdentityAssociationRequest, callback?: (err: AWSError, data: EKS.Types.CreatePodIdentityAssociationResponse) => void): Request<EKS.Types.CreatePodIdentityAssociationResponse, AWSError>;
|
75
91
|
/**
|
76
|
-
* Creates an EKS Pod Identity association between a service account in an Amazon EKS cluster and an IAM role with EKS Pod Identity. Use EKS Pod Identity to give temporary IAM credentials to pods and the credentials are rotated automatically. Amazon EKS Pod Identity associations provide the ability to manage credentials for your applications, similar to the way that
|
92
|
+
* Creates an EKS Pod Identity association between a service account in an Amazon EKS cluster and an IAM role with EKS Pod Identity. Use EKS Pod Identity to give temporary IAM credentials to pods and the credentials are rotated automatically. Amazon EKS Pod Identity associations provide the ability to manage credentials for your applications, similar to the way that Amazon EC2 instance profiles provide credentials to Amazon EC2 instances. If a pod uses a service account that has an association, Amazon EKS sets environment variables in the containers of the pod. The environment variables configure the Amazon Web Services SDKs, including the Command Line Interface, to use the EKS Pod Identity credentials. Pod Identity is a simpler method than IAM roles for service accounts, as this method doesn't use OIDC identity providers. Additionally, you can configure a role for Pod Identity once, and reuse it across clusters.
|
77
93
|
*/
|
78
94
|
createPodIdentityAssociation(callback?: (err: AWSError, data: EKS.Types.CreatePodIdentityAssociationResponse) => void): Request<EKS.Types.CreatePodIdentityAssociationResponse, AWSError>;
|
79
95
|
/**
|
80
|
-
*
|
96
|
+
* Deletes an access entry. Deleting an access entry of a type other than Standard can cause your cluster to function improperly. If you delete an access entry in error, you can recreate it.
|
97
|
+
*/
|
98
|
+
deleteAccessEntry(params: EKS.Types.DeleteAccessEntryRequest, callback?: (err: AWSError, data: EKS.Types.DeleteAccessEntryResponse) => void): Request<EKS.Types.DeleteAccessEntryResponse, AWSError>;
|
99
|
+
/**
|
100
|
+
* Deletes an access entry. Deleting an access entry of a type other than Standard can cause your cluster to function improperly. If you delete an access entry in error, you can recreate it.
|
101
|
+
*/
|
102
|
+
deleteAccessEntry(callback?: (err: AWSError, data: EKS.Types.DeleteAccessEntryResponse) => void): Request<EKS.Types.DeleteAccessEntryResponse, AWSError>;
|
103
|
+
/**
|
104
|
+
* Deletes an Amazon EKS add-on. When you remove an add-on, it's deleted from the cluster. You can always manually start an add-on on the cluster using the Kubernetes API.
|
81
105
|
*/
|
82
106
|
deleteAddon(params: EKS.Types.DeleteAddonRequest, callback?: (err: AWSError, data: EKS.Types.DeleteAddonResponse) => void): Request<EKS.Types.DeleteAddonResponse, AWSError>;
|
83
107
|
/**
|
84
|
-
*
|
108
|
+
* Deletes an Amazon EKS add-on. When you remove an add-on, it's deleted from the cluster. You can always manually start an add-on on the cluster using the Kubernetes API.
|
85
109
|
*/
|
86
110
|
deleteAddon(callback?: (err: AWSError, data: EKS.Types.DeleteAddonResponse) => void): Request<EKS.Types.DeleteAddonResponse, AWSError>;
|
87
111
|
/**
|
88
|
-
* Deletes
|
112
|
+
* Deletes an Amazon EKS cluster control plane. If you have active services in your cluster that are associated with a load balancer, you must delete those services before deleting the cluster so that the load balancers are deleted properly. Otherwise, you can have orphaned resources in your VPC that prevent you from being able to delete the VPC. For more information, see Deleting a cluster in the Amazon EKS User Guide. If you have managed node groups or Fargate profiles attached to the cluster, you must delete them first. For more information, see DeleteNodgroup and DeleteFargateProfile.
|
89
113
|
*/
|
90
114
|
deleteCluster(params: EKS.Types.DeleteClusterRequest, callback?: (err: AWSError, data: EKS.Types.DeleteClusterResponse) => void): Request<EKS.Types.DeleteClusterResponse, AWSError>;
|
91
115
|
/**
|
92
|
-
* Deletes
|
116
|
+
* Deletes an Amazon EKS cluster control plane. If you have active services in your cluster that are associated with a load balancer, you must delete those services before deleting the cluster so that the load balancers are deleted properly. Otherwise, you can have orphaned resources in your VPC that prevent you from being able to delete the VPC. For more information, see Deleting a cluster in the Amazon EKS User Guide. If you have managed node groups or Fargate profiles attached to the cluster, you must delete them first. For more information, see DeleteNodgroup and DeleteFargateProfile.
|
93
117
|
*/
|
94
118
|
deleteCluster(callback?: (err: AWSError, data: EKS.Types.DeleteClusterResponse) => void): Request<EKS.Types.DeleteClusterResponse, AWSError>;
|
95
119
|
/**
|
@@ -101,19 +125,19 @@ declare class EKS extends Service {
|
|
101
125
|
*/
|
102
126
|
deleteEksAnywhereSubscription(callback?: (err: AWSError, data: EKS.Types.DeleteEksAnywhereSubscriptionResponse) => void): Request<EKS.Types.DeleteEksAnywhereSubscriptionResponse, AWSError>;
|
103
127
|
/**
|
104
|
-
* Deletes an Fargate profile. When you delete a Fargate profile, any
|
128
|
+
* Deletes an Fargate profile. When you delete a Fargate profile, any Pod running on Fargate that was created with the profile is deleted. If the Pod matches another Fargate profile, then it is scheduled on Fargate with that profile. If it no longer matches any Fargate profiles, then it's not scheduled on Fargate and may remain in a pending state. Only one Fargate profile in a cluster can be in the DELETING status at a time. You must wait for a Fargate profile to finish deleting before you can delete any other profiles in that cluster.
|
105
129
|
*/
|
106
130
|
deleteFargateProfile(params: EKS.Types.DeleteFargateProfileRequest, callback?: (err: AWSError, data: EKS.Types.DeleteFargateProfileResponse) => void): Request<EKS.Types.DeleteFargateProfileResponse, AWSError>;
|
107
131
|
/**
|
108
|
-
* Deletes an Fargate profile. When you delete a Fargate profile, any
|
132
|
+
* Deletes an Fargate profile. When you delete a Fargate profile, any Pod running on Fargate that was created with the profile is deleted. If the Pod matches another Fargate profile, then it is scheduled on Fargate with that profile. If it no longer matches any Fargate profiles, then it's not scheduled on Fargate and may remain in a pending state. Only one Fargate profile in a cluster can be in the DELETING status at a time. You must wait for a Fargate profile to finish deleting before you can delete any other profiles in that cluster.
|
109
133
|
*/
|
110
134
|
deleteFargateProfile(callback?: (err: AWSError, data: EKS.Types.DeleteFargateProfileResponse) => void): Request<EKS.Types.DeleteFargateProfileResponse, AWSError>;
|
111
135
|
/**
|
112
|
-
* Deletes
|
136
|
+
* Deletes a managed node group.
|
113
137
|
*/
|
114
138
|
deleteNodegroup(params: EKS.Types.DeleteNodegroupRequest, callback?: (err: AWSError, data: EKS.Types.DeleteNodegroupResponse) => void): Request<EKS.Types.DeleteNodegroupResponse, AWSError>;
|
115
139
|
/**
|
116
|
-
* Deletes
|
140
|
+
* Deletes a managed node group.
|
117
141
|
*/
|
118
142
|
deleteNodegroup(callback?: (err: AWSError, data: EKS.Types.DeleteNodegroupResponse) => void): Request<EKS.Types.DeleteNodegroupResponse, AWSError>;
|
119
143
|
/**
|
@@ -125,13 +149,21 @@ declare class EKS extends Service {
|
|
125
149
|
*/
|
126
150
|
deletePodIdentityAssociation(callback?: (err: AWSError, data: EKS.Types.DeletePodIdentityAssociationResponse) => void): Request<EKS.Types.DeletePodIdentityAssociationResponse, AWSError>;
|
127
151
|
/**
|
128
|
-
* Deregisters a connected cluster to remove it from the Amazon EKS control plane.
|
152
|
+
* Deregisters a connected cluster to remove it from the Amazon EKS control plane. A connected cluster is a Kubernetes cluster that you've connected to your control plane using the Amazon EKS Connector.
|
129
153
|
*/
|
130
154
|
deregisterCluster(params: EKS.Types.DeregisterClusterRequest, callback?: (err: AWSError, data: EKS.Types.DeregisterClusterResponse) => void): Request<EKS.Types.DeregisterClusterResponse, AWSError>;
|
131
155
|
/**
|
132
|
-
* Deregisters a connected cluster to remove it from the Amazon EKS control plane.
|
156
|
+
* Deregisters a connected cluster to remove it from the Amazon EKS control plane. A connected cluster is a Kubernetes cluster that you've connected to your control plane using the Amazon EKS Connector.
|
133
157
|
*/
|
134
158
|
deregisterCluster(callback?: (err: AWSError, data: EKS.Types.DeregisterClusterResponse) => void): Request<EKS.Types.DeregisterClusterResponse, AWSError>;
|
159
|
+
/**
|
160
|
+
* Describes an access entry.
|
161
|
+
*/
|
162
|
+
describeAccessEntry(params: EKS.Types.DescribeAccessEntryRequest, callback?: (err: AWSError, data: EKS.Types.DescribeAccessEntryResponse) => void): Request<EKS.Types.DescribeAccessEntryResponse, AWSError>;
|
163
|
+
/**
|
164
|
+
* Describes an access entry.
|
165
|
+
*/
|
166
|
+
describeAccessEntry(callback?: (err: AWSError, data: EKS.Types.DescribeAccessEntryResponse) => void): Request<EKS.Types.DescribeAccessEntryResponse, AWSError>;
|
135
167
|
/**
|
136
168
|
* Describes an Amazon EKS add-on.
|
137
169
|
*/
|
@@ -149,19 +181,19 @@ declare class EKS extends Service {
|
|
149
181
|
*/
|
150
182
|
describeAddonConfiguration(callback?: (err: AWSError, data: EKS.Types.DescribeAddonConfigurationResponse) => void): Request<EKS.Types.DescribeAddonConfigurationResponse, AWSError>;
|
151
183
|
/**
|
152
|
-
* Describes the versions for an add-on. Information such as the Kubernetes versions that you can use the add-on with, the owner, publisher, and the type of the add-on are returned.
|
184
|
+
* Describes the versions for an add-on. Information such as the Kubernetes versions that you can use the add-on with, the owner, publisher, and the type of the add-on are returned.
|
153
185
|
*/
|
154
186
|
describeAddonVersions(params: EKS.Types.DescribeAddonVersionsRequest, callback?: (err: AWSError, data: EKS.Types.DescribeAddonVersionsResponse) => void): Request<EKS.Types.DescribeAddonVersionsResponse, AWSError>;
|
155
187
|
/**
|
156
|
-
* Describes the versions for an add-on. Information such as the Kubernetes versions that you can use the add-on with, the owner, publisher, and the type of the add-on are returned.
|
188
|
+
* Describes the versions for an add-on. Information such as the Kubernetes versions that you can use the add-on with, the owner, publisher, and the type of the add-on are returned.
|
157
189
|
*/
|
158
190
|
describeAddonVersions(callback?: (err: AWSError, data: EKS.Types.DescribeAddonVersionsResponse) => void): Request<EKS.Types.DescribeAddonVersionsResponse, AWSError>;
|
159
191
|
/**
|
160
|
-
*
|
192
|
+
* Describes an Amazon EKS cluster. The API server endpoint and certificate authority data returned by this operation are required for kubelet and kubectl to communicate with your Kubernetes API server. For more information, see Creating or updating a kubeconfig file for an Amazon EKS cluster. The API server endpoint and certificate authority data aren't available until the cluster reaches the ACTIVE state.
|
161
193
|
*/
|
162
194
|
describeCluster(params: EKS.Types.DescribeClusterRequest, callback?: (err: AWSError, data: EKS.Types.DescribeClusterResponse) => void): Request<EKS.Types.DescribeClusterResponse, AWSError>;
|
163
195
|
/**
|
164
|
-
*
|
196
|
+
* Describes an Amazon EKS cluster. The API server endpoint and certificate authority data returned by this operation are required for kubelet and kubectl to communicate with your Kubernetes API server. For more information, see Creating or updating a kubeconfig file for an Amazon EKS cluster. The API server endpoint and certificate authority data aren't available until the cluster reaches the ACTIVE state.
|
165
197
|
*/
|
166
198
|
describeCluster(callback?: (err: AWSError, data: EKS.Types.DescribeClusterResponse) => void): Request<EKS.Types.DescribeClusterResponse, AWSError>;
|
167
199
|
/**
|
@@ -173,27 +205,27 @@ declare class EKS extends Service {
|
|
173
205
|
*/
|
174
206
|
describeEksAnywhereSubscription(callback?: (err: AWSError, data: EKS.Types.DescribeEksAnywhereSubscriptionResponse) => void): Request<EKS.Types.DescribeEksAnywhereSubscriptionResponse, AWSError>;
|
175
207
|
/**
|
176
|
-
*
|
208
|
+
* Describes an Fargate profile.
|
177
209
|
*/
|
178
210
|
describeFargateProfile(params: EKS.Types.DescribeFargateProfileRequest, callback?: (err: AWSError, data: EKS.Types.DescribeFargateProfileResponse) => void): Request<EKS.Types.DescribeFargateProfileResponse, AWSError>;
|
179
211
|
/**
|
180
|
-
*
|
212
|
+
* Describes an Fargate profile.
|
181
213
|
*/
|
182
214
|
describeFargateProfile(callback?: (err: AWSError, data: EKS.Types.DescribeFargateProfileResponse) => void): Request<EKS.Types.DescribeFargateProfileResponse, AWSError>;
|
183
215
|
/**
|
184
|
-
*
|
216
|
+
* Describes an identity provider configuration.
|
185
217
|
*/
|
186
218
|
describeIdentityProviderConfig(params: EKS.Types.DescribeIdentityProviderConfigRequest, callback?: (err: AWSError, data: EKS.Types.DescribeIdentityProviderConfigResponse) => void): Request<EKS.Types.DescribeIdentityProviderConfigResponse, AWSError>;
|
187
219
|
/**
|
188
|
-
*
|
220
|
+
* Describes an identity provider configuration.
|
189
221
|
*/
|
190
222
|
describeIdentityProviderConfig(callback?: (err: AWSError, data: EKS.Types.DescribeIdentityProviderConfigResponse) => void): Request<EKS.Types.DescribeIdentityProviderConfigResponse, AWSError>;
|
191
223
|
/**
|
192
|
-
*
|
224
|
+
* Describes a managed node group.
|
193
225
|
*/
|
194
226
|
describeNodegroup(params: EKS.Types.DescribeNodegroupRequest, callback?: (err: AWSError, data: EKS.Types.DescribeNodegroupResponse) => void): Request<EKS.Types.DescribeNodegroupResponse, AWSError>;
|
195
227
|
/**
|
196
|
-
*
|
228
|
+
* Describes a managed node group.
|
197
229
|
*/
|
198
230
|
describeNodegroup(callback?: (err: AWSError, data: EKS.Types.DescribeNodegroupResponse) => void): Request<EKS.Types.DescribeNodegroupResponse, AWSError>;
|
199
231
|
/**
|
@@ -205,13 +237,21 @@ declare class EKS extends Service {
|
|
205
237
|
*/
|
206
238
|
describePodIdentityAssociation(callback?: (err: AWSError, data: EKS.Types.DescribePodIdentityAssociationResponse) => void): Request<EKS.Types.DescribePodIdentityAssociationResponse, AWSError>;
|
207
239
|
/**
|
208
|
-
*
|
240
|
+
* Describes an update to an Amazon EKS resource. When the status of the update is Succeeded, the update is complete. If an update fails, the status is Failed, and an error detail explains the reason for the failure.
|
209
241
|
*/
|
210
242
|
describeUpdate(params: EKS.Types.DescribeUpdateRequest, callback?: (err: AWSError, data: EKS.Types.DescribeUpdateResponse) => void): Request<EKS.Types.DescribeUpdateResponse, AWSError>;
|
211
243
|
/**
|
212
|
-
*
|
244
|
+
* Describes an update to an Amazon EKS resource. When the status of the update is Succeeded, the update is complete. If an update fails, the status is Failed, and an error detail explains the reason for the failure.
|
213
245
|
*/
|
214
246
|
describeUpdate(callback?: (err: AWSError, data: EKS.Types.DescribeUpdateResponse) => void): Request<EKS.Types.DescribeUpdateResponse, AWSError>;
|
247
|
+
/**
|
248
|
+
* Disassociates an access policy from an access entry.
|
249
|
+
*/
|
250
|
+
disassociateAccessPolicy(params: EKS.Types.DisassociateAccessPolicyRequest, callback?: (err: AWSError, data: EKS.Types.DisassociateAccessPolicyResponse) => void): Request<EKS.Types.DisassociateAccessPolicyResponse, AWSError>;
|
251
|
+
/**
|
252
|
+
* Disassociates an access policy from an access entry.
|
253
|
+
*/
|
254
|
+
disassociateAccessPolicy(callback?: (err: AWSError, data: EKS.Types.DisassociateAccessPolicyResponse) => void): Request<EKS.Types.DisassociateAccessPolicyResponse, AWSError>;
|
215
255
|
/**
|
216
256
|
* Disassociates an identity provider configuration from a cluster. If you disassociate an identity provider from your cluster, users included in the provider can no longer access the cluster. However, you can still access the cluster with IAM principals.
|
217
257
|
*/
|
@@ -220,6 +260,22 @@ declare class EKS extends Service {
|
|
220
260
|
* Disassociates an identity provider configuration from a cluster. If you disassociate an identity provider from your cluster, users included in the provider can no longer access the cluster. However, you can still access the cluster with IAM principals.
|
221
261
|
*/
|
222
262
|
disassociateIdentityProviderConfig(callback?: (err: AWSError, data: EKS.Types.DisassociateIdentityProviderConfigResponse) => void): Request<EKS.Types.DisassociateIdentityProviderConfigResponse, AWSError>;
|
263
|
+
/**
|
264
|
+
* Lists the access entries for your cluster.
|
265
|
+
*/
|
266
|
+
listAccessEntries(params: EKS.Types.ListAccessEntriesRequest, callback?: (err: AWSError, data: EKS.Types.ListAccessEntriesResponse) => void): Request<EKS.Types.ListAccessEntriesResponse, AWSError>;
|
267
|
+
/**
|
268
|
+
* Lists the access entries for your cluster.
|
269
|
+
*/
|
270
|
+
listAccessEntries(callback?: (err: AWSError, data: EKS.Types.ListAccessEntriesResponse) => void): Request<EKS.Types.ListAccessEntriesResponse, AWSError>;
|
271
|
+
/**
|
272
|
+
* Lists the available access policies.
|
273
|
+
*/
|
274
|
+
listAccessPolicies(params: EKS.Types.ListAccessPoliciesRequest, callback?: (err: AWSError, data: EKS.Types.ListAccessPoliciesResponse) => void): Request<EKS.Types.ListAccessPoliciesResponse, AWSError>;
|
275
|
+
/**
|
276
|
+
* Lists the available access policies.
|
277
|
+
*/
|
278
|
+
listAccessPolicies(callback?: (err: AWSError, data: EKS.Types.ListAccessPoliciesResponse) => void): Request<EKS.Types.ListAccessPoliciesResponse, AWSError>;
|
223
279
|
/**
|
224
280
|
* Lists the installed add-ons.
|
225
281
|
*/
|
@@ -229,11 +285,19 @@ declare class EKS extends Service {
|
|
229
285
|
*/
|
230
286
|
listAddons(callback?: (err: AWSError, data: EKS.Types.ListAddonsResponse) => void): Request<EKS.Types.ListAddonsResponse, AWSError>;
|
231
287
|
/**
|
232
|
-
* Lists the
|
288
|
+
* Lists the access policies associated with an access entry.
|
289
|
+
*/
|
290
|
+
listAssociatedAccessPolicies(params: EKS.Types.ListAssociatedAccessPoliciesRequest, callback?: (err: AWSError, data: EKS.Types.ListAssociatedAccessPoliciesResponse) => void): Request<EKS.Types.ListAssociatedAccessPoliciesResponse, AWSError>;
|
291
|
+
/**
|
292
|
+
* Lists the access policies associated with an access entry.
|
293
|
+
*/
|
294
|
+
listAssociatedAccessPolicies(callback?: (err: AWSError, data: EKS.Types.ListAssociatedAccessPoliciesResponse) => void): Request<EKS.Types.ListAssociatedAccessPoliciesResponse, AWSError>;
|
295
|
+
/**
|
296
|
+
* Lists the Amazon EKS clusters in your Amazon Web Services account in the specified Amazon Web Services Region.
|
233
297
|
*/
|
234
298
|
listClusters(params: EKS.Types.ListClustersRequest, callback?: (err: AWSError, data: EKS.Types.ListClustersResponse) => void): Request<EKS.Types.ListClustersResponse, AWSError>;
|
235
299
|
/**
|
236
|
-
* Lists the Amazon EKS clusters in your Amazon Web Services account in the specified Region.
|
300
|
+
* Lists the Amazon EKS clusters in your Amazon Web Services account in the specified Amazon Web Services Region.
|
237
301
|
*/
|
238
302
|
listClusters(callback?: (err: AWSError, data: EKS.Types.ListClustersResponse) => void): Request<EKS.Types.ListClustersResponse, AWSError>;
|
239
303
|
/**
|
@@ -245,27 +309,27 @@ declare class EKS extends Service {
|
|
245
309
|
*/
|
246
310
|
listEksAnywhereSubscriptions(callback?: (err: AWSError, data: EKS.Types.ListEksAnywhereSubscriptionsResponse) => void): Request<EKS.Types.ListEksAnywhereSubscriptionsResponse, AWSError>;
|
247
311
|
/**
|
248
|
-
* Lists the Fargate profiles associated with the specified cluster in your Amazon Web Services account in the specified Region.
|
312
|
+
* Lists the Fargate profiles associated with the specified cluster in your Amazon Web Services account in the specified Amazon Web Services Region.
|
249
313
|
*/
|
250
314
|
listFargateProfiles(params: EKS.Types.ListFargateProfilesRequest, callback?: (err: AWSError, data: EKS.Types.ListFargateProfilesResponse) => void): Request<EKS.Types.ListFargateProfilesResponse, AWSError>;
|
251
315
|
/**
|
252
|
-
* Lists the Fargate profiles associated with the specified cluster in your Amazon Web Services account in the specified Region.
|
316
|
+
* Lists the Fargate profiles associated with the specified cluster in your Amazon Web Services account in the specified Amazon Web Services Region.
|
253
317
|
*/
|
254
318
|
listFargateProfiles(callback?: (err: AWSError, data: EKS.Types.ListFargateProfilesResponse) => void): Request<EKS.Types.ListFargateProfilesResponse, AWSError>;
|
255
319
|
/**
|
256
|
-
*
|
320
|
+
* Lists the identity provider configurations for your cluster.
|
257
321
|
*/
|
258
322
|
listIdentityProviderConfigs(params: EKS.Types.ListIdentityProviderConfigsRequest, callback?: (err: AWSError, data: EKS.Types.ListIdentityProviderConfigsResponse) => void): Request<EKS.Types.ListIdentityProviderConfigsResponse, AWSError>;
|
259
323
|
/**
|
260
|
-
*
|
324
|
+
* Lists the identity provider configurations for your cluster.
|
261
325
|
*/
|
262
326
|
listIdentityProviderConfigs(callback?: (err: AWSError, data: EKS.Types.ListIdentityProviderConfigsResponse) => void): Request<EKS.Types.ListIdentityProviderConfigsResponse, AWSError>;
|
263
327
|
/**
|
264
|
-
* Lists the
|
328
|
+
* Lists the managed node groups associated with the specified cluster in your Amazon Web Services account in the specified Amazon Web Services Region. Self-managed node groups aren't listed.
|
265
329
|
*/
|
266
330
|
listNodegroups(params: EKS.Types.ListNodegroupsRequest, callback?: (err: AWSError, data: EKS.Types.ListNodegroupsResponse) => void): Request<EKS.Types.ListNodegroupsResponse, AWSError>;
|
267
331
|
/**
|
268
|
-
* Lists the
|
332
|
+
* Lists the managed node groups associated with the specified cluster in your Amazon Web Services account in the specified Amazon Web Services Region. Self-managed node groups aren't listed.
|
269
333
|
*/
|
270
334
|
listNodegroups(callback?: (err: AWSError, data: EKS.Types.ListNodegroupsResponse) => void): Request<EKS.Types.ListNodegroupsResponse, AWSError>;
|
271
335
|
/**
|
@@ -285,37 +349,45 @@ declare class EKS extends Service {
|
|
285
349
|
*/
|
286
350
|
listTagsForResource(callback?: (err: AWSError, data: EKS.Types.ListTagsForResourceResponse) => void): Request<EKS.Types.ListTagsForResourceResponse, AWSError>;
|
287
351
|
/**
|
288
|
-
* Lists the updates associated with an Amazon EKS
|
352
|
+
* Lists the updates associated with an Amazon EKS resource in your Amazon Web Services account, in the specified Amazon Web Services Region.
|
289
353
|
*/
|
290
354
|
listUpdates(params: EKS.Types.ListUpdatesRequest, callback?: (err: AWSError, data: EKS.Types.ListUpdatesResponse) => void): Request<EKS.Types.ListUpdatesResponse, AWSError>;
|
291
355
|
/**
|
292
|
-
* Lists the updates associated with an Amazon EKS
|
356
|
+
* Lists the updates associated with an Amazon EKS resource in your Amazon Web Services account, in the specified Amazon Web Services Region.
|
293
357
|
*/
|
294
358
|
listUpdates(callback?: (err: AWSError, data: EKS.Types.ListUpdatesResponse) => void): Request<EKS.Types.ListUpdatesResponse, AWSError>;
|
295
359
|
/**
|
296
|
-
* Connects a Kubernetes cluster to the Amazon EKS control plane. Any Kubernetes cluster can be connected to the Amazon EKS control plane to view current information about the cluster and its nodes. Cluster connection requires two steps. First, send a RegisterClusterRequest to add it to the Amazon EKS control plane. Second, a Manifest containing the activationID and activationCode must be applied to the Kubernetes cluster through it's native provider to provide visibility. After the
|
360
|
+
* Connects a Kubernetes cluster to the Amazon EKS control plane. Any Kubernetes cluster can be connected to the Amazon EKS control plane to view current information about the cluster and its nodes. Cluster connection requires two steps. First, send a RegisterClusterRequest to add it to the Amazon EKS control plane. Second, a Manifest containing the activationID and activationCode must be applied to the Kubernetes cluster through it's native provider to provide visibility. After the manifest is updated and applied, the connected cluster is visible to the Amazon EKS control plane. If the manifest isn't applied within three days, the connected cluster will no longer be visible and must be deregistered using DeregisterCluster.
|
297
361
|
*/
|
298
362
|
registerCluster(params: EKS.Types.RegisterClusterRequest, callback?: (err: AWSError, data: EKS.Types.RegisterClusterResponse) => void): Request<EKS.Types.RegisterClusterResponse, AWSError>;
|
299
363
|
/**
|
300
|
-
* Connects a Kubernetes cluster to the Amazon EKS control plane. Any Kubernetes cluster can be connected to the Amazon EKS control plane to view current information about the cluster and its nodes. Cluster connection requires two steps. First, send a RegisterClusterRequest to add it to the Amazon EKS control plane. Second, a Manifest containing the activationID and activationCode must be applied to the Kubernetes cluster through it's native provider to provide visibility. After the
|
364
|
+
* Connects a Kubernetes cluster to the Amazon EKS control plane. Any Kubernetes cluster can be connected to the Amazon EKS control plane to view current information about the cluster and its nodes. Cluster connection requires two steps. First, send a RegisterClusterRequest to add it to the Amazon EKS control plane. Second, a Manifest containing the activationID and activationCode must be applied to the Kubernetes cluster through it's native provider to provide visibility. After the manifest is updated and applied, the connected cluster is visible to the Amazon EKS control plane. If the manifest isn't applied within three days, the connected cluster will no longer be visible and must be deregistered using DeregisterCluster.
|
301
365
|
*/
|
302
366
|
registerCluster(callback?: (err: AWSError, data: EKS.Types.RegisterClusterResponse) => void): Request<EKS.Types.RegisterClusterResponse, AWSError>;
|
303
367
|
/**
|
304
|
-
* Associates the specified tags to
|
368
|
+
* Associates the specified tags to an Amazon EKS resource with the specified resourceArn. If existing tags on a resource are not specified in the request parameters, they aren't changed. When a resource is deleted, the tags associated with that resource are also deleted. Tags that you create for Amazon EKS resources don't propagate to any other resources associated with the cluster. For example, if you tag a cluster with this operation, that tag doesn't automatically propagate to the subnets and nodes associated with the cluster.
|
305
369
|
*/
|
306
370
|
tagResource(params: EKS.Types.TagResourceRequest, callback?: (err: AWSError, data: EKS.Types.TagResourceResponse) => void): Request<EKS.Types.TagResourceResponse, AWSError>;
|
307
371
|
/**
|
308
|
-
* Associates the specified tags to
|
372
|
+
* Associates the specified tags to an Amazon EKS resource with the specified resourceArn. If existing tags on a resource are not specified in the request parameters, they aren't changed. When a resource is deleted, the tags associated with that resource are also deleted. Tags that you create for Amazon EKS resources don't propagate to any other resources associated with the cluster. For example, if you tag a cluster with this operation, that tag doesn't automatically propagate to the subnets and nodes associated with the cluster.
|
309
373
|
*/
|
310
374
|
tagResource(callback?: (err: AWSError, data: EKS.Types.TagResourceResponse) => void): Request<EKS.Types.TagResourceResponse, AWSError>;
|
311
375
|
/**
|
312
|
-
* Deletes specified tags from
|
376
|
+
* Deletes specified tags from an Amazon EKS resource.
|
313
377
|
*/
|
314
378
|
untagResource(params: EKS.Types.UntagResourceRequest, callback?: (err: AWSError, data: EKS.Types.UntagResourceResponse) => void): Request<EKS.Types.UntagResourceResponse, AWSError>;
|
315
379
|
/**
|
316
|
-
* Deletes specified tags from
|
380
|
+
* Deletes specified tags from an Amazon EKS resource.
|
317
381
|
*/
|
318
382
|
untagResource(callback?: (err: AWSError, data: EKS.Types.UntagResourceResponse) => void): Request<EKS.Types.UntagResourceResponse, AWSError>;
|
383
|
+
/**
|
384
|
+
* Updates an access entry.
|
385
|
+
*/
|
386
|
+
updateAccessEntry(params: EKS.Types.UpdateAccessEntryRequest, callback?: (err: AWSError, data: EKS.Types.UpdateAccessEntryResponse) => void): Request<EKS.Types.UpdateAccessEntryResponse, AWSError>;
|
387
|
+
/**
|
388
|
+
* Updates an access entry.
|
389
|
+
*/
|
390
|
+
updateAccessEntry(callback?: (err: AWSError, data: EKS.Types.UpdateAccessEntryResponse) => void): Request<EKS.Types.UpdateAccessEntryResponse, AWSError>;
|
319
391
|
/**
|
320
392
|
* Updates an Amazon EKS add-on.
|
321
393
|
*/
|
@@ -325,11 +397,11 @@ declare class EKS extends Service {
|
|
325
397
|
*/
|
326
398
|
updateAddon(callback?: (err: AWSError, data: EKS.Types.UpdateAddonResponse) => void): Request<EKS.Types.UpdateAddonResponse, AWSError>;
|
327
399
|
/**
|
328
|
-
* Updates an Amazon EKS cluster configuration. Your cluster continues to function during the update. The response output includes an update ID that you can use to track the status of your cluster update with
|
400
|
+
* Updates an Amazon EKS cluster configuration. Your cluster continues to function during the update. The response output includes an update ID that you can use to track the status of your cluster update with DescribeUpdate"/>. You can use this API operation to enable or disable exporting the Kubernetes control plane logs for your cluster to CloudWatch Logs. By default, cluster control plane logs aren't exported to CloudWatch Logs. For more information, see Amazon EKS Cluster control plane logs in the Amazon EKS User Guide . CloudWatch Logs ingestion, archive storage, and data scanning rates apply to exported control plane logs. For more information, see CloudWatch Pricing. You can also use this API operation to enable or disable public and private access to your cluster's Kubernetes API server endpoint. By default, public access is enabled, and private access is disabled. For more information, see Amazon EKS cluster endpoint access control in the Amazon EKS User Guide . You can also use this API operation to choose different subnets and security groups for the cluster. You must specify at least two subnets that are in different Availability Zones. You can't change which VPC the subnets are from, the subnets must be in the same VPC as the subnets that the cluster was created with. For more information about the VPC requirements, see https://docs.aws.amazon.com/eks/latest/userguide/network_reqs.html in the Amazon EKS User Guide . Cluster updates are asynchronous, and they should finish within a few minutes. During an update, the cluster status moves to UPDATING (this status transition is eventually consistent). When the update is complete (either Failed or Successful), the cluster status moves to Active.
|
329
401
|
*/
|
330
402
|
updateClusterConfig(params: EKS.Types.UpdateClusterConfigRequest, callback?: (err: AWSError, data: EKS.Types.UpdateClusterConfigResponse) => void): Request<EKS.Types.UpdateClusterConfigResponse, AWSError>;
|
331
403
|
/**
|
332
|
-
* Updates an Amazon EKS cluster configuration. Your cluster continues to function during the update. The response output includes an update ID that you can use to track the status of your cluster update with
|
404
|
+
* Updates an Amazon EKS cluster configuration. Your cluster continues to function during the update. The response output includes an update ID that you can use to track the status of your cluster update with DescribeUpdate"/>. You can use this API operation to enable or disable exporting the Kubernetes control plane logs for your cluster to CloudWatch Logs. By default, cluster control plane logs aren't exported to CloudWatch Logs. For more information, see Amazon EKS Cluster control plane logs in the Amazon EKS User Guide . CloudWatch Logs ingestion, archive storage, and data scanning rates apply to exported control plane logs. For more information, see CloudWatch Pricing. You can also use this API operation to enable or disable public and private access to your cluster's Kubernetes API server endpoint. By default, public access is enabled, and private access is disabled. For more information, see Amazon EKS cluster endpoint access control in the Amazon EKS User Guide . You can also use this API operation to choose different subnets and security groups for the cluster. You must specify at least two subnets that are in different Availability Zones. You can't change which VPC the subnets are from, the subnets must be in the same VPC as the subnets that the cluster was created with. For more information about the VPC requirements, see https://docs.aws.amazon.com/eks/latest/userguide/network_reqs.html in the Amazon EKS User Guide . Cluster updates are asynchronous, and they should finish within a few minutes. During an update, the cluster status moves to UPDATING (this status transition is eventually consistent). When the update is complete (either Failed or Successful), the cluster status moves to Active.
|
333
405
|
*/
|
334
406
|
updateClusterConfig(callback?: (err: AWSError, data: EKS.Types.UpdateClusterConfigResponse) => void): Request<EKS.Types.UpdateClusterConfigResponse, AWSError>;
|
335
407
|
/**
|
@@ -357,19 +429,19 @@ declare class EKS extends Service {
|
|
357
429
|
*/
|
358
430
|
updateNodegroupConfig(callback?: (err: AWSError, data: EKS.Types.UpdateNodegroupConfigResponse) => void): Request<EKS.Types.UpdateNodegroupConfigResponse, AWSError>;
|
359
431
|
/**
|
360
|
-
* Updates the Kubernetes version or AMI version of an Amazon EKS managed node group. You can update a node group using a launch template only if the node group was originally deployed with a launch template. If you need to update a custom AMI in a node group that was deployed with a launch template, then update your custom AMI, specify the new ID in a new version of the launch template, and then update the node group to the new version of the launch template. If you update without a launch template, then you can update to the latest available AMI version of a node group's current Kubernetes version by not specifying a Kubernetes version in the request. You can update to the latest AMI version of your cluster's current Kubernetes version by specifying your cluster's Kubernetes version in the request. For information about Linux versions, see Amazon EKS optimized Amazon Linux AMI versions in the Amazon EKS User Guide. For information about Windows versions, see Amazon EKS optimized Windows AMI versions in the Amazon EKS User Guide. You cannot roll back a node group to an earlier Kubernetes version or AMI version. When a node in a managed node group is terminated due to a scaling action or update,
|
432
|
+
* Updates the Kubernetes version or AMI version of an Amazon EKS managed node group. You can update a node group using a launch template only if the node group was originally deployed with a launch template. If you need to update a custom AMI in a node group that was deployed with a launch template, then update your custom AMI, specify the new ID in a new version of the launch template, and then update the node group to the new version of the launch template. If you update without a launch template, then you can update to the latest available AMI version of a node group's current Kubernetes version by not specifying a Kubernetes version in the request. You can update to the latest AMI version of your cluster's current Kubernetes version by specifying your cluster's Kubernetes version in the request. For information about Linux versions, see Amazon EKS optimized Amazon Linux AMI versions in the Amazon EKS User Guide. For information about Windows versions, see Amazon EKS optimized Windows AMI versions in the Amazon EKS User Guide. You cannot roll back a node group to an earlier Kubernetes version or AMI version. When a node in a managed node group is terminated due to a scaling action or update, every Pod on that node is drained first. Amazon EKS attempts to drain the nodes gracefully and will fail if it is unable to do so. You can force the update if Amazon EKS is unable to drain the nodes as a result of a Pod disruption budget issue.
|
361
433
|
*/
|
362
434
|
updateNodegroupVersion(params: EKS.Types.UpdateNodegroupVersionRequest, callback?: (err: AWSError, data: EKS.Types.UpdateNodegroupVersionResponse) => void): Request<EKS.Types.UpdateNodegroupVersionResponse, AWSError>;
|
363
435
|
/**
|
364
|
-
* Updates the Kubernetes version or AMI version of an Amazon EKS managed node group. You can update a node group using a launch template only if the node group was originally deployed with a launch template. If you need to update a custom AMI in a node group that was deployed with a launch template, then update your custom AMI, specify the new ID in a new version of the launch template, and then update the node group to the new version of the launch template. If you update without a launch template, then you can update to the latest available AMI version of a node group's current Kubernetes version by not specifying a Kubernetes version in the request. You can update to the latest AMI version of your cluster's current Kubernetes version by specifying your cluster's Kubernetes version in the request. For information about Linux versions, see Amazon EKS optimized Amazon Linux AMI versions in the Amazon EKS User Guide. For information about Windows versions, see Amazon EKS optimized Windows AMI versions in the Amazon EKS User Guide. You cannot roll back a node group to an earlier Kubernetes version or AMI version. When a node in a managed node group is terminated due to a scaling action or update,
|
436
|
+
* Updates the Kubernetes version or AMI version of an Amazon EKS managed node group. You can update a node group using a launch template only if the node group was originally deployed with a launch template. If you need to update a custom AMI in a node group that was deployed with a launch template, then update your custom AMI, specify the new ID in a new version of the launch template, and then update the node group to the new version of the launch template. If you update without a launch template, then you can update to the latest available AMI version of a node group's current Kubernetes version by not specifying a Kubernetes version in the request. You can update to the latest AMI version of your cluster's current Kubernetes version by specifying your cluster's Kubernetes version in the request. For information about Linux versions, see Amazon EKS optimized Amazon Linux AMI versions in the Amazon EKS User Guide. For information about Windows versions, see Amazon EKS optimized Windows AMI versions in the Amazon EKS User Guide. You cannot roll back a node group to an earlier Kubernetes version or AMI version. When a node in a managed node group is terminated due to a scaling action or update, every Pod on that node is drained first. Amazon EKS attempts to drain the nodes gracefully and will fail if it is unable to do so. You can force the update if Amazon EKS is unable to drain the nodes as a result of a Pod disruption budget issue.
|
365
437
|
*/
|
366
438
|
updateNodegroupVersion(callback?: (err: AWSError, data: EKS.Types.UpdateNodegroupVersionResponse) => void): Request<EKS.Types.UpdateNodegroupVersionResponse, AWSError>;
|
367
439
|
/**
|
368
|
-
* Updates a EKS Pod Identity association. Only the IAM role can be changed; an association can't be moved between clusters, namespaces, or service accounts. If you need to edit the namespace or service account, you need to
|
440
|
+
* Updates a EKS Pod Identity association. Only the IAM role can be changed; an association can't be moved between clusters, namespaces, or service accounts. If you need to edit the namespace or service account, you need to delete the association and then create a new association with your desired settings.
|
369
441
|
*/
|
370
442
|
updatePodIdentityAssociation(params: EKS.Types.UpdatePodIdentityAssociationRequest, callback?: (err: AWSError, data: EKS.Types.UpdatePodIdentityAssociationResponse) => void): Request<EKS.Types.UpdatePodIdentityAssociationResponse, AWSError>;
|
371
443
|
/**
|
372
|
-
* Updates a EKS Pod Identity association. Only the IAM role can be changed; an association can't be moved between clusters, namespaces, or service accounts. If you need to edit the namespace or service account, you need to
|
444
|
+
* Updates a EKS Pod Identity association. Only the IAM role can be changed; an association can't be moved between clusters, namespaces, or service accounts. If you need to edit the namespace or service account, you need to delete the association and then create a new association with your desired settings.
|
373
445
|
*/
|
374
446
|
updatePodIdentityAssociation(callback?: (err: AWSError, data: EKS.Types.UpdatePodIdentityAssociationResponse) => void): Request<EKS.Types.UpdatePodIdentityAssociationResponse, AWSError>;
|
375
447
|
/**
|
@@ -439,13 +511,83 @@ declare class EKS extends Service {
|
|
439
511
|
}
|
440
512
|
declare namespace EKS {
|
441
513
|
export type AMITypes = "AL2_x86_64"|"AL2_x86_64_GPU"|"AL2_ARM_64"|"CUSTOM"|"BOTTLEROCKET_ARM_64"|"BOTTLEROCKET_x86_64"|"BOTTLEROCKET_ARM_64_NVIDIA"|"BOTTLEROCKET_x86_64_NVIDIA"|"WINDOWS_CORE_2019_x86_64"|"WINDOWS_FULL_2019_x86_64"|"WINDOWS_CORE_2022_x86_64"|"WINDOWS_FULL_2022_x86_64"|string;
|
514
|
+
export interface AccessConfigResponse {
|
515
|
+
/**
|
516
|
+
* Specifies whether or not the cluster creator IAM principal was set as a cluster admin access entry during cluster creation time.
|
517
|
+
*/
|
518
|
+
bootstrapClusterCreatorAdminPermissions?: BoxedBoolean;
|
519
|
+
/**
|
520
|
+
* The current authentication mode of the cluster.
|
521
|
+
*/
|
522
|
+
authenticationMode?: AuthenticationMode;
|
523
|
+
}
|
524
|
+
export interface AccessEntry {
|
525
|
+
/**
|
526
|
+
* The name of your cluster.
|
527
|
+
*/
|
528
|
+
clusterName?: String;
|
529
|
+
/**
|
530
|
+
* The ARN of the IAM principal for the access entry. If you ever delete the IAM principal with this ARN, the access entry isn't automatically deleted. We recommend that you delete the access entry with an ARN for an IAM principal that you delete. If you don't delete the access entry and ever recreate the IAM principal, even if it has the same ARN, the access entry won't work. This is because even though the ARN is the same for the recreated IAM principal, the roleID or userID (you can see this with the Security Token Service GetCallerIdentity API) is different for the recreated IAM principal than it was for the original IAM principal. Even though you don't see the IAM principal's roleID or userID for an access entry, Amazon EKS stores it with the access entry.
|
531
|
+
*/
|
532
|
+
principalArn?: String;
|
533
|
+
/**
|
534
|
+
* A name that you've specified in a Kubernetes RoleBinding or ClusterRoleBinding object so that Kubernetes authorizes the principalARN access to cluster objects.
|
535
|
+
*/
|
536
|
+
kubernetesGroups?: StringList;
|
537
|
+
/**
|
538
|
+
* The ARN of the access entry.
|
539
|
+
*/
|
540
|
+
accessEntryArn?: String;
|
541
|
+
/**
|
542
|
+
* The Unix epoch timestamp at object creation.
|
543
|
+
*/
|
544
|
+
createdAt?: Timestamp;
|
545
|
+
/**
|
546
|
+
* The Unix epoch timestamp for the last modification to the object.
|
547
|
+
*/
|
548
|
+
modifiedAt?: Timestamp;
|
549
|
+
/**
|
550
|
+
* Metadata that assists with categorization and organization. Each tag consists of a key and an optional value. You define both. Tags don't propagate to any other cluster or Amazon Web Services resources.
|
551
|
+
*/
|
552
|
+
tags?: TagMap;
|
553
|
+
/**
|
554
|
+
* The name of a user that can authenticate to your cluster.
|
555
|
+
*/
|
556
|
+
username?: String;
|
557
|
+
/**
|
558
|
+
* The type of the access entry.
|
559
|
+
*/
|
560
|
+
type?: String;
|
561
|
+
}
|
562
|
+
export type AccessPoliciesList = AccessPolicy[];
|
563
|
+
export interface AccessPolicy {
|
564
|
+
/**
|
565
|
+
* The name of the access policy.
|
566
|
+
*/
|
567
|
+
name?: String;
|
568
|
+
/**
|
569
|
+
* The ARN of the access policy.
|
570
|
+
*/
|
571
|
+
arn?: String;
|
572
|
+
}
|
573
|
+
export interface AccessScope {
|
574
|
+
/**
|
575
|
+
* The scope type of an access policy.
|
576
|
+
*/
|
577
|
+
type?: AccessScopeType;
|
578
|
+
/**
|
579
|
+
* A Kubernetes namespace that an access policy is scoped to. A value is required if you specified namespace for Type.
|
580
|
+
*/
|
581
|
+
namespaces?: StringList;
|
582
|
+
}
|
583
|
+
export type AccessScopeType = "cluster"|"namespace"|string;
|
442
584
|
export interface Addon {
|
443
585
|
/**
|
444
586
|
* The name of the add-on.
|
445
587
|
*/
|
446
588
|
addonName?: String;
|
447
589
|
/**
|
448
|
-
* The name of
|
590
|
+
* The name of your cluster.
|
449
591
|
*/
|
450
592
|
clusterName?: ClusterName;
|
451
593
|
/**
|
@@ -465,19 +607,19 @@ declare namespace EKS {
|
|
465
607
|
*/
|
466
608
|
addonArn?: String;
|
467
609
|
/**
|
468
|
-
* The
|
610
|
+
* The Unix epoch timestamp at object creation.
|
469
611
|
*/
|
470
612
|
createdAt?: Timestamp;
|
471
613
|
/**
|
472
|
-
* The
|
614
|
+
* The Unix epoch timestamp for the last modification to the object.
|
473
615
|
*/
|
474
616
|
modifiedAt?: Timestamp;
|
475
617
|
/**
|
476
|
-
* The Amazon Resource Name (ARN) of the IAM role that's bound to the Kubernetes
|
618
|
+
* The Amazon Resource Name (ARN) of the IAM role that's bound to the Kubernetes ServiceAccount object that the add-on uses.
|
477
619
|
*/
|
478
620
|
serviceAccountRoleArn?: String;
|
479
621
|
/**
|
480
|
-
*
|
622
|
+
* Metadata that assists with categorization and organization. Each tag consists of a key and an optional value. You define both. Tags don't propagate to any other cluster or Amazon Web Services resources.
|
481
623
|
*/
|
482
624
|
tags?: TagMap;
|
483
625
|
/**
|
@@ -566,9 +708,41 @@ declare namespace EKS {
|
|
566
708
|
}
|
567
709
|
export type AddonVersionInfoList = AddonVersionInfo[];
|
568
710
|
export type Addons = AddonInfo[];
|
711
|
+
export interface AssociateAccessPolicyRequest {
|
712
|
+
/**
|
713
|
+
* The name of your cluster.
|
714
|
+
*/
|
715
|
+
clusterName: String;
|
716
|
+
/**
|
717
|
+
* The Amazon Resource Name (ARN) of the IAM user or role for the AccessEntry that you're associating the access policy to.
|
718
|
+
*/
|
719
|
+
principalArn: String;
|
720
|
+
/**
|
721
|
+
* The ARN of the AccessPolicy that you're associating. For a list of ARNs, use ListAccessPolicies.
|
722
|
+
*/
|
723
|
+
policyArn: String;
|
724
|
+
/**
|
725
|
+
* The scope for the AccessPolicy. You can scope access policies to an entire cluster or to specific Kubernetes namespaces.
|
726
|
+
*/
|
727
|
+
accessScope: AccessScope;
|
728
|
+
}
|
729
|
+
export interface AssociateAccessPolicyResponse {
|
730
|
+
/**
|
731
|
+
* The name of your cluster.
|
732
|
+
*/
|
733
|
+
clusterName?: String;
|
734
|
+
/**
|
735
|
+
* The ARN of the IAM principal for the AccessEntry.
|
736
|
+
*/
|
737
|
+
principalArn?: String;
|
738
|
+
/**
|
739
|
+
* The AccessPolicy and scope associated to the AccessEntry.
|
740
|
+
*/
|
741
|
+
associatedAccessPolicy?: AssociatedAccessPolicy;
|
742
|
+
}
|
569
743
|
export interface AssociateEncryptionConfigRequest {
|
570
744
|
/**
|
571
|
-
* The name of
|
745
|
+
* The name of your cluster.
|
572
746
|
*/
|
573
747
|
clusterName: String;
|
574
748
|
/**
|
@@ -576,7 +750,7 @@ declare namespace EKS {
|
|
576
750
|
*/
|
577
751
|
encryptionConfig: EncryptionConfigList;
|
578
752
|
/**
|
579
|
-
*
|
753
|
+
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
|
580
754
|
*/
|
581
755
|
clientRequestToken?: String;
|
582
756
|
}
|
@@ -585,7 +759,7 @@ declare namespace EKS {
|
|
585
759
|
}
|
586
760
|
export interface AssociateIdentityProviderConfigRequest {
|
587
761
|
/**
|
588
|
-
* The name of
|
762
|
+
* The name of your cluster.
|
589
763
|
*/
|
590
764
|
clusterName: String;
|
591
765
|
/**
|
@@ -593,11 +767,11 @@ declare namespace EKS {
|
|
593
767
|
*/
|
594
768
|
oidc: OidcIdentityProviderConfigRequest;
|
595
769
|
/**
|
596
|
-
*
|
770
|
+
* Metadata that assists with categorization and organization. Each tag consists of a key and an optional value. You define both. Tags don't propagate to any other cluster or Amazon Web Services resources.
|
597
771
|
*/
|
598
772
|
tags?: TagMap;
|
599
773
|
/**
|
600
|
-
*
|
774
|
+
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
|
601
775
|
*/
|
602
776
|
clientRequestToken?: String;
|
603
777
|
}
|
@@ -608,6 +782,26 @@ declare namespace EKS {
|
|
608
782
|
*/
|
609
783
|
tags?: TagMap;
|
610
784
|
}
|
785
|
+
export type AssociatedAccessPoliciesList = AssociatedAccessPolicy[];
|
786
|
+
export interface AssociatedAccessPolicy {
|
787
|
+
/**
|
788
|
+
* The ARN of the AccessPolicy.
|
789
|
+
*/
|
790
|
+
policyArn?: String;
|
791
|
+
/**
|
792
|
+
* The scope of the access policy.
|
793
|
+
*/
|
794
|
+
accessScope?: AccessScope;
|
795
|
+
/**
|
796
|
+
* The date and time the AccessPolicy was associated with an AccessEntry.
|
797
|
+
*/
|
798
|
+
associatedAt?: Timestamp;
|
799
|
+
/**
|
800
|
+
* The Unix epoch timestamp for the last modification to the object.
|
801
|
+
*/
|
802
|
+
modifiedAt?: Timestamp;
|
803
|
+
}
|
804
|
+
export type AuthenticationMode = "API"|"API_AND_CONFIG_MAP"|"CONFIG_MAP"|string;
|
611
805
|
export interface AutoScalingGroup {
|
612
806
|
/**
|
613
807
|
* The name of the Auto Scaling group associated with an Amazon EKS managed node group.
|
@@ -628,7 +822,7 @@ declare namespace EKS {
|
|
628
822
|
}
|
629
823
|
export interface Cluster {
|
630
824
|
/**
|
631
|
-
* The name of
|
825
|
+
* The name of your cluster.
|
632
826
|
*/
|
633
827
|
name?: String;
|
634
828
|
/**
|
@@ -636,7 +830,7 @@ declare namespace EKS {
|
|
636
830
|
*/
|
637
831
|
arn?: String;
|
638
832
|
/**
|
639
|
-
* The Unix epoch timestamp
|
833
|
+
* The Unix epoch timestamp at object creation.
|
640
834
|
*/
|
641
835
|
createdAt?: Timestamp;
|
642
836
|
/**
|
@@ -652,7 +846,7 @@ declare namespace EKS {
|
|
652
846
|
*/
|
653
847
|
roleArn?: String;
|
654
848
|
/**
|
655
|
-
* The VPC configuration used by the cluster control plane. Amazon EKS VPC resources have specific requirements to work properly with Kubernetes. For more information, see Cluster VPC
|
849
|
+
* The VPC configuration used by the cluster control plane. Amazon EKS VPC resources have specific requirements to work properly with Kubernetes. For more information, see Cluster VPC considerations and Cluster security group considerations in the Amazon EKS User Guide.
|
656
850
|
*/
|
657
851
|
resourcesVpcConfig?: VpcConfigResponse;
|
658
852
|
/**
|
@@ -676,15 +870,15 @@ declare namespace EKS {
|
|
676
870
|
*/
|
677
871
|
certificateAuthority?: Certificate;
|
678
872
|
/**
|
679
|
-
*
|
873
|
+
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
|
680
874
|
*/
|
681
875
|
clientRequestToken?: String;
|
682
876
|
/**
|
683
|
-
* The platform version of your Amazon EKS cluster. For more information, see Platform
|
877
|
+
* The platform version of your Amazon EKS cluster. For more information about clusters deployed on the Amazon Web Services Cloud, see Platform versions in the Amazon EKS User Guide . For more information about local clusters deployed on an Outpost, see Amazon EKS local cluster platform versions in the Amazon EKS User Guide .
|
684
878
|
*/
|
685
879
|
platformVersion?: String;
|
686
880
|
/**
|
687
|
-
*
|
881
|
+
* Metadata that assists with categorization and organization. Each tag consists of a key and an optional value. You define both. Tags don't propagate to any other cluster or Amazon Web Services resources.
|
688
882
|
*/
|
689
883
|
tags?: TagMap;
|
690
884
|
/**
|
@@ -707,6 +901,10 @@ declare namespace EKS {
|
|
707
901
|
* An object representing the configuration of your local Amazon EKS cluster on an Amazon Web Services Outpost. This object isn't available for clusters on the Amazon Web Services cloud.
|
708
902
|
*/
|
709
903
|
outpostConfig?: OutpostConfigResponse;
|
904
|
+
/**
|
905
|
+
* The access configuration for the cluster.
|
906
|
+
*/
|
907
|
+
accessConfig?: AccessConfigResponse;
|
710
908
|
}
|
711
909
|
export interface ClusterHealth {
|
712
910
|
/**
|
@@ -792,13 +990,56 @@ declare namespace EKS {
|
|
792
990
|
*/
|
793
991
|
groupName?: String;
|
794
992
|
}
|
993
|
+
export interface CreateAccessConfigRequest {
|
994
|
+
/**
|
995
|
+
* Specifies whether or not the cluster creator IAM principal was set as a cluster admin access entry during cluster creation time. The default value is true.
|
996
|
+
*/
|
997
|
+
bootstrapClusterCreatorAdminPermissions?: BoxedBoolean;
|
998
|
+
/**
|
999
|
+
* The desired authentication mode for the cluster. If you create a cluster by using the EKS API, Amazon Web Services SDKs, or CloudFormation, the default is CONFIG_MAP. If you create the cluster by using the Amazon Web Services Management Console, the default value is API_AND_CONFIG_MAP.
|
1000
|
+
*/
|
1001
|
+
authenticationMode?: AuthenticationMode;
|
1002
|
+
}
|
1003
|
+
export interface CreateAccessEntryRequest {
|
1004
|
+
/**
|
1005
|
+
* The name of your cluster.
|
1006
|
+
*/
|
1007
|
+
clusterName: String;
|
1008
|
+
/**
|
1009
|
+
* The ARN of the IAM principal for the AccessEntry. You can specify one ARN for each access entry. You can't specify the same ARN in more than one access entry. This value can't be changed after access entry creation. IAM best practices recommend using IAM roles with temporary credentials, rather than IAM users with long-term credentials.
|
1010
|
+
*/
|
1011
|
+
principalArn: String;
|
1012
|
+
/**
|
1013
|
+
* The value for name that you've specified for kind: Group as a subject in a Kubernetes RoleBinding or ClusterRoleBinding object. Amazon EKS doesn't confirm that the value for name exists in any bindings on your cluster. You can specify one or more names. Kubernetes authorizes the principalArn of the access entry to access any cluster objects that you've specified in a Kubernetes Role or ClusterRole object that is also specified in a binding's roleRef. For more information about creating Kubernetes RoleBinding, ClusterRoleBinding, Role, or ClusterRole objects, see Using RBAC Authorization in the Kubernetes documentation. If you want Amazon EKS to authorize the principalArn (instead of, or in addition to Kubernetes authorizing the principalArn), you can associate one or more access policies to the access entry using AssociateAccessPolicy. If you associate any access policies, the principalARN has all permissions assigned in the associated access policies and all permissions in any Kubernetes Role or ClusterRole objects that the group names are bound to.
|
1014
|
+
*/
|
1015
|
+
kubernetesGroups?: StringList;
|
1016
|
+
/**
|
1017
|
+
* Metadata that assists with categorization and organization. Each tag consists of a key and an optional value. You define both. Tags don't propagate to any other cluster or Amazon Web Services resources.
|
1018
|
+
*/
|
1019
|
+
tags?: TagMap;
|
1020
|
+
/**
|
1021
|
+
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
|
1022
|
+
*/
|
1023
|
+
clientRequestToken?: String;
|
1024
|
+
/**
|
1025
|
+
* The username to authenticate to Kubernetes with. We recommend not specifying a username and letting Amazon EKS specify it for you. For more information about the value Amazon EKS specifies for you, or constraints before specifying your own username, see Creating access entries in the Amazon EKS User Guide.
|
1026
|
+
*/
|
1027
|
+
username?: String;
|
1028
|
+
/**
|
1029
|
+
* If the principalArn is for an IAM role that's used for self-managed Amazon EC2 nodes, specify EC2_LINUX or EC2_WINDOWS. Amazon EKS grants the necessary permissions to the node for you. If the principalArn is for any other purpose, specify STANDARD. If you don't specify a value, Amazon EKS sets the value to STANDARD. It's unnecessary to create access entries for IAM roles used with Fargate profiles or managed Amazon EC2 nodes, because Amazon EKS creates entries in the aws-auth ConfigMap for the roles. You can't change this value once you've created the access entry. If you set the value to EC2_LINUX or EC2_WINDOWS, you can't specify values for kubernetesGroups, or associate an AccessPolicy to the access entry.
|
1030
|
+
*/
|
1031
|
+
type?: String;
|
1032
|
+
}
|
1033
|
+
export interface CreateAccessEntryResponse {
|
1034
|
+
accessEntry?: AccessEntry;
|
1035
|
+
}
|
795
1036
|
export interface CreateAddonRequest {
|
796
1037
|
/**
|
797
|
-
* The name of
|
1038
|
+
* The name of your cluster.
|
798
1039
|
*/
|
799
1040
|
clusterName: ClusterName;
|
800
1041
|
/**
|
801
|
-
* The name of the add-on. The name must match one of the names
|
1042
|
+
* The name of the add-on. The name must match one of the names returned by DescribeAddonVersions.
|
802
1043
|
*/
|
803
1044
|
addonName: String;
|
804
1045
|
/**
|
@@ -818,11 +1059,11 @@ declare namespace EKS {
|
|
818
1059
|
*/
|
819
1060
|
clientRequestToken?: String;
|
820
1061
|
/**
|
821
|
-
*
|
1062
|
+
* Metadata that assists with categorization and organization. Each tag consists of a key and an optional value. You define both. Tags don't propagate to any other cluster or Amazon Web Services resources.
|
822
1063
|
*/
|
823
1064
|
tags?: TagMap;
|
824
1065
|
/**
|
825
|
-
* The set of configuration values for the add-on that's created. The values that you provide are validated against the schema
|
1066
|
+
* The set of configuration values for the add-on that's created. The values that you provide are validated against the schema returned by DescribeAddonConfiguration.
|
826
1067
|
*/
|
827
1068
|
configurationValues?: String;
|
828
1069
|
}
|
@@ -855,11 +1096,11 @@ declare namespace EKS {
|
|
855
1096
|
*/
|
856
1097
|
logging?: Logging;
|
857
1098
|
/**
|
858
|
-
*
|
1099
|
+
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
|
859
1100
|
*/
|
860
1101
|
clientRequestToken?: String;
|
861
1102
|
/**
|
862
|
-
*
|
1103
|
+
* Metadata that assists with categorization and organization. Each tag consists of a key and an optional value. You define both. Tags don't propagate to any other cluster or Amazon Web Services resources.
|
863
1104
|
*/
|
864
1105
|
tags?: TagMap;
|
865
1106
|
/**
|
@@ -870,6 +1111,10 @@ declare namespace EKS {
|
|
870
1111
|
* An object representing the configuration of your local Amazon EKS cluster on an Amazon Web Services Outpost. Before creating a local cluster on an Outpost, review Local clusters for Amazon EKS on Amazon Web Services Outposts in the Amazon EKS User Guide. This object isn't available for creating Amazon EKS clusters on the Amazon Web Services cloud.
|
871
1112
|
*/
|
872
1113
|
outpostConfig?: OutpostConfigRequest;
|
1114
|
+
/**
|
1115
|
+
* The access configuration for the cluster.
|
1116
|
+
*/
|
1117
|
+
accessConfig?: CreateAccessConfigRequest;
|
873
1118
|
}
|
874
1119
|
export interface CreateClusterResponse {
|
875
1120
|
/**
|
@@ -899,7 +1144,7 @@ declare namespace EKS {
|
|
899
1144
|
*/
|
900
1145
|
autoRenew?: Boolean;
|
901
1146
|
/**
|
902
|
-
*
|
1147
|
+
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
|
903
1148
|
*/
|
904
1149
|
clientRequestToken?: String;
|
905
1150
|
/**
|
@@ -919,27 +1164,27 @@ declare namespace EKS {
|
|
919
1164
|
*/
|
920
1165
|
fargateProfileName: String;
|
921
1166
|
/**
|
922
|
-
* The name of
|
1167
|
+
* The name of your cluster.
|
923
1168
|
*/
|
924
1169
|
clusterName: String;
|
925
1170
|
/**
|
926
|
-
* The Amazon Resource Name (ARN) of the
|
1171
|
+
* The Amazon Resource Name (ARN) of the Pod execution role to use for a Pod that matches the selectors in the Fargate profile. The Pod execution role allows Fargate infrastructure to register with your cluster as a node, and it provides read access to Amazon ECR image repositories. For more information, see Pod execution role in the Amazon EKS User Guide.
|
927
1172
|
*/
|
928
1173
|
podExecutionRoleArn: String;
|
929
1174
|
/**
|
930
|
-
* The IDs of subnets to launch
|
1175
|
+
* The IDs of subnets to launch a Pod into. A Pod running on Fargate isn't assigned a public IP address, so only private subnets (with no direct route to an Internet Gateway) are accepted for this parameter.
|
931
1176
|
*/
|
932
1177
|
subnets?: StringList;
|
933
1178
|
/**
|
934
|
-
* The selectors to match for
|
1179
|
+
* The selectors to match for a Pod to use this Fargate profile. Each selector must have an associated Kubernetes namespace. Optionally, you can also specify labels for a namespace. You may specify up to five selectors in a Fargate profile.
|
935
1180
|
*/
|
936
1181
|
selectors?: FargateProfileSelectors;
|
937
1182
|
/**
|
938
|
-
*
|
1183
|
+
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
|
939
1184
|
*/
|
940
1185
|
clientRequestToken?: String;
|
941
1186
|
/**
|
942
|
-
*
|
1187
|
+
* Metadata that assists with categorization and organization. Each tag consists of a key and an optional value. You define both. Tags don't propagate to any other cluster or Amazon Web Services resources.
|
943
1188
|
*/
|
944
1189
|
tags?: TagMap;
|
945
1190
|
}
|
@@ -951,7 +1196,7 @@ declare namespace EKS {
|
|
951
1196
|
}
|
952
1197
|
export interface CreateNodegroupRequest {
|
953
1198
|
/**
|
954
|
-
* The name of
|
1199
|
+
* The name of your cluster.
|
955
1200
|
*/
|
956
1201
|
clusterName: String;
|
957
1202
|
/**
|
@@ -987,7 +1232,7 @@ declare namespace EKS {
|
|
987
1232
|
*/
|
988
1233
|
nodeRole: String;
|
989
1234
|
/**
|
990
|
-
* The Kubernetes labels to
|
1235
|
+
* The Kubernetes labels to apply to the nodes in the node group when they are created.
|
991
1236
|
*/
|
992
1237
|
labels?: labelsMap;
|
993
1238
|
/**
|
@@ -995,11 +1240,11 @@ declare namespace EKS {
|
|
995
1240
|
*/
|
996
1241
|
taints?: taintsList;
|
997
1242
|
/**
|
998
|
-
*
|
1243
|
+
* Metadata that assists with categorization and organization. Each tag consists of a key and an optional value. You define both. Tags don't propagate to any other cluster or Amazon Web Services resources.
|
999
1244
|
*/
|
1000
1245
|
tags?: TagMap;
|
1001
1246
|
/**
|
1002
|
-
*
|
1247
|
+
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
|
1003
1248
|
*/
|
1004
1249
|
clientRequestToken?: String;
|
1005
1250
|
/**
|
@@ -1047,11 +1292,11 @@ declare namespace EKS {
|
|
1047
1292
|
*/
|
1048
1293
|
roleArn: String;
|
1049
1294
|
/**
|
1050
|
-
*
|
1295
|
+
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
|
1051
1296
|
*/
|
1052
1297
|
clientRequestToken?: String;
|
1053
1298
|
/**
|
1054
|
-
*
|
1299
|
+
* Metadata that assists with categorization and organization. Each tag consists of a key and an optional value. You define both. Tags don't propagate to any other cluster or Amazon Web Services resources. The following basic restrictions apply to tags: Maximum number of tags per resource – 50 For each resource, each tag key must be unique, and each tag key can have only one value. Maximum key length – 128 Unicode characters in UTF-8 Maximum value length – 256 Unicode characters in UTF-8 If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @. Tag keys and values are case-sensitive. Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for either keys or values as it is reserved for Amazon Web Services use. You cannot edit or delete tag keys or values with this prefix. Tags with this prefix do not count against your tags per resource limit.
|
1055
1300
|
*/
|
1056
1301
|
tags?: TagMap;
|
1057
1302
|
}
|
@@ -1061,9 +1306,21 @@ declare namespace EKS {
|
|
1061
1306
|
*/
|
1062
1307
|
association?: PodIdentityAssociation;
|
1063
1308
|
}
|
1309
|
+
export interface DeleteAccessEntryRequest {
|
1310
|
+
/**
|
1311
|
+
* The name of your cluster.
|
1312
|
+
*/
|
1313
|
+
clusterName: String;
|
1314
|
+
/**
|
1315
|
+
* The ARN of the IAM principal for the AccessEntry.
|
1316
|
+
*/
|
1317
|
+
principalArn: String;
|
1318
|
+
}
|
1319
|
+
export interface DeleteAccessEntryResponse {
|
1320
|
+
}
|
1064
1321
|
export interface DeleteAddonRequest {
|
1065
1322
|
/**
|
1066
|
-
* The name of
|
1323
|
+
* The name of your cluster.
|
1067
1324
|
*/
|
1068
1325
|
clusterName: ClusterName;
|
1069
1326
|
/**
|
@@ -1104,7 +1361,7 @@ declare namespace EKS {
|
|
1104
1361
|
}
|
1105
1362
|
export interface DeleteFargateProfileRequest {
|
1106
1363
|
/**
|
1107
|
-
* The name of
|
1364
|
+
* The name of your cluster.
|
1108
1365
|
*/
|
1109
1366
|
clusterName: String;
|
1110
1367
|
/**
|
@@ -1120,7 +1377,7 @@ declare namespace EKS {
|
|
1120
1377
|
}
|
1121
1378
|
export interface DeleteNodegroupRequest {
|
1122
1379
|
/**
|
1123
|
-
* The name of
|
1380
|
+
* The name of your cluster.
|
1124
1381
|
*/
|
1125
1382
|
clusterName: String;
|
1126
1383
|
/**
|
@@ -1159,9 +1416,25 @@ declare namespace EKS {
|
|
1159
1416
|
export interface DeregisterClusterResponse {
|
1160
1417
|
cluster?: Cluster;
|
1161
1418
|
}
|
1419
|
+
export interface DescribeAccessEntryRequest {
|
1420
|
+
/**
|
1421
|
+
* The name of your cluster.
|
1422
|
+
*/
|
1423
|
+
clusterName: String;
|
1424
|
+
/**
|
1425
|
+
* The ARN of the IAM principal for the AccessEntry.
|
1426
|
+
*/
|
1427
|
+
principalArn: String;
|
1428
|
+
}
|
1429
|
+
export interface DescribeAccessEntryResponse {
|
1430
|
+
/**
|
1431
|
+
* Information about the access entry.
|
1432
|
+
*/
|
1433
|
+
accessEntry?: AccessEntry;
|
1434
|
+
}
|
1162
1435
|
export interface DescribeAddonConfigurationRequest {
|
1163
1436
|
/**
|
1164
|
-
* The name of the add-on. The name must match one of the names
|
1437
|
+
* The name of the add-on. The name must match one of the names returned by DescribeAddonVersions.
|
1165
1438
|
*/
|
1166
1439
|
addonName: String;
|
1167
1440
|
/**
|
@@ -1179,13 +1452,13 @@ declare namespace EKS {
|
|
1179
1452
|
*/
|
1180
1453
|
addonVersion?: String;
|
1181
1454
|
/**
|
1182
|
-
* A JSON schema that's used to validate the configuration values
|
1455
|
+
* A JSON schema that's used to validate the configuration values you provide when an add-on is created or updated.
|
1183
1456
|
*/
|
1184
1457
|
configurationSchema?: String;
|
1185
1458
|
}
|
1186
1459
|
export interface DescribeAddonRequest {
|
1187
1460
|
/**
|
1188
|
-
* The name of
|
1461
|
+
* The name of your cluster.
|
1189
1462
|
*/
|
1190
1463
|
clusterName: ClusterName;
|
1191
1464
|
/**
|
@@ -1202,11 +1475,11 @@ declare namespace EKS {
|
|
1202
1475
|
*/
|
1203
1476
|
kubernetesVersion?: String;
|
1204
1477
|
/**
|
1205
|
-
* The maximum number of results
|
1478
|
+
* The maximum number of results, returned in paginated output. You receive maxResults in a single page, along with a nextToken response element. You can see the remaining results of the initial request by sending another request with the returned nextToken value. This value can be between 1 and 100. If you don't use this parameter, 100 results and a nextToken value, if applicable, are returned.
|
1206
1479
|
*/
|
1207
1480
|
maxResults?: DescribeAddonVersionsRequestMaxResults;
|
1208
1481
|
/**
|
1209
|
-
* The nextToken value returned from a previous paginated
|
1482
|
+
* The nextToken value returned from a previous paginated request, where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return. This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.
|
1210
1483
|
*/
|
1211
1484
|
nextToken?: String;
|
1212
1485
|
/**
|
@@ -1239,7 +1512,7 @@ declare namespace EKS {
|
|
1239
1512
|
}
|
1240
1513
|
export interface DescribeClusterRequest {
|
1241
1514
|
/**
|
1242
|
-
* The name of
|
1515
|
+
* The name of your cluster.
|
1243
1516
|
*/
|
1244
1517
|
name: String;
|
1245
1518
|
}
|
@@ -1263,7 +1536,7 @@ declare namespace EKS {
|
|
1263
1536
|
}
|
1264
1537
|
export interface DescribeFargateProfileRequest {
|
1265
1538
|
/**
|
1266
|
-
* The name of
|
1539
|
+
* The name of your cluster.
|
1267
1540
|
*/
|
1268
1541
|
clusterName: String;
|
1269
1542
|
/**
|
@@ -1279,7 +1552,7 @@ declare namespace EKS {
|
|
1279
1552
|
}
|
1280
1553
|
export interface DescribeIdentityProviderConfigRequest {
|
1281
1554
|
/**
|
1282
|
-
* The
|
1555
|
+
* The name of your cluster.
|
1283
1556
|
*/
|
1284
1557
|
clusterName: String;
|
1285
1558
|
/**
|
@@ -1295,7 +1568,7 @@ declare namespace EKS {
|
|
1295
1568
|
}
|
1296
1569
|
export interface DescribeNodegroupRequest {
|
1297
1570
|
/**
|
1298
|
-
* The name of
|
1571
|
+
* The name of your cluster.
|
1299
1572
|
*/
|
1300
1573
|
clusterName: String;
|
1301
1574
|
/**
|
@@ -1349,9 +1622,25 @@ declare namespace EKS {
|
|
1349
1622
|
*/
|
1350
1623
|
update?: Update;
|
1351
1624
|
}
|
1625
|
+
export interface DisassociateAccessPolicyRequest {
|
1626
|
+
/**
|
1627
|
+
* The name of your cluster.
|
1628
|
+
*/
|
1629
|
+
clusterName: String;
|
1630
|
+
/**
|
1631
|
+
* The ARN of the IAM principal for the AccessEntry.
|
1632
|
+
*/
|
1633
|
+
principalArn: String;
|
1634
|
+
/**
|
1635
|
+
* The ARN of the policy to disassociate from the access entry. For a list of associated policies ARNs, use ListAssociatedAccessPolicies.
|
1636
|
+
*/
|
1637
|
+
policyArn: String;
|
1638
|
+
}
|
1639
|
+
export interface DisassociateAccessPolicyResponse {
|
1640
|
+
}
|
1352
1641
|
export interface DisassociateIdentityProviderConfigRequest {
|
1353
1642
|
/**
|
1354
|
-
* The name of
|
1643
|
+
* The name of your cluster.
|
1355
1644
|
*/
|
1356
1645
|
clusterName: String;
|
1357
1646
|
/**
|
@@ -1434,7 +1723,7 @@ declare namespace EKS {
|
|
1434
1723
|
export type EksAnywhereSubscriptionTermUnit = "MONTHS"|string;
|
1435
1724
|
export interface EncryptionConfig {
|
1436
1725
|
/**
|
1437
|
-
* Specifies the resources to be encrypted. The only supported value is
|
1726
|
+
* Specifies the resources to be encrypted. The only supported value is secrets.
|
1438
1727
|
*/
|
1439
1728
|
resources?: StringList;
|
1440
1729
|
/**
|
@@ -1446,7 +1735,7 @@ declare namespace EKS {
|
|
1446
1735
|
export type ErrorCode = "SubnetNotFound"|"SecurityGroupNotFound"|"EniLimitReached"|"IpNotAvailable"|"AccessDenied"|"OperationNotPermitted"|"VpcIdNotFound"|"Unknown"|"NodeCreationFailure"|"PodEvictionFailure"|"InsufficientFreeAddresses"|"ClusterUnreachable"|"InsufficientNumberOfReplicas"|"ConfigurationConflict"|"AdmissionRequestDenied"|"UnsupportedAddonModification"|"K8sResourceNotFound"|string;
|
1447
1736
|
export interface ErrorDetail {
|
1448
1737
|
/**
|
1449
|
-
* A brief description of the error. SubnetNotFound: We couldn't find one of the subnets associated with the cluster. SecurityGroupNotFound: We couldn't find one of the security groups associated with the cluster. EniLimitReached: You have reached the elastic network interface limit for your account. IpNotAvailable: A subnet associated with the cluster doesn't have any
|
1738
|
+
* A brief description of the error. SubnetNotFound: We couldn't find one of the subnets associated with the cluster. SecurityGroupNotFound: We couldn't find one of the security groups associated with the cluster. EniLimitReached: You have reached the elastic network interface limit for your account. IpNotAvailable: A subnet associated with the cluster doesn't have any available IP addresses. AccessDenied: You don't have permissions to perform the specified operation. OperationNotPermitted: The service role associated with the cluster doesn't have the required access permissions for Amazon EKS. VpcIdNotFound: We couldn't find the VPC associated with the cluster.
|
1450
1739
|
*/
|
1451
1740
|
errorCode?: ErrorCode;
|
1452
1741
|
/**
|
@@ -1469,23 +1758,23 @@ declare namespace EKS {
|
|
1469
1758
|
*/
|
1470
1759
|
fargateProfileArn?: String;
|
1471
1760
|
/**
|
1472
|
-
* The name of
|
1761
|
+
* The name of your cluster.
|
1473
1762
|
*/
|
1474
1763
|
clusterName?: String;
|
1475
1764
|
/**
|
1476
|
-
* The Unix epoch timestamp
|
1765
|
+
* The Unix epoch timestamp at object creation.
|
1477
1766
|
*/
|
1478
1767
|
createdAt?: Timestamp;
|
1479
1768
|
/**
|
1480
|
-
* The Amazon Resource Name (ARN) of the
|
1769
|
+
* The Amazon Resource Name (ARN) of the Pod execution role to use for any Pod that matches the selectors in the Fargate profile. For more information, see Pod execution role in the Amazon EKS User Guide.
|
1481
1770
|
*/
|
1482
1771
|
podExecutionRoleArn?: String;
|
1483
1772
|
/**
|
1484
|
-
* The IDs of subnets to launch
|
1773
|
+
* The IDs of subnets to launch a Pod into.
|
1485
1774
|
*/
|
1486
1775
|
subnets?: StringList;
|
1487
1776
|
/**
|
1488
|
-
* The selectors to match for
|
1777
|
+
* The selectors to match for a Pod to use this Fargate profile.
|
1489
1778
|
*/
|
1490
1779
|
selectors?: FargateProfileSelectors;
|
1491
1780
|
/**
|
@@ -1493,7 +1782,7 @@ declare namespace EKS {
|
|
1493
1782
|
*/
|
1494
1783
|
status?: FargateProfileStatus;
|
1495
1784
|
/**
|
1496
|
-
*
|
1785
|
+
* Metadata that assists with categorization and organization. Each tag consists of a key and an optional value. You define both. Tags don't propagate to any other cluster or Amazon Web Services resources.
|
1497
1786
|
*/
|
1498
1787
|
tags?: TagMap;
|
1499
1788
|
}
|
@@ -1554,7 +1843,7 @@ declare namespace EKS {
|
|
1554
1843
|
export type IssueList = Issue[];
|
1555
1844
|
export interface KubernetesNetworkConfigRequest {
|
1556
1845
|
/**
|
1557
|
-
* Don't specify a value if you select ipv6 for ipFamily. The CIDR block to assign Kubernetes service IP addresses from. If you don't specify a block, Kubernetes assigns addresses from either the 10.100.0.0/16 or 172.20.0.0/16 CIDR blocks. We recommend that you specify a block that does not overlap with resources in other networks that are peered or connected to your VPC. The block must meet the following requirements: Within one of the following private IP address blocks: 10.0.0.0/8, 172.16.0.0/12, or 192.168.0.0/16. Doesn't overlap with any CIDR block assigned to the VPC that you selected for VPC. Between /24 and /12. You can only specify a custom CIDR block when you create a cluster
|
1846
|
+
* Don't specify a value if you select ipv6 for ipFamily. The CIDR block to assign Kubernetes service IP addresses from. If you don't specify a block, Kubernetes assigns addresses from either the 10.100.0.0/16 or 172.20.0.0/16 CIDR blocks. We recommend that you specify a block that does not overlap with resources in other networks that are peered or connected to your VPC. The block must meet the following requirements: Within one of the following private IP address blocks: 10.0.0.0/8, 172.16.0.0/12, or 192.168.0.0/16. Doesn't overlap with any CIDR block assigned to the VPC that you selected for VPC. Between /24 and /12. You can only specify a custom CIDR block when you create a cluster. You can't change this value after the cluster is created.
|
1558
1847
|
*/
|
1559
1848
|
serviceIpv4Cidr?: String;
|
1560
1849
|
/**
|
@@ -1564,7 +1853,7 @@ declare namespace EKS {
|
|
1564
1853
|
}
|
1565
1854
|
export interface KubernetesNetworkConfigResponse {
|
1566
1855
|
/**
|
1567
|
-
* The CIDR block that Kubernetes
|
1856
|
+
* The CIDR block that Kubernetes Pod and Service object IP addresses are assigned from. Kubernetes assigns addresses from an IPv4 CIDR block assigned to a subnet that the node is in. If you didn't specify a CIDR block when you created the cluster, then Kubernetes assigns addresses from either the 10.100.0.0/16 or 172.20.0.0/16 CIDR blocks. If this was specified, then it was specified when the cluster was created and it can't be changed.
|
1568
1857
|
*/
|
1569
1858
|
serviceIpv4Cidr?: String;
|
1570
1859
|
/**
|
@@ -1572,7 +1861,7 @@ declare namespace EKS {
|
|
1572
1861
|
*/
|
1573
1862
|
serviceIpv6Cidr?: String;
|
1574
1863
|
/**
|
1575
|
-
* The IP family used to assign Kubernetes
|
1864
|
+
* The IP family used to assign Kubernetes Pod and Service objects IP addresses. The IP family is always ipv4, unless you have a 1.21 or later cluster running version 1.10.1 or later of the Amazon VPC CNI plugin for Kubernetes and specified ipv6 when you created the cluster.
|
1576
1865
|
*/
|
1577
1866
|
ipFamily?: IpFamily;
|
1578
1867
|
}
|
@@ -1590,17 +1879,67 @@ declare namespace EKS {
|
|
1590
1879
|
*/
|
1591
1880
|
id?: String;
|
1592
1881
|
}
|
1882
|
+
export interface ListAccessEntriesRequest {
|
1883
|
+
/**
|
1884
|
+
* The name of your cluster.
|
1885
|
+
*/
|
1886
|
+
clusterName: String;
|
1887
|
+
/**
|
1888
|
+
* The ARN of an AccessPolicy. When you specify an access policy ARN, only the access entries associated to that access policy are returned. For a list of available policy ARNs, use ListAccessPolicies.
|
1889
|
+
*/
|
1890
|
+
associatedPolicyArn?: String;
|
1891
|
+
/**
|
1892
|
+
* The maximum number of results, returned in paginated output. You receive maxResults in a single page, along with a nextToken response element. You can see the remaining results of the initial request by sending another request with the returned nextToken value. This value can be between 1 and 100. If you don't use this parameter, 100 results and a nextToken value, if applicable, are returned.
|
1893
|
+
*/
|
1894
|
+
maxResults?: ListAccessEntriesRequestMaxResults;
|
1895
|
+
/**
|
1896
|
+
* The nextToken value returned from a previous paginated request, where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return. This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.
|
1897
|
+
*/
|
1898
|
+
nextToken?: String;
|
1899
|
+
}
|
1900
|
+
export type ListAccessEntriesRequestMaxResults = number;
|
1901
|
+
export interface ListAccessEntriesResponse {
|
1902
|
+
/**
|
1903
|
+
* The list of access entries that exist for the cluster.
|
1904
|
+
*/
|
1905
|
+
accessEntries?: StringList;
|
1906
|
+
/**
|
1907
|
+
* The nextToken value returned from a previous paginated request, where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return. This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.
|
1908
|
+
*/
|
1909
|
+
nextToken?: String;
|
1910
|
+
}
|
1911
|
+
export interface ListAccessPoliciesRequest {
|
1912
|
+
/**
|
1913
|
+
* The maximum number of results, returned in paginated output. You receive maxResults in a single page, along with a nextToken response element. You can see the remaining results of the initial request by sending another request with the returned nextToken value. This value can be between 1 and 100. If you don't use this parameter, 100 results and a nextToken value, if applicable, are returned.
|
1914
|
+
*/
|
1915
|
+
maxResults?: ListAccessPoliciesRequestMaxResults;
|
1916
|
+
/**
|
1917
|
+
* The nextToken value returned from a previous paginated request, where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return. This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.
|
1918
|
+
*/
|
1919
|
+
nextToken?: String;
|
1920
|
+
}
|
1921
|
+
export type ListAccessPoliciesRequestMaxResults = number;
|
1922
|
+
export interface ListAccessPoliciesResponse {
|
1923
|
+
/**
|
1924
|
+
* The list of available access policies. You can't view the contents of an access policy using the API. To view the contents, see Access policy permissions in the Amazon EKS User Guide.
|
1925
|
+
*/
|
1926
|
+
accessPolicies?: AccessPoliciesList;
|
1927
|
+
/**
|
1928
|
+
* The nextToken value returned from a previous paginated request, where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return. This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.
|
1929
|
+
*/
|
1930
|
+
nextToken?: String;
|
1931
|
+
}
|
1593
1932
|
export interface ListAddonsRequest {
|
1594
1933
|
/**
|
1595
|
-
* The name of
|
1934
|
+
* The name of your cluster.
|
1596
1935
|
*/
|
1597
1936
|
clusterName: ClusterName;
|
1598
1937
|
/**
|
1599
|
-
* The maximum number of
|
1938
|
+
* The maximum number of results, returned in paginated output. You receive maxResults in a single page, along with a nextToken response element. You can see the remaining results of the initial request by sending another request with the returned nextToken value. This value can be between 1 and 100. If you don't use this parameter, 100 results and a nextToken value, if applicable, are returned.
|
1600
1939
|
*/
|
1601
1940
|
maxResults?: ListAddonsRequestMaxResults;
|
1602
1941
|
/**
|
1603
|
-
* The nextToken value returned from a previous paginated
|
1942
|
+
* The nextToken value returned from a previous paginated request, where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return. This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.
|
1604
1943
|
*/
|
1605
1944
|
nextToken?: String;
|
1606
1945
|
}
|
@@ -1615,28 +1954,65 @@ declare namespace EKS {
|
|
1615
1954
|
*/
|
1616
1955
|
nextToken?: String;
|
1617
1956
|
}
|
1957
|
+
export interface ListAssociatedAccessPoliciesRequest {
|
1958
|
+
/**
|
1959
|
+
* The name of your cluster.
|
1960
|
+
*/
|
1961
|
+
clusterName: String;
|
1962
|
+
/**
|
1963
|
+
* The ARN of the IAM principal for the AccessEntry.
|
1964
|
+
*/
|
1965
|
+
principalArn: String;
|
1966
|
+
/**
|
1967
|
+
* The maximum number of results, returned in paginated output. You receive maxResults in a single page, along with a nextToken response element. You can see the remaining results of the initial request by sending another request with the returned nextToken value. This value can be between 1 and 100. If you don't use this parameter, 100 results and a nextToken value, if applicable, are returned.
|
1968
|
+
*/
|
1969
|
+
maxResults?: ListAssociatedAccessPoliciesRequestMaxResults;
|
1970
|
+
/**
|
1971
|
+
* The nextToken value returned from a previous paginated request, where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return. This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.
|
1972
|
+
*/
|
1973
|
+
nextToken?: String;
|
1974
|
+
}
|
1975
|
+
export type ListAssociatedAccessPoliciesRequestMaxResults = number;
|
1976
|
+
export interface ListAssociatedAccessPoliciesResponse {
|
1977
|
+
/**
|
1978
|
+
* The name of your cluster.
|
1979
|
+
*/
|
1980
|
+
clusterName?: String;
|
1981
|
+
/**
|
1982
|
+
* The ARN of the IAM principal for the AccessEntry.
|
1983
|
+
*/
|
1984
|
+
principalArn?: String;
|
1985
|
+
/**
|
1986
|
+
* The nextToken value returned from a previous paginated request, where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return. This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.
|
1987
|
+
*/
|
1988
|
+
nextToken?: String;
|
1989
|
+
/**
|
1990
|
+
* The list of access policies associated with the access entry.
|
1991
|
+
*/
|
1992
|
+
associatedAccessPolicies?: AssociatedAccessPoliciesList;
|
1993
|
+
}
|
1618
1994
|
export interface ListClustersRequest {
|
1619
1995
|
/**
|
1620
|
-
* The maximum number of
|
1996
|
+
* The maximum number of results, returned in paginated output. You receive maxResults in a single page, along with a nextToken response element. You can see the remaining results of the initial request by sending another request with the returned nextToken value. This value can be between 1 and 100. If you don't use this parameter, 100 results and a nextToken value, if applicable, are returned.
|
1621
1997
|
*/
|
1622
1998
|
maxResults?: ListClustersRequestMaxResults;
|
1623
1999
|
/**
|
1624
|
-
* The nextToken value returned from a previous paginated
|
2000
|
+
* The nextToken value returned from a previous paginated request, where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return. This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.
|
1625
2001
|
*/
|
1626
2002
|
nextToken?: String;
|
1627
2003
|
/**
|
1628
|
-
* Indicates whether external clusters are included in the returned list. Use 'all' to return
|
2004
|
+
* Indicates whether external clusters are included in the returned list. Use 'all' to return https://docs.aws.amazon.com/eks/latest/userguide/eks-connector.htmlconnected clusters, or blank to return only Amazon EKS clusters. 'all' must be in lowercase otherwise an error occurs.
|
1629
2005
|
*/
|
1630
2006
|
include?: IncludeClustersList;
|
1631
2007
|
}
|
1632
2008
|
export type ListClustersRequestMaxResults = number;
|
1633
2009
|
export interface ListClustersResponse {
|
1634
2010
|
/**
|
1635
|
-
* A list of all of the clusters for your account in the specified Region.
|
2011
|
+
* A list of all of the clusters for your account in the specified Amazon Web Services Region.
|
1636
2012
|
*/
|
1637
2013
|
clusters?: StringList;
|
1638
2014
|
/**
|
1639
|
-
* The nextToken value
|
2015
|
+
* The nextToken value returned from a previous paginated request, where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return. This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.
|
1640
2016
|
*/
|
1641
2017
|
nextToken?: String;
|
1642
2018
|
}
|
@@ -1667,15 +2043,15 @@ declare namespace EKS {
|
|
1667
2043
|
}
|
1668
2044
|
export interface ListFargateProfilesRequest {
|
1669
2045
|
/**
|
1670
|
-
* The name of
|
2046
|
+
* The name of your cluster.
|
1671
2047
|
*/
|
1672
2048
|
clusterName: String;
|
1673
2049
|
/**
|
1674
|
-
* The maximum number of
|
2050
|
+
* The maximum number of results, returned in paginated output. You receive maxResults in a single page, along with a nextToken response element. You can see the remaining results of the initial request by sending another request with the returned nextToken value. This value can be between 1 and 100. If you don't use this parameter, 100 results and a nextToken value, if applicable, are returned.
|
1675
2051
|
*/
|
1676
2052
|
maxResults?: FargateProfilesRequestMaxResults;
|
1677
2053
|
/**
|
1678
|
-
* The nextToken value returned from a previous paginated
|
2054
|
+
* The nextToken value returned from a previous paginated request, where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return. This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.
|
1679
2055
|
*/
|
1680
2056
|
nextToken?: String;
|
1681
2057
|
}
|
@@ -1685,21 +2061,21 @@ declare namespace EKS {
|
|
1685
2061
|
*/
|
1686
2062
|
fargateProfileNames?: StringList;
|
1687
2063
|
/**
|
1688
|
-
* The nextToken value
|
2064
|
+
* The nextToken value returned from a previous paginated request, where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return. This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.
|
1689
2065
|
*/
|
1690
2066
|
nextToken?: String;
|
1691
2067
|
}
|
1692
2068
|
export interface ListIdentityProviderConfigsRequest {
|
1693
2069
|
/**
|
1694
|
-
* The
|
2070
|
+
* The name of your cluster.
|
1695
2071
|
*/
|
1696
2072
|
clusterName: String;
|
1697
2073
|
/**
|
1698
|
-
* The maximum number of
|
2074
|
+
* The maximum number of results, returned in paginated output. You receive maxResults in a single page, along with a nextToken response element. You can see the remaining results of the initial request by sending another request with the returned nextToken value. This value can be between 1 and 100. If you don't use this parameter, 100 results and a nextToken value, if applicable, are returned.
|
1699
2075
|
*/
|
1700
2076
|
maxResults?: ListIdentityProviderConfigsRequestMaxResults;
|
1701
2077
|
/**
|
1702
|
-
* The nextToken value returned from a previous paginated
|
2078
|
+
* The nextToken value returned from a previous paginated request, where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return. This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.
|
1703
2079
|
*/
|
1704
2080
|
nextToken?: String;
|
1705
2081
|
}
|
@@ -1716,15 +2092,15 @@ declare namespace EKS {
|
|
1716
2092
|
}
|
1717
2093
|
export interface ListNodegroupsRequest {
|
1718
2094
|
/**
|
1719
|
-
* The name of
|
2095
|
+
* The name of your cluster.
|
1720
2096
|
*/
|
1721
2097
|
clusterName: String;
|
1722
2098
|
/**
|
1723
|
-
* The maximum number of
|
2099
|
+
* The maximum number of results, returned in paginated output. You receive maxResults in a single page, along with a nextToken response element. You can see the remaining results of the initial request by sending another request with the returned nextToken value. This value can be between 1 and 100. If you don't use this parameter, 100 results and a nextToken value, if applicable, are returned.
|
1724
2100
|
*/
|
1725
2101
|
maxResults?: ListNodegroupsRequestMaxResults;
|
1726
2102
|
/**
|
1727
|
-
* The nextToken value returned from a previous paginated
|
2103
|
+
* The nextToken value returned from a previous paginated request, where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return. This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.
|
1728
2104
|
*/
|
1729
2105
|
nextToken?: String;
|
1730
2106
|
}
|
@@ -1735,7 +2111,7 @@ declare namespace EKS {
|
|
1735
2111
|
*/
|
1736
2112
|
nodegroups?: StringList;
|
1737
2113
|
/**
|
1738
|
-
* The nextToken value
|
2114
|
+
* The nextToken value returned from a previous paginated request, where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return. This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.
|
1739
2115
|
*/
|
1740
2116
|
nextToken?: String;
|
1741
2117
|
}
|
@@ -1774,7 +2150,7 @@ declare namespace EKS {
|
|
1774
2150
|
}
|
1775
2151
|
export interface ListTagsForResourceRequest {
|
1776
2152
|
/**
|
1777
|
-
* The Amazon Resource Name (ARN) that identifies the resource
|
2153
|
+
* The Amazon Resource Name (ARN) that identifies the resource to list tags for.
|
1778
2154
|
*/
|
1779
2155
|
resourceArn: String;
|
1780
2156
|
}
|
@@ -1798,11 +2174,11 @@ declare namespace EKS {
|
|
1798
2174
|
*/
|
1799
2175
|
addonName?: String;
|
1800
2176
|
/**
|
1801
|
-
* The nextToken value returned from a previous paginated
|
2177
|
+
* The nextToken value returned from a previous paginated request, where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return. This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.
|
1802
2178
|
*/
|
1803
2179
|
nextToken?: String;
|
1804
2180
|
/**
|
1805
|
-
* The maximum number of
|
2181
|
+
* The maximum number of results, returned in paginated output. You receive maxResults in a single page, along with a nextToken response element. You can see the remaining results of the initial request by sending another request with the returned nextToken value. This value can be between 1 and 100. If you don't use this parameter, 100 results and a nextToken value, if applicable, are returned.
|
1806
2182
|
*/
|
1807
2183
|
maxResults?: ListUpdatesRequestMaxResults;
|
1808
2184
|
}
|
@@ -1813,7 +2189,7 @@ declare namespace EKS {
|
|
1813
2189
|
*/
|
1814
2190
|
updateIds?: StringList;
|
1815
2191
|
/**
|
1816
|
-
* The nextToken value
|
2192
|
+
* The nextToken value returned from a previous paginated request, where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return. This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.
|
1817
2193
|
*/
|
1818
2194
|
nextToken?: String;
|
1819
2195
|
}
|
@@ -1856,7 +2232,7 @@ declare namespace EKS {
|
|
1856
2232
|
*/
|
1857
2233
|
nodegroupArn?: String;
|
1858
2234
|
/**
|
1859
|
-
* The name of
|
2235
|
+
* The name of your cluster.
|
1860
2236
|
*/
|
1861
2237
|
clusterName?: String;
|
1862
2238
|
/**
|
@@ -1868,11 +2244,11 @@ declare namespace EKS {
|
|
1868
2244
|
*/
|
1869
2245
|
releaseVersion?: String;
|
1870
2246
|
/**
|
1871
|
-
* The Unix epoch timestamp
|
2247
|
+
* The Unix epoch timestamp at object creation.
|
1872
2248
|
*/
|
1873
2249
|
createdAt?: Timestamp;
|
1874
2250
|
/**
|
1875
|
-
* The Unix epoch timestamp
|
2251
|
+
* The Unix epoch timestamp for the last modification to the object.
|
1876
2252
|
*/
|
1877
2253
|
modifiedAt?: Timestamp;
|
1878
2254
|
/**
|
@@ -1936,7 +2312,7 @@ declare namespace EKS {
|
|
1936
2312
|
*/
|
1937
2313
|
launchTemplate?: LaunchTemplateSpecification;
|
1938
2314
|
/**
|
1939
|
-
*
|
2315
|
+
* Metadata that assists with categorization and organization. Each tag consists of a key and an optional value. You define both. Tags don't propagate to any other cluster or Amazon Web Services resources.
|
1940
2316
|
*/
|
1941
2317
|
tags?: TagMap;
|
1942
2318
|
}
|
@@ -1967,18 +2343,18 @@ declare namespace EKS {
|
|
1967
2343
|
*/
|
1968
2344
|
maxSize?: Capacity;
|
1969
2345
|
/**
|
1970
|
-
* The current number of nodes that the managed node group should maintain. If you use Cluster Autoscaler, you shouldn't change the desiredSize value directly, as this can cause the Cluster Autoscaler to suddenly scale up or scale down. Whenever this parameter changes, the number of worker nodes in the node group is updated to the specified size. If this parameter is given a value that is smaller than the current number of running worker nodes, the necessary number of worker nodes are terminated to match the given value. When using CloudFormation, no action occurs if you remove this parameter from your CFN template. This parameter can be different from minSize in some cases, such as when starting with extra hosts for testing. This parameter can also be different when you want to start with an estimated number of needed hosts, but let Cluster Autoscaler reduce the number if there are too many. When Cluster Autoscaler is used, the desiredSize parameter is altered by Cluster Autoscaler (but can be out-of-date for short periods of time). Cluster Autoscaler doesn't scale a managed node group lower than minSize or higher than maxSize.
|
2346
|
+
* The current number of nodes that the managed node group should maintain. If you use the Kubernetes Cluster Autoscaler, you shouldn't change the desiredSize value directly, as this can cause the Cluster Autoscaler to suddenly scale up or scale down. Whenever this parameter changes, the number of worker nodes in the node group is updated to the specified size. If this parameter is given a value that is smaller than the current number of running worker nodes, the necessary number of worker nodes are terminated to match the given value. When using CloudFormation, no action occurs if you remove this parameter from your CFN template. This parameter can be different from minSize in some cases, such as when starting with extra hosts for testing. This parameter can also be different when you want to start with an estimated number of needed hosts, but let the Cluster Autoscaler reduce the number if there are too many. When the Cluster Autoscaler is used, the desiredSize parameter is altered by the Cluster Autoscaler (but can be out-of-date for short periods of time). the Cluster Autoscaler doesn't scale a managed node group lower than minSize or higher than maxSize.
|
1971
2347
|
*/
|
1972
2348
|
desiredSize?: ZeroCapacity;
|
1973
2349
|
}
|
1974
2350
|
export type NodegroupStatus = "CREATING"|"ACTIVE"|"UPDATING"|"DELETING"|"CREATE_FAILED"|"DELETE_FAILED"|"DEGRADED"|string;
|
1975
2351
|
export interface NodegroupUpdateConfig {
|
1976
2352
|
/**
|
1977
|
-
* The maximum number of nodes unavailable at once during a version update. Nodes
|
2353
|
+
* The maximum number of nodes unavailable at once during a version update. Nodes are updated in parallel. This value or maxUnavailablePercentage is required to have a value.The maximum number is 100.
|
1978
2354
|
*/
|
1979
2355
|
maxUnavailable?: NonZeroInteger;
|
1980
2356
|
/**
|
1981
|
-
* The maximum percentage of nodes unavailable during a version update. This percentage of nodes
|
2357
|
+
* The maximum percentage of nodes unavailable during a version update. This percentage of nodes are updated in parallel, up to 100 nodes at once. This value or maxUnavailable is required to have a value.
|
1982
2358
|
*/
|
1983
2359
|
maxUnavailablePercentage?: PercentCapacity;
|
1984
2360
|
}
|
@@ -1999,7 +2375,7 @@ declare namespace EKS {
|
|
1999
2375
|
*/
|
2000
2376
|
identityProviderConfigArn?: String;
|
2001
2377
|
/**
|
2002
|
-
* The
|
2378
|
+
* The name of your cluster.
|
2003
2379
|
*/
|
2004
2380
|
clusterName?: String;
|
2005
2381
|
/**
|
@@ -2031,7 +2407,7 @@ declare namespace EKS {
|
|
2031
2407
|
*/
|
2032
2408
|
requiredClaims?: requiredClaimsMap;
|
2033
2409
|
/**
|
2034
|
-
*
|
2410
|
+
* Metadata that assists with categorization and organization. Each tag consists of a key and an optional value. You define both. Tags don't propagate to any other cluster or Amazon Web Services resources.
|
2035
2411
|
*/
|
2036
2412
|
tags?: TagMap;
|
2037
2413
|
/**
|
@@ -2045,15 +2421,15 @@ declare namespace EKS {
|
|
2045
2421
|
*/
|
2046
2422
|
identityProviderConfigName: String;
|
2047
2423
|
/**
|
2048
|
-
* The URL of the
|
2424
|
+
* The URL of the OIDC identity provider that allows the API server to discover public signing keys for verifying tokens. The URL must begin with https:// and should correspond to the iss claim in the provider's OIDC ID tokens. Based on the OIDC standard, path components are allowed but query parameters are not. Typically the URL consists of only a hostname, like https://server.example.org or https://example.com. This URL should point to the level below .well-known/openid-configuration and must be publicly accessible over the internet.
|
2049
2425
|
*/
|
2050
2426
|
issuerUrl: String;
|
2051
2427
|
/**
|
2052
|
-
* This is also known as audience. The ID for the client application that makes authentication requests to the
|
2428
|
+
* This is also known as audience. The ID for the client application that makes authentication requests to the OIDC identity provider.
|
2053
2429
|
*/
|
2054
2430
|
clientId: String;
|
2055
2431
|
/**
|
2056
|
-
* The JSON Web Token (JWT) claim to use as the username. The default is sub, which is expected to be a unique identifier of the end user. You can choose other claims, such as email or name, depending on the
|
2432
|
+
* The JSON Web Token (JWT) claim to use as the username. The default is sub, which is expected to be a unique identifier of the end user. You can choose other claims, such as email or name, depending on the OIDC identity provider. Claims other than email are prefixed with the issuer URL to prevent naming clashes with other plug-ins.
|
2057
2433
|
*/
|
2058
2434
|
usernameClaim?: String;
|
2059
2435
|
/**
|
@@ -2128,7 +2504,7 @@ declare namespace EKS {
|
|
2128
2504
|
*/
|
2129
2505
|
associationId?: String;
|
2130
2506
|
/**
|
2131
|
-
*
|
2507
|
+
* Metadata that assists with categorization and organization. Each tag consists of a key and an optional value. You define both. Tags don't propagate to any other cluster or Amazon Web Services resources. The following basic restrictions apply to tags: Maximum number of tags per resource – 50 For each resource, each tag key must be unique, and each tag key can have only one value. Maximum key length – 128 Unicode characters in UTF-8 Maximum value length – 256 Unicode characters in UTF-8 If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @. Tag keys and values are case-sensitive. Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for either keys or values as it is reserved for Amazon Web Services use. You cannot edit or delete tag keys or values with this prefix. Tags with this prefix do not count against your tags per resource limit.
|
2132
2508
|
*/
|
2133
2509
|
tags?: TagMap;
|
2134
2510
|
/**
|
@@ -2171,7 +2547,7 @@ declare namespace EKS {
|
|
2171
2547
|
}
|
2172
2548
|
export interface RegisterClusterRequest {
|
2173
2549
|
/**
|
2174
|
-
*
|
2550
|
+
* A unique name for this cluster in your Amazon Web Services Region.
|
2175
2551
|
*/
|
2176
2552
|
name: ClusterName;
|
2177
2553
|
/**
|
@@ -2179,11 +2555,11 @@ declare namespace EKS {
|
|
2179
2555
|
*/
|
2180
2556
|
connectorConfig: ConnectorConfigRequest;
|
2181
2557
|
/**
|
2182
|
-
*
|
2558
|
+
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
|
2183
2559
|
*/
|
2184
2560
|
clientRequestToken?: String;
|
2185
2561
|
/**
|
2186
|
-
*
|
2562
|
+
* Metadata that assists with categorization and organization. Each tag consists of a key and an optional value. You define both. Tags don't propagate to any other cluster or Amazon Web Services resources.
|
2187
2563
|
*/
|
2188
2564
|
tags?: TagMap;
|
2189
2565
|
}
|
@@ -2209,11 +2585,11 @@ declare namespace EKS {
|
|
2209
2585
|
export type TagMap = {[key: string]: TagValue};
|
2210
2586
|
export interface TagResourceRequest {
|
2211
2587
|
/**
|
2212
|
-
* The Amazon Resource Name (ARN) of the resource to
|
2588
|
+
* The Amazon Resource Name (ARN) of the resource to add tags to.
|
2213
2589
|
*/
|
2214
2590
|
resourceArn: String;
|
2215
2591
|
/**
|
2216
|
-
*
|
2592
|
+
* Metadata that assists with categorization and organization. Each tag consists of a key and an optional value. You define both. Tags don't propagate to any other cluster or Amazon Web Services resources.
|
2217
2593
|
*/
|
2218
2594
|
tags: TagMap;
|
2219
2595
|
}
|
@@ -2238,11 +2614,11 @@ declare namespace EKS {
|
|
2238
2614
|
export type Timestamp = Date;
|
2239
2615
|
export interface UntagResourceRequest {
|
2240
2616
|
/**
|
2241
|
-
* The Amazon Resource Name (ARN) of the resource
|
2617
|
+
* The Amazon Resource Name (ARN) of the resource to delete tags from.
|
2242
2618
|
*/
|
2243
2619
|
resourceArn: String;
|
2244
2620
|
/**
|
2245
|
-
* The keys of the tags to
|
2621
|
+
* The keys of the tags to remove.
|
2246
2622
|
*/
|
2247
2623
|
tagKeys: TagKeyList;
|
2248
2624
|
}
|
@@ -2266,7 +2642,7 @@ declare namespace EKS {
|
|
2266
2642
|
*/
|
2267
2643
|
params?: UpdateParams;
|
2268
2644
|
/**
|
2269
|
-
* The Unix epoch timestamp
|
2645
|
+
* The Unix epoch timestamp at object creation.
|
2270
2646
|
*/
|
2271
2647
|
createdAt?: Timestamp;
|
2272
2648
|
/**
|
@@ -2274,9 +2650,43 @@ declare namespace EKS {
|
|
2274
2650
|
*/
|
2275
2651
|
errors?: ErrorDetails;
|
2276
2652
|
}
|
2653
|
+
export interface UpdateAccessConfigRequest {
|
2654
|
+
/**
|
2655
|
+
* The desired authentication mode for the cluster.
|
2656
|
+
*/
|
2657
|
+
authenticationMode?: AuthenticationMode;
|
2658
|
+
}
|
2659
|
+
export interface UpdateAccessEntryRequest {
|
2660
|
+
/**
|
2661
|
+
* The name of your cluster.
|
2662
|
+
*/
|
2663
|
+
clusterName: String;
|
2664
|
+
/**
|
2665
|
+
* The ARN of the IAM principal for the AccessEntry.
|
2666
|
+
*/
|
2667
|
+
principalArn: String;
|
2668
|
+
/**
|
2669
|
+
* The value for name that you've specified for kind: Group as a subject in a Kubernetes RoleBinding or ClusterRoleBinding object. Amazon EKS doesn't confirm that the value for name exists in any bindings on your cluster. You can specify one or more names. Kubernetes authorizes the principalArn of the access entry to access any cluster objects that you've specified in a Kubernetes Role or ClusterRole object that is also specified in a binding's roleRef. For more information about creating Kubernetes RoleBinding, ClusterRoleBinding, Role, or ClusterRole objects, see Using RBAC Authorization in the Kubernetes documentation. If you want Amazon EKS to authorize the principalArn (instead of, or in addition to Kubernetes authorizing the principalArn), you can associate one or more access policies to the access entry using AssociateAccessPolicy. If you associate any access policies, the principalARN has all permissions assigned in the associated access policies and all permissions in any Kubernetes Role or ClusterRole objects that the group names are bound to.
|
2670
|
+
*/
|
2671
|
+
kubernetesGroups?: StringList;
|
2672
|
+
/**
|
2673
|
+
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
|
2674
|
+
*/
|
2675
|
+
clientRequestToken?: String;
|
2676
|
+
/**
|
2677
|
+
* The username to authenticate to Kubernetes with. We recommend not specifying a username and letting Amazon EKS specify it for you. For more information about the value Amazon EKS specifies for you, or constraints before specifying your own username, see Creating access entries in the Amazon EKS User Guide.
|
2678
|
+
*/
|
2679
|
+
username?: String;
|
2680
|
+
}
|
2681
|
+
export interface UpdateAccessEntryResponse {
|
2682
|
+
/**
|
2683
|
+
* The ARN of the IAM principal for the AccessEntry.
|
2684
|
+
*/
|
2685
|
+
accessEntry?: AccessEntry;
|
2686
|
+
}
|
2277
2687
|
export interface UpdateAddonRequest {
|
2278
2688
|
/**
|
2279
|
-
* The name of
|
2689
|
+
* The name of your cluster.
|
2280
2690
|
*/
|
2281
2691
|
clusterName: ClusterName;
|
2282
2692
|
/**
|
@@ -2296,11 +2706,11 @@ declare namespace EKS {
|
|
2296
2706
|
*/
|
2297
2707
|
resolveConflicts?: ResolveConflicts;
|
2298
2708
|
/**
|
2299
|
-
*
|
2709
|
+
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
|
2300
2710
|
*/
|
2301
2711
|
clientRequestToken?: String;
|
2302
2712
|
/**
|
2303
|
-
* The set of configuration values for the add-on that's created. The values that you provide are validated against the schema
|
2713
|
+
* The set of configuration values for the add-on that's created. The values that you provide are validated against the schema returned by DescribeAddonConfiguration.
|
2304
2714
|
*/
|
2305
2715
|
configurationValues?: String;
|
2306
2716
|
}
|
@@ -2318,9 +2728,13 @@ declare namespace EKS {
|
|
2318
2728
|
*/
|
2319
2729
|
logging?: Logging;
|
2320
2730
|
/**
|
2321
|
-
*
|
2731
|
+
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
|
2322
2732
|
*/
|
2323
2733
|
clientRequestToken?: String;
|
2734
|
+
/**
|
2735
|
+
* The access configuration for the cluster.
|
2736
|
+
*/
|
2737
|
+
accessConfig?: UpdateAccessConfigRequest;
|
2324
2738
|
}
|
2325
2739
|
export interface UpdateClusterConfigResponse {
|
2326
2740
|
update?: Update;
|
@@ -2335,7 +2749,7 @@ declare namespace EKS {
|
|
2335
2749
|
*/
|
2336
2750
|
version: String;
|
2337
2751
|
/**
|
2338
|
-
*
|
2752
|
+
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
|
2339
2753
|
*/
|
2340
2754
|
clientRequestToken?: String;
|
2341
2755
|
}
|
@@ -2367,17 +2781,17 @@ declare namespace EKS {
|
|
2367
2781
|
}
|
2368
2782
|
export interface UpdateLabelsPayload {
|
2369
2783
|
/**
|
2370
|
-
* Kubernetes labels to
|
2784
|
+
* The Kubernetes labels to add or update.
|
2371
2785
|
*/
|
2372
2786
|
addOrUpdateLabels?: labelsMap;
|
2373
2787
|
/**
|
2374
|
-
* Kubernetes labels to
|
2788
|
+
* The Kubernetes labels to remove.
|
2375
2789
|
*/
|
2376
2790
|
removeLabels?: labelsKeyList;
|
2377
2791
|
}
|
2378
2792
|
export interface UpdateNodegroupConfigRequest {
|
2379
2793
|
/**
|
2380
|
-
* The name of
|
2794
|
+
* The name of your cluster.
|
2381
2795
|
*/
|
2382
2796
|
clusterName: String;
|
2383
2797
|
/**
|
@@ -2385,7 +2799,7 @@ declare namespace EKS {
|
|
2385
2799
|
*/
|
2386
2800
|
nodegroupName: String;
|
2387
2801
|
/**
|
2388
|
-
* The Kubernetes labels to
|
2802
|
+
* The Kubernetes labels to apply to the nodes in the node group after the update.
|
2389
2803
|
*/
|
2390
2804
|
labels?: UpdateLabelsPayload;
|
2391
2805
|
/**
|
@@ -2401,7 +2815,7 @@ declare namespace EKS {
|
|
2401
2815
|
*/
|
2402
2816
|
updateConfig?: NodegroupUpdateConfig;
|
2403
2817
|
/**
|
2404
|
-
*
|
2818
|
+
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
|
2405
2819
|
*/
|
2406
2820
|
clientRequestToken?: String;
|
2407
2821
|
}
|
@@ -2410,7 +2824,7 @@ declare namespace EKS {
|
|
2410
2824
|
}
|
2411
2825
|
export interface UpdateNodegroupVersionRequest {
|
2412
2826
|
/**
|
2413
|
-
* The name of
|
2827
|
+
* The name of your cluster.
|
2414
2828
|
*/
|
2415
2829
|
clusterName: String;
|
2416
2830
|
/**
|
@@ -2430,11 +2844,11 @@ declare namespace EKS {
|
|
2430
2844
|
*/
|
2431
2845
|
launchTemplate?: LaunchTemplateSpecification;
|
2432
2846
|
/**
|
2433
|
-
* Force the update if the existing node group'
|
2847
|
+
* Force the update if any Pod on the existing node group can't be drained due to a Pod disruption budget issue. If an update fails because all Pods can't be drained, you can force the update after it fails to terminate the old node whether or not any Pod is running on the node.
|
2434
2848
|
*/
|
2435
2849
|
force?: Boolean;
|
2436
2850
|
/**
|
2437
|
-
*
|
2851
|
+
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
|
2438
2852
|
*/
|
2439
2853
|
clientRequestToken?: String;
|
2440
2854
|
}
|
@@ -2451,7 +2865,7 @@ declare namespace EKS {
|
|
2451
2865
|
*/
|
2452
2866
|
value?: String;
|
2453
2867
|
}
|
2454
|
-
export type UpdateParamType = "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"|string;
|
2868
|
+
export type UpdateParamType = "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"|string;
|
2455
2869
|
export type UpdateParams = UpdateParam[];
|
2456
2870
|
export interface UpdatePodIdentityAssociationRequest {
|
2457
2871
|
/**
|
@@ -2467,7 +2881,7 @@ declare namespace EKS {
|
|
2467
2881
|
*/
|
2468
2882
|
roleArn?: String;
|
2469
2883
|
/**
|
2470
|
-
*
|
2884
|
+
* A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
|
2471
2885
|
*/
|
2472
2886
|
clientRequestToken?: String;
|
2473
2887
|
}
|
@@ -2488,7 +2902,7 @@ declare namespace EKS {
|
|
2488
2902
|
*/
|
2489
2903
|
removeTaints?: taintsList;
|
2490
2904
|
}
|
2491
|
-
export type UpdateType = "VersionUpdate"|"EndpointAccessUpdate"|"LoggingUpdate"|"ConfigUpdate"|"AssociateIdentityProviderConfig"|"DisassociateIdentityProviderConfig"|"AssociateEncryptionConfig"|"AddonUpdate"|"VpcConfigUpdate"|string;
|
2905
|
+
export type UpdateType = "VersionUpdate"|"EndpointAccessUpdate"|"LoggingUpdate"|"ConfigUpdate"|"AssociateIdentityProviderConfig"|"DisassociateIdentityProviderConfig"|"AssociateEncryptionConfig"|"AddonUpdate"|"VpcConfigUpdate"|"AccessConfigUpdate"|string;
|
2492
2906
|
export interface VpcConfigRequest {
|
2493
2907
|
/**
|
2494
2908
|
* Specify subnets for your Amazon EKS nodes. Amazon EKS creates cross-account elastic network interfaces in these subnets to allow communication between your nodes and the Kubernetes control plane.
|
@@ -2507,7 +2921,7 @@ declare namespace EKS {
|
|
2507
2921
|
*/
|
2508
2922
|
endpointPrivateAccess?: BoxedBoolean;
|
2509
2923
|
/**
|
2510
|
-
* The CIDR blocks that are allowed access to your cluster's public Kubernetes API server endpoint. Communication to the endpoint from addresses outside of the CIDR blocks that you specify is denied. The default value is 0.0.0.0/0. If you've disabled private endpoint access
|
2924
|
+
* The CIDR blocks that are allowed access to your cluster's public Kubernetes API server endpoint. Communication to the endpoint from addresses outside of the CIDR blocks that you specify is denied. The default value is 0.0.0.0/0. If you've disabled private endpoint access, make sure that you specify the necessary CIDR blocks for every node and Fargate Pod in the cluster. For more information, see Amazon EKS cluster endpoint access control in the Amazon EKS User Guide .
|
2511
2925
|
*/
|
2512
2926
|
publicAccessCidrs?: StringList;
|
2513
2927
|
}
|
@@ -2529,7 +2943,7 @@ declare namespace EKS {
|
|
2529
2943
|
*/
|
2530
2944
|
vpcId?: String;
|
2531
2945
|
/**
|
2532
|
-
*
|
2946
|
+
* Whether the public API server endpoint is enabled.
|
2533
2947
|
*/
|
2534
2948
|
endpointPublicAccess?: Boolean;
|
2535
2949
|
/**
|
@@ -2537,7 +2951,7 @@ declare namespace EKS {
|
|
2537
2951
|
*/
|
2538
2952
|
endpointPrivateAccess?: Boolean;
|
2539
2953
|
/**
|
2540
|
-
* The CIDR blocks that are allowed access to your cluster's public Kubernetes API server endpoint.
|
2954
|
+
* The CIDR blocks that are allowed access to your cluster's public Kubernetes API server endpoint.
|
2541
2955
|
*/
|
2542
2956
|
publicAccessCidrs?: StringList;
|
2543
2957
|
}
|