import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * LoopbackInterface data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Look up loopback interface by its ID. * const scmLoopbackIntfDs = scm.getLoopbackInterface({ * id: "ddad1e64-0b64-41a4-b361-c6199769a8f1", * }); * export const scmLoopbackInterfaceDataSourceResults = { * id: scmLoopbackIntfDs.then(scmLoopbackIntfDs => scmLoopbackIntfDs.id), * name: scmLoopbackIntfDs.then(scmLoopbackIntfDs => scmLoopbackIntfDs.name), * comment: scmLoopbackIntfDs.then(scmLoopbackIntfDs => scmLoopbackIntfDs.comment), * ip: scmLoopbackIntfDs.then(scmLoopbackIntfDs => scmLoopbackIntfDs.ips), * folder: scmLoopbackIntfDs.then(scmLoopbackIntfDs => scmLoopbackIntfDs.folder), * }; * ``` */ export declare function getLoopbackInterface(args: GetLoopbackInterfaceArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getLoopbackInterface. */ export interface GetLoopbackInterfaceArgs { /** * The device in which the resource is defined */ device?: string; folder?: string; /** * UUID of the resource loopback interface */ id: string; name?: string; snippet?: string; } /** * A collection of values returned by getLoopbackInterface. */ export interface GetLoopbackInterfaceResult { readonly comment: string; readonly defaultValue: string; /** * The device in which the resource is defined */ readonly device: string; readonly folder: string; /** * UUID of the resource loopback interface */ readonly id: string; readonly interfaceManagementProfile: string; readonly ips: outputs.GetLoopbackInterfaceIp[]; readonly ipv6: outputs.GetLoopbackInterfaceIpv6; readonly mtu: number; readonly name: string; readonly netflowProfile: string; readonly snippet: string; readonly tfid: string; } /** * LoopbackInterface data source * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scm from "@pulumi/scm"; * * // Look up loopback interface by its ID. * const scmLoopbackIntfDs = scm.getLoopbackInterface({ * id: "ddad1e64-0b64-41a4-b361-c6199769a8f1", * }); * export const scmLoopbackInterfaceDataSourceResults = { * id: scmLoopbackIntfDs.then(scmLoopbackIntfDs => scmLoopbackIntfDs.id), * name: scmLoopbackIntfDs.then(scmLoopbackIntfDs => scmLoopbackIntfDs.name), * comment: scmLoopbackIntfDs.then(scmLoopbackIntfDs => scmLoopbackIntfDs.comment), * ip: scmLoopbackIntfDs.then(scmLoopbackIntfDs => scmLoopbackIntfDs.ips), * folder: scmLoopbackIntfDs.then(scmLoopbackIntfDs => scmLoopbackIntfDs.folder), * }; * ``` */ export declare function getLoopbackInterfaceOutput(args: GetLoopbackInterfaceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getLoopbackInterface. */ export interface GetLoopbackInterfaceOutputArgs { /** * The device in which the resource is defined */ device?: pulumi.Input; folder?: pulumi.Input; /** * UUID of the resource loopback interface */ id: pulumi.Input; name?: pulumi.Input; snippet?: pulumi.Input; } //# sourceMappingURL=getLoopbackInterface.d.ts.map