import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * VlanInterface data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Look up vlan interface by its ID. * const scmVlanInterfaceDs = scm.getVlanInterface({ * id: "3f9382a3-5c93-46d9-ae06-a632c2d9ce0c", * }); * export const vlanInterfaceDataSourceResults = { * id: scmVlanInterfaceDs.then(scmVlanInterfaceDs => scmVlanInterfaceDs.id), * name: scmVlanInterfaceDs.then(scmVlanInterfaceDs => scmVlanInterfaceDs.name), * comment: scmVlanInterfaceDs.then(scmVlanInterfaceDs => scmVlanInterfaceDs.comment), * vlanTag: scmVlanInterfaceDs.then(scmVlanInterfaceDs => scmVlanInterfaceDs.vlanTag), * ip: scmVlanInterfaceDs.then(scmVlanInterfaceDs => scmVlanInterfaceDs.ips), * folder: scmVlanInterfaceDs.then(scmVlanInterfaceDs => scmVlanInterfaceDs.folder), * }; * ``` */ export declare function getVlanInterface(args: GetVlanInterfaceArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getVlanInterface. */ export interface GetVlanInterfaceArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * UUID of the resource */ id: string; name?: string; snippet?: string; } /** * A collection of values returned by getVlanInterface. */ export interface GetVlanInterfaceResult { readonly arps: outputs.GetVlanInterfaceArp[]; readonly comment: string; readonly ddnsConfig: outputs.GetVlanInterfaceDdnsConfig; readonly defaultValue: string; /** * The device in which the resource is defined */ readonly device: string; readonly dhcpClient: outputs.GetVlanInterfaceDhcpClient; readonly folder: string; /** * UUID of the resource */ readonly id: string; readonly interfaceManagementProfile: string; readonly ips: outputs.GetVlanInterfaceIp[]; readonly mtu: number; readonly name: string; readonly netflowProfile: string; readonly snippet: string; readonly tfid: string; readonly vlanTag: string; } /** * VlanInterface data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Look up vlan interface by its ID. * const scmVlanInterfaceDs = scm.getVlanInterface({ * id: "3f9382a3-5c93-46d9-ae06-a632c2d9ce0c", * }); * export const vlanInterfaceDataSourceResults = { * id: scmVlanInterfaceDs.then(scmVlanInterfaceDs => scmVlanInterfaceDs.id), * name: scmVlanInterfaceDs.then(scmVlanInterfaceDs => scmVlanInterfaceDs.name), * comment: scmVlanInterfaceDs.then(scmVlanInterfaceDs => scmVlanInterfaceDs.comment), * vlanTag: scmVlanInterfaceDs.then(scmVlanInterfaceDs => scmVlanInterfaceDs.vlanTag), * ip: scmVlanInterfaceDs.then(scmVlanInterfaceDs => scmVlanInterfaceDs.ips), * folder: scmVlanInterfaceDs.then(scmVlanInterfaceDs => scmVlanInterfaceDs.folder), * }; * ``` */ export declare function getVlanInterfaceOutput(args: GetVlanInterfaceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getVlanInterface. */ export interface GetVlanInterfaceOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * UUID of the resource */ id: pulumi.Input; name?: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getVlanInterface.d.ts.map