import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { AssociateServiceQuotaTemplateRequest, AssociateServiceQuotaTemplateResponse } from "../models/models_0"; import type { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link AssociateServiceQuotaTemplateCommand}. */ export interface AssociateServiceQuotaTemplateCommandInput extends AssociateServiceQuotaTemplateRequest { } /** * @public * * The output of {@link AssociateServiceQuotaTemplateCommand}. */ export interface AssociateServiceQuotaTemplateCommandOutput extends AssociateServiceQuotaTemplateResponse, __MetadataBearer { } declare const AssociateServiceQuotaTemplateCommand_base: { new (input: AssociateServiceQuotaTemplateCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [AssociateServiceQuotaTemplateCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Associates your quota request template with your organization. When a new * Amazon Web Services account is created in your organization, the quota increase requests in the * template are automatically applied to the account. You can add a quota increase request * for any adjustable quota to your template.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ServiceQuotasClient, AssociateServiceQuotaTemplateCommand } from "@aws-sdk/client-service-quotas"; // ES Modules import * // const { ServiceQuotasClient, AssociateServiceQuotaTemplateCommand } = require("@aws-sdk/client-service-quotas"); // CommonJS import * // import type { ServiceQuotasClientConfig } from "@aws-sdk/client-service-quotas"; * const config = {}; // type is ServiceQuotasClientConfig * const client = new ServiceQuotasClient(config); * const input = {}; * const command = new AssociateServiceQuotaTemplateCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param AssociateServiceQuotaTemplateCommandInput - {@link AssociateServiceQuotaTemplateCommandInput} * @returns {@link AssociateServiceQuotaTemplateCommandOutput} * @see {@link AssociateServiceQuotaTemplateCommandInput} for command's `input` shape. * @see {@link AssociateServiceQuotaTemplateCommandOutput} for command's `response` shape. * @see {@link ServiceQuotasClientResolvedConfig | config} for ServiceQuotasClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You do not have sufficient permission to perform this action.

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

The action you attempted is not allowed unless Service Access with Service Quotas is enabled in * your organization.

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

You can't perform this action because a dependency does not have access.

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

The Amazon Web Services account making this call is not a member of an organization.

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

The organization that your Amazon Web Services account belongs to is not in All Features * mode.

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

Something went wrong.

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

The Service Quotas template is not available in this Amazon Web Services Region.

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

Due to throttling, the request was denied. Slow down the rate of request calls, or * request an increase for this quota.

* * @throws {@link ServiceQuotasServiceException} *

Base exception class for all service exceptions from ServiceQuotas service.

* * * @public */ export declare class AssociateServiceQuotaTemplateCommand extends AssociateServiceQuotaTemplateCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: {}; output: {}; }; sdk: { input: AssociateServiceQuotaTemplateCommandInput; output: AssociateServiceQuotaTemplateCommandOutput; }; }; }