import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Database Tools Mcp Servers in Oracle Cloud Infrastructure Database Tools service. * * Returns a list of Database Tools MCP servers. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatabaseToolsMcpServers = oci.databasetools.getDatabaseToolsMcpServers({ * compartmentId: compartmentId, * databaseToolsConnectionId: testDatabaseToolsConnection.id, * displayName: databaseToolsMcpServerDisplayName, * relatedResourceIdentifier: databaseToolsMcpServerRelatedResourceIdentifier, * state: databaseToolsMcpServerState, * types: databaseToolsMcpServerType, * }); * ``` */ export declare function getDatabaseToolsMcpServers(args: GetDatabaseToolsMcpServersArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDatabaseToolsMcpServers. */ export interface GetDatabaseToolsMcpServersArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId: string; /** * A filter to return only resources when their `databaseToolsConnectionId` matches the specified `databaseToolsConnectionId`. */ databaseToolsConnectionId?: string; /** * A filter to return only resources that match the entire specified display name. */ displayName?: string; filters?: inputs.DatabaseTools.GetDatabaseToolsMcpServersFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the related resource. */ relatedResourceIdentifier?: string; /** * A filter to return resources only when their `databaseToolsMcpServerLifecycleState` matches the specified `databaseToolsMcpServerLifecycleState`. */ state?: string; /** * A filter to return only resources with one of the specified type values. */ types?: string[]; } /** * A collection of values returned by getDatabaseToolsMcpServers. */ export interface GetDatabaseToolsMcpServersResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the Database Tools MCP server. */ readonly compartmentId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the related Database Tools connection. */ readonly databaseToolsConnectionId?: string; /** * The list of database_tools_mcp_server_collection. */ readonly databaseToolsMcpServerCollections: outputs.DatabaseTools.GetDatabaseToolsMcpServersDatabaseToolsMcpServerCollection[]; /** * A user-friendly name. Does not have to be unique and can be updated. Avoid entering confidential information. */ readonly displayName?: string; readonly filters?: outputs.DatabaseTools.GetDatabaseToolsMcpServersFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly relatedResourceIdentifier?: string; /** * The current state of the Database Tools MCP server. */ readonly state?: string; /** * The Database Tools MCP server type. */ readonly types?: string[]; } /** * This data source provides the list of Database Tools Mcp Servers in Oracle Cloud Infrastructure Database Tools service. * * Returns a list of Database Tools MCP servers. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatabaseToolsMcpServers = oci.databasetools.getDatabaseToolsMcpServers({ * compartmentId: compartmentId, * databaseToolsConnectionId: testDatabaseToolsConnection.id, * displayName: databaseToolsMcpServerDisplayName, * relatedResourceIdentifier: databaseToolsMcpServerRelatedResourceIdentifier, * state: databaseToolsMcpServerState, * types: databaseToolsMcpServerType, * }); * ``` */ export declare function getDatabaseToolsMcpServersOutput(args: GetDatabaseToolsMcpServersOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDatabaseToolsMcpServers. */ export interface GetDatabaseToolsMcpServersOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId: pulumi.Input; /** * A filter to return only resources when their `databaseToolsConnectionId` matches the specified `databaseToolsConnectionId`. */ databaseToolsConnectionId?: pulumi.Input; /** * A filter to return only resources that match the entire specified display name. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the related resource. */ relatedResourceIdentifier?: pulumi.Input; /** * A filter to return resources only when their `databaseToolsMcpServerLifecycleState` matches the specified `databaseToolsMcpServerLifecycleState`. */ state?: pulumi.Input; /** * A filter to return only resources with one of the specified type values. */ types?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getDatabaseToolsMcpServers.d.ts.map