import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListDatabasesInput, ListDatabasesOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListDatabasesCommand}. */ export interface ListDatabasesCommandInput extends ListDatabasesInput { } /** * @public * * The output of {@link ListDatabasesCommand}. */ export interface ListDatabasesCommandOutput extends ListDatabasesOutput, __MetadataBearer { } declare const ListDatabasesCommand_base: { new (input: ListDatabasesCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [ListDatabasesCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Lists the SAP HANA databases of an application 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, ListDatabasesCommand } from "@aws-sdk/client-ssm-sap"; // ES Modules import * // const { SsmSapClient, ListDatabasesCommand } = 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 = { // ListDatabasesInput * ApplicationId: "STRING_VALUE", * ComponentId: "STRING_VALUE", * NextToken: "STRING_VALUE", * MaxResults: Number("int"), * }; * const command = new ListDatabasesCommand(input); * const response = await client.send(command); * // { // ListDatabasesOutput * // Databases: [ // DatabaseSummaryList * // { // DatabaseSummary * // ApplicationId: "STRING_VALUE", * // ComponentId: "STRING_VALUE", * // DatabaseId: "STRING_VALUE", * // DatabaseType: "SYSTEM" || "TENANT", * // Arn: "STRING_VALUE", * // Tags: { // TagMap * // "": "STRING_VALUE", * // }, * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param ListDatabasesCommandInput - {@link ListDatabasesCommandInput} * @returns {@link ListDatabasesCommandOutput} * @see {@link ListDatabasesCommandInput} for command's `input` shape. * @see {@link ListDatabasesCommandOutput} 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 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 ListDatabasesCommand extends ListDatabasesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListDatabasesInput; output: ListDatabasesOutput; }; sdk: { input: ListDatabasesCommandInput; output: ListDatabasesCommandOutput; }; }; }