UNPKG

@pulumiverse/fortios

Version:

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

78 lines (77 loc) 2.62 kB
import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to get information on fortios system fortisandbox */ export declare function getFortisandbox(args?: GetFortisandboxArgs, opts?: pulumi.InvokeOptions): Promise<GetFortisandboxResult>; /** * A collection of arguments for invoking getFortisandbox. */ export interface GetFortisandboxArgs { /** * 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 getFortisandbox. */ export interface GetFortisandboxResult { /** * Notifier email address. */ readonly email: string; /** * Configure the level of SSL protection for secure communication with FortiSandbox. */ readonly encAlgorithm: string; /** * Enable/disable FortiSandbox Cloud. */ readonly forticloud: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Enable/disable FortiSandbox inline scan. */ readonly inlineScan: string; /** * Specify outgoing interface to reach server. */ readonly interface: string; /** * Specify how to select outgoing interface to reach server. */ readonly interfaceSelectMethod: string; /** * IPv4 or IPv6 address of the remote FortiSandbox. */ readonly server: string; /** * Source IP address for communications to FortiSandbox. */ readonly sourceIp: string; /** * Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). */ readonly sslMinProtoVersion: string; /** * Enable/disable FortiSandbox. */ readonly status: string; readonly vdomparam?: string; } /** * Use this data source to get information on fortios system fortisandbox */ export declare function getFortisandboxOutput(args?: GetFortisandboxOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetFortisandboxResult>; /** * A collection of arguments for invoking getFortisandbox. */ export interface GetFortisandboxOutputArgs { /** * 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>; }