import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to access information about an existing Proximity Placement Group. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.proximity.getPlacementGroup({ * name: "tf-appsecuritygroup", * resourceGroupName: "my-resource-group", * }); * export const proximityPlacementGroupId = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Compute` - 2022-03-01 */ export declare function getPlacementGroup(args: GetPlacementGroupArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPlacementGroup. */ export interface GetPlacementGroupArgs { /** * The name of the Proximity Placement Group. */ name: string; /** * The name of the resource group in which the Proximity Placement Group exists. */ resourceGroupName: string; } /** * A collection of values returned by getPlacementGroup. */ export interface GetPlacementGroupResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly location: string; readonly name: string; readonly resourceGroupName: string; readonly tags: { [key: string]: string; }; } /** * Use this data source to access information about an existing Proximity Placement Group. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.proximity.getPlacementGroup({ * name: "tf-appsecuritygroup", * resourceGroupName: "my-resource-group", * }); * export const proximityPlacementGroupId = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Compute` - 2022-03-01 */ export declare function getPlacementGroupOutput(args: GetPlacementGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getPlacementGroup. */ export interface GetPlacementGroupOutputArgs { /** * The name of the Proximity Placement Group. */ name: pulumi.Input; /** * The name of the resource group in which the Proximity Placement Group exists. */ resourceGroupName: pulumi.Input; }