import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to access information about an existing Dev Center Project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.devcenter.getProject({ * name: "example", * resourceGroupName: "example-resource-group", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.DevCenter` - 2025-02-01 */ export declare function getProject(args: GetProjectArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getProject. */ export interface GetProjectArgs { /** * The name of this Dev Center Project. */ name: string; /** * The name of the Resource Group where the Dev Center Project exists. */ resourceGroupName: string; } /** * A collection of values returned by getProject. */ export interface GetProjectResult { /** * The description of the Dev Center Project. */ readonly description: string; /** * The ID of the associated Dev Center. */ readonly devCenterId: string; /** * The URI of the Dev Center. */ readonly devCenterUri: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * An `identity` block as defined below. */ readonly identities: outputs.devcenter.GetProjectIdentity[]; /** * The Azure Region where the Dev Center Project exists. */ readonly location: string; /** * The maximum number of Dev Boxes a single user can create across all pools in the project. */ readonly maximumDevBoxesPerUser: number; readonly name: string; readonly resourceGroupName: string; /** * A mapping of tags assigned to the Dev Center Project. */ readonly tags: { [key: string]: string; }; } /** * Use this data source to access information about an existing Dev Center Project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.devcenter.getProject({ * name: "example", * resourceGroupName: "example-resource-group", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.DevCenter` - 2025-02-01 */ export declare function getProjectOutput(args: GetProjectOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getProject. */ export interface GetProjectOutputArgs { /** * The name of this Dev Center Project. */ name: pulumi.Input; /** * The name of the Resource Group where the Dev Center Project exists. */ resourceGroupName: pulumi.Input; }