import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to access information about an existing Dev Center Dev Box Definition. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.devcenter.getDevBoxDefinition({ * name: exampleAzurermDevCenterDevBoxDefinition.name, * devCenterId: exampleAzurermDevCenterDevBoxDefinition.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 getDevBoxDefinition(args: GetDevBoxDefinitionArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDevBoxDefinition. */ export interface GetDevBoxDefinitionArgs { /** * The ID of the associated Dev Center. */ devCenterId: string; /** * The name of this Dev Center Dev Box Definition. */ name: string; } /** * A collection of values returned by getDevBoxDefinition. */ export interface GetDevBoxDefinitionResult { readonly devCenterId: string; /** * Whether Dev Boxes created with this definition are capable of hibernation. */ readonly hibernateSupportEnabled: boolean; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The ID of the image for the Dev Center Dev Box Definition. */ readonly imageReferenceId: string; /** * The Azure Region where the Dev Center Dev Box Definition exists. */ readonly location: string; readonly name: string; /** * The name of the SKU for the Dev Center Dev Box Definition. */ readonly skuName: string; /** * A mapping of tags assigned to the Dev Center Dev Box Definition. */ readonly tags: { [key: string]: string; }; } /** * Use this data source to access information about an existing Dev Center Dev Box Definition. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.devcenter.getDevBoxDefinition({ * name: exampleAzurermDevCenterDevBoxDefinition.name, * devCenterId: exampleAzurermDevCenterDevBoxDefinition.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 getDevBoxDefinitionOutput(args: GetDevBoxDefinitionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDevBoxDefinition. */ export interface GetDevBoxDefinitionOutputArgs { /** * The ID of the associated Dev Center. */ devCenterId: pulumi.Input; /** * The name of this Dev Center Dev Box Definition. */ name: pulumi.Input; }