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

Disables your quota request template. After a template is disabled, the quota increase * requests in the template are not applied to new Amazon Web Services accounts in your organization. * Disabling a quota request template does not apply its quota increase requests.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ServiceQuotasClient, DisassociateServiceQuotaTemplateCommand } from "@aws-sdk/client-service-quotas"; // ES Modules import * // const { ServiceQuotasClient, DisassociateServiceQuotaTemplateCommand } = 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 DisassociateServiceQuotaTemplateCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DisassociateServiceQuotaTemplateCommandInput - {@link DisassociateServiceQuotaTemplateCommandInput} * @returns {@link DisassociateServiceQuotaTemplateCommandOutput} * @see {@link DisassociateServiceQuotaTemplateCommandInput} for command's `input` shape. * @see {@link DisassociateServiceQuotaTemplateCommandOutput} 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 ServiceException} (server fault) *

Something went wrong.

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

The quota request template is not associated with your organization.

* * @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 DisassociateServiceQuotaTemplateCommand extends DisassociateServiceQuotaTemplateCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: {}; output: {}; }; sdk: { input: DisassociateServiceQuotaTemplateCommandInput; output: DisassociateServiceQuotaTemplateCommandOutput; }; }; }