import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Database Tools Mcp Toolset resource in Oracle Cloud Infrastructure Database Tools service. * * Gets details of the specified Database Tools MCP Toolset. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatabaseToolsMcpToolset = oci.databasetools.getDatabaseToolsMcpToolset({ * databaseToolsMcpToolsetId: testDatabaseToolsMcpToolsetOciDatabaseToolsDatabaseToolsMcpToolset.id, * }); * ``` */ export declare function getDatabaseToolsMcpToolset(args: GetDatabaseToolsMcpToolsetArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDatabaseToolsMcpToolset. */ export interface GetDatabaseToolsMcpToolsetArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a Database Tools MCP Toolset. */ databaseToolsMcpToolsetId: string; } /** * A collection of values returned by getDatabaseToolsMcpToolset. */ export interface GetDatabaseToolsMcpToolsetResult { /** * The roles granted access to this MCP tool */ readonly allowedRoles: string[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to move the Database Tools MCP Toolset to. */ readonly compartmentId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the related Database Tools McpServer. */ readonly databaseToolsMcpServerId: string; readonly databaseToolsMcpToolsetId: string; /** * The default execution type for the toolset. The default value is SYNCHRONOUS. */ readonly defaultExecutionType: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: { [key: string]: string; }; /** * The description of the variable */ readonly description: string; /** * The display name of the tool */ readonly displayName: string; /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ readonly freeformTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the related Generative AI Semantic Store. */ readonly generativeAiSemanticStoreId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database Tools MCP Toolsets. */ readonly id: string; /** * A message describing the current state in more detail. For example, this message can be used to provide actionable information for a resource in the Failed state. */ readonly lifecycleDetails: string; /** * Locks associated with this resource. */ readonly locks: outputs.DatabaseTools.GetDatabaseToolsMcpToolsetLock[]; /** * List of Database Tools Customizable reporting tools */ readonly reports: outputs.DatabaseTools.GetDatabaseToolsMcpToolsetReport[]; /** * The SQL source. Can contain multiple statements with a mix of queries, DML, DCL, DLL and scripts. */ readonly sources: outputs.DatabaseTools.GetDatabaseToolsMcpToolsetSource[]; /** * The current state of the Database Tools MCP Toolset. */ readonly state: string; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The time the Database Tools MCP server was created. An RFC3339 formatted datetime string. */ readonly timeCreated: string; /** * The time the Database Tools MCP server was updated. An RFC3339 formatted datetime string. */ readonly timeUpdated: string; /** * Instructions describing how to use the MCP toolset and its features. This can be used to improve the LLM's understanding of the tool. */ readonly toolDescription: string; /** * Name of the tool returned by the MCP Server */ readonly toolName: string; /** * List of Database Tools Customizable reporting tools */ readonly tools: outputs.DatabaseTools.GetDatabaseToolsMcpToolsetTool[]; /** * The type of the variable */ readonly type: string; /** * The variables to use with the query */ readonly variables: outputs.DatabaseTools.GetDatabaseToolsMcpToolsetVariable[]; /** * The MCP toolset version */ readonly version: number; } /** * This data source provides details about a specific Database Tools Mcp Toolset resource in Oracle Cloud Infrastructure Database Tools service. * * Gets details of the specified Database Tools MCP Toolset. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatabaseToolsMcpToolset = oci.databasetools.getDatabaseToolsMcpToolset({ * databaseToolsMcpToolsetId: testDatabaseToolsMcpToolsetOciDatabaseToolsDatabaseToolsMcpToolset.id, * }); * ``` */ export declare function getDatabaseToolsMcpToolsetOutput(args: GetDatabaseToolsMcpToolsetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDatabaseToolsMcpToolset. */ export interface GetDatabaseToolsMcpToolsetOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a Database Tools MCP Toolset. */ databaseToolsMcpToolsetId: pulumi.Input; } //# sourceMappingURL=getDatabaseToolsMcpToolset.d.ts.map