import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GetRequestedServiceQuotaChangeRequest, GetRequestedServiceQuotaChangeResponse } from "../models/models_0"; import type { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link GetRequestedServiceQuotaChangeCommand}. */ export interface GetRequestedServiceQuotaChangeCommandInput extends GetRequestedServiceQuotaChangeRequest { } /** * @public * * The output of {@link GetRequestedServiceQuotaChangeCommand}. */ export interface GetRequestedServiceQuotaChangeCommandOutput extends GetRequestedServiceQuotaChangeResponse, __MetadataBearer { } declare const GetRequestedServiceQuotaChangeCommand_base: { new (input: GetRequestedServiceQuotaChangeCommandInput): import("@smithy/core/client").CommandImpl; new (input: GetRequestedServiceQuotaChangeCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Retrieves information about the specified quota increase request.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ServiceQuotasClient, GetRequestedServiceQuotaChangeCommand } from "@aws-sdk/client-service-quotas"; // ES Modules import * // const { ServiceQuotasClient, GetRequestedServiceQuotaChangeCommand } = 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 = { // GetRequestedServiceQuotaChangeRequest * RequestId: "STRING_VALUE", // required * }; * const command = new GetRequestedServiceQuotaChangeCommand(input); * const response = await client.send(command); * // { // GetRequestedServiceQuotaChangeResponse * // RequestedQuota: { // RequestedServiceQuotaChange * // Id: "STRING_VALUE", * // RequestType: "AutomaticManagement", * // CaseId: "STRING_VALUE", * // ServiceCode: "STRING_VALUE", * // ServiceName: "STRING_VALUE", * // QuotaCode: "STRING_VALUE", * // QuotaName: "STRING_VALUE", * // DesiredValue: Number("double"), * // Status: "PENDING" || "CASE_OPENED" || "APPROVED" || "DENIED" || "CASE_CLOSED" || "NOT_APPROVED" || "INVALID_REQUEST", * // Created: new Date("TIMESTAMP"), * // LastUpdated: new Date("TIMESTAMP"), * // Requester: "STRING_VALUE", * // QuotaArn: "STRING_VALUE", * // GlobalQuota: true || false, * // Unit: "STRING_VALUE", * // QuotaRequestedAtLevel: "ACCOUNT" || "RESOURCE" || "ALL", * // QuotaContext: { // QuotaContextInfo * // ContextScope: "RESOURCE" || "ACCOUNT", * // ContextScopeType: "STRING_VALUE", * // ContextId: "STRING_VALUE", * // }, * // }, * // }; * * ``` * * @param GetRequestedServiceQuotaChangeCommandInput - {@link GetRequestedServiceQuotaChangeCommandInput} * @returns {@link GetRequestedServiceQuotaChangeCommandOutput} * @see {@link GetRequestedServiceQuotaChangeCommandInput} for command's `input` shape. * @see {@link GetRequestedServiceQuotaChangeCommandOutput} 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 GetRequestedServiceQuotaChangeCommand extends GetRequestedServiceQuotaChangeCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetRequestedServiceQuotaChangeRequest; output: GetRequestedServiceQuotaChangeResponse; }; sdk: { input: GetRequestedServiceQuotaChangeCommandInput; output: GetRequestedServiceQuotaChangeCommandOutput; }; }; }