import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Database Tools Mcp Server resource in Oracle Cloud Infrastructure Database Tools service. * * Gets details of the specified Database Tools mcpserver. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatabaseToolsMcpServer = oci.databasetools.getDatabaseToolsMcpServer({ * databaseToolsMcpServerId: testDatabaseToolsMcpServerOciDatabaseToolsDatabaseToolsMcpServer.id, * }); * ``` */ export declare function getDatabaseToolsMcpServer(args: GetDatabaseToolsMcpServerArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDatabaseToolsMcpServer. */ export interface GetDatabaseToolsMcpServerArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a Database Tools MCP server. */ databaseToolsMcpServerId: string; } /** * A collection of values returned by getDatabaseToolsMcpServer. */ export interface GetDatabaseToolsMcpServerResult { /** * Access token expiry in seconds */ readonly accessTokenExpiryInSeconds: number; /** * Built-in roles associated with the MCP Server. */ readonly builtInRoles: outputs.DatabaseTools.GetDatabaseToolsMcpServerBuiltInRole[]; /** * 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; /** * Custom roles associated with the MCP Server. */ readonly customRoles: outputs.DatabaseTools.GetDatabaseToolsMcpServerCustomRole[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the related Database Tools connection. */ readonly databaseToolsConnectionId: string; readonly databaseToolsMcpServerId: 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; }; /** * A human-readable description of the Database Tools MCP server. */ readonly description: string; /** * A user-friendly name. Does not have to be unique and can be updated. Avoid entering confidential information. */ readonly displayName: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the associated domain application (Oracle Cloud Service). */ readonly domainAppId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the associated identity domain. */ readonly domainId: string; /** * Invoke endpoints for the MCP server. */ readonly endpoints: outputs.DatabaseTools.GetDatabaseToolsMcpServerEndpoint[]; /** * 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 Database Tools MCP server. */ 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.GetDatabaseToolsMcpServerLock[]; /** * Refresh token expiry in seconds */ readonly refreshTokenExpiryInSeconds: number; /** * A related resource */ readonly relatedResources: outputs.DatabaseTools.GetDatabaseToolsMcpServerRelatedResource[]; /** * Specifies the identity used by the Database Tools MCP server to issue requests to other Oracle Cloud Infrastructure services (e.g., Secrets in Vault). */ readonly runtimeIdentity: string; /** * The current state of the Database Tools MCP server. */ readonly state: string; /** * The storage option used when running a tool asynchronously. */ readonly storages: outputs.DatabaseTools.GetDatabaseToolsMcpServerStorage[]; /** * 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; /** * The Database Tools MCP server type. */ readonly type: string; } /** * This data source provides details about a specific Database Tools Mcp Server resource in Oracle Cloud Infrastructure Database Tools service. * * Gets details of the specified Database Tools mcpserver. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatabaseToolsMcpServer = oci.databasetools.getDatabaseToolsMcpServer({ * databaseToolsMcpServerId: testDatabaseToolsMcpServerOciDatabaseToolsDatabaseToolsMcpServer.id, * }); * ``` */ export declare function getDatabaseToolsMcpServerOutput(args: GetDatabaseToolsMcpServerOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDatabaseToolsMcpServer. */ export interface GetDatabaseToolsMcpServerOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a Database Tools MCP server. */ databaseToolsMcpServerId: pulumi.Input; } //# sourceMappingURL=getDatabaseToolsMcpServer.d.ts.map