import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { UpdateGatewayInformationInput, UpdateGatewayInformationOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link UpdateGatewayInformationCommand}. */ export interface UpdateGatewayInformationCommandInput extends UpdateGatewayInformationInput { } /** * @public * * The output of {@link UpdateGatewayInformationCommand}. */ export interface UpdateGatewayInformationCommandOutput extends UpdateGatewayInformationOutput, __MetadataBearer { } declare const UpdateGatewayInformationCommand_base: { new (input: UpdateGatewayInformationCommandInput): import("@smithy/core/client").CommandImpl; new (input: UpdateGatewayInformationCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Updates a gateway's name. Specify which gateway to update using the Amazon Resource Name (ARN) of the gateway in your request.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { BackupGatewayClient, UpdateGatewayInformationCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import * // const { BackupGatewayClient, UpdateGatewayInformationCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import * // import type { BackupGatewayClientConfig } from "@aws-sdk/client-backup-gateway"; * const config = {}; // type is BackupGatewayClientConfig * const client = new BackupGatewayClient(config); * const input = { // UpdateGatewayInformationInput * GatewayArn: "STRING_VALUE", // required * GatewayDisplayName: "STRING_VALUE", * }; * const command = new UpdateGatewayInformationCommand(input); * const response = await client.send(command); * // { // UpdateGatewayInformationOutput * // GatewayArn: "STRING_VALUE", * // }; * * ``` * * @param UpdateGatewayInformationCommandInput - {@link UpdateGatewayInformationCommandInput} * @returns {@link UpdateGatewayInformationCommandOutput} * @see {@link UpdateGatewayInformationCommandInput} for command's `input` shape. * @see {@link UpdateGatewayInformationCommandOutput} for command's `response` shape. * @see {@link BackupGatewayClientResolvedConfig | config} for BackupGatewayClient's `config` shape. * * @throws {@link ConflictException} (client fault) *

The operation cannot proceed because it is not supported.

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

A resource that is required for the action wasn't found.

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

The operation did not succeed because an internal error occurred. Try again later.

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

TPS has been limited to protect against intentional or unintentional high request volumes.

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

The operation did not succeed because a validation error occurred.

* * @throws {@link BackupGatewayServiceException} *

Base exception class for all service exceptions from BackupGateway service.

* * * @public */ export declare class UpdateGatewayInformationCommand extends UpdateGatewayInformationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdateGatewayInformationInput; output: UpdateGatewayInformationOutput; }; sdk: { input: UpdateGatewayInformationCommandInput; output: UpdateGatewayInformationCommandOutput; }; }; }