import * as pulumi from "@pulumi/pulumi"; import * as types from "./types"; /** * Deployment stack object. * * Uses Azure REST API version 2025-07-01. */ export declare class DeploymentStacksWhatIfResultsAtManagementGroup extends pulumi.CustomResource { /** * Get an existing DeploymentStacksWhatIfResultsAtManagementGroup resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): DeploymentStacksWhatIfResultsAtManagementGroup; /** @internal */ static readonly __pulumiType = "azure-native:resources:DeploymentStacksWhatIfResultsAtManagementGroup"; /** * Returns true if the given object is an instance of DeploymentStacksWhatIfResultsAtManagementGroup. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is DeploymentStacksWhatIfResultsAtManagementGroup; /** * The Azure API version of the resource. */ readonly azureApiVersion: pulumi.Output; /** * The geo-location where the resource lives. Required for subscription and management group scoped stacks. The location is inherited from the resource group for resource group scoped stacks. */ readonly location: pulumi.Output; /** * The name of the resource */ readonly name: pulumi.Output; /** * The resource-specific properties for this resource. */ readonly properties: pulumi.Output; /** * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ readonly systemData: pulumi.Output; /** * Resource tags. */ readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" */ readonly type: pulumi.Output; /** * Create a DeploymentStacksWhatIfResultsAtManagementGroup resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: DeploymentStacksWhatIfResultsAtManagementGroupArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a DeploymentStacksWhatIfResultsAtManagementGroup resource. */ export interface DeploymentStacksWhatIfResultsAtManagementGroupArgs { /** * Name of the deployment stack what-if result. */ deploymentStacksWhatIfResultName?: pulumi.Input; /** * The geo-location where the resource lives. Required for subscription and management group scoped stacks. The location is inherited from the resource group for resource group scoped stacks. */ location?: pulumi.Input; /** * The management group ID. */ managementGroupId: pulumi.Input; /** * The resource-specific properties for this resource. */ properties?: pulumi.Input; /** * Resource tags. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; }