UNPKG

@pulumiverse/fortios

Version:

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

62 lines (61 loc) 2.34 kB
import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to get information on fortios system networkvisibility */ export declare function getNetworkvisibility(args?: GetNetworkvisibilityArgs, opts?: pulumi.InvokeOptions): Promise<GetNetworkvisibilityResult>; /** * A collection of arguments for invoking getNetworkvisibility. */ export interface GetNetworkvisibilityArgs { /** * 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 getNetworkvisibility. */ export interface GetNetworkvisibilityResult { /** * Enable/disable logging of destination hostname visibility. */ readonly destinationHostnameVisibility: string; /** * Enable/disable logging of destination geographical location visibility. */ readonly destinationLocation: string; /** * Enable/disable logging of destination visibility. */ readonly destinationVisibility: string; /** * Limit of the number of hostname table entries (0 - 50000). */ readonly hostnameLimit: number; /** * TTL of hostname table entries (60 - 86400). */ readonly hostnameTtl: number; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Enable/disable logging of source geographical location visibility. */ readonly sourceLocation: string; readonly vdomparam?: string; } /** * Use this data source to get information on fortios system networkvisibility */ export declare function getNetworkvisibilityOutput(args?: GetNetworkvisibilityOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetNetworkvisibilityResult>; /** * A collection of arguments for invoking getNetworkvisibility. */ export interface GetNetworkvisibilityOutputArgs { /** * 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>; }