@pulumi/sdwan
Version:
A Pulumi package for managing resources on Cisco Catalyst SD-WAN.. Based on terraform-provider-sdwan: version v0.4.1
42 lines (41 loc) • 1.09 kB
TypeScript
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<GetVedgeInventoryResult>;
/**
* 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<GetVedgeInventoryResult>;