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

69 lines (68 loc) 2.09 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Get a EdgeDevice * * Uses Azure REST API version 2024-04-01. */ export declare function getHciEdgeDevice(args: GetHciEdgeDeviceArgs, opts?: pulumi.InvokeOptions): Promise<GetHciEdgeDeviceResult>; export interface GetHciEdgeDeviceArgs { /** * Name of Device */ edgeDeviceName: string; /** * The fully qualified Azure Resource manager identifier of the resource. */ resourceUri: string; } /** * Arc-enabled edge device with HCI OS. */ export interface GetHciEdgeDeviceResult { /** * 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; /** * Edge device kind. * Expected value is 'HCI'. */ readonly kind: "HCI"; /** * The name of the resource */ readonly name: string; /** * properties for Arc-enabled edge device with HCI OS. */ readonly properties: outputs.azurestackhci.HciEdgeDevicePropertiesResponse; /** * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ readonly systemData: outputs.azurestackhci.SystemDataResponse; /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" */ readonly type: string; } /** * Get a EdgeDevice * * Uses Azure REST API version 2024-04-01. */ export declare function getHciEdgeDeviceOutput(args: GetHciEdgeDeviceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetHciEdgeDeviceResult>; export interface GetHciEdgeDeviceOutputArgs { /** * Name of Device */ edgeDeviceName: pulumi.Input<string>; /** * The fully qualified Azure Resource manager identifier of the resource. */ resourceUri: pulumi.Input<string>; }