UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

109 lines (108 loc) 3.54 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets an Azure Large Instance for the specified subscription, resource group, * and instance name. * * Uses Azure REST API version 2024-08-01-preview. */ export declare function getAzureLargeInstance(args: GetAzureLargeInstanceArgs, opts?: pulumi.InvokeOptions): Promise<GetAzureLargeInstanceResult>; export interface GetAzureLargeInstanceArgs { /** * Name of the AzureLargeInstance. */ azureLargeInstanceName: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; } /** * Azure Large Instance info on Azure (ARM properties and AzureLargeInstance * properties) */ export interface GetAzureLargeInstanceResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Specifies the Azure Large Instance unique ID. */ readonly azureLargeInstanceId?: string; /** * Specifies the hardware settings for the Azure Large Instance. */ readonly hardwareProfile?: outputs.azurelargeinstance.HardwareProfileResponse; /** * Hardware revision of an Azure Large Instance */ readonly hwRevision?: 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 */ readonly location: string; /** * The name of the resource */ readonly name: string; /** * Specifies the network settings for the Azure Large Instance. */ readonly networkProfile?: outputs.azurelargeinstance.NetworkProfileResponse; /** * Specifies the operating system settings for the Azure Large Instance. */ readonly osProfile?: outputs.azurelargeinstance.OsProfileResponse; /** * Resource power state */ readonly powerState?: string; /** * State of provisioning of the AzureLargeInstance */ readonly provisioningState: string; /** * Resource proximity placement group */ readonly proximityPlacementGroup?: string; /** * Specifies the storage settings for the Azure Large Instance disks. */ readonly storageProfile?: outputs.azurelargeinstance.StorageProfileResponse; /** * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ readonly systemData: outputs.azurelargeinstance.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 an Azure Large Instance for the specified subscription, resource group, * and instance name. * * Uses Azure REST API version 2024-08-01-preview. */ export declare function getAzureLargeInstanceOutput(args: GetAzureLargeInstanceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAzureLargeInstanceResult>; export interface GetAzureLargeInstanceOutputArgs { /** * Name of the AzureLargeInstance. */ azureLargeInstanceName: pulumi.Input<string>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; }