import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Data source for retrieving a Harness JDBC Connector. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const example = harness.platform.getConnectorJdbc({ * identifier: "identifier", * }); * ``` */ export declare function getConnectorJdbc(args: GetConnectorJdbcArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getConnectorJdbc. */ export interface GetConnectorJdbcArgs { /** * Unique identifier of the resource. */ identifier: string; /** * Name of the resource. */ name?: string; /** * Unique identifier of the organization. */ orgId?: string; /** * Unique identifier of the project. */ projectId?: string; } /** * A collection of values returned by getConnectorJdbc. */ export interface GetConnectorJdbcResult { /** * The credentials to use for the database server. */ readonly credentials: outputs.platform.GetConnectorJdbcCredential[]; /** * Tags to filter delegates for connection. */ readonly delegateSelectors: string[]; /** * Description of the resource. */ readonly description: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Unique identifier of the resource. */ readonly identifier: string; /** * Name of the resource. */ readonly name?: string; /** * Unique identifier of the organization. */ readonly orgId?: string; /** * Unique identifier of the project. */ readonly projectId?: string; /** * Tags to associate with the resource. */ readonly tags: string[]; /** * The URL of the database server. */ readonly url: string; } /** * Data source for retrieving a Harness JDBC Connector. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const example = harness.platform.getConnectorJdbc({ * identifier: "identifier", * }); * ``` */ export declare function getConnectorJdbcOutput(args: GetConnectorJdbcOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getConnectorJdbc. */ export interface GetConnectorJdbcOutputArgs { /** * Unique identifier of the resource. */ identifier: pulumi.Input; /** * Name of the resource. */ name?: pulumi.Input; /** * Unique identifier of the organization. */ orgId?: pulumi.Input; /** * Unique identifier of the project. */ projectId?: pulumi.Input; } //# sourceMappingURL=getConnectorJdbc.d.ts.map