import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Datasource for looking up a Gitlab connector.
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as harness from "@pulumi/harness";
 *
 * const example = harness.platform.getGitlabConnector({
 *     identifier: "identifier",
 * });
 * ```
 */
export declare function getGitlabConnector(args: GetGitlabConnectorArgs, opts?: pulumi.InvokeOptions): Promise<GetGitlabConnectorResult>;
/**
 * A collection of arguments for invoking getGitlabConnector.
 */
export interface GetGitlabConnectorArgs {
    /**
     * 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 getGitlabConnector.
 */
export interface GetGitlabConnectorResult {
    /**
     * Configuration for using the gitlab api. API Access is Computed for using “Git Experience”, for creation of Git based triggers, Webhooks management and updating Git statuses.
     */
    readonly apiAuthentications: outputs.platform.GetGitlabConnectorApiAuthentication[];
    /**
     * Whether the connection we're making is to a gitlab repository or a gitlab account. Valid values are Account, Repo.
     */
    readonly connectionType: string;
    /**
     * Credentials to use for the connection.
     */
    readonly credentials: outputs.platform.GetGitlabConnectorCredential[];
    /**
     * 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[];
    /**
     * URL of the gitlab repository or account.
     */
    readonly url: string;
    /**
     * Repository to test the connection with. This is only used when `connectionType` is `Account`.
     */
    readonly validationRepo: string;
}
/**
 * Datasource for looking up a Gitlab connector.
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as harness from "@pulumi/harness";
 *
 * const example = harness.platform.getGitlabConnector({
 *     identifier: "identifier",
 * });
 * ```
 */
export declare function getGitlabConnectorOutput(args: GetGitlabConnectorOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetGitlabConnectorResult>;
/**
 * A collection of arguments for invoking getGitlabConnector.
 */
export interface GetGitlabConnectorOutputArgs {
    /**
     * Unique identifier of the resource.
     */
    identifier: pulumi.Input<string>;
    /**
     * Name of the resource.
     */
    name?: pulumi.Input<string>;
    /**
     * Unique identifier of the organization.
     */
    orgId?: pulumi.Input<string>;
    /**
     * Unique identifier of the project.
     */
    projectId?: pulumi.Input<string>;
}
