import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to access information about an existing Orchestrated Virtual Machine Scale Set. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.compute.getOrchestratedVirtualMachineScaleSet({ * name: "existing", * resourceGroupName: "existing", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Compute` - 2024-11-01 */ export declare function getOrchestratedVirtualMachineScaleSet(args: GetOrchestratedVirtualMachineScaleSetArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getOrchestratedVirtualMachineScaleSet. */ export interface GetOrchestratedVirtualMachineScaleSetArgs { /** * The name of this Orchestrated Virtual Machine Scale Set. */ name: string; /** * The name of the Resource Group where the Orchestrated Virtual Machine Scale Set exists. */ resourceGroupName: string; } /** * A collection of values returned by getOrchestratedVirtualMachineScaleSet. */ export interface GetOrchestratedVirtualMachineScaleSetResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * A `identity` block as defined below. */ readonly identities: outputs.compute.GetOrchestratedVirtualMachineScaleSetIdentity[]; /** * The Azure Region in which this Orchestrated Virtual Machine Scale Set exists. */ readonly location: string; /** * The name of the public IP address configuration */ readonly name: string; /** * A list of `networkInterface` blocks as defined below. */ readonly networkInterfaces: outputs.compute.GetOrchestratedVirtualMachineScaleSetNetworkInterface[]; readonly resourceGroupName: string; } /** * Use this data source to access information about an existing Orchestrated Virtual Machine Scale Set. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.compute.getOrchestratedVirtualMachineScaleSet({ * name: "existing", * resourceGroupName: "existing", * }); * export const id = example.then(example => example.id); * ``` * * ## API Providers * * * This data source uses the following Azure API Providers: * * * `Microsoft.Compute` - 2024-11-01 */ export declare function getOrchestratedVirtualMachineScaleSetOutput(args: GetOrchestratedVirtualMachineScaleSetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getOrchestratedVirtualMachineScaleSet. */ export interface GetOrchestratedVirtualMachineScaleSetOutputArgs { /** * The name of this Orchestrated Virtual Machine Scale Set. */ name: pulumi.Input; /** * The name of the Resource Group where the Orchestrated Virtual Machine Scale Set exists. */ resourceGroupName: pulumi.Input; }