@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.31 kB
TypeScript
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>;
}