import * as pulumi from "@pulumi/pulumi";
/**
 * Datasource for looking up a Datadog connector.
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as harness from "@pulumi/harness";
 *
 * const example = harness.platform.getDatadogConnector({
 *     identifier: "identifier",
 * });
 * ```
 */
export declare function getDatadogConnector(args: GetDatadogConnectorArgs, opts?: pulumi.InvokeOptions): Promise<GetDatadogConnectorResult>;
/**
 * A collection of arguments for invoking getDatadogConnector.
 */
export interface GetDatadogConnectorArgs {
    /**
     * Tags to filter delegates for connection.
     */
    delegateSelectors?: string[];
    /**
     * 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 getDatadogConnector.
 */
export interface GetDatadogConnectorResult {
    /**
     * Reference to the Harness secret containing the api key. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
     */
    readonly apiKeyRef: string;
    /**
     * Reference to the Harness secret containing the application key. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
     */
    readonly applicationKeyRef: string;
    /**
     * 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 Datadog server.
     */
    readonly url: string;
}
/**
 * Datasource for looking up a Datadog connector.
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as harness from "@pulumi/harness";
 *
 * const example = harness.platform.getDatadogConnector({
 *     identifier: "identifier",
 * });
 * ```
 */
export declare function getDatadogConnectorOutput(args: GetDatadogConnectorOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetDatadogConnectorResult>;
/**
 * A collection of arguments for invoking getDatadogConnector.
 */
export interface GetDatadogConnectorOutputArgs {
    /**
     * Tags to filter delegates for connection.
     */
    delegateSelectors?: pulumi.Input<pulumi.Input<string>[]>;
    /**
     * 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>;
}
