import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Layer3Subinterface data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Look up layer3 sub-interface by its ID. * const scmL3SubinterfaceDs = scm.getLayer3Subinterface({ * id: "88f730d1-6577-492b-88a6-73d4a513dc76", * }); * export const layer3SubinterfaceDataSourceResults = { * id: scmL3SubinterfaceDs.then(scmL3SubinterfaceDs => scmL3SubinterfaceDs.id), * name: scmL3SubinterfaceDs.then(scmL3SubinterfaceDs => scmL3SubinterfaceDs.name), * comment: scmL3SubinterfaceDs.then(scmL3SubinterfaceDs => scmL3SubinterfaceDs.comment), * ip: scmL3SubinterfaceDs.then(scmL3SubinterfaceDs => scmL3SubinterfaceDs.ips), * tag: scmL3SubinterfaceDs.then(scmL3SubinterfaceDs => scmL3SubinterfaceDs.tag), * parentInterface: scmL3SubinterfaceDs.then(scmL3SubinterfaceDs => scmL3SubinterfaceDs.parentInterface), * folder: scmL3SubinterfaceDs.then(scmL3SubinterfaceDs => scmL3SubinterfaceDs.folder), * }; * ``` */ export declare function getLayer3Subinterface(args: GetLayer3SubinterfaceArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getLayer3Subinterface. */ export interface GetLayer3SubinterfaceArgs { /** * 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 getLayer3Subinterface. */ export interface GetLayer3SubinterfaceResult { readonly arps: outputs.GetLayer3SubinterfaceArp[]; readonly comment: string; readonly ddnsConfig: outputs.GetLayer3SubinterfaceDdnsConfig; /** * The device in which the resource is defined */ readonly device: string; readonly dhcpClient: outputs.GetLayer3SubinterfaceDhcpClient; readonly folder: string; /** * UUID of the resource */ readonly id: string; readonly interfaceManagementProfile: string; readonly ips: outputs.GetLayer3SubinterfaceIp[]; readonly mtu: number; readonly name: string; readonly netflowProfile: string; readonly parentInterface: string; readonly snippet: string; readonly tag: number; readonly tfid: string; } /** * Layer3Subinterface data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Look up layer3 sub-interface by its ID. * const scmL3SubinterfaceDs = scm.getLayer3Subinterface({ * id: "88f730d1-6577-492b-88a6-73d4a513dc76", * }); * export const layer3SubinterfaceDataSourceResults = { * id: scmL3SubinterfaceDs.then(scmL3SubinterfaceDs => scmL3SubinterfaceDs.id), * name: scmL3SubinterfaceDs.then(scmL3SubinterfaceDs => scmL3SubinterfaceDs.name), * comment: scmL3SubinterfaceDs.then(scmL3SubinterfaceDs => scmL3SubinterfaceDs.comment), * ip: scmL3SubinterfaceDs.then(scmL3SubinterfaceDs => scmL3SubinterfaceDs.ips), * tag: scmL3SubinterfaceDs.then(scmL3SubinterfaceDs => scmL3SubinterfaceDs.tag), * parentInterface: scmL3SubinterfaceDs.then(scmL3SubinterfaceDs => scmL3SubinterfaceDs.parentInterface), * folder: scmL3SubinterfaceDs.then(scmL3SubinterfaceDs => scmL3SubinterfaceDs.folder), * }; * ``` */ export declare function getLayer3SubinterfaceOutput(args: GetLayer3SubinterfaceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getLayer3Subinterface. */ export interface GetLayer3SubinterfaceOutputArgs { /** * 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=getLayer3Subinterface.d.ts.map