import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the Line configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getLine({}); * ``` */ export declare function getLine(args?: GetLineArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getLine. */ export interface GetLineArgs { /** * A device name from the provider configuration. */ device?: string; } /** * A collection of values returned by getLine. */ export interface GetLineResult { /** * Primary terminal line */ readonly consoles: outputs.GetLineConsole[]; /** * A device name from the provider configuration. */ readonly device?: string; /** * The path of the retrieved object. */ readonly id: string; /** * Virtual terminal */ readonly vties: outputs.GetLineVty[]; } /** * This data source can read the Line configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as iosxe from "@pulumi/iosxe"; * * const example = iosxe.getLine({}); * ``` */ export declare function getLineOutput(args?: GetLineOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getLine. */ export interface GetLineOutputArgs { /** * A device name from the provider configuration. */ device?: pulumi.Input; }