1. Packages
  2. Checkpoint Provider
  3. API Docs
  4. getManagementSimpleCluster
Viewing docs for checkpoint 3.0.0
published on Monday, Mar 30, 2026 by checkpointsw
Viewing docs for checkpoint 3.0.0
published on Monday, Mar 30, 2026 by checkpointsw

    This resource allows you to execute Check Point Simple Cluster.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const simpleClusterManagementSimpleCluster = new checkpoint.ManagementSimpleCluster("simple_cluster", {
        name: "mycluster",
        ipv4Address: "1.2.3.4",
        version: "R81",
        hardware: "Open server",
        sendLogsToServers: ["mylogserver"],
        firewall: true,
    });
    const simpleCluster = checkpoint.getManagementSimpleCluster({
        name: test.name,
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    simple_cluster_management_simple_cluster = checkpoint.ManagementSimpleCluster("simple_cluster",
        name="mycluster",
        ipv4_address="1.2.3.4",
        version="R81",
        hardware="Open server",
        send_logs_to_servers=["mylogserver"],
        firewall=True)
    simple_cluster = checkpoint.get_management_simple_cluster(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.NewManagementSimpleCluster(ctx, "simple_cluster", &checkpoint.ManagementSimpleClusterArgs{
    			Name:        pulumi.String("mycluster"),
    			Ipv4Address: pulumi.String("1.2.3.4"),
    			Version:     pulumi.String("R81"),
    			Hardware:    pulumi.String("Open server"),
    			SendLogsToServers: pulumi.StringArray{
    				pulumi.String("mylogserver"),
    			},
    			Firewall: pulumi.Bool(true),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = checkpoint.LookupManagementSimpleCluster(ctx, &checkpoint.LookupManagementSimpleClusterArgs{
    			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 simpleClusterManagementSimpleCluster = new Checkpoint.ManagementSimpleCluster("simple_cluster", new()
        {
            Name = "mycluster",
            Ipv4Address = "1.2.3.4",
            Version = "R81",
            Hardware = "Open server",
            SendLogsToServers = new[]
            {
                "mylogserver",
            },
            Firewall = true,
        });
    
        var simpleCluster = Checkpoint.GetManagementSimpleCluster.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.ManagementSimpleCluster;
    import com.pulumi.checkpoint.ManagementSimpleClusterArgs;
    import com.pulumi.checkpoint.CheckpointFunctions;
    import com.pulumi.checkpoint.inputs.GetManagementSimpleClusterArgs;
    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 simpleClusterManagementSimpleCluster = new ManagementSimpleCluster("simpleClusterManagementSimpleCluster", ManagementSimpleClusterArgs.builder()
                .name("mycluster")
                .ipv4Address("1.2.3.4")
                .version("R81")
                .hardware("Open server")
                .sendLogsToServers("mylogserver")
                .firewall(true)
                .build());
    
            final var simpleCluster = CheckpointFunctions.getManagementSimpleCluster(GetManagementSimpleClusterArgs.builder()
                .name(test.name())
                .build());
    
        }
    }
    
    resources:
      simpleClusterManagementSimpleCluster:
        type: checkpoint:ManagementSimpleCluster
        name: simple_cluster
        properties:
          name: mycluster
          ipv4Address: 1.2.3.4
          version: R81
          hardware: Open server
          sendLogsToServers:
            - mylogserver
          firewall: true
    variables:
      simpleCluster:
        fn::invoke:
          function: checkpoint:getManagementSimpleCluster
          arguments:
            name: ${test.name}
    

    Using getManagementSimpleCluster

    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 getManagementSimpleCluster(args: GetManagementSimpleClusterArgs, opts?: InvokeOptions): Promise<GetManagementSimpleClusterResult>
    function getManagementSimpleClusterOutput(args: GetManagementSimpleClusterOutputArgs, opts?: InvokeOptions): Output<GetManagementSimpleClusterResult>
    def get_management_simple_cluster(id: Optional[str] = None,
                                      name: Optional[str] = None,
                                      uid: Optional[str] = None,
                                      opts: Optional[InvokeOptions] = None) -> GetManagementSimpleClusterResult
    def get_management_simple_cluster_output(id: Optional[pulumi.Input[str]] = None,
                                      name: Optional[pulumi.Input[str]] = None,
                                      uid: Optional[pulumi.Input[str]] = None,
                                      opts: Optional[InvokeOptions] = None) -> Output[GetManagementSimpleClusterResult]
    func LookupManagementSimpleCluster(ctx *Context, args *LookupManagementSimpleClusterArgs, opts ...InvokeOption) (*LookupManagementSimpleClusterResult, error)
    func LookupManagementSimpleClusterOutput(ctx *Context, args *LookupManagementSimpleClusterOutputArgs, opts ...InvokeOption) LookupManagementSimpleClusterResultOutput

    > Note: This function is named LookupManagementSimpleCluster in the Go SDK.

    public static class GetManagementSimpleCluster 
    {
        public static Task<GetManagementSimpleClusterResult> InvokeAsync(GetManagementSimpleClusterArgs args, InvokeOptions? opts = null)
        public static Output<GetManagementSimpleClusterResult> Invoke(GetManagementSimpleClusterInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetManagementSimpleClusterResult> getManagementSimpleCluster(GetManagementSimpleClusterArgs args, InvokeOptions options)
    public static Output<GetManagementSimpleClusterResult> getManagementSimpleCluster(GetManagementSimpleClusterArgs args, InvokeOptions options)
    
    fn::invoke:
      function: checkpoint:index/getManagementSimpleCluster:getManagementSimpleCluster
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    Name string
    Object name.
    Uid string
    Object unique identifier.
    Id string
    Name string
    Object name.
    Uid string
    Object unique identifier.
    id String
    name String
    Object name.
    uid String
    Object unique identifier.
    id string
    name string
    Object name.
    uid string
    Object unique identifier.
    id str
    name str
    Object name.
    uid str
    Object unique identifier.
    id String
    name String
    Object name.
    uid String
    Object unique identifier.

    getManagementSimpleCluster Result

    The following output properties are available:

    AdvancedSettings List<GetManagementSimpleClusterAdvancedSetting>
    AntiBot bool
    AntiVirus bool
    ApplicationControl bool
    ClusterMode string
    Color string
    Comments string
    ContentAwareness bool
    DataAwareness bool
    DynamicIp bool
    EnableHttpsInspection bool
    FetchPolicies List<string>
    Firewall bool
    FirewallSettings List<GetManagementSimpleClusterFirewallSetting>
    GeoMode bool
    Hardware string
    HitCount bool
    HttpsInspections List<GetManagementSimpleClusterHttpsInspection>
    Id string
    IdentityAwareness bool
    IdentityAwarenessSettings List<GetManagementSimpleClusterIdentityAwarenessSetting>
    Interfaces List<GetManagementSimpleClusterInterface>
    Ips bool
    IpsSettings List<GetManagementSimpleClusterIpsSetting>
    IpsUpdatePolicy string
    Ipv4Address string
    Ipv6Address string
    LogsSettings List<GetManagementSimpleClusterLogsSetting>
    Members List<GetManagementSimpleClusterMember>
    NatHideInternalInterfaces bool
    NatSettings List<GetManagementSimpleClusterNatSetting>
    OsName string
    PlatformPortalSettings List<GetManagementSimpleClusterPlatformPortalSetting>
    ProxySettings List<GetManagementSimpleClusterProxySetting>
    Qos bool
    SaveLogsLocally bool
    SendAlertsToServers List<string>
    SendLogsToBackupServers List<string>
    SendLogsToServers List<string>
    SicName string
    SicState string
    Tags List<string>
    ThreatEmulation bool
    UrlFiltering bool
    UsercheckPortalSettings List<GetManagementSimpleClusterUsercheckPortalSetting>
    Version string
    Vpn bool
    VpnSettings List<GetManagementSimpleClusterVpnSetting>
    ZeroPhishing bool
    ZeroPhishingFqdn string
    Name string
    Uid string
    AdvancedSettings []GetManagementSimpleClusterAdvancedSetting
    AntiBot bool
    AntiVirus bool
    ApplicationControl bool
    ClusterMode string
    Color string
    Comments string
    ContentAwareness bool
    DataAwareness bool
    DynamicIp bool
    EnableHttpsInspection bool
    FetchPolicies []string
    Firewall bool
    FirewallSettings []GetManagementSimpleClusterFirewallSetting
    GeoMode bool
    Hardware string
    HitCount bool
    HttpsInspections []GetManagementSimpleClusterHttpsInspection
    Id string
    IdentityAwareness bool
    IdentityAwarenessSettings []GetManagementSimpleClusterIdentityAwarenessSetting
    Interfaces []GetManagementSimpleClusterInterface
    Ips bool
    IpsSettings []GetManagementSimpleClusterIpsSetting
    IpsUpdatePolicy string
    Ipv4Address string
    Ipv6Address string
    LogsSettings []GetManagementSimpleClusterLogsSetting
    Members []GetManagementSimpleClusterMember
    NatHideInternalInterfaces bool
    NatSettings []GetManagementSimpleClusterNatSetting
    OsName string
    PlatformPortalSettings []GetManagementSimpleClusterPlatformPortalSetting
    ProxySettings []GetManagementSimpleClusterProxySetting
    Qos bool
    SaveLogsLocally bool
    SendAlertsToServers []string
    SendLogsToBackupServers []string
    SendLogsToServers []string
    SicName string
    SicState string
    Tags []string
    ThreatEmulation bool
    UrlFiltering bool
    UsercheckPortalSettings []GetManagementSimpleClusterUsercheckPortalSetting
    Version string
    Vpn bool
    VpnSettings []GetManagementSimpleClusterVpnSetting
    ZeroPhishing bool
    ZeroPhishingFqdn string
    Name string
    Uid string
    advancedSettings List<GetManagementSimpleClusterAdvancedSetting>
    antiBot Boolean
    antiVirus Boolean
    applicationControl Boolean
    clusterMode String
    color String
    comments String
    contentAwareness Boolean
    dataAwareness Boolean
    dynamicIp Boolean
    enableHttpsInspection Boolean
    fetchPolicies List<String>
    firewall Boolean
    firewallSettings List<GetManagementSimpleClusterFirewallSetting>
    geoMode Boolean
    hardware String
    hitCount Boolean
    httpsInspections List<GetManagementSimpleClusterHttpsInspection>
    id String
    identityAwareness Boolean
    identityAwarenessSettings List<GetManagementSimpleClusterIdentityAwarenessSetting>
    interfaces List<GetManagementSimpleClusterInterface>
    ips Boolean
    ipsSettings List<GetManagementSimpleClusterIpsSetting>
    ipsUpdatePolicy String
    ipv4Address String
    ipv6Address String
    logsSettings List<GetManagementSimpleClusterLogsSetting>
    members List<GetManagementSimpleClusterMember>
    natHideInternalInterfaces Boolean
    natSettings List<GetManagementSimpleClusterNatSetting>
    osName String
    platformPortalSettings List<GetManagementSimpleClusterPlatformPortalSetting>
    proxySettings List<GetManagementSimpleClusterProxySetting>
    qos Boolean
    saveLogsLocally Boolean
    sendAlertsToServers List<String>
    sendLogsToBackupServers List<String>
    sendLogsToServers List<String>
    sicName String
    sicState String
    tags List<String>
    threatEmulation Boolean
    urlFiltering Boolean
    usercheckPortalSettings List<GetManagementSimpleClusterUsercheckPortalSetting>
    version String
    vpn Boolean
    vpnSettings List<GetManagementSimpleClusterVpnSetting>
    zeroPhishing Boolean
    zeroPhishingFqdn String
    name String
    uid String
    advancedSettings GetManagementSimpleClusterAdvancedSetting[]
    antiBot boolean
    antiVirus boolean
    applicationControl boolean
    clusterMode string
    color string
    comments string
    contentAwareness boolean
    dataAwareness boolean
    dynamicIp boolean
    enableHttpsInspection boolean
    fetchPolicies string[]
    firewall boolean
    firewallSettings GetManagementSimpleClusterFirewallSetting[]
    geoMode boolean
    hardware string
    hitCount boolean
    httpsInspections GetManagementSimpleClusterHttpsInspection[]
    id string
    identityAwareness boolean
    identityAwarenessSettings GetManagementSimpleClusterIdentityAwarenessSetting[]
    interfaces GetManagementSimpleClusterInterface[]
    ips boolean
    ipsSettings GetManagementSimpleClusterIpsSetting[]
    ipsUpdatePolicy string
    ipv4Address string
    ipv6Address string
    logsSettings GetManagementSimpleClusterLogsSetting[]
    members GetManagementSimpleClusterMember[]
    natHideInternalInterfaces boolean
    natSettings GetManagementSimpleClusterNatSetting[]
    osName string
    platformPortalSettings GetManagementSimpleClusterPlatformPortalSetting[]
    proxySettings GetManagementSimpleClusterProxySetting[]
    qos boolean
    saveLogsLocally boolean
    sendAlertsToServers string[]
    sendLogsToBackupServers string[]
    sendLogsToServers string[]
    sicName string
    sicState string
    tags string[]
    threatEmulation boolean
    urlFiltering boolean
    usercheckPortalSettings GetManagementSimpleClusterUsercheckPortalSetting[]
    version string
    vpn boolean
    vpnSettings GetManagementSimpleClusterVpnSetting[]
    zeroPhishing boolean
    zeroPhishingFqdn string
    name string
    uid string
    advanced_settings Sequence[GetManagementSimpleClusterAdvancedSetting]
    anti_bot bool
    anti_virus bool
    application_control bool
    cluster_mode str
    color str
    comments str
    content_awareness bool
    data_awareness bool
    dynamic_ip bool
    enable_https_inspection bool
    fetch_policies Sequence[str]
    firewall bool
    firewall_settings Sequence[GetManagementSimpleClusterFirewallSetting]
    geo_mode bool
    hardware str
    hit_count bool
    https_inspections Sequence[GetManagementSimpleClusterHttpsInspection]
    id str
    identity_awareness bool
    identity_awareness_settings Sequence[GetManagementSimpleClusterIdentityAwarenessSetting]
    interfaces Sequence[GetManagementSimpleClusterInterface]
    ips bool
    ips_settings Sequence[GetManagementSimpleClusterIpsSetting]
    ips_update_policy str
    ipv4_address str
    ipv6_address str
    logs_settings Sequence[GetManagementSimpleClusterLogsSetting]
    members Sequence[GetManagementSimpleClusterMember]
    nat_hide_internal_interfaces bool
    nat_settings Sequence[GetManagementSimpleClusterNatSetting]
    os_name str
    platform_portal_settings Sequence[GetManagementSimpleClusterPlatformPortalSetting]
    proxy_settings Sequence[GetManagementSimpleClusterProxySetting]
    qos bool
    save_logs_locally bool
    send_alerts_to_servers Sequence[str]
    send_logs_to_backup_servers Sequence[str]
    send_logs_to_servers Sequence[str]
    sic_name str
    sic_state str
    tags Sequence[str]
    threat_emulation bool
    url_filtering bool
    usercheck_portal_settings Sequence[GetManagementSimpleClusterUsercheckPortalSetting]
    version str
    vpn bool
    vpn_settings Sequence[GetManagementSimpleClusterVpnSetting]
    zero_phishing bool
    zero_phishing_fqdn str
    name str
    uid str
    advancedSettings List<Property Map>
    antiBot Boolean
    antiVirus Boolean
    applicationControl Boolean
    clusterMode String
    color String
    comments String
    contentAwareness Boolean
    dataAwareness Boolean
    dynamicIp Boolean
    enableHttpsInspection Boolean
    fetchPolicies List<String>
    firewall Boolean
    firewallSettings List<Property Map>
    geoMode Boolean
    hardware String
    hitCount Boolean
    httpsInspections List<Property Map>
    id String
    identityAwareness Boolean
    identityAwarenessSettings List<Property Map>
    interfaces List<Property Map>
    ips Boolean
    ipsSettings List<Property Map>
    ipsUpdatePolicy String
    ipv4Address String
    ipv6Address String
    logsSettings List<Property Map>
    members List<Property Map>
    natHideInternalInterfaces Boolean
    natSettings List<Property Map>
    osName String
    platformPortalSettings List<Property Map>
    proxySettings List<Property Map>
    qos Boolean
    saveLogsLocally Boolean
    sendAlertsToServers List<String>
    sendLogsToBackupServers List<String>
    sendLogsToServers List<String>
    sicName String
    sicState String
    tags List<String>
    threatEmulation Boolean
    urlFiltering Boolean
    usercheckPortalSettings List<Property Map>
    version String
    vpn Boolean
    vpnSettings List<Property Map>
    zeroPhishing Boolean
    zeroPhishingFqdn String
    name String
    uid String

    Supporting Types

    GetManagementSimpleClusterAdvancedSetting

    ConnectionPersistence string
    Handling established connections when installing a new policy.
    Sams List<GetManagementSimpleClusterAdvancedSettingSam>
    SAM.sam blocks are documented below.
    ConnectionPersistence string
    Handling established connections when installing a new policy.
    Sams []GetManagementSimpleClusterAdvancedSettingSam
    SAM.sam blocks are documented below.
    connectionPersistence String
    Handling established connections when installing a new policy.
    sams List<GetManagementSimpleClusterAdvancedSettingSam>
    SAM.sam blocks are documented below.
    connectionPersistence string
    Handling established connections when installing a new policy.
    sams GetManagementSimpleClusterAdvancedSettingSam[]
    SAM.sam blocks are documented below.
    connection_persistence str
    Handling established connections when installing a new policy.
    sams Sequence[GetManagementSimpleClusterAdvancedSettingSam]
    SAM.sam blocks are documented below.
    connectionPersistence String
    Handling established connections when installing a new policy.
    sams List<Property Map>
    SAM.sam blocks are documented below.

    GetManagementSimpleClusterAdvancedSettingSam

    ForwardToOtherSamServers bool
    Forward SAM clients' requests to other SAM servers.
    PurgeSamFiles List<GetManagementSimpleClusterAdvancedSettingSamPurgeSamFile>
    Purge SAM File.purge_sam_file blocks are documented below.
    UseEarlyVersions List<GetManagementSimpleClusterAdvancedSettingSamUseEarlyVersion>
    Use early versions compatibility mode.use_early_versions blocks are documented below.
    ForwardToOtherSamServers bool
    Forward SAM clients' requests to other SAM servers.
    PurgeSamFiles []GetManagementSimpleClusterAdvancedSettingSamPurgeSamFile
    Purge SAM File.purge_sam_file blocks are documented below.
    UseEarlyVersions []GetManagementSimpleClusterAdvancedSettingSamUseEarlyVersion
    Use early versions compatibility mode.use_early_versions blocks are documented below.
    forwardToOtherSamServers Boolean
    Forward SAM clients' requests to other SAM servers.
    purgeSamFiles List<GetManagementSimpleClusterAdvancedSettingSamPurgeSamFile>
    Purge SAM File.purge_sam_file blocks are documented below.
    useEarlyVersions List<GetManagementSimpleClusterAdvancedSettingSamUseEarlyVersion>
    Use early versions compatibility mode.use_early_versions blocks are documented below.
    forwardToOtherSamServers boolean
    Forward SAM clients' requests to other SAM servers.
    purgeSamFiles GetManagementSimpleClusterAdvancedSettingSamPurgeSamFile[]
    Purge SAM File.purge_sam_file blocks are documented below.
    useEarlyVersions GetManagementSimpleClusterAdvancedSettingSamUseEarlyVersion[]
    Use early versions compatibility mode.use_early_versions blocks are documented below.
    forward_to_other_sam_servers bool
    Forward SAM clients' requests to other SAM servers.
    purge_sam_files Sequence[GetManagementSimpleClusterAdvancedSettingSamPurgeSamFile]
    Purge SAM File.purge_sam_file blocks are documented below.
    use_early_versions Sequence[GetManagementSimpleClusterAdvancedSettingSamUseEarlyVersion]
    Use early versions compatibility mode.use_early_versions blocks are documented below.
    forwardToOtherSamServers Boolean
    Forward SAM clients' requests to other SAM servers.
    purgeSamFiles List<Property Map>
    Purge SAM File.purge_sam_file blocks are documented below.
    useEarlyVersions List<Property Map>
    Use early versions compatibility mode.use_early_versions blocks are documented below.

    GetManagementSimpleClusterAdvancedSettingSamPurgeSamFile

    Enabled bool
    Purge SAM File.
    PurgeWhenSizeReachesTo double
    Purge SAM File When it Reaches to.
    Enabled bool
    Purge SAM File.
    PurgeWhenSizeReachesTo float64
    Purge SAM File When it Reaches to.
    enabled Boolean
    Purge SAM File.
    purgeWhenSizeReachesTo Double
    Purge SAM File When it Reaches to.
    enabled boolean
    Purge SAM File.
    purgeWhenSizeReachesTo number
    Purge SAM File When it Reaches to.
    enabled bool
    Purge SAM File.
    purge_when_size_reaches_to float
    Purge SAM File When it Reaches to.
    enabled Boolean
    Purge SAM File.
    purgeWhenSizeReachesTo Number
    Purge SAM File When it Reaches to.

    GetManagementSimpleClusterAdvancedSettingSamUseEarlyVersion

    CompatibilityMode string
    Early versions compatibility mode.
    Enabled bool
    Use early versions compatibility mode.
    CompatibilityMode string
    Early versions compatibility mode.
    Enabled bool
    Use early versions compatibility mode.
    compatibilityMode String
    Early versions compatibility mode.
    enabled Boolean
    Use early versions compatibility mode.
    compatibilityMode 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.
    compatibilityMode String
    Early versions compatibility mode.
    enabled Boolean
    Use early versions compatibility mode.

    GetManagementSimpleClusterFirewallSetting

    GetManagementSimpleClusterHttpsInspection

    BypassOnFailures List<GetManagementSimpleClusterHttpsInspectionBypassOnFailure>
    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.
    DenyExpiredServerCerts List<GetManagementSimpleClusterHttpsInspectionDenyExpiredServerCert>
    Set to be true in order to drop traffic from servers with expired server certificate.deny_expired_server_cert blocks are documented below.
    DenyRevokedServerCerts List<GetManagementSimpleClusterHttpsInspectionDenyRevokedServerCert>
    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.
    DenyUntrustedServerCerts List<GetManagementSimpleClusterHttpsInspectionDenyUntrustedServerCert>
    Set to be true in order to drop traffic from servers with untrusted server certificate.deny_untrusted_server_cert blocks are documented below.
    SiteCategorizationAllowModes List<GetManagementSimpleClusterHttpsInspectionSiteCategorizationAllowMode>
    Set to 'background' in order to allowed requests until categorization is complete.site_categorization_allow_mode blocks are documented below.
    BypassOnFailures []GetManagementSimpleClusterHttpsInspectionBypassOnFailure
    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.
    DenyExpiredServerCerts []GetManagementSimpleClusterHttpsInspectionDenyExpiredServerCert
    Set to be true in order to drop traffic from servers with expired server certificate.deny_expired_server_cert blocks are documented below.
    DenyRevokedServerCerts []GetManagementSimpleClusterHttpsInspectionDenyRevokedServerCert
    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.
    DenyUntrustedServerCerts []GetManagementSimpleClusterHttpsInspectionDenyUntrustedServerCert
    Set to be true in order to drop traffic from servers with untrusted server certificate.deny_untrusted_server_cert blocks are documented below.
    SiteCategorizationAllowModes []GetManagementSimpleClusterHttpsInspectionSiteCategorizationAllowMode
    Set to 'background' in order to allowed requests until categorization is complete.site_categorization_allow_mode blocks are documented below.
    bypassOnFailures List<GetManagementSimpleClusterHttpsInspectionBypassOnFailure>
    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.
    denyExpiredServerCerts List<GetManagementSimpleClusterHttpsInspectionDenyExpiredServerCert>
    Set to be true in order to drop traffic from servers with expired server certificate.deny_expired_server_cert blocks are documented below.
    denyRevokedServerCerts List<GetManagementSimpleClusterHttpsInspectionDenyRevokedServerCert>
    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.
    denyUntrustedServerCerts List<GetManagementSimpleClusterHttpsInspectionDenyUntrustedServerCert>
    Set to be true in order to drop traffic from servers with untrusted server certificate.deny_untrusted_server_cert blocks are documented below.
    siteCategorizationAllowModes List<GetManagementSimpleClusterHttpsInspectionSiteCategorizationAllowMode>
    Set to 'background' in order to allowed requests until categorization is complete.site_categorization_allow_mode blocks are documented below.
    bypassOnFailures GetManagementSimpleClusterHttpsInspectionBypassOnFailure[]
    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.
    denyExpiredServerCerts GetManagementSimpleClusterHttpsInspectionDenyExpiredServerCert[]
    Set to be true in order to drop traffic from servers with expired server certificate.deny_expired_server_cert blocks are documented below.
    denyRevokedServerCerts GetManagementSimpleClusterHttpsInspectionDenyRevokedServerCert[]
    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.
    denyUntrustedServerCerts GetManagementSimpleClusterHttpsInspectionDenyUntrustedServerCert[]
    Set to be true in order to drop traffic from servers with untrusted server certificate.deny_untrusted_server_cert blocks are documented below.
    siteCategorizationAllowModes GetManagementSimpleClusterHttpsInspectionSiteCategorizationAllowMode[]
    Set to 'background' in order to allowed requests until categorization is complete.site_categorization_allow_mode blocks are documented below.
    bypass_on_failures Sequence[GetManagementSimpleClusterHttpsInspectionBypassOnFailure]
    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_server_certs Sequence[GetManagementSimpleClusterHttpsInspectionDenyExpiredServerCert]
    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_server_certs Sequence[GetManagementSimpleClusterHttpsInspectionDenyRevokedServerCert]
    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_server_certs Sequence[GetManagementSimpleClusterHttpsInspectionDenyUntrustedServerCert]
    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_allow_modes Sequence[GetManagementSimpleClusterHttpsInspectionSiteCategorizationAllowMode]
    Set to 'background' in order to allowed requests until categorization is complete.site_categorization_allow_mode blocks are documented below.
    bypassOnFailures List<Property Map>
    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.
    denyExpiredServerCerts List<Property Map>
    Set to be true in order to drop traffic from servers with expired server certificate.deny_expired_server_cert blocks are documented below.
    denyRevokedServerCerts List<Property Map>
    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.
    denyUntrustedServerCerts List<Property Map>
    Set to be true in order to drop traffic from servers with untrusted server certificate.deny_untrusted_server_cert blocks are documented below.
    siteCategorizationAllowModes List<Property Map>
    Set to 'background' in order to allowed requests until categorization is complete.site_categorization_allow_mode blocks are documented below.

    GetManagementSimpleClusterHttpsInspectionBypassOnFailure

    OverrideProfile bool
    Override profile of global configuration.
    Value bool
    Override value.Required only for 'override-profile' is True.
    OverrideProfile bool
    Override profile of global configuration.
    Value bool
    Override value.Required only for 'override-profile' is True.
    overrideProfile Boolean
    Override profile of global configuration.
    value Boolean
    Override value.Required only for 'override-profile' is True.
    overrideProfile 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.
    overrideProfile Boolean
    Override profile of global configuration.
    value Boolean
    Override value.Required only for 'override-profile' is True.

    GetManagementSimpleClusterHttpsInspectionDenyExpiredServerCert

    OverrideProfile bool
    Override profile of global configuration.
    Value bool
    Override value.Required only for 'override-profile' is True.
    OverrideProfile bool
    Override profile of global configuration.
    Value bool
    Override value.Required only for 'override-profile' is True.
    overrideProfile Boolean
    Override profile of global configuration.
    value Boolean
    Override value.Required only for 'override-profile' is True.
    overrideProfile 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.
    overrideProfile Boolean
    Override profile of global configuration.
    value Boolean
    Override value.Required only for 'override-profile' is True.

    GetManagementSimpleClusterHttpsInspectionDenyRevokedServerCert

    OverrideProfile bool
    Override profile of global configuration.
    Value bool
    Override value.Required only for 'override-profile' is True.
    OverrideProfile bool
    Override profile of global configuration.
    Value bool
    Override value.Required only for 'override-profile' is True.
    overrideProfile Boolean
    Override profile of global configuration.
    value Boolean
    Override value.Required only for 'override-profile' is True.
    overrideProfile 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.
    overrideProfile Boolean
    Override profile of global configuration.
    value Boolean
    Override value.Required only for 'override-profile' is True.

    GetManagementSimpleClusterHttpsInspectionDenyUntrustedServerCert

    OverrideProfile bool
    Override profile of global configuration.
    Value bool
    Override value.Required only for 'override-profile' is True.
    OverrideProfile bool
    Override profile of global configuration.
    Value bool
    Override value.Required only for 'override-profile' is True.
    overrideProfile Boolean
    Override profile of global configuration.
    value Boolean
    Override value.Required only for 'override-profile' is True.
    overrideProfile 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.
    overrideProfile Boolean
    Override profile of global configuration.
    value Boolean
    Override value.Required only for 'override-profile' is True.

    GetManagementSimpleClusterHttpsInspectionSiteCategorizationAllowMode

    OverrideProfile bool
    Override profile of global configuration.
    Value string
    Override value.Required only for 'override-profile' is True.
    OverrideProfile bool
    Override profile of global configuration.
    Value string
    Override value.Required only for 'override-profile' is True.
    overrideProfile Boolean
    Override profile of global configuration.
    value String
    Override value.Required only for 'override-profile' is True.
    overrideProfile 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.
    overrideProfile Boolean
    Override profile of global configuration.
    value String
    Override value.Required only for 'override-profile' is True.

    GetManagementSimpleClusterIdentityAwarenessSetting

    BrowserBasedAuthentication bool
    Enable Browser Based Authentication source.
    BrowserBasedAuthenticationSettings List<GetManagementSimpleClusterIdentityAwarenessSettingBrowserBasedAuthenticationSetting>
    Browser Based Authentication settings.browser_based_authentication_settings blocks are documented below.
    IdentityAgent bool
    Enable Identity Agent source.
    IdentityAgentSettings List<GetManagementSimpleClusterIdentityAwarenessSettingIdentityAgentSetting>
    Identity Agent settings.identity_agent_settings blocks are documented below.
    IdentityCollector bool
    Enable Identity Collector source.
    IdentityCollectorSettings List<GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSetting>
    Identity Collector settings.identity_collector_settings blocks are documented below.
    IdentitySharingSettings List<GetManagementSimpleClusterIdentityAwarenessSettingIdentitySharingSetting>
    Identity sharing settings.identity_sharing_settings blocks are documented below.
    ProxySettings List<GetManagementSimpleClusterIdentityAwarenessSettingProxySetting>
    Identity-Awareness Proxy settings.proxy_settings blocks are documented below.
    RemoteAccess bool
    Enable Remote Access Identity source.
    BrowserBasedAuthentication bool
    Enable Browser Based Authentication source.
    BrowserBasedAuthenticationSettings []GetManagementSimpleClusterIdentityAwarenessSettingBrowserBasedAuthenticationSetting
    Browser Based Authentication settings.browser_based_authentication_settings blocks are documented below.
    IdentityAgent bool
    Enable Identity Agent source.
    IdentityAgentSettings []GetManagementSimpleClusterIdentityAwarenessSettingIdentityAgentSetting
    Identity Agent settings.identity_agent_settings blocks are documented below.
    IdentityCollector bool
    Enable Identity Collector source.
    IdentityCollectorSettings []GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSetting
    Identity Collector settings.identity_collector_settings blocks are documented below.
    IdentitySharingSettings []GetManagementSimpleClusterIdentityAwarenessSettingIdentitySharingSetting
    Identity sharing settings.identity_sharing_settings blocks are documented below.
    ProxySettings []GetManagementSimpleClusterIdentityAwarenessSettingProxySetting
    Identity-Awareness Proxy settings.proxy_settings blocks are documented below.
    RemoteAccess bool
    Enable Remote Access Identity source.
    browserBasedAuthentication Boolean
    Enable Browser Based Authentication source.
    browserBasedAuthenticationSettings List<GetManagementSimpleClusterIdentityAwarenessSettingBrowserBasedAuthenticationSetting>
    Browser Based Authentication settings.browser_based_authentication_settings blocks are documented below.
    identityAgent Boolean
    Enable Identity Agent source.
    identityAgentSettings List<GetManagementSimpleClusterIdentityAwarenessSettingIdentityAgentSetting>
    Identity Agent settings.identity_agent_settings blocks are documented below.
    identityCollector Boolean
    Enable Identity Collector source.
    identityCollectorSettings List<GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSetting>
    Identity Collector settings.identity_collector_settings blocks are documented below.
    identitySharingSettings List<GetManagementSimpleClusterIdentityAwarenessSettingIdentitySharingSetting>
    Identity sharing settings.identity_sharing_settings blocks are documented below.
    proxySettings List<GetManagementSimpleClusterIdentityAwarenessSettingProxySetting>
    Identity-Awareness Proxy settings.proxy_settings blocks are documented below.
    remoteAccess Boolean
    Enable Remote Access Identity source.
    browserBasedAuthentication boolean
    Enable Browser Based Authentication source.
    browserBasedAuthenticationSettings GetManagementSimpleClusterIdentityAwarenessSettingBrowserBasedAuthenticationSetting[]
    Browser Based Authentication settings.browser_based_authentication_settings blocks are documented below.
    identityAgent boolean
    Enable Identity Agent source.
    identityAgentSettings GetManagementSimpleClusterIdentityAwarenessSettingIdentityAgentSetting[]
    Identity Agent settings.identity_agent_settings blocks are documented below.
    identityCollector boolean
    Enable Identity Collector source.
    identityCollectorSettings GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSetting[]
    Identity Collector settings.identity_collector_settings blocks are documented below.
    identitySharingSettings GetManagementSimpleClusterIdentityAwarenessSettingIdentitySharingSetting[]
    Identity sharing settings.identity_sharing_settings blocks are documented below.
    proxySettings GetManagementSimpleClusterIdentityAwarenessSettingProxySetting[]
    Identity-Awareness Proxy settings.proxy_settings blocks are documented below.
    remoteAccess boolean
    Enable Remote Access Identity source.
    browser_based_authentication bool
    Enable Browser Based Authentication source.
    browser_based_authentication_settings Sequence[GetManagementSimpleClusterIdentityAwarenessSettingBrowserBasedAuthenticationSetting]
    Browser Based Authentication settings.browser_based_authentication_settings blocks are documented below.
    identity_agent bool
    Enable Identity Agent source.
    identity_agent_settings Sequence[GetManagementSimpleClusterIdentityAwarenessSettingIdentityAgentSetting]
    Identity Agent settings.identity_agent_settings blocks are documented below.
    identity_collector bool
    Enable Identity Collector source.
    identity_collector_settings Sequence[GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSetting]
    Identity Collector settings.identity_collector_settings blocks are documented below.
    identity_sharing_settings Sequence[GetManagementSimpleClusterIdentityAwarenessSettingIdentitySharingSetting]
    Identity sharing settings.identity_sharing_settings blocks are documented below.
    proxy_settings Sequence[GetManagementSimpleClusterIdentityAwarenessSettingProxySetting]
    Identity-Awareness Proxy settings.proxy_settings blocks are documented below.
    remote_access bool
    Enable Remote Access Identity source.
    browserBasedAuthentication Boolean
    Enable Browser Based Authentication source.
    browserBasedAuthenticationSettings List<Property Map>
    Browser Based Authentication settings.browser_based_authentication_settings blocks are documented below.
    identityAgent Boolean
    Enable Identity Agent source.
    identityAgentSettings List<Property Map>
    Identity Agent settings.identity_agent_settings blocks are documented below.
    identityCollector Boolean
    Enable Identity Collector source.
    identityCollectorSettings List<Property Map>
    Identity Collector settings.identity_collector_settings blocks are documented below.
    identitySharingSettings List<Property Map>
    Identity sharing settings.identity_sharing_settings blocks are documented below.
    proxySettings List<Property Map>
    Identity-Awareness Proxy settings.proxy_settings blocks are documented below.
    remoteAccess Boolean
    Enable Remote Access Identity source.

    GetManagementSimpleClusterIdentityAwarenessSettingBrowserBasedAuthenticationSetting

    AuthenticationSettings List<GetManagementSimpleClusterIdentityAwarenessSettingBrowserBasedAuthenticationSettingAuthenticationSetting>
    Authentication Settings for Browser Based Authentication.authentication_settings blocks are documented below.
    BrowserBasedAuthenticationPortalSettings List<GetManagementSimpleClusterIdentityAwarenessSettingBrowserBasedAuthenticationSettingBrowserBasedAuthenticationPortalSetting>
    Browser Based Authentication portal settings.browser_based_authentication_portal_settings blocks are documented below.
    AuthenticationSettings []GetManagementSimpleClusterIdentityAwarenessSettingBrowserBasedAuthenticationSettingAuthenticationSetting
    Authentication Settings for Browser Based Authentication.authentication_settings blocks are documented below.
    BrowserBasedAuthenticationPortalSettings []GetManagementSimpleClusterIdentityAwarenessSettingBrowserBasedAuthenticationSettingBrowserBasedAuthenticationPortalSetting
    Browser Based Authentication portal settings.browser_based_authentication_portal_settings blocks are documented below.
    authenticationSettings List<GetManagementSimpleClusterIdentityAwarenessSettingBrowserBasedAuthenticationSettingAuthenticationSetting>
    Authentication Settings for Browser Based Authentication.authentication_settings blocks are documented below.
    browserBasedAuthenticationPortalSettings List<GetManagementSimpleClusterIdentityAwarenessSettingBrowserBasedAuthenticationSettingBrowserBasedAuthenticationPortalSetting>
    Browser Based Authentication portal settings.browser_based_authentication_portal_settings blocks are documented below.
    authenticationSettings GetManagementSimpleClusterIdentityAwarenessSettingBrowserBasedAuthenticationSettingAuthenticationSetting[]
    Authentication Settings for Browser Based Authentication.authentication_settings blocks are documented below.
    browserBasedAuthenticationPortalSettings GetManagementSimpleClusterIdentityAwarenessSettingBrowserBasedAuthenticationSettingBrowserBasedAuthenticationPortalSetting[]
    Browser Based Authentication portal settings.browser_based_authentication_portal_settings blocks are documented below.
    authentication_settings Sequence[GetManagementSimpleClusterIdentityAwarenessSettingBrowserBasedAuthenticationSettingAuthenticationSetting]
    Authentication Settings for Browser Based Authentication.authentication_settings blocks are documented below.
    browser_based_authentication_portal_settings Sequence[GetManagementSimpleClusterIdentityAwarenessSettingBrowserBasedAuthenticationSettingBrowserBasedAuthenticationPortalSetting]
    Browser Based Authentication portal settings.browser_based_authentication_portal_settings blocks are documented below.
    authenticationSettings List<Property Map>
    Authentication Settings for Browser Based Authentication.authentication_settings blocks are documented below.
    browserBasedAuthenticationPortalSettings List<Property Map>
    Browser Based Authentication portal settings.browser_based_authentication_portal_settings blocks are documented below.

    GetManagementSimpleClusterIdentityAwarenessSettingBrowserBasedAuthenticationSettingAuthenticationSetting

    AuthenticationMethod string
    Authentication method.
    IdentityProviders 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".
    UsersDirectories List<GetManagementSimpleClusterIdentityAwarenessSettingBrowserBasedAuthenticationSettingAuthenticationSettingUsersDirectory>
    Users directories.users_directories blocks are documented below.
    AuthenticationMethod string
    Authentication method.
    IdentityProviders []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".
    UsersDirectories []GetManagementSimpleClusterIdentityAwarenessSettingBrowserBasedAuthenticationSettingAuthenticationSettingUsersDirectory
    Users directories.users_directories blocks are documented below.
    authenticationMethod String
    Authentication method.
    identityProviders 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".
    usersDirectories List<GetManagementSimpleClusterIdentityAwarenessSettingBrowserBasedAuthenticationSettingAuthenticationSettingUsersDirectory>
    Users directories.users_directories blocks are documented below.
    authenticationMethod string
    Authentication method.
    identityProviders 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".
    usersDirectories GetManagementSimpleClusterIdentityAwarenessSettingBrowserBasedAuthenticationSettingAuthenticationSettingUsersDirectory[]
    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[GetManagementSimpleClusterIdentityAwarenessSettingBrowserBasedAuthenticationSettingAuthenticationSettingUsersDirectory]
    Users directories.users_directories blocks are documented below.
    authenticationMethod String
    Authentication method.
    identityProviders 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".
    usersDirectories List<Property Map>
    Users directories.users_directories blocks are documented below.

    GetManagementSimpleClusterIdentityAwarenessSettingBrowserBasedAuthenticationSettingAuthenticationSettingUsersDirectory

    ExternalUserProfile bool
    External user profile.
    InternalUsers 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.
    UsersFromExternalDirectories string
    Users from external directories.
    ExternalUserProfile bool
    External user profile.
    InternalUsers 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.
    UsersFromExternalDirectories string
    Users from external directories.
    externalUserProfile Boolean
    External user profile.
    internalUsers 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.
    usersFromExternalDirectories String
    Users from external directories.
    externalUserProfile boolean
    External user profile.
    internalUsers 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.
    usersFromExternalDirectories string
    Users from external directories.
    external_user_profile bool
    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_external_directories str
    Users from external directories.
    externalUserProfile Boolean
    External user profile.
    internalUsers 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.
    usersFromExternalDirectories String
    Users from external directories.

    GetManagementSimpleClusterIdentityAwarenessSettingBrowserBasedAuthenticationSettingBrowserBasedAuthenticationPortalSetting

    accessibilities List<Property Map>
    Configuration of the portal access settings.accessibility blocks are documented below.
    certificateSettings List<Property Map>
    Configuration of the portal certificate settings.certificate_settings blocks are documented below.
    portalWebSettings List<Property Map>
    Configuration of the portal web settings.portal_web_settings blocks are documented below.

    GetManagementSimpleClusterIdentityAwarenessSettingBrowserBasedAuthenticationSettingBrowserBasedAuthenticationPortalSettingAccessibility

    AllowAccessFrom string
    Allowed access to the web portal (based on interfaces, or security policy).
    InternalAccessSettings List<GetManagementSimpleClusterIdentityAwarenessSettingBrowserBasedAuthenticationSettingBrowserBasedAuthenticationPortalSettingAccessibilityInternalAccessSetting>
    Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
    AllowAccessFrom string
    Allowed access to the web portal (based on interfaces, or security policy).
    InternalAccessSettings []GetManagementSimpleClusterIdentityAwarenessSettingBrowserBasedAuthenticationSettingBrowserBasedAuthenticationPortalSettingAccessibilityInternalAccessSetting
    Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
    allowAccessFrom String
    Allowed access to the web portal (based on interfaces, or security policy).
    internalAccessSettings List<GetManagementSimpleClusterIdentityAwarenessSettingBrowserBasedAuthenticationSettingBrowserBasedAuthenticationPortalSettingAccessibilityInternalAccessSetting>
    Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
    allowAccessFrom string
    Allowed access to the web portal (based on interfaces, or security policy).
    internalAccessSettings GetManagementSimpleClusterIdentityAwarenessSettingBrowserBasedAuthenticationSettingBrowserBasedAuthenticationPortalSettingAccessibilityInternalAccessSetting[]
    Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
    allow_access_from str
    Allowed access to the web portal (based on interfaces, or security policy).
    internal_access_settings Sequence[GetManagementSimpleClusterIdentityAwarenessSettingBrowserBasedAuthenticationSettingBrowserBasedAuthenticationPortalSettingAccessibilityInternalAccessSetting]
    Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
    allowAccessFrom String
    Allowed access to the web portal (based on interfaces, or security policy).
    internalAccessSettings List<Property Map>
    Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.

    GetManagementSimpleClusterIdentityAwarenessSettingBrowserBasedAuthenticationSettingBrowserBasedAuthenticationPortalSettingAccessibilityInternalAccessSetting

    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.

    GetManagementSimpleClusterIdentityAwarenessSettingBrowserBasedAuthenticationSettingBrowserBasedAuthenticationPortalSettingCertificateSetting

    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.

    GetManagementSimpleClusterIdentityAwarenessSettingBrowserBasedAuthenticationSettingBrowserBasedAuthenticationPortalSettingPortalWebSetting

    Aliases List<string>
    List of URL aliases that are redirected to the main portal URL.aliases blocks are documented below.
    MainUrl string
    The main URL for the web portal.
    Aliases []string
    List of URL aliases that are redirected to the main portal URL.aliases blocks are documented below.
    MainUrl string
    The main URL for the web portal.
    aliases List<String>
    List of URL aliases that are redirected to the main portal URL.aliases blocks are documented below.
    mainUrl String
    The main URL for the web portal.
    aliases string[]
    List of URL aliases that are redirected to the main portal URL.aliases blocks are documented below.
    mainUrl string
    The main URL for the web portal.
    aliases Sequence[str]
    List of URL aliases that are redirected to the main portal URL.aliases blocks are documented below.
    main_url str
    The main URL for the web portal.
    aliases List<String>
    List of URL aliases that are redirected to the main portal URL.aliases blocks are documented below.
    mainUrl String
    The main URL for the web portal.

    GetManagementSimpleClusterIdentityAwarenessSettingIdentityAgentSetting

    AgentsIntervalKeepalive double
    Agents send keepalive period (minutes).
    AuthenticationSettings List<GetManagementSimpleClusterIdentityAwarenessSettingIdentityAgentSettingAuthenticationSetting>
    Authentication Settings for Identity Agent.authentication_settings blocks are documented below.
    IdentityAgentPortalSettings List<GetManagementSimpleClusterIdentityAwarenessSettingIdentityAgentSettingIdentityAgentPortalSetting>
    Identity Agent accessibility settings.identity_agent_portal_settings blocks are documented below.
    UserReauthenticateInterval double
    Agent reauthenticate time interval (minutes).
    AgentsIntervalKeepalive float64
    Agents send keepalive period (minutes).
    AuthenticationSettings []GetManagementSimpleClusterIdentityAwarenessSettingIdentityAgentSettingAuthenticationSetting
    Authentication Settings for Identity Agent.authentication_settings blocks are documented below.
    IdentityAgentPortalSettings []GetManagementSimpleClusterIdentityAwarenessSettingIdentityAgentSettingIdentityAgentPortalSetting
    Identity Agent accessibility settings.identity_agent_portal_settings blocks are documented below.
    UserReauthenticateInterval float64
    Agent reauthenticate time interval (minutes).
    agentsIntervalKeepalive Double
    Agents send keepalive period (minutes).
    authenticationSettings List<GetManagementSimpleClusterIdentityAwarenessSettingIdentityAgentSettingAuthenticationSetting>
    Authentication Settings for Identity Agent.authentication_settings blocks are documented below.
    identityAgentPortalSettings List<GetManagementSimpleClusterIdentityAwarenessSettingIdentityAgentSettingIdentityAgentPortalSetting>
    Identity Agent accessibility settings.identity_agent_portal_settings blocks are documented below.
    userReauthenticateInterval Double
    Agent reauthenticate time interval (minutes).
    agentsIntervalKeepalive number
    Agents send keepalive period (minutes).
    authenticationSettings GetManagementSimpleClusterIdentityAwarenessSettingIdentityAgentSettingAuthenticationSetting[]
    Authentication Settings for Identity Agent.authentication_settings blocks are documented below.
    identityAgentPortalSettings GetManagementSimpleClusterIdentityAwarenessSettingIdentityAgentSettingIdentityAgentPortalSetting[]
    Identity Agent accessibility settings.identity_agent_portal_settings blocks are documented below.
    userReauthenticateInterval number
    Agent reauthenticate time interval (minutes).
    agents_interval_keepalive float
    Agents send keepalive period (minutes).
    authentication_settings Sequence[GetManagementSimpleClusterIdentityAwarenessSettingIdentityAgentSettingAuthenticationSetting]
    Authentication Settings for Identity Agent.authentication_settings blocks are documented below.
    identity_agent_portal_settings Sequence[GetManagementSimpleClusterIdentityAwarenessSettingIdentityAgentSettingIdentityAgentPortalSetting]
    Identity Agent accessibility settings.identity_agent_portal_settings blocks are documented below.
    user_reauthenticate_interval float
    Agent reauthenticate time interval (minutes).
    agentsIntervalKeepalive Number
    Agents send keepalive period (minutes).
    authenticationSettings List<Property Map>
    Authentication Settings for Identity Agent.authentication_settings blocks are documented below.
    identityAgentPortalSettings List<Property Map>
    Identity Agent accessibility settings.identity_agent_portal_settings blocks are documented below.
    userReauthenticateInterval Number
    Agent reauthenticate time interval (minutes).

    GetManagementSimpleClusterIdentityAwarenessSettingIdentityAgentSettingAuthenticationSetting

    AuthenticationMethod 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".
    UsersDirectories List<GetManagementSimpleClusterIdentityAwarenessSettingIdentityAgentSettingAuthenticationSettingUsersDirectory>
    Users directories.users_directories blocks are documented below.
    AuthenticationMethod 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".
    UsersDirectories []GetManagementSimpleClusterIdentityAwarenessSettingIdentityAgentSettingAuthenticationSettingUsersDirectory
    Users directories.users_directories blocks are documented below.
    authenticationMethod 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".
    usersDirectories List<GetManagementSimpleClusterIdentityAwarenessSettingIdentityAgentSettingAuthenticationSettingUsersDirectory>
    Users directories.users_directories blocks are documented below.
    authenticationMethod 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".
    usersDirectories GetManagementSimpleClusterIdentityAwarenessSettingIdentityAgentSettingAuthenticationSettingUsersDirectory[]
    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[GetManagementSimpleClusterIdentityAwarenessSettingIdentityAgentSettingAuthenticationSettingUsersDirectory]
    Users directories.users_directories blocks are documented below.
    authenticationMethod 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".
    usersDirectories List<Property Map>
    Users directories.users_directories blocks are documented below.

    GetManagementSimpleClusterIdentityAwarenessSettingIdentityAgentSettingAuthenticationSettingUsersDirectory

    ExternalUserProfile bool
    External user profile.
    InternalUsers 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.
    UsersFromExternalDirectories string
    Users from external directories.
    ExternalUserProfile bool
    External user profile.
    InternalUsers 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.
    UsersFromExternalDirectories string
    Users from external directories.
    externalUserProfile Boolean
    External user profile.
    internalUsers 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.
    usersFromExternalDirectories String
    Users from external directories.
    externalUserProfile boolean
    External user profile.
    internalUsers 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.
    usersFromExternalDirectories string
    Users from external directories.
    external_user_profile bool
    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_external_directories str
    Users from external directories.
    externalUserProfile Boolean
    External user profile.
    internalUsers 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.
    usersFromExternalDirectories String
    Users from external directories.

    GetManagementSimpleClusterIdentityAwarenessSettingIdentityAgentSettingIdentityAgentPortalSetting

    Accessibilities List<GetManagementSimpleClusterIdentityAwarenessSettingIdentityAgentSettingIdentityAgentPortalSettingAccessibility>
    Configuration of the portal access settings.accessibility blocks are documented below.
    Accessibilities []GetManagementSimpleClusterIdentityAwarenessSettingIdentityAgentSettingIdentityAgentPortalSettingAccessibility
    Configuration of the portal access settings.accessibility blocks are documented below.
    accessibilities List<GetManagementSimpleClusterIdentityAwarenessSettingIdentityAgentSettingIdentityAgentPortalSettingAccessibility>
    Configuration of the portal access settings.accessibility blocks are documented below.
    accessibilities GetManagementSimpleClusterIdentityAwarenessSettingIdentityAgentSettingIdentityAgentPortalSettingAccessibility[]
    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.

    GetManagementSimpleClusterIdentityAwarenessSettingIdentityAgentSettingIdentityAgentPortalSettingAccessibility

    AllowAccessFrom string
    Allowed access to the web portal (based on interfaces, or security policy).
    InternalAccessSettings List<GetManagementSimpleClusterIdentityAwarenessSettingIdentityAgentSettingIdentityAgentPortalSettingAccessibilityInternalAccessSetting>
    Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
    AllowAccessFrom string
    Allowed access to the web portal (based on interfaces, or security policy).
    InternalAccessSettings []GetManagementSimpleClusterIdentityAwarenessSettingIdentityAgentSettingIdentityAgentPortalSettingAccessibilityInternalAccessSetting
    Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
    allowAccessFrom String
    Allowed access to the web portal (based on interfaces, or security policy).
    internalAccessSettings List<GetManagementSimpleClusterIdentityAwarenessSettingIdentityAgentSettingIdentityAgentPortalSettingAccessibilityInternalAccessSetting>
    Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
    allowAccessFrom string
    Allowed access to the web portal (based on interfaces, or security policy).
    internalAccessSettings GetManagementSimpleClusterIdentityAwarenessSettingIdentityAgentSettingIdentityAgentPortalSettingAccessibilityInternalAccessSetting[]
    Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
    allow_access_from str
    Allowed access to the web portal (based on interfaces, or security policy).
    internal_access_settings Sequence[GetManagementSimpleClusterIdentityAwarenessSettingIdentityAgentSettingIdentityAgentPortalSettingAccessibilityInternalAccessSetting]
    Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
    allowAccessFrom String
    Allowed access to the web portal (based on interfaces, or security policy).
    internalAccessSettings List<Property Map>
    Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.

    GetManagementSimpleClusterIdentityAwarenessSettingIdentityAgentSettingIdentityAgentPortalSettingAccessibilityInternalAccessSetting

    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.

    GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSetting

    AuthenticationSettings List<GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSettingAuthenticationSetting>
    Authentication Settings for Identity Collector.authentication_settings blocks are documented below.
    AuthorizedClients List<GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSettingAuthorizedClient>
    Authorized Clients.authorized_clients blocks are documented below.
    ClientAccessPermissions List<GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSettingClientAccessPermission>
    Identity Collector accessibility settings.client_access_permissions blocks are documented below.
    AuthenticationSettings []GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSettingAuthenticationSetting
    Authentication Settings for Identity Collector.authentication_settings blocks are documented below.
    AuthorizedClients []GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSettingAuthorizedClient
    Authorized Clients.authorized_clients blocks are documented below.
    ClientAccessPermissions []GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSettingClientAccessPermission
    Identity Collector accessibility settings.client_access_permissions blocks are documented below.
    authenticationSettings List<GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSettingAuthenticationSetting>
    Authentication Settings for Identity Collector.authentication_settings blocks are documented below.
    authorizedClients List<GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSettingAuthorizedClient>
    Authorized Clients.authorized_clients blocks are documented below.
    clientAccessPermissions List<GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSettingClientAccessPermission>
    Identity Collector accessibility settings.client_access_permissions blocks are documented below.
    authenticationSettings GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSettingAuthenticationSetting[]
    Authentication Settings for Identity Collector.authentication_settings blocks are documented below.
    authorizedClients GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSettingAuthorizedClient[]
    Authorized Clients.authorized_clients blocks are documented below.
    clientAccessPermissions GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSettingClientAccessPermission[]
    Identity Collector accessibility settings.client_access_permissions blocks are documented below.
    authentication_settings Sequence[GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSettingAuthenticationSetting]
    Authentication Settings for Identity Collector.authentication_settings blocks are documented below.
    authorized_clients Sequence[GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSettingAuthorizedClient]
    Authorized Clients.authorized_clients blocks are documented below.
    client_access_permissions Sequence[GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSettingClientAccessPermission]
    Identity Collector accessibility settings.client_access_permissions blocks are documented below.
    authenticationSettings List<Property Map>
    Authentication Settings for Identity Collector.authentication_settings blocks are documented below.
    authorizedClients List<Property Map>
    Authorized Clients.authorized_clients blocks are documented below.
    clientAccessPermissions List<Property Map>
    Identity Collector accessibility settings.client_access_permissions blocks are documented below.

    GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSettingAuthenticationSetting

    usersDirectories List<Property Map>
    Users directories.users_directories blocks are documented below.

    GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSettingAuthenticationSettingUsersDirectory

    ExternalUserProfile bool
    External user profile.
    InternalUsers 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.
    UsersFromExternalDirectories string
    Users from external directories.
    ExternalUserProfile bool
    External user profile.
    InternalUsers 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.
    UsersFromExternalDirectories string
    Users from external directories.
    externalUserProfile Boolean
    External user profile.
    internalUsers 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.
    usersFromExternalDirectories String
    Users from external directories.
    externalUserProfile boolean
    External user profile.
    internalUsers 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.
    usersFromExternalDirectories string
    Users from external directories.
    external_user_profile bool
    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_external_directories str
    Users from external directories.
    externalUserProfile Boolean
    External user profile.
    internalUsers 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.
    usersFromExternalDirectories String
    Users from external directories.

    GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSettingAuthorizedClient

    Client string
    Host / Network Group Name or UID.
    ClientSecret string
    Client Secret.
    Client string
    Host / Network Group Name or UID.
    ClientSecret string
    Client Secret.
    client String
    Host / Network Group Name or UID.
    clientSecret String
    Client Secret.
    client string
    Host / Network Group Name or UID.
    clientSecret string
    Client Secret.
    client str
    Host / Network Group Name or UID.
    client_secret str
    Client Secret.
    client String
    Host / Network Group Name or UID.
    clientSecret String
    Client Secret.

    GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSettingClientAccessPermission

    Accessibilities List<GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSettingClientAccessPermissionAccessibility>
    Configuration of the portal access settings.accessibility blocks are documented below.
    Accessibilities []GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSettingClientAccessPermissionAccessibility
    Configuration of the portal access settings.accessibility blocks are documented below.
    accessibilities List<GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSettingClientAccessPermissionAccessibility>
    Configuration of the portal access settings.accessibility blocks are documented below.
    accessibilities GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSettingClientAccessPermissionAccessibility[]
    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.

    GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSettingClientAccessPermissionAccessibility

    AllowAccessFrom string
    Allowed access to the web portal (based on interfaces, or security policy).
    InternalAccessSettings List<GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSettingClientAccessPermissionAccessibilityInternalAccessSetting>
    Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
    AllowAccessFrom string
    Allowed access to the web portal (based on interfaces, or security policy).
    InternalAccessSettings []GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSettingClientAccessPermissionAccessibilityInternalAccessSetting
    Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
    allowAccessFrom String
    Allowed access to the web portal (based on interfaces, or security policy).
    internalAccessSettings List<GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSettingClientAccessPermissionAccessibilityInternalAccessSetting>
    Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
    allowAccessFrom string
    Allowed access to the web portal (based on interfaces, or security policy).
    internalAccessSettings GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSettingClientAccessPermissionAccessibilityInternalAccessSetting[]
    Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
    allow_access_from str
    Allowed access to the web portal (based on interfaces, or security policy).
    internal_access_settings Sequence[GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSettingClientAccessPermissionAccessibilityInternalAccessSetting]
    Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
    allowAccessFrom String
    Allowed access to the web portal (based on interfaces, or security policy).
    internalAccessSettings List<Property Map>
    Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.

    GetManagementSimpleClusterIdentityAwarenessSettingIdentityCollectorSettingClientAccessPermissionAccessibilityInternalAccessSetting

    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.

    GetManagementSimpleClusterIdentityAwarenessSettingIdentitySharingSetting

    ReceiveFromOtherGateways bool
    Enable receiving identity from other gateways.
    ReceiveFroms List<string>
    Gateway(s) to receive identity from.receive_from blocks are documented below.
    ShareWithOtherGateways bool
    Enable identity sharing with other gateways.
    ReceiveFromOtherGateways bool
    Enable receiving identity from other gateways.
    ReceiveFroms []string
    Gateway(s) to receive identity from.receive_from blocks are documented below.
    ShareWithOtherGateways bool
    Enable identity sharing with other gateways.
    receiveFromOtherGateways Boolean
    Enable receiving identity from other gateways.
    receiveFroms List<String>
    Gateway(s) to receive identity from.receive_from blocks are documented below.
    shareWithOtherGateways Boolean
    Enable identity sharing with other gateways.
    receiveFromOtherGateways boolean
    Enable receiving identity from other gateways.
    receiveFroms string[]
    Gateway(s) to receive identity from.receive_from blocks are documented below.
    shareWithOtherGateways boolean
    Enable identity sharing with other gateways.
    receive_from_other_gateways bool
    Enable receiving identity from other gateways.
    receive_froms Sequence[str]
    Gateway(s) to receive identity from.receive_from blocks are documented below.
    share_with_other_gateways bool
    Enable identity sharing with other gateways.
    receiveFromOtherGateways Boolean
    Enable receiving identity from other gateways.
    receiveFroms List<String>
    Gateway(s) to receive identity from.receive_from blocks are documented below.
    shareWithOtherGateways Boolean
    Enable identity sharing with other gateways.

    GetManagementSimpleClusterIdentityAwarenessSettingProxySetting

    DetectUsingXForwardFor bool
    Whether to use X-Forward-For HTTP header, which is added by the proxy server to keep track of the original source IP.
    DetectUsingXForwardFor bool
    Whether to use X-Forward-For HTTP header, which is added by the proxy server to keep track of the original source IP.
    detectUsingXForwardFor Boolean
    Whether to use X-Forward-For HTTP header, which is added by the proxy server to keep track of the original source IP.
    detectUsingXForwardFor boolean
    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_x_forward_for bool
    Whether to use X-Forward-For HTTP header, which is added by the proxy server to keep track of the original source IP.
    detectUsingXForwardFor Boolean
    Whether to use X-Forward-For HTTP header, which is added by the proxy server to keep track of the original source IP.

    GetManagementSimpleClusterInterface

    AntiSpoofing bool
    N/A
    AntiSpoofingSettings List<GetManagementSimpleClusterInterfaceAntiSpoofingSetting>
    N/Aanti_spoofing_settings blocks are documented below.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    InterfaceType string
    Cluster interface type.
    Ipv4Address string
    IPv4 address.
    Ipv4MaskLength string
    IPv4 network mask length.
    Ipv4NetworkMask string
    IPv4 network address.
    Ipv6Address string
    IPv6 address.
    Ipv6MaskLength string
    IPv6 network mask length.
    Ipv6NetworkMask string
    IPv6 network address.
    MulticastAddress string
    Multicast IP Address.
    MulticastAddressType string
    Multicast Address Type.
    Name string
    Object name.
    SecurityZone bool
    N/A
    SecurityZoneSettings List<GetManagementSimpleClusterInterfaceSecurityZoneSetting>
    N/Asecurity_zone_settings blocks are documented below.
    Topology string
    N/A
    TopologyAutomaticCalculation string
    TopologySettings List<GetManagementSimpleClusterInterfaceTopologySetting>
    N/Atopology_settings blocks are documented below.
    AntiSpoofing bool
    N/A
    AntiSpoofingSettings []GetManagementSimpleClusterInterfaceAntiSpoofingSetting
    N/Aanti_spoofing_settings blocks are documented below.
    Color string
    Color of the object. Should be one of existing colors.
    Comments string
    Comments string.
    InterfaceType string
    Cluster interface type.
    Ipv4Address string
    IPv4 address.
    Ipv4MaskLength string
    IPv4 network mask length.
    Ipv4NetworkMask string
    IPv4 network address.
    Ipv6Address string
    IPv6 address.
    Ipv6MaskLength string
    IPv6 network mask length.
    Ipv6NetworkMask string
    IPv6 network address.
    MulticastAddress string
    Multicast IP Address.
    MulticastAddressType string
    Multicast Address Type.
    Name string
    Object name.
    SecurityZone bool
    N/A
    SecurityZoneSettings []GetManagementSimpleClusterInterfaceSecurityZoneSetting
    N/Asecurity_zone_settings blocks are documented below.
    Topology string
    N/A
    TopologyAutomaticCalculation string
    TopologySettings []GetManagementSimpleClusterInterfaceTopologySetting
    N/Atopology_settings blocks are documented below.
    antiSpoofing Boolean
    N/A
    antiSpoofingSettings List<GetManagementSimpleClusterInterfaceAntiSpoofingSetting>
    N/Aanti_spoofing_settings blocks are documented below.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    interfaceType String
    Cluster interface type.
    ipv4Address String
    IPv4 address.
    ipv4MaskLength String
    IPv4 network mask length.
    ipv4NetworkMask String
    IPv4 network address.
    ipv6Address String
    IPv6 address.
    ipv6MaskLength String
    IPv6 network mask length.
    ipv6NetworkMask String
    IPv6 network address.
    multicastAddress String
    Multicast IP Address.
    multicastAddressType String
    Multicast Address Type.
    name String
    Object name.
    securityZone Boolean
    N/A
    securityZoneSettings List<GetManagementSimpleClusterInterfaceSecurityZoneSetting>
    N/Asecurity_zone_settings blocks are documented below.
    topology String
    N/A
    topologyAutomaticCalculation String
    topologySettings List<GetManagementSimpleClusterInterfaceTopologySetting>
    N/Atopology_settings blocks are documented below.
    antiSpoofing boolean
    N/A
    antiSpoofingSettings GetManagementSimpleClusterInterfaceAntiSpoofingSetting[]
    N/Aanti_spoofing_settings blocks are documented below.
    color string
    Color of the object. Should be one of existing colors.
    comments string
    Comments string.
    interfaceType string
    Cluster interface type.
    ipv4Address string
    IPv4 address.
    ipv4MaskLength string
    IPv4 network mask length.
    ipv4NetworkMask string
    IPv4 network address.
    ipv6Address string
    IPv6 address.
    ipv6MaskLength string
    IPv6 network mask length.
    ipv6NetworkMask string
    IPv6 network address.
    multicastAddress string
    Multicast IP Address.
    multicastAddressType string
    Multicast Address Type.
    name string
    Object name.
    securityZone boolean
    N/A
    securityZoneSettings GetManagementSimpleClusterInterfaceSecurityZoneSetting[]
    N/Asecurity_zone_settings blocks are documented below.
    topology string
    N/A
    topologyAutomaticCalculation string
    topologySettings GetManagementSimpleClusterInterfaceTopologySetting[]
    N/Atopology_settings blocks are documented below.
    anti_spoofing bool
    N/A
    anti_spoofing_settings Sequence[GetManagementSimpleClusterInterfaceAntiSpoofingSetting]
    N/Aanti_spoofing_settings blocks are documented below.
    color str
    Color of the object. Should be one of existing colors.
    comments str
    Comments string.
    interface_type str
    Cluster interface type.
    ipv4_address str
    IPv4 address.
    ipv4_mask_length str
    IPv4 network mask length.
    ipv4_network_mask str
    IPv4 network address.
    ipv6_address str
    IPv6 address.
    ipv6_mask_length str
    IPv6 network mask length.
    ipv6_network_mask str
    IPv6 network address.
    multicast_address str
    Multicast IP Address.
    multicast_address_type str
    Multicast Address Type.
    name str
    Object name.
    security_zone bool
    N/A
    security_zone_settings Sequence[GetManagementSimpleClusterInterfaceSecurityZoneSetting]
    N/Asecurity_zone_settings blocks are documented below.
    topology str
    N/A
    topology_automatic_calculation str
    topology_settings Sequence[GetManagementSimpleClusterInterfaceTopologySetting]
    N/Atopology_settings blocks are documented below.
    antiSpoofing Boolean
    N/A
    antiSpoofingSettings List<Property Map>
    N/Aanti_spoofing_settings blocks are documented below.
    color String
    Color of the object. Should be one of existing colors.
    comments String
    Comments string.
    interfaceType String
    Cluster interface type.
    ipv4Address String
    IPv4 address.
    ipv4MaskLength String
    IPv4 network mask length.
    ipv4NetworkMask String
    IPv4 network address.
    ipv6Address String
    IPv6 address.
    ipv6MaskLength String
    IPv6 network mask length.
    ipv6NetworkMask String
    IPv6 network address.
    multicastAddress String
    Multicast IP Address.
    multicastAddressType String
    Multicast Address Type.
    name String
    Object name.
    securityZone Boolean
    N/A
    securityZoneSettings List<Property Map>
    N/Asecurity_zone_settings blocks are documented below.
    topology String
    N/A
    topologyAutomaticCalculation String
    topologySettings List<Property Map>
    N/Atopology_settings blocks are documented below.

    GetManagementSimpleClusterInterfaceAntiSpoofingSetting

    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).

    GetManagementSimpleClusterInterfaceSecurityZoneSetting

    AutoCalculated bool
    Security Zone is calculated according to where the interface leads to.
    SpecificZone string
    Security Zone specified manually.
    AutoCalculated bool
    Security Zone is calculated according to where the interface leads to.
    SpecificZone string
    Security Zone specified manually.
    autoCalculated Boolean
    Security Zone is calculated according to where the interface leads to.
    specificZone String
    Security Zone specified manually.
    autoCalculated boolean
    Security Zone is calculated according to where the interface leads to.
    specificZone 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.
    autoCalculated Boolean
    Security Zone is calculated according to where the interface leads to.
    specificZone String
    Security Zone specified manually.

    GetManagementSimpleClusterInterfaceTopologySetting

    InterfaceLeadsToDmz bool
    Whether this interface leads to demilitarized zone (perimeter network).
    IpAddressBehindThisInterface string
    SpecificNetwork string
    Network behind this interface.
    InterfaceLeadsToDmz bool
    Whether this interface leads to demilitarized zone (perimeter network).
    IpAddressBehindThisInterface string
    SpecificNetwork string
    Network behind this interface.
    interfaceLeadsToDmz Boolean
    Whether this interface leads to demilitarized zone (perimeter network).
    ipAddressBehindThisInterface String
    specificNetwork String
    Network behind this interface.
    interfaceLeadsToDmz boolean
    Whether this interface leads to demilitarized zone (perimeter network).
    ipAddressBehindThisInterface string
    specificNetwork string
    Network behind this interface.
    interface_leads_to_dmz bool
    Whether this interface leads to demilitarized zone (perimeter network).
    ip_address_behind_this_interface str
    specific_network str
    Network behind this interface.
    interfaceLeadsToDmz Boolean
    Whether this interface leads to demilitarized zone (perimeter network).
    ipAddressBehindThisInterface String
    specificNetwork String
    Network behind this interface.

    GetManagementSimpleClusterIpsSetting

    ActivationMode string
    Defines whether the IPS blade operates in Detect Only mode or enforces the configured IPS Policy.
    BypassAllUnderLoad bool
    Disable/enable all IPS protections until CPU and memory levels are back to normal.
    BypassTrackMethod string
    Track options when all IPS protections are disabled until CPU/memory levels are back to normal.
    CpuUsageHighThreshold double
    CPU usage high threshold percentage (1-99).
    CpuUsageLowThreshold double
    CPU usage low threshold percentage (1-99).
    MemoryUsageHighThreshold double
    Memory usage high threshold percentage (1-99).
    MemoryUsageLowThreshold double
    Memory usage low threshold percentage (1-99).
    RejectOnClusterFailOver bool
    Define the IPS connections during fail over reject packets or accept packets.
    SendThreatCloudInfo bool
    Help improve Check Point Threat Prevention product by sending anonymous information.
    TopCpuConsumingProtections List<GetManagementSimpleClusterIpsSettingTopCpuConsumingProtection>
    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.
    ActivationMode string
    Defines whether the IPS blade operates in Detect Only mode or enforces the configured IPS Policy.
    BypassAllUnderLoad bool
    Disable/enable all IPS protections until CPU and memory levels are back to normal.
    BypassTrackMethod string
    Track options when all IPS protections are disabled until CPU/memory levels are back to normal.
    CpuUsageHighThreshold float64
    CPU usage high threshold percentage (1-99).
    CpuUsageLowThreshold float64
    CPU usage low threshold percentage (1-99).
    MemoryUsageHighThreshold float64
    Memory usage high threshold percentage (1-99).
    MemoryUsageLowThreshold float64
    Memory usage low threshold percentage (1-99).
    RejectOnClusterFailOver bool
    Define the IPS connections during fail over reject packets or accept packets.
    SendThreatCloudInfo bool
    Help improve Check Point Threat Prevention product by sending anonymous information.
    TopCpuConsumingProtections []GetManagementSimpleClusterIpsSettingTopCpuConsumingProtection
    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.
    activationMode String
    Defines whether the IPS blade operates in Detect Only mode or enforces the configured IPS Policy.
    bypassAllUnderLoad Boolean
    Disable/enable all IPS protections until CPU and memory levels are back to normal.
    bypassTrackMethod String
    Track options when all IPS protections are disabled until CPU/memory levels are back to normal.
    cpuUsageHighThreshold Double
    CPU usage high threshold percentage (1-99).
    cpuUsageLowThreshold Double
    CPU usage low threshold percentage (1-99).
    memoryUsageHighThreshold Double
    Memory usage high threshold percentage (1-99).
    memoryUsageLowThreshold Double
    Memory usage low threshold percentage (1-99).
    rejectOnClusterFailOver Boolean
    Define the IPS connections during fail over reject packets or accept packets.
    sendThreatCloudInfo Boolean
    Help improve Check Point Threat Prevention product by sending anonymous information.
    topCpuConsumingProtections List<GetManagementSimpleClusterIpsSettingTopCpuConsumingProtection>
    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.
    activationMode string
    Defines whether the IPS blade operates in Detect Only mode or enforces the configured IPS Policy.
    bypassAllUnderLoad boolean
    Disable/enable all IPS protections until CPU and memory levels are back to normal.
    bypassTrackMethod string
    Track options when all IPS protections are disabled until CPU/memory levels are back to normal.
    cpuUsageHighThreshold number
    CPU usage high threshold percentage (1-99).
    cpuUsageLowThreshold number
    CPU usage low threshold percentage (1-99).
    memoryUsageHighThreshold number
    Memory usage high threshold percentage (1-99).
    memoryUsageLowThreshold number
    Memory usage low threshold percentage (1-99).
    rejectOnClusterFailOver boolean
    Define the IPS connections during fail over reject packets or accept packets.
    sendThreatCloudInfo boolean
    Help improve Check Point Threat Prevention product by sending anonymous information.
    topCpuConsumingProtections GetManagementSimpleClusterIpsSettingTopCpuConsumingProtection[]
    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_under_load bool
    Disable/enable all IPS protections until CPU and memory levels are back to normal.
    bypass_track_method str
    Track options when all IPS protections are disabled until CPU/memory levels are back to normal.
    cpu_usage_high_threshold float
    CPU usage high threshold percentage (1-99).
    cpu_usage_low_threshold float
    CPU usage low threshold percentage (1-99).
    memory_usage_high_threshold float
    Memory usage high threshold percentage (1-99).
    memory_usage_low_threshold float
    Memory usage low threshold percentage (1-99).
    reject_on_cluster_fail_over bool
    Define the IPS connections during fail over reject packets or accept packets.
    send_threat_cloud_info bool
    Help improve Check Point Threat Prevention product by sending anonymous information.
    top_cpu_consuming_protections Sequence[GetManagementSimpleClusterIpsSettingTopCpuConsumingProtection]
    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.
    activationMode String
    Defines whether the IPS blade operates in Detect Only mode or enforces the configured IPS Policy.
    bypassAllUnderLoad Boolean
    Disable/enable all IPS protections until CPU and memory levels are back to normal.
    bypassTrackMethod String
    Track options when all IPS protections are disabled until CPU/memory levels are back to normal.
    cpuUsageHighThreshold Number
    CPU usage high threshold percentage (1-99).
    cpuUsageLowThreshold Number
    CPU usage low threshold percentage (1-99).
    memoryUsageHighThreshold Number
    Memory usage high threshold percentage (1-99).
    memoryUsageLowThreshold Number
    Memory usage low threshold percentage (1-99).
    rejectOnClusterFailOver Boolean
    Define the IPS connections during fail over reject packets or accept packets.
    sendThreatCloudInfo Boolean
    Help improve Check Point Threat Prevention product by sending anonymous information.
    topCpuConsumingProtections List<Property Map>
    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.

    GetManagementSimpleClusterIpsSettingTopCpuConsumingProtection

    GetManagementSimpleClusterLogsSetting

    AlertWhenFreeDiskSpaceBelow bool
    AlertWhenFreeDiskSpaceBelowMetrics string
    AlertWhenFreeDiskSpaceBelowThreshold double
    AlertWhenFreeDiskSpaceBelowType string
    BeforeDeleteKeepLogsFromTheLastDays bool
    BeforeDeleteKeepLogsFromTheLastDaysThreshold double
    BeforeDeleteRunScript bool
    BeforeDeleteRunScriptCommand string
    DeleteIndexFilesOlderThanDays bool
    DeleteIndexFilesOlderThanDaysThreshold double
    DeleteIndexFilesWhenIndexSizeAbove bool
    DeleteIndexFilesWhenIndexSizeAboveMetrics string
    DeleteIndexFilesWhenIndexSizeAboveThreshold double
    DeleteWhenFreeDiskSpaceBelow bool
    DeleteWhenFreeDiskSpaceBelowMetrics string
    DeleteWhenFreeDiskSpaceBelowThreshold double
    DetectNewCitrixIcaApplicationNames bool
    ForwardLogsToLogServer bool
    ForwardLogsToLogServerName string
    ForwardLogsToLogServerScheduleName string
    FreeDiskSpaceMetrics string
    PerformLogRotateBeforeLogForwarding bool
    RejectConnectionsWhenFreeDiskSpaceBelowThreshold bool
    ReserveForPacketCaptureMetrics string
    ReserveForPacketCaptureThreshold double
    RotateLogByFileSize bool
    RotateLogFileSizeThreshold double
    RotateLogOnSchedule bool
    RotateLogScheduleName string
    StopLoggingWhenFreeDiskSpaceBelow bool
    StopLoggingWhenFreeDiskSpaceBelowMetrics string
    StopLoggingWhenFreeDiskSpaceBelowThreshold double
    TurnOnQosLogging bool
    UpdateAccountLogEvery double
    AlertWhenFreeDiskSpaceBelow bool
    AlertWhenFreeDiskSpaceBelowMetrics string
    AlertWhenFreeDiskSpaceBelowThreshold float64
    AlertWhenFreeDiskSpaceBelowType string
    BeforeDeleteKeepLogsFromTheLastDays bool
    BeforeDeleteKeepLogsFromTheLastDaysThreshold float64
    BeforeDeleteRunScript bool
    BeforeDeleteRunScriptCommand string
    DeleteIndexFilesOlderThanDays bool
    DeleteIndexFilesOlderThanDaysThreshold float64
    DeleteIndexFilesWhenIndexSizeAbove bool
    DeleteIndexFilesWhenIndexSizeAboveMetrics string
    DeleteIndexFilesWhenIndexSizeAboveThreshold float64
    DeleteWhenFreeDiskSpaceBelow bool
    DeleteWhenFreeDiskSpaceBelowMetrics string
    DeleteWhenFreeDiskSpaceBelowThreshold float64
    DetectNewCitrixIcaApplicationNames bool
    ForwardLogsToLogServer bool
    ForwardLogsToLogServerName string
    ForwardLogsToLogServerScheduleName string
    FreeDiskSpaceMetrics string
    PerformLogRotateBeforeLogForwarding bool
    RejectConnectionsWhenFreeDiskSpaceBelowThreshold bool
    ReserveForPacketCaptureMetrics string
    ReserveForPacketCaptureThreshold float64
    RotateLogByFileSize bool
    RotateLogFileSizeThreshold float64
    RotateLogOnSchedule bool
    RotateLogScheduleName string
    StopLoggingWhenFreeDiskSpaceBelow bool
    StopLoggingWhenFreeDiskSpaceBelowMetrics string
    StopLoggingWhenFreeDiskSpaceBelowThreshold float64
    TurnOnQosLogging bool
    UpdateAccountLogEvery float64
    alertWhenFreeDiskSpaceBelow Boolean
    alertWhenFreeDiskSpaceBelowMetrics String
    alertWhenFreeDiskSpaceBelowThreshold Double
    alertWhenFreeDiskSpaceBelowType String
    beforeDeleteKeepLogsFromTheLastDays Boolean
    beforeDeleteKeepLogsFromTheLastDaysThreshold Double
    beforeDeleteRunScript Boolean
    beforeDeleteRunScriptCommand String
    deleteIndexFilesOlderThanDays Boolean
    deleteIndexFilesOlderThanDaysThreshold Double
    deleteIndexFilesWhenIndexSizeAbove Boolean
    deleteIndexFilesWhenIndexSizeAboveMetrics String
    deleteIndexFilesWhenIndexSizeAboveThreshold Double
    deleteWhenFreeDiskSpaceBelow Boolean
    deleteWhenFreeDiskSpaceBelowMetrics String
    deleteWhenFreeDiskSpaceBelowThreshold Double
    detectNewCitrixIcaApplicationNames Boolean
    forwardLogsToLogServer Boolean
    forwardLogsToLogServerName String
    forwardLogsToLogServerScheduleName String
    freeDiskSpaceMetrics String
    performLogRotateBeforeLogForwarding Boolean
    rejectConnectionsWhenFreeDiskSpaceBelowThreshold Boolean
    reserveForPacketCaptureMetrics String
    reserveForPacketCaptureThreshold Double
    rotateLogByFileSize Boolean
    rotateLogFileSizeThreshold Double
    rotateLogOnSchedule Boolean
    rotateLogScheduleName String
    stopLoggingWhenFreeDiskSpaceBelow Boolean
    stopLoggingWhenFreeDiskSpaceBelowMetrics String
    stopLoggingWhenFreeDiskSpaceBelowThreshold Double
    turnOnQosLogging Boolean
    updateAccountLogEvery Double
    alertWhenFreeDiskSpaceBelow boolean
    alertWhenFreeDiskSpaceBelowMetrics string
    alertWhenFreeDiskSpaceBelowThreshold number
    alertWhenFreeDiskSpaceBelowType string
    beforeDeleteKeepLogsFromTheLastDays boolean
    beforeDeleteKeepLogsFromTheLastDaysThreshold number
    beforeDeleteRunScript boolean
    beforeDeleteRunScriptCommand string
    deleteIndexFilesOlderThanDays boolean
    deleteIndexFilesOlderThanDaysThreshold number
    deleteIndexFilesWhenIndexSizeAbove boolean
    deleteIndexFilesWhenIndexSizeAboveMetrics string
    deleteIndexFilesWhenIndexSizeAboveThreshold number
    deleteWhenFreeDiskSpaceBelow boolean
    deleteWhenFreeDiskSpaceBelowMetrics string
    deleteWhenFreeDiskSpaceBelowThreshold number
    detectNewCitrixIcaApplicationNames boolean
    forwardLogsToLogServer boolean
    forwardLogsToLogServerName string
    forwardLogsToLogServerScheduleName string
    freeDiskSpaceMetrics string
    performLogRotateBeforeLogForwarding boolean
    rejectConnectionsWhenFreeDiskSpaceBelowThreshold boolean
    reserveForPacketCaptureMetrics string
    reserveForPacketCaptureThreshold number
    rotateLogByFileSize boolean
    rotateLogFileSizeThreshold number
    rotateLogOnSchedule boolean
    rotateLogScheduleName string
    stopLoggingWhenFreeDiskSpaceBelow boolean
    stopLoggingWhenFreeDiskSpaceBelowMetrics string
    stopLoggingWhenFreeDiskSpaceBelowThreshold number
    turnOnQosLogging boolean
    updateAccountLogEvery number
    alert_when_free_disk_space_below bool
    alert_when_free_disk_space_below_metrics str
    alert_when_free_disk_space_below_threshold float
    alert_when_free_disk_space_below_type str
    before_delete_keep_logs_from_the_last_days bool
    before_delete_keep_logs_from_the_last_days_threshold float
    before_delete_run_script bool
    before_delete_run_script_command str
    delete_index_files_older_than_days bool
    delete_index_files_older_than_days_threshold float
    delete_index_files_when_index_size_above bool
    delete_index_files_when_index_size_above_metrics str
    delete_index_files_when_index_size_above_threshold float
    delete_when_free_disk_space_below bool
    delete_when_free_disk_space_below_metrics str
    delete_when_free_disk_space_below_threshold float
    detect_new_citrix_ica_application_names bool
    forward_logs_to_log_server bool
    forward_logs_to_log_server_name str
    forward_logs_to_log_server_schedule_name str
    free_disk_space_metrics str
    perform_log_rotate_before_log_forwarding bool
    reject_connections_when_free_disk_space_below_threshold bool
    reserve_for_packet_capture_metrics str
    reserve_for_packet_capture_threshold float
    rotate_log_by_file_size bool
    rotate_log_file_size_threshold float
    rotate_log_on_schedule bool
    rotate_log_schedule_name str
    stop_logging_when_free_disk_space_below bool
    stop_logging_when_free_disk_space_below_metrics str
    stop_logging_when_free_disk_space_below_threshold float
    turn_on_qos_logging bool
    update_account_log_every float
    alertWhenFreeDiskSpaceBelow Boolean
    alertWhenFreeDiskSpaceBelowMetrics String
    alertWhenFreeDiskSpaceBelowThreshold Number
    alertWhenFreeDiskSpaceBelowType String
    beforeDeleteKeepLogsFromTheLastDays Boolean
    beforeDeleteKeepLogsFromTheLastDaysThreshold Number
    beforeDeleteRunScript Boolean
    beforeDeleteRunScriptCommand String
    deleteIndexFilesOlderThanDays Boolean
    deleteIndexFilesOlderThanDaysThreshold Number
    deleteIndexFilesWhenIndexSizeAbove Boolean
    deleteIndexFilesWhenIndexSizeAboveMetrics String
    deleteIndexFilesWhenIndexSizeAboveThreshold Number
    deleteWhenFreeDiskSpaceBelow Boolean
    deleteWhenFreeDiskSpaceBelowMetrics String
    deleteWhenFreeDiskSpaceBelowThreshold Number
    detectNewCitrixIcaApplicationNames Boolean
    forwardLogsToLogServer Boolean
    forwardLogsToLogServerName String
    forwardLogsToLogServerScheduleName String
    freeDiskSpaceMetrics String
    performLogRotateBeforeLogForwarding Boolean
    rejectConnectionsWhenFreeDiskSpaceBelowThreshold Boolean
    reserveForPacketCaptureMetrics String
    reserveForPacketCaptureThreshold Number
    rotateLogByFileSize Boolean
    rotateLogFileSizeThreshold Number
    rotateLogOnSchedule Boolean
    rotateLogScheduleName String
    stopLoggingWhenFreeDiskSpaceBelow Boolean
    stopLoggingWhenFreeDiskSpaceBelowMetrics String
    stopLoggingWhenFreeDiskSpaceBelowThreshold Number
    turnOnQosLogging Boolean
    updateAccountLogEvery Number

    GetManagementSimpleClusterMember

    Interfaces List<GetManagementSimpleClusterMemberInterface>
    Cluster Member network interfaces.interfaces blocks are documented below.
    IpAddress string
    Name string
    Object name.
    SicMessage string
    SicState string
    Interfaces []GetManagementSimpleClusterMemberInterface
    Cluster Member network interfaces.interfaces blocks are documented below.
    IpAddress string
    Name string
    Object name.
    SicMessage string
    SicState string
    interfaces List<GetManagementSimpleClusterMemberInterface>
    Cluster Member network interfaces.interfaces blocks are documented below.
    ipAddress String
    name String
    Object name.
    sicMessage String
    sicState String
    interfaces GetManagementSimpleClusterMemberInterface[]
    Cluster Member network interfaces.interfaces blocks are documented below.
    ipAddress string
    name string
    Object name.
    sicMessage string
    sicState string
    interfaces Sequence[GetManagementSimpleClusterMemberInterface]
    Cluster Member network interfaces.interfaces blocks are documented below.
    ip_address str
    name str
    Object name.
    sic_message str
    sic_state str
    interfaces List<Property Map>
    Cluster Member network interfaces.interfaces blocks are documented below.
    ipAddress String
    name String
    Object name.
    sicMessage String
    sicState String

    GetManagementSimpleClusterMemberInterface

    Ipv4Address string
    IPv4 address.
    Ipv4MaskLength string
    IPv4 network mask length.
    Ipv4NetworkMask string
    IPv4 network address.
    Ipv6Address string
    IPv6 address.
    Ipv6MaskLength string
    IPv6 network mask length.
    Ipv6NetworkMask string
    IPv6 network address.
    Name string
    Object name.
    Ipv4Address string
    IPv4 address.
    Ipv4MaskLength string
    IPv4 network mask length.
    Ipv4NetworkMask string
    IPv4 network address.
    Ipv6Address string
    IPv6 address.
    Ipv6MaskLength string
    IPv6 network mask length.
    Ipv6NetworkMask string
    IPv6 network address.
    Name string
    Object name.
    ipv4Address String
    IPv4 address.
    ipv4MaskLength String
    IPv4 network mask length.
    ipv4NetworkMask String
    IPv4 network address.
    ipv6Address String
    IPv6 address.
    ipv6MaskLength String
    IPv6 network mask length.
    ipv6NetworkMask String
    IPv6 network address.
    name String
    Object name.
    ipv4Address string
    IPv4 address.
    ipv4MaskLength string
    IPv4 network mask length.
    ipv4NetworkMask string
    IPv4 network address.
    ipv6Address string
    IPv6 address.
    ipv6MaskLength string
    IPv6 network mask length.
    ipv6NetworkMask string
    IPv6 network address.
    name string
    Object name.
    ipv4_address str
    IPv4 address.
    ipv4_mask_length str
    IPv4 network mask length.
    ipv4_network_mask str
    IPv4 network address.
    ipv6_address str
    IPv6 address.
    ipv6_mask_length str
    IPv6 network mask length.
    ipv6_network_mask str
    IPv6 network address.
    name str
    Object name.
    ipv4Address String
    IPv4 address.
    ipv4MaskLength String
    IPv4 network mask length.
    ipv4NetworkMask String
    IPv4 network address.
    ipv6Address String
    IPv6 address.
    ipv6MaskLength String
    IPv6 network mask length.
    ipv6NetworkMask String
    IPv6 network address.
    name String
    Object name.

    GetManagementSimpleClusterNatSetting

    AutoRule bool
    Whether to add automatic address translation rules.
    HideBehind string
    Hide behind method. This parameter is forbidden in case "method" parameter is "static".
    InstallOn string
    Which gateway should apply the NAT translation.
    Ipv4Address string
    IPv4 address.
    Ipv6Address string
    IPv6 address.
    Method string
    NAT translation method.
    AutoRule bool
    Whether to add automatic address translation rules.
    HideBehind string
    Hide behind method. This parameter is forbidden in case "method" parameter is "static".
    InstallOn string
    Which gateway should apply the NAT translation.
    Ipv4Address string
    IPv4 address.
    Ipv6Address string
    IPv6 address.
    Method string
    NAT translation method.
    autoRule Boolean
    Whether to add automatic address translation rules.
    hideBehind String
    Hide behind method. This parameter is forbidden in case "method" parameter is "static".
    installOn String
    Which gateway should apply the NAT translation.
    ipv4Address String
    IPv4 address.
    ipv6Address String
    IPv6 address.
    method String
    NAT translation method.
    autoRule boolean
    Whether to add automatic address translation rules.
    hideBehind string
    Hide behind method. This parameter is forbidden in case "method" parameter is "static".
    installOn 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.
    autoRule Boolean
    Whether to add automatic address translation rules.
    hideBehind String
    Hide behind method. This parameter is forbidden in case "method" parameter is "static".
    installOn String
    Which gateway should apply the NAT translation.
    ipv4Address String
    IPv4 address.
    ipv6Address String
    IPv6 address.
    method String
    NAT translation method.

    GetManagementSimpleClusterPlatformPortalSetting

    Accessibilities List<GetManagementSimpleClusterPlatformPortalSettingAccessibility>
    Configuration of the portal access settings.accessibility blocks are documented below.
    CertificateSettings List<GetManagementSimpleClusterPlatformPortalSettingCertificateSetting>
    Configuration of the portal certificate settings.certificate_settings blocks are documented below.
    PortalWebSettings List<GetManagementSimpleClusterPlatformPortalSettingPortalWebSetting>
    Configuration of the portal web settings.portal_web_settings blocks are documented below.
    Accessibilities []GetManagementSimpleClusterPlatformPortalSettingAccessibility
    Configuration of the portal access settings.accessibility blocks are documented below.
    CertificateSettings []GetManagementSimpleClusterPlatformPortalSettingCertificateSetting
    Configuration of the portal certificate settings.certificate_settings blocks are documented below.
    PortalWebSettings []GetManagementSimpleClusterPlatformPortalSettingPortalWebSetting
    Configuration of the portal web settings.portal_web_settings blocks are documented below.
    accessibilities List<GetManagementSimpleClusterPlatformPortalSettingAccessibility>
    Configuration of the portal access settings.accessibility blocks are documented below.
    certificateSettings List<GetManagementSimpleClusterPlatformPortalSettingCertificateSetting>
    Configuration of the portal certificate settings.certificate_settings blocks are documented below.
    portalWebSettings List<GetManagementSimpleClusterPlatformPortalSettingPortalWebSetting>
    Configuration of the portal web settings.portal_web_settings blocks are documented below.
    accessibilities GetManagementSimpleClusterPlatformPortalSettingAccessibility[]
    Configuration of the portal access settings.accessibility blocks are documented below.
    certificateSettings GetManagementSimpleClusterPlatformPortalSettingCertificateSetting[]
    Configuration of the portal certificate settings.certificate_settings blocks are documented below.
    portalWebSettings GetManagementSimpleClusterPlatformPortalSettingPortalWebSetting[]
    Configuration of the portal web settings.portal_web_settings blocks are documented below.
    accessibilities Sequence[GetManagementSimpleClusterPlatformPortalSettingAccessibility]
    Configuration of the portal access settings.accessibility blocks are documented below.
    certificate_settings Sequence[GetManagementSimpleClusterPlatformPortalSettingCertificateSetting]
    Configuration of the portal certificate settings.certificate_settings blocks are documented below.
    portal_web_settings Sequence[GetManagementSimpleClusterPlatformPortalSettingPortalWebSetting]
    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.
    certificateSettings List<Property Map>
    Configuration of the portal certificate settings.certificate_settings blocks are documented below.
    portalWebSettings List<Property Map>
    Configuration of the portal web settings.portal_web_settings blocks are documented below.

    GetManagementSimpleClusterPlatformPortalSettingAccessibility

    AllowAccessFrom string
    Allowed access to the web portal (based on interfaces, or security policy).
    InternalAccessSettings List<GetManagementSimpleClusterPlatformPortalSettingAccessibilityInternalAccessSetting>
    Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
    AllowAccessFrom string
    Allowed access to the web portal (based on interfaces, or security policy).
    InternalAccessSettings []GetManagementSimpleClusterPlatformPortalSettingAccessibilityInternalAccessSetting
    Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
    allowAccessFrom String
    Allowed access to the web portal (based on interfaces, or security policy).
    internalAccessSettings List<GetManagementSimpleClusterPlatformPortalSettingAccessibilityInternalAccessSetting>
    Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
    allowAccessFrom string
    Allowed access to the web portal (based on interfaces, or security policy).
    internalAccessSettings GetManagementSimpleClusterPlatformPortalSettingAccessibilityInternalAccessSetting[]
    Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
    allow_access_from str
    Allowed access to the web portal (based on interfaces, or security policy).
    internal_access_settings Sequence[GetManagementSimpleClusterPlatformPortalSettingAccessibilityInternalAccessSetting]
    Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
    allowAccessFrom String
    Allowed access to the web portal (based on interfaces, or security policy).
    internalAccessSettings List<Property Map>
    Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.

    GetManagementSimpleClusterPlatformPortalSettingAccessibilityInternalAccessSetting

    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.

    GetManagementSimpleClusterPlatformPortalSettingCertificateSetting

    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.

    GetManagementSimpleClusterPlatformPortalSettingPortalWebSetting

    Aliases List<string>
    List of URL aliases that are redirected to the main portal URL.aliases blocks are documented below.
    MainUrl string
    The main URL for the web portal.
    Aliases []string
    List of URL aliases that are redirected to the main portal URL.aliases blocks are documented below.
    MainUrl string
    The main URL for the web portal.
    aliases List<String>
    List of URL aliases that are redirected to the main portal URL.aliases blocks are documented below.
    mainUrl String
    The main URL for the web portal.
    aliases string[]
    List of URL aliases that are redirected to the main portal URL.aliases blocks are documented below.
    mainUrl string
    The main URL for the web portal.
    aliases Sequence[str]
    List of URL aliases that are redirected to the main portal URL.aliases blocks are documented below.
    main_url str
    The main URL for the web portal.
    aliases List<String>
    List of URL aliases that are redirected to the main portal URL.aliases blocks are documented below.
    mainUrl String
    The main URL for the web portal.

    GetManagementSimpleClusterProxySetting

    Port double
    N/A
    ProxyServer string
    N/A
    UseCustomProxy bool
    Use custom proxy settings for this network object.
    Port float64
    N/A
    ProxyServer string
    N/A
    UseCustomProxy bool
    Use custom proxy settings for this network object.
    port Double
    N/A
    proxyServer String
    N/A
    useCustomProxy Boolean
    Use custom proxy settings for this network object.
    port number
    N/A
    proxyServer string
    N/A
    useCustomProxy boolean
    Use custom proxy settings for this network object.
    port float
    N/A
    proxy_server str
    N/A
    use_custom_proxy bool
    Use custom proxy settings for this network object.
    port Number
    N/A
    proxyServer String
    N/A
    useCustomProxy Boolean
    Use custom proxy settings for this network object.

    GetManagementSimpleClusterUsercheckPortalSetting

    Accessibilities List<GetManagementSimpleClusterUsercheckPortalSettingAccessibility>
    Configuration of the portal access settings.accessibility blocks are documented below.
    CertificateSettings List<GetManagementSimpleClusterUsercheckPortalSettingCertificateSetting>
    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'}.
    PortalWebSettings List<GetManagementSimpleClusterUsercheckPortalSettingPortalWebSetting>
    Configuration of the portal web settings.portal_web_settings blocks are documented below.
    Accessibilities []GetManagementSimpleClusterUsercheckPortalSettingAccessibility
    Configuration of the portal access settings.accessibility blocks are documented below.
    CertificateSettings []GetManagementSimpleClusterUsercheckPortalSettingCertificateSetting
    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'}.
    PortalWebSettings []GetManagementSimpleClusterUsercheckPortalSettingPortalWebSetting
    Configuration of the portal web settings.portal_web_settings blocks are documented below.
    accessibilities List<GetManagementSimpleClusterUsercheckPortalSettingAccessibility>
    Configuration of the portal access settings.accessibility blocks are documented below.
    certificateSettings List<GetManagementSimpleClusterUsercheckPortalSettingCertificateSetting>
    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'}.
    portalWebSettings List<GetManagementSimpleClusterUsercheckPortalSettingPortalWebSetting>
    Configuration of the portal web settings.portal_web_settings blocks are documented below.
    accessibilities GetManagementSimpleClusterUsercheckPortalSettingAccessibility[]
    Configuration of the portal access settings.accessibility blocks are documented below.
    certificateSettings GetManagementSimpleClusterUsercheckPortalSettingCertificateSetting[]
    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'}.
    portalWebSettings GetManagementSimpleClusterUsercheckPortalSettingPortalWebSetting[]
    Configuration of the portal web settings.portal_web_settings blocks are documented below.
    accessibilities Sequence[GetManagementSimpleClusterUsercheckPortalSettingAccessibility]
    Configuration of the portal access settings.accessibility blocks are documented below.
    certificate_settings Sequence[GetManagementSimpleClusterUsercheckPortalSettingCertificateSetting]
    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_settings Sequence[GetManagementSimpleClusterUsercheckPortalSettingPortalWebSetting]
    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.
    certificateSettings 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'}.
    portalWebSettings List<Property Map>
    Configuration of the portal web settings.portal_web_settings blocks are documented below.

    GetManagementSimpleClusterUsercheckPortalSettingAccessibility

    AllowAccessFrom string
    Allowed access to the web portal (based on interfaces, or security policy).
    InternalAccessSettings List<GetManagementSimpleClusterUsercheckPortalSettingAccessibilityInternalAccessSetting>
    Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
    AllowAccessFrom string
    Allowed access to the web portal (based on interfaces, or security policy).
    InternalAccessSettings []GetManagementSimpleClusterUsercheckPortalSettingAccessibilityInternalAccessSetting
    Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
    allowAccessFrom String
    Allowed access to the web portal (based on interfaces, or security policy).
    internalAccessSettings List<GetManagementSimpleClusterUsercheckPortalSettingAccessibilityInternalAccessSetting>
    Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
    allowAccessFrom string
    Allowed access to the web portal (based on interfaces, or security policy).
    internalAccessSettings GetManagementSimpleClusterUsercheckPortalSettingAccessibilityInternalAccessSetting[]
    Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
    allow_access_from str
    Allowed access to the web portal (based on interfaces, or security policy).
    internal_access_settings Sequence[GetManagementSimpleClusterUsercheckPortalSettingAccessibilityInternalAccessSetting]
    Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.
    allowAccessFrom String
    Allowed access to the web portal (based on interfaces, or security policy).
    internalAccessSettings List<Property Map>
    Configuration of the additional portal access settings for internal interfaces only.internal_access_settings blocks are documented below.

    GetManagementSimpleClusterUsercheckPortalSettingAccessibilityInternalAccessSetting

    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.

    GetManagementSimpleClusterUsercheckPortalSettingCertificateSetting

    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.

    GetManagementSimpleClusterUsercheckPortalSettingPortalWebSetting

    Aliases List<string>
    List of URL aliases that are redirected to the main portal URL.aliases blocks are documented below.
    MainUrl string
    The main URL for the web portal.
    Aliases []string
    List of URL aliases that are redirected to the main portal URL.aliases blocks are documented below.
    MainUrl string
    The main URL for the web portal.
    aliases List<String>
    List of URL aliases that are redirected to the main portal URL.aliases blocks are documented below.
    mainUrl String
    The main URL for the web portal.
    aliases string[]
    List of URL aliases that are redirected to the main portal URL.aliases blocks are documented below.
    mainUrl string
    The main URL for the web portal.
    aliases Sequence[str]
    List of URL aliases that are redirected to the main portal URL.aliases blocks are documented below.
    main_url str
    The main URL for the web portal.
    aliases List<String>
    List of URL aliases that are redirected to the main portal URL.aliases blocks are documented below.
    mainUrl String
    The main URL for the web portal.

    GetManagementSimpleClusterVpnSetting

    Authentications List<GetManagementSimpleClusterVpnSettingAuthentication>
    Authentication.authentication blocks are documented below.
    LinkSelections List<GetManagementSimpleClusterVpnSettingLinkSelection>
    Link Selection.link_selection blocks are documented below.
    MaximumConcurrentIkeNegotiations double
    N/A
    MaximumConcurrentTunnels double
    N/A
    OfficeModes List<GetManagementSimpleClusterVpnSettingOfficeMode>
    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.
    RemoteAccesses List<GetManagementSimpleClusterVpnSettingRemoteAccess>
    Remote Access.remote_access blocks are documented below.
    VpnDomain string
    Gateway VPN domain identified by the name or UID.
    VpnDomainExcludeExternalIpAddresses bool
    Exclude the external IP addresses from the VPN domain of this Security Gateway.
    VpnDomainType string
    Gateway VPN domain type.
    Authentications []GetManagementSimpleClusterVpnSettingAuthentication
    Authentication.authentication blocks are documented below.
    LinkSelections []GetManagementSimpleClusterVpnSettingLinkSelection
    Link Selection.link_selection blocks are documented below.
    MaximumConcurrentIkeNegotiations float64
    N/A
    MaximumConcurrentTunnels float64
    N/A
    OfficeModes []GetManagementSimpleClusterVpnSettingOfficeMode
    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.
    RemoteAccesses []GetManagementSimpleClusterVpnSettingRemoteAccess
    Remote Access.remote_access blocks are documented below.
    VpnDomain string
    Gateway VPN domain identified by the name or UID.
    VpnDomainExcludeExternalIpAddresses bool
    Exclude the external IP addresses from the VPN domain of this Security Gateway.
    VpnDomainType string
    Gateway VPN domain type.
    authentications List<GetManagementSimpleClusterVpnSettingAuthentication>
    Authentication.authentication blocks are documented below.
    linkSelections List<GetManagementSimpleClusterVpnSettingLinkSelection>
    Link Selection.link_selection blocks are documented below.
    maximumConcurrentIkeNegotiations Double
    N/A
    maximumConcurrentTunnels Double
    N/A
    officeModes List<GetManagementSimpleClusterVpnSettingOfficeMode>
    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.
    remoteAccesses List<GetManagementSimpleClusterVpnSettingRemoteAccess>
    Remote Access.remote_access blocks are documented below.
    vpnDomain String
    Gateway VPN domain identified by the name or UID.
    vpnDomainExcludeExternalIpAddresses Boolean
    Exclude the external IP addresses from the VPN domain of this Security Gateway.
    vpnDomainType String
    Gateway VPN domain type.
    authentications GetManagementSimpleClusterVpnSettingAuthentication[]
    Authentication.authentication blocks are documented below.
    linkSelections GetManagementSimpleClusterVpnSettingLinkSelection[]
    Link Selection.link_selection blocks are documented below.
    maximumConcurrentIkeNegotiations number
    N/A
    maximumConcurrentTunnels number
    N/A
    officeModes GetManagementSimpleClusterVpnSettingOfficeMode[]
    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.
    remoteAccesses GetManagementSimpleClusterVpnSettingRemoteAccess[]
    Remote Access.remote_access blocks are documented below.
    vpnDomain string
    Gateway VPN domain identified by the name or UID.
    vpnDomainExcludeExternalIpAddresses boolean
    Exclude the external IP addresses from the VPN domain of this Security Gateway.
    vpnDomainType string
    Gateway VPN domain type.
    authentications Sequence[GetManagementSimpleClusterVpnSettingAuthentication]
    Authentication.authentication blocks are documented below.
    link_selections Sequence[GetManagementSimpleClusterVpnSettingLinkSelection]
    Link Selection.link_selection blocks are documented below.
    maximum_concurrent_ike_negotiations float
    N/A
    maximum_concurrent_tunnels float
    N/A
    office_modes Sequence[GetManagementSimpleClusterVpnSettingOfficeMode]
    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[GetManagementSimpleClusterVpnSettingRemoteAccess]
    Remote Access.remote_access blocks are documented below.
    vpn_domain str
    Gateway VPN domain identified by the name or UID.
    vpn_domain_exclude_external_ip_addresses bool
    Exclude the external IP addresses from the VPN domain of this Security Gateway.
    vpn_domain_type str
    Gateway VPN domain type.
    authentications List<Property Map>
    Authentication.authentication blocks are documented below.
    linkSelections List<Property Map>
    Link Selection.link_selection blocks are documented below.
    maximumConcurrentIkeNegotiations Number
    N/A
    maximumConcurrentTunnels Number
    N/A
    officeModes 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.
    remoteAccesses List<Property Map>
    Remote Access.remote_access blocks are documented below.
    vpnDomain String
    Gateway VPN domain identified by the name or UID.
    vpnDomainExcludeExternalIpAddresses Boolean
    Exclude the external IP addresses from the VPN domain of this Security Gateway.
    vpnDomainType String
    Gateway VPN domain type.

    GetManagementSimpleClusterVpnSettingAuthentication

    AuthenticationClients List<string>
    Collection of VPN Authentication clients identified by the name or UID.authentication_clients blocks are documented below.
    AuthenticationClients []string
    Collection of VPN Authentication clients identified by the name or UID.authentication_clients blocks are documented below.
    authenticationClients List<String>
    Collection of VPN Authentication clients identified by the name or UID.authentication_clients blocks are documented below.
    authenticationClients 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.
    authenticationClients List<String>
    Collection of VPN Authentication clients identified by the name or UID.authentication_clients blocks are documented below.

    GetManagementSimpleClusterVpnSettingLinkSelection

    DnsResolvingHostname string
    DNS Resolving Hostname. Must be set when "ip-selection" was selected to be "dns-resolving-from-hostname".
    IpAddress string
    IpSelection string
    DnsResolvingHostname string
    DNS Resolving Hostname. Must be set when "ip-selection" was selected to be "dns-resolving-from-hostname".
    IpAddress string
    IpSelection string
    dnsResolvingHostname String
    DNS Resolving Hostname. Must be set when "ip-selection" was selected to be "dns-resolving-from-hostname".
    ipAddress String
    ipSelection String
    dnsResolvingHostname string
    DNS Resolving Hostname. Must be set when "ip-selection" was selected to be "dns-resolving-from-hostname".
    ipAddress string
    ipSelection string
    dns_resolving_hostname str
    DNS Resolving Hostname. Must be set when "ip-selection" was selected to be "dns-resolving-from-hostname".
    ip_address str
    ip_selection str
    dnsResolvingHostname String
    DNS Resolving Hostname. Must be set when "ip-selection" was selected to be "dns-resolving-from-hostname".
    ipAddress String
    ipSelection String

    GetManagementSimpleClusterVpnSettingOfficeMode

    AllocateIpAddressFroms List<GetManagementSimpleClusterVpnSettingOfficeModeAllocateIpAddressFrom>
    Allocate IP address Method. Allocate IP address by sequentially trying the given methods until success.allocate_ip_address_from blocks are documented below.
    AntiSpoofingAdditionalAddresses string
    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.
    PerformAntiSpoofing bool
    Perform Anti-Spoofing on Office Mode addresses.
    SupportMultipleInterfaces bool
    Support connectivity enhancement for gateways with multiple external interfaces.
    AllocateIpAddressFroms []GetManagementSimpleClusterVpnSettingOfficeModeAllocateIpAddressFrom
    Allocate IP address Method. Allocate IP address by sequentially trying the given methods until success.allocate_ip_address_from blocks are documented below.
    AntiSpoofingAdditionalAddresses string
    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.
    PerformAntiSpoofing bool
    Perform Anti-Spoofing on Office Mode addresses.
    SupportMultipleInterfaces bool
    Support connectivity enhancement for gateways with multiple external interfaces.
    allocateIpAddressFroms List<GetManagementSimpleClusterVpnSettingOfficeModeAllocateIpAddressFrom>
    Allocate IP address Method. Allocate IP address by sequentially trying the given methods until success.allocate_ip_address_from blocks are documented below.
    antiSpoofingAdditionalAddresses String
    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.
    performAntiSpoofing Boolean
    Perform Anti-Spoofing on Office Mode addresses.
    supportMultipleInterfaces Boolean
    Support connectivity enhancement for gateways with multiple external interfaces.
    allocateIpAddressFroms GetManagementSimpleClusterVpnSettingOfficeModeAllocateIpAddressFrom[]
    Allocate IP address Method. Allocate IP address by sequentially trying the given methods until success.allocate_ip_address_from blocks are documented below.
    antiSpoofingAdditionalAddresses string
    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.
    performAntiSpoofing boolean
    Perform Anti-Spoofing on Office Mode addresses.
    supportMultipleInterfaces boolean
    Support connectivity enhancement for gateways with multiple external interfaces.
    allocate_ip_address_froms Sequence[GetManagementSimpleClusterVpnSettingOfficeModeAllocateIpAddressFrom]
    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_additional_addresses str
    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_spoofing bool
    Perform Anti-Spoofing on Office Mode addresses.
    support_multiple_interfaces bool
    Support connectivity enhancement for gateways with multiple external interfaces.
    allocateIpAddressFroms List<Property Map>
    Allocate IP address Method. Allocate IP address by sequentially trying the given methods until success.allocate_ip_address_from blocks are documented below.
    antiSpoofingAdditionalAddresses String
    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.
    performAntiSpoofing Boolean
    Perform Anti-Spoofing on Office Mode addresses.
    supportMultipleInterfaces Boolean
    Support connectivity enhancement for gateways with multiple external interfaces.

    GetManagementSimpleClusterVpnSettingOfficeModeAllocateIpAddressFrom

    AllocateMethod string
    Using either Manual (IP Pool) or Automatic (DHCP). Must be set when "use-allocate-method" is true.
    DhcpMacAddress string
    Calculated MAC address for DHCP allocation. Must be set when "allocate-method" was selected to be "automatic".
    DhcpServer string
    DHCP Server. Identified by name or UID. Must be set when "allocate-method" was selected to be "automatic".
    ManualNetwork string
    Manual Network. Identified by name or UID. Must be set when "allocate-method" was selected to be "manual".
    OptionalParameters List<GetManagementSimpleClusterVpnSettingOfficeModeAllocateIpAddressFromOptionalParameter>
    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.
    RadiusServer bool
    Radius server used to authenticate the user.
    UseAllocateMethod bool
    Use Allocate Method.
    VirtualIpAddress string
    Virtual IPV4 address for DHCP server replies. Must be set when "allocate-method" was selected to be "automatic".
    AllocateMethod string
    Using either Manual (IP Pool) or Automatic (DHCP). Must be set when "use-allocate-method" is true.
    DhcpMacAddress string
    Calculated MAC address for DHCP allocation. Must be set when "allocate-method" was selected to be "automatic".
    DhcpServer string
    DHCP Server. Identified by name or UID. Must be set when "allocate-method" was selected to be "automatic".
    ManualNetwork string
    Manual Network. Identified by name or UID. Must be set when "allocate-method" was selected to be "manual".
    OptionalParameters []GetManagementSimpleClusterVpnSettingOfficeModeAllocateIpAddressFromOptionalParameter
    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.
    RadiusServer bool
    Radius server used to authenticate the user.
    UseAllocateMethod bool
    Use Allocate Method.
    VirtualIpAddress string
    Virtual IPV4 address for DHCP server replies. Must be set when "allocate-method" was selected to be "automatic".
    allocateMethod String
    Using either Manual (IP Pool) or Automatic (DHCP). Must be set when "use-allocate-method" is true.
    dhcpMacAddress String
    Calculated MAC address for DHCP allocation. Must be set when "allocate-method" was selected to be "automatic".
    dhcpServer String
    DHCP Server. Identified by name or UID. Must be set when "allocate-method" was selected to be "automatic".
    manualNetwork String
    Manual Network. Identified by name or UID. Must be set when "allocate-method" was selected to be "manual".
    optionalParameters List<GetManagementSimpleClusterVpnSettingOfficeModeAllocateIpAddressFromOptionalParameter>
    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.
    radiusServer Boolean
    Radius server used to authenticate the user.
    useAllocateMethod Boolean
    Use Allocate Method.
    virtualIpAddress String
    Virtual IPV4 address for DHCP server replies. Must be set when "allocate-method" was selected to be "automatic".
    allocateMethod string
    Using either Manual (IP Pool) or Automatic (DHCP). Must be set when "use-allocate-method" is true.
    dhcpMacAddress string
    Calculated MAC address for DHCP allocation. Must be set when "allocate-method" was selected to be "automatic".
    dhcpServer string
    DHCP Server. Identified by name or UID. Must be set when "allocate-method" was selected to be "automatic".
    manualNetwork string
    Manual Network. Identified by name or UID. Must be set when "allocate-method" was selected to be "manual".
    optionalParameters GetManagementSimpleClusterVpnSettingOfficeModeAllocateIpAddressFromOptionalParameter[]
    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.
    radiusServer boolean
    Radius server used to authenticate the user.
    useAllocateMethod boolean
    Use Allocate Method.
    virtualIpAddress string
    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_address str
    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[GetManagementSimpleClusterVpnSettingOfficeModeAllocateIpAddressFromOptionalParameter]
    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_method bool
    Use Allocate Method.
    virtual_ip_address str
    Virtual IPV4 address for DHCP server replies. Must be set when "allocate-method" was selected to be "automatic".
    allocateMethod String
    Using either Manual (IP Pool) or Automatic (DHCP). Must be set when "use-allocate-method" is true.
    dhcpMacAddress String
    Calculated MAC address for DHCP allocation. Must be set when "allocate-method" was selected to be "automatic".
    dhcpServer String
    DHCP Server. Identified by name or UID. Must be set when "allocate-method" was selected to be "automatic".
    manualNetwork String
    Manual Network. Identified by name or UID. Must be set when "allocate-method" was selected to be "manual".
    optionalParameters 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.
    radiusServer Boolean
    Radius server used to authenticate the user.
    useAllocateMethod Boolean
    Use Allocate Method.
    virtualIpAddress String
    Virtual IPV4 address for DHCP server replies. Must be set when "allocate-method" was selected to be "automatic".

    GetManagementSimpleClusterVpnSettingOfficeModeAllocateIpAddressFromOptionalParameter

    DnsSuffixes string
    DNS Suffixes.
    FirstBackupDnsServer string
    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.
    FirstBackupWinsServer string
    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.
    IpLeaseDuration double
    PrimaryDnsServer string
    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.
    PrimaryWinsServer string
    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.
    SecondBackupDnsServer string
    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.
    SecondBackupWinsServer string
    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.
    UseFirstBackupDnsServer bool
    Use First Backup DNS Server.
    UseFirstBackupWinsServer bool
    Use First Backup WINS Server.
    UsePrimaryDnsServer bool
    Use Primary DNS Server.
    UsePrimaryWinsServer bool
    Use Primary WINS Server.
    UseSecondBackupDnsServer bool
    Use Second Backup DNS Server.
    UseSecondBackupWinsServer bool
    Use Second Backup WINS Server.
    DnsSuffixes string
    DNS Suffixes.
    FirstBackupDnsServer string
    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.
    FirstBackupWinsServer string
    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.
    IpLeaseDuration float64
    PrimaryDnsServer string
    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.
    PrimaryWinsServer string
    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.
    SecondBackupDnsServer string
    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.
    SecondBackupWinsServer string
    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.
    UseFirstBackupDnsServer bool
    Use First Backup DNS Server.
    UseFirstBackupWinsServer bool
    Use First Backup WINS Server.
    UsePrimaryDnsServer bool
    Use Primary DNS Server.
    UsePrimaryWinsServer bool
    Use Primary WINS Server.
    UseSecondBackupDnsServer bool
    Use Second Backup DNS Server.
    UseSecondBackupWinsServer bool
    Use Second Backup WINS Server.
    dnsSuffixes String
    DNS Suffixes.
    firstBackupDnsServer String
    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.
    firstBackupWinsServer String
    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.
    ipLeaseDuration Double
    primaryDnsServer String
    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.
    primaryWinsServer String
    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.
    secondBackupDnsServer String
    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.
    secondBackupWinsServer String
    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.
    useFirstBackupDnsServer Boolean
    Use First Backup DNS Server.
    useFirstBackupWinsServer Boolean
    Use First Backup WINS Server.
    usePrimaryDnsServer Boolean
    Use Primary DNS Server.
    usePrimaryWinsServer Boolean
    Use Primary WINS Server.
    useSecondBackupDnsServer Boolean
    Use Second Backup DNS Server.
    useSecondBackupWinsServer Boolean
    Use Second Backup WINS Server.
    dnsSuffixes string
    DNS Suffixes.
    firstBackupDnsServer string
    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.
    firstBackupWinsServer string
    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.
    ipLeaseDuration number
    primaryDnsServer string
    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.
    primaryWinsServer string
    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.
    secondBackupDnsServer string
    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.
    secondBackupWinsServer string
    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.
    useFirstBackupDnsServer boolean
    Use First Backup DNS Server.
    useFirstBackupWinsServer boolean
    Use First Backup WINS Server.
    usePrimaryDnsServer boolean
    Use Primary DNS Server.
    usePrimaryWinsServer boolean
    Use Primary WINS Server.
    useSecondBackupDnsServer boolean
    Use Second Backup DNS Server.
    useSecondBackupWinsServer boolean
    Use Second Backup WINS Server.
    dns_suffixes str
    DNS Suffixes.
    first_backup_dns_server str
    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_wins_server str
    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_duration float
    primary_dns_server str
    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_server str
    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_dns_server str
    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_wins_server str
    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_backup_dns_server bool
    Use First Backup DNS Server.
    use_first_backup_wins_server bool
    Use First Backup WINS Server.
    use_primary_dns_server bool
    Use Primary DNS Server.
    use_primary_wins_server bool
    Use Primary WINS Server.
    use_second_backup_dns_server bool
    Use Second Backup DNS Server.
    use_second_backup_wins_server bool
    Use Second Backup WINS Server.
    dnsSuffixes String
    DNS Suffixes.
    firstBackupDnsServer String
    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.
    firstBackupWinsServer String
    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.
    ipLeaseDuration Number
    primaryDnsServer String
    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.
    primaryWinsServer String
    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.
    secondBackupDnsServer String
    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.
    secondBackupWinsServer String
    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.
    useFirstBackupDnsServer Boolean
    Use First Backup DNS Server.
    useFirstBackupWinsServer Boolean
    Use First Backup WINS Server.
    usePrimaryDnsServer Boolean
    Use Primary DNS Server.
    usePrimaryWinsServer Boolean
    Use Primary WINS Server.
    useSecondBackupDnsServer Boolean
    Use Second Backup DNS Server.
    useSecondBackupWinsServer Boolean
    Use Second Backup WINS Server.

    GetManagementSimpleClusterVpnSettingRemoteAccess

    AllowVpnClientsToRouteTraffic bool
    Allow VPN clients to route traffic.
    L2tpAuthMethod string
    L2TP Authentication Method. Must be set when "support-l2tp" is true.
    L2tpCertificate 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.
    NatTraversalService string
    Allocated NAT traversal UDP service. Identified by name or UID. Must be set when "support-nat-traversal-mechanism" is true.
    SupportL2tp bool
    Support L2TP (relevant only when office mode is active).
    SupportNatTraversalMechanism bool
    Support NAT traversal mechanism (UDP encapsulation).
    SupportVisitorMode bool
    Support Visitor Mode.
    VisitorModeInterface string
    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.
    VisitorModeService string
    TCP Service for Visitor Mode. Identified by name or UID. Must be set when "support-visitor-mode" is true.
    AllowVpnClientsToRouteTraffic bool
    Allow VPN clients to route traffic.
    L2tpAuthMethod string
    L2TP Authentication Method. Must be set when "support-l2tp" is true.
    L2tpCertificate 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.
    NatTraversalService string
    Allocated NAT traversal UDP service. Identified by name or UID. Must be set when "support-nat-traversal-mechanism" is true.
    SupportL2tp bool
    Support L2TP (relevant only when office mode is active).
    SupportNatTraversalMechanism bool
    Support NAT traversal mechanism (UDP encapsulation).
    SupportVisitorMode bool
    Support Visitor Mode.
    VisitorModeInterface string
    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.
    VisitorModeService string
    TCP Service for Visitor Mode. Identified by name or UID. Must be set when "support-visitor-mode" is true.
    allowVpnClientsToRouteTraffic Boolean
    Allow VPN clients to route traffic.
    l2tpAuthMethod String
    L2TP Authentication Method. Must be set when "support-l2tp" is true.
    l2tpCertificate 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.
    natTraversalService String
    Allocated NAT traversal UDP service. Identified by name or UID. Must be set when "support-nat-traversal-mechanism" is true.
    supportL2tp Boolean
    Support L2TP (relevant only when office mode is active).
    supportNatTraversalMechanism Boolean
    Support NAT traversal mechanism (UDP encapsulation).
    supportVisitorMode Boolean
    Support Visitor Mode.
    visitorModeInterface String
    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.
    visitorModeService String
    TCP Service for Visitor Mode. Identified by name or UID. Must be set when "support-visitor-mode" is true.
    allowVpnClientsToRouteTraffic boolean
    Allow VPN clients to route traffic.
    l2tpAuthMethod string
    L2TP Authentication Method. Must be set when "support-l2tp" is true.
    l2tpCertificate 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.
    natTraversalService string
    Allocated NAT traversal UDP service. Identified by name or UID. Must be set when "support-nat-traversal-mechanism" is true.
    supportL2tp boolean
    Support L2TP (relevant only when office mode is active).
    supportNatTraversalMechanism boolean
    Support NAT traversal mechanism (UDP encapsulation).
    supportVisitorMode boolean
    Support Visitor Mode.
    visitorModeInterface string
    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.
    visitorModeService string
    TCP Service for Visitor Mode. Identified by name or UID. Must be set when "support-visitor-mode" is true.
    allow_vpn_clients_to_route_traffic bool
    Allow VPN clients to route traffic.
    l2tp_auth_method str
    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_service str
    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_traversal_mechanism bool
    Support NAT traversal mechanism (UDP encapsulation).
    support_visitor_mode bool
    Support Visitor Mode.
    visitor_mode_interface str
    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_service str
    TCP Service for Visitor Mode. Identified by name or UID. Must be set when "support-visitor-mode" is true.
    allowVpnClientsToRouteTraffic Boolean
    Allow VPN clients to route traffic.
    l2tpAuthMethod String
    L2TP Authentication Method. Must be set when "support-l2tp" is true.
    l2tpCertificate 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.
    natTraversalService String
    Allocated NAT traversal UDP service. Identified by name or UID. Must be set when "support-nat-traversal-mechanism" is true.
    supportL2tp Boolean
    Support L2TP (relevant only when office mode is active).
    supportNatTraversalMechanism Boolean
    Support NAT traversal mechanism (UDP encapsulation).
    supportVisitorMode Boolean
    Support Visitor Mode.
    visitorModeInterface String
    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.
    visitorModeService String
    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 checkpoint Terraform Provider.
    Viewing docs for checkpoint 3.0.0
    published on Monday, Mar 30, 2026 by checkpointsw
      Try Pulumi Cloud free. Your team will thank you.