fortios.endpointcontrol.Settings
Explore with Pulumi AI
Configure endpoint control settings. Applies to FortiOS Version 6.2.0,6.2.4,6.2.6,7.4.0,7.4.1,7.4.2,7.4.3,7.4.4.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortios from "@pulumiverse/fortios";
const trname = new fortios.endpointcontrol.Settings("trname", {
    downloadLocation: "fortiguard",
    forticlientAvdbUpdateInterval: 8,
    forticlientDeregUnsupportedClient: "enable",
    forticlientEmsRestApiCallTimeout: 5000,
    forticlientKeepaliveInterval: 60,
    forticlientOfflineGrace: "disable",
    forticlientOfflineGraceInterval: 120,
    forticlientRegKeyEnforce: "disable",
    forticlientRegTimeout: 7,
    forticlientSysUpdateInterval: 720,
    forticlientUserAvatar: "enable",
    forticlientWarningInterval: 1,
});
import pulumi
import pulumiverse_fortios as fortios
trname = fortios.endpointcontrol.Settings("trname",
    download_location="fortiguard",
    forticlient_avdb_update_interval=8,
    forticlient_dereg_unsupported_client="enable",
    forticlient_ems_rest_api_call_timeout=5000,
    forticlient_keepalive_interval=60,
    forticlient_offline_grace="disable",
    forticlient_offline_grace_interval=120,
    forticlient_reg_key_enforce="disable",
    forticlient_reg_timeout=7,
    forticlient_sys_update_interval=720,
    forticlient_user_avatar="enable",
    forticlient_warning_interval=1)
package main
import (
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumiverse/pulumi-fortios/sdk/go/fortios/endpointcontrol"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := endpointcontrol.NewSettings(ctx, "trname", &endpointcontrol.SettingsArgs{
			DownloadLocation:                  pulumi.String("fortiguard"),
			ForticlientAvdbUpdateInterval:     pulumi.Int(8),
			ForticlientDeregUnsupportedClient: pulumi.String("enable"),
			ForticlientEmsRestApiCallTimeout:  pulumi.Int(5000),
			ForticlientKeepaliveInterval:      pulumi.Int(60),
			ForticlientOfflineGrace:           pulumi.String("disable"),
			ForticlientOfflineGraceInterval:   pulumi.Int(120),
			ForticlientRegKeyEnforce:          pulumi.String("disable"),
			ForticlientRegTimeout:             pulumi.Int(7),
			ForticlientSysUpdateInterval:      pulumi.Int(720),
			ForticlientUserAvatar:             pulumi.String("enable"),
			ForticlientWarningInterval:        pulumi.Int(1),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortios = Pulumiverse.Fortios;
return await Deployment.RunAsync(() => 
{
    var trname = new Fortios.Endpointcontrol.Settings("trname", new()
    {
        DownloadLocation = "fortiguard",
        ForticlientAvdbUpdateInterval = 8,
        ForticlientDeregUnsupportedClient = "enable",
        ForticlientEmsRestApiCallTimeout = 5000,
        ForticlientKeepaliveInterval = 60,
        ForticlientOfflineGrace = "disable",
        ForticlientOfflineGraceInterval = 120,
        ForticlientRegKeyEnforce = "disable",
        ForticlientRegTimeout = 7,
        ForticlientSysUpdateInterval = 720,
        ForticlientUserAvatar = "enable",
        ForticlientWarningInterval = 1,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortios.endpointcontrol.Settings;
import com.pulumi.fortios.endpointcontrol.SettingsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var trname = new Settings("trname", SettingsArgs.builder()
            .downloadLocation("fortiguard")
            .forticlientAvdbUpdateInterval(8)
            .forticlientDeregUnsupportedClient("enable")
            .forticlientEmsRestApiCallTimeout(5000)
            .forticlientKeepaliveInterval(60)
            .forticlientOfflineGrace("disable")
            .forticlientOfflineGraceInterval(120)
            .forticlientRegKeyEnforce("disable")
            .forticlientRegTimeout(7)
            .forticlientSysUpdateInterval(720)
            .forticlientUserAvatar("enable")
            .forticlientWarningInterval(1)
            .build());
    }
}
resources:
  trname:
    type: fortios:endpointcontrol:Settings
    properties:
      downloadLocation: fortiguard
      forticlientAvdbUpdateInterval: 8
      forticlientDeregUnsupportedClient: enable
      forticlientEmsRestApiCallTimeout: 5000
      forticlientKeepaliveInterval: 60
      forticlientOfflineGrace: disable
      forticlientOfflineGraceInterval: 120
      forticlientRegKeyEnforce: disable
      forticlientRegTimeout: 7
      forticlientSysUpdateInterval: 720
      forticlientUserAvatar: enable
      forticlientWarningInterval: 1
Create Settings Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Settings(name: string, args?: SettingsArgs, opts?: CustomResourceOptions);@overload
def Settings(resource_name: str,
             args: Optional[SettingsArgs] = None,
             opts: Optional[ResourceOptions] = None)
@overload
def Settings(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             download_custom_link: Optional[str] = None,
             download_location: Optional[str] = None,
             forticlient_avdb_update_interval: Optional[int] = None,
             forticlient_dereg_unsupported_client: Optional[str] = None,
             forticlient_disconnect_unsupported_client: Optional[str] = None,
             forticlient_ems_rest_api_call_timeout: Optional[int] = None,
             forticlient_keepalive_interval: Optional[int] = None,
             forticlient_offline_grace: Optional[str] = None,
             forticlient_offline_grace_interval: Optional[int] = None,
             forticlient_reg_key: Optional[str] = None,
             forticlient_reg_key_enforce: Optional[str] = None,
             forticlient_reg_timeout: Optional[int] = None,
             forticlient_sys_update_interval: Optional[int] = None,
             forticlient_user_avatar: Optional[str] = None,
             forticlient_warning_interval: Optional[int] = None,
             override: Optional[str] = None,
             vdomparam: Optional[str] = None)func NewSettings(ctx *Context, name string, args *SettingsArgs, opts ...ResourceOption) (*Settings, error)public Settings(string name, SettingsArgs? args = null, CustomResourceOptions? opts = null)
public Settings(String name, SettingsArgs args)
public Settings(String name, SettingsArgs args, CustomResourceOptions options)
type: fortios:endpointcontrol:Settings
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args SettingsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SettingsArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SettingsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SettingsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SettingsArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var examplesettingsResourceResourceFromEndpointcontrolsettings = new Fortios.Endpointcontrol.Settings("examplesettingsResourceResourceFromEndpointcontrolsettings", new()
{
    DownloadCustomLink = "string",
    DownloadLocation = "string",
    ForticlientAvdbUpdateInterval = 0,
    ForticlientDeregUnsupportedClient = "string",
    ForticlientDisconnectUnsupportedClient = "string",
    ForticlientEmsRestApiCallTimeout = 0,
    ForticlientKeepaliveInterval = 0,
    ForticlientOfflineGrace = "string",
    ForticlientOfflineGraceInterval = 0,
    ForticlientRegKey = "string",
    ForticlientRegKeyEnforce = "string",
    ForticlientRegTimeout = 0,
    ForticlientSysUpdateInterval = 0,
    ForticlientUserAvatar = "string",
    ForticlientWarningInterval = 0,
    Override = "string",
    Vdomparam = "string",
});
example, err := endpointcontrol.NewSettings(ctx, "examplesettingsResourceResourceFromEndpointcontrolsettings", &endpointcontrol.SettingsArgs{
	DownloadCustomLink:                     pulumi.String("string"),
	DownloadLocation:                       pulumi.String("string"),
	ForticlientAvdbUpdateInterval:          pulumi.Int(0),
	ForticlientDeregUnsupportedClient:      pulumi.String("string"),
	ForticlientDisconnectUnsupportedClient: pulumi.String("string"),
	ForticlientEmsRestApiCallTimeout:       pulumi.Int(0),
	ForticlientKeepaliveInterval:           pulumi.Int(0),
	ForticlientOfflineGrace:                pulumi.String("string"),
	ForticlientOfflineGraceInterval:        pulumi.Int(0),
	ForticlientRegKey:                      pulumi.String("string"),
	ForticlientRegKeyEnforce:               pulumi.String("string"),
	ForticlientRegTimeout:                  pulumi.Int(0),
	ForticlientSysUpdateInterval:           pulumi.Int(0),
	ForticlientUserAvatar:                  pulumi.String("string"),
	ForticlientWarningInterval:             pulumi.Int(0),
	Override:                               pulumi.String("string"),
	Vdomparam:                              pulumi.String("string"),
})
var examplesettingsResourceResourceFromEndpointcontrolsettings = new Settings("examplesettingsResourceResourceFromEndpointcontrolsettings", SettingsArgs.builder()
    .downloadCustomLink("string")
    .downloadLocation("string")
    .forticlientAvdbUpdateInterval(0)
    .forticlientDeregUnsupportedClient("string")
    .forticlientDisconnectUnsupportedClient("string")
    .forticlientEmsRestApiCallTimeout(0)
    .forticlientKeepaliveInterval(0)
    .forticlientOfflineGrace("string")
    .forticlientOfflineGraceInterval(0)
    .forticlientRegKey("string")
    .forticlientRegKeyEnforce("string")
    .forticlientRegTimeout(0)
    .forticlientSysUpdateInterval(0)
    .forticlientUserAvatar("string")
    .forticlientWarningInterval(0)
    .override("string")
    .vdomparam("string")
    .build());
examplesettings_resource_resource_from_endpointcontrolsettings = fortios.endpointcontrol.Settings("examplesettingsResourceResourceFromEndpointcontrolsettings",
    download_custom_link="string",
    download_location="string",
    forticlient_avdb_update_interval=0,
    forticlient_dereg_unsupported_client="string",
    forticlient_disconnect_unsupported_client="string",
    forticlient_ems_rest_api_call_timeout=0,
    forticlient_keepalive_interval=0,
    forticlient_offline_grace="string",
    forticlient_offline_grace_interval=0,
    forticlient_reg_key="string",
    forticlient_reg_key_enforce="string",
    forticlient_reg_timeout=0,
    forticlient_sys_update_interval=0,
    forticlient_user_avatar="string",
    forticlient_warning_interval=0,
    override="string",
    vdomparam="string")
const examplesettingsResourceResourceFromEndpointcontrolsettings = new fortios.endpointcontrol.Settings("examplesettingsResourceResourceFromEndpointcontrolsettings", {
    downloadCustomLink: "string",
    downloadLocation: "string",
    forticlientAvdbUpdateInterval: 0,
    forticlientDeregUnsupportedClient: "string",
    forticlientDisconnectUnsupportedClient: "string",
    forticlientEmsRestApiCallTimeout: 0,
    forticlientKeepaliveInterval: 0,
    forticlientOfflineGrace: "string",
    forticlientOfflineGraceInterval: 0,
    forticlientRegKey: "string",
    forticlientRegKeyEnforce: "string",
    forticlientRegTimeout: 0,
    forticlientSysUpdateInterval: 0,
    forticlientUserAvatar: "string",
    forticlientWarningInterval: 0,
    override: "string",
    vdomparam: "string",
});
type: fortios:endpointcontrol:Settings
properties:
    downloadCustomLink: string
    downloadLocation: string
    forticlientAvdbUpdateInterval: 0
    forticlientDeregUnsupportedClient: string
    forticlientDisconnectUnsupportedClient: string
    forticlientEmsRestApiCallTimeout: 0
    forticlientKeepaliveInterval: 0
    forticlientOfflineGrace: string
    forticlientOfflineGraceInterval: 0
    forticlientRegKey: string
    forticlientRegKeyEnforce: string
    forticlientRegTimeout: 0
    forticlientSysUpdateInterval: 0
    forticlientUserAvatar: string
    forticlientWarningInterval: 0
    override: string
    vdomparam: string
Settings Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Settings resource accepts the following input properties:
- DownloadCustom stringLink 
- Customized URL for downloading FortiClient.
- DownloadLocation string
- FortiClient download location (FortiGuard or custom). Valid values: fortiguard,custom.
- ForticlientAvdb intUpdate Interval 
- Period of time between FortiClient AntiVirus database updates (0 - 24 hours, default = 8).
- ForticlientDereg stringUnsupported Client 
- Enable/disable deregistering unsupported FortiClient endpoints. Valid values: enable,disable.
- ForticlientDisconnect stringUnsupported Client 
- Enable/disable disconnecting of unsupported FortiClient endpoints. Valid values: enable,disable.
- ForticlientEms intRest Api Call Timeout 
- FortiClient EMS call timeout in milliseconds (500 - 30000 milliseconds, default = 5000).
- ForticlientKeepalive intInterval 
- Interval between two KeepAlive messages from FortiClient (20 - 300 sec, default = 60).
- ForticlientOffline stringGrace 
- Enable/disable grace period for offline registered clients. Valid values: enable,disable.
- ForticlientOffline intGrace Interval 
- Grace period for offline registered FortiClient (60 - 600 sec, default = 120).
- ForticlientReg stringKey 
- FortiClient registration key.
- ForticlientReg stringKey Enforce 
- Enable/disable requiring or enforcing FortiClient registration keys. Valid values: enable,disable.
- ForticlientReg intTimeout 
- FortiClient registration license timeout (days, min = 1, max = 180, 0 means unlimited).
- ForticlientSys intUpdate Interval 
- Interval between two system update messages from FortiClient (30 - 1440 min, default = 720).
- ForticlientUser stringAvatar 
- Enable/disable uploading FortiClient user avatars. Valid values: enable,disable.
- ForticlientWarning intInterval 
- Period of time between FortiClient portal warnings (0 - 24 hours, default = 1).
- Override string
- Override global EMS table for this VDOM. Valid values: enable,disable.
- Vdomparam string
- Specifies the vdom to which the resource 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.
- DownloadCustom stringLink 
- Customized URL for downloading FortiClient.
- DownloadLocation string
- FortiClient download location (FortiGuard or custom). Valid values: fortiguard,custom.
- ForticlientAvdb intUpdate Interval 
- Period of time between FortiClient AntiVirus database updates (0 - 24 hours, default = 8).
- ForticlientDereg stringUnsupported Client 
- Enable/disable deregistering unsupported FortiClient endpoints. Valid values: enable,disable.
- ForticlientDisconnect stringUnsupported Client 
- Enable/disable disconnecting of unsupported FortiClient endpoints. Valid values: enable,disable.
- ForticlientEms intRest Api Call Timeout 
- FortiClient EMS call timeout in milliseconds (500 - 30000 milliseconds, default = 5000).
- ForticlientKeepalive intInterval 
- Interval between two KeepAlive messages from FortiClient (20 - 300 sec, default = 60).
- ForticlientOffline stringGrace 
- Enable/disable grace period for offline registered clients. Valid values: enable,disable.
- ForticlientOffline intGrace Interval 
- Grace period for offline registered FortiClient (60 - 600 sec, default = 120).
- ForticlientReg stringKey 
- FortiClient registration key.
- ForticlientReg stringKey Enforce 
- Enable/disable requiring or enforcing FortiClient registration keys. Valid values: enable,disable.
- ForticlientReg intTimeout 
- FortiClient registration license timeout (days, min = 1, max = 180, 0 means unlimited).
- ForticlientSys intUpdate Interval 
- Interval between two system update messages from FortiClient (30 - 1440 min, default = 720).
- ForticlientUser stringAvatar 
- Enable/disable uploading FortiClient user avatars. Valid values: enable,disable.
- ForticlientWarning intInterval 
- Period of time between FortiClient portal warnings (0 - 24 hours, default = 1).
- Override string
- Override global EMS table for this VDOM. Valid values: enable,disable.
- Vdomparam string
- Specifies the vdom to which the resource 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.
- downloadCustom StringLink 
- Customized URL for downloading FortiClient.
- downloadLocation String
- FortiClient download location (FortiGuard or custom). Valid values: fortiguard,custom.
- forticlientAvdb IntegerUpdate Interval 
- Period of time between FortiClient AntiVirus database updates (0 - 24 hours, default = 8).
- forticlientDereg StringUnsupported Client 
- Enable/disable deregistering unsupported FortiClient endpoints. Valid values: enable,disable.
- forticlientDisconnect StringUnsupported Client 
- Enable/disable disconnecting of unsupported FortiClient endpoints. Valid values: enable,disable.
- forticlientEms IntegerRest Api Call Timeout 
- FortiClient EMS call timeout in milliseconds (500 - 30000 milliseconds, default = 5000).
- forticlientKeepalive IntegerInterval 
- Interval between two KeepAlive messages from FortiClient (20 - 300 sec, default = 60).
- forticlientOffline StringGrace 
- Enable/disable grace period for offline registered clients. Valid values: enable,disable.
- forticlientOffline IntegerGrace Interval 
- Grace period for offline registered FortiClient (60 - 600 sec, default = 120).
- forticlientReg StringKey 
- FortiClient registration key.
- forticlientReg StringKey Enforce 
- Enable/disable requiring or enforcing FortiClient registration keys. Valid values: enable,disable.
- forticlientReg IntegerTimeout 
- FortiClient registration license timeout (days, min = 1, max = 180, 0 means unlimited).
- forticlientSys IntegerUpdate Interval 
- Interval between two system update messages from FortiClient (30 - 1440 min, default = 720).
- forticlientUser StringAvatar 
- Enable/disable uploading FortiClient user avatars. Valid values: enable,disable.
- forticlientWarning IntegerInterval 
- Period of time between FortiClient portal warnings (0 - 24 hours, default = 1).
- override String
- Override global EMS table for this VDOM. Valid values: enable,disable.
- vdomparam String
- Specifies the vdom to which the resource 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.
- downloadCustom stringLink 
- Customized URL for downloading FortiClient.
- downloadLocation string
- FortiClient download location (FortiGuard or custom). Valid values: fortiguard,custom.
- forticlientAvdb numberUpdate Interval 
- Period of time between FortiClient AntiVirus database updates (0 - 24 hours, default = 8).
- forticlientDereg stringUnsupported Client 
- Enable/disable deregistering unsupported FortiClient endpoints. Valid values: enable,disable.
- forticlientDisconnect stringUnsupported Client 
- Enable/disable disconnecting of unsupported FortiClient endpoints. Valid values: enable,disable.
- forticlientEms numberRest Api Call Timeout 
- FortiClient EMS call timeout in milliseconds (500 - 30000 milliseconds, default = 5000).
- forticlientKeepalive numberInterval 
- Interval between two KeepAlive messages from FortiClient (20 - 300 sec, default = 60).
- forticlientOffline stringGrace 
- Enable/disable grace period for offline registered clients. Valid values: enable,disable.
- forticlientOffline numberGrace Interval 
- Grace period for offline registered FortiClient (60 - 600 sec, default = 120).
- forticlientReg stringKey 
- FortiClient registration key.
- forticlientReg stringKey Enforce 
- Enable/disable requiring or enforcing FortiClient registration keys. Valid values: enable,disable.
- forticlientReg numberTimeout 
- FortiClient registration license timeout (days, min = 1, max = 180, 0 means unlimited).
- forticlientSys numberUpdate Interval 
- Interval between two system update messages from FortiClient (30 - 1440 min, default = 720).
- forticlientUser stringAvatar 
- Enable/disable uploading FortiClient user avatars. Valid values: enable,disable.
- forticlientWarning numberInterval 
- Period of time between FortiClient portal warnings (0 - 24 hours, default = 1).
- override string
- Override global EMS table for this VDOM. Valid values: enable,disable.
- vdomparam string
- Specifies the vdom to which the resource 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.
- download_custom_ strlink 
- Customized URL for downloading FortiClient.
- download_location str
- FortiClient download location (FortiGuard or custom). Valid values: fortiguard,custom.
- forticlient_avdb_ intupdate_ interval 
- Period of time between FortiClient AntiVirus database updates (0 - 24 hours, default = 8).
- forticlient_dereg_ strunsupported_ client 
- Enable/disable deregistering unsupported FortiClient endpoints. Valid values: enable,disable.
- forticlient_disconnect_ strunsupported_ client 
- Enable/disable disconnecting of unsupported FortiClient endpoints. Valid values: enable,disable.
- forticlient_ems_ intrest_ api_ call_ timeout 
- FortiClient EMS call timeout in milliseconds (500 - 30000 milliseconds, default = 5000).
- forticlient_keepalive_ intinterval 
- Interval between two KeepAlive messages from FortiClient (20 - 300 sec, default = 60).
- forticlient_offline_ strgrace 
- Enable/disable grace period for offline registered clients. Valid values: enable,disable.
- forticlient_offline_ intgrace_ interval 
- Grace period for offline registered FortiClient (60 - 600 sec, default = 120).
- forticlient_reg_ strkey 
- FortiClient registration key.
- forticlient_reg_ strkey_ enforce 
- Enable/disable requiring or enforcing FortiClient registration keys. Valid values: enable,disable.
- forticlient_reg_ inttimeout 
- FortiClient registration license timeout (days, min = 1, max = 180, 0 means unlimited).
- forticlient_sys_ intupdate_ interval 
- Interval between two system update messages from FortiClient (30 - 1440 min, default = 720).
- forticlient_user_ stravatar 
- Enable/disable uploading FortiClient user avatars. Valid values: enable,disable.
- forticlient_warning_ intinterval 
- Period of time between FortiClient portal warnings (0 - 24 hours, default = 1).
- override str
- Override global EMS table for this VDOM. Valid values: enable,disable.
- vdomparam str
- Specifies the vdom to which the resource 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.
- downloadCustom StringLink 
- Customized URL for downloading FortiClient.
- downloadLocation String
- FortiClient download location (FortiGuard or custom). Valid values: fortiguard,custom.
- forticlientAvdb NumberUpdate Interval 
- Period of time between FortiClient AntiVirus database updates (0 - 24 hours, default = 8).
- forticlientDereg StringUnsupported Client 
- Enable/disable deregistering unsupported FortiClient endpoints. Valid values: enable,disable.
- forticlientDisconnect StringUnsupported Client 
- Enable/disable disconnecting of unsupported FortiClient endpoints. Valid values: enable,disable.
- forticlientEms NumberRest Api Call Timeout 
- FortiClient EMS call timeout in milliseconds (500 - 30000 milliseconds, default = 5000).
- forticlientKeepalive NumberInterval 
- Interval between two KeepAlive messages from FortiClient (20 - 300 sec, default = 60).
- forticlientOffline StringGrace 
- Enable/disable grace period for offline registered clients. Valid values: enable,disable.
- forticlientOffline NumberGrace Interval 
- Grace period for offline registered FortiClient (60 - 600 sec, default = 120).
- forticlientReg StringKey 
- FortiClient registration key.
- forticlientReg StringKey Enforce 
- Enable/disable requiring or enforcing FortiClient registration keys. Valid values: enable,disable.
- forticlientReg NumberTimeout 
- FortiClient registration license timeout (days, min = 1, max = 180, 0 means unlimited).
- forticlientSys NumberUpdate Interval 
- Interval between two system update messages from FortiClient (30 - 1440 min, default = 720).
- forticlientUser StringAvatar 
- Enable/disable uploading FortiClient user avatars. Valid values: enable,disable.
- forticlientWarning NumberInterval 
- Period of time between FortiClient portal warnings (0 - 24 hours, default = 1).
- override String
- Override global EMS table for this VDOM. Valid values: enable,disable.
- vdomparam String
- Specifies the vdom to which the resource 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.
Outputs
All input properties are implicitly available as output properties. Additionally, the Settings resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Settings Resource
Get an existing Settings resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: SettingsState, opts?: CustomResourceOptions): Settings@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        download_custom_link: Optional[str] = None,
        download_location: Optional[str] = None,
        forticlient_avdb_update_interval: Optional[int] = None,
        forticlient_dereg_unsupported_client: Optional[str] = None,
        forticlient_disconnect_unsupported_client: Optional[str] = None,
        forticlient_ems_rest_api_call_timeout: Optional[int] = None,
        forticlient_keepalive_interval: Optional[int] = None,
        forticlient_offline_grace: Optional[str] = None,
        forticlient_offline_grace_interval: Optional[int] = None,
        forticlient_reg_key: Optional[str] = None,
        forticlient_reg_key_enforce: Optional[str] = None,
        forticlient_reg_timeout: Optional[int] = None,
        forticlient_sys_update_interval: Optional[int] = None,
        forticlient_user_avatar: Optional[str] = None,
        forticlient_warning_interval: Optional[int] = None,
        override: Optional[str] = None,
        vdomparam: Optional[str] = None) -> Settingsfunc GetSettings(ctx *Context, name string, id IDInput, state *SettingsState, opts ...ResourceOption) (*Settings, error)public static Settings Get(string name, Input<string> id, SettingsState? state, CustomResourceOptions? opts = null)public static Settings get(String name, Output<String> id, SettingsState state, CustomResourceOptions options)resources:  _:    type: fortios:endpointcontrol:Settings    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- DownloadCustom stringLink 
- Customized URL for downloading FortiClient.
- DownloadLocation string
- FortiClient download location (FortiGuard or custom). Valid values: fortiguard,custom.
- ForticlientAvdb intUpdate Interval 
- Period of time between FortiClient AntiVirus database updates (0 - 24 hours, default = 8).
- ForticlientDereg stringUnsupported Client 
- Enable/disable deregistering unsupported FortiClient endpoints. Valid values: enable,disable.
- ForticlientDisconnect stringUnsupported Client 
- Enable/disable disconnecting of unsupported FortiClient endpoints. Valid values: enable,disable.
- ForticlientEms intRest Api Call Timeout 
- FortiClient EMS call timeout in milliseconds (500 - 30000 milliseconds, default = 5000).
- ForticlientKeepalive intInterval 
- Interval between two KeepAlive messages from FortiClient (20 - 300 sec, default = 60).
- ForticlientOffline stringGrace 
- Enable/disable grace period for offline registered clients. Valid values: enable,disable.
- ForticlientOffline intGrace Interval 
- Grace period for offline registered FortiClient (60 - 600 sec, default = 120).
- ForticlientReg stringKey 
- FortiClient registration key.
- ForticlientReg stringKey Enforce 
- Enable/disable requiring or enforcing FortiClient registration keys. Valid values: enable,disable.
- ForticlientReg intTimeout 
- FortiClient registration license timeout (days, min = 1, max = 180, 0 means unlimited).
- ForticlientSys intUpdate Interval 
- Interval between two system update messages from FortiClient (30 - 1440 min, default = 720).
- ForticlientUser stringAvatar 
- Enable/disable uploading FortiClient user avatars. Valid values: enable,disable.
- ForticlientWarning intInterval 
- Period of time between FortiClient portal warnings (0 - 24 hours, default = 1).
- Override string
- Override global EMS table for this VDOM. Valid values: enable,disable.
- Vdomparam string
- Specifies the vdom to which the resource 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.
- DownloadCustom stringLink 
- Customized URL for downloading FortiClient.
- DownloadLocation string
- FortiClient download location (FortiGuard or custom). Valid values: fortiguard,custom.
- ForticlientAvdb intUpdate Interval 
- Period of time between FortiClient AntiVirus database updates (0 - 24 hours, default = 8).
- ForticlientDereg stringUnsupported Client 
- Enable/disable deregistering unsupported FortiClient endpoints. Valid values: enable,disable.
- ForticlientDisconnect stringUnsupported Client 
- Enable/disable disconnecting of unsupported FortiClient endpoints. Valid values: enable,disable.
- ForticlientEms intRest Api Call Timeout 
- FortiClient EMS call timeout in milliseconds (500 - 30000 milliseconds, default = 5000).
- ForticlientKeepalive intInterval 
- Interval between two KeepAlive messages from FortiClient (20 - 300 sec, default = 60).
- ForticlientOffline stringGrace 
- Enable/disable grace period for offline registered clients. Valid values: enable,disable.
- ForticlientOffline intGrace Interval 
- Grace period for offline registered FortiClient (60 - 600 sec, default = 120).
- ForticlientReg stringKey 
- FortiClient registration key.
- ForticlientReg stringKey Enforce 
- Enable/disable requiring or enforcing FortiClient registration keys. Valid values: enable,disable.
- ForticlientReg intTimeout 
- FortiClient registration license timeout (days, min = 1, max = 180, 0 means unlimited).
- ForticlientSys intUpdate Interval 
- Interval between two system update messages from FortiClient (30 - 1440 min, default = 720).
- ForticlientUser stringAvatar 
- Enable/disable uploading FortiClient user avatars. Valid values: enable,disable.
- ForticlientWarning intInterval 
- Period of time between FortiClient portal warnings (0 - 24 hours, default = 1).
- Override string
- Override global EMS table for this VDOM. Valid values: enable,disable.
- Vdomparam string
- Specifies the vdom to which the resource 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.
- downloadCustom StringLink 
- Customized URL for downloading FortiClient.
- downloadLocation String
- FortiClient download location (FortiGuard or custom). Valid values: fortiguard,custom.
- forticlientAvdb IntegerUpdate Interval 
- Period of time between FortiClient AntiVirus database updates (0 - 24 hours, default = 8).
- forticlientDereg StringUnsupported Client 
- Enable/disable deregistering unsupported FortiClient endpoints. Valid values: enable,disable.
- forticlientDisconnect StringUnsupported Client 
- Enable/disable disconnecting of unsupported FortiClient endpoints. Valid values: enable,disable.
- forticlientEms IntegerRest Api Call Timeout 
- FortiClient EMS call timeout in milliseconds (500 - 30000 milliseconds, default = 5000).
- forticlientKeepalive IntegerInterval 
- Interval between two KeepAlive messages from FortiClient (20 - 300 sec, default = 60).
- forticlientOffline StringGrace 
- Enable/disable grace period for offline registered clients. Valid values: enable,disable.
- forticlientOffline IntegerGrace Interval 
- Grace period for offline registered FortiClient (60 - 600 sec, default = 120).
- forticlientReg StringKey 
- FortiClient registration key.
- forticlientReg StringKey Enforce 
- Enable/disable requiring or enforcing FortiClient registration keys. Valid values: enable,disable.
- forticlientReg IntegerTimeout 
- FortiClient registration license timeout (days, min = 1, max = 180, 0 means unlimited).
- forticlientSys IntegerUpdate Interval 
- Interval between two system update messages from FortiClient (30 - 1440 min, default = 720).
- forticlientUser StringAvatar 
- Enable/disable uploading FortiClient user avatars. Valid values: enable,disable.
- forticlientWarning IntegerInterval 
- Period of time between FortiClient portal warnings (0 - 24 hours, default = 1).
- override String
- Override global EMS table for this VDOM. Valid values: enable,disable.
- vdomparam String
- Specifies the vdom to which the resource 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.
- downloadCustom stringLink 
- Customized URL for downloading FortiClient.
- downloadLocation string
- FortiClient download location (FortiGuard or custom). Valid values: fortiguard,custom.
- forticlientAvdb numberUpdate Interval 
- Period of time between FortiClient AntiVirus database updates (0 - 24 hours, default = 8).
- forticlientDereg stringUnsupported Client 
- Enable/disable deregistering unsupported FortiClient endpoints. Valid values: enable,disable.
- forticlientDisconnect stringUnsupported Client 
- Enable/disable disconnecting of unsupported FortiClient endpoints. Valid values: enable,disable.
- forticlientEms numberRest Api Call Timeout 
- FortiClient EMS call timeout in milliseconds (500 - 30000 milliseconds, default = 5000).
- forticlientKeepalive numberInterval 
- Interval between two KeepAlive messages from FortiClient (20 - 300 sec, default = 60).
- forticlientOffline stringGrace 
- Enable/disable grace period for offline registered clients. Valid values: enable,disable.
- forticlientOffline numberGrace Interval 
- Grace period for offline registered FortiClient (60 - 600 sec, default = 120).
- forticlientReg stringKey 
- FortiClient registration key.
- forticlientReg stringKey Enforce 
- Enable/disable requiring or enforcing FortiClient registration keys. Valid values: enable,disable.
- forticlientReg numberTimeout 
- FortiClient registration license timeout (days, min = 1, max = 180, 0 means unlimited).
- forticlientSys numberUpdate Interval 
- Interval between two system update messages from FortiClient (30 - 1440 min, default = 720).
- forticlientUser stringAvatar 
- Enable/disable uploading FortiClient user avatars. Valid values: enable,disable.
- forticlientWarning numberInterval 
- Period of time between FortiClient portal warnings (0 - 24 hours, default = 1).
- override string
- Override global EMS table for this VDOM. Valid values: enable,disable.
- vdomparam string
- Specifies the vdom to which the resource 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.
- download_custom_ strlink 
- Customized URL for downloading FortiClient.
- download_location str
- FortiClient download location (FortiGuard or custom). Valid values: fortiguard,custom.
- forticlient_avdb_ intupdate_ interval 
- Period of time between FortiClient AntiVirus database updates (0 - 24 hours, default = 8).
- forticlient_dereg_ strunsupported_ client 
- Enable/disable deregistering unsupported FortiClient endpoints. Valid values: enable,disable.
- forticlient_disconnect_ strunsupported_ client 
- Enable/disable disconnecting of unsupported FortiClient endpoints. Valid values: enable,disable.
- forticlient_ems_ intrest_ api_ call_ timeout 
- FortiClient EMS call timeout in milliseconds (500 - 30000 milliseconds, default = 5000).
- forticlient_keepalive_ intinterval 
- Interval between two KeepAlive messages from FortiClient (20 - 300 sec, default = 60).
- forticlient_offline_ strgrace 
- Enable/disable grace period for offline registered clients. Valid values: enable,disable.
- forticlient_offline_ intgrace_ interval 
- Grace period for offline registered FortiClient (60 - 600 sec, default = 120).
- forticlient_reg_ strkey 
- FortiClient registration key.
- forticlient_reg_ strkey_ enforce 
- Enable/disable requiring or enforcing FortiClient registration keys. Valid values: enable,disable.
- forticlient_reg_ inttimeout 
- FortiClient registration license timeout (days, min = 1, max = 180, 0 means unlimited).
- forticlient_sys_ intupdate_ interval 
- Interval between two system update messages from FortiClient (30 - 1440 min, default = 720).
- forticlient_user_ stravatar 
- Enable/disable uploading FortiClient user avatars. Valid values: enable,disable.
- forticlient_warning_ intinterval 
- Period of time between FortiClient portal warnings (0 - 24 hours, default = 1).
- override str
- Override global EMS table for this VDOM. Valid values: enable,disable.
- vdomparam str
- Specifies the vdom to which the resource 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.
- downloadCustom StringLink 
- Customized URL for downloading FortiClient.
- downloadLocation String
- FortiClient download location (FortiGuard or custom). Valid values: fortiguard,custom.
- forticlientAvdb NumberUpdate Interval 
- Period of time between FortiClient AntiVirus database updates (0 - 24 hours, default = 8).
- forticlientDereg StringUnsupported Client 
- Enable/disable deregistering unsupported FortiClient endpoints. Valid values: enable,disable.
- forticlientDisconnect StringUnsupported Client 
- Enable/disable disconnecting of unsupported FortiClient endpoints. Valid values: enable,disable.
- forticlientEms NumberRest Api Call Timeout 
- FortiClient EMS call timeout in milliseconds (500 - 30000 milliseconds, default = 5000).
- forticlientKeepalive NumberInterval 
- Interval between two KeepAlive messages from FortiClient (20 - 300 sec, default = 60).
- forticlientOffline StringGrace 
- Enable/disable grace period for offline registered clients. Valid values: enable,disable.
- forticlientOffline NumberGrace Interval 
- Grace period for offline registered FortiClient (60 - 600 sec, default = 120).
- forticlientReg StringKey 
- FortiClient registration key.
- forticlientReg StringKey Enforce 
- Enable/disable requiring or enforcing FortiClient registration keys. Valid values: enable,disable.
- forticlientReg NumberTimeout 
- FortiClient registration license timeout (days, min = 1, max = 180, 0 means unlimited).
- forticlientSys NumberUpdate Interval 
- Interval between two system update messages from FortiClient (30 - 1440 min, default = 720).
- forticlientUser StringAvatar 
- Enable/disable uploading FortiClient user avatars. Valid values: enable,disable.
- forticlientWarning NumberInterval 
- Period of time between FortiClient portal warnings (0 - 24 hours, default = 1).
- override String
- Override global EMS table for this VDOM. Valid values: enable,disable.
- vdomparam String
- Specifies the vdom to which the resource 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.
Import
EndpointControl Settings can be imported using any of these accepted formats:
$ pulumi import fortios:endpointcontrol/settings:Settings labelname EndpointControlSettings
If you do not want to import arguments of block:
$ export “FORTIOS_IMPORT_TABLE”=“false”
$ pulumi import fortios:endpointcontrol/settings:Settings labelname EndpointControlSettings
$ unset “FORTIOS_IMPORT_TABLE”
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- fortios pulumiverse/pulumi-fortios
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the fortiosTerraform Provider.
