import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Resource for looking up an App Dynamics connector.
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as harness from "@pulumi/harness";
 *
 * const example = harness.platform.getArtifactoryConnector({
 *     identifier: "identifier",
 * });
 * ```
 */
export declare function getArtifactoryConnector(args?: GetArtifactoryConnectorArgs, opts?: pulumi.InvokeOptions): Promise<GetArtifactoryConnectorResult>;
/**
 * A collection of arguments for invoking getArtifactoryConnector.
 */
export interface GetArtifactoryConnectorArgs {
    /**
     * 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 getArtifactoryConnector.
 */
export interface GetArtifactoryConnectorResult {
    /**
     * Credentials to use for authentication.
     */
    readonly credentials: outputs.platform.GetArtifactoryConnectorCredential[];
    /**
     * 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 Artifactory server.
     */
    readonly url: string;
}
/**
 * Resource for looking up an App Dynamics connector.
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as harness from "@pulumi/harness";
 *
 * const example = harness.platform.getArtifactoryConnector({
 *     identifier: "identifier",
 * });
 * ```
 */
export declare function getArtifactoryConnectorOutput(args?: GetArtifactoryConnectorOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetArtifactoryConnectorResult>;
/**
 * A collection of arguments for invoking getArtifactoryConnector.
 */
export interface GetArtifactoryConnectorOutputArgs {
    /**
     * 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>;
}
