diff --git a/clients/client-eks/src/commands/DescribeInsightCommand.ts b/clients/client-eks/src/commands/DescribeInsightCommand.ts index b3890dcb92ed..ee5b5348b945 100644 --- a/clients/client-eks/src/commands/DescribeInsightCommand.ts +++ b/clients/client-eks/src/commands/DescribeInsightCommand.ts @@ -84,6 +84,14 @@ export interface DescribeInsightCommandOutput extends DescribeInsightResponse, _ * // ], * // }, * // ], + * // addonCompatibilityDetails: [ // AddonCompatibilityDetails + * // { // AddonCompatibilityDetail + * // name: "STRING_VALUE", + * // compatibleVersions: [ // StringList + * // "STRING_VALUE", + * // ], + * // }, + * // ], * // }, * // }, * // }; diff --git a/clients/client-eks/src/models/models_0.ts b/clients/client-eks/src/models/models_0.ts index 5876c17dd1f1..cddd0830e367 100644 --- a/clients/client-eks/src/models/models_0.ts +++ b/clients/client-eks/src/models/models_0.ts @@ -396,6 +396,25 @@ export interface Addon { podIdentityAssociations?: string[] | undefined; } +/** + *
The summary information about the Amazon EKS add-on compatibility for the next Kubernetes
+ * version for an insight check in the UPGRADE_READINESS
category.
The name of the Amazon EKS add-on.
+ * @public + */ + name?: string | undefined; + + /** + *The list of compatible Amazon EKS add-on versions for the next Kubernetes version.
+ * @public + */ + compatibleVersions?: string[] | undefined; +} + /** *Compatibility information.
* @public @@ -5281,6 +5300,12 @@ export interface InsightCategorySpecificSummary { * @public */ deprecationDetails?: DeprecationDetail[] | undefined; + + /** + *A list of AddonCompatibilityDetail
objects for Amazon EKS add-ons.
An Amazon EKS add-on. For more information, see Amazon EKS add-ons in\n the Amazon EKS User Guide.
" } }, + "com.amazonaws.eks#AddonCompatibilityDetail": { + "type": "structure", + "members": { + "name": { + "target": "com.amazonaws.eks#String", + "traits": { + "smithy.api#documentation": "The name of the Amazon EKS add-on.
" + } + }, + "compatibleVersions": { + "target": "com.amazonaws.eks#StringList", + "traits": { + "smithy.api#documentation": "The list of compatible Amazon EKS add-on versions for the next Kubernetes version.
" + } + } + }, + "traits": { + "smithy.api#documentation": "The summary information about the Amazon EKS add-on compatibility for the next Kubernetes \n version for an insight check in the UPGRADE_READINESS
category.
The summary information about deprecated resource usage for an insight check in the\n UPGRADE_READINESS
category.
A list of AddonCompatibilityDetail
objects for Amazon EKS add-ons.