import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to access information about an existing Dev Center Environment Type. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.devcenter.getEnvironmentType({ * name: exampleAzurermDevCenterEnvironmentType.name, * devCenterId: exampleAzurermDevCenterEnvironmentType.devCenterId, * }); * 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 getEnvironmentType(args: GetEnvironmentTypeArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getEnvironmentType. */ export interface GetEnvironmentTypeArgs { /** * The ID of the associated Dev Center. */ devCenterId: string; /** * The name of this Dev Center Environment Type. */ name: string; } /** * A collection of values returned by getEnvironmentType. */ export interface GetEnvironmentTypeResult { readonly devCenterId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; /** * A mapping of tags assigned to the Dev Center Environment Type. */ readonly tags: { [key: string]: string; }; } /** * Use this data source to access information about an existing Dev Center Environment Type. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.devcenter.getEnvironmentType({ * name: exampleAzurermDevCenterEnvironmentType.name, * devCenterId: exampleAzurermDevCenterEnvironmentType.devCenterId, * }); * 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 getEnvironmentTypeOutput(args: GetEnvironmentTypeOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getEnvironmentType. */ export interface GetEnvironmentTypeOutputArgs { /** * The ID of the associated Dev Center. */ devCenterId: pulumi.Input; /** * The name of this Dev Center Environment Type. */ name: pulumi.Input; }