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

Updates your Service Quotas Automatic Management configuration, including notification preferences and * excluded quotas. Automatic Management monitors your Service Quotas utilization and notifies you before you * run out of your allocated quotas.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ServiceQuotasClient, UpdateAutoManagementCommand } from "@aws-sdk/client-service-quotas"; // ES Modules import * // const { ServiceQuotasClient, UpdateAutoManagementCommand } = 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 = { // UpdateAutoManagementRequest * OptInType: "NotifyOnly" || "NotifyAndAdjust", * NotificationArn: "STRING_VALUE", * ExclusionList: { // ExclusionList * "": [ // ExcludedQuotaList * "STRING_VALUE", * ], * }, * }; * const command = new UpdateAutoManagementCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param UpdateAutoManagementCommandInput - {@link UpdateAutoManagementCommandInput} * @returns {@link UpdateAutoManagementCommandOutput} * @see {@link UpdateAutoManagementCommandInput} for command's `input` shape. * @see {@link UpdateAutoManagementCommandOutput} 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 IllegalArgumentException} (client fault) *

Invalid input was provided.

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

The specified resource does not exist.

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

Something went wrong.

* * @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 UpdateAutoManagementCommand extends UpdateAutoManagementCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdateAutoManagementRequest; output: {}; }; sdk: { input: UpdateAutoManagementCommandInput; output: UpdateAutoManagementCommandOutput; }; }; }