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

48 lines (47 loc) 1.31 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * List disk images available for custom image creation. * * Uses Azure REST API version 2018-09-15. */ export declare function listLabVhds(args: ListLabVhdsArgs, opts?: pulumi.InvokeOptions): Promise<ListLabVhdsResult>; export interface ListLabVhdsArgs { /** * The name of the lab. */ name: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; } /** * The response of a list operation. */ export interface ListLabVhdsResult { /** * The link to the next page of items */ readonly nextLink?: string; /** * The LabVhd items on this page */ readonly value: outputs.devtestlab.LabVhdResponse[]; } /** * List disk images available for custom image creation. * * Uses Azure REST API version 2018-09-15. */ export declare function listLabVhdsOutput(args: ListLabVhdsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListLabVhdsResult>; export interface ListLabVhdsOutputArgs { /** * The name of the lab. */ name: pulumi.Input<string>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; }