UNPKG

@pulumiverse/fortios

Version:

A Pulumi package for creating and managing Fortios resources. Based on terraform-provider-fortios: version v1.16.0

58 lines (57 loc) 1.88 kB
import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to get information on fortios system console */ export declare function getConsole(args?: GetConsoleArgs, opts?: pulumi.InvokeOptions): Promise<GetConsoleResult>; /** * A collection of arguments for invoking getConsole. */ export interface GetConsoleArgs { /** * Specifies the vdom to which the data source will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter. */ vdomparam?: string; } /** * A collection of values returned by getConsole. */ export interface GetConsoleResult { /** * Console baud rate. */ readonly baudrate: string; /** * Enable/disable access for FortiExplorer. */ readonly fortiexplorer: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Enable/disable serial console and FortiExplorer. */ readonly login: string; /** * Console mode. */ readonly mode: string; /** * Console output mode. */ readonly output: string; readonly vdomparam?: string; } /** * Use this data source to get information on fortios system console */ export declare function getConsoleOutput(args?: GetConsoleOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetConsoleResult>; /** * A collection of arguments for invoking getConsole. */ export interface GetConsoleOutputArgs { /** * Specifies the vdom to which the data source will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter. */ vdomparam?: pulumi.Input<string>; }