import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeApplicationRequest, DescribeApplicationResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeApplicationCommand}. */ export interface DescribeApplicationCommandInput extends DescribeApplicationRequest { } /** * @public * * The output of {@link DescribeApplicationCommand}. */ export interface DescribeApplicationCommandOutput extends DescribeApplicationResponse, __MetadataBearer { } declare const DescribeApplicationCommand_base: { new (input: DescribeApplicationCommandInput): import("@smithy/core/client").CommandImpl; new (input: DescribeApplicationCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Describes the application.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ApplicationInsightsClient, DescribeApplicationCommand } from "@aws-sdk/client-application-insights"; // ES Modules import * // const { ApplicationInsightsClient, DescribeApplicationCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import * // import type { ApplicationInsightsClientConfig } from "@aws-sdk/client-application-insights"; * const config = {}; // type is ApplicationInsightsClientConfig * const client = new ApplicationInsightsClient(config); * const input = { // DescribeApplicationRequest * ResourceGroupName: "STRING_VALUE", // required * AccountId: "STRING_VALUE", * }; * const command = new DescribeApplicationCommand(input); * const response = await client.send(command); * // { // DescribeApplicationResponse * // ApplicationInfo: { // ApplicationInfo * // AccountId: "STRING_VALUE", * // ResourceGroupName: "STRING_VALUE", * // LifeCycle: "STRING_VALUE", * // OpsItemSNSTopicArn: "STRING_VALUE", * // SNSNotificationArn: "STRING_VALUE", * // OpsCenterEnabled: true || false, * // CWEMonitorEnabled: true || false, * // Remarks: "STRING_VALUE", * // AutoConfigEnabled: true || false, * // DiscoveryType: "RESOURCE_GROUP_BASED" || "ACCOUNT_BASED", * // AttachMissingPermission: true || false, * // }, * // }; * * ``` * * @param DescribeApplicationCommandInput - {@link DescribeApplicationCommandInput} * @returns {@link DescribeApplicationCommandOutput} * @see {@link DescribeApplicationCommandInput} for command's `input` shape. * @see {@link DescribeApplicationCommandOutput} for command's `response` shape. * @see {@link ApplicationInsightsClientResolvedConfig | config} for ApplicationInsightsClient's `config` shape. * * @throws {@link InternalServerException} (server fault) *

The server encountered an internal error and is unable to complete the request.

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

The resource does not exist in the customer account.

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

The parameter is not valid.

* * @throws {@link ApplicationInsightsServiceException} *

Base exception class for all service exceptions from ApplicationInsights service.

* * * @public */ export declare class DescribeApplicationCommand extends DescribeApplicationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeApplicationRequest; output: DescribeApplicationResponse; }; sdk: { input: DescribeApplicationCommandInput; output: DescribeApplicationCommandOutput; }; }; }