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) 2.26 kB
import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to get information on fortios system fortimanager */ export declare function getFortimanager(args?: GetFortimanagerArgs, opts?: pulumi.InvokeOptions): Promise<GetFortimanagerResult>; /** * A collection of arguments for invoking getFortimanager. */ export interface GetFortimanagerArgs { /** * 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 getFortimanager. */ export interface GetFortimanagerResult { /** * Enable/disable FortiManager central management. */ readonly centralManagement: string; /** * Enable/disable central management auto backup. */ readonly centralMgmtAutoBackup: string; /** * Enable/disable central management schedule config restore. */ readonly centralMgmtScheduleConfigRestore: string; /** * Enable/disable central management schedule script restore. */ readonly centralMgmtScheduleScriptRestore: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * IP address. */ readonly ip: string; /** * Enable/disable FortiManager IPsec tunnel. */ readonly ipsec: string; /** * Virtual domain name. */ readonly vdom: string; readonly vdomparam?: string; } /** * Use this data source to get information on fortios system fortimanager */ export declare function getFortimanagerOutput(args?: GetFortimanagerOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetFortimanagerResult>; /** * A collection of arguments for invoking getFortimanager. */ export interface GetFortimanagerOutputArgs { /** * 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>; }