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
.
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
The Settings resource accepts the following input properties:
- Download
Custom stringLink - Customized URL for downloading FortiClient.
- Download
Location string - 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 stringUnsupported Client - Enable/disable deregistering unsupported FortiClient endpoints. Valid values:
enable
,disable
. - Forticlient
Disconnect stringUnsupported 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 stringGrace - 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 stringKey - FortiClient registration key.
- Forticlient
Reg stringKey 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 stringAvatar - 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 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 stringLink - Customized URL for downloading FortiClient.
- Download
Location string - 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 stringUnsupported Client - Enable/disable deregistering unsupported FortiClient endpoints. Valid values:
enable
,disable
. - Forticlient
Disconnect stringUnsupported 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 stringGrace - 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 stringKey - FortiClient registration key.
- Forticlient
Reg stringKey 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 stringAvatar - 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 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 StringLink - Customized URL for downloading FortiClient.
- download
Location String - FortiClient download location (FortiGuard or custom). Valid values:
fortiguard
,custom
. - forticlient
Avdb IntegerUpdate Interval - Period of time between FortiClient AntiVirus database updates (0 - 24 hours, default = 8).
- forticlient
Dereg StringUnsupported Client - Enable/disable deregistering unsupported FortiClient endpoints. Valid values:
enable
,disable
. - forticlient
Disconnect StringUnsupported Client - Enable/disable disconnecting of unsupported FortiClient endpoints. Valid values:
enable
,disable
. - forticlient
Ems IntegerRest Api Call Timeout - FortiClient EMS call timeout in milliseconds (500 - 30000 milliseconds, default = 5000).
- forticlient
Keepalive IntegerInterval - Interval between two KeepAlive messages from FortiClient (20 - 300 sec, default = 60).
- forticlient
Offline StringGrace - Enable/disable grace period for offline registered clients. Valid values:
enable
,disable
. - forticlient
Offline IntegerGrace Interval - Grace period for offline registered FortiClient (60 - 600 sec, default = 120).
- forticlient
Reg StringKey - FortiClient registration key.
- forticlient
Reg StringKey Enforce - Enable/disable requiring or enforcing FortiClient registration keys. Valid values:
enable
,disable
. - forticlient
Reg IntegerTimeout - FortiClient registration license timeout (days, min = 1, max = 180, 0 means unlimited).
- forticlient
Sys IntegerUpdate Interval - Interval between two system update messages from FortiClient (30 - 1440 min, default = 720).
- forticlient
User StringAvatar - Enable/disable uploading FortiClient user avatars. Valid values:
enable
,disable
. - forticlient
Warning 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.
- download
Custom stringLink - Customized URL for downloading FortiClient.
- download
Location string - FortiClient download location (FortiGuard or custom). Valid values:
fortiguard
,custom
. - forticlient
Avdb numberUpdate Interval - Period of time between FortiClient AntiVirus database updates (0 - 24 hours, default = 8).
- forticlient
Dereg stringUnsupported Client - Enable/disable deregistering unsupported FortiClient endpoints. Valid values:
enable
,disable
. - forticlient
Disconnect stringUnsupported Client - Enable/disable disconnecting of unsupported FortiClient endpoints. Valid values:
enable
,disable
. - forticlient
Ems numberRest Api Call Timeout - FortiClient EMS call timeout in milliseconds (500 - 30000 milliseconds, default = 5000).
- forticlient
Keepalive numberInterval - Interval between two KeepAlive messages from FortiClient (20 - 300 sec, default = 60).
- forticlient
Offline stringGrace - Enable/disable grace period for offline registered clients. Valid values:
enable
,disable
. - forticlient
Offline numberGrace Interval - Grace period for offline registered FortiClient (60 - 600 sec, default = 120).
- forticlient
Reg stringKey - FortiClient registration key.
- forticlient
Reg stringKey Enforce - Enable/disable requiring or enforcing FortiClient registration keys. Valid values:
enable
,disable
. - forticlient
Reg numberTimeout - FortiClient registration license timeout (days, min = 1, max = 180, 0 means unlimited).
- forticlient
Sys numberUpdate Interval - Interval between two system update messages from FortiClient (30 - 1440 min, default = 720).
- forticlient
User stringAvatar - Enable/disable uploading FortiClient user avatars. Valid values:
enable
,disable
. - forticlient
Warning 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.
- download
Custom StringLink - Customized URL for downloading FortiClient.
- download
Location String - FortiClient download location (FortiGuard or custom). Valid values:
fortiguard
,custom
. - forticlient
Avdb NumberUpdate Interval - Period of time between FortiClient AntiVirus database updates (0 - 24 hours, default = 8).
- forticlient
Dereg StringUnsupported Client - Enable/disable deregistering unsupported FortiClient endpoints. Valid values:
enable
,disable
. - forticlient
Disconnect StringUnsupported Client - Enable/disable disconnecting of unsupported FortiClient endpoints. Valid values:
enable
,disable
. - forticlient
Ems NumberRest Api Call Timeout - FortiClient EMS call timeout in milliseconds (500 - 30000 milliseconds, default = 5000).
- forticlient
Keepalive NumberInterval - Interval between two KeepAlive messages from FortiClient (20 - 300 sec, default = 60).
- forticlient
Offline StringGrace - Enable/disable grace period for offline registered clients. Valid values:
enable
,disable
. - forticlient
Offline NumberGrace Interval - Grace period for offline registered FortiClient (60 - 600 sec, default = 120).
- forticlient
Reg StringKey - FortiClient registration key.
- forticlient
Reg StringKey Enforce - Enable/disable requiring or enforcing FortiClient registration keys. Valid values:
enable
,disable
. - forticlient
Reg NumberTimeout - FortiClient registration license timeout (days, min = 1, max = 180, 0 means unlimited).
- forticlient
Sys NumberUpdate Interval - Interval between two system update messages from FortiClient (30 - 1440 min, default = 720).
- forticlient
User StringAvatar - Enable/disable uploading FortiClient user avatars. Valid values:
enable
,disable
. - forticlient
Warning 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) -> Settings
func 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)
Resource lookup is not supported in YAML
- 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.
- Download
Custom stringLink - Customized URL for downloading FortiClient.
- Download
Location string - 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 stringUnsupported Client - Enable/disable deregistering unsupported FortiClient endpoints. Valid values:
enable
,disable
. - Forticlient
Disconnect stringUnsupported 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 stringGrace - 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 stringKey - FortiClient registration key.
- Forticlient
Reg stringKey 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 stringAvatar - 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 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 stringLink - Customized URL for downloading FortiClient.
- Download
Location string - 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 stringUnsupported Client - Enable/disable deregistering unsupported FortiClient endpoints. Valid values:
enable
,disable
. - Forticlient
Disconnect stringUnsupported 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 stringGrace - 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 stringKey - FortiClient registration key.
- Forticlient
Reg stringKey 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 stringAvatar - 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 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 StringLink - Customized URL for downloading FortiClient.
- download
Location String - FortiClient download location (FortiGuard or custom). Valid values:
fortiguard
,custom
. - forticlient
Avdb IntegerUpdate Interval - Period of time between FortiClient AntiVirus database updates (0 - 24 hours, default = 8).
- forticlient
Dereg StringUnsupported Client - Enable/disable deregistering unsupported FortiClient endpoints. Valid values:
enable
,disable
. - forticlient
Disconnect StringUnsupported Client - Enable/disable disconnecting of unsupported FortiClient endpoints. Valid values:
enable
,disable
. - forticlient
Ems IntegerRest Api Call Timeout - FortiClient EMS call timeout in milliseconds (500 - 30000 milliseconds, default = 5000).
- forticlient
Keepalive IntegerInterval - Interval between two KeepAlive messages from FortiClient (20 - 300 sec, default = 60).
- forticlient
Offline StringGrace - Enable/disable grace period for offline registered clients. Valid values:
enable
,disable
. - forticlient
Offline IntegerGrace Interval - Grace period for offline registered FortiClient (60 - 600 sec, default = 120).
- forticlient
Reg StringKey - FortiClient registration key.
- forticlient
Reg StringKey Enforce - Enable/disable requiring or enforcing FortiClient registration keys. Valid values:
enable
,disable
. - forticlient
Reg IntegerTimeout - FortiClient registration license timeout (days, min = 1, max = 180, 0 means unlimited).
- forticlient
Sys IntegerUpdate Interval - Interval between two system update messages from FortiClient (30 - 1440 min, default = 720).
- forticlient
User StringAvatar - Enable/disable uploading FortiClient user avatars. Valid values:
enable
,disable
. - forticlient
Warning 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.
- download
Custom stringLink - Customized URL for downloading FortiClient.
- download
Location string - FortiClient download location (FortiGuard or custom). Valid values:
fortiguard
,custom
. - forticlient
Avdb numberUpdate Interval - Period of time between FortiClient AntiVirus database updates (0 - 24 hours, default = 8).
- forticlient
Dereg stringUnsupported Client - Enable/disable deregistering unsupported FortiClient endpoints. Valid values:
enable
,disable
. - forticlient
Disconnect stringUnsupported Client - Enable/disable disconnecting of unsupported FortiClient endpoints. Valid values:
enable
,disable
. - forticlient
Ems numberRest Api Call Timeout - FortiClient EMS call timeout in milliseconds (500 - 30000 milliseconds, default = 5000).
- forticlient
Keepalive numberInterval - Interval between two KeepAlive messages from FortiClient (20 - 300 sec, default = 60).
- forticlient
Offline stringGrace - Enable/disable grace period for offline registered clients. Valid values:
enable
,disable
. - forticlient
Offline numberGrace Interval - Grace period for offline registered FortiClient (60 - 600 sec, default = 120).
- forticlient
Reg stringKey - FortiClient registration key.
- forticlient
Reg stringKey Enforce - Enable/disable requiring or enforcing FortiClient registration keys. Valid values:
enable
,disable
. - forticlient
Reg numberTimeout - FortiClient registration license timeout (days, min = 1, max = 180, 0 means unlimited).
- forticlient
Sys numberUpdate Interval - Interval between two system update messages from FortiClient (30 - 1440 min, default = 720).
- forticlient
User stringAvatar - Enable/disable uploading FortiClient user avatars. Valid values:
enable
,disable
. - forticlient
Warning 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.
- download
Custom StringLink - Customized URL for downloading FortiClient.
- download
Location String - FortiClient download location (FortiGuard or custom). Valid values:
fortiguard
,custom
. - forticlient
Avdb NumberUpdate Interval - Period of time between FortiClient AntiVirus database updates (0 - 24 hours, default = 8).
- forticlient
Dereg StringUnsupported Client - Enable/disable deregistering unsupported FortiClient endpoints. Valid values:
enable
,disable
. - forticlient
Disconnect StringUnsupported Client - Enable/disable disconnecting of unsupported FortiClient endpoints. Valid values:
enable
,disable
. - forticlient
Ems NumberRest Api Call Timeout - FortiClient EMS call timeout in milliseconds (500 - 30000 milliseconds, default = 5000).
- forticlient
Keepalive NumberInterval - Interval between two KeepAlive messages from FortiClient (20 - 300 sec, default = 60).
- forticlient
Offline StringGrace - Enable/disable grace period for offline registered clients. Valid values:
enable
,disable
. - forticlient
Offline NumberGrace Interval - Grace period for offline registered FortiClient (60 - 600 sec, default = 120).
- forticlient
Reg StringKey - FortiClient registration key.
- forticlient
Reg StringKey Enforce - Enable/disable requiring or enforcing FortiClient registration keys. Valid values:
enable
,disable
. - forticlient
Reg NumberTimeout - FortiClient registration license timeout (days, min = 1, max = 180, 0 means unlimited).
- forticlient
Sys NumberUpdate Interval - Interval between two system update messages from FortiClient (30 - 1440 min, default = 720).
- forticlient
User StringAvatar - Enable/disable uploading FortiClient user avatars. Valid values:
enable
,disable
. - forticlient
Warning 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
fortios
Terraform Provider.