Viewing docs for checkpoint 3.0.0
published on Monday, Mar 30, 2026 by checkpointsw
published on Monday, Mar 30, 2026 by checkpointsw
Viewing docs for checkpoint 3.0.0
published on Monday, Mar 30, 2026 by checkpointsw
published on Monday, Mar 30, 2026 by checkpointsw
This resource allows you to execute Check Point Simple Gateway.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const simpleGatewayManagementSimpleGateway = new checkpoint.ManagementSimpleGateway("simple_gateway", {
name: "mygateway",
ipv4Address: "1.2.3.4",
version: "R81",
sendLogsToServers: ["logserver"],
});
const simpleGateway = checkpoint.getManagementSimpleGateway({
name: test.name,
});
import pulumi
import pulumi_checkpoint as checkpoint
simple_gateway_management_simple_gateway = checkpoint.ManagementSimpleGateway("simple_gateway",
name="mygateway",
ipv4_address="1.2.3.4",
version="R81",
send_logs_to_servers=["logserver"])
simple_gateway = checkpoint.get_management_simple_gateway(name=test["name"])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/checkpoint/v3/checkpoint"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := checkpoint.NewManagementSimpleGateway(ctx, "simple_gateway", &checkpoint.ManagementSimpleGatewayArgs{
Name: pulumi.String("mygateway"),
Ipv4Address: pulumi.String("1.2.3.4"),
Version: pulumi.String("R81"),
SendLogsToServers: pulumi.StringArray{
pulumi.String("logserver"),
},
})
if err != nil {
return err
}
_, err = checkpoint.LookupManagementSimpleGateway(ctx, &checkpoint.LookupManagementSimpleGatewayArgs{
Name: pulumi.StringRef(test.Name),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Checkpoint = Pulumi.Checkpoint;
return await Deployment.RunAsync(() =>
{
var simpleGatewayManagementSimpleGateway = new Checkpoint.ManagementSimpleGateway("simple_gateway", new()
{
Name = "mygateway",
Ipv4Address = "1.2.3.4",
Version = "R81",
SendLogsToServers = new[]
{
"logserver",
},
});
var simpleGateway = Checkpoint.GetManagementSimpleGateway.Invoke(new()
{
Name = test.Name,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementSimpleGateway;
import com.pulumi.checkpoint.ManagementSimpleGatewayArgs;
import com.pulumi.checkpoint.CheckpointFunctions;
import com.pulumi.checkpoint.inputs.GetManagementSimpleGatewayArgs;
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 simpleGatewayManagementSimpleGateway = new ManagementSimpleGateway("simpleGatewayManagementSimpleGateway", ManagementSimpleGatewayArgs.builder()
.name("mygateway")
.ipv4Address("1.2.3.4")
.version("R81")
.sendLogsToServers("logserver")
.build());
final var simpleGateway = CheckpointFunctions.getManagementSimpleGateway(GetManagementSimpleGatewayArgs.builder()
.name(test.name())
.build());
}
}
resources:
simpleGatewayManagementSimpleGateway:
type: checkpoint:ManagementSimpleGateway
name: simple_gateway
properties:
name: mygateway
ipv4Address: 1.2.3.4
version: R81
sendLogsToServers:
- logserver
variables:
simpleGateway:
fn::invoke:
function: checkpoint:getManagementSimpleGateway
arguments:
name: ${test.name}
Using getManagementSimpleGateway
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getManagementSimpleGateway(args: GetManagementSimpleGatewayArgs, opts?: InvokeOptions): Promise<GetManagementSimpleGatewayResult>
function getManagementSimpleGatewayOutput(args: GetManagementSimpleGatewayOutputArgs, opts?: InvokeOptions): Output<GetManagementSimpleGatewayResult>def get_management_simple_gateway(id: Optional[str] = None,
ips_settings: Optional[GetManagementSimpleGatewayIpsSettings] = None,
name: Optional[str] = None,
uid: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetManagementSimpleGatewayResult
def get_management_simple_gateway_output(id: pulumi.Input[Optional[str]] = None,
ips_settings: pulumi.Input[Optional[GetManagementSimpleGatewayIpsSettingsArgs]] = None,
name: pulumi.Input[Optional[str]] = None,
uid: pulumi.Input[Optional[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetManagementSimpleGatewayResult]func LookupManagementSimpleGateway(ctx *Context, args *LookupManagementSimpleGatewayArgs, opts ...InvokeOption) (*LookupManagementSimpleGatewayResult, error)
func LookupManagementSimpleGatewayOutput(ctx *Context, args *LookupManagementSimpleGatewayOutputArgs, opts ...InvokeOption) LookupManagementSimpleGatewayResultOutput> Note: This function is named LookupManagementSimpleGateway in the Go SDK.
public static class GetManagementSimpleGateway
{
public static Task<GetManagementSimpleGatewayResult> InvokeAsync(GetManagementSimpleGatewayArgs args, InvokeOptions? opts = null)
public static Output<GetManagementSimpleGatewayResult> Invoke(GetManagementSimpleGatewayInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetManagementSimpleGatewayResult> getManagementSimpleGateway(GetManagementSimpleGatewayArgs args, InvokeOptions options)
public static Output<GetManagementSimpleGatewayResult> getManagementSimpleGateway(GetManagementSimpleGatewayArgs args, InvokeOptions options)
fn::invoke:
function: checkpoint:index/getManagementSimpleGateway:getManagementSimpleGateway
arguments:
# arguments dictionaryThe following arguments are supported:
- Id string
- Ips
Settings GetManagement Simple Gateway Ips Settings - Gateway IPS settings.ips_settings blocks are documented below.
- Name string
- Object name.
- Uid string
- Object unique identifier.
- Id string
- Ips
Settings GetManagement Simple Gateway Ips Settings - Gateway IPS settings.ips_settings blocks are documented below.
- Name string
- Object name.
- Uid string
- Object unique identifier.
- id String
- ips
Settings GetManagement Simple Gateway Ips Settings - Gateway IPS settings.ips_settings blocks are documented below.
- name String
- Object name.
- uid String
- Object unique identifier.
- id string
- ips
Settings GetManagement Simple Gateway Ips Settings - Gateway IPS settings.ips_settings blocks are documented below.
- name string
- Object name.
- uid string
- Object unique identifier.
- id str
- ips_
settings GetManagement Simple Gateway Ips Settings - Gateway IPS settings.ips_settings blocks are documented below.
- name str
- Object name.
- uid str
- Object unique identifier.
- id String
- ips
Settings Property Map - Gateway IPS settings.ips_settings blocks are documented below.
- name String
- Object name.
- uid String
- Object unique identifier.
getManagementSimpleGateway Result
The following output properties are available:
- Advanced
Settings List<GetManagement Simple Gateway Advanced Setting> - Anti
Bot bool - Anti
Virus bool - Application
Control bool - Application
Control List<GetAnd Url Filtering Settings Management Simple Gateway Application Control And Url Filtering Setting> - Color string
- Comments string
- Content
Awareness bool - Dynamic
Ip bool - Enable
Https boolInspection - Fetch
Policies List<string> - Firewall bool
- Firewall
Settings List<GetManagement Simple Gateway Firewall Setting> - Hardware string
- Hit
Count bool - Https
Inspections List<GetManagement Simple Gateway Https Inspection> - Icap
Server bool - Id string
- Identity
Awareness bool - Identity
Awareness List<GetSettings Management Simple Gateway Identity Awareness Setting> - Interfaces
List<Get
Management Simple Gateway Interface> - Ips bool
- Ips
Update stringPolicy - Ipv4Address string
- Ipv6Address string
- Logs
Settings List<GetManagement Simple Gateway Logs Setting> - Nat
Hide boolInternal Interfaces - Nat
Settings List<GetManagement Simple Gateway Nat Setting> - One
Time stringPassword - Os
Name string - Platform
Portal List<GetSettings Management Simple Gateway Platform Portal Setting> - Proxy
Settings List<GetManagement Simple Gateway Proxy Setting> - Qos bool
- Save
Logs boolLocally - Send
Alerts List<string>To Servers - Send
Logs List<string>To Backup Servers - Send
Logs List<string>To Servers - Sic
Name string - Sic
State string - List<string>
- Threat
Emulation bool - Threat
Extraction bool - Url
Filtering bool - Usercheck
Portal List<GetSettings Management Simple Gateway Usercheck Portal Setting> - Version string
- Vpn bool
- Vpn
Settings List<GetManagement Simple Gateway Vpn Setting> - Zero
Phishing bool - Zero
Phishing stringFqdn - Ips
Settings GetManagement Simple Gateway Ips Settings - Name string
- Uid string
- Advanced
Settings []GetManagement Simple Gateway Advanced Setting - Anti
Bot bool - Anti
Virus bool - Application
Control bool - Application
Control []GetAnd Url Filtering Settings Management Simple Gateway Application Control And Url Filtering Setting - Color string
- Comments string
- Content
Awareness bool - Dynamic
Ip bool - Enable
Https boolInspection - Fetch
Policies []string - Firewall bool
- Firewall
Settings []GetManagement Simple Gateway Firewall Setting - Hardware string
- Hit
Count bool - Https
Inspections []GetManagement Simple Gateway Https Inspection - Icap
Server bool - Id string
- Identity
Awareness bool - Identity
Awareness []GetSettings Management Simple Gateway Identity Awareness Setting - Interfaces
[]Get
Management Simple Gateway Interface - Ips bool
- Ips
Update stringPolicy - Ipv4Address string
- Ipv6Address string
- Logs
Settings []GetManagement Simple Gateway Logs Setting - Nat
Hide boolInternal Interfaces - Nat
Settings []GetManagement Simple Gateway Nat Setting - One
Time stringPassword - Os
Name string - Platform
Portal []GetSettings Management Simple Gateway Platform Portal Setting - Proxy
Settings []GetManagement Simple Gateway Proxy Setting - Qos bool
- Save
Logs boolLocally - Send
Alerts []stringTo Servers - Send
Logs []stringTo Backup Servers - Send
Logs []stringTo Servers - Sic
Name string - Sic
State string - []string
- Threat
Emulation bool - Threat
Extraction bool - Url
Filtering bool - Usercheck
Portal []GetSettings Management Simple Gateway Usercheck Portal Setting - Version string
- Vpn bool
- Vpn
Settings []GetManagement Simple Gateway Vpn Setting - Zero
Phishing bool - Zero
Phishing stringFqdn - Ips
Settings GetManagement Simple Gateway Ips Settings - Name string
- Uid string
- advanced
Settings List<GetManagement Simple Gateway Advanced Setting> - anti
Bot Boolean - anti
Virus Boolean - application
Control Boolean - application
Control List<GetAnd Url Filtering Settings Management Simple Gateway Application Control And Url Filtering Setting> - color String
- comments String
- content
Awareness Boolean - dynamic
Ip Boolean - enable
Https BooleanInspection - fetch
Policies List<String> - firewall Boolean
- firewall
Settings List<GetManagement Simple Gateway Firewall Setting> - hardware String
- hit
Count Boolean - https
Inspections List<GetManagement Simple Gateway Https Inspection> - icap
Server Boolean - id String
- identity
Awareness Boolean - identity
Awareness List<GetSettings Management Simple Gateway Identity Awareness Setting> - interfaces
List<Get
Management Simple Gateway Interface> - ips Boolean
- ips
Update StringPolicy - ipv4Address String
- ipv6Address String
- logs
Settings List<GetManagement Simple Gateway Logs Setting> - nat
Hide BooleanInternal Interfaces - nat
Settings List<GetManagement Simple Gateway Nat Setting> - one
Time StringPassword - os
Name String - platform
Portal List<GetSettings Management Simple Gateway Platform Portal Setting> - proxy
Settings List<GetManagement Simple Gateway Proxy Setting> - qos Boolean
- save
Logs BooleanLocally - send
Alerts List<String>To Servers - send
Logs List<String>To Backup Servers - send
Logs List<String>To Servers - sic
Name String - sic
State String - List<String>
- threat
Emulation Boolean - threat
Extraction Boolean - url
Filtering Boolean - usercheck
Portal List<GetSettings Management Simple Gateway Usercheck Portal Setting> - version String
- vpn Boolean
- vpn
Settings List<GetManagement Simple Gateway Vpn Setting> - zero
Phishing Boolean - zero
Phishing StringFqdn - ips
Settings GetManagement Simple Gateway Ips Settings - name String
- uid String
- advanced
Settings GetManagement Simple Gateway Advanced Setting[] - anti
Bot boolean - anti
Virus boolean - application
Control boolean - application
Control GetAnd Url Filtering Settings Management Simple Gateway Application Control And Url Filtering Setting[] - color string
- comments string
- content
Awareness boolean - dynamic
Ip boolean - enable
Https booleanInspection - fetch
Policies string[] - firewall boolean
- firewall
Settings GetManagement Simple Gateway Firewall Setting[] - hardware string
- hit
Count boolean - https
Inspections GetManagement Simple Gateway Https Inspection[] - icap
Server boolean - id string
- identity
Awareness boolean - identity
Awareness GetSettings Management Simple Gateway Identity Awareness Setting[] - interfaces
Get
Management Simple Gateway Interface[] - ips boolean
- ips
Update stringPolicy - ipv4Address string
- ipv6Address string
- logs
Settings GetManagement Simple Gateway Logs Setting[] - nat
Hide booleanInternal Interfaces - nat
Settings GetManagement Simple Gateway Nat Setting[] - one
Time stringPassword - os
Name string - platform
Portal GetSettings Management Simple Gateway Platform Portal Setting[] - proxy
Settings GetManagement Simple Gateway Proxy Setting[] - qos boolean
- save
Logs booleanLocally - send
Alerts string[]To Servers - send
Logs string[]To Backup Servers - send
Logs string[]To Servers - sic
Name string - sic
State string - string[]
- threat
Emulation boolean - threat
Extraction boolean - url
Filtering boolean - usercheck
Portal GetSettings Management Simple Gateway Usercheck Portal Setting[] - version string
- vpn boolean
- vpn
Settings GetManagement Simple Gateway Vpn Setting[] - zero
Phishing boolean - zero
Phishing stringFqdn - ips
Settings GetManagement Simple Gateway Ips Settings - name string
- uid string
- advanced_
settings Sequence[GetManagement Simple Gateway Advanced Setting] - anti_
bot bool - anti_
virus bool - application_
control bool - application_
control_ Sequence[Getand_ url_ filtering_ settings Management Simple Gateway Application Control And Url Filtering Setting] - color str
- comments str
- content_
awareness bool - dynamic_
ip bool - enable_
https_ boolinspection - fetch_
policies Sequence[str] - firewall bool
- firewall_
settings Sequence[GetManagement Simple Gateway Firewall Setting] - hardware str
- hit_
count bool - https_
inspections Sequence[GetManagement Simple Gateway Https Inspection] - icap_
server bool - id str
- identity_
awareness bool - identity_
awareness_ Sequence[Getsettings Management Simple Gateway Identity Awareness Setting] - interfaces
Sequence[Get
Management Simple Gateway Interface] - ips bool
- ips_
update_ strpolicy - ipv4_
address str - ipv6_
address str - logs_
settings Sequence[GetManagement Simple Gateway Logs Setting] - nat_
hide_ boolinternal_ interfaces - nat_
settings Sequence[GetManagement Simple Gateway Nat Setting] - one_
time_ strpassword - os_
name str - platform_
portal_ Sequence[Getsettings Management Simple Gateway Platform Portal Setting] - proxy_
settings Sequence[GetManagement Simple Gateway Proxy Setting] - qos bool
- save_
logs_ boollocally - send_
alerts_ Sequence[str]to_ servers - send_
logs_ Sequence[str]to_ backup_ servers - send_
logs_ Sequence[str]to_ servers - sic_
name str - sic_
state str - Sequence[str]
- threat_
emulation bool - threat_
extraction bool - url_
filtering bool - usercheck_
portal_ Sequence[Getsettings Management Simple Gateway Usercheck Portal Setting] - version str
- vpn bool
- vpn_
settings Sequence[GetManagement Simple Gateway Vpn Setting] - zero_
phishing bool - zero_
phishing_ strfqdn - ips_
settings GetManagement Simple Gateway Ips Settings - name str
- uid str
- advanced
Settings List<Property Map> - anti
Bot Boolean - anti
Virus Boolean - application
Control Boolean - application
Control List<Property Map>And Url Filtering Settings - color String
- comments String
- content
Awareness Boolean - dynamic
Ip Boolean - enable
Https BooleanInspection - fetch
Policies List<String> - firewall Boolean
- firewall
Settings List<Property Map> - hardware String
- hit
Count Boolean - https
Inspections List<Property Map> - icap
Server Boolean - id String
- identity
Awareness Boolean - identity
Awareness List<Property Map>Settings - interfaces List<Property Map>
- ips Boolean
- ips
Update StringPolicy - ipv4Address String
- ipv6Address String
- logs
Settings List<Property Map> - nat
Hide BooleanInternal Interfaces - nat
Settings List<Property Map> - one
Time StringPassword - os
Name String - platform
Portal List<Property Map>Settings - proxy
Settings List<Property Map> - qos Boolean
- save
Logs BooleanLocally - send
Alerts List<String>To Servers - send
Logs List<String>To Backup Servers - send
Logs List<String>To Servers - sic
Name String - sic
State String - List<String>
- threat
Emulation Boolean - threat
Extraction Boolean - url
Filtering Boolean - usercheck
Portal List<Property Map>Settings - version String
- vpn Boolean
- vpn
Settings List<Property Map> - zero
Phishing Boolean - zero
Phishing StringFqdn - ips
Settings Property Map - name String
- uid String
Supporting Types
GetManagementSimpleGatewayAdvancedSetting
- Connection
Persistence string - Handling established connections when installing a new policy.
- Sams
List<Get
Management Simple Gateway Advanced Setting Sam> - SAM.sam blocks are documented below.
- Connection
Persistence string - Handling established connections when installing a new policy.
- Sams
[]Get
Management Simple Gateway Advanced Setting Sam - SAM.sam blocks are documented below.
- connection
Persistence String - Handling established connections when installing a new policy.
- sams
List<Get
Management Simple Gateway Advanced Setting Sam> - SAM.sam blocks are documented below.
- connection
Persistence string - Handling established connections when installing a new policy.
- sams
Get
Management Simple Gateway Advanced Setting Sam[] - SAM.sam blocks are documented below.
- connection_
persistence str - Handling established connections when installing a new policy.
- sams
Sequence[Get
Management Simple Gateway Advanced Setting Sam] - SAM.sam blocks are documented below.
- connection
Persistence String - Handling established connections when installing a new policy.
- sams List<Property Map>
- SAM.sam blocks are documented below.
GetManagementSimpleGatewayAdvancedSettingSam
- Forward
To boolOther Sam Servers - Forward SAM clients' requests to other SAM servers.
- Purge
Sam List<GetFiles Management Simple Gateway Advanced Setting Sam Purge Sam File> - Purge SAM File.purge_sam_file blocks are documented below.
- Use
Early List<GetVersions Management Simple Gateway Advanced Setting Sam Use Early Version> - Use early versions compatibility mode.use_early_versions blocks are documented below.
- Forward
To boolOther Sam Servers - Forward SAM clients' requests to other SAM servers.
- Purge
Sam []GetFiles Management Simple Gateway Advanced Setting Sam Purge Sam File - Purge SAM File.purge_sam_file blocks are documented below.
- Use
Early []GetVersions Management Simple Gateway Advanced Setting Sam Use Early Version - Use early versions compatibility mode.use_early_versions blocks are documented below.
- forward
To BooleanOther Sam Servers - Forward SAM clients' requests to other SAM servers.
- purge
Sam List<GetFiles Management Simple Gateway Advanced Setting Sam Purge Sam File> - Purge SAM File.purge_sam_file blocks are documented below.
- use
Early List<GetVersions Management Simple Gateway Advanced Setting Sam Use Early Version> - Use early versions compatibility mode.use_early_versions blocks are documented below.
- forward
To booleanOther Sam Servers - Forward SAM clients' requests to other SAM servers.
- purge
Sam GetFiles Management Simple Gateway Advanced Setting Sam Purge Sam File[] - Purge SAM File.purge_sam_file blocks are documented below.
- use
Early GetVersions Management Simple Gateway Advanced Setting Sam Use Early Version[] - Use early versions compatibility mode.use_early_versions blocks are documented below.
- forward_
to_ boolother_ sam_ servers - Forward SAM clients' requests to other SAM servers.
- purge_
sam_ Sequence[Getfiles Management Simple Gateway Advanced Setting Sam Purge Sam File] - Purge SAM File.purge_sam_file blocks are documented below.
- use_
early_ Sequence[Getversions Management Simple Gateway Advanced Setting Sam Use Early Version] - Use early versions compatibility mode.use_early_versions blocks are documented below.
- forward
To BooleanOther Sam Servers - Forward SAM clients' requests to other SAM servers.
- purge
Sam List<Property Map>Files - Purge SAM File.purge_sam_file blocks are documented below.
- use
Early List<Property Map>Versions - Use early versions compatibility mode.use_early_versions blocks are documented below.
GetManagementSimpleGatewayAdvancedSettingSamPurgeSamFile
- Enabled bool
- Purge SAM File.
- Purge
When doubleSize Reaches To - Purge SAM File When it Reaches to.
- Enabled bool
- Purge SAM File.
- Purge
When float64Size Reaches To - Purge SAM File When it Reaches to.
- enabled Boolean
- Purge SAM File.
- purge
When DoubleSize Reaches To - Purge SAM File When it Reaches to.
- enabled boolean
- Purge SAM File.
- purge
When numberSize Reaches To - Purge SAM File When it Reaches to.
- enabled bool
- Purge SAM File.
- purge_
when_ floatsize_ reaches_ to - Purge SAM File When it Reaches to.
- enabled Boolean
- Purge SAM File.
- purge
When NumberSize Reaches To - Purge SAM File When it Reaches to.
GetManagementSimpleGatewayAdvancedSettingSamUseEarlyVersion
- Compatibility
Mode string - Early versions compatibility mode.
- Enabled bool
- Use early versions compatibility mode.
- Compatibility
Mode string - Early versions compatibility mode.
- Enabled bool
- Use early versions compatibility mode.
- compatibility
Mode String - Early versions compatibility mode.
- enabled Boolean
- Use early versions compatibility mode.
- compatibility
Mode string - Early versions compatibility mode.
- enabled boolean
- Use early versions compatibility mode.
- compatibility_
mode str - Early versions compatibility mode.
- enabled bool
- Use early versions compatibility mode.
- compatibility
Mode String - Early versions compatibility mode.
- enabled Boolean
- Use early versions compatibility mode.
GetManagementSimpleGatewayApplicationControlAndUrlFilteringSetting
- Global
Settings stringMode - Whether to override global settings or not.
- Override
Global List<GetSettings Management Simple Gateway Application Control And Url Filtering Setting Override Global Setting> - override global settings object.override_global_settings blocks are documented below.
- Global
Settings stringMode - Whether to override global settings or not.
- Override
Global []GetSettings Management Simple Gateway Application Control And Url Filtering Setting Override Global Setting - override global settings object.override_global_settings blocks are documented below.
- global
Settings StringMode - Whether to override global settings or not.
- override
Global List<GetSettings Management Simple Gateway Application Control And Url Filtering Setting Override Global Setting> - override global settings object.override_global_settings blocks are documented below.
- global
Settings stringMode - Whether to override global settings or not.
- override
Global GetSettings Management Simple Gateway Application Control And Url Filtering Setting Override Global Setting[] - override global settings object.override_global_settings blocks are documented below.
- global_
settings_ strmode - Whether to override global settings or not.
- override_
global_ Sequence[Getsettings Management Simple Gateway Application Control And Url Filtering Setting Override Global Setting] - override global settings object.override_global_settings blocks are documented below.
- global
Settings StringMode - Whether to override global settings or not.
- override
Global List<Property Map>Settings - override global settings object.override_global_settings blocks are documented below.
GetManagementSimpleGatewayApplicationControlAndUrlFilteringSettingOverrideGlobalSetting
- Fail
Mode string - Fail mode - allow or block all requests.
- Website
Categorizations List<GetManagement Simple Gateway Application Control And Url Filtering Setting Override Global Setting Website Categorization> - Website categorization object.website_categorization blocks are documented below.
- Fail
Mode string - Fail mode - allow or block all requests.
- Website
Categorizations []GetManagement Simple Gateway Application Control And Url Filtering Setting Override Global Setting Website Categorization - Website categorization object.website_categorization blocks are documented below.
- fail
Mode String - Fail mode - allow or block all requests.
- website
Categorizations List<GetManagement Simple Gateway Application Control And Url Filtering Setting Override Global Setting Website Categorization> - Website categorization object.website_categorization blocks are documented below.
- fail
Mode string - Fail mode - allow or block all requests.
- website
Categorizations GetManagement Simple Gateway Application Control And Url Filtering Setting Override Global Setting Website Categorization[] - Website categorization object.website_categorization blocks are documented below.
- fail_
mode str - Fail mode - allow or block all requests.
- website_
categorizations Sequence[GetManagement Simple Gateway Application Control And Url Filtering Setting Override Global Setting Website Categorization] - Website categorization object.website_categorization blocks are documented below.
- fail
Mode String - Fail mode - allow or block all requests.
- website
Categorizations List<Property Map> - Website categorization object.website_categorization blocks are documented below.
GetManagementSimpleGatewayApplicationControlAndUrlFilteringSettingOverrideGlobalSettingWebsiteCategorization
- Custom
Modes List<GetManagement Simple Gateway Application Control And Url Filtering Setting Override Global Setting Website Categorization Custom Mode> - Custom mode object.custom_mode blocks are documented below.
- Mode string
- Website categorization mode.
- Custom
Modes []GetManagement Simple Gateway Application Control And Url Filtering Setting Override Global Setting Website Categorization Custom Mode - Custom mode object.custom_mode blocks are documented below.
- Mode string
- Website categorization mode.
- custom
Modes List<GetManagement Simple Gateway Application Control And Url Filtering Setting Override Global Setting Website Categorization Custom Mode> - Custom mode object.custom_mode blocks are documented below.
- mode String
- Website categorization mode.
- custom
Modes GetManagement Simple Gateway Application Control And Url Filtering Setting Override Global Setting Website Categorization Custom Mode[] - Custom mode object.custom_mode blocks are documented below.
- mode string
- Website categorization mode.
- custom_
modes Sequence[GetManagement Simple Gateway Application Control And Url Filtering Setting Override Global Setting Website Categorization Custom Mode] - Custom mode object.custom_mode blocks are documented below.
- mode str
- Website categorization mode.
- custom
Modes List<Property Map> - Custom mode object.custom_mode blocks are documented below.
- mode String
- Website categorization mode.
GetManagementSimpleGatewayApplicationControlAndUrlFilteringSettingOverrideGlobalSettingWebsiteCategorizationCustomMode
- string
- Social networking widgets mode.
- Url
Filtering string - URL filtering mode.
- string
- Social networking widgets mode.
- Url
Filtering string - URL filtering mode.
- String
- Social networking widgets mode.
- url
Filtering String - URL filtering mode.
- string
- Social networking widgets mode.
- url
Filtering string - URL filtering mode.
- str
- Social networking widgets mode.
- url_
filtering str - URL filtering mode.
- String
- Social networking widgets mode.
- url
Filtering String - URL filtering mode.
GetManagementSimpleGatewayFirewallSetting
- Auto
Calculate boolConnections Hash Table Size And Memory Pool - N/A
- Auto
Maximum boolLimit For Concurrent Connections - N/A
- Connections
Hash doubleSize - N/A
- Maximum
Limit doubleFor Concurrent Connections - N/A
- Maximum
Memory doublePool Size - N/A
- Memory
Pool doubleSize - N/A
- Auto
Calculate boolConnections Hash Table Size And Memory Pool - N/A
- Auto
Maximum boolLimit For Concurrent Connections - N/A
- Connections
Hash float64Size - N/A
- Maximum
Limit float64For Concurrent Connections - N/A
- Maximum
Memory float64Pool Size - N/A
- Memory
Pool float64Size - N/A
- auto
Calculate BooleanConnections Hash Table Size And Memory Pool - N/A
- auto
Maximum BooleanLimit For Concurrent Connections - N/A
- connections
Hash DoubleSize - N/A
- maximum
Limit DoubleFor Concurrent Connections - N/A
- maximum
Memory DoublePool Size - N/A
- memory
Pool DoubleSize - N/A
- auto
Calculate booleanConnections Hash Table Size And Memory Pool - N/A
- auto
Maximum booleanLimit For Concurrent Connections - N/A
- connections
Hash numberSize - N/A
- maximum
Limit numberFor Concurrent Connections - N/A
- maximum
Memory numberPool Size - N/A
- memory
Pool numberSize - N/A
- auto_
calculate_ boolconnections_ hash_ table_ size_ and_ memory_ pool - N/A
- auto_
maximum_ boollimit_ for_ concurrent_ connections - N/A
- connections_
hash_ floatsize - N/A
- maximum_
limit_ floatfor_ concurrent_ connections - N/A
- maximum_
memory_ floatpool_ size - N/A
- memory_
pool_ floatsize - N/A
- auto
Calculate BooleanConnections Hash Table Size And Memory Pool - N/A
- auto
Maximum BooleanLimit For Concurrent Connections - N/A
- connections
Hash NumberSize - N/A
- maximum
Limit NumberFor Concurrent Connections - N/A
- maximum
Memory NumberPool Size - N/A
- memory
Pool NumberSize - N/A
GetManagementSimpleGatewayHttpsInspection
- Bypass
On List<GetFailures Management Simple Gateway Https Inspection Bypass On Failure> - Set to be true in order to bypass all requests (Fail-open) in case of internal system error.bypass_on_failure blocks are documented below.
- Deny
Expired List<GetServer Certs Management Simple Gateway Https Inspection Deny Expired Server Cert> - Set to be true in order to drop traffic from servers with expired server certificate.deny_expired_server_cert blocks are documented below.
- Deny
Revoked List<GetServer Certs Management Simple Gateway Https Inspection Deny Revoked Server Cert> - Set to be true in order to drop traffic from servers with revoked server certificate (validate CRL).deny_revoked_server_cert blocks are documented below.
- Deny
Untrusted List<GetServer Certs Management Simple Gateway Https Inspection Deny Untrusted Server Cert> - Set to be true in order to drop traffic from servers with untrusted server certificate.deny_untrusted_server_cert blocks are documented below.
- Site
Categorization List<GetAllow Modes Management Simple Gateway Https Inspection Site Categorization Allow Mode> - Set to 'background' in order to allowed requests until categorization is complete.site_categorization_allow_mode blocks are documented below.
- Bypass
On []GetFailures Management Simple Gateway Https Inspection Bypass On Failure - Set to be true in order to bypass all requests (Fail-open) in case of internal system error.bypass_on_failure blocks are documented below.
- Deny
Expired []GetServer Certs Management Simple Gateway Https Inspection Deny Expired Server Cert - Set to be true in order to drop traffic from servers with expired server certificate.deny_expired_server_cert blocks are documented below.
- Deny
Revoked []GetServer Certs Management Simple Gateway Https Inspection Deny Revoked Server Cert - Set to be true in order to drop traffic from servers with revoked server certificate (validate CRL).deny_revoked_server_cert blocks are documented below.
- Deny
Untrusted []GetServer Certs Management Simple Gateway Https Inspection Deny Untrusted Server Cert - Set to be true in order to drop traffic from servers with untrusted server certificate.deny_untrusted_server_cert blocks are documented below.
- Site
Categorization []GetAllow Modes Management Simple Gateway Https Inspection Site Categorization Allow Mode - Set to 'background' in order to allowed requests until categorization is complete.site_categorization_allow_mode blocks are documented below.
- bypass
On List<GetFailures Management Simple Gateway Https Inspection Bypass On Failure> - Set to be true in order to bypass all requests (Fail-open) in case of internal system error.bypass_on_failure blocks are documented below.
- deny
Expired List<GetServer Certs Management Simple Gateway Https Inspection Deny Expired Server Cert> - Set to be true in order to drop traffic from servers with expired server certificate.deny_expired_server_cert blocks are documented below.
- deny
Revoked List<GetServer Certs Management Simple Gateway Https Inspection Deny Revoked Server Cert> - Set to be true in order to drop traffic from servers with revoked server certificate (validate CRL).deny_revoked_server_cert blocks are documented below.
- deny
Untrusted List<GetServer Certs Management Simple Gateway Https Inspection Deny Untrusted Server Cert> - Set to be true in order to drop traffic from servers with untrusted server certificate.deny_untrusted_server_cert blocks are documented below.
- site
Categorization List<GetAllow Modes Management Simple Gateway Https Inspection Site Categorization Allow Mode> - Set to 'background' in order to allowed requests until categorization is complete.site_categorization_allow_mode blocks are documented below.
- bypass
On GetFailures Management Simple Gateway Https Inspection Bypass On Failure[] - Set to be true in order to bypass all requests (Fail-open) in case of internal system error.bypass_on_failure blocks are documented below.
- deny
Expired GetServer Certs Management Simple Gateway Https Inspection Deny Expired Server Cert[] - Set to be true in order to drop traffic from servers with expired server certificate.deny_expired_server_cert blocks are documented below.
- deny
Revoked GetServer Certs Management Simple Gateway Https Inspection Deny Revoked Server Cert[] - Set to be true in order to drop traffic from servers with revoked server certificate (validate CRL).deny_revoked_server_cert blocks are documented below.
- deny
Untrusted GetServer Certs Management Simple Gateway Https Inspection Deny Untrusted Server Cert[] - Set to be true in order to drop traffic from servers with untrusted server certificate.deny_untrusted_server_cert blocks are documented below.
- site
Categorization GetAllow Modes Management Simple Gateway Https Inspection Site Categorization Allow Mode[] - Set to 'background' in order to allowed requests until categorization is complete.site_categorization_allow_mode blocks are documented below.
- bypass_
on_ Sequence[Getfailures Management Simple Gateway Https Inspection Bypass On Failure] - Set to be true in order to bypass all requests (Fail-open) in case of internal system error.bypass_on_failure blocks are documented below.
- deny_
expired_ Sequence[Getserver_ certs Management Simple Gateway Https Inspection Deny Expired Server Cert] - Set to be true in order to drop traffic from servers with expired server certificate.deny_expired_server_cert blocks are documented below.
- deny_
revoked_ Sequence[Getserver_ certs Management Simple Gateway Https Inspection Deny Revoked Server Cert] - Set to be true in order to drop traffic from servers with revoked server certificate (validate CRL).deny_revoked_server_cert blocks are documented below.
- deny_
untrusted_ Sequence[Getserver_ certs Management Simple Gateway Https Inspection Deny Untrusted Server Cert] - Set to be true in order to drop traffic from servers with untrusted server certificate.deny_untrusted_server_cert blocks are documented below.
- site_
categorization_ Sequence[Getallow_ modes Management Simple Gateway Https Inspection Site Categorization Allow Mode] - Set to 'background' in order to allowed requests until categorization is complete.site_categorization_allow_mode blocks are documented below.
- bypass
On List<Property Map>Failures - Set to be true in order to bypass all requests (Fail-open) in case of internal system error.bypass_on_failure blocks are documented below.
- deny
Expired List<Property Map>Server Certs - Set to be true in order to drop traffic from servers with expired server certificate.deny_expired_server_cert blocks are documented below.
- deny
Revoked List<Property Map>Server Certs - Set to be true in order to drop traffic from servers with revoked server certificate (validate CRL).deny_revoked_server_cert blocks are documented below.
- deny
Untrusted List<Property Map>Server Certs - Set to be true in order to drop traffic from servers with untrusted server certificate.deny_untrusted_server_cert blocks are documented below.
- site
Categorization List<Property Map>Allow Modes - Set to 'background' in order to allowed requests until categorization is complete.site_categorization_allow_mode blocks are documented below.
GetManagementSimpleGatewayHttpsInspectionBypassOnFailure
- Override
Profile bool - Override profile of global configuration.
- Value bool
- Override value.Required only for 'override-profile' is True.
- Override
Profile bool - Override profile of global configuration.
- Value bool
- Override value.Required only for 'override-profile' is True.
- override
Profile Boolean - Override profile of global configuration.
- value Boolean
- Override value.Required only for 'override-profile' is True.
- override
Profile boolean - Override profile of global configuration.
- value boolean
- Override value.Required only for 'override-profile' is True.
- override_
profile bool - Override profile of global configuration.
- value bool
- Override value.Required only for 'override-profile' is True.
- override
Profile Boolean - Override profile of global configuration.
- value Boolean
- Override value.Required only for 'override-profile' is True.
GetManagementSimpleGatewayHttpsInspectionDenyExpiredServerCert
- Override
Profile bool - Override profile of global configuration.
- Value bool
- Override value.Required only for 'override-profile' is True.
- Override
Profile bool - Override profile of global configuration.
- Value bool
- Override value.Required only for 'override-profile' is True.
- override
Profile Boolean - Override profile of global configuration.
- value Boolean
- Override value.Required only for 'override-profile' is True.
- override
Profile boolean - Override profile of global configuration.
- value boolean
- Override value.Required only for 'override-profile' is True.
- override_
profile bool - Override profile of global configuration.
- value bool
- Override value.Required only for 'override-profile' is True.
- override
Profile Boolean - Override profile of global configuration.
- value Boolean
- Override value.Required only for 'override-profile' is True.
GetManagementSimpleGatewayHttpsInspectionDenyRevokedServerCert
- Override
Profile bool - Override profile of global configuration.
- Value bool
- Override value.Required only for 'override-profile' is True.
- Override
Profile bool - Override profile of global configuration.
- Value bool
- Override value.Required only for 'override-profile' is True.
- override
Profile Boolean - Override profile of global configuration.
- value Boolean
- Override value.Required only for 'override-profile' is True.
- override
Profile boolean - Override profile of global configuration.
- value boolean
- Override value.Required only for 'override-profile' is True.
- override_
profile bool - Override profile of global configuration.
- value bool
- Override value.Required only for 'override-profile' is True.
- override
Profile Boolean - Override profile of global configuration.
- value Boolean
- Override value.Required only for 'override-profile' is True.
GetManagementSimpleGatewayHttpsInspectionDenyUntrustedServerCert
- Override
Profile bool - Override profile of global configuration.
- Value bool
- Override value.Required only for 'override-profile' is True.
- Override
Profile bool - Override profile of global configuration.
- Value bool
- Override value.Required only for 'override-profile' is True.
- override
Profile Boolean - Override profile of global configuration.
- value Boolean
- Override value.Required only for 'override-profile' is True.
- override
Profile boolean - Override profile of global configuration.
- value boolean
- Override value.Required only for 'override-profile' is True.
- override_
profile bool - Override profile of global configuration.
- value bool
- Override value.Required only for 'override-profile' is True.
- override
Profile Boolean - Override profile of global configuration.
- value Boolean
- Override value.Required only for 'override-profile' is True.
GetManagementSimpleGatewayHttpsInspectionSiteCategorizationAllowMode
- Override
Profile bool - Override profile of global configuration.
- Value string
- Override value.Required only for 'override-profile' is True.
- Override
Profile bool - Override profile of global configuration.
- Value string
- Override value.Required only for 'override-profile' is True.
- override
Profile Boolean - Override profile of global configuration.
- value String
- Override value.Required only for 'override-profile' is True.
- override
Profile boolean - Override profile of global configuration.
- value string
- Override value.Required only for 'override-profile' is True.
- override_
profile bool - Override profile of global configuration.
- value str
- Override value.Required only for 'override-profile' is True.
- override
Profile Boolean - Override profile of global configuration.
- value String
- Override value.Required only for 'override-profile' is True.
GetManagementSimpleGatewayIdentityAwarenessSetting
- Browser
Based boolAuthentication - Enable Browser Based Authentication source.
- Browser
Based List<GetAuthentication Settings Management Simple Gateway Identity Awareness Setting Browser Based Authentication Setting> - Browser Based Authentication settings.browser_based_authentication_settings blocks are documented below.
- Identity
Agent bool - Enable Identity Agent source.
- Identity
Agent List<GetSettings Management Simple Gateway Identity Awareness Setting Identity Agent Setting> - Identity Agent settings.identity_agent_settings blocks are documented below.
- Identity
Collector bool - Enable Identity Collector source.
- Identity
Collector List<GetSettings Management Simple Gateway Identity Awareness Setting Identity Collector Setting> - Identity Collector settings.identity_collector_settings blocks are documented below.
- Identity
Sharing List<GetSettings Management Simple Gateway Identity Awareness Setting Identity Sharing Setting> - Identity sharing settings.identity_sharing_settings blocks are documented below.
- Proxy
Settings List<GetManagement Simple Gateway Identity Awareness Setting Proxy Setting> - Identity-Awareness Proxy settings.proxy_settings blocks are documented below.
- Remote
Access bool - Enable Remote Access Identity source.
- Browser
Based boolAuthentication - Enable Browser Based Authentication source.
- Browser
Based []GetAuthentication Settings Management Simple Gateway Identity Awareness Setting Browser Based Authentication Setting - Browser Based Authentication settings.browser_based_authentication_settings blocks are documented below.
- Identity
Agent bool - Enable Identity Agent source.
- Identity
Agent []GetSettings Management Simple Gateway Identity Awareness Setting Identity Agent Setting - Identity Agent settings.identity_agent_settings blocks are documented below.
- Identity
Collector bool - Enable Identity Collector source.
- Identity
Collector []GetSettings Management Simple Gateway Identity Awareness Setting Identity Collector Setting - Identity Collector settings.identity_collector_settings blocks are documented below.
- Identity
Sharing []GetSettings Management Simple Gateway Identity Awareness Setting Identity Sharing Setting - Identity sharing settings.identity_sharing_settings blocks are documented below.
- Proxy
Settings []GetManagement Simple Gateway Identity Awareness Setting Proxy Setting - Identity-Awareness Proxy settings.proxy_settings blocks are documented below.
- Remote
Access bool - Enable Remote Access Identity source.
- browser
Based BooleanAuthentication - Enable Browser Based Authentication source.
- browser
Based List<GetAuthentication Settings Management Simple Gateway Identity Awareness Setting Browser Based Authentication Setting> - Browser Based Authentication settings.browser_based_authentication_settings blocks are documented below.
- identity
Agent Boolean - Enable Identity Agent source.
- identity
Agent List<GetSettings Management Simple Gateway Identity Awareness Setting Identity Agent Setting> - Identity Agent settings.identity_agent_settings blocks are documented below.
- identity
Collector Boolean - Enable Identity Collector source.
- identity
Collector List<GetSettings Management Simple Gateway Identity Awareness Setting Identity Collector Setting> - Identity Collector settings.identity_collector_settings blocks are documented below.
- identity
Sharing List<GetSettings Management Simple Gateway Identity Awareness Setting Identity Sharing Setting> - Identity sharing settings.identity_sharing_settings blocks are documented below.
- proxy
Settings List<GetManagement Simple Gateway Identity Awareness Setting Proxy Setting> - Identity-Awareness Proxy settings.proxy_settings blocks are documented below.
- remote
Access Boolean - Enable Remote Access Identity source.
- browser
Based booleanAuthentication - Enable Browser Based Authentication source.
- browser
Based GetAuthentication Settings Management Simple Gateway Identity Awareness Setting Browser Based Authentication Setting[] - Browser Based Authentication settings.browser_based_authentication_settings blocks are documented below.
- identity
Agent boolean - Enable Identity Agent source.
- identity
Agent GetSettings Management Simple Gateway Identity Awareness Setting Identity Agent Setting[] - Identity Agent settings.identity_agent_settings blocks are documented below.
- identity
Collector boolean - Enable Identity Collector source.
- identity
Collector GetSettings Management Simple Gateway Identity Awareness Setting Identity Collector Setting[] - Identity Collector settings.identity_collector_settings blocks are documented below.
- identity
Sharing GetSettings Management Simple Gateway Identity Awareness Setting Identity Sharing Setting[] - Identity sharing settings.identity_sharing_settings blocks are documented below.
- proxy
Settings GetManagement Simple Gateway Identity Awareness Setting Proxy Setting[] - Identity-Awareness Proxy settings.proxy_settings blocks are documented below.
- remote
Access boolean - Enable Remote Access Identity source.
- browser_
based_ boolauthentication - Enable Browser Based Authentication source.
- browser_
based_ Sequence[Getauthentication_ settings Management Simple Gateway Identity Awareness Setting Browser Based Authentication Setting] - Browser Based Authentication settings.browser_based_authentication_settings blocks are documented below.
- identity_
agent bool - Enable Identity Agent source.
- identity_
agent_ Sequence[Getsettings Management Simple Gateway Identity Awareness Setting Identity Agent Setting] - Identity Agent settings.identity_agent_settings blocks are documented below.
- identity_
collector bool - Enable Identity Collector source.
- identity_
collector_ Sequence[Getsettings Management Simple Gateway Identity Awareness Setting Identity Collector Setting] - Identity Collector settings.identity_collector_settings blocks are documented below.
- identity_
sharing_ Sequence[Getsettings Management Simple Gateway Identity Awareness Setting Identity Sharing Setting] - Identity sharing settings.identity_sharing_settings blocks are documented below.
- proxy_
settings Sequence[GetManagement Simple Gateway Identity Awareness Setting Proxy Setting] - Identity-Awareness Proxy settings.proxy_settings blocks are documented below.
- remote_
access bool - Enable Remote Access Identity source.
- browser
Based BooleanAuthentication - Enable Browser Based Authentication source.
- browser
Based List<Property Map>Authentication Settings - Browser Based Authentication settings.browser_based_authentication_settings blocks are documented below.
- identity
Agent Boolean - Enable Identity Agent source.
- identity
Agent List<Property Map>Settings - Identity Agent settings.identity_agent_settings blocks are documented below.
- identity
Collector Boolean - Enable Identity Collector source.
- identity
Collector List<Property Map>Settings - Identity Collector settings.identity_collector_settings blocks are documented below.
- identity
Sharing List<Property Map>Settings - Identity sharing settings.identity_sharing_settings blocks are documented below.
- proxy
Settings List<Property Map> - Identity-Awareness Proxy settings.proxy_settings blocks are documented below.
- remote
Access Boolean - Enable Remote Access Identity source.
GetManagementSimpleGatewayIdentityAwarenessSettingBrowserBasedAuthenticationSetting
- Authentication
Settings List<GetManagement Simple Gateway Identity Awareness Setting Browser Based Authentication Setting Authentication Setting> - Authentication Settings for Browser Based Authentication.authentication_settings blocks are documented below.
- Browser
Based List<GetAuthentication Portal Settings Management Simple Gateway Identity Awareness Setting Browser Based Authentication Setting Browser Based Authentication Portal Setting> - Browser Based Authentication portal settings.browser_based_authentication_portal_settings blocks are documented below.
- Authentication
Settings []GetManagement Simple Gateway Identity Awareness Setting Browser Based Authentication Setting Authentication Setting - Authentication Settings for Browser Based Authentication.authentication_settings blocks are documented below.
- Browser
Based []GetAuthentication Portal Settings Management Simple Gateway Identity Awareness Setting Browser Based Authentication Setting Browser Based Authentication Portal Setting - Browser Based Authentication portal settings.browser_based_authentication_portal_settings blocks are documented below.
- authentication
Settings List<GetManagement Simple Gateway Identity Awareness Setting Browser Based Authentication Setting Authentication Setting> - Authentication Settings for Browser Based Authentication.authentication_settings blocks are documented below.
- browser
Based List<GetAuthentication Portal Settings Management Simple Gateway Identity Awareness Setting Browser Based Authentication Setting Browser Based Authentication Portal Setting> - Browser Based Authentication portal settings.browser_based_authentication_portal_settings blocks are documented below.
- authentication
Settings GetManagement Simple Gateway Identity Awareness Setting Browser Based Authentication Setting Authentication Setting[] - Authentication Settings for Browser Based Authentication.authentication_settings blocks are documented below.
- browser
Based GetAuthentication Portal Settings Management Simple Gateway Identity Awareness Setting Browser Based Authentication Setting Browser Based Authentication Portal Setting[] - Browser Based Authentication portal settings.browser_based_authentication_portal_settings blocks are documented below.
- authentication_
settings Sequence[GetManagement Simple Gateway Identity Awareness Setting Browser Based Authentication Setting Authentication Setting] - Authentication Settings for Browser Based Authentication.authentication_settings blocks are documented below.
- browser_
based_ Sequence[Getauthentication_ portal_ settings Management Simple Gateway Identity Awareness Setting Browser Based Authentication Setting Browser Based Authentication Portal Setting] - Browser Based Authentication portal settings.browser_based_authentication_portal_settings blocks are documented below.
- authentication
Settings List<Property Map> - Authentication Settings for Browser Based Authentication.authentication_settings blocks are documented below.
- browser
Based List<Property Map>Authentication Portal Settings - Browser Based Authentication portal settings.browser_based_authentication_portal_settings blocks are documented below.
GetManagementSimpleGatewayIdentityAwarenessSettingBrowserBasedAuthenticationSettingAuthenticationSetting
- Authentication
Method string - Authentication method.
- Identity
Providers List<string> - Identity provider object identified by the name or UID. Must be set when "authentication-method" was selected to be "identity provider".identity_provider blocks are documented below.
- Radius string
- Radius server object identified by the name or UID. Must be set when "authentication-method" was selected to be "radius".
- Users
Directories List<GetManagement Simple Gateway Identity Awareness Setting Browser Based Authentication Setting Authentication Setting Users Directory> - Users directories.users_directories blocks are documented below.
- Authentication
Method string - Authentication method.
- Identity
Providers []string - Identity provider object identified by the name or UID. Must be set when "authentication-method" was selected to be "identity provider".identity_provider blocks are documented below.
- Radius string
- Radius server object identified by the name or UID. Must be set when "authentication-method" was selected to be "radius".
- Users
Directories []GetManagement Simple Gateway Identity Awareness Setting Browser Based Authentication Setting Authentication Setting Users Directory - Users directories.users_directories blocks are documented below.
- authentication
Method String - Authentication method.
- identity
Providers List<String> - Identity provider object identified by the name or UID. Must be set when "authentication-method" was selected to be "identity provider".identity_provider blocks are documented below.
- radius String
- Radius server object identified by the name or UID. Must be set when "authentication-method" was selected to be "radius".
- users
Directories List<GetManagement Simple Gateway Identity Awareness Setting Browser Based Authentication Setting Authentication Setting Users Directory> - Users directories.users_directories blocks are documented below.
- authentication
Method string - Authentication method.
- identity
Providers string[] - Identity provider object identified by the name or UID. Must be set when "authentication-method" was selected to be "identity provider".identity_provider blocks are documented below.
- radius string
- Radius server object identified by the name or UID. Must be set when "authentication-method" was selected to be "radius".
- users
Directories GetManagement Simple Gateway Identity Awareness Setting Browser Based Authentication Setting Authentication Setting Users Directory[] - Users directories.users_directories blocks are documented below.
- authentication_
method str - Authentication method.
- identity_
providers Sequence[str] - Identity provider object identified by the name or UID. Must be set when "authentication-method" was selected to be "identity provider".identity_provider blocks are documented below.
- radius str
- Radius server object identified by the name or UID. Must be set when "authentication-method" was selected to be "radius".
- users_
directories Sequence[GetManagement Simple Gateway Identity Awareness Setting Browser Based Authentication Setting Authentication Setting Users Directory] - Users directories.users_directories blocks are documented below.
- authentication
Method String - Authentication method.
- identity
Providers List<String> - Identity provider object identified by the name or UID. Must be set when "authentication-method" was selected to be "identity provider".identity_provider blocks are documented below.
- radius String
- Radius server object identified by the name or UID. Must be set when "authentication-method" was selected to be "radius".
- users
Directories List<Property Map> - Users directories.users_directories blocks are documented below.
GetManagementSimpleGatewayIdentityAwarenessSettingBrowserBasedAuthenticationSettingAuthenticationSettingUsersDirectory
- External
User boolProfile - External user profile.
- Internal
Users bool - Internal users.
- Specifics List<string>
- LDAP AU objects identified by the name or UID. Must be set when "users-from-external-directories" was selected to be "specific".specific blocks are documented below.
- Users
From stringExternal Directories - Users from external directories.
- External
User boolProfile - External user profile.
- Internal
Users bool - Internal users.
- Specifics []string
- LDAP AU objects identified by the name or UID. Must be set when "users-from-external-directories" was selected to be "specific".specific blocks are documented below.
- Users
From stringExternal Directories - Users from external directories.
- external
User BooleanProfile - External user profile.
- internal
Users Boolean - Internal users.
- specifics List<String>
- LDAP AU objects identified by the name or UID. Must be set when "users-from-external-directories" was selected to be "specific".specific blocks are documented below.
- users
From StringExternal Directories - Users from external directories.
- external
User booleanProfile - External user profile.
- internal
Users boolean - Internal users.
- specifics string[]
- LDAP AU objects identified by the name or UID. Must be set when "users-from-external-directories" was selected to be "specific".specific blocks are documented below.
- users
From stringExternal Directories - Users from external directories.
- external_
user_ boolprofile - External user profile.
- internal_
users bool - Internal users.
- specifics Sequence[str]
- LDAP AU objects identified by the name or UID. Must be set when "users-from-external-directories" was selected to be "specific".specific blocks are documented below.
- users_
from_ strexternal_ directories - Users from external directories.
- external
User BooleanProfile - External user profile.
- internal
Users Boolean - Internal users.
- specifics List<String>
- LDAP AU objects identified by the name or UID. Must be set when "users-from-external-directories" was selected to be "specific".specific blocks are documented below.
- users
From StringExternal Directories - Users from external directories.
GetManagementSimpleGatewayIdentityAwarenessSettingBrowserBasedAuthenticationSettingBrowserBasedAuthenticationPortalSetting
- Accessibilities
List<Get
Management Simple Gateway Identity Awareness Setting Browser Based Authentication Setting Browser Based Authentication Portal Setting Accessibility> - Configuration of the portal access settings.accessibility blocks are documented below.
- Certificate
Settings List<GetManagement Simple Gateway Identity Awareness Setting Browser Based Authentication Setting Browser Based Authentication Portal Setting Certificate Setting> - Configuration of the portal certificate settings.certificate_settings blocks are documented below.
- Portal
Web List<GetSettings Management Simple Gateway Identity Awareness Setting Browser Based Authentication Setting Browser Based Authentication Portal Setting Portal Web Setting> - Configuration of the portal web settings.portal_web_settings blocks are documented below.
- Accessibilities
[]Get
Management Simple Gateway Identity Awareness Setting Browser Based Authentication Setting Browser Based Authentication Portal Setting Accessibility - Configuration of the portal access settings.accessibility blocks are documented below.
- Certificate
Settings []GetManagement Simple Gateway Identity Awareness Setting Browser Based Authentication Setting Browser Based Authentication Portal Setting Certificate Setting - Configuration of the portal certificate settings.certificate_settings blocks are documented below.
- Portal
Web []GetSettings Management Simple Gateway Identity Awareness Setting Browser Based Authentication Setting Browser Based Authentication Portal Setting Portal Web Setting - Configuration of the portal web settings.portal_web_settings blocks are documented below.
- accessibilities
List<Get
Management Simple Gateway Identity Awareness Setting Browser Based Authentication Setting Browser Based Authentication Portal Setting Accessibility> - Configuration of the portal access settings.accessibility blocks are documented below.
- certificate
Settings List<GetManagement Simple Gateway Identity Awareness Setting Browser Based Authentication Setting Browser Based Authentication Portal Setting Certificate Setting> - Configuration of the portal certificate settings.certificate_settings blocks are documented below.
- portal
Web List<GetSettings Management Simple Gateway Identity Awareness Setting Browser Based Authentication Setting Browser Based Authentication Portal Setting Portal Web Setting> - Configuration of the portal web settings.portal_web_settings blocks are documented below.
- accessibilities
Get
Management Simple Gateway Identity Awareness Setting Browser Based Authentication Setting Browser Based Authentication Portal Setting Accessibility[] - Configuration of the portal access settings.accessibility blocks are documented below.
- certificate
Settings GetManagement Simple Gateway Identity Awareness Setting Browser Based Authentication Setting Browser Based Authentication Portal Setting Certificate Setting[] - Configuration of the portal certificate settings.certificate_settings blocks are documented below.
- portal
Web GetSettings Management Simple Gateway Identity Awareness Setting Browser Based Authentication Setting Browser Based Authentication Portal Setting Portal Web Setting[] - Configuration of the portal web settings.portal_web_settings blocks are documented below.
- accessibilities
Sequence[Get
Management Simple Gateway Identity Awareness Setting Browser Based Authentication Setting Browser Based Authentication Portal Setting Accessibility] - Configuration of the portal access settings.accessibility blocks are documented below.
- certificate_
settings Sequence[GetManagement Simple Gateway Identity Awareness Setting Browser Based Authentication Setting Browser Based Authentication Portal Setting Certificate Setting] - Configuration of the portal certificate settings.certificate_settings blocks are documented below.
- portal_
web_ Sequence[Getsettings Management Simple Gateway Identity Awareness Setting Browser Based Authentication Setting Browser Based Authentication Portal Setting Portal Web Setting] - Configuration of the portal web settings.portal_web_settings blocks are documented below.
- accessibilities List<Property Map>
- Configuration of the portal access settings.accessibility blocks are documented below.
- certificate
Settings List<Property Map> - Configuration of the portal certificate settings.certificate_settings blocks are documented below.
- portal
Web List<Property Map>Settings - Configuration of the portal web settings.portal_web_settings blocks are documented below.
GetManagementSimpleGatewayIdentityAwarenessSettingBrowserBasedAuthenticationSettingBrowserBasedAuthenticationPortalSettingAccessibility
- Allow
Access stringFrom - Allowed access to the web portal (based on interfaces, or security policy).
- Internal
Access List<GetSettings Management Simple Gateway Identity Awareness Setting Browser Based Authentication Setting Browser Based Authentication Portal Setting Accessibility Internal Access Setting> - Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
- Allow
Access stringFrom - Allowed access to the web portal (based on interfaces, or security policy).
- Internal
Access []GetSettings Management Simple Gateway Identity Awareness Setting Browser Based Authentication Setting Browser Based Authentication Portal Setting Accessibility Internal Access Setting - Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
- allow
Access StringFrom - Allowed access to the web portal (based on interfaces, or security policy).
- internal
Access List<GetSettings Management Simple Gateway Identity Awareness Setting Browser Based Authentication Setting Browser Based Authentication Portal Setting Accessibility Internal Access Setting> - Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
- allow
Access stringFrom - Allowed access to the web portal (based on interfaces, or security policy).
- internal
Access GetSettings Management Simple Gateway Identity Awareness Setting Browser Based Authentication Setting Browser Based Authentication Portal Setting Accessibility Internal Access Setting[] - Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
- allow_
access_ strfrom - Allowed access to the web portal (based on interfaces, or security policy).
- internal_
access_ Sequence[Getsettings Management Simple Gateway Identity Awareness Setting Browser Based Authentication Setting Browser Based Authentication Portal Setting Accessibility Internal Access Setting] - Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
- allow
Access StringFrom - Allowed access to the web portal (based on interfaces, or security policy).
- internal
Access List<Property Map>Settings - Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
GetManagementSimpleGatewayIdentityAwarenessSettingBrowserBasedAuthenticationSettingBrowserBasedAuthenticationPortalSettingAccessibilityInternalAccessSetting
- Dmz bool
- Controls portal access settings for internal interfaces, whose topology is set to 'DMZ'.
- Undefined bool
- Controls portal access settings for internal interfaces, whose topology is set to 'Undefined'.
- Vpn bool
- Controls portal access settings for interfaces that are part of a VPN Encryption Domain.
- Dmz bool
- Controls portal access settings for internal interfaces, whose topology is set to 'DMZ'.
- Undefined bool
- Controls portal access settings for internal interfaces, whose topology is set to 'Undefined'.
- Vpn bool
- Controls portal access settings for interfaces that are part of a VPN Encryption Domain.
- dmz Boolean
- Controls portal access settings for internal interfaces, whose topology is set to 'DMZ'.
- undefined Boolean
- Controls portal access settings for internal interfaces, whose topology is set to 'Undefined'.
- vpn Boolean
- Controls portal access settings for interfaces that are part of a VPN Encryption Domain.
- dmz boolean
- Controls portal access settings for internal interfaces, whose topology is set to 'DMZ'.
- undefined boolean
- Controls portal access settings for internal interfaces, whose topology is set to 'Undefined'.
- vpn boolean
- Controls portal access settings for interfaces that are part of a VPN Encryption Domain.
- dmz bool
- Controls portal access settings for internal interfaces, whose topology is set to 'DMZ'.
- undefined bool
- Controls portal access settings for internal interfaces, whose topology is set to 'Undefined'.
- vpn bool
- Controls portal access settings for interfaces that are part of a VPN Encryption Domain.
- dmz Boolean
- Controls portal access settings for internal interfaces, whose topology is set to 'DMZ'.
- undefined Boolean
- Controls portal access settings for internal interfaces, whose topology is set to 'Undefined'.
- vpn Boolean
- Controls portal access settings for interfaces that are part of a VPN Encryption Domain.
GetManagementSimpleGatewayIdentityAwarenessSettingBrowserBasedAuthenticationSettingBrowserBasedAuthenticationPortalSettingCertificateSetting
- Base64Certificate string
- The certificate file encoded in Base64 with padding. This file must be in the *.p12 format.
- Base64Password string
- Password (encoded in Base64 with padding) for the certificate file.
- Base64Certificate string
- The certificate file encoded in Base64 with padding. This file must be in the *.p12 format.
- Base64Password string
- Password (encoded in Base64 with padding) for the certificate file.
- base64Certificate String
- The certificate file encoded in Base64 with padding. This file must be in the *.p12 format.
- base64Password String
- Password (encoded in Base64 with padding) for the certificate file.
- base64Certificate string
- The certificate file encoded in Base64 with padding. This file must be in the *.p12 format.
- base64Password string
- Password (encoded in Base64 with padding) for the certificate file.
- base64_
certificate str - The certificate file encoded in Base64 with padding. This file must be in the *.p12 format.
- base64_
password str - Password (encoded in Base64 with padding) for the certificate file.
- base64Certificate String
- The certificate file encoded in Base64 with padding. This file must be in the *.p12 format.
- base64Password String
- Password (encoded in Base64 with padding) for the certificate file.
GetManagementSimpleGatewayIdentityAwarenessSettingBrowserBasedAuthenticationSettingBrowserBasedAuthenticationPortalSettingPortalWebSetting
GetManagementSimpleGatewayIdentityAwarenessSettingIdentityAgentSetting
- Agents
Interval doubleKeepalive - Agents send keepalive period (minutes).
- Authentication
Settings List<GetManagement Simple Gateway Identity Awareness Setting Identity Agent Setting Authentication Setting> - Authentication Settings for Identity Agent.authentication_settings blocks are documented below.
- Identity
Agent List<GetPortal Settings Management Simple Gateway Identity Awareness Setting Identity Agent Setting Identity Agent Portal Setting> - Identity Agent accessibility settings.identity_agent_portal_settings blocks are documented below.
- User
Reauthenticate doubleInterval - Agent reauthenticate time interval (minutes).
- Agents
Interval float64Keepalive - Agents send keepalive period (minutes).
- Authentication
Settings []GetManagement Simple Gateway Identity Awareness Setting Identity Agent Setting Authentication Setting - Authentication Settings for Identity Agent.authentication_settings blocks are documented below.
- Identity
Agent []GetPortal Settings Management Simple Gateway Identity Awareness Setting Identity Agent Setting Identity Agent Portal Setting - Identity Agent accessibility settings.identity_agent_portal_settings blocks are documented below.
- User
Reauthenticate float64Interval - Agent reauthenticate time interval (minutes).
- agents
Interval DoubleKeepalive - Agents send keepalive period (minutes).
- authentication
Settings List<GetManagement Simple Gateway Identity Awareness Setting Identity Agent Setting Authentication Setting> - Authentication Settings for Identity Agent.authentication_settings blocks are documented below.
- identity
Agent List<GetPortal Settings Management Simple Gateway Identity Awareness Setting Identity Agent Setting Identity Agent Portal Setting> - Identity Agent accessibility settings.identity_agent_portal_settings blocks are documented below.
- user
Reauthenticate DoubleInterval - Agent reauthenticate time interval (minutes).
- agents
Interval numberKeepalive - Agents send keepalive period (minutes).
- authentication
Settings GetManagement Simple Gateway Identity Awareness Setting Identity Agent Setting Authentication Setting[] - Authentication Settings for Identity Agent.authentication_settings blocks are documented below.
- identity
Agent GetPortal Settings Management Simple Gateway Identity Awareness Setting Identity Agent Setting Identity Agent Portal Setting[] - Identity Agent accessibility settings.identity_agent_portal_settings blocks are documented below.
- user
Reauthenticate numberInterval - Agent reauthenticate time interval (minutes).
- agents_
interval_ floatkeepalive - Agents send keepalive period (minutes).
- authentication_
settings Sequence[GetManagement Simple Gateway Identity Awareness Setting Identity Agent Setting Authentication Setting] - Authentication Settings for Identity Agent.authentication_settings blocks are documented below.
- identity_
agent_ Sequence[Getportal_ settings Management Simple Gateway Identity Awareness Setting Identity Agent Setting Identity Agent Portal Setting] - Identity Agent accessibility settings.identity_agent_portal_settings blocks are documented below.
- user_
reauthenticate_ floatinterval - Agent reauthenticate time interval (minutes).
- agents
Interval NumberKeepalive - Agents send keepalive period (minutes).
- authentication
Settings List<Property Map> - Authentication Settings for Identity Agent.authentication_settings blocks are documented below.
- identity
Agent List<Property Map>Portal Settings - Identity Agent accessibility settings.identity_agent_portal_settings blocks are documented below.
- user
Reauthenticate NumberInterval - Agent reauthenticate time interval (minutes).
GetManagementSimpleGatewayIdentityAwarenessSettingIdentityAgentSettingAuthenticationSetting
- Authentication
Method string - Authentication method.
- Radius string
- Radius server object identified by the name or UID. Must be set when "authentication-method" was selected to be "radius".
- Users
Directories List<GetManagement Simple Gateway Identity Awareness Setting Identity Agent Setting Authentication Setting Users Directory> - Users directories.users_directories blocks are documented below.
- Authentication
Method string - Authentication method.
- Radius string
- Radius server object identified by the name or UID. Must be set when "authentication-method" was selected to be "radius".
- Users
Directories []GetManagement Simple Gateway Identity Awareness Setting Identity Agent Setting Authentication Setting Users Directory - Users directories.users_directories blocks are documented below.
- authentication
Method String - Authentication method.
- radius String
- Radius server object identified by the name or UID. Must be set when "authentication-method" was selected to be "radius".
- users
Directories List<GetManagement Simple Gateway Identity Awareness Setting Identity Agent Setting Authentication Setting Users Directory> - Users directories.users_directories blocks are documented below.
- authentication
Method string - Authentication method.
- radius string
- Radius server object identified by the name or UID. Must be set when "authentication-method" was selected to be "radius".
- users
Directories GetManagement Simple Gateway Identity Awareness Setting Identity Agent Setting Authentication Setting Users Directory[] - Users directories.users_directories blocks are documented below.
- authentication_
method str - Authentication method.
- radius str
- Radius server object identified by the name or UID. Must be set when "authentication-method" was selected to be "radius".
- users_
directories Sequence[GetManagement Simple Gateway Identity Awareness Setting Identity Agent Setting Authentication Setting Users Directory] - Users directories.users_directories blocks are documented below.
- authentication
Method String - Authentication method.
- radius String
- Radius server object identified by the name or UID. Must be set when "authentication-method" was selected to be "radius".
- users
Directories List<Property Map> - Users directories.users_directories blocks are documented below.
GetManagementSimpleGatewayIdentityAwarenessSettingIdentityAgentSettingAuthenticationSettingUsersDirectory
- External
User boolProfile - External user profile.
- Internal
Users bool - Internal users.
- Specifics List<string>
- LDAP AU objects identified by the name or UID. Must be set when "users-from-external-directories" was selected to be "specific".specific blocks are documented below.
- Users
From stringExternal Directories - Users from external directories.
- External
User boolProfile - External user profile.
- Internal
Users bool - Internal users.
- Specifics []string
- LDAP AU objects identified by the name or UID. Must be set when "users-from-external-directories" was selected to be "specific".specific blocks are documented below.
- Users
From stringExternal Directories - Users from external directories.
- external
User BooleanProfile - External user profile.
- internal
Users Boolean - Internal users.
- specifics List<String>
- LDAP AU objects identified by the name or UID. Must be set when "users-from-external-directories" was selected to be "specific".specific blocks are documented below.
- users
From StringExternal Directories - Users from external directories.
- external
User booleanProfile - External user profile.
- internal
Users boolean - Internal users.
- specifics string[]
- LDAP AU objects identified by the name or UID. Must be set when "users-from-external-directories" was selected to be "specific".specific blocks are documented below.
- users
From stringExternal Directories - Users from external directories.
- external_
user_ boolprofile - External user profile.
- internal_
users bool - Internal users.
- specifics Sequence[str]
- LDAP AU objects identified by the name or UID. Must be set when "users-from-external-directories" was selected to be "specific".specific blocks are documented below.
- users_
from_ strexternal_ directories - Users from external directories.
- external
User BooleanProfile - External user profile.
- internal
Users Boolean - Internal users.
- specifics List<String>
- LDAP AU objects identified by the name or UID. Must be set when "users-from-external-directories" was selected to be "specific".specific blocks are documented below.
- users
From StringExternal Directories - Users from external directories.
GetManagementSimpleGatewayIdentityAwarenessSettingIdentityAgentSettingIdentityAgentPortalSetting
- Accessibilities
List<Get
Management Simple Gateway Identity Awareness Setting Identity Agent Setting Identity Agent Portal Setting Accessibility> - Configuration of the portal access settings.accessibility blocks are documented below.
- Accessibilities
[]Get
Management Simple Gateway Identity Awareness Setting Identity Agent Setting Identity Agent Portal Setting Accessibility - Configuration of the portal access settings.accessibility blocks are documented below.
- accessibilities
List<Get
Management Simple Gateway Identity Awareness Setting Identity Agent Setting Identity Agent Portal Setting Accessibility> - Configuration of the portal access settings.accessibility blocks are documented below.
- accessibilities
Get
Management Simple Gateway Identity Awareness Setting Identity Agent Setting Identity Agent Portal Setting Accessibility[] - Configuration of the portal access settings.accessibility blocks are documented below.
- accessibilities
Sequence[Get
Management Simple Gateway Identity Awareness Setting Identity Agent Setting Identity Agent Portal Setting Accessibility] - Configuration of the portal access settings.accessibility blocks are documented below.
- accessibilities List<Property Map>
- Configuration of the portal access settings.accessibility blocks are documented below.
GetManagementSimpleGatewayIdentityAwarenessSettingIdentityAgentSettingIdentityAgentPortalSettingAccessibility
- Allow
Access stringFrom - Allowed access to the web portal (based on interfaces, or security policy).
- Internal
Access List<GetSettings Management Simple Gateway Identity Awareness Setting Identity Agent Setting Identity Agent Portal Setting Accessibility Internal Access Setting> - Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
- Allow
Access stringFrom - Allowed access to the web portal (based on interfaces, or security policy).
- Internal
Access []GetSettings Management Simple Gateway Identity Awareness Setting Identity Agent Setting Identity Agent Portal Setting Accessibility Internal Access Setting - Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
- allow
Access StringFrom - Allowed access to the web portal (based on interfaces, or security policy).
- internal
Access List<GetSettings Management Simple Gateway Identity Awareness Setting Identity Agent Setting Identity Agent Portal Setting Accessibility Internal Access Setting> - Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
- allow
Access stringFrom - Allowed access to the web portal (based on interfaces, or security policy).
- internal
Access GetSettings Management Simple Gateway Identity Awareness Setting Identity Agent Setting Identity Agent Portal Setting Accessibility Internal Access Setting[] - Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
- allow_
access_ strfrom - Allowed access to the web portal (based on interfaces, or security policy).
- internal_
access_ Sequence[Getsettings Management Simple Gateway Identity Awareness Setting Identity Agent Setting Identity Agent Portal Setting Accessibility Internal Access Setting] - Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
- allow
Access StringFrom - Allowed access to the web portal (based on interfaces, or security policy).
- internal
Access List<Property Map>Settings - Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
GetManagementSimpleGatewayIdentityAwarenessSettingIdentityAgentSettingIdentityAgentPortalSettingAccessibilityInternalAccessSetting
- Dmz bool
- Controls portal access settings for internal interfaces, whose topology is set to 'DMZ'.
- Undefined bool
- Controls portal access settings for internal interfaces, whose topology is set to 'Undefined'.
- Vpn bool
- Controls portal access settings for interfaces that are part of a VPN Encryption Domain.
- Dmz bool
- Controls portal access settings for internal interfaces, whose topology is set to 'DMZ'.
- Undefined bool
- Controls portal access settings for internal interfaces, whose topology is set to 'Undefined'.
- Vpn bool
- Controls portal access settings for interfaces that are part of a VPN Encryption Domain.
- dmz Boolean
- Controls portal access settings for internal interfaces, whose topology is set to 'DMZ'.
- undefined Boolean
- Controls portal access settings for internal interfaces, whose topology is set to 'Undefined'.
- vpn Boolean
- Controls portal access settings for interfaces that are part of a VPN Encryption Domain.
- dmz boolean
- Controls portal access settings for internal interfaces, whose topology is set to 'DMZ'.
- undefined boolean
- Controls portal access settings for internal interfaces, whose topology is set to 'Undefined'.
- vpn boolean
- Controls portal access settings for interfaces that are part of a VPN Encryption Domain.
- dmz bool
- Controls portal access settings for internal interfaces, whose topology is set to 'DMZ'.
- undefined bool
- Controls portal access settings for internal interfaces, whose topology is set to 'Undefined'.
- vpn bool
- Controls portal access settings for interfaces that are part of a VPN Encryption Domain.
- dmz Boolean
- Controls portal access settings for internal interfaces, whose topology is set to 'DMZ'.
- undefined Boolean
- Controls portal access settings for internal interfaces, whose topology is set to 'Undefined'.
- vpn Boolean
- Controls portal access settings for interfaces that are part of a VPN Encryption Domain.
GetManagementSimpleGatewayIdentityAwarenessSettingIdentityCollectorSetting
- Authentication
Settings List<GetManagement Simple Gateway Identity Awareness Setting Identity Collector Setting Authentication Setting> - Authentication Settings for Identity Collector.authentication_settings blocks are documented below.
-
List<Get
Management Simple Gateway Identity Awareness Setting Identity Collector Setting Authorized Client> - Authorized Clients.authorized_clients blocks are documented below.
- Client
Access List<GetPermissions Management Simple Gateway Identity Awareness Setting Identity Collector Setting Client Access Permission> - Identity Collector accessibility settings.client_access_permissions blocks are documented below.
- Authentication
Settings []GetManagement Simple Gateway Identity Awareness Setting Identity Collector Setting Authentication Setting - Authentication Settings for Identity Collector.authentication_settings blocks are documented below.
-
[]Get
Management Simple Gateway Identity Awareness Setting Identity Collector Setting Authorized Client - Authorized Clients.authorized_clients blocks are documented below.
- Client
Access []GetPermissions Management Simple Gateway Identity Awareness Setting Identity Collector Setting Client Access Permission - Identity Collector accessibility settings.client_access_permissions blocks are documented below.
- authentication
Settings List<GetManagement Simple Gateway Identity Awareness Setting Identity Collector Setting Authentication Setting> - Authentication Settings for Identity Collector.authentication_settings blocks are documented below.
-
List<Get
Management Simple Gateway Identity Awareness Setting Identity Collector Setting Authorized Client> - Authorized Clients.authorized_clients blocks are documented below.
- client
Access List<GetPermissions Management Simple Gateway Identity Awareness Setting Identity Collector Setting Client Access Permission> - Identity Collector accessibility settings.client_access_permissions blocks are documented below.
- authentication
Settings GetManagement Simple Gateway Identity Awareness Setting Identity Collector Setting Authentication Setting[] - Authentication Settings for Identity Collector.authentication_settings blocks are documented below.
-
Get
Management Simple Gateway Identity Awareness Setting Identity Collector Setting Authorized Client[] - Authorized Clients.authorized_clients blocks are documented below.
- client
Access GetPermissions Management Simple Gateway Identity Awareness Setting Identity Collector Setting Client Access Permission[] - Identity Collector accessibility settings.client_access_permissions blocks are documented below.
- authentication_
settings Sequence[GetManagement Simple Gateway Identity Awareness Setting Identity Collector Setting Authentication Setting] - Authentication Settings for Identity Collector.authentication_settings blocks are documented below.
-
Sequence[Get
Management Simple Gateway Identity Awareness Setting Identity Collector Setting Authorized Client] - Authorized Clients.authorized_clients blocks are documented below.
- client_
access_ Sequence[Getpermissions Management Simple Gateway Identity Awareness Setting Identity Collector Setting Client Access Permission] - Identity Collector accessibility settings.client_access_permissions blocks are documented below.
- authentication
Settings List<Property Map> - Authentication Settings for Identity Collector.authentication_settings blocks are documented below.
- List<Property Map>
- Authorized Clients.authorized_clients blocks are documented below.
- client
Access List<Property Map>Permissions - Identity Collector accessibility settings.client_access_permissions blocks are documented below.
GetManagementSimpleGatewayIdentityAwarenessSettingIdentityCollectorSettingAuthenticationSetting
- Users
Directories List<GetManagement Simple Gateway Identity Awareness Setting Identity Collector Setting Authentication Setting Users Directory> - Users directories.users_directories blocks are documented below.
- Users
Directories []GetManagement Simple Gateway Identity Awareness Setting Identity Collector Setting Authentication Setting Users Directory - Users directories.users_directories blocks are documented below.
- users
Directories List<GetManagement Simple Gateway Identity Awareness Setting Identity Collector Setting Authentication Setting Users Directory> - Users directories.users_directories blocks are documented below.
- users
Directories GetManagement Simple Gateway Identity Awareness Setting Identity Collector Setting Authentication Setting Users Directory[] - Users directories.users_directories blocks are documented below.
- users_
directories Sequence[GetManagement Simple Gateway Identity Awareness Setting Identity Collector Setting Authentication Setting Users Directory] - Users directories.users_directories blocks are documented below.
- users
Directories List<Property Map> - Users directories.users_directories blocks are documented below.
GetManagementSimpleGatewayIdentityAwarenessSettingIdentityCollectorSettingAuthenticationSettingUsersDirectory
- External
User boolProfile - External user profile.
- Internal
Users bool - Internal users.
- Specifics List<string>
- LDAP AU objects identified by the name or UID. Must be set when "users-from-external-directories" was selected to be "specific".specific blocks are documented below.
- Users
From stringExternal Directories - Users from external directories.
- External
User boolProfile - External user profile.
- Internal
Users bool - Internal users.
- Specifics []string
- LDAP AU objects identified by the name or UID. Must be set when "users-from-external-directories" was selected to be "specific".specific blocks are documented below.
- Users
From stringExternal Directories - Users from external directories.
- external
User BooleanProfile - External user profile.
- internal
Users Boolean - Internal users.
- specifics List<String>
- LDAP AU objects identified by the name or UID. Must be set when "users-from-external-directories" was selected to be "specific".specific blocks are documented below.
- users
From StringExternal Directories - Users from external directories.
- external
User booleanProfile - External user profile.
- internal
Users boolean - Internal users.
- specifics string[]
- LDAP AU objects identified by the name or UID. Must be set when "users-from-external-directories" was selected to be "specific".specific blocks are documented below.
- users
From stringExternal Directories - Users from external directories.
- external_
user_ boolprofile - External user profile.
- internal_
users bool - Internal users.
- specifics Sequence[str]
- LDAP AU objects identified by the name or UID. Must be set when "users-from-external-directories" was selected to be "specific".specific blocks are documented below.
- users_
from_ strexternal_ directories - Users from external directories.
- external
User BooleanProfile - External user profile.
- internal
Users Boolean - Internal users.
- specifics List<String>
- LDAP AU objects identified by the name or UID. Must be set when "users-from-external-directories" was selected to be "specific".specific blocks are documented below.
- users
From StringExternal Directories - Users from external directories.
GetManagementSimpleGatewayIdentityAwarenessSettingIdentityCollectorSettingAuthorizedClient
- Client string
- Host / Network Group Name or UID.
- Client
Secret string - Client Secret.
- Client string
- Host / Network Group Name or UID.
- Client
Secret string - Client Secret.
- client String
- Host / Network Group Name or UID.
- client
Secret String - Client Secret.
- client string
- Host / Network Group Name or UID.
- client
Secret string - Client Secret.
- client str
- Host / Network Group Name or UID.
- client_
secret str - Client Secret.
- client String
- Host / Network Group Name or UID.
- client
Secret String - Client Secret.
GetManagementSimpleGatewayIdentityAwarenessSettingIdentityCollectorSettingClientAccessPermission
- Accessibilities
List<Get
Management Simple Gateway Identity Awareness Setting Identity Collector Setting Client Access Permission Accessibility> - Configuration of the portal access settings.accessibility blocks are documented below.
- Accessibilities
[]Get
Management Simple Gateway Identity Awareness Setting Identity Collector Setting Client Access Permission Accessibility - Configuration of the portal access settings.accessibility blocks are documented below.
- accessibilities
List<Get
Management Simple Gateway Identity Awareness Setting Identity Collector Setting Client Access Permission Accessibility> - Configuration of the portal access settings.accessibility blocks are documented below.
- accessibilities
Get
Management Simple Gateway Identity Awareness Setting Identity Collector Setting Client Access Permission Accessibility[] - Configuration of the portal access settings.accessibility blocks are documented below.
- accessibilities
Sequence[Get
Management Simple Gateway Identity Awareness Setting Identity Collector Setting Client Access Permission Accessibility] - Configuration of the portal access settings.accessibility blocks are documented below.
- accessibilities List<Property Map>
- Configuration of the portal access settings.accessibility blocks are documented below.
GetManagementSimpleGatewayIdentityAwarenessSettingIdentityCollectorSettingClientAccessPermissionAccessibility
- Allow
Access stringFrom - Allowed access to the web portal (based on interfaces, or security policy).
- Internal
Access List<GetSettings Management Simple Gateway Identity Awareness Setting Identity Collector Setting Client Access Permission Accessibility Internal Access Setting> - Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
- Allow
Access stringFrom - Allowed access to the web portal (based on interfaces, or security policy).
- Internal
Access []GetSettings Management Simple Gateway Identity Awareness Setting Identity Collector Setting Client Access Permission Accessibility Internal Access Setting - Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
- allow
Access StringFrom - Allowed access to the web portal (based on interfaces, or security policy).
- internal
Access List<GetSettings Management Simple Gateway Identity Awareness Setting Identity Collector Setting Client Access Permission Accessibility Internal Access Setting> - Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
- allow
Access stringFrom - Allowed access to the web portal (based on interfaces, or security policy).
- internal
Access GetSettings Management Simple Gateway Identity Awareness Setting Identity Collector Setting Client Access Permission Accessibility Internal Access Setting[] - Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
- allow_
access_ strfrom - Allowed access to the web portal (based on interfaces, or security policy).
- internal_
access_ Sequence[Getsettings Management Simple Gateway Identity Awareness Setting Identity Collector Setting Client Access Permission Accessibility Internal Access Setting] - Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
- allow
Access StringFrom - Allowed access to the web portal (based on interfaces, or security policy).
- internal
Access List<Property Map>Settings - Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
GetManagementSimpleGatewayIdentityAwarenessSettingIdentityCollectorSettingClientAccessPermissionAccessibilityInternalAccessSetting
- Dmz bool
- Controls portal access settings for internal interfaces, whose topology is set to 'DMZ'.
- Undefined bool
- Controls portal access settings for internal interfaces, whose topology is set to 'Undefined'.
- Vpn bool
- Controls portal access settings for interfaces that are part of a VPN Encryption Domain.
- Dmz bool
- Controls portal access settings for internal interfaces, whose topology is set to 'DMZ'.
- Undefined bool
- Controls portal access settings for internal interfaces, whose topology is set to 'Undefined'.
- Vpn bool
- Controls portal access settings for interfaces that are part of a VPN Encryption Domain.
- dmz Boolean
- Controls portal access settings for internal interfaces, whose topology is set to 'DMZ'.
- undefined Boolean
- Controls portal access settings for internal interfaces, whose topology is set to 'Undefined'.
- vpn Boolean
- Controls portal access settings for interfaces that are part of a VPN Encryption Domain.
- dmz boolean
- Controls portal access settings for internal interfaces, whose topology is set to 'DMZ'.
- undefined boolean
- Controls portal access settings for internal interfaces, whose topology is set to 'Undefined'.
- vpn boolean
- Controls portal access settings for interfaces that are part of a VPN Encryption Domain.
- dmz bool
- Controls portal access settings for internal interfaces, whose topology is set to 'DMZ'.
- undefined bool
- Controls portal access settings for internal interfaces, whose topology is set to 'Undefined'.
- vpn bool
- Controls portal access settings for interfaces that are part of a VPN Encryption Domain.
- dmz Boolean
- Controls portal access settings for internal interfaces, whose topology is set to 'DMZ'.
- undefined Boolean
- Controls portal access settings for internal interfaces, whose topology is set to 'Undefined'.
- vpn Boolean
- Controls portal access settings for interfaces that are part of a VPN Encryption Domain.
GetManagementSimpleGatewayIdentityAwarenessSettingIdentitySharingSetting
- Receive
From boolOther Gateways - Enable receiving identity from other gateways.
- Receive
Froms List<string> - Gateway(s) to receive identity from.receive_from blocks are documented below.
- bool
- Enable identity sharing with other gateways.
- Receive
From boolOther Gateways - Enable receiving identity from other gateways.
- Receive
Froms []string - Gateway(s) to receive identity from.receive_from blocks are documented below.
- bool
- Enable identity sharing with other gateways.
- receive
From BooleanOther Gateways - Enable receiving identity from other gateways.
- receive
Froms List<String> - Gateway(s) to receive identity from.receive_from blocks are documented below.
- Boolean
- Enable identity sharing with other gateways.
- receive
From booleanOther Gateways - Enable receiving identity from other gateways.
- receive
Froms string[] - Gateway(s) to receive identity from.receive_from blocks are documented below.
- boolean
- Enable identity sharing with other gateways.
- receive_
from_ boolother_ gateways - Enable receiving identity from other gateways.
- receive_
froms Sequence[str] - Gateway(s) to receive identity from.receive_from blocks are documented below.
- bool
- Enable identity sharing with other gateways.
- receive
From BooleanOther Gateways - Enable receiving identity from other gateways.
- receive
Froms List<String> - Gateway(s) to receive identity from.receive_from blocks are documented below.
- Boolean
- Enable identity sharing with other gateways.
GetManagementSimpleGatewayIdentityAwarenessSettingProxySetting
- Detect
Using boolXForward For - Whether to use X-Forward-For HTTP header, which is added by the proxy server to keep track of the original source IP.
- Detect
Using boolXForward For - Whether to use X-Forward-For HTTP header, which is added by the proxy server to keep track of the original source IP.
- detect
Using BooleanXForward For - Whether to use X-Forward-For HTTP header, which is added by the proxy server to keep track of the original source IP.
- detect
Using booleanXForward For - Whether to use X-Forward-For HTTP header, which is added by the proxy server to keep track of the original source IP.
- detect_
using_ boolx_ forward_ for - Whether to use X-Forward-For HTTP header, which is added by the proxy server to keep track of the original source IP.
- detect
Using BooleanXForward For - Whether to use X-Forward-For HTTP header, which is added by the proxy server to keep track of the original source IP.
GetManagementSimpleGatewayInterface
- Anti
Spoofing bool - N/A
- Anti
Spoofing List<GetSettings Management Simple Gateway Interface Anti Spoofing Setting> - N/Aanti_spoofing_settings blocks are documented below.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Ipv4Address string
- IPv4 address.
- Ipv4Mask
Length string - IPv4 network mask length.
- Ipv4Network
Mask string - IPv4 network address.
- Ipv6Address string
- IPv6 address.
- Ipv6Mask
Length string - IPv6 network mask length.
- Ipv6Network
Mask string - IPv6 network address.
- Name string
- Object name. Must be unique in the domain.
- Security
Zone bool - N/A
- Security
Zone List<GetSettings Management Simple Gateway Interface Security Zone Setting> - N/Asecurity_zone_settings blocks are documented below.
- Topology string
- N/A
- Topology
Automatic stringCalculation - Topology
Settings List<GetManagement Simple Gateway Interface Topology Setting> - N/Atopology_settings blocks are documented below.
- Anti
Spoofing bool - N/A
- Anti
Spoofing []GetSettings Management Simple Gateway Interface Anti Spoofing Setting - N/Aanti_spoofing_settings blocks are documented below.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Ipv4Address string
- IPv4 address.
- Ipv4Mask
Length string - IPv4 network mask length.
- Ipv4Network
Mask string - IPv4 network address.
- Ipv6Address string
- IPv6 address.
- Ipv6Mask
Length string - IPv6 network mask length.
- Ipv6Network
Mask string - IPv6 network address.
- Name string
- Object name. Must be unique in the domain.
- Security
Zone bool - N/A
- Security
Zone []GetSettings Management Simple Gateway Interface Security Zone Setting - N/Asecurity_zone_settings blocks are documented below.
- Topology string
- N/A
- Topology
Automatic stringCalculation - Topology
Settings []GetManagement Simple Gateway Interface Topology Setting - N/Atopology_settings blocks are documented below.
- anti
Spoofing Boolean - N/A
- anti
Spoofing List<GetSettings Management Simple Gateway Interface Anti Spoofing Setting> - N/Aanti_spoofing_settings blocks are documented below.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- ipv4Address String
- IPv4 address.
- ipv4Mask
Length String - IPv4 network mask length.
- ipv4Network
Mask String - IPv4 network address.
- ipv6Address String
- IPv6 address.
- ipv6Mask
Length String - IPv6 network mask length.
- ipv6Network
Mask String - IPv6 network address.
- name String
- Object name. Must be unique in the domain.
- security
Zone Boolean - N/A
- security
Zone List<GetSettings Management Simple Gateway Interface Security Zone Setting> - N/Asecurity_zone_settings blocks are documented below.
- topology String
- N/A
- topology
Automatic StringCalculation - topology
Settings List<GetManagement Simple Gateway Interface Topology Setting> - N/Atopology_settings blocks are documented below.
- anti
Spoofing boolean - N/A
- anti
Spoofing GetSettings Management Simple Gateway Interface Anti Spoofing Setting[] - N/Aanti_spoofing_settings blocks are documented below.
- color string
- Color of the object. Should be one of existing colors.
- comments string
- Comments string.
- ipv4Address string
- IPv4 address.
- ipv4Mask
Length string - IPv4 network mask length.
- ipv4Network
Mask string - IPv4 network address.
- ipv6Address string
- IPv6 address.
- ipv6Mask
Length string - IPv6 network mask length.
- ipv6Network
Mask string - IPv6 network address.
- name string
- Object name. Must be unique in the domain.
- security
Zone boolean - N/A
- security
Zone GetSettings Management Simple Gateway Interface Security Zone Setting[] - N/Asecurity_zone_settings blocks are documented below.
- topology string
- N/A
- topology
Automatic stringCalculation - topology
Settings GetManagement Simple Gateway Interface Topology Setting[] - N/Atopology_settings blocks are documented below.
- anti_
spoofing bool - N/A
- anti_
spoofing_ Sequence[Getsettings Management Simple Gateway Interface Anti Spoofing Setting] - N/Aanti_spoofing_settings blocks are documented below.
- color str
- Color of the object. Should be one of existing colors.
- comments str
- Comments string.
- ipv4_
address str - IPv4 address.
- ipv4_
mask_ strlength - IPv4 network mask length.
- ipv4_
network_ strmask - IPv4 network address.
- ipv6_
address str - IPv6 address.
- ipv6_
mask_ strlength - IPv6 network mask length.
- ipv6_
network_ strmask - IPv6 network address.
- name str
- Object name. Must be unique in the domain.
- security_
zone bool - N/A
- security_
zone_ Sequence[Getsettings Management Simple Gateway Interface Security Zone Setting] - N/Asecurity_zone_settings blocks are documented below.
- topology str
- N/A
- topology_
automatic_ strcalculation - topology_
settings Sequence[GetManagement Simple Gateway Interface Topology Setting] - N/Atopology_settings blocks are documented below.
- anti
Spoofing Boolean - N/A
- anti
Spoofing List<Property Map>Settings - N/Aanti_spoofing_settings blocks are documented below.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- ipv4Address String
- IPv4 address.
- ipv4Mask
Length String - IPv4 network mask length.
- ipv4Network
Mask String - IPv4 network address.
- ipv6Address String
- IPv6 address.
- ipv6Mask
Length String - IPv6 network mask length.
- ipv6Network
Mask String - IPv6 network address.
- name String
- Object name. Must be unique in the domain.
- security
Zone Boolean - N/A
- security
Zone List<Property Map>Settings - N/Asecurity_zone_settings blocks are documented below.
- topology String
- N/A
- topology
Automatic StringCalculation - topology
Settings List<Property Map> - N/Atopology_settings blocks are documented below.
GetManagementSimpleGatewayInterfaceAntiSpoofingSetting
- Action string
- If packets will be rejected (the Prevent option) or whether the packets will be monitored (the Detect option).
- Action string
- If packets will be rejected (the Prevent option) or whether the packets will be monitored (the Detect option).
- action String
- If packets will be rejected (the Prevent option) or whether the packets will be monitored (the Detect option).
- action string
- If packets will be rejected (the Prevent option) or whether the packets will be monitored (the Detect option).
- action str
- If packets will be rejected (the Prevent option) or whether the packets will be monitored (the Detect option).
- action String
- If packets will be rejected (the Prevent option) or whether the packets will be monitored (the Detect option).
GetManagementSimpleGatewayInterfaceSecurityZoneSetting
- Auto
Calculated bool - Security Zone is calculated according to where the interface leads to.
- Specific
Zone string - Security Zone specified manually.
- Auto
Calculated bool - Security Zone is calculated according to where the interface leads to.
- Specific
Zone string - Security Zone specified manually.
- auto
Calculated Boolean - Security Zone is calculated according to where the interface leads to.
- specific
Zone String - Security Zone specified manually.
- auto
Calculated boolean - Security Zone is calculated according to where the interface leads to.
- specific
Zone string - Security Zone specified manually.
- auto_
calculated bool - Security Zone is calculated according to where the interface leads to.
- specific_
zone str - Security Zone specified manually.
- auto
Calculated Boolean - Security Zone is calculated according to where the interface leads to.
- specific
Zone String - Security Zone specified manually.
GetManagementSimpleGatewayInterfaceTopologySetting
- Interface
Leads boolTo Dmz - Whether this interface leads to demilitarized zone (perimeter network).
- Ip
Address stringBehind This Interface - Specific
Network string - Network behind this interface.
- Interface
Leads boolTo Dmz - Whether this interface leads to demilitarized zone (perimeter network).
- Ip
Address stringBehind This Interface - Specific
Network string - Network behind this interface.
- interface
Leads BooleanTo Dmz - Whether this interface leads to demilitarized zone (perimeter network).
- ip
Address StringBehind This Interface - specific
Network String - Network behind this interface.
- interface
Leads booleanTo Dmz - Whether this interface leads to demilitarized zone (perimeter network).
- ip
Address stringBehind This Interface - specific
Network string - Network behind this interface.
- interface_
leads_ boolto_ dmz - Whether this interface leads to demilitarized zone (perimeter network).
- ip_
address_ strbehind_ this_ interface - specific_
network str - Network behind this interface.
- interface
Leads BooleanTo Dmz - Whether this interface leads to demilitarized zone (perimeter network).
- ip
Address StringBehind This Interface - specific
Network String - Network behind this interface.
GetManagementSimpleGatewayIpsSettings
- Activation
Mode string - Defines whether the IPS blade operates in Detect Only mode or enforces the configured IPS Policy.
- Bypass
All boolUnder Load - Disable/enable all IPS protections until CPU and memory levels are back to normal.
- Bypass
Track stringMethod - Track options when all IPS protections are disabled until CPU/memory levels are back to normal.
- Cpu
Usage doubleHigh Threshold - CPU usage high threshold percentage (1-99).
- Cpu
Usage doubleLow Threshold - CPU usage low threshold percentage (1-99).
- Memory
Usage doubleHigh Threshold - Memory usage high threshold percentage (1-99).
- Memory
Usage doubleLow Threshold - Memory usage low threshold percentage (1-99).
- Send
Threat boolCloud Info - Help improve Check Point Threat Prevention product by sending anonymous information.
- Top
Cpu GetConsuming Protections Management Simple Gateway Ips Settings Top Cpu Consuming Protections - Provides a way to reduce CPU levels on machines under load by disabling the top CPU consuming IPS protections.top_cpu_consuming_protections blocks are documented below.
- Activation
Mode string - Defines whether the IPS blade operates in Detect Only mode or enforces the configured IPS Policy.
- Bypass
All boolUnder Load - Disable/enable all IPS protections until CPU and memory levels are back to normal.
- Bypass
Track stringMethod - Track options when all IPS protections are disabled until CPU/memory levels are back to normal.
- Cpu
Usage float64High Threshold - CPU usage high threshold percentage (1-99).
- Cpu
Usage float64Low Threshold - CPU usage low threshold percentage (1-99).
- Memory
Usage float64High Threshold - Memory usage high threshold percentage (1-99).
- Memory
Usage float64Low Threshold - Memory usage low threshold percentage (1-99).
- Send
Threat boolCloud Info - Help improve Check Point Threat Prevention product by sending anonymous information.
- Top
Cpu GetConsuming Protections Management Simple Gateway Ips Settings Top Cpu Consuming Protections - Provides a way to reduce CPU levels on machines under load by disabling the top CPU consuming IPS protections.top_cpu_consuming_protections blocks are documented below.
- activation
Mode String - Defines whether the IPS blade operates in Detect Only mode or enforces the configured IPS Policy.
- bypass
All BooleanUnder Load - Disable/enable all IPS protections until CPU and memory levels are back to normal.
- bypass
Track StringMethod - Track options when all IPS protections are disabled until CPU/memory levels are back to normal.
- cpu
Usage DoubleHigh Threshold - CPU usage high threshold percentage (1-99).
- cpu
Usage DoubleLow Threshold - CPU usage low threshold percentage (1-99).
- memory
Usage DoubleHigh Threshold - Memory usage high threshold percentage (1-99).
- memory
Usage DoubleLow Threshold - Memory usage low threshold percentage (1-99).
- send
Threat BooleanCloud Info - Help improve Check Point Threat Prevention product by sending anonymous information.
- top
Cpu GetConsuming Protections Management Simple Gateway Ips Settings Top Cpu Consuming Protections - Provides a way to reduce CPU levels on machines under load by disabling the top CPU consuming IPS protections.top_cpu_consuming_protections blocks are documented below.
- activation
Mode string - Defines whether the IPS blade operates in Detect Only mode or enforces the configured IPS Policy.
- bypass
All booleanUnder Load - Disable/enable all IPS protections until CPU and memory levels are back to normal.
- bypass
Track stringMethod - Track options when all IPS protections are disabled until CPU/memory levels are back to normal.
- cpu
Usage numberHigh Threshold - CPU usage high threshold percentage (1-99).
- cpu
Usage numberLow Threshold - CPU usage low threshold percentage (1-99).
- memory
Usage numberHigh Threshold - Memory usage high threshold percentage (1-99).
- memory
Usage numberLow Threshold - Memory usage low threshold percentage (1-99).
- send
Threat booleanCloud Info - Help improve Check Point Threat Prevention product by sending anonymous information.
- top
Cpu GetConsuming Protections Management Simple Gateway Ips Settings Top Cpu Consuming Protections - Provides a way to reduce CPU levels on machines under load by disabling the top CPU consuming IPS protections.top_cpu_consuming_protections blocks are documented below.
- activation_
mode str - Defines whether the IPS blade operates in Detect Only mode or enforces the configured IPS Policy.
- bypass_
all_ boolunder_ load - Disable/enable all IPS protections until CPU and memory levels are back to normal.
- bypass_
track_ strmethod - Track options when all IPS protections are disabled until CPU/memory levels are back to normal.
- cpu_
usage_ floathigh_ threshold - CPU usage high threshold percentage (1-99).
- cpu_
usage_ floatlow_ threshold - CPU usage low threshold percentage (1-99).
- memory_
usage_ floathigh_ threshold - Memory usage high threshold percentage (1-99).
- memory_
usage_ floatlow_ threshold - Memory usage low threshold percentage (1-99).
- send_
threat_ boolcloud_ info - Help improve Check Point Threat Prevention product by sending anonymous information.
- top_
cpu_ Getconsuming_ protections Management Simple Gateway Ips Settings Top Cpu Consuming Protections - Provides a way to reduce CPU levels on machines under load by disabling the top CPU consuming IPS protections.top_cpu_consuming_protections blocks are documented below.
- activation
Mode String - Defines whether the IPS blade operates in Detect Only mode or enforces the configured IPS Policy.
- bypass
All BooleanUnder Load - Disable/enable all IPS protections until CPU and memory levels are back to normal.
- bypass
Track StringMethod - Track options when all IPS protections are disabled until CPU/memory levels are back to normal.
- cpu
Usage NumberHigh Threshold - CPU usage high threshold percentage (1-99).
- cpu
Usage NumberLow Threshold - CPU usage low threshold percentage (1-99).
- memory
Usage NumberHigh Threshold - Memory usage high threshold percentage (1-99).
- memory
Usage NumberLow Threshold - Memory usage low threshold percentage (1-99).
- send
Threat BooleanCloud Info - Help improve Check Point Threat Prevention product by sending anonymous information.
- top
Cpu Property MapConsuming Protections - Provides a way to reduce CPU levels on machines under load by disabling the top CPU consuming IPS protections.top_cpu_consuming_protections blocks are documented below.
GetManagementSimpleGatewayIpsSettingsTopCpuConsumingProtections
- Disable
Period double - Duration (in hours) for disabling the protections.
- Disable
Under boolLoad - Temporarily disable/enable top CPU consuming IPS protections.
- Disable
Period float64 - Duration (in hours) for disabling the protections.
- Disable
Under boolLoad - Temporarily disable/enable top CPU consuming IPS protections.
- disable
Period Double - Duration (in hours) for disabling the protections.
- disable
Under BooleanLoad - Temporarily disable/enable top CPU consuming IPS protections.
- disable
Period number - Duration (in hours) for disabling the protections.
- disable
Under booleanLoad - Temporarily disable/enable top CPU consuming IPS protections.
- disable_
period float - Duration (in hours) for disabling the protections.
- disable_
under_ boolload - Temporarily disable/enable top CPU consuming IPS protections.
- disable
Period Number - Duration (in hours) for disabling the protections.
- disable
Under BooleanLoad - Temporarily disable/enable top CPU consuming IPS protections.
GetManagementSimpleGatewayLogsSetting
- Alert
When boolFree Disk Space Below - Enable alert when free disk space is below threshold.
- Alert
When doubleFree Disk Space Below Threshold - Alert when free disk space below threshold.
- Alert
When stringFree Disk Space Below Type - Alert when free disk space below type.
- Before
Delete boolKeep Logs From The Last Days - Enable before delete keep logs from the last days.
- Before
Delete doubleKeep Logs From The Last Days Threshold - Before delete keep logs from the last days threshold.
- Before
Delete boolRun Script - Enable Before delete run script.
- Before
Delete stringRun Script Command - Before delete run script command.
- Delete
Index boolFiles Older Than Days - Enable delete index files older than days.
- Delete
Index doubleFiles Older Than Days Threshold - Delete index files older than days threshold.
- Delete
Index boolFiles When Index Size Above - Enable delete index files when index size above.
- Delete
Index stringFiles When Index Size Above Metrics - Delete
Index doubleFiles When Index Size Above Threshold - Delete index files when index size above threshold.
- Delete
When boolFree Disk Space Below - Enable delete when free disk space below.
- Delete
When stringFree Disk Space Below Metrics - Delete
When doubleFree Disk Space Below Threshold - Delete when free disk space below threshold.
- Detect
New boolCitrix Ica Application Names - Enable detect new Citrix ICA application names.
- Forward
Logs boolTo Log Server - Enable forward logs to log server.
- Forward
Logs stringTo Log Server Name - Forward logs to log server name.
- Forward
Logs stringTo Log Server Schedule Name - Forward logs to log server schedule name.
- Free
Disk stringSpace Metrics - Free disk space metrics.
- Perform
Log boolRotate Before Log Forwarding - Enable perform log rotate before log forwarding.
- Reject
Connections boolWhen Free Disk Space Below Threshold - Enable reject connections when free disk space below threshold.
- Reserve
For stringPacket Capture Metrics - Reserve for packet capture metrics.
- Reserve
For doublePacket Capture Threshold - Reserve for packet capture threshold.
- Rotate
Log boolBy File Size - Enable rotate log by file size.
- Rotate
Log doubleFile Size Threshold - Log file size threshold.
- Rotate
Log boolOn Schedule - Enable rotate log on schedule.
- Rotate
Log stringSchedule Name - Rotate log schedule name.
- Stop
Logging boolWhen Free Disk Space Below - Enable stop logging when free disk space below.
- Stop
Logging stringWhen Free Disk Space Below Metrics - Stop
Logging doubleWhen Free Disk Space Below Threshold - Stop logging when free disk space below threshold.
- Turn
On boolQos Logging - Enable turn on QoS Logging.
- Update
Account doubleLog Every - Update account log in every amount of seconds.
- Alert
When boolFree Disk Space Below - Enable alert when free disk space is below threshold.
- Alert
When float64Free Disk Space Below Threshold - Alert when free disk space below threshold.
- Alert
When stringFree Disk Space Below Type - Alert when free disk space below type.
- Before
Delete boolKeep Logs From The Last Days - Enable before delete keep logs from the last days.
- Before
Delete float64Keep Logs From The Last Days Threshold - Before delete keep logs from the last days threshold.
- Before
Delete boolRun Script - Enable Before delete run script.
- Before
Delete stringRun Script Command - Before delete run script command.
- Delete
Index boolFiles Older Than Days - Enable delete index files older than days.
- Delete
Index float64Files Older Than Days Threshold - Delete index files older than days threshold.
- Delete
Index boolFiles When Index Size Above - Enable delete index files when index size above.
- Delete
Index stringFiles When Index Size Above Metrics - Delete
Index float64Files When Index Size Above Threshold - Delete index files when index size above threshold.
- Delete
When boolFree Disk Space Below - Enable delete when free disk space below.
- Delete
When stringFree Disk Space Below Metrics - Delete
When float64Free Disk Space Below Threshold - Delete when free disk space below threshold.
- Detect
New boolCitrix Ica Application Names - Enable detect new Citrix ICA application names.
- Forward
Logs boolTo Log Server - Enable forward logs to log server.
- Forward
Logs stringTo Log Server Name - Forward logs to log server name.
- Forward
Logs stringTo Log Server Schedule Name - Forward logs to log server schedule name.
- Free
Disk stringSpace Metrics - Free disk space metrics.
- Perform
Log boolRotate Before Log Forwarding - Enable perform log rotate before log forwarding.
- Reject
Connections boolWhen Free Disk Space Below Threshold - Enable reject connections when free disk space below threshold.
- Reserve
For stringPacket Capture Metrics - Reserve for packet capture metrics.
- Reserve
For float64Packet Capture Threshold - Reserve for packet capture threshold.
- Rotate
Log boolBy File Size - Enable rotate log by file size.
- Rotate
Log float64File Size Threshold - Log file size threshold.
- Rotate
Log boolOn Schedule - Enable rotate log on schedule.
- Rotate
Log stringSchedule Name - Rotate log schedule name.
- Stop
Logging boolWhen Free Disk Space Below - Enable stop logging when free disk space below.
- Stop
Logging stringWhen Free Disk Space Below Metrics - Stop
Logging float64When Free Disk Space Below Threshold - Stop logging when free disk space below threshold.
- Turn
On boolQos Logging - Enable turn on QoS Logging.
- Update
Account float64Log Every - Update account log in every amount of seconds.
- alert
When BooleanFree Disk Space Below - Enable alert when free disk space is below threshold.
- alert
When DoubleFree Disk Space Below Threshold - Alert when free disk space below threshold.
- alert
When StringFree Disk Space Below Type - Alert when free disk space below type.
- before
Delete BooleanKeep Logs From The Last Days - Enable before delete keep logs from the last days.
- before
Delete DoubleKeep Logs From The Last Days Threshold - Before delete keep logs from the last days threshold.
- before
Delete BooleanRun Script - Enable Before delete run script.
- before
Delete StringRun Script Command - Before delete run script command.
- delete
Index BooleanFiles Older Than Days - Enable delete index files older than days.
- delete
Index DoubleFiles Older Than Days Threshold - Delete index files older than days threshold.
- delete
Index BooleanFiles When Index Size Above - Enable delete index files when index size above.
- delete
Index StringFiles When Index Size Above Metrics - delete
Index DoubleFiles When Index Size Above Threshold - Delete index files when index size above threshold.
- delete
When BooleanFree Disk Space Below - Enable delete when free disk space below.
- delete
When StringFree Disk Space Below Metrics - delete
When DoubleFree Disk Space Below Threshold - Delete when free disk space below threshold.
- detect
New BooleanCitrix Ica Application Names - Enable detect new Citrix ICA application names.
- forward
Logs BooleanTo Log Server - Enable forward logs to log server.
- forward
Logs StringTo Log Server Name - Forward logs to log server name.
- forward
Logs StringTo Log Server Schedule Name - Forward logs to log server schedule name.
- free
Disk StringSpace Metrics - Free disk space metrics.
- perform
Log BooleanRotate Before Log Forwarding - Enable perform log rotate before log forwarding.
- reject
Connections BooleanWhen Free Disk Space Below Threshold - Enable reject connections when free disk space below threshold.
- reserve
For StringPacket Capture Metrics - Reserve for packet capture metrics.
- reserve
For DoublePacket Capture Threshold - Reserve for packet capture threshold.
- rotate
Log BooleanBy File Size - Enable rotate log by file size.
- rotate
Log DoubleFile Size Threshold - Log file size threshold.
- rotate
Log BooleanOn Schedule - Enable rotate log on schedule.
- rotate
Log StringSchedule Name - Rotate log schedule name.
- stop
Logging BooleanWhen Free Disk Space Below - Enable stop logging when free disk space below.
- stop
Logging StringWhen Free Disk Space Below Metrics - stop
Logging DoubleWhen Free Disk Space Below Threshold - Stop logging when free disk space below threshold.
- turn
On BooleanQos Logging - Enable turn on QoS Logging.
- update
Account DoubleLog Every - Update account log in every amount of seconds.
- alert
When booleanFree Disk Space Below - Enable alert when free disk space is below threshold.
- alert
When numberFree Disk Space Below Threshold - Alert when free disk space below threshold.
- alert
When stringFree Disk Space Below Type - Alert when free disk space below type.
- before
Delete booleanKeep Logs From The Last Days - Enable before delete keep logs from the last days.
- before
Delete numberKeep Logs From The Last Days Threshold - Before delete keep logs from the last days threshold.
- before
Delete booleanRun Script - Enable Before delete run script.
- before
Delete stringRun Script Command - Before delete run script command.
- delete
Index booleanFiles Older Than Days - Enable delete index files older than days.
- delete
Index numberFiles Older Than Days Threshold - Delete index files older than days threshold.
- delete
Index booleanFiles When Index Size Above - Enable delete index files when index size above.
- delete
Index stringFiles When Index Size Above Metrics - delete
Index numberFiles When Index Size Above Threshold - Delete index files when index size above threshold.
- delete
When booleanFree Disk Space Below - Enable delete when free disk space below.
- delete
When stringFree Disk Space Below Metrics - delete
When numberFree Disk Space Below Threshold - Delete when free disk space below threshold.
- detect
New booleanCitrix Ica Application Names - Enable detect new Citrix ICA application names.
- forward
Logs booleanTo Log Server - Enable forward logs to log server.
- forward
Logs stringTo Log Server Name - Forward logs to log server name.
- forward
Logs stringTo Log Server Schedule Name - Forward logs to log server schedule name.
- free
Disk stringSpace Metrics - Free disk space metrics.
- perform
Log booleanRotate Before Log Forwarding - Enable perform log rotate before log forwarding.
- reject
Connections booleanWhen Free Disk Space Below Threshold - Enable reject connections when free disk space below threshold.
- reserve
For stringPacket Capture Metrics - Reserve for packet capture metrics.
- reserve
For numberPacket Capture Threshold - Reserve for packet capture threshold.
- rotate
Log booleanBy File Size - Enable rotate log by file size.
- rotate
Log numberFile Size Threshold - Log file size threshold.
- rotate
Log booleanOn Schedule - Enable rotate log on schedule.
- rotate
Log stringSchedule Name - Rotate log schedule name.
- stop
Logging booleanWhen Free Disk Space Below - Enable stop logging when free disk space below.
- stop
Logging stringWhen Free Disk Space Below Metrics - stop
Logging numberWhen Free Disk Space Below Threshold - Stop logging when free disk space below threshold.
- turn
On booleanQos Logging - Enable turn on QoS Logging.
- update
Account numberLog Every - Update account log in every amount of seconds.
- alert_
when_ boolfree_ disk_ space_ below - Enable alert when free disk space is below threshold.
- alert_
when_ floatfree_ disk_ space_ below_ threshold - Alert when free disk space below threshold.
- alert_
when_ strfree_ disk_ space_ below_ type - Alert when free disk space below type.
- before_
delete_ boolkeep_ logs_ from_ the_ last_ days - Enable before delete keep logs from the last days.
- before_
delete_ floatkeep_ logs_ from_ the_ last_ days_ threshold - Before delete keep logs from the last days threshold.
- before_
delete_ boolrun_ script - Enable Before delete run script.
- before_
delete_ strrun_ script_ command - Before delete run script command.
- delete_
index_ boolfiles_ older_ than_ days - Enable delete index files older than days.
- delete_
index_ floatfiles_ older_ than_ days_ threshold - Delete index files older than days threshold.
- delete_
index_ boolfiles_ when_ index_ size_ above - Enable delete index files when index size above.
- delete_
index_ strfiles_ when_ index_ size_ above_ metrics - delete_
index_ floatfiles_ when_ index_ size_ above_ threshold - Delete index files when index size above threshold.
- delete_
when_ boolfree_ disk_ space_ below - Enable delete when free disk space below.
- delete_
when_ strfree_ disk_ space_ below_ metrics - delete_
when_ floatfree_ disk_ space_ below_ threshold - Delete when free disk space below threshold.
- detect_
new_ boolcitrix_ ica_ application_ names - Enable detect new Citrix ICA application names.
- forward_
logs_ boolto_ log_ server - Enable forward logs to log server.
- forward_
logs_ strto_ log_ server_ name - Forward logs to log server name.
- forward_
logs_ strto_ log_ server_ schedule_ name - Forward logs to log server schedule name.
- free_
disk_ strspace_ metrics - Free disk space metrics.
- perform_
log_ boolrotate_ before_ log_ forwarding - Enable perform log rotate before log forwarding.
- reject_
connections_ boolwhen_ free_ disk_ space_ below_ threshold - Enable reject connections when free disk space below threshold.
- reserve_
for_ strpacket_ capture_ metrics - Reserve for packet capture metrics.
- reserve_
for_ floatpacket_ capture_ threshold - Reserve for packet capture threshold.
- rotate_
log_ boolby_ file_ size - Enable rotate log by file size.
- rotate_
log_ floatfile_ size_ threshold - Log file size threshold.
- rotate_
log_ boolon_ schedule - Enable rotate log on schedule.
- rotate_
log_ strschedule_ name - Rotate log schedule name.
- stop_
logging_ boolwhen_ free_ disk_ space_ below - Enable stop logging when free disk space below.
- stop_
logging_ strwhen_ free_ disk_ space_ below_ metrics - stop_
logging_ floatwhen_ free_ disk_ space_ below_ threshold - Stop logging when free disk space below threshold.
- turn_
on_ boolqos_ logging - Enable turn on QoS Logging.
- update_
account_ floatlog_ every - Update account log in every amount of seconds.
- alert
When BooleanFree Disk Space Below - Enable alert when free disk space is below threshold.
- alert
When NumberFree Disk Space Below Threshold - Alert when free disk space below threshold.
- alert
When StringFree Disk Space Below Type - Alert when free disk space below type.
- before
Delete BooleanKeep Logs From The Last Days - Enable before delete keep logs from the last days.
- before
Delete NumberKeep Logs From The Last Days Threshold - Before delete keep logs from the last days threshold.
- before
Delete BooleanRun Script - Enable Before delete run script.
- before
Delete StringRun Script Command - Before delete run script command.
- delete
Index BooleanFiles Older Than Days - Enable delete index files older than days.
- delete
Index NumberFiles Older Than Days Threshold - Delete index files older than days threshold.
- delete
Index BooleanFiles When Index Size Above - Enable delete index files when index size above.
- delete
Index StringFiles When Index Size Above Metrics - delete
Index NumberFiles When Index Size Above Threshold - Delete index files when index size above threshold.
- delete
When BooleanFree Disk Space Below - Enable delete when free disk space below.
- delete
When StringFree Disk Space Below Metrics - delete
When NumberFree Disk Space Below Threshold - Delete when free disk space below threshold.
- detect
New BooleanCitrix Ica Application Names - Enable detect new Citrix ICA application names.
- forward
Logs BooleanTo Log Server - Enable forward logs to log server.
- forward
Logs StringTo Log Server Name - Forward logs to log server name.
- forward
Logs StringTo Log Server Schedule Name - Forward logs to log server schedule name.
- free
Disk StringSpace Metrics - Free disk space metrics.
- perform
Log BooleanRotate Before Log Forwarding - Enable perform log rotate before log forwarding.
- reject
Connections BooleanWhen Free Disk Space Below Threshold - Enable reject connections when free disk space below threshold.
- reserve
For StringPacket Capture Metrics - Reserve for packet capture metrics.
- reserve
For NumberPacket Capture Threshold - Reserve for packet capture threshold.
- rotate
Log BooleanBy File Size - Enable rotate log by file size.
- rotate
Log NumberFile Size Threshold - Log file size threshold.
- rotate
Log BooleanOn Schedule - Enable rotate log on schedule.
- rotate
Log StringSchedule Name - Rotate log schedule name.
- stop
Logging BooleanWhen Free Disk Space Below - Enable stop logging when free disk space below.
- stop
Logging StringWhen Free Disk Space Below Metrics - stop
Logging NumberWhen Free Disk Space Below Threshold - Stop logging when free disk space below threshold.
- turn
On BooleanQos Logging - Enable turn on QoS Logging.
- update
Account NumberLog Every - Update account log in every amount of seconds.
GetManagementSimpleGatewayNatSetting
- Auto
Rule bool - Whether to add automatic address translation rules.
- Hide
Behind string - Hide behind method. This parameter is forbidden in case "method" parameter is "static".
- Install
On string - Which gateway should apply the NAT translation.
- Ipv4Address string
- IPv4 address.
- Ipv6Address string
- IPv6 address.
- Method string
- NAT translation method.
- Auto
Rule bool - Whether to add automatic address translation rules.
- Hide
Behind string - Hide behind method. This parameter is forbidden in case "method" parameter is "static".
- Install
On string - Which gateway should apply the NAT translation.
- Ipv4Address string
- IPv4 address.
- Ipv6Address string
- IPv6 address.
- Method string
- NAT translation method.
- auto
Rule Boolean - Whether to add automatic address translation rules.
- hide
Behind String - Hide behind method. This parameter is forbidden in case "method" parameter is "static".
- install
On String - Which gateway should apply the NAT translation.
- ipv4Address String
- IPv4 address.
- ipv6Address String
- IPv6 address.
- method String
- NAT translation method.
- auto
Rule boolean - Whether to add automatic address translation rules.
- hide
Behind string - Hide behind method. This parameter is forbidden in case "method" parameter is "static".
- install
On string - Which gateway should apply the NAT translation.
- ipv4Address string
- IPv4 address.
- ipv6Address string
- IPv6 address.
- method string
- NAT translation method.
- auto_
rule bool - Whether to add automatic address translation rules.
- hide_
behind str - Hide behind method. This parameter is forbidden in case "method" parameter is "static".
- install_
on str - Which gateway should apply the NAT translation.
- ipv4_
address str - IPv4 address.
- ipv6_
address str - IPv6 address.
- method str
- NAT translation method.
- auto
Rule Boolean - Whether to add automatic address translation rules.
- hide
Behind String - Hide behind method. This parameter is forbidden in case "method" parameter is "static".
- install
On String - Which gateway should apply the NAT translation.
- ipv4Address String
- IPv4 address.
- ipv6Address String
- IPv6 address.
- method String
- NAT translation method.
GetManagementSimpleGatewayPlatformPortalSetting
- Accessibilities
List<Get
Management Simple Gateway Platform Portal Setting Accessibility> - Configuration of the portal access settings.accessibility blocks are documented below.
- Certificate
Settings List<GetManagement Simple Gateway Platform Portal Setting Certificate Setting> - Configuration of the portal certificate settings.certificate_settings blocks are documented below.
- Portal
Web List<GetSettings Management Simple Gateway Platform Portal Setting Portal Web Setting> - Configuration of the portal web settings.portal_web_settings blocks are documented below.
- Accessibilities
[]Get
Management Simple Gateway Platform Portal Setting Accessibility - Configuration of the portal access settings.accessibility blocks are documented below.
- Certificate
Settings []GetManagement Simple Gateway Platform Portal Setting Certificate Setting - Configuration of the portal certificate settings.certificate_settings blocks are documented below.
- Portal
Web []GetSettings Management Simple Gateway Platform Portal Setting Portal Web Setting - Configuration of the portal web settings.portal_web_settings blocks are documented below.
- accessibilities
List<Get
Management Simple Gateway Platform Portal Setting Accessibility> - Configuration of the portal access settings.accessibility blocks are documented below.
- certificate
Settings List<GetManagement Simple Gateway Platform Portal Setting Certificate Setting> - Configuration of the portal certificate settings.certificate_settings blocks are documented below.
- portal
Web List<GetSettings Management Simple Gateway Platform Portal Setting Portal Web Setting> - Configuration of the portal web settings.portal_web_settings blocks are documented below.
- accessibilities
Get
Management Simple Gateway Platform Portal Setting Accessibility[] - Configuration of the portal access settings.accessibility blocks are documented below.
- certificate
Settings GetManagement Simple Gateway Platform Portal Setting Certificate Setting[] - Configuration of the portal certificate settings.certificate_settings blocks are documented below.
- portal
Web GetSettings Management Simple Gateway Platform Portal Setting Portal Web Setting[] - Configuration of the portal web settings.portal_web_settings blocks are documented below.
- accessibilities
Sequence[Get
Management Simple Gateway Platform Portal Setting Accessibility] - Configuration of the portal access settings.accessibility blocks are documented below.
- certificate_
settings Sequence[GetManagement Simple Gateway Platform Portal Setting Certificate Setting] - Configuration of the portal certificate settings.certificate_settings blocks are documented below.
- portal_
web_ Sequence[Getsettings Management Simple Gateway Platform Portal Setting Portal Web Setting] - Configuration of the portal web settings.portal_web_settings blocks are documented below.
- accessibilities List<Property Map>
- Configuration of the portal access settings.accessibility blocks are documented below.
- certificate
Settings List<Property Map> - Configuration of the portal certificate settings.certificate_settings blocks are documented below.
- portal
Web List<Property Map>Settings - Configuration of the portal web settings.portal_web_settings blocks are documented below.
GetManagementSimpleGatewayPlatformPortalSettingAccessibility
- Allow
Access stringFrom - Allowed access to the web portal (based on interfaces, or security policy).
- Internal
Access List<GetSettings Management Simple Gateway Platform Portal Setting Accessibility Internal Access Setting> - Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
- Allow
Access stringFrom - Allowed access to the web portal (based on interfaces, or security policy).
- Internal
Access []GetSettings Management Simple Gateway Platform Portal Setting Accessibility Internal Access Setting - Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
- allow
Access StringFrom - Allowed access to the web portal (based on interfaces, or security policy).
- internal
Access List<GetSettings Management Simple Gateway Platform Portal Setting Accessibility Internal Access Setting> - Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
- allow
Access stringFrom - Allowed access to the web portal (based on interfaces, or security policy).
- internal
Access GetSettings Management Simple Gateway Platform Portal Setting Accessibility Internal Access Setting[] - Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
- allow_
access_ strfrom - Allowed access to the web portal (based on interfaces, or security policy).
- internal_
access_ Sequence[Getsettings Management Simple Gateway Platform Portal Setting Accessibility Internal Access Setting] - Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
- allow
Access StringFrom - Allowed access to the web portal (based on interfaces, or security policy).
- internal
Access List<Property Map>Settings - Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
GetManagementSimpleGatewayPlatformPortalSettingAccessibilityInternalAccessSetting
- Dmz bool
- Controls portal access settings for internal interfaces, whose topology is set to 'DMZ'.
- Undefined bool
- Controls portal access settings for internal interfaces, whose topology is set to 'Undefined'.
- Vpn bool
- Controls portal access settings for interfaces that are part of a VPN Encryption Domain.
- Dmz bool
- Controls portal access settings for internal interfaces, whose topology is set to 'DMZ'.
- Undefined bool
- Controls portal access settings for internal interfaces, whose topology is set to 'Undefined'.
- Vpn bool
- Controls portal access settings for interfaces that are part of a VPN Encryption Domain.
- dmz Boolean
- Controls portal access settings for internal interfaces, whose topology is set to 'DMZ'.
- undefined Boolean
- Controls portal access settings for internal interfaces, whose topology is set to 'Undefined'.
- vpn Boolean
- Controls portal access settings for interfaces that are part of a VPN Encryption Domain.
- dmz boolean
- Controls portal access settings for internal interfaces, whose topology is set to 'DMZ'.
- undefined boolean
- Controls portal access settings for internal interfaces, whose topology is set to 'Undefined'.
- vpn boolean
- Controls portal access settings for interfaces that are part of a VPN Encryption Domain.
- dmz bool
- Controls portal access settings for internal interfaces, whose topology is set to 'DMZ'.
- undefined bool
- Controls portal access settings for internal interfaces, whose topology is set to 'Undefined'.
- vpn bool
- Controls portal access settings for interfaces that are part of a VPN Encryption Domain.
- dmz Boolean
- Controls portal access settings for internal interfaces, whose topology is set to 'DMZ'.
- undefined Boolean
- Controls portal access settings for internal interfaces, whose topology is set to 'Undefined'.
- vpn Boolean
- Controls portal access settings for interfaces that are part of a VPN Encryption Domain.
GetManagementSimpleGatewayPlatformPortalSettingCertificateSetting
- Base64Certificate string
- The certificate file encoded in Base64 with padding. This file must be in the *.p12 format.
- Base64Password string
- Password (encoded in Base64 with padding) for the certificate file.
- Base64Certificate string
- The certificate file encoded in Base64 with padding. This file must be in the *.p12 format.
- Base64Password string
- Password (encoded in Base64 with padding) for the certificate file.
- base64Certificate String
- The certificate file encoded in Base64 with padding. This file must be in the *.p12 format.
- base64Password String
- Password (encoded in Base64 with padding) for the certificate file.
- base64Certificate string
- The certificate file encoded in Base64 with padding. This file must be in the *.p12 format.
- base64Password string
- Password (encoded in Base64 with padding) for the certificate file.
- base64_
certificate str - The certificate file encoded in Base64 with padding. This file must be in the *.p12 format.
- base64_
password str - Password (encoded in Base64 with padding) for the certificate file.
- base64Certificate String
- The certificate file encoded in Base64 with padding. This file must be in the *.p12 format.
- base64Password String
- Password (encoded in Base64 with padding) for the certificate file.
GetManagementSimpleGatewayPlatformPortalSettingPortalWebSetting
GetManagementSimpleGatewayProxySetting
- Port double
- N/A
- Proxy
Server string - N/A
- Use
Custom boolProxy - Use custom proxy settings for this network object.
- Port float64
- N/A
- Proxy
Server string - N/A
- Use
Custom boolProxy - Use custom proxy settings for this network object.
- port Double
- N/A
- proxy
Server String - N/A
- use
Custom BooleanProxy - Use custom proxy settings for this network object.
- port number
- N/A
- proxy
Server string - N/A
- use
Custom booleanProxy - Use custom proxy settings for this network object.
- port float
- N/A
- proxy_
server str - N/A
- use_
custom_ boolproxy - Use custom proxy settings for this network object.
- port Number
- N/A
- proxy
Server String - N/A
- use
Custom BooleanProxy - Use custom proxy settings for this network object.
GetManagementSimpleGatewayUsercheckPortalSetting
- Accessibilities
List<Get
Management Simple Gateway Usercheck Portal Setting Accessibility> - Configuration of the portal access settings.accessibility blocks are documented below.
- Certificate
Settings List<GetManagement Simple Gateway Usercheck Portal Setting Certificate Setting> - Configuration of the portal certificate settings.certificate_settings blocks are documented below.
- Enabled bool
- State of the web portal (enabled or disabled). The supported blades are: {'Application Control', 'URL Filtering', 'Data Loss Prevention', 'Anti Virus', 'Anti Bot', 'Threat Emulation', 'Threat Extraction', 'Data Awareness'}.
- Portal
Web List<GetSettings Management Simple Gateway Usercheck Portal Setting Portal Web Setting> - Configuration of the portal web settings.portal_web_settings blocks are documented below.
- Accessibilities
[]Get
Management Simple Gateway Usercheck Portal Setting Accessibility - Configuration of the portal access settings.accessibility blocks are documented below.
- Certificate
Settings []GetManagement Simple Gateway Usercheck Portal Setting Certificate Setting - Configuration of the portal certificate settings.certificate_settings blocks are documented below.
- Enabled bool
- State of the web portal (enabled or disabled). The supported blades are: {'Application Control', 'URL Filtering', 'Data Loss Prevention', 'Anti Virus', 'Anti Bot', 'Threat Emulation', 'Threat Extraction', 'Data Awareness'}.
- Portal
Web []GetSettings Management Simple Gateway Usercheck Portal Setting Portal Web Setting - Configuration of the portal web settings.portal_web_settings blocks are documented below.
- accessibilities
List<Get
Management Simple Gateway Usercheck Portal Setting Accessibility> - Configuration of the portal access settings.accessibility blocks are documented below.
- certificate
Settings List<GetManagement Simple Gateway Usercheck Portal Setting Certificate Setting> - Configuration of the portal certificate settings.certificate_settings blocks are documented below.
- enabled Boolean
- State of the web portal (enabled or disabled). The supported blades are: {'Application Control', 'URL Filtering', 'Data Loss Prevention', 'Anti Virus', 'Anti Bot', 'Threat Emulation', 'Threat Extraction', 'Data Awareness'}.
- portal
Web List<GetSettings Management Simple Gateway Usercheck Portal Setting Portal Web Setting> - Configuration of the portal web settings.portal_web_settings blocks are documented below.
- accessibilities
Get
Management Simple Gateway Usercheck Portal Setting Accessibility[] - Configuration of the portal access settings.accessibility blocks are documented below.
- certificate
Settings GetManagement Simple Gateway Usercheck Portal Setting Certificate Setting[] - Configuration of the portal certificate settings.certificate_settings blocks are documented below.
- enabled boolean
- State of the web portal (enabled or disabled). The supported blades are: {'Application Control', 'URL Filtering', 'Data Loss Prevention', 'Anti Virus', 'Anti Bot', 'Threat Emulation', 'Threat Extraction', 'Data Awareness'}.
- portal
Web GetSettings Management Simple Gateway Usercheck Portal Setting Portal Web Setting[] - Configuration of the portal web settings.portal_web_settings blocks are documented below.
- accessibilities
Sequence[Get
Management Simple Gateway Usercheck Portal Setting Accessibility] - Configuration of the portal access settings.accessibility blocks are documented below.
- certificate_
settings Sequence[GetManagement Simple Gateway Usercheck Portal Setting Certificate Setting] - Configuration of the portal certificate settings.certificate_settings blocks are documented below.
- enabled bool
- State of the web portal (enabled or disabled). The supported blades are: {'Application Control', 'URL Filtering', 'Data Loss Prevention', 'Anti Virus', 'Anti Bot', 'Threat Emulation', 'Threat Extraction', 'Data Awareness'}.
- portal_
web_ Sequence[Getsettings Management Simple Gateway Usercheck Portal Setting Portal Web Setting] - Configuration of the portal web settings.portal_web_settings blocks are documented below.
- accessibilities List<Property Map>
- Configuration of the portal access settings.accessibility blocks are documented below.
- certificate
Settings List<Property Map> - Configuration of the portal certificate settings.certificate_settings blocks are documented below.
- enabled Boolean
- State of the web portal (enabled or disabled). The supported blades are: {'Application Control', 'URL Filtering', 'Data Loss Prevention', 'Anti Virus', 'Anti Bot', 'Threat Emulation', 'Threat Extraction', 'Data Awareness'}.
- portal
Web List<Property Map>Settings - Configuration of the portal web settings.portal_web_settings blocks are documented below.
GetManagementSimpleGatewayUsercheckPortalSettingAccessibility
- Allow
Access stringFrom - Allowed access to the web portal (based on interfaces, or security policy).
- Internal
Access List<GetSettings Management Simple Gateway Usercheck Portal Setting Accessibility Internal Access Setting> - Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
- Allow
Access stringFrom - Allowed access to the web portal (based on interfaces, or security policy).
- Internal
Access []GetSettings Management Simple Gateway Usercheck Portal Setting Accessibility Internal Access Setting - Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
- allow
Access StringFrom - Allowed access to the web portal (based on interfaces, or security policy).
- internal
Access List<GetSettings Management Simple Gateway Usercheck Portal Setting Accessibility Internal Access Setting> - Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
- allow
Access stringFrom - Allowed access to the web portal (based on interfaces, or security policy).
- internal
Access GetSettings Management Simple Gateway Usercheck Portal Setting Accessibility Internal Access Setting[] - Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
- allow_
access_ strfrom - Allowed access to the web portal (based on interfaces, or security policy).
- internal_
access_ Sequence[Getsettings Management Simple Gateway Usercheck Portal Setting Accessibility Internal Access Setting] - Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
- allow
Access StringFrom - Allowed access to the web portal (based on interfaces, or security policy).
- internal
Access List<Property Map>Settings - Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
GetManagementSimpleGatewayUsercheckPortalSettingAccessibilityInternalAccessSetting
- Dmz bool
- Controls portal access settings for internal interfaces, whose topology is set to 'DMZ'.
- Undefined bool
- Controls portal access settings for internal interfaces, whose topology is set to 'Undefined'.
- Vpn bool
- Controls portal access settings for interfaces that are part of a VPN Encryption Domain.
- Dmz bool
- Controls portal access settings for internal interfaces, whose topology is set to 'DMZ'.
- Undefined bool
- Controls portal access settings for internal interfaces, whose topology is set to 'Undefined'.
- Vpn bool
- Controls portal access settings for interfaces that are part of a VPN Encryption Domain.
- dmz Boolean
- Controls portal access settings for internal interfaces, whose topology is set to 'DMZ'.
- undefined Boolean
- Controls portal access settings for internal interfaces, whose topology is set to 'Undefined'.
- vpn Boolean
- Controls portal access settings for interfaces that are part of a VPN Encryption Domain.
- dmz boolean
- Controls portal access settings for internal interfaces, whose topology is set to 'DMZ'.
- undefined boolean
- Controls portal access settings for internal interfaces, whose topology is set to 'Undefined'.
- vpn boolean
- Controls portal access settings for interfaces that are part of a VPN Encryption Domain.
- dmz bool
- Controls portal access settings for internal interfaces, whose topology is set to 'DMZ'.
- undefined bool
- Controls portal access settings for internal interfaces, whose topology is set to 'Undefined'.
- vpn bool
- Controls portal access settings for interfaces that are part of a VPN Encryption Domain.
- dmz Boolean
- Controls portal access settings for internal interfaces, whose topology is set to 'DMZ'.
- undefined Boolean
- Controls portal access settings for internal interfaces, whose topology is set to 'Undefined'.
- vpn Boolean
- Controls portal access settings for interfaces that are part of a VPN Encryption Domain.
GetManagementSimpleGatewayUsercheckPortalSettingCertificateSetting
- Base64Certificate string
- The certificate file encoded in Base64 with padding. This file must be in the *.p12 format.
- Base64Password string
- Password (encoded in Base64 with padding) for the certificate file.
- Base64Certificate string
- The certificate file encoded in Base64 with padding. This file must be in the *.p12 format.
- Base64Password string
- Password (encoded in Base64 with padding) for the certificate file.
- base64Certificate String
- The certificate file encoded in Base64 with padding. This file must be in the *.p12 format.
- base64Password String
- Password (encoded in Base64 with padding) for the certificate file.
- base64Certificate string
- The certificate file encoded in Base64 with padding. This file must be in the *.p12 format.
- base64Password string
- Password (encoded in Base64 with padding) for the certificate file.
- base64_
certificate str - The certificate file encoded in Base64 with padding. This file must be in the *.p12 format.
- base64_
password str - Password (encoded in Base64 with padding) for the certificate file.
- base64Certificate String
- The certificate file encoded in Base64 with padding. This file must be in the *.p12 format.
- base64Password String
- Password (encoded in Base64 with padding) for the certificate file.
GetManagementSimpleGatewayUsercheckPortalSettingPortalWebSetting
GetManagementSimpleGatewayVpnSetting
- Authentications
List<Get
Management Simple Gateway Vpn Setting Authentication> - Authentication.authentication blocks are documented below.
- Link
Selections List<GetManagement Simple Gateway Vpn Setting Link Selection> - Link Selection.link_selection blocks are documented below.
- Maximum
Concurrent doubleIke Negotiations - N/A
- Maximum
Concurrent doubleTunnels - N/A
- Office
Modes List<GetManagement Simple Gateway Vpn Setting Office Mode> - Office Mode. Notation Wide Impact - Office Mode apply IPSec VPN Software Blade clients and to the Mobile Access Software Blade clients.office_mode blocks are documented below.
- Remote
Accesses List<GetManagement Simple Gateway Vpn Setting Remote Access> - Remote Access.remote_access blocks are documented below.
- Vpn
Domain string - Gateway VPN domain identified by the name or UID.
- Vpn
Domain boolExclude External Ip Addresses - Exclude the external IP addresses from the VPN domain of this Security Gateway.
- Vpn
Domain stringType - Gateway VPN domain type.
- Authentications
[]Get
Management Simple Gateway Vpn Setting Authentication - Authentication.authentication blocks are documented below.
- Link
Selections []GetManagement Simple Gateway Vpn Setting Link Selection - Link Selection.link_selection blocks are documented below.
- Maximum
Concurrent float64Ike Negotiations - N/A
- Maximum
Concurrent float64Tunnels - N/A
- Office
Modes []GetManagement Simple Gateway Vpn Setting Office Mode - Office Mode. Notation Wide Impact - Office Mode apply IPSec VPN Software Blade clients and to the Mobile Access Software Blade clients.office_mode blocks are documented below.
- Remote
Accesses []GetManagement Simple Gateway Vpn Setting Remote Access - Remote Access.remote_access blocks are documented below.
- Vpn
Domain string - Gateway VPN domain identified by the name or UID.
- Vpn
Domain boolExclude External Ip Addresses - Exclude the external IP addresses from the VPN domain of this Security Gateway.
- Vpn
Domain stringType - Gateway VPN domain type.
- authentications
List<Get
Management Simple Gateway Vpn Setting Authentication> - Authentication.authentication blocks are documented below.
- link
Selections List<GetManagement Simple Gateway Vpn Setting Link Selection> - Link Selection.link_selection blocks are documented below.
- maximum
Concurrent DoubleIke Negotiations - N/A
- maximum
Concurrent DoubleTunnels - N/A
- office
Modes List<GetManagement Simple Gateway Vpn Setting Office Mode> - Office Mode. Notation Wide Impact - Office Mode apply IPSec VPN Software Blade clients and to the Mobile Access Software Blade clients.office_mode blocks are documented below.
- remote
Accesses List<GetManagement Simple Gateway Vpn Setting Remote Access> - Remote Access.remote_access blocks are documented below.
- vpn
Domain String - Gateway VPN domain identified by the name or UID.
- vpn
Domain BooleanExclude External Ip Addresses - Exclude the external IP addresses from the VPN domain of this Security Gateway.
- vpn
Domain StringType - Gateway VPN domain type.
- authentications
Get
Management Simple Gateway Vpn Setting Authentication[] - Authentication.authentication blocks are documented below.
- link
Selections GetManagement Simple Gateway Vpn Setting Link Selection[] - Link Selection.link_selection blocks are documented below.
- maximum
Concurrent numberIke Negotiations - N/A
- maximum
Concurrent numberTunnels - N/A
- office
Modes GetManagement Simple Gateway Vpn Setting Office Mode[] - Office Mode. Notation Wide Impact - Office Mode apply IPSec VPN Software Blade clients and to the Mobile Access Software Blade clients.office_mode blocks are documented below.
- remote
Accesses GetManagement Simple Gateway Vpn Setting Remote Access[] - Remote Access.remote_access blocks are documented below.
- vpn
Domain string - Gateway VPN domain identified by the name or UID.
- vpn
Domain booleanExclude External Ip Addresses - Exclude the external IP addresses from the VPN domain of this Security Gateway.
- vpn
Domain stringType - Gateway VPN domain type.
- authentications
Sequence[Get
Management Simple Gateway Vpn Setting Authentication] - Authentication.authentication blocks are documented below.
- link_
selections Sequence[GetManagement Simple Gateway Vpn Setting Link Selection] - Link Selection.link_selection blocks are documented below.
- maximum_
concurrent_ floatike_ negotiations - N/A
- maximum_
concurrent_ floattunnels - N/A
- office_
modes Sequence[GetManagement Simple Gateway Vpn Setting Office Mode] - Office Mode. Notation Wide Impact - Office Mode apply IPSec VPN Software Blade clients and to the Mobile Access Software Blade clients.office_mode blocks are documented below.
- remote_
accesses Sequence[GetManagement Simple Gateway Vpn Setting Remote Access] - Remote Access.remote_access blocks are documented below.
- vpn_
domain str - Gateway VPN domain identified by the name or UID.
- vpn_
domain_ boolexclude_ external_ ip_ addresses - Exclude the external IP addresses from the VPN domain of this Security Gateway.
- vpn_
domain_ strtype - Gateway VPN domain type.
- authentications List<Property Map>
- Authentication.authentication blocks are documented below.
- link
Selections List<Property Map> - Link Selection.link_selection blocks are documented below.
- maximum
Concurrent NumberIke Negotiations - N/A
- maximum
Concurrent NumberTunnels - N/A
- office
Modes List<Property Map> - Office Mode. Notation Wide Impact - Office Mode apply IPSec VPN Software Blade clients and to the Mobile Access Software Blade clients.office_mode blocks are documented below.
- remote
Accesses List<Property Map> - Remote Access.remote_access blocks are documented below.
- vpn
Domain String - Gateway VPN domain identified by the name or UID.
- vpn
Domain BooleanExclude External Ip Addresses - Exclude the external IP addresses from the VPN domain of this Security Gateway.
- vpn
Domain StringType - Gateway VPN domain type.
GetManagementSimpleGatewayVpnSettingAuthentication
- Authentication
Clients List<string> - Collection of VPN Authentication clients identified by the name or UID.authentication_clients blocks are documented below.
- Authentication
Clients []string - Collection of VPN Authentication clients identified by the name or UID.authentication_clients blocks are documented below.
- authentication
Clients List<String> - Collection of VPN Authentication clients identified by the name or UID.authentication_clients blocks are documented below.
- authentication
Clients string[] - Collection of VPN Authentication clients identified by the name or UID.authentication_clients blocks are documented below.
- authentication_
clients Sequence[str] - Collection of VPN Authentication clients identified by the name or UID.authentication_clients blocks are documented below.
- authentication
Clients List<String> - Collection of VPN Authentication clients identified by the name or UID.authentication_clients blocks are documented below.
GetManagementSimpleGatewayVpnSettingLinkSelection
- Dns
Resolving stringHostname - DNS Resolving Hostname. Must be set when "ip-selection" was selected to be "dns-resolving-from-hostname".
- Ip
Address string - Ip
Selection string
- Dns
Resolving stringHostname - DNS Resolving Hostname. Must be set when "ip-selection" was selected to be "dns-resolving-from-hostname".
- Ip
Address string - Ip
Selection string
- dns
Resolving StringHostname - DNS Resolving Hostname. Must be set when "ip-selection" was selected to be "dns-resolving-from-hostname".
- ip
Address String - ip
Selection String
- dns
Resolving stringHostname - DNS Resolving Hostname. Must be set when "ip-selection" was selected to be "dns-resolving-from-hostname".
- ip
Address string - ip
Selection string
- dns_
resolving_ strhostname - DNS Resolving Hostname. Must be set when "ip-selection" was selected to be "dns-resolving-from-hostname".
- ip_
address str - ip_
selection str
- dns
Resolving StringHostname - DNS Resolving Hostname. Must be set when "ip-selection" was selected to be "dns-resolving-from-hostname".
- ip
Address String - ip
Selection String
GetManagementSimpleGatewayVpnSettingOfficeMode
- Allocate
Ip List<GetAddress Froms Management Simple Gateway Vpn Setting Office Mode Allocate Ip Address From> - Allocate IP address Method. Allocate IP address by sequentially trying the given methods until success.allocate_ip_address_from blocks are documented below.
- Anti
Spoofing stringAdditional Addresses - Additional IP Addresses for Anti-Spoofing. Identified by name or UID. Must be set when "perform-anti-spoofings" is true.
- Group string
- Group. Identified by name or UID. Must be set when "office-mode-permissions" was selected to be "group".
- Mode string
- Office Mode Permissions. When selected to be "off", all the other definitions are irrelevant.
- Perform
Anti boolSpoofing - Perform Anti-Spoofing on Office Mode addresses.
- Support
Multiple boolInterfaces - Support connectivity enhancement for gateways with multiple external interfaces.
- Allocate
Ip []GetAddress Froms Management Simple Gateway Vpn Setting Office Mode Allocate Ip Address From - Allocate IP address Method. Allocate IP address by sequentially trying the given methods until success.allocate_ip_address_from blocks are documented below.
- Anti
Spoofing stringAdditional Addresses - Additional IP Addresses for Anti-Spoofing. Identified by name or UID. Must be set when "perform-anti-spoofings" is true.
- Group string
- Group. Identified by name or UID. Must be set when "office-mode-permissions" was selected to be "group".
- Mode string
- Office Mode Permissions. When selected to be "off", all the other definitions are irrelevant.
- Perform
Anti boolSpoofing - Perform Anti-Spoofing on Office Mode addresses.
- Support
Multiple boolInterfaces - Support connectivity enhancement for gateways with multiple external interfaces.
- allocate
Ip List<GetAddress Froms Management Simple Gateway Vpn Setting Office Mode Allocate Ip Address From> - Allocate IP address Method. Allocate IP address by sequentially trying the given methods until success.allocate_ip_address_from blocks are documented below.
- anti
Spoofing StringAdditional Addresses - Additional IP Addresses for Anti-Spoofing. Identified by name or UID. Must be set when "perform-anti-spoofings" is true.
- group String
- Group. Identified by name or UID. Must be set when "office-mode-permissions" was selected to be "group".
- mode String
- Office Mode Permissions. When selected to be "off", all the other definitions are irrelevant.
- perform
Anti BooleanSpoofing - Perform Anti-Spoofing on Office Mode addresses.
- support
Multiple BooleanInterfaces - Support connectivity enhancement for gateways with multiple external interfaces.
- allocate
Ip GetAddress Froms Management Simple Gateway Vpn Setting Office Mode Allocate Ip Address From[] - Allocate IP address Method. Allocate IP address by sequentially trying the given methods until success.allocate_ip_address_from blocks are documented below.
- anti
Spoofing stringAdditional Addresses - Additional IP Addresses for Anti-Spoofing. Identified by name or UID. Must be set when "perform-anti-spoofings" is true.
- group string
- Group. Identified by name or UID. Must be set when "office-mode-permissions" was selected to be "group".
- mode string
- Office Mode Permissions. When selected to be "off", all the other definitions are irrelevant.
- perform
Anti booleanSpoofing - Perform Anti-Spoofing on Office Mode addresses.
- support
Multiple booleanInterfaces - Support connectivity enhancement for gateways with multiple external interfaces.
- allocate_
ip_ Sequence[Getaddress_ froms Management Simple Gateway Vpn Setting Office Mode Allocate Ip Address From] - Allocate IP address Method. Allocate IP address by sequentially trying the given methods until success.allocate_ip_address_from blocks are documented below.
- anti_
spoofing_ stradditional_ addresses - Additional IP Addresses for Anti-Spoofing. Identified by name or UID. Must be set when "perform-anti-spoofings" is true.
- group str
- Group. Identified by name or UID. Must be set when "office-mode-permissions" was selected to be "group".
- mode str
- Office Mode Permissions. When selected to be "off", all the other definitions are irrelevant.
- perform_
anti_ boolspoofing - Perform Anti-Spoofing on Office Mode addresses.
- support_
multiple_ boolinterfaces - Support connectivity enhancement for gateways with multiple external interfaces.
- allocate
Ip List<Property Map>Address Froms - Allocate IP address Method. Allocate IP address by sequentially trying the given methods until success.allocate_ip_address_from blocks are documented below.
- anti
Spoofing StringAdditional Addresses - Additional IP Addresses for Anti-Spoofing. Identified by name or UID. Must be set when "perform-anti-spoofings" is true.
- group String
- Group. Identified by name or UID. Must be set when "office-mode-permissions" was selected to be "group".
- mode String
- Office Mode Permissions. When selected to be "off", all the other definitions are irrelevant.
- perform
Anti BooleanSpoofing - Perform Anti-Spoofing on Office Mode addresses.
- support
Multiple BooleanInterfaces - Support connectivity enhancement for gateways with multiple external interfaces.
GetManagementSimpleGatewayVpnSettingOfficeModeAllocateIpAddressFrom
- Allocate
Method string - Using either Manual (IP Pool) or Automatic (DHCP). Must be set when "use-allocate-method" is true.
- Dhcp
Mac stringAddress - Calculated MAC address for DHCP allocation. Must be set when "allocate-method" was selected to be "automatic".
- Dhcp
Server string - DHCP Server. Identified by name or UID. Must be set when "allocate-method" was selected to be "automatic".
- Manual
Network string - Manual Network. Identified by name or UID. Must be set when "allocate-method" was selected to be "manual".
- Optional
Parameters List<GetManagement Simple Gateway Vpn Setting Office Mode Allocate Ip Address From Optional Parameter> - This configuration applies to all Office Mode methods except Automatic (using DHCP) and ipassignment.conf entries which contain this data.optional_parameters blocks are documented below.
- Radius
Server bool - Radius server used to authenticate the user.
- Use
Allocate boolMethod - Use Allocate Method.
- Virtual
Ip stringAddress - Virtual IPV4 address for DHCP server replies. Must be set when "allocate-method" was selected to be "automatic".
- Allocate
Method string - Using either Manual (IP Pool) or Automatic (DHCP). Must be set when "use-allocate-method" is true.
- Dhcp
Mac stringAddress - Calculated MAC address for DHCP allocation. Must be set when "allocate-method" was selected to be "automatic".
- Dhcp
Server string - DHCP Server. Identified by name or UID. Must be set when "allocate-method" was selected to be "automatic".
- Manual
Network string - Manual Network. Identified by name or UID. Must be set when "allocate-method" was selected to be "manual".
- Optional
Parameters []GetManagement Simple Gateway Vpn Setting Office Mode Allocate Ip Address From Optional Parameter - This configuration applies to all Office Mode methods except Automatic (using DHCP) and ipassignment.conf entries which contain this data.optional_parameters blocks are documented below.
- Radius
Server bool - Radius server used to authenticate the user.
- Use
Allocate boolMethod - Use Allocate Method.
- Virtual
Ip stringAddress - Virtual IPV4 address for DHCP server replies. Must be set when "allocate-method" was selected to be "automatic".
- allocate
Method String - Using either Manual (IP Pool) or Automatic (DHCP). Must be set when "use-allocate-method" is true.
- dhcp
Mac StringAddress - Calculated MAC address for DHCP allocation. Must be set when "allocate-method" was selected to be "automatic".
- dhcp
Server String - DHCP Server. Identified by name or UID. Must be set when "allocate-method" was selected to be "automatic".
- manual
Network String - Manual Network. Identified by name or UID. Must be set when "allocate-method" was selected to be "manual".
- optional
Parameters List<GetManagement Simple Gateway Vpn Setting Office Mode Allocate Ip Address From Optional Parameter> - This configuration applies to all Office Mode methods except Automatic (using DHCP) and ipassignment.conf entries which contain this data.optional_parameters blocks are documented below.
- radius
Server Boolean - Radius server used to authenticate the user.
- use
Allocate BooleanMethod - Use Allocate Method.
- virtual
Ip StringAddress - Virtual IPV4 address for DHCP server replies. Must be set when "allocate-method" was selected to be "automatic".
- allocate
Method string - Using either Manual (IP Pool) or Automatic (DHCP). Must be set when "use-allocate-method" is true.
- dhcp
Mac stringAddress - Calculated MAC address for DHCP allocation. Must be set when "allocate-method" was selected to be "automatic".
- dhcp
Server string - DHCP Server. Identified by name or UID. Must be set when "allocate-method" was selected to be "automatic".
- manual
Network string - Manual Network. Identified by name or UID. Must be set when "allocate-method" was selected to be "manual".
- optional
Parameters GetManagement Simple Gateway Vpn Setting Office Mode Allocate Ip Address From Optional Parameter[] - This configuration applies to all Office Mode methods except Automatic (using DHCP) and ipassignment.conf entries which contain this data.optional_parameters blocks are documented below.
- radius
Server boolean - Radius server used to authenticate the user.
- use
Allocate booleanMethod - Use Allocate Method.
- virtual
Ip stringAddress - Virtual IPV4 address for DHCP server replies. Must be set when "allocate-method" was selected to be "automatic".
- allocate_
method str - Using either Manual (IP Pool) or Automatic (DHCP). Must be set when "use-allocate-method" is true.
- dhcp_
mac_ straddress - Calculated MAC address for DHCP allocation. Must be set when "allocate-method" was selected to be "automatic".
- dhcp_
server str - DHCP Server. Identified by name or UID. Must be set when "allocate-method" was selected to be "automatic".
- manual_
network str - Manual Network. Identified by name or UID. Must be set when "allocate-method" was selected to be "manual".
- optional_
parameters Sequence[GetManagement Simple Gateway Vpn Setting Office Mode Allocate Ip Address From Optional Parameter] - This configuration applies to all Office Mode methods except Automatic (using DHCP) and ipassignment.conf entries which contain this data.optional_parameters blocks are documented below.
- radius_
server bool - Radius server used to authenticate the user.
- use_
allocate_ boolmethod - Use Allocate Method.
- virtual_
ip_ straddress - Virtual IPV4 address for DHCP server replies. Must be set when "allocate-method" was selected to be "automatic".
- allocate
Method String - Using either Manual (IP Pool) or Automatic (DHCP). Must be set when "use-allocate-method" is true.
- dhcp
Mac StringAddress - Calculated MAC address for DHCP allocation. Must be set when "allocate-method" was selected to be "automatic".
- dhcp
Server String - DHCP Server. Identified by name or UID. Must be set when "allocate-method" was selected to be "automatic".
- manual
Network String - Manual Network. Identified by name or UID. Must be set when "allocate-method" was selected to be "manual".
- optional
Parameters List<Property Map> - This configuration applies to all Office Mode methods except Automatic (using DHCP) and ipassignment.conf entries which contain this data.optional_parameters blocks are documented below.
- radius
Server Boolean - Radius server used to authenticate the user.
- use
Allocate BooleanMethod - Use Allocate Method.
- virtual
Ip StringAddress - Virtual IPV4 address for DHCP server replies. Must be set when "allocate-method" was selected to be "automatic".
GetManagementSimpleGatewayVpnSettingOfficeModeAllocateIpAddressFromOptionalParameter
- Dns
Suffixes string - DNS Suffixes.
- First
Backup stringDns Server - First Backup DNS Server. Identified by name or UID. Must be set when "use-first-backup-dns-server" is true and can not be set when "use-first-backup-dns-server" is false.
- First
Backup stringWins Server - First Backup WINS Server. Identified by name or UID. Must be set when "use-first-backup-wins-server" is true and can not be set when "use-first-backup-wins-server" is false.
- Ip
Lease doubleDuration - Primary
Dns stringServer - Primary DNS Server. Identified by name or UID. Must be set when "use-primary-dns-server" is true and can not be set when "use-primary-dns-server" is false.
- Primary
Wins stringServer - Primary WINS Server. Identified by name or UID. Must be set when "use-primary-wins-server" is true and can not be set when "use-primary-wins-server" is false.
- Second
Backup stringDns Server - Second Backup DNS Server. Identified by name or UID. Must be set when "use-second-backup-dns-server" is true and can not be set when "use-second-backup-dns-server" is false.
- Second
Backup stringWins Server - Second Backup WINS Server. Identified by name or UID. Must be set when "use-second-backup-wins-server" is true and can not be set when "use-second-backup-wins-server" is false.
- Use
First boolBackup Dns Server - Use First Backup DNS Server.
- Use
First boolBackup Wins Server - Use First Backup WINS Server.
- Use
Primary boolDns Server - Use Primary DNS Server.
- Use
Primary boolWins Server - Use Primary WINS Server.
- Use
Second boolBackup Dns Server - Use Second Backup DNS Server.
- Use
Second boolBackup Wins Server - Use Second Backup WINS Server.
- Dns
Suffixes string - DNS Suffixes.
- First
Backup stringDns Server - First Backup DNS Server. Identified by name or UID. Must be set when "use-first-backup-dns-server" is true and can not be set when "use-first-backup-dns-server" is false.
- First
Backup stringWins Server - First Backup WINS Server. Identified by name or UID. Must be set when "use-first-backup-wins-server" is true and can not be set when "use-first-backup-wins-server" is false.
- Ip
Lease float64Duration - Primary
Dns stringServer - Primary DNS Server. Identified by name or UID. Must be set when "use-primary-dns-server" is true and can not be set when "use-primary-dns-server" is false.
- Primary
Wins stringServer - Primary WINS Server. Identified by name or UID. Must be set when "use-primary-wins-server" is true and can not be set when "use-primary-wins-server" is false.
- Second
Backup stringDns Server - Second Backup DNS Server. Identified by name or UID. Must be set when "use-second-backup-dns-server" is true and can not be set when "use-second-backup-dns-server" is false.
- Second
Backup stringWins Server - Second Backup WINS Server. Identified by name or UID. Must be set when "use-second-backup-wins-server" is true and can not be set when "use-second-backup-wins-server" is false.
- Use
First boolBackup Dns Server - Use First Backup DNS Server.
- Use
First boolBackup Wins Server - Use First Backup WINS Server.
- Use
Primary boolDns Server - Use Primary DNS Server.
- Use
Primary boolWins Server - Use Primary WINS Server.
- Use
Second boolBackup Dns Server - Use Second Backup DNS Server.
- Use
Second boolBackup Wins Server - Use Second Backup WINS Server.
- dns
Suffixes String - DNS Suffixes.
- first
Backup StringDns Server - First Backup DNS Server. Identified by name or UID. Must be set when "use-first-backup-dns-server" is true and can not be set when "use-first-backup-dns-server" is false.
- first
Backup StringWins Server - First Backup WINS Server. Identified by name or UID. Must be set when "use-first-backup-wins-server" is true and can not be set when "use-first-backup-wins-server" is false.
- ip
Lease DoubleDuration - primary
Dns StringServer - Primary DNS Server. Identified by name or UID. Must be set when "use-primary-dns-server" is true and can not be set when "use-primary-dns-server" is false.
- primary
Wins StringServer - Primary WINS Server. Identified by name or UID. Must be set when "use-primary-wins-server" is true and can not be set when "use-primary-wins-server" is false.
- second
Backup StringDns Server - Second Backup DNS Server. Identified by name or UID. Must be set when "use-second-backup-dns-server" is true and can not be set when "use-second-backup-dns-server" is false.
- second
Backup StringWins Server - Second Backup WINS Server. Identified by name or UID. Must be set when "use-second-backup-wins-server" is true and can not be set when "use-second-backup-wins-server" is false.
- use
First BooleanBackup Dns Server - Use First Backup DNS Server.
- use
First BooleanBackup Wins Server - Use First Backup WINS Server.
- use
Primary BooleanDns Server - Use Primary DNS Server.
- use
Primary BooleanWins Server - Use Primary WINS Server.
- use
Second BooleanBackup Dns Server - Use Second Backup DNS Server.
- use
Second BooleanBackup Wins Server - Use Second Backup WINS Server.
- dns
Suffixes string - DNS Suffixes.
- first
Backup stringDns Server - First Backup DNS Server. Identified by name or UID. Must be set when "use-first-backup-dns-server" is true and can not be set when "use-first-backup-dns-server" is false.
- first
Backup stringWins Server - First Backup WINS Server. Identified by name or UID. Must be set when "use-first-backup-wins-server" is true and can not be set when "use-first-backup-wins-server" is false.
- ip
Lease numberDuration - primary
Dns stringServer - Primary DNS Server. Identified by name or UID. Must be set when "use-primary-dns-server" is true and can not be set when "use-primary-dns-server" is false.
- primary
Wins stringServer - Primary WINS Server. Identified by name or UID. Must be set when "use-primary-wins-server" is true and can not be set when "use-primary-wins-server" is false.
- second
Backup stringDns Server - Second Backup DNS Server. Identified by name or UID. Must be set when "use-second-backup-dns-server" is true and can not be set when "use-second-backup-dns-server" is false.
- second
Backup stringWins Server - Second Backup WINS Server. Identified by name or UID. Must be set when "use-second-backup-wins-server" is true and can not be set when "use-second-backup-wins-server" is false.
- use
First booleanBackup Dns Server - Use First Backup DNS Server.
- use
First booleanBackup Wins Server - Use First Backup WINS Server.
- use
Primary booleanDns Server - Use Primary DNS Server.
- use
Primary booleanWins Server - Use Primary WINS Server.
- use
Second booleanBackup Dns Server - Use Second Backup DNS Server.
- use
Second booleanBackup Wins Server - Use Second Backup WINS Server.
- dns_
suffixes str - DNS Suffixes.
- first_
backup_ strdns_ server - First Backup DNS Server. Identified by name or UID. Must be set when "use-first-backup-dns-server" is true and can not be set when "use-first-backup-dns-server" is false.
- first_
backup_ strwins_ server - First Backup WINS Server. Identified by name or UID. Must be set when "use-first-backup-wins-server" is true and can not be set when "use-first-backup-wins-server" is false.
- ip_
lease_ floatduration - primary_
dns_ strserver - Primary DNS Server. Identified by name or UID. Must be set when "use-primary-dns-server" is true and can not be set when "use-primary-dns-server" is false.
- primary_
wins_ strserver - Primary WINS Server. Identified by name or UID. Must be set when "use-primary-wins-server" is true and can not be set when "use-primary-wins-server" is false.
- second_
backup_ strdns_ server - Second Backup DNS Server. Identified by name or UID. Must be set when "use-second-backup-dns-server" is true and can not be set when "use-second-backup-dns-server" is false.
- second_
backup_ strwins_ server - Second Backup WINS Server. Identified by name or UID. Must be set when "use-second-backup-wins-server" is true and can not be set when "use-second-backup-wins-server" is false.
- use_
first_ boolbackup_ dns_ server - Use First Backup DNS Server.
- use_
first_ boolbackup_ wins_ server - Use First Backup WINS Server.
- use_
primary_ booldns_ server - Use Primary DNS Server.
- use_
primary_ boolwins_ server - Use Primary WINS Server.
- use_
second_ boolbackup_ dns_ server - Use Second Backup DNS Server.
- use_
second_ boolbackup_ wins_ server - Use Second Backup WINS Server.
- dns
Suffixes String - DNS Suffixes.
- first
Backup StringDns Server - First Backup DNS Server. Identified by name or UID. Must be set when "use-first-backup-dns-server" is true and can not be set when "use-first-backup-dns-server" is false.
- first
Backup StringWins Server - First Backup WINS Server. Identified by name or UID. Must be set when "use-first-backup-wins-server" is true and can not be set when "use-first-backup-wins-server" is false.
- ip
Lease NumberDuration - primary
Dns StringServer - Primary DNS Server. Identified by name or UID. Must be set when "use-primary-dns-server" is true and can not be set when "use-primary-dns-server" is false.
- primary
Wins StringServer - Primary WINS Server. Identified by name or UID. Must be set when "use-primary-wins-server" is true and can not be set when "use-primary-wins-server" is false.
- second
Backup StringDns Server - Second Backup DNS Server. Identified by name or UID. Must be set when "use-second-backup-dns-server" is true and can not be set when "use-second-backup-dns-server" is false.
- second
Backup StringWins Server - Second Backup WINS Server. Identified by name or UID. Must be set when "use-second-backup-wins-server" is true and can not be set when "use-second-backup-wins-server" is false.
- use
First BooleanBackup Dns Server - Use First Backup DNS Server.
- use
First BooleanBackup Wins Server - Use First Backup WINS Server.
- use
Primary BooleanDns Server - Use Primary DNS Server.
- use
Primary BooleanWins Server - Use Primary WINS Server.
- use
Second BooleanBackup Dns Server - Use Second Backup DNS Server.
- use
Second BooleanBackup Wins Server - Use Second Backup WINS Server.
GetManagementSimpleGatewayVpnSettingRemoteAccess
- Allow
Vpn boolClients To Route Traffic - Allow VPN clients to route traffic.
- L2tp
Auth stringMethod - L2TP Authentication Method. Must be set when "support-l2tp" is true.
- L2tp
Certificate string - L2TP Certificate. Must be set when "l2tp-auth-method" was selected to be "certificate". Insert "defaultCert" when you want to use the default certificate.
- Nat
Traversal stringService - Allocated NAT traversal UDP service. Identified by name or UID. Must be set when "support-nat-traversal-mechanism" is true.
- Support
L2tp bool - Support L2TP (relevant only when office mode is active).
- Support
Nat boolTraversal Mechanism - Support NAT traversal mechanism (UDP encapsulation).
- Support
Visitor boolMode - Support Visitor Mode.
- Visitor
Mode stringInterface - Interface for Visitor Mode. Must be set when "support-visitor-mode" is true. Insert IPV4 Address of existing interface or "All IPs" when you want all interfaces.
- Visitor
Mode stringService - TCP Service for Visitor Mode. Identified by name or UID. Must be set when "support-visitor-mode" is true.
- Allow
Vpn boolClients To Route Traffic - Allow VPN clients to route traffic.
- L2tp
Auth stringMethod - L2TP Authentication Method. Must be set when "support-l2tp" is true.
- L2tp
Certificate string - L2TP Certificate. Must be set when "l2tp-auth-method" was selected to be "certificate". Insert "defaultCert" when you want to use the default certificate.
- Nat
Traversal stringService - Allocated NAT traversal UDP service. Identified by name or UID. Must be set when "support-nat-traversal-mechanism" is true.
- Support
L2tp bool - Support L2TP (relevant only when office mode is active).
- Support
Nat boolTraversal Mechanism - Support NAT traversal mechanism (UDP encapsulation).
- Support
Visitor boolMode - Support Visitor Mode.
- Visitor
Mode stringInterface - Interface for Visitor Mode. Must be set when "support-visitor-mode" is true. Insert IPV4 Address of existing interface or "All IPs" when you want all interfaces.
- Visitor
Mode stringService - TCP Service for Visitor Mode. Identified by name or UID. Must be set when "support-visitor-mode" is true.
- allow
Vpn BooleanClients To Route Traffic - Allow VPN clients to route traffic.
- l2tp
Auth StringMethod - L2TP Authentication Method. Must be set when "support-l2tp" is true.
- l2tp
Certificate String - L2TP Certificate. Must be set when "l2tp-auth-method" was selected to be "certificate". Insert "defaultCert" when you want to use the default certificate.
- nat
Traversal StringService - Allocated NAT traversal UDP service. Identified by name or UID. Must be set when "support-nat-traversal-mechanism" is true.
- support
L2tp Boolean - Support L2TP (relevant only when office mode is active).
- support
Nat BooleanTraversal Mechanism - Support NAT traversal mechanism (UDP encapsulation).
- support
Visitor BooleanMode - Support Visitor Mode.
- visitor
Mode StringInterface - Interface for Visitor Mode. Must be set when "support-visitor-mode" is true. Insert IPV4 Address of existing interface or "All IPs" when you want all interfaces.
- visitor
Mode StringService - TCP Service for Visitor Mode. Identified by name or UID. Must be set when "support-visitor-mode" is true.
- allow
Vpn booleanClients To Route Traffic - Allow VPN clients to route traffic.
- l2tp
Auth stringMethod - L2TP Authentication Method. Must be set when "support-l2tp" is true.
- l2tp
Certificate string - L2TP Certificate. Must be set when "l2tp-auth-method" was selected to be "certificate". Insert "defaultCert" when you want to use the default certificate.
- nat
Traversal stringService - Allocated NAT traversal UDP service. Identified by name or UID. Must be set when "support-nat-traversal-mechanism" is true.
- support
L2tp boolean - Support L2TP (relevant only when office mode is active).
- support
Nat booleanTraversal Mechanism - Support NAT traversal mechanism (UDP encapsulation).
- support
Visitor booleanMode - Support Visitor Mode.
- visitor
Mode stringInterface - Interface for Visitor Mode. Must be set when "support-visitor-mode" is true. Insert IPV4 Address of existing interface or "All IPs" when you want all interfaces.
- visitor
Mode stringService - TCP Service for Visitor Mode. Identified by name or UID. Must be set when "support-visitor-mode" is true.
- allow_
vpn_ boolclients_ to_ route_ traffic - Allow VPN clients to route traffic.
- l2tp_
auth_ strmethod - L2TP Authentication Method. Must be set when "support-l2tp" is true.
- l2tp_
certificate str - L2TP Certificate. Must be set when "l2tp-auth-method" was selected to be "certificate". Insert "defaultCert" when you want to use the default certificate.
- nat_
traversal_ strservice - Allocated NAT traversal UDP service. Identified by name or UID. Must be set when "support-nat-traversal-mechanism" is true.
- support_
l2tp bool - Support L2TP (relevant only when office mode is active).
- support_
nat_ booltraversal_ mechanism - Support NAT traversal mechanism (UDP encapsulation).
- support_
visitor_ boolmode - Support Visitor Mode.
- visitor_
mode_ strinterface - Interface for Visitor Mode. Must be set when "support-visitor-mode" is true. Insert IPV4 Address of existing interface or "All IPs" when you want all interfaces.
- visitor_
mode_ strservice - TCP Service for Visitor Mode. Identified by name or UID. Must be set when "support-visitor-mode" is true.
- allow
Vpn BooleanClients To Route Traffic - Allow VPN clients to route traffic.
- l2tp
Auth StringMethod - L2TP Authentication Method. Must be set when "support-l2tp" is true.
- l2tp
Certificate String - L2TP Certificate. Must be set when "l2tp-auth-method" was selected to be "certificate". Insert "defaultCert" when you want to use the default certificate.
- nat
Traversal StringService - Allocated NAT traversal UDP service. Identified by name or UID. Must be set when "support-nat-traversal-mechanism" is true.
- support
L2tp Boolean - Support L2TP (relevant only when office mode is active).
- support
Nat BooleanTraversal Mechanism - Support NAT traversal mechanism (UDP encapsulation).
- support
Visitor BooleanMode - Support Visitor Mode.
- visitor
Mode StringInterface - Interface for Visitor Mode. Must be set when "support-visitor-mode" is true. Insert IPV4 Address of existing interface or "All IPs" when you want all interfaces.
- visitor
Mode StringService - TCP Service for Visitor Mode. Identified by name or UID. Must be set when "support-visitor-mode" is true.
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpointTerraform Provider.
Viewing docs for checkpoint 3.0.0
published on Monday, Mar 30, 2026 by checkpointsw
published on Monday, Mar 30, 2026 by checkpointsw
