import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { StartApplicationRefreshInput, StartApplicationRefreshOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link StartApplicationRefreshCommand}. */ export interface StartApplicationRefreshCommandInput extends StartApplicationRefreshInput { } /** * @public * * The output of {@link StartApplicationRefreshCommand}. */ export interface StartApplicationRefreshCommandOutput extends StartApplicationRefreshOutput, __MetadataBearer { } declare const StartApplicationRefreshCommand_base: { new (input: StartApplicationRefreshCommandInput): import("@smithy/core/client").CommandImpl; new (input: StartApplicationRefreshCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Refreshes a registered application.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SsmSapClient, StartApplicationRefreshCommand } from "@aws-sdk/client-ssm-sap"; // ES Modules import * // const { SsmSapClient, StartApplicationRefreshCommand } = require("@aws-sdk/client-ssm-sap"); // CommonJS import * // import type { SsmSapClientConfig } from "@aws-sdk/client-ssm-sap"; * const config = {}; // type is SsmSapClientConfig * const client = new SsmSapClient(config); * const input = { // StartApplicationRefreshInput * ApplicationId: "STRING_VALUE", // required * }; * const command = new StartApplicationRefreshCommand(input); * const response = await client.send(command); * // { // StartApplicationRefreshOutput * // OperationId: "STRING_VALUE", * // }; * * ``` * * @param StartApplicationRefreshCommandInput - {@link StartApplicationRefreshCommandInput} * @returns {@link StartApplicationRefreshCommandOutput} * @see {@link StartApplicationRefreshCommandInput} for command's `input` shape. * @see {@link StartApplicationRefreshCommandOutput} for command's `response` shape. * @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape. * * @throws {@link ConflictException} (client fault) *

A conflict has occurred.

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

An internal error has occurred.

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

The resource is not available.

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

The request is not authorized.

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

The input fails to satisfy the constraints specified by an AWS service.

* * @throws {@link SsmSapServiceException} *

Base exception class for all service exceptions from SsmSap service.

* * * @public */ export declare class StartApplicationRefreshCommand extends StartApplicationRefreshCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: StartApplicationRefreshInput; output: StartApplicationRefreshOutput; }; sdk: { input: StartApplicationRefreshCommandInput; output: StartApplicationRefreshCommandOutput; }; }; }