import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListComponentsInput, ListComponentsOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListComponentsCommand}. */ export interface ListComponentsCommandInput extends ListComponentsInput { } /** * @public * * The output of {@link ListComponentsCommand}. */ export interface ListComponentsCommandOutput extends ListComponentsOutput, __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 all the components registered with AWS Systems Manager for SAP.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SsmSapClient, ListComponentsCommand } from "@aws-sdk/client-ssm-sap"; // ES Modules import * // const { SsmSapClient, ListComponentsCommand } = 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 = { // ListComponentsInput * ApplicationId: "STRING_VALUE", * NextToken: "STRING_VALUE", * MaxResults: Number("int"), * }; * const command = new ListComponentsCommand(input); * const response = await client.send(command); * // { // ListComponentsOutput * // Components: [ // ComponentSummaryList * // { // ComponentSummary * // ApplicationId: "STRING_VALUE", * // ComponentId: "STRING_VALUE", * // ComponentType: "HANA" || "HANA_NODE" || "ABAP" || "ASCS" || "DIALOG" || "WEBDISP" || "WD" || "ERS", * // Tags: { // TagMap * // "": "STRING_VALUE", * // }, * // Arn: "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 SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape. * * @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 ListComponentsCommand extends ListComponentsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListComponentsInput; output: ListComponentsOutput; }; sdk: { input: ListComponentsCommandInput; output: ListComponentsCommandOutput; }; }; }