import * as pulumi from "@pulumi/pulumi"; import * as types from "./types"; /** * Gets the Deployment stack with the given name. * * Uses Azure REST API version 2025-07-01. */ export declare function getDeploymentStacksWhatIfResultsAtSubscription(args: GetDeploymentStacksWhatIfResultsAtSubscriptionArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetDeploymentStacksWhatIfResultsAtSubscriptionArgs { /** * Name of the deployment stack what-if result. */ deploymentStacksWhatIfResultName: string; } /** * Deployment stack object. */ export interface GetDeploymentStacksWhatIfResultsAtSubscriptionResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" */ readonly id: string; /** * 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?: string; /** * The name of the resource */ readonly name: string; /** * The resource-specific properties for this resource. */ readonly properties: types.outputs.DeploymentStacksWhatIfResultPropertiesResponse; /** * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ readonly systemData: types.outputs.SystemDataResponse; /** * Resource tags. */ readonly tags?: { [key: string]: string; }; /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" */ readonly type: string; } /** * Gets the Deployment stack with the given name. * * Uses Azure REST API version 2025-07-01. */ export declare function getDeploymentStacksWhatIfResultsAtSubscriptionOutput(args: GetDeploymentStacksWhatIfResultsAtSubscriptionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetDeploymentStacksWhatIfResultsAtSubscriptionOutputArgs { /** * Name of the deployment stack what-if result. */ deploymentStacksWhatIfResultName: pulumi.Input; }