import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import type { CreateAddonRequest, CreateAddonResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link CreateAddonCommand}. */ export interface CreateAddonCommandInput extends CreateAddonRequest { } /** * @public * * The output of {@link CreateAddonCommand}. */ export interface CreateAddonCommandOutput extends CreateAddonResponse, __MetadataBearer { } declare const CreateAddonCommand_base: { new (input: CreateAddonCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: CreateAddonCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

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.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { EKSClient, CreateAddonCommand } from "@aws-sdk/client-eks"; // ES Modules import * // const { EKSClient, CreateAddonCommand } = require("@aws-sdk/client-eks"); // CommonJS import * // import type { EKSClientConfig } from "@aws-sdk/client-eks"; * const config = {}; // type is EKSClientConfig * const client = new EKSClient(config); * const input = { // CreateAddonRequest * clusterName: "STRING_VALUE", // required * addonName: "STRING_VALUE", // required * addonVersion: "STRING_VALUE", * serviceAccountRoleArn: "STRING_VALUE", * resolveConflicts: "OVERWRITE" || "NONE" || "PRESERVE", * clientRequestToken: "STRING_VALUE", * tags: { // TagMap * "": "STRING_VALUE", * }, * configurationValues: "STRING_VALUE", * podIdentityAssociations: [ // AddonPodIdentityAssociationsList * { // AddonPodIdentityAssociations * serviceAccount: "STRING_VALUE", // required * roleArn: "STRING_VALUE", // required * }, * ], * namespaceConfig: { // AddonNamespaceConfigRequest * namespace: "STRING_VALUE", * }, * }; * const command = new CreateAddonCommand(input); * const response = await client.send(command); * // { // CreateAddonResponse * // addon: { // Addon * // addonName: "STRING_VALUE", * // clusterName: "STRING_VALUE", * // status: "CREATING" || "ACTIVE" || "CREATE_FAILED" || "UPDATING" || "DELETING" || "DELETE_FAILED" || "DEGRADED" || "UPDATE_FAILED", * // addonVersion: "STRING_VALUE", * // health: { // AddonHealth * // issues: [ // AddonIssueList * // { // AddonIssue * // code: "AccessDenied" || "InternalFailure" || "ClusterUnreachable" || "InsufficientNumberOfReplicas" || "ConfigurationConflict" || "AdmissionRequestDenied" || "UnsupportedAddonModification" || "K8sResourceNotFound" || "AddonSubscriptionNeeded" || "AddonPermissionFailure", * // message: "STRING_VALUE", * // resourceIds: [ // StringList * // "STRING_VALUE", * // ], * // }, * // ], * // }, * // addonArn: "STRING_VALUE", * // createdAt: new Date("TIMESTAMP"), * // modifiedAt: new Date("TIMESTAMP"), * // serviceAccountRoleArn: "STRING_VALUE", * // tags: { // TagMap * // "": "STRING_VALUE", * // }, * // publisher: "STRING_VALUE", * // owner: "STRING_VALUE", * // marketplaceInformation: { // MarketplaceInformation * // productId: "STRING_VALUE", * // productUrl: "STRING_VALUE", * // }, * // configurationValues: "STRING_VALUE", * // podIdentityAssociations: [ * // "STRING_VALUE", * // ], * // namespaceConfig: { // AddonNamespaceConfigResponse * // namespace: "STRING_VALUE", * // }, * // }, * // }; * * ``` * * @param CreateAddonCommandInput - {@link CreateAddonCommandInput} * @returns {@link CreateAddonCommandOutput} * @see {@link CreateAddonCommandInput} for command's `input` shape. * @see {@link CreateAddonCommandOutput} for command's `response` shape. * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape. * * @throws {@link ClientException} (client fault) *

These errors are usually caused by a client action. Actions can include using an * action or resource on behalf of an IAM principal that doesn't have permissions to use * the action or resource or specifying an identifier that is not valid.

* * @throws {@link InvalidParameterException} (client fault) *

The specified parameter is invalid. Review the available parameters for the API * request.

* * @throws {@link InvalidRequestException} (client fault) *

The request is invalid given the state of the cluster. Check the state of the cluster * and the associated operations.

* * @throws {@link ResourceInUseException} (client fault) *

The specified resource is in use.

* * @throws {@link ResourceNotFoundException} (client fault) *

The specified resource could not be found. You can view your available clusters with * ListClusters. You can view your available managed node groups with * ListNodegroups. Amazon EKS clusters and node groups are Amazon Web Services Region * specific.

* * @throws {@link ServerException} (server fault) *

These errors are usually caused by a server-side issue.

* * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* * * @public */ export declare class CreateAddonCommand extends CreateAddonCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: CreateAddonRequest; output: CreateAddonResponse; }; sdk: { input: CreateAddonCommandInput; output: CreateAddonCommandOutput; }; }; }