import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeWorkloadRequest, DescribeWorkloadResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeWorkloadCommand}. */ export interface DescribeWorkloadCommandInput extends DescribeWorkloadRequest { } /** * @public * * The output of {@link DescribeWorkloadCommand}. */ export interface DescribeWorkloadCommandOutput extends DescribeWorkloadResponse, __MetadataBearer { } declare const DescribeWorkloadCommand_base: { new (input: DescribeWorkloadCommandInput): import("@smithy/core/client").CommandImpl; new (input: DescribeWorkloadCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Describes a workload and its configuration.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ApplicationInsightsClient, DescribeWorkloadCommand } from "@aws-sdk/client-application-insights"; // ES Modules import * // const { ApplicationInsightsClient, DescribeWorkloadCommand } = 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 = { // DescribeWorkloadRequest * ResourceGroupName: "STRING_VALUE", // required * ComponentName: "STRING_VALUE", // required * WorkloadId: "STRING_VALUE", // required * AccountId: "STRING_VALUE", * }; * const command = new DescribeWorkloadCommand(input); * const response = await client.send(command); * // { // DescribeWorkloadResponse * // WorkloadId: "STRING_VALUE", * // WorkloadRemarks: "STRING_VALUE", * // WorkloadConfiguration: { // WorkloadConfiguration * // WorkloadName: "STRING_VALUE", * // 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", * // Configuration: "STRING_VALUE", * // }, * // }; * * ``` * * @param DescribeWorkloadCommandInput - {@link DescribeWorkloadCommandInput} * @returns {@link DescribeWorkloadCommandOutput} * @see {@link DescribeWorkloadCommandInput} for command's `input` shape. * @see {@link DescribeWorkloadCommandOutput} 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 DescribeWorkloadCommand extends DescribeWorkloadCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeWorkloadRequest; output: DescribeWorkloadResponse; }; sdk: { input: DescribeWorkloadCommandInput; output: DescribeWorkloadCommandOutput; }; }; }