import * as pulumi from "@pulumi/pulumi";
/**
 * `spacelift.getAzureDevopsIntegration` returns details about Azure DevOps integration
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as spacelift from "@pulumi/spacelift";
 *
 * const azureDevopsIntegration = spacelift.getAzureDevopsIntegration({});
 * ```
 */
export declare function getAzureDevopsIntegration(args?: GetAzureDevopsIntegrationArgs, opts?: pulumi.InvokeOptions): Promise<GetAzureDevopsIntegrationResult>;
/**
 * A collection of arguments for invoking getAzureDevopsIntegration.
 */
export interface GetAzureDevopsIntegrationArgs {
    /**
     * Azure DevOps integration id. If not provided, the default integration will be returned
     */
    id?: string;
}
/**
 * A collection of values returned by getAzureDevopsIntegration.
 */
export interface GetAzureDevopsIntegrationResult {
    /**
     * Azure DevOps integration description
     */
    readonly description: string;
    /**
     * Azure DevOps integration id. If not provided, the default integration will be returned
     */
    readonly id?: string;
    /**
     * Azure DevOps integration is default
     */
    readonly isDefault: boolean;
    /**
     * Azure DevOps integration labels
     */
    readonly labels: string[];
    /**
     * Azure DevOps integration name
     */
    readonly name: string;
    /**
     * Azure DevOps integration organization url
     */
    readonly organizationUrl: string;
    /**
     * Azure DevOps integration space id
     */
    readonly spaceId: string;
    /**
     * Azure DevOps integration webhook password
     */
    readonly webhookPassword: string;
    /**
     * Azure DevOps integration webhook url
     */
    readonly webhookUrl: string;
}
/**
 * `spacelift.getAzureDevopsIntegration` returns details about Azure DevOps integration
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as spacelift from "@pulumi/spacelift";
 *
 * const azureDevopsIntegration = spacelift.getAzureDevopsIntegration({});
 * ```
 */
export declare function getAzureDevopsIntegrationOutput(args?: GetAzureDevopsIntegrationOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetAzureDevopsIntegrationResult>;
/**
 * A collection of arguments for invoking getAzureDevopsIntegration.
 */
export interface GetAzureDevopsIntegrationOutputArgs {
    /**
     * Azure DevOps integration id. If not provided, the default integration will be returned
     */
    id?: pulumi.Input<string>;
}
