import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GetApplicationInput, GetApplicationOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link GetApplicationCommand}. */ export interface GetApplicationCommandInput extends GetApplicationInput { } /** * @public * * The output of {@link GetApplicationCommand}. */ export interface GetApplicationCommandOutput extends GetApplicationOutput, __MetadataBearer { } declare const GetApplicationCommand_base: { new (input: GetApplicationCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [GetApplicationCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Gets an application registered with AWS Systems Manager for SAP. It also returns the components of the application.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SsmSapClient, GetApplicationCommand } from "@aws-sdk/client-ssm-sap"; // ES Modules import * // const { SsmSapClient, GetApplicationCommand } = 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 = { // GetApplicationInput * ApplicationId: "STRING_VALUE", * ApplicationArn: "STRING_VALUE", * AppRegistryArn: "STRING_VALUE", * }; * const command = new GetApplicationCommand(input); * const response = await client.send(command); * // { // GetApplicationOutput * // Application: { // Application * // Id: "STRING_VALUE", * // Type: "HANA" || "SAP_ABAP", * // Arn: "STRING_VALUE", * // AppRegistryArn: "STRING_VALUE", * // Status: "ACTIVATED" || "STARTING" || "STOPPED" || "STOPPING" || "FAILED" || "REGISTERING" || "DELETING" || "UNKNOWN", * // DiscoveryStatus: "SUCCESS" || "REGISTRATION_FAILED" || "REFRESH_FAILED" || "REGISTERING" || "DELETING", * // Components: [ // ComponentIdList * // "STRING_VALUE", * // ], * // LastUpdated: new Date("TIMESTAMP"), * // StatusMessage: "STRING_VALUE", * // AssociatedApplicationArns: [ // ApplicationArnList * // "STRING_VALUE", * // ], * // }, * // Tags: { // TagMap * // "": "STRING_VALUE", * // }, * // }; * * ``` * * @param GetApplicationCommandInput - {@link GetApplicationCommandInput} * @returns {@link GetApplicationCommandOutput} * @see {@link GetApplicationCommandInput} for command's `input` shape. * @see {@link GetApplicationCommandOutput} for command's `response` shape. * @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape. * * @throws {@link InternalServerException} (server fault) *

An internal error has occurred.

* * @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 GetApplicationCommand extends GetApplicationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetApplicationInput; output: GetApplicationOutput; }; sdk: { input: GetApplicationCommandInput; output: GetApplicationCommandOutput; }; }; }