import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListComponentsRequest, ListComponentsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListComponentsCommand}. */ export interface ListComponentsCommandInput extends ListComponentsRequest { } /** * @public * * The output of {@link ListComponentsCommand}. */ export interface ListComponentsCommandOutput extends ListComponentsResponse, __MetadataBearer { } declare const ListComponentsCommand_base: { new (input: ListComponentsCommandInput): import("@smithy/core/client").CommandImpl; new (input: ListComponentsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Lists the auto-grouped, standalone, and custom components of the application.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ApplicationInsightsClient, ListComponentsCommand } from "@aws-sdk/client-application-insights"; // ES Modules import * // const { ApplicationInsightsClient, ListComponentsCommand } = 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 = { // ListComponentsRequest * ResourceGroupName: "STRING_VALUE", // required * MaxResults: Number("int"), * NextToken: "STRING_VALUE", * AccountId: "STRING_VALUE", * }; * const command = new ListComponentsCommand(input); * const response = await client.send(command); * // { // ListComponentsResponse * // ApplicationComponentList: [ // ApplicationComponentList * // { // ApplicationComponent * // ComponentName: "STRING_VALUE", * // ComponentRemarks: "STRING_VALUE", * // ResourceType: "STRING_VALUE", * // OsType: "WINDOWS" || "LINUX", * // Tier: "CUSTOM" || "DEFAULT" || "DOT_NET_CORE" || "DOT_NET_WORKER" || "DOT_NET_WEB_TIER" || "DOT_NET_WEB" || "SQL_SERVER" || "SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP" || "MYSQL" || "POSTGRESQL" || "JAVA_JMX" || "ORACLE" || "SAP_HANA_MULTI_NODE" || "SAP_HANA_SINGLE_NODE" || "SAP_HANA_HIGH_AVAILABILITY" || "SAP_ASE_SINGLE_NODE" || "SAP_ASE_HIGH_AVAILABILITY" || "SQL_SERVER_FAILOVER_CLUSTER_INSTANCE" || "SHAREPOINT" || "ACTIVE_DIRECTORY" || "SAP_NETWEAVER_STANDARD" || "SAP_NETWEAVER_DISTRIBUTED" || "SAP_NETWEAVER_HIGH_AVAILABILITY", * // Monitor: true || false, * // DetectedWorkload: { // DetectedWorkload * // "": { // WorkloadMetaData * // "": "STRING_VALUE", * // }, * // }, * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param ListComponentsCommandInput - {@link ListComponentsCommandInput} * @returns {@link ListComponentsCommandOutput} * @see {@link ListComponentsCommandInput} for command's `input` shape. * @see {@link ListComponentsCommandOutput} 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 ListComponentsCommand extends ListComponentsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListComponentsRequest; output: ListComponentsResponse; }; sdk: { input: ListComponentsCommandInput; output: ListComponentsCommandOutput; }; }; }