import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to access information about an existing Dedicated Host Group. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.compute.getDedicatedHostGroup({ * name: "example-dedicated-host-group", * resourceGroupName: "example-rg", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Compute` - 2024-03-01 */ export declare function getDedicatedHostGroup(args: GetDedicatedHostGroupArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDedicatedHostGroup. */ export interface GetDedicatedHostGroupArgs { /** * Specifies the name of the Dedicated Host Group. */ name: string; /** * Specifies the name of the resource group the Dedicated Host Group is located in. */ resourceGroupName: string; } /** * A collection of values returned by getDedicatedHostGroup. */ export interface GetDedicatedHostGroupResult { /** * Whether virtual machines or virtual machine scale sets be placed automatically on this Dedicated Host Group. */ readonly automaticPlacementEnabled: boolean; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The Azure location where the Dedicated Host Group exists. */ readonly location: string; readonly name: string; /** * The number of fault domains that the Dedicated Host Group spans. */ readonly platformFaultDomainCount: number; readonly resourceGroupName: string; /** * A mapping of tags assigned to the resource. */ readonly tags: { [key: string]: string; }; /** * A list of Availability Zones in which this Dedicated Host Group is located. */ readonly zones: string[]; } /** * Use this data source to access information about an existing Dedicated Host Group. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.compute.getDedicatedHostGroup({ * name: "example-dedicated-host-group", * resourceGroupName: "example-rg", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Compute` - 2024-03-01 */ export declare function getDedicatedHostGroupOutput(args: GetDedicatedHostGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDedicatedHostGroup. */ export interface GetDedicatedHostGroupOutputArgs { /** * Specifies the name of the Dedicated Host Group. */ name: pulumi.Input; /** * Specifies the name of the resource group the Dedicated Host Group is located in. */ resourceGroupName: pulumi.Input; }