@natzka-oss/pulumi-netbox
Version:
A Pulumi package for creating and managing Netbox cloud resources.
50 lines (49 loc) • 1.59 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
/**
* ## Example Usage
*/
export declare function getInterfaces(args?: GetInterfacesArgs, opts?: pulumi.InvokeOptions): Promise<GetInterfacesResult>;
/**
* A collection of arguments for invoking getInterfaces.
*/
export interface GetInterfacesArgs {
filters?: inputs.virt.GetInterfacesFilter[];
/**
* The limit of objects to return from the API lookup. Defaults to `0`.
*/
limit?: number;
nameRegex?: string;
}
/**
* A collection of values returned by getInterfaces.
*/
export interface GetInterfacesResult {
readonly filters?: outputs.virt.GetInterfacesFilter[];
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly interfaces: outputs.virt.GetInterfacesInterface[];
/**
* The limit of objects to return from the API lookup. Defaults to `0`.
*/
readonly limit?: number;
readonly nameRegex?: string;
}
/**
* ## Example Usage
*/
export declare function getInterfacesOutput(args?: GetInterfacesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetInterfacesResult>;
/**
* A collection of arguments for invoking getInterfaces.
*/
export interface GetInterfacesOutputArgs {
filters?: pulumi.Input<pulumi.Input<inputs.virt.GetInterfacesFilterArgs>[]>;
/**
* The limit of objects to return from the API lookup. Defaults to `0`.
*/
limit?: pulumi.Input<number>;
nameRegex?: pulumi.Input<string>;
}