UNPKG

@pulumiverse/fortios

Version:

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

66 lines (65 loc) 1.92 kB
import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to get information on fortios system fm */ export declare function getFm(args?: GetFmArgs, opts?: pulumi.InvokeOptions): Promise<GetFmResult>; /** * A collection of arguments for invoking getFm. */ export interface GetFmArgs { /** * 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 getFm. */ export interface GetFmResult { /** * Enable/disable automatic backup. */ readonly autoBackup: string; /** * ID. */ readonly fosid: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * IP address. */ readonly ip: string; /** * Enable/disable IPsec. */ readonly ipsec: string; /** * Enable/disable scheduled configuration restore. */ readonly scheduledConfigRestore: string; /** * Enable/disable FM. */ readonly status: string; /** * VDOM. */ readonly vdom: string; readonly vdomparam?: string; } /** * Use this data source to get information on fortios system fm */ export declare function getFmOutput(args?: GetFmOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetFmResult>; /** * A collection of arguments for invoking getFm. */ export interface GetFmOutputArgs { /** * 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>; }