import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to access information about an existing Managed DevOps Pool. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.devcenter.getManagedDevOpsPool({ * name: "example-mdp", * resourceGroupName: "example-rg", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.DevOpsInfrastructure` - 2025-09-20 */ export declare function getManagedDevOpsPool(args: GetManagedDevOpsPoolArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getManagedDevOpsPool. */ export interface GetManagedDevOpsPoolArgs { /** * The name of this Managed DevOps Pool. */ name: string; /** * The name of the Resource Group where the Managed DevOps Pool exists. */ resourceGroupName: string; } /** * A collection of values returned by getManagedDevOpsPool. */ export interface GetManagedDevOpsPoolResult { /** * An `azureDevopsOrganization` block as defined below. */ readonly azureDevopsOrganizations: outputs.devcenter.GetManagedDevOpsPoolAzureDevopsOrganization[]; /** * The ID of the Dev Center project. */ readonly devCenterProjectId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * An `identity` block as defined below. */ readonly identities: outputs.devcenter.GetManagedDevOpsPoolIdentity[]; /** * The Azure Region where the Managed DevOps Pool exists. */ readonly location: string; /** * The maximum number of agents that can be created. */ readonly maximumConcurrency: number; readonly name: string; readonly resourceGroupName: string; /** * A `statefulAgent` block as defined below. */ readonly statefulAgents: outputs.devcenter.GetManagedDevOpsPoolStatefulAgent[]; /** * A `statelessAgent` block as defined below. */ readonly statelessAgents: outputs.devcenter.GetManagedDevOpsPoolStatelessAgent[]; /** * A mapping of tags assigned to the Managed DevOps Pool. */ readonly tags: { [key: string]: string; }; /** * A `virtualMachineScaleSetFabric` block as defined below. */ readonly virtualMachineScaleSetFabrics: outputs.devcenter.GetManagedDevOpsPoolVirtualMachineScaleSetFabric[]; /** * The work folder for every agent in the pool. */ readonly workFolder: string; } /** * Use this data source to access information about an existing Managed DevOps Pool. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.devcenter.getManagedDevOpsPool({ * name: "example-mdp", * resourceGroupName: "example-rg", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.DevOpsInfrastructure` - 2025-09-20 */ export declare function getManagedDevOpsPoolOutput(args: GetManagedDevOpsPoolOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getManagedDevOpsPool. */ export interface GetManagedDevOpsPoolOutputArgs { /** * The name of this Managed DevOps Pool. */ name: pulumi.Input; /** * The name of the Resource Group where the Managed DevOps Pool exists. */ resourceGroupName: pulumi.Input; }