@aws-sdk/client-eks 3.587.0 → 3.589.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +9 -1
- package/dist-es/models/models_0.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +5 -0
- package/dist-types/commands/AssociateEncryptionConfigCommand.d.ts +1 -1
- package/dist-types/commands/AssociateIdentityProviderConfigCommand.d.ts +1 -1
- package/dist-types/commands/CreateAddonCommand.d.ts +10 -1
- package/dist-types/commands/CreateClusterCommand.d.ts +3 -3
- package/dist-types/commands/CreateNodegroupCommand.d.ts +1 -2
- package/dist-types/commands/CreatePodIdentityAssociationCommand.d.ts +1 -0
- package/dist-types/commands/DeleteAddonCommand.d.ts +4 -1
- package/dist-types/commands/DeletePodIdentityAssociationCommand.d.ts +1 -0
- package/dist-types/commands/DescribeAddonCommand.d.ts +4 -1
- package/dist-types/commands/DescribeAddonConfigurationCommand.d.ts +8 -0
- package/dist-types/commands/DescribeAddonVersionsCommand.d.ts +1 -0
- package/dist-types/commands/DescribePodIdentityAssociationCommand.d.ts +1 -0
- package/dist-types/commands/DescribeUpdateCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateIdentityProviderConfigCommand.d.ts +1 -1
- package/dist-types/commands/ListInsightsCommand.d.ts +3 -1
- package/dist-types/commands/ListPodIdentityAssociationsCommand.d.ts +1 -0
- package/dist-types/commands/UpdateAddonCommand.d.ts +7 -1
- package/dist-types/commands/UpdateClusterConfigCommand.d.ts +1 -1
- package/dist-types/commands/UpdateClusterVersionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateNodegroupConfigCommand.d.ts +1 -1
- package/dist-types/commands/UpdateNodegroupVersionCommand.d.ts +1 -1
- package/dist-types/commands/UpdatePodIdentityAssociationCommand.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +146 -62
- package/dist-types/ts3.4/models/models_0.d.ts +18 -0
- package/package.json +5 -5
package/dist-cjs/index.js
CHANGED
|
@@ -353,6 +353,8 @@ var AccessScopeType = {
|
|
|
353
353
|
};
|
|
354
354
|
var AddonIssueCode = {
|
|
355
355
|
ACCESS_DENIED: "AccessDenied",
|
|
356
|
+
ADDON_PERMISSION_FAILURE: "AddonPermissionFailure",
|
|
357
|
+
ADDON_SUBSCRIPTION_NEEDED: "AddonSubscriptionNeeded",
|
|
356
358
|
ADMISSION_REQUEST_DENIED: "AdmissionRequestDenied",
|
|
357
359
|
CLUSTER_UNREACHABLE: "ClusterUnreachable",
|
|
358
360
|
CONFIGURATION_CONFLICT: "ConfigurationConflict",
|
|
@@ -511,6 +513,7 @@ var UpdateParamType = {
|
|
|
511
513
|
MAX_UNAVAILABLE_PERCENTAGE: "MaxUnavailablePercentage",
|
|
512
514
|
MIN_SIZE: "MinSize",
|
|
513
515
|
PLATFORM_VERSION: "PlatformVersion",
|
|
516
|
+
POD_IDENTITY_ASSOCIATIONS: "PodIdentityAssociations",
|
|
514
517
|
PUBLIC_ACCESS_CIDRS: "PublicAccessCidrs",
|
|
515
518
|
RELEASE_VERSION: "ReleaseVersion",
|
|
516
519
|
RESOLVE_CONFLICTS: "ResolveConflicts",
|
|
@@ -924,6 +927,7 @@ var se_CreateAddonCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
924
927
|
addonVersion: [],
|
|
925
928
|
clientRequestToken: [true, (_) => _ ?? (0, import_uuid.v4)()],
|
|
926
929
|
configurationValues: [],
|
|
930
|
+
podIdentityAssociations: (_) => (0, import_smithy_client._json)(_),
|
|
927
931
|
resolveConflicts: [],
|
|
928
932
|
serviceAccountRoleArn: [],
|
|
929
933
|
tags: (_) => (0, import_smithy_client._json)(_)
|
|
@@ -1553,6 +1557,7 @@ var se_UpdateAddonCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1553
1557
|
addonVersion: [],
|
|
1554
1558
|
clientRequestToken: [true, (_) => _ ?? (0, import_uuid.v4)()],
|
|
1555
1559
|
configurationValues: [],
|
|
1560
|
+
podIdentityAssociations: (_) => (0, import_smithy_client._json)(_),
|
|
1556
1561
|
resolveConflicts: [],
|
|
1557
1562
|
serviceAccountRoleArn: []
|
|
1558
1563
|
})
|
|
@@ -1963,7 +1968,8 @@ var de_DescribeAddonConfigurationCommand = /* @__PURE__ */ __name(async (output,
|
|
|
1963
1968
|
const doc = (0, import_smithy_client.take)(data, {
|
|
1964
1969
|
addonName: import_smithy_client.expectString,
|
|
1965
1970
|
addonVersion: import_smithy_client.expectString,
|
|
1966
|
-
configurationSchema: import_smithy_client.expectString
|
|
1971
|
+
configurationSchema: import_smithy_client.expectString,
|
|
1972
|
+
podIdentityConfiguration: import_smithy_client._json
|
|
1967
1973
|
});
|
|
1968
1974
|
Object.assign(contents, doc);
|
|
1969
1975
|
return contents;
|
|
@@ -2742,6 +2748,7 @@ var de_Addon = /* @__PURE__ */ __name((output, context) => {
|
|
|
2742
2748
|
marketplaceInformation: import_smithy_client._json,
|
|
2743
2749
|
modifiedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2744
2750
|
owner: import_smithy_client.expectString,
|
|
2751
|
+
podIdentityAssociations: import_smithy_client._json,
|
|
2745
2752
|
publisher: import_smithy_client.expectString,
|
|
2746
2753
|
serviceAccountRoleArn: import_smithy_client.expectString,
|
|
2747
2754
|
status: import_smithy_client.expectString,
|
|
@@ -2933,6 +2940,7 @@ var de_PodIdentityAssociation = /* @__PURE__ */ __name((output, context) => {
|
|
|
2933
2940
|
createdAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2934
2941
|
modifiedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2935
2942
|
namespace: import_smithy_client.expectString,
|
|
2943
|
+
ownerArn: import_smithy_client.expectString,
|
|
2936
2944
|
roleArn: import_smithy_client.expectString,
|
|
2937
2945
|
serviceAccount: import_smithy_client.expectString,
|
|
2938
2946
|
tags: import_smithy_client._json
|
|
@@ -22,6 +22,8 @@ export const AccessScopeType = {
|
|
|
22
22
|
};
|
|
23
23
|
export const AddonIssueCode = {
|
|
24
24
|
ACCESS_DENIED: "AccessDenied",
|
|
25
|
+
ADDON_PERMISSION_FAILURE: "AddonPermissionFailure",
|
|
26
|
+
ADDON_SUBSCRIPTION_NEEDED: "AddonSubscriptionNeeded",
|
|
25
27
|
ADMISSION_REQUEST_DENIED: "AdmissionRequestDenied",
|
|
26
28
|
CLUSTER_UNREACHABLE: "ClusterUnreachable",
|
|
27
29
|
CONFIGURATION_CONFLICT: "ConfigurationConflict",
|
|
@@ -160,6 +162,7 @@ export const UpdateParamType = {
|
|
|
160
162
|
MAX_UNAVAILABLE_PERCENTAGE: "MaxUnavailablePercentage",
|
|
161
163
|
MIN_SIZE: "MinSize",
|
|
162
164
|
PLATFORM_VERSION: "PlatformVersion",
|
|
165
|
+
POD_IDENTITY_ASSOCIATIONS: "PodIdentityAssociations",
|
|
163
166
|
PUBLIC_ACCESS_CIDRS: "PublicAccessCidrs",
|
|
164
167
|
RELEASE_VERSION: "ReleaseVersion",
|
|
165
168
|
RESOLVE_CONFLICTS: "ResolveConflicts",
|
|
@@ -83,6 +83,7 @@ export const se_CreateAddonCommand = async (input, context) => {
|
|
|
83
83
|
addonVersion: [],
|
|
84
84
|
clientRequestToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
85
85
|
configurationValues: [],
|
|
86
|
+
podIdentityAssociations: (_) => _json(_),
|
|
86
87
|
resolveConflicts: [],
|
|
87
88
|
serviceAccountRoleArn: [],
|
|
88
89
|
tags: (_) => _json(_),
|
|
@@ -688,6 +689,7 @@ export const se_UpdateAddonCommand = async (input, context) => {
|
|
|
688
689
|
addonVersion: [],
|
|
689
690
|
clientRequestToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
690
691
|
configurationValues: [],
|
|
692
|
+
podIdentityAssociations: (_) => _json(_),
|
|
691
693
|
resolveConflicts: [],
|
|
692
694
|
serviceAccountRoleArn: [],
|
|
693
695
|
}));
|
|
@@ -1086,6 +1088,7 @@ export const de_DescribeAddonConfigurationCommand = async (output, context) => {
|
|
|
1086
1088
|
addonName: __expectString,
|
|
1087
1089
|
addonVersion: __expectString,
|
|
1088
1090
|
configurationSchema: __expectString,
|
|
1091
|
+
podIdentityConfiguration: _json,
|
|
1089
1092
|
});
|
|
1090
1093
|
Object.assign(contents, doc);
|
|
1091
1094
|
return contents;
|
|
@@ -1864,6 +1867,7 @@ const de_Addon = (output, context) => {
|
|
|
1864
1867
|
marketplaceInformation: _json,
|
|
1865
1868
|
modifiedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
1866
1869
|
owner: __expectString,
|
|
1870
|
+
podIdentityAssociations: _json,
|
|
1867
1871
|
publisher: __expectString,
|
|
1868
1872
|
serviceAccountRoleArn: __expectString,
|
|
1869
1873
|
status: __expectString,
|
|
@@ -2065,6 +2069,7 @@ const de_PodIdentityAssociation = (output, context) => {
|
|
|
2065
2069
|
createdAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
2066
2070
|
modifiedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
2067
2071
|
namespace: __expectString,
|
|
2072
|
+
ownerArn: __expectString,
|
|
2068
2073
|
roleArn: __expectString,
|
|
2069
2074
|
serviceAccount: __expectString,
|
|
2070
2075
|
tags: _json,
|
|
@@ -59,7 +59,7 @@ declare const AssociateEncryptionConfigCommand_base: {
|
|
|
59
59
|
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate",
|
|
60
60
|
* // params: [ // UpdateParams
|
|
61
61
|
* // { // UpdateParam
|
|
62
|
-
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode",
|
|
62
|
+
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations",
|
|
63
63
|
* // value: "STRING_VALUE",
|
|
64
64
|
* // },
|
|
65
65
|
* // ],
|
|
@@ -68,7 +68,7 @@ declare const AssociateIdentityProviderConfigCommand_base: {
|
|
|
68
68
|
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate",
|
|
69
69
|
* // params: [ // UpdateParams
|
|
70
70
|
* // { // UpdateParam
|
|
71
|
-
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode",
|
|
71
|
+
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations",
|
|
72
72
|
* // value: "STRING_VALUE",
|
|
73
73
|
* // },
|
|
74
74
|
* // ],
|
|
@@ -47,6 +47,12 @@ declare const CreateAddonCommand_base: {
|
|
|
47
47
|
* "<keys>": "STRING_VALUE",
|
|
48
48
|
* },
|
|
49
49
|
* configurationValues: "STRING_VALUE",
|
|
50
|
+
* podIdentityAssociations: [ // AddonPodIdentityAssociationsList
|
|
51
|
+
* { // AddonPodIdentityAssociations
|
|
52
|
+
* serviceAccount: "STRING_VALUE", // required
|
|
53
|
+
* roleArn: "STRING_VALUE", // required
|
|
54
|
+
* },
|
|
55
|
+
* ],
|
|
50
56
|
* };
|
|
51
57
|
* const command = new CreateAddonCommand(input);
|
|
52
58
|
* const response = await client.send(command);
|
|
@@ -59,7 +65,7 @@ declare const CreateAddonCommand_base: {
|
|
|
59
65
|
* // health: { // AddonHealth
|
|
60
66
|
* // issues: [ // AddonIssueList
|
|
61
67
|
* // { // AddonIssue
|
|
62
|
-
* // code: "AccessDenied" || "InternalFailure" || "ClusterUnreachable" || "InsufficientNumberOfReplicas" || "ConfigurationConflict" || "AdmissionRequestDenied" || "UnsupportedAddonModification" || "K8sResourceNotFound",
|
|
68
|
+
* // code: "AccessDenied" || "InternalFailure" || "ClusterUnreachable" || "InsufficientNumberOfReplicas" || "ConfigurationConflict" || "AdmissionRequestDenied" || "UnsupportedAddonModification" || "K8sResourceNotFound" || "AddonSubscriptionNeeded" || "AddonPermissionFailure",
|
|
63
69
|
* // message: "STRING_VALUE",
|
|
64
70
|
* // resourceIds: [ // StringList
|
|
65
71
|
* // "STRING_VALUE",
|
|
@@ -81,6 +87,9 @@ declare const CreateAddonCommand_base: {
|
|
|
81
87
|
* // productUrl: "STRING_VALUE",
|
|
82
88
|
* // },
|
|
83
89
|
* // configurationValues: "STRING_VALUE",
|
|
90
|
+
* // podIdentityAssociations: [
|
|
91
|
+
* // "STRING_VALUE",
|
|
92
|
+
* // ],
|
|
84
93
|
* // },
|
|
85
94
|
* // };
|
|
86
95
|
*
|
|
@@ -61,9 +61,9 @@ declare const CreateClusterCommand_base: {
|
|
|
61
61
|
* </note>
|
|
62
62
|
* <p>In most cases, it takes several minutes to create a cluster. After you create an
|
|
63
63
|
* Amazon EKS cluster, you must configure your Kubernetes tooling to communicate
|
|
64
|
-
* with the API server and launch nodes into your cluster. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/
|
|
65
|
-
*
|
|
66
|
-
*
|
|
64
|
+
* with the API server and launch nodes into your cluster. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/cluster-auth.html">Allowing users to
|
|
65
|
+
* access your cluster</a> and <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-workers.html">Launching
|
|
66
|
+
* Amazon EKS nodes</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
67
67
|
* @example
|
|
68
68
|
* Use a bare-bones client and the command you need to make an API call.
|
|
69
69
|
* ```javascript
|
|
@@ -30,8 +30,7 @@ declare const CreateNodegroupCommand_base: {
|
|
|
30
30
|
* <p>You can only create a node group for your cluster that is equal to the current Kubernetes
|
|
31
31
|
* version for the cluster. All node groups are created with the latest AMI release version
|
|
32
32
|
* for the respective minor Kubernetes version of the cluster, unless you deploy a custom AMI
|
|
33
|
-
* using a launch template. For more information about using launch templates, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">
|
|
34
|
-
* template support</a>.</p>
|
|
33
|
+
* using a launch template. For more information about using launch templates, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Customizing managed nodes with launch templates</a>.</p>
|
|
35
34
|
* <p>An Amazon EKS managed node group is an Amazon EC2
|
|
36
35
|
* Auto Scaling group and associated Amazon EC2 instances that are managed by
|
|
37
36
|
* Amazon Web Services for an Amazon EKS cluster. For more information, see
|
|
@@ -51,7 +51,7 @@ declare const DeleteAddonCommand_base: {
|
|
|
51
51
|
* // health: { // AddonHealth
|
|
52
52
|
* // issues: [ // AddonIssueList
|
|
53
53
|
* // { // AddonIssue
|
|
54
|
-
* // code: "AccessDenied" || "InternalFailure" || "ClusterUnreachable" || "InsufficientNumberOfReplicas" || "ConfigurationConflict" || "AdmissionRequestDenied" || "UnsupportedAddonModification" || "K8sResourceNotFound",
|
|
54
|
+
* // code: "AccessDenied" || "InternalFailure" || "ClusterUnreachable" || "InsufficientNumberOfReplicas" || "ConfigurationConflict" || "AdmissionRequestDenied" || "UnsupportedAddonModification" || "K8sResourceNotFound" || "AddonSubscriptionNeeded" || "AddonPermissionFailure",
|
|
55
55
|
* // message: "STRING_VALUE",
|
|
56
56
|
* // resourceIds: [ // StringList
|
|
57
57
|
* // "STRING_VALUE",
|
|
@@ -73,6 +73,9 @@ declare const DeleteAddonCommand_base: {
|
|
|
73
73
|
* // productUrl: "STRING_VALUE",
|
|
74
74
|
* // },
|
|
75
75
|
* // configurationValues: "STRING_VALUE",
|
|
76
|
+
* // podIdentityAssociations: [
|
|
77
|
+
* // "STRING_VALUE",
|
|
78
|
+
* // ],
|
|
76
79
|
* // },
|
|
77
80
|
* // };
|
|
78
81
|
*
|
|
@@ -48,7 +48,7 @@ declare const DescribeAddonCommand_base: {
|
|
|
48
48
|
* // health: { // AddonHealth
|
|
49
49
|
* // issues: [ // AddonIssueList
|
|
50
50
|
* // { // AddonIssue
|
|
51
|
-
* // code: "AccessDenied" || "InternalFailure" || "ClusterUnreachable" || "InsufficientNumberOfReplicas" || "ConfigurationConflict" || "AdmissionRequestDenied" || "UnsupportedAddonModification" || "K8sResourceNotFound",
|
|
51
|
+
* // code: "AccessDenied" || "InternalFailure" || "ClusterUnreachable" || "InsufficientNumberOfReplicas" || "ConfigurationConflict" || "AdmissionRequestDenied" || "UnsupportedAddonModification" || "K8sResourceNotFound" || "AddonSubscriptionNeeded" || "AddonPermissionFailure",
|
|
52
52
|
* // message: "STRING_VALUE",
|
|
53
53
|
* // resourceIds: [ // StringList
|
|
54
54
|
* // "STRING_VALUE",
|
|
@@ -70,6 +70,9 @@ declare const DescribeAddonCommand_base: {
|
|
|
70
70
|
* // productUrl: "STRING_VALUE",
|
|
71
71
|
* // },
|
|
72
72
|
* // configurationValues: "STRING_VALUE",
|
|
73
|
+
* // podIdentityAssociations: [
|
|
74
|
+
* // "STRING_VALUE",
|
|
75
|
+
* // ],
|
|
73
76
|
* // },
|
|
74
77
|
* // };
|
|
75
78
|
*
|
|
@@ -43,6 +43,14 @@ declare const DescribeAddonConfigurationCommand_base: {
|
|
|
43
43
|
* // addonName: "STRING_VALUE",
|
|
44
44
|
* // addonVersion: "STRING_VALUE",
|
|
45
45
|
* // configurationSchema: "STRING_VALUE",
|
|
46
|
+
* // podIdentityConfiguration: [ // AddonPodIdentityConfigurationList
|
|
47
|
+
* // { // AddonPodIdentityConfiguration
|
|
48
|
+
* // serviceAccount: "STRING_VALUE",
|
|
49
|
+
* // recommendedManagedPolicies: [ // StringList
|
|
50
|
+
* // "STRING_VALUE",
|
|
51
|
+
* // ],
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
46
54
|
* // };
|
|
47
55
|
*
|
|
48
56
|
* ```
|
|
@@ -51,7 +51,7 @@ declare const DescribeUpdateCommand_base: {
|
|
|
51
51
|
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate",
|
|
52
52
|
* // params: [ // UpdateParams
|
|
53
53
|
* // { // UpdateParam
|
|
54
|
-
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode",
|
|
54
|
+
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations",
|
|
55
55
|
* // value: "STRING_VALUE",
|
|
56
56
|
* // },
|
|
57
57
|
* // ],
|
|
@@ -53,7 +53,7 @@ declare const DisassociateIdentityProviderConfigCommand_base: {
|
|
|
53
53
|
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate",
|
|
54
54
|
* // params: [ // UpdateParams
|
|
55
55
|
* // { // UpdateParam
|
|
56
|
-
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode",
|
|
56
|
+
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations",
|
|
57
57
|
* // value: "STRING_VALUE",
|
|
58
58
|
* // },
|
|
59
59
|
* // ],
|
|
@@ -26,7 +26,9 @@ declare const ListInsightsCommand_base: {
|
|
|
26
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
27
27
|
};
|
|
28
28
|
/**
|
|
29
|
-
* <p>Returns a list of all insights checked for against the specified cluster. You can
|
|
29
|
+
* <p>Returns a list of all insights checked for against the specified cluster. You can
|
|
30
|
+
* filter which insights are returned by category, associated Kubernetes version, and
|
|
31
|
+
* status.</p>
|
|
30
32
|
* @example
|
|
31
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
32
34
|
* ```javascript
|
|
@@ -51,6 +51,7 @@ declare const ListPodIdentityAssociationsCommand_base: {
|
|
|
51
51
|
* // serviceAccount: "STRING_VALUE",
|
|
52
52
|
* // associationArn: "STRING_VALUE",
|
|
53
53
|
* // associationId: "STRING_VALUE",
|
|
54
|
+
* // ownerArn: "STRING_VALUE",
|
|
54
55
|
* // },
|
|
55
56
|
* // ],
|
|
56
57
|
* // nextToken: "STRING_VALUE",
|
|
@@ -41,6 +41,12 @@ declare const UpdateAddonCommand_base: {
|
|
|
41
41
|
* resolveConflicts: "OVERWRITE" || "NONE" || "PRESERVE",
|
|
42
42
|
* clientRequestToken: "STRING_VALUE",
|
|
43
43
|
* configurationValues: "STRING_VALUE",
|
|
44
|
+
* podIdentityAssociations: [ // AddonPodIdentityAssociationsList
|
|
45
|
+
* { // AddonPodIdentityAssociations
|
|
46
|
+
* serviceAccount: "STRING_VALUE", // required
|
|
47
|
+
* roleArn: "STRING_VALUE", // required
|
|
48
|
+
* },
|
|
49
|
+
* ],
|
|
44
50
|
* };
|
|
45
51
|
* const command = new UpdateAddonCommand(input);
|
|
46
52
|
* const response = await client.send(command);
|
|
@@ -51,7 +57,7 @@ declare const UpdateAddonCommand_base: {
|
|
|
51
57
|
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate",
|
|
52
58
|
* // params: [ // UpdateParams
|
|
53
59
|
* // { // UpdateParam
|
|
54
|
-
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode",
|
|
60
|
+
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations",
|
|
55
61
|
* // value: "STRING_VALUE",
|
|
56
62
|
* // },
|
|
57
63
|
* // ],
|
|
@@ -102,7 +102,7 @@ declare const UpdateClusterConfigCommand_base: {
|
|
|
102
102
|
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate",
|
|
103
103
|
* // params: [ // UpdateParams
|
|
104
104
|
* // { // UpdateParam
|
|
105
|
-
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode",
|
|
105
|
+
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations",
|
|
106
106
|
* // value: "STRING_VALUE",
|
|
107
107
|
* // },
|
|
108
108
|
* // ],
|
|
@@ -56,7 +56,7 @@ declare const UpdateClusterVersionCommand_base: {
|
|
|
56
56
|
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate",
|
|
57
57
|
* // params: [ // UpdateParams
|
|
58
58
|
* // { // UpdateParam
|
|
59
|
-
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode",
|
|
59
|
+
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations",
|
|
60
60
|
* // value: "STRING_VALUE",
|
|
61
61
|
* // },
|
|
62
62
|
* // ],
|
|
@@ -83,7 +83,7 @@ declare const UpdateNodegroupConfigCommand_base: {
|
|
|
83
83
|
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate",
|
|
84
84
|
* // params: [ // UpdateParams
|
|
85
85
|
* // { // UpdateParam
|
|
86
|
-
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode",
|
|
86
|
+
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations",
|
|
87
87
|
* // value: "STRING_VALUE",
|
|
88
88
|
* // },
|
|
89
89
|
* // ],
|
|
@@ -74,7 +74,7 @@ declare const UpdateNodegroupVersionCommand_base: {
|
|
|
74
74
|
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate",
|
|
75
75
|
* // params: [ // UpdateParams
|
|
76
76
|
* // { // UpdateParam
|
|
77
|
-
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode",
|
|
77
|
+
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations",
|
|
78
78
|
* // value: "STRING_VALUE",
|
|
79
79
|
* // },
|
|
80
80
|
* // ],
|
|
@@ -175,6 +175,8 @@ export interface AccessScope {
|
|
|
175
175
|
*/
|
|
176
176
|
export declare const AddonIssueCode: {
|
|
177
177
|
readonly ACCESS_DENIED: "AccessDenied";
|
|
178
|
+
readonly ADDON_PERMISSION_FAILURE: "AddonPermissionFailure";
|
|
179
|
+
readonly ADDON_SUBSCRIPTION_NEEDED: "AddonSubscriptionNeeded";
|
|
178
180
|
readonly ADMISSION_REQUEST_DENIED: "AdmissionRequestDenied";
|
|
179
181
|
readonly CLUSTER_UNREACHABLE: "ClusterUnreachable";
|
|
180
182
|
readonly CONFIGURATION_CONFLICT: "ConfigurationConflict";
|
|
@@ -332,6 +334,12 @@ export interface Addon {
|
|
|
332
334
|
* @public
|
|
333
335
|
*/
|
|
334
336
|
configurationValues?: string;
|
|
337
|
+
/**
|
|
338
|
+
* <p>An array of Pod Identity Assocations owned by the Addon. Each EKS Pod Identity association maps a role to a service account in a namespace in the cluster.</p>
|
|
339
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/add-ons-iam.html">Attach an IAM Role to an Amazon EKS add-on using Pod Identity</a> in the EKS User Guide.</p>
|
|
340
|
+
* @public
|
|
341
|
+
*/
|
|
342
|
+
podIdentityAssociations?: string[];
|
|
335
343
|
}
|
|
336
344
|
/**
|
|
337
345
|
* <p>Compatibility information.</p>
|
|
@@ -379,6 +387,11 @@ export interface AddonVersionInfo {
|
|
|
379
387
|
* @public
|
|
380
388
|
*/
|
|
381
389
|
requiresConfiguration?: boolean;
|
|
390
|
+
/**
|
|
391
|
+
* <p>Indicates if the Addon requires IAM Permissions to operate, such as networking permissions.</p>
|
|
392
|
+
* @public
|
|
393
|
+
*/
|
|
394
|
+
requiresIamPermissions?: boolean;
|
|
382
395
|
}
|
|
383
396
|
/**
|
|
384
397
|
* <p>Information about an add-on.</p>
|
|
@@ -417,6 +430,40 @@ export interface AddonInfo {
|
|
|
417
430
|
*/
|
|
418
431
|
marketplaceInformation?: MarketplaceInformation;
|
|
419
432
|
}
|
|
433
|
+
/**
|
|
434
|
+
* <p>A type of Pod Identity Association owned by an Amazon EKS Add-on.</p>
|
|
435
|
+
* <p>Each EKS Pod Identity Association maps a role to a service account in a namespace in the cluster.</p>
|
|
436
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/add-ons-iam.html">Attach an IAM Role to an Amazon EKS add-on using Pod Identity</a> in the EKS User Guide.</p>
|
|
437
|
+
* @public
|
|
438
|
+
*/
|
|
439
|
+
export interface AddonPodIdentityAssociations {
|
|
440
|
+
/**
|
|
441
|
+
* <p>The name of a Kubernetes Service Account.</p>
|
|
442
|
+
* @public
|
|
443
|
+
*/
|
|
444
|
+
serviceAccount: string | undefined;
|
|
445
|
+
/**
|
|
446
|
+
* <p>The ARN of an IAM Role.</p>
|
|
447
|
+
* @public
|
|
448
|
+
*/
|
|
449
|
+
roleArn: string | undefined;
|
|
450
|
+
}
|
|
451
|
+
/**
|
|
452
|
+
* <p>Information about how to configure IAM for an Addon.</p>
|
|
453
|
+
* @public
|
|
454
|
+
*/
|
|
455
|
+
export interface AddonPodIdentityConfiguration {
|
|
456
|
+
/**
|
|
457
|
+
* <p>The Kubernetes Service Account name used by the addon.</p>
|
|
458
|
+
* @public
|
|
459
|
+
*/
|
|
460
|
+
serviceAccount?: string;
|
|
461
|
+
/**
|
|
462
|
+
* <p>A suggested IAM Policy for the addon.</p>
|
|
463
|
+
* @public
|
|
464
|
+
*/
|
|
465
|
+
recommendedManagedPolicies?: string[];
|
|
466
|
+
}
|
|
420
467
|
/**
|
|
421
468
|
* @public
|
|
422
469
|
* @enum
|
|
@@ -547,7 +594,7 @@ export declare class InvalidParameterException extends __BaseException {
|
|
|
547
594
|
*/
|
|
548
595
|
addonName?: string;
|
|
549
596
|
/**
|
|
550
|
-
* <p>The Amazon EKS
|
|
597
|
+
* <p>The Amazon EKS subscription ID with the exception.</p>
|
|
551
598
|
* @public
|
|
552
599
|
*/
|
|
553
600
|
subscriptionId?: string;
|
|
@@ -581,7 +628,7 @@ export declare class InvalidRequestException extends __BaseException {
|
|
|
581
628
|
*/
|
|
582
629
|
addonName?: string;
|
|
583
630
|
/**
|
|
584
|
-
* <p>The Amazon EKS
|
|
631
|
+
* <p>The Amazon EKS subscription ID with the exception.</p>
|
|
585
632
|
* @public
|
|
586
633
|
*/
|
|
587
634
|
subscriptionId?: string;
|
|
@@ -620,7 +667,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
620
667
|
*/
|
|
621
668
|
addonName?: string;
|
|
622
669
|
/**
|
|
623
|
-
* <p>The Amazon EKS
|
|
670
|
+
* <p>The Amazon EKS subscription ID with the exception.</p>
|
|
624
671
|
* @public
|
|
625
672
|
*/
|
|
626
673
|
subscriptionId?: string;
|
|
@@ -652,7 +699,7 @@ export declare class ServerException extends __BaseException {
|
|
|
652
699
|
*/
|
|
653
700
|
addonName?: string;
|
|
654
701
|
/**
|
|
655
|
-
* <p>The Amazon EKS
|
|
702
|
+
* <p>The Amazon EKS subscription ID with the exception.</p>
|
|
656
703
|
* @public
|
|
657
704
|
*/
|
|
658
705
|
subscriptionId?: string;
|
|
@@ -670,10 +717,10 @@ export interface Provider {
|
|
|
670
717
|
/**
|
|
671
718
|
* <p>Amazon Resource Name (ARN) or alias of the KMS key. The KMS key must be
|
|
672
719
|
* symmetric and created in the same Amazon Web Services Region as the cluster. If the
|
|
673
|
-
*
|
|
720
|
+
* KMS key was created in a different account, the <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_terms-and-concepts.html">IAM principal</a> must
|
|
674
721
|
* have access to the KMS key. For more information, see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/key-policy-modifying-external-accounts.html">Allowing
|
|
675
722
|
* users in other accounts to use a KMS key</a> in the
|
|
676
|
-
*
|
|
723
|
+
* <i>Key Management Service Developer Guide</i>.</p>
|
|
677
724
|
* @public
|
|
678
725
|
*/
|
|
679
726
|
keyArn?: string;
|
|
@@ -826,6 +873,7 @@ export declare const UpdateParamType: {
|
|
|
826
873
|
readonly MAX_UNAVAILABLE_PERCENTAGE: "MaxUnavailablePercentage";
|
|
827
874
|
readonly MIN_SIZE: "MinSize";
|
|
828
875
|
readonly PLATFORM_VERSION: "PlatformVersion";
|
|
876
|
+
readonly POD_IDENTITY_ASSOCIATIONS: "PodIdentityAssociations";
|
|
829
877
|
readonly PUBLIC_ACCESS_CIDRS: "PublicAccessCidrs";
|
|
830
878
|
readonly RELEASE_VERSION: "ReleaseVersion";
|
|
831
879
|
readonly RESOLVE_CONFLICTS: "ResolveConflicts";
|
|
@@ -961,7 +1009,7 @@ export declare class ClientException extends __BaseException {
|
|
|
961
1009
|
*/
|
|
962
1010
|
addonName?: string;
|
|
963
1011
|
/**
|
|
964
|
-
* <p>The Amazon EKS
|
|
1012
|
+
* <p>The Amazon EKS subscription ID with the exception.</p>
|
|
965
1013
|
* @public
|
|
966
1014
|
*/
|
|
967
1015
|
subscriptionId?: string;
|
|
@@ -1136,11 +1184,13 @@ export interface CreateAccessEntryRequest {
|
|
|
1136
1184
|
* <p>The ARN of the IAM principal for the <code>AccessEntry</code>. You can specify one ARN for each access entry. You can't specify the
|
|
1137
1185
|
* same ARN in more than one access entry. This value can't be changed after access entry
|
|
1138
1186
|
* creation.</p>
|
|
1139
|
-
* <p>The valid principals differ depending on the type of the access entry in the
|
|
1140
|
-
*
|
|
1187
|
+
* <p>The valid principals differ depending on the type of the access entry in the
|
|
1188
|
+
* <code>type</code> field. The only valid ARN is IAM roles for the types of access
|
|
1189
|
+
* entries for nodes: <code></code>
|
|
1141
1190
|
* <code></code>. You can use every IAM principal type for <code>STANDARD</code> access entries.
|
|
1142
|
-
* You can't use the STS session principal type with access entries because this is a
|
|
1143
|
-
* principal for each session and not a permanent identity that can be assigned
|
|
1191
|
+
* You can't use the STS session principal type with access entries because this is a
|
|
1192
|
+
* temporary principal for each session and not a permanent identity that can be assigned
|
|
1193
|
+
* permissions.</p>
|
|
1144
1194
|
* <p>
|
|
1145
1195
|
* <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/best-practices.html#bp-users-federation-idp">IAM best practices</a> recommend using IAM roles with
|
|
1146
1196
|
* temporary credentials, rather than IAM users with long-term credentials.
|
|
@@ -1195,7 +1245,8 @@ export interface CreateAccessEntryRequest {
|
|
|
1195
1245
|
username?: string;
|
|
1196
1246
|
/**
|
|
1197
1247
|
* <p>The type of the new access entry. Valid values are <code>Standard</code>,
|
|
1198
|
-
*
|
|
1248
|
+
* <code>FARGATE_LINUX</code>, <code>EC2_LINUX</code>, and
|
|
1249
|
+
* <code>EC2_WINDOWS</code>.</p>
|
|
1199
1250
|
* <p>If the <code>principalArn</code> is for an IAM role that's used for
|
|
1200
1251
|
* self-managed Amazon EC2 nodes, specify <code>EC2_LINUX</code> or
|
|
1201
1252
|
* <code>EC2_WINDOWS</code>. Amazon EKS grants the necessary permissions to the
|
|
@@ -1244,7 +1295,7 @@ export declare class ResourceLimitExceededException extends __BaseException {
|
|
|
1244
1295
|
*/
|
|
1245
1296
|
nodegroupName?: string;
|
|
1246
1297
|
/**
|
|
1247
|
-
* <p>The Amazon EKS
|
|
1298
|
+
* <p>The Amazon EKS subscription ID with the exception.</p>
|
|
1248
1299
|
* @public
|
|
1249
1300
|
*/
|
|
1250
1301
|
subscriptionId?: string;
|
|
@@ -1352,6 +1403,12 @@ export interface CreateAddonRequest {
|
|
|
1352
1403
|
* @public
|
|
1353
1404
|
*/
|
|
1354
1405
|
configurationValues?: string;
|
|
1406
|
+
/**
|
|
1407
|
+
* <p>An array of Pod Identity Assocations to be created. Each EKS Pod Identity association maps a Kubernetes service account to an IAM Role.</p>
|
|
1408
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/add-ons-iam.html">Attach an IAM Role to an Amazon EKS add-on using Pod Identity</a> in the EKS User Guide.</p>
|
|
1409
|
+
* @public
|
|
1410
|
+
*/
|
|
1411
|
+
podIdentityAssociations?: AddonPodIdentityAssociations[];
|
|
1355
1412
|
}
|
|
1356
1413
|
/**
|
|
1357
1414
|
* @public
|
|
@@ -1501,8 +1558,8 @@ export interface Logging {
|
|
|
1501
1558
|
*/
|
|
1502
1559
|
export interface ControlPlanePlacementRequest {
|
|
1503
1560
|
/**
|
|
1504
|
-
* <p>The name of the placement group for the Kubernetes control plane instances. This
|
|
1505
|
-
*
|
|
1561
|
+
* <p>The name of the placement group for the Kubernetes control plane instances. This setting
|
|
1562
|
+
* can't be changed after cluster creation. </p>
|
|
1506
1563
|
* @public
|
|
1507
1564
|
*/
|
|
1508
1565
|
groupName?: string;
|
|
@@ -1773,9 +1830,7 @@ export declare const ClusterIssueCode: {
|
|
|
1773
1830
|
*/
|
|
1774
1831
|
export type ClusterIssueCode = (typeof ClusterIssueCode)[keyof typeof ClusterIssueCode];
|
|
1775
1832
|
/**
|
|
1776
|
-
* <p>An issue with your
|
|
1777
|
-
* You can't use this API with an Amazon EKS cluster on the Amazon Web Services
|
|
1778
|
-
* cloud.</p>
|
|
1833
|
+
* <p>An issue with your Amazon EKS cluster.</p>
|
|
1779
1834
|
* @public
|
|
1780
1835
|
*/
|
|
1781
1836
|
export interface ClusterIssue {
|
|
@@ -1796,15 +1851,12 @@ export interface ClusterIssue {
|
|
|
1796
1851
|
resourceIds?: string[];
|
|
1797
1852
|
}
|
|
1798
1853
|
/**
|
|
1799
|
-
* <p>An object representing the health of your
|
|
1800
|
-
* Amazon Web Services Outpost. You can't use this API with an Amazon EKS
|
|
1801
|
-
* cluster on the Amazon Web Services cloud. </p>
|
|
1854
|
+
* <p>An object representing the health of your Amazon EKS cluster.</p>
|
|
1802
1855
|
* @public
|
|
1803
1856
|
*/
|
|
1804
1857
|
export interface ClusterHealth {
|
|
1805
1858
|
/**
|
|
1806
|
-
* <p>An object representing the health issues of your
|
|
1807
|
-
* an Amazon Web Services Outpost.</p>
|
|
1859
|
+
* <p>An object representing the health issues of your Amazon EKS cluster.</p>
|
|
1808
1860
|
* @public
|
|
1809
1861
|
*/
|
|
1810
1862
|
issues?: ClusterIssue[];
|
|
@@ -2095,8 +2147,7 @@ export interface Cluster {
|
|
|
2095
2147
|
*/
|
|
2096
2148
|
id?: string;
|
|
2097
2149
|
/**
|
|
2098
|
-
* <p>An object representing the health of your
|
|
2099
|
-
* Amazon Web Services Outpost. This object isn't available for clusters on the Amazon Web Services cloud.</p>
|
|
2150
|
+
* <p>An object representing the health of your Amazon EKS cluster.</p>
|
|
2100
2151
|
* @public
|
|
2101
2152
|
*/
|
|
2102
2153
|
health?: ClusterHealth;
|
|
@@ -2195,7 +2246,8 @@ export type EksAnywhereSubscriptionTermUnit = (typeof EksAnywhereSubscriptionTer
|
|
|
2195
2246
|
*/
|
|
2196
2247
|
export interface EksAnywhereSubscriptionTerm {
|
|
2197
2248
|
/**
|
|
2198
|
-
* <p>The duration of the subscription term. Valid values are 12 and 36, indicating a 12
|
|
2249
|
+
* <p>The duration of the subscription term. Valid values are 12 and 36, indicating a 12
|
|
2250
|
+
* month or 36 month subscription.</p>
|
|
2199
2251
|
* @public
|
|
2200
2252
|
*/
|
|
2201
2253
|
duration?: number;
|
|
@@ -2523,7 +2575,7 @@ export type CapacityTypes = (typeof CapacityTypes)[keyof typeof CapacityTypes];
|
|
|
2523
2575
|
* update will fail. For more information about launch templates, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateLaunchTemplate.html">
|
|
2524
2576
|
* <code>CreateLaunchTemplate</code>
|
|
2525
2577
|
* </a> in the Amazon EC2 API
|
|
2526
|
-
* Reference. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">
|
|
2578
|
+
* Reference. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Customizing managed nodes with launch templates</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
2527
2579
|
* <p>You must specify either the launch template ID or the launch template name in the
|
|
2528
2580
|
* request, but not both.</p>
|
|
2529
2581
|
* @public
|
|
@@ -2700,7 +2752,7 @@ export interface CreateNodegroupRequest {
|
|
|
2700
2752
|
* <p>The root device disk size (in GiB) for your node group instances. The default disk
|
|
2701
2753
|
* size is 20 GiB for Linux and Bottlerocket. The default disk size is 50 GiB for Windows.
|
|
2702
2754
|
* If you specify <code>launchTemplate</code>, then don't specify <code>diskSize</code>, or the node group
|
|
2703
|
-
* deployment will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">
|
|
2755
|
+
* deployment will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Customizing managed nodes with launch templates</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
2704
2756
|
* @public
|
|
2705
2757
|
*/
|
|
2706
2758
|
diskSize?: number;
|
|
@@ -2709,7 +2761,7 @@ export interface CreateNodegroupRequest {
|
|
|
2709
2761
|
* If you specify <code>launchTemplate</code>, then don't specify <code>
|
|
2710
2762
|
* <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateNetworkInterface.html">SubnetId</a>
|
|
2711
2763
|
* </code> in your launch template, or the node group deployment
|
|
2712
|
-
* will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">
|
|
2764
|
+
* will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Customizing managed nodes with launch templates</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
2713
2765
|
* @public
|
|
2714
2766
|
*/
|
|
2715
2767
|
subnets: string[] | undefined;
|
|
@@ -2723,7 +2775,7 @@ export interface CreateNodegroupRequest {
|
|
|
2723
2775
|
* deployment will fail. If you don't specify an instance type in a launch template or for
|
|
2724
2776
|
* <code>instanceTypes</code>, then <code>t3.medium</code> is used, by default. If you
|
|
2725
2777
|
* specify <code>Spot</code> for <code>capacityType</code>, then we recommend specifying
|
|
2726
|
-
* multiple values for <code>instanceTypes</code>. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/managed-node-groups.html#managed-node-group-capacity-types">Managed node group capacity types</a> and <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">
|
|
2778
|
+
* multiple values for <code>instanceTypes</code>. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/managed-node-groups.html#managed-node-group-capacity-types">Managed node group capacity types</a> and <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Customizing managed nodes with launch templates</a> in
|
|
2727
2779
|
* the <i>Amazon EKS User Guide</i>.</p>
|
|
2728
2780
|
* @public
|
|
2729
2781
|
*/
|
|
@@ -2734,7 +2786,7 @@ export interface CreateNodegroupRequest {
|
|
|
2734
2786
|
* will fail. If your launch template uses a Windows custom AMI, then add
|
|
2735
2787
|
* <code>eks:kube-proxy-windows</code> to your Windows nodes <code>rolearn</code> in
|
|
2736
2788
|
* the <code>aws-auth</code>
|
|
2737
|
-
* <code>ConfigMap</code>. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">
|
|
2789
|
+
* <code>ConfigMap</code>. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Customizing managed nodes with launch templates</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
2738
2790
|
* @public
|
|
2739
2791
|
*/
|
|
2740
2792
|
amiType?: AMITypes;
|
|
@@ -2742,7 +2794,7 @@ export interface CreateNodegroupRequest {
|
|
|
2742
2794
|
* <p>The remote access configuration to use with your node group. For Linux, the protocol
|
|
2743
2795
|
* is SSH. For Windows, the protocol is RDP. If you specify <code>launchTemplate</code>, then don't specify
|
|
2744
2796
|
* <code>remoteAccess</code>, or the node group deployment will fail.
|
|
2745
|
-
* For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">
|
|
2797
|
+
* For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Customizing managed nodes with launch templates</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
2746
2798
|
* @public
|
|
2747
2799
|
*/
|
|
2748
2800
|
remoteAccess?: RemoteAccessConfig;
|
|
@@ -2758,7 +2810,7 @@ export interface CreateNodegroupRequest {
|
|
|
2758
2810
|
* <code>
|
|
2759
2811
|
* <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_IamInstanceProfile.html">IamInstanceProfile</a>
|
|
2760
2812
|
* </code> in your launch template, or the node group
|
|
2761
|
-
* deployment will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">
|
|
2813
|
+
* deployment will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Customizing managed nodes with launch templates</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
2762
2814
|
* @public
|
|
2763
2815
|
*/
|
|
2764
2816
|
nodeRole: string | undefined;
|
|
@@ -2789,10 +2841,12 @@ export interface CreateNodegroupRequest {
|
|
|
2789
2841
|
*/
|
|
2790
2842
|
clientRequestToken?: string;
|
|
2791
2843
|
/**
|
|
2792
|
-
* <p>An object representing a node group's launch template specification.
|
|
2793
|
-
*
|
|
2794
|
-
*
|
|
2795
|
-
* requirements in <code>launchTemplateSpecification</code
|
|
2844
|
+
* <p>An object representing a node group's launch template specification. When using this
|
|
2845
|
+
* object, don't directly specify <code>instanceTypes</code>, <code>diskSize</code>, or
|
|
2846
|
+
* <code>remoteAccess</code>. Make sure that
|
|
2847
|
+
* the launch template meets the requirements in <code>launchTemplateSpecification</code>. Also refer to
|
|
2848
|
+
* <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Customizing managed nodes with launch templates</a> in
|
|
2849
|
+
* the <i>Amazon EKS User Guide</i>.</p>
|
|
2796
2850
|
* @public
|
|
2797
2851
|
*/
|
|
2798
2852
|
launchTemplate?: LaunchTemplateSpecification;
|
|
@@ -2810,7 +2864,7 @@ export interface CreateNodegroupRequest {
|
|
|
2810
2864
|
* <p>The Kubernetes version to use for your managed nodes. By default, the Kubernetes version of the
|
|
2811
2865
|
* cluster is used, and this is the only accepted specified value. If you specify <code>launchTemplate</code>,
|
|
2812
2866
|
* and your launch template uses a custom AMI, then don't specify <code>version</code>, or the node group
|
|
2813
|
-
* deployment will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">
|
|
2867
|
+
* deployment will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Customizing managed nodes with launch templates</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
2814
2868
|
* @public
|
|
2815
2869
|
*/
|
|
2816
2870
|
version?: string;
|
|
@@ -2822,7 +2876,7 @@ export interface CreateNodegroupRequest {
|
|
|
2822
2876
|
* <i>Amazon EKS User Guide</i>.</p>
|
|
2823
2877
|
* <p>If you specify <code>launchTemplate</code>, and your launch template uses a custom AMI, then don't specify
|
|
2824
2878
|
* <code>releaseVersion</code>, or the node group deployment will fail.
|
|
2825
|
-
* For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">
|
|
2879
|
+
* For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Customizing managed nodes with launch templates</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
2826
2880
|
* @public
|
|
2827
2881
|
*/
|
|
2828
2882
|
releaseVersion?: string;
|
|
@@ -3358,6 +3412,11 @@ export interface PodIdentityAssociation {
|
|
|
3358
3412
|
* @public
|
|
3359
3413
|
*/
|
|
3360
3414
|
modifiedAt?: Date;
|
|
3415
|
+
/**
|
|
3416
|
+
* <p>If defined, the Pod Identity Association is owned by an Amazon EKS Addon.</p>
|
|
3417
|
+
* @public
|
|
3418
|
+
*/
|
|
3419
|
+
ownerArn?: string;
|
|
3361
3420
|
}
|
|
3362
3421
|
/**
|
|
3363
3422
|
* @public
|
|
@@ -3653,6 +3712,11 @@ export interface DescribeAddonConfigurationResponse {
|
|
|
3653
3712
|
* @public
|
|
3654
3713
|
*/
|
|
3655
3714
|
configurationSchema?: string;
|
|
3715
|
+
/**
|
|
3716
|
+
* <p>The Kubernetes service account name used by the addon, and any suggested IAM policies. Use this information to create an IAM Role for the Addon.</p>
|
|
3717
|
+
* @public
|
|
3718
|
+
*/
|
|
3719
|
+
podIdentityConfiguration?: AddonPodIdentityConfiguration[];
|
|
3656
3720
|
}
|
|
3657
3721
|
/**
|
|
3658
3722
|
* @public
|
|
@@ -3972,7 +4036,7 @@ export declare const Category: {
|
|
|
3972
4036
|
*/
|
|
3973
4037
|
export type Category = (typeof Category)[keyof typeof Category];
|
|
3974
4038
|
/**
|
|
3975
|
-
* <p>Details about
|
|
4039
|
+
* <p>Details about clients using the deprecated resources.</p>
|
|
3976
4040
|
* @public
|
|
3977
4041
|
*/
|
|
3978
4042
|
export interface ClientStat {
|
|
@@ -4009,12 +4073,14 @@ export interface DeprecationDetail {
|
|
|
4009
4073
|
*/
|
|
4010
4074
|
replacedWith?: string;
|
|
4011
4075
|
/**
|
|
4012
|
-
* <p>The version of the software where the deprecated resource version will stop being
|
|
4076
|
+
* <p>The version of the software where the deprecated resource version will stop being
|
|
4077
|
+
* served.</p>
|
|
4013
4078
|
* @public
|
|
4014
4079
|
*/
|
|
4015
4080
|
stopServingVersion?: string;
|
|
4016
4081
|
/**
|
|
4017
|
-
* <p>The version of the software where the newer resource version became available to
|
|
4082
|
+
* <p>The version of the software where the newer resource version became available to
|
|
4083
|
+
* migrate to if applicable.</p>
|
|
4018
4084
|
* @public
|
|
4019
4085
|
*/
|
|
4020
4086
|
startServingReplacementVersion?: string;
|
|
@@ -4089,7 +4155,8 @@ export interface InsightResourceDetail {
|
|
|
4089
4155
|
arn?: string;
|
|
4090
4156
|
}
|
|
4091
4157
|
/**
|
|
4092
|
-
* <p>A check that provides recommendations to remedy potential upgrade-impacting
|
|
4158
|
+
* <p>A check that provides recommendations to remedy potential upgrade-impacting
|
|
4159
|
+
* issues.</p>
|
|
4093
4160
|
* @public
|
|
4094
4161
|
*/
|
|
4095
4162
|
export interface Insight {
|
|
@@ -4114,7 +4181,8 @@ export interface Insight {
|
|
|
4114
4181
|
*/
|
|
4115
4182
|
kubernetesVersion?: string;
|
|
4116
4183
|
/**
|
|
4117
|
-
* <p>The time Amazon EKS last successfully completed a refresh of this insight check on the
|
|
4184
|
+
* <p>The time Amazon EKS last successfully completed a refresh of this insight check on the
|
|
4185
|
+
* cluster.</p>
|
|
4118
4186
|
* @public
|
|
4119
4187
|
*/
|
|
4120
4188
|
lastRefreshTime?: Date;
|
|
@@ -4124,7 +4192,8 @@ export interface Insight {
|
|
|
4124
4192
|
*/
|
|
4125
4193
|
lastTransitionTime?: Date;
|
|
4126
4194
|
/**
|
|
4127
|
-
* <p>The description of the insight which includes alert criteria, remediation
|
|
4195
|
+
* <p>The description of the insight which includes alert criteria, remediation
|
|
4196
|
+
* recommendation, and additional resources (contains Markdown).</p>
|
|
4128
4197
|
* @public
|
|
4129
4198
|
*/
|
|
4130
4199
|
description?: string;
|
|
@@ -4465,7 +4534,7 @@ export interface ListAddonsResponse {
|
|
|
4465
4534
|
/**
|
|
4466
4535
|
* <p>The <code>nextToken</code> value to include in a future <code>ListAddons</code>
|
|
4467
4536
|
* request. When the results of a <code>ListAddons</code> request exceed
|
|
4468
|
-
*
|
|
4537
|
+
* <code>maxResults</code>, you can use this value to retrieve the next page of
|
|
4469
4538
|
* results. This value is <code>null</code> when there are no more results to
|
|
4470
4539
|
* return.</p>
|
|
4471
4540
|
* <note>
|
|
@@ -4633,9 +4702,9 @@ export interface ListEksAnywhereSubscriptionsRequest {
|
|
|
4633
4702
|
maxResults?: number;
|
|
4634
4703
|
/**
|
|
4635
4704
|
* <p>The <code>nextToken</code> value returned from a previous paginated
|
|
4636
|
-
* <code>ListEksAnywhereSubscriptions</code> request where <code>maxResults</code> was
|
|
4637
|
-
* results exceeded the value of that parameter. Pagination continues from the
|
|
4638
|
-
* previous results that returned the <code>nextToken</code> value.</p>
|
|
4705
|
+
* <code>ListEksAnywhereSubscriptions</code> request where <code>maxResults</code> was
|
|
4706
|
+
* used and the results exceeded the value of that parameter. Pagination continues from the
|
|
4707
|
+
* end of the previous results that returned the <code>nextToken</code> value.</p>
|
|
4639
4708
|
* @public
|
|
4640
4709
|
*/
|
|
4641
4710
|
nextToken?: string;
|
|
@@ -4805,7 +4874,8 @@ export interface ListInsightsRequest {
|
|
|
4805
4874
|
*/
|
|
4806
4875
|
clusterName: string | undefined;
|
|
4807
4876
|
/**
|
|
4808
|
-
* <p>The criteria to filter your list of insights for your cluster. You can filter which
|
|
4877
|
+
* <p>The criteria to filter your list of insights for your cluster. You can filter which
|
|
4878
|
+
* insights are returned by category, associated Kubernetes version, and status.</p>
|
|
4809
4879
|
* @public
|
|
4810
4880
|
*/
|
|
4811
4881
|
filter?: InsightsFilter;
|
|
@@ -4823,10 +4893,10 @@ export interface ListInsightsRequest {
|
|
|
4823
4893
|
*/
|
|
4824
4894
|
maxResults?: number;
|
|
4825
4895
|
/**
|
|
4826
|
-
* <p>The <code>nextToken</code> value returned from a previous paginated
|
|
4827
|
-
*
|
|
4828
|
-
*
|
|
4829
|
-
* results. This value is <code>null</code> when there are no more results to
|
|
4896
|
+
* <p>The <code>nextToken</code> value returned from a previous paginated
|
|
4897
|
+
* <code>ListInsights</code> request. When the results of a <code>ListInsights</code>
|
|
4898
|
+
* request exceed <code>maxResults</code>, you can use this value to retrieve the next page
|
|
4899
|
+
* of results. This value is <code>null</code> when there are no more results to
|
|
4830
4900
|
* return.</p>
|
|
4831
4901
|
* @public
|
|
4832
4902
|
*/
|
|
@@ -4858,7 +4928,8 @@ export interface InsightSummary {
|
|
|
4858
4928
|
*/
|
|
4859
4929
|
kubernetesVersion?: string;
|
|
4860
4930
|
/**
|
|
4861
|
-
* <p>The time Amazon EKS last successfully completed a refresh of this insight check on the
|
|
4931
|
+
* <p>The time Amazon EKS last successfully completed a refresh of this insight check on the
|
|
4932
|
+
* cluster.</p>
|
|
4862
4933
|
* @public
|
|
4863
4934
|
*/
|
|
4864
4935
|
lastRefreshTime?: Date;
|
|
@@ -4868,7 +4939,8 @@ export interface InsightSummary {
|
|
|
4868
4939
|
*/
|
|
4869
4940
|
lastTransitionTime?: Date;
|
|
4870
4941
|
/**
|
|
4871
|
-
* <p>The description of the insight which includes alert criteria, remediation
|
|
4942
|
+
* <p>The description of the insight which includes alert criteria, remediation
|
|
4943
|
+
* recommendation, and additional resources (contains Markdown).</p>
|
|
4872
4944
|
* @public
|
|
4873
4945
|
*/
|
|
4874
4946
|
description?: string;
|
|
@@ -4890,7 +4962,7 @@ export interface ListInsightsResponse {
|
|
|
4890
4962
|
/**
|
|
4891
4963
|
* <p>The <code>nextToken</code> value to include in a future <code>ListInsights</code>
|
|
4892
4964
|
* request. When the results of a <code>ListInsights</code> request exceed
|
|
4893
|
-
*
|
|
4965
|
+
* <code>maxResults</code>, you can use this value to retrieve the next page of
|
|
4894
4966
|
* results. This value is <code>null</code> when there are no more results to
|
|
4895
4967
|
* return.</p>
|
|
4896
4968
|
* @public
|
|
@@ -5035,7 +5107,8 @@ export interface PodIdentityAssociationSummary {
|
|
|
5035
5107
|
*/
|
|
5036
5108
|
namespace?: string;
|
|
5037
5109
|
/**
|
|
5038
|
-
* <p>The name of the Kubernetes service account inside the cluster to associate the IAM
|
|
5110
|
+
* <p>The name of the Kubernetes service account inside the cluster to associate the IAM
|
|
5111
|
+
* credentials with.</p>
|
|
5039
5112
|
* @public
|
|
5040
5113
|
*/
|
|
5041
5114
|
serviceAccount?: string;
|
|
@@ -5049,14 +5122,19 @@ export interface PodIdentityAssociationSummary {
|
|
|
5049
5122
|
* @public
|
|
5050
5123
|
*/
|
|
5051
5124
|
associationId?: string;
|
|
5125
|
+
/**
|
|
5126
|
+
* <p>If defined, the Pod Identity Association is owned by an Amazon EKS Addon.</p>
|
|
5127
|
+
* @public
|
|
5128
|
+
*/
|
|
5129
|
+
ownerArn?: string;
|
|
5052
5130
|
}
|
|
5053
5131
|
/**
|
|
5054
5132
|
* @public
|
|
5055
5133
|
*/
|
|
5056
5134
|
export interface ListPodIdentityAssociationsResponse {
|
|
5057
5135
|
/**
|
|
5058
|
-
* <p>The list of summarized descriptions of the associations that are in the cluster and match
|
|
5059
|
-
* filters that you provided.</p>
|
|
5136
|
+
* <p>The list of summarized descriptions of the associations that are in the cluster and match
|
|
5137
|
+
* any filters that you provided.</p>
|
|
5060
5138
|
* <p>Each summary is simplified by removing these fields compared to the full <code>
|
|
5061
5139
|
* <a>PodIdentityAssociation</a>
|
|
5062
5140
|
* </code>:</p>
|
|
@@ -5471,6 +5549,12 @@ export interface UpdateAddonRequest {
|
|
|
5471
5549
|
* @public
|
|
5472
5550
|
*/
|
|
5473
5551
|
configurationValues?: string;
|
|
5552
|
+
/**
|
|
5553
|
+
* <p>An array of Pod Identity Assocations to be updated. Each EKS Pod Identity association maps a Kubernetes service account to an IAM Role. If this value is left blank, no change. If an empty array is provided, existing Pod Identity Assocations owned by the Addon are deleted.</p>
|
|
5554
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/add-ons-iam.html">Attach an IAM Role to an Amazon EKS add-on using Pod Identity</a> in the EKS User Guide.</p>
|
|
5555
|
+
* @public
|
|
5556
|
+
*/
|
|
5557
|
+
podIdentityAssociations?: AddonPodIdentityAssociations[];
|
|
5474
5558
|
}
|
|
5475
5559
|
/**
|
|
5476
5560
|
* @public
|
|
@@ -5712,7 +5796,7 @@ export interface UpdateNodegroupVersionRequest {
|
|
|
5712
5796
|
* the node group does not change. You can specify the Kubernetes version of the cluster to
|
|
5713
5797
|
* update the node group to the latest AMI version of the cluster's Kubernetes version.
|
|
5714
5798
|
* If you specify <code>launchTemplate</code>, and your launch template uses a custom AMI, then don't specify <code>version</code>,
|
|
5715
|
-
* or the node group update will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">
|
|
5799
|
+
* or the node group update will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Customizing managed nodes with launch templates</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
5716
5800
|
* @public
|
|
5717
5801
|
*/
|
|
5718
5802
|
version?: string;
|
|
@@ -5724,7 +5808,7 @@ export interface UpdateNodegroupVersionRequest {
|
|
|
5724
5808
|
* <i>Amazon EKS User Guide</i>.</p>
|
|
5725
5809
|
* <p>If you specify <code>launchTemplate</code>, and your launch template uses a custom AMI, then don't specify
|
|
5726
5810
|
* <code>releaseVersion</code>, or the node group update will fail.
|
|
5727
|
-
* For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">
|
|
5811
|
+
* For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Customizing managed nodes with launch templates</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
5728
5812
|
* @public
|
|
5729
5813
|
*/
|
|
5730
5814
|
releaseVersion?: string;
|
|
@@ -45,6 +45,8 @@ export interface AccessScope {
|
|
|
45
45
|
}
|
|
46
46
|
export declare const AddonIssueCode: {
|
|
47
47
|
readonly ACCESS_DENIED: "AccessDenied";
|
|
48
|
+
readonly ADDON_PERMISSION_FAILURE: "AddonPermissionFailure";
|
|
49
|
+
readonly ADDON_SUBSCRIPTION_NEEDED: "AddonSubscriptionNeeded";
|
|
48
50
|
readonly ADMISSION_REQUEST_DENIED: "AdmissionRequestDenied";
|
|
49
51
|
readonly CLUSTER_UNREACHABLE: "ClusterUnreachable";
|
|
50
52
|
readonly CONFIGURATION_CONFLICT: "ConfigurationConflict";
|
|
@@ -93,6 +95,7 @@ export interface Addon {
|
|
|
93
95
|
owner?: string;
|
|
94
96
|
marketplaceInformation?: MarketplaceInformation;
|
|
95
97
|
configurationValues?: string;
|
|
98
|
+
podIdentityAssociations?: string[];
|
|
96
99
|
}
|
|
97
100
|
export interface Compatibility {
|
|
98
101
|
clusterVersion?: string;
|
|
@@ -104,6 +107,7 @@ export interface AddonVersionInfo {
|
|
|
104
107
|
architecture?: string[];
|
|
105
108
|
compatibilities?: Compatibility[];
|
|
106
109
|
requiresConfiguration?: boolean;
|
|
110
|
+
requiresIamPermissions?: boolean;
|
|
107
111
|
}
|
|
108
112
|
export interface AddonInfo {
|
|
109
113
|
addonName?: string;
|
|
@@ -113,6 +117,14 @@ export interface AddonInfo {
|
|
|
113
117
|
owner?: string;
|
|
114
118
|
marketplaceInformation?: MarketplaceInformation;
|
|
115
119
|
}
|
|
120
|
+
export interface AddonPodIdentityAssociations {
|
|
121
|
+
serviceAccount: string | undefined;
|
|
122
|
+
roleArn: string | undefined;
|
|
123
|
+
}
|
|
124
|
+
export interface AddonPodIdentityConfiguration {
|
|
125
|
+
serviceAccount?: string;
|
|
126
|
+
recommendedManagedPolicies?: string[];
|
|
127
|
+
}
|
|
116
128
|
export declare const AMITypes: {
|
|
117
129
|
readonly AL2023_ARM_64_STANDARD: "AL2023_ARM_64_STANDARD";
|
|
118
130
|
readonly AL2023_x86_64_STANDARD: "AL2023_x86_64_STANDARD";
|
|
@@ -247,6 +259,7 @@ export declare const UpdateParamType: {
|
|
|
247
259
|
readonly MAX_UNAVAILABLE_PERCENTAGE: "MaxUnavailablePercentage";
|
|
248
260
|
readonly MIN_SIZE: "MinSize";
|
|
249
261
|
readonly PLATFORM_VERSION: "PlatformVersion";
|
|
262
|
+
readonly POD_IDENTITY_ASSOCIATIONS: "PodIdentityAssociations";
|
|
250
263
|
readonly PUBLIC_ACCESS_CIDRS: "PublicAccessCidrs";
|
|
251
264
|
readonly RELEASE_VERSION: "ReleaseVersion";
|
|
252
265
|
readonly RESOLVE_CONFLICTS: "ResolveConflicts";
|
|
@@ -374,6 +387,7 @@ export interface CreateAddonRequest {
|
|
|
374
387
|
clientRequestToken?: string;
|
|
375
388
|
tags?: Record<string, string>;
|
|
376
389
|
configurationValues?: string;
|
|
390
|
+
podIdentityAssociations?: AddonPodIdentityAssociations[];
|
|
377
391
|
}
|
|
378
392
|
export interface CreateAddonResponse {
|
|
379
393
|
addon?: Addon;
|
|
@@ -796,6 +810,7 @@ export interface PodIdentityAssociation {
|
|
|
796
810
|
tags?: Record<string, string>;
|
|
797
811
|
createdAt?: Date;
|
|
798
812
|
modifiedAt?: Date;
|
|
813
|
+
ownerArn?: string;
|
|
799
814
|
}
|
|
800
815
|
export interface CreatePodIdentityAssociationResponse {
|
|
801
816
|
association?: PodIdentityAssociation;
|
|
@@ -874,6 +889,7 @@ export interface DescribeAddonConfigurationResponse {
|
|
|
874
889
|
addonName?: string;
|
|
875
890
|
addonVersion?: string;
|
|
876
891
|
configurationSchema?: string;
|
|
892
|
+
podIdentityConfiguration?: AddonPodIdentityConfiguration[];
|
|
877
893
|
}
|
|
878
894
|
export interface DescribeAddonVersionsRequest {
|
|
879
895
|
kubernetesVersion?: string;
|
|
@@ -1167,6 +1183,7 @@ export interface PodIdentityAssociationSummary {
|
|
|
1167
1183
|
serviceAccount?: string;
|
|
1168
1184
|
associationArn?: string;
|
|
1169
1185
|
associationId?: string;
|
|
1186
|
+
ownerArn?: string;
|
|
1170
1187
|
}
|
|
1171
1188
|
export interface ListPodIdentityAssociationsResponse {
|
|
1172
1189
|
associations?: PodIdentityAssociationSummary[];
|
|
@@ -1265,6 +1282,7 @@ export interface UpdateAddonRequest {
|
|
|
1265
1282
|
resolveConflicts?: ResolveConflicts;
|
|
1266
1283
|
clientRequestToken?: string;
|
|
1267
1284
|
configurationValues?: string;
|
|
1285
|
+
podIdentityAssociations?: AddonPodIdentityAssociations[];
|
|
1268
1286
|
}
|
|
1269
1287
|
export interface UpdateAddonResponse {
|
|
1270
1288
|
update?: Update;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-eks",
|
|
3
3
|
"description": "AWS SDK for JavaScript Eks Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.589.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-eks",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.588.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.588.0",
|
|
25
|
+
"@aws-sdk/core": "3.588.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.588.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.577.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.577.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.577.0",
|