import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the VEdge Inventory . * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getVedgeInventory({}); * ``` */ export declare function getVedgeInventory(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by getVedgeInventory. */ export interface GetVedgeInventoryResult { /** * List of returned devices */ readonly devices: outputs.GetVedgeInventoryDevice[]; /** * The id of the object */ readonly id: string; } /** * This data source can read the VEdge Inventory . * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getVedgeInventory({}); * ``` */ export declare function getVedgeInventoryOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output; //# sourceMappingURL=getVedgeInventory.d.ts.map