published on Friday, Jun 26, 2026 by Pulumi
published on Friday, Jun 26, 2026 by Pulumi
This resource can manage a SSE Zscaler Feature.
- Minimum SD-WAN Manager version:
20.15.0
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as sdwan from "@pulumi/sdwan";
const example = new sdwan.SseZscalerFeature("example", {
name: "Example",
description: "My Example",
featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
interfaces: [{
interfaceName: "ipsec1",
auto: true,
tunnelSourceInterface: "GigabitEthernet8",
tunnelSet: "secure-internet-gateway-zscaler",
tunnelDcPreference: "primary-dc",
mtu: 1400,
ikeVersion: 2,
preSharedKeyDynamic: true,
}],
interfacePairs: [{
activeInterface: "ipsec1",
activeInterfaceWeight: 1,
backupInterface: "None",
backupInterfaceWeight: 1,
}],
refreshTime: 1,
refreshTimeUnit: "MINUTE",
subLocations: [{
name: "zscaler_sub1",
ofwEnabled: false,
cautionEnabled: false,
serviceVpn: ["service_lan_vpn1,service_lan_vpn2"],
internalIp: [{
internalIpValue: "172.16.2.1",
}],
aupEnabled: false,
enforceBandwidthControl: "disabled",
}],
trackerSourceIp: "1.2.3.4",
trackers: [{
name: "tracker1",
endpointApiUrl: "http://cisco.com",
threshold: 300,
interval: 60,
multiplier: 3,
}],
});
import pulumi
import pulumi_sdwan as sdwan
example = sdwan.SseZscalerFeature("example",
name="Example",
description="My Example",
feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
interfaces=[{
"interface_name": "ipsec1",
"auto": True,
"tunnel_source_interface": "GigabitEthernet8",
"tunnel_set": "secure-internet-gateway-zscaler",
"tunnel_dc_preference": "primary-dc",
"mtu": 1400,
"ike_version": 2,
"pre_shared_key_dynamic": True,
}],
interface_pairs=[{
"active_interface": "ipsec1",
"active_interface_weight": 1,
"backup_interface": "None",
"backup_interface_weight": 1,
}],
refresh_time=1,
refresh_time_unit="MINUTE",
sub_locations=[{
"name": "zscaler_sub1",
"ofw_enabled": False,
"caution_enabled": False,
"service_vpn": ["service_lan_vpn1,service_lan_vpn2"],
"internal_ip": [{
"internalIpValue": "172.16.2.1",
}],
"aup_enabled": False,
"enforce_bandwidth_control": "disabled",
}],
tracker_source_ip="1.2.3.4",
trackers=[{
"name": "tracker1",
"endpoint_api_url": "http://cisco.com",
"threshold": 300,
"interval": 60,
"multiplier": 3,
}])
package main
import (
"github.com/pulumi/pulumi-sdwan/sdk/go/sdwan"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := sdwan.NewSseZscalerFeature(ctx, "example", &sdwan.SseZscalerFeatureArgs{
Name: pulumi.String("Example"),
Description: pulumi.String("My Example"),
FeatureProfileId: pulumi.String("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"),
Interfaces: sdwan.SseZscalerFeatureInterfaceArray{
&sdwan.SseZscalerFeatureInterfaceArgs{
InterfaceName: pulumi.String("ipsec1"),
Auto: pulumi.Bool(true),
TunnelSourceInterface: pulumi.String("GigabitEthernet8"),
TunnelSet: pulumi.String("secure-internet-gateway-zscaler"),
TunnelDcPreference: pulumi.String("primary-dc"),
Mtu: pulumi.Int(1400),
IkeVersion: pulumi.Int(2),
PreSharedKeyDynamic: pulumi.Bool(true),
},
},
InterfacePairs: sdwan.SseZscalerFeatureInterfacePairArray{
&sdwan.SseZscalerFeatureInterfacePairArgs{
ActiveInterface: pulumi.String("ipsec1"),
ActiveInterfaceWeight: pulumi.Int(1),
BackupInterface: pulumi.String("None"),
BackupInterfaceWeight: pulumi.Int(1),
},
},
RefreshTime: pulumi.Int(1),
RefreshTimeUnit: pulumi.String("MINUTE"),
SubLocations: sdwan.SseZscalerFeatureSubLocationArray{
&sdwan.SseZscalerFeatureSubLocationArgs{
Name: pulumi.String("zscaler_sub1"),
OfwEnabled: pulumi.Bool(false),
CautionEnabled: pulumi.Bool(false),
ServiceVpn: []string{
"service_lan_vpn1,service_lan_vpn2",
},
InternalIp: []map[string]interface{}{
map[string]interface{}{
"internalIpValue": "172.16.2.1",
},
},
AupEnabled: pulumi.Bool(false),
EnforceBandwidthControl: pulumi.String("disabled"),
},
},
TrackerSourceIp: pulumi.String("1.2.3.4"),
Trackers: sdwan.SseZscalerFeatureTrackerArray{
&sdwan.SseZscalerFeatureTrackerArgs{
Name: pulumi.String("tracker1"),
EndpointApiUrl: pulumi.String("http://cisco.com"),
Threshold: pulumi.Int(300),
Interval: pulumi.Int(60),
Multiplier: pulumi.Int(3),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Sdwan = Pulumi.Sdwan;
return await Deployment.RunAsync(() =>
{
var example = new Sdwan.SseZscalerFeature("example", new()
{
Name = "Example",
Description = "My Example",
FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
Interfaces = new[]
{
new Sdwan.Inputs.SseZscalerFeatureInterfaceArgs
{
InterfaceName = "ipsec1",
Auto = true,
TunnelSourceInterface = "GigabitEthernet8",
TunnelSet = "secure-internet-gateway-zscaler",
TunnelDcPreference = "primary-dc",
Mtu = 1400,
IkeVersion = 2,
PreSharedKeyDynamic = true,
},
},
InterfacePairs = new[]
{
new Sdwan.Inputs.SseZscalerFeatureInterfacePairArgs
{
ActiveInterface = "ipsec1",
ActiveInterfaceWeight = 1,
BackupInterface = "None",
BackupInterfaceWeight = 1,
},
},
RefreshTime = 1,
RefreshTimeUnit = "MINUTE",
SubLocations = new[]
{
new Sdwan.Inputs.SseZscalerFeatureSubLocationArgs
{
Name = "zscaler_sub1",
OfwEnabled = false,
CautionEnabled = false,
ServiceVpn = new[]
{
"service_lan_vpn1,service_lan_vpn2",
},
InternalIp = new[]
{
{
{ "internalIpValue", "172.16.2.1" },
},
},
AupEnabled = false,
EnforceBandwidthControl = "disabled",
},
},
TrackerSourceIp = "1.2.3.4",
Trackers = new[]
{
new Sdwan.Inputs.SseZscalerFeatureTrackerArgs
{
Name = "tracker1",
EndpointApiUrl = "http://cisco.com",
Threshold = 300,
Interval = 60,
Multiplier = 3,
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.SseZscalerFeature;
import com.pulumi.sdwan.SseZscalerFeatureArgs;
import com.pulumi.sdwan.inputs.SseZscalerFeatureInterfaceArgs;
import com.pulumi.sdwan.inputs.SseZscalerFeatureInterfacePairArgs;
import com.pulumi.sdwan.inputs.SseZscalerFeatureSubLocationArgs;
import com.pulumi.sdwan.inputs.SseZscalerFeatureTrackerArgs;
import java.util.ArrayList;
import java.util.Arrays;
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 example = new SseZscalerFeature("example", SseZscalerFeatureArgs.builder()
.name("Example")
.description("My Example")
.featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
.interfaces(SseZscalerFeatureInterfaceArgs.builder()
.interfaceName("ipsec1")
.auto(true)
.tunnelSourceInterface("GigabitEthernet8")
.tunnelSet("secure-internet-gateway-zscaler")
.tunnelDcPreference("primary-dc")
.mtu(1400)
.ikeVersion(2)
.preSharedKeyDynamic(true)
.build())
.interfacePairs(SseZscalerFeatureInterfacePairArgs.builder()
.activeInterface("ipsec1")
.activeInterfaceWeight(1)
.backupInterface("None")
.backupInterfaceWeight(1)
.build())
.refreshTime(1)
.refreshTimeUnit("MINUTE")
.subLocations(SseZscalerFeatureSubLocationArgs.builder()
.name("zscaler_sub1")
.ofwEnabled(false)
.cautionEnabled(false)
.serviceVpn(Arrays.asList("service_lan_vpn1,service_lan_vpn2"))
.internalIp(Arrays.asList(Map.of("internalIpValue", "172.16.2.1")))
.aupEnabled(false)
.enforceBandwidthControl("disabled")
.build())
.trackerSourceIp("1.2.3.4")
.trackers(SseZscalerFeatureTrackerArgs.builder()
.name("tracker1")
.endpointApiUrl("http://cisco.com")
.threshold(300)
.interval(60)
.multiplier(3)
.build())
.build());
}
}
resources:
example:
type: sdwan:SseZscalerFeature
properties:
name: Example
description: My Example
featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
interfaces:
- interfaceName: ipsec1
auto: true
tunnelSourceInterface: GigabitEthernet8
tunnelSet: secure-internet-gateway-zscaler
tunnelDcPreference: primary-dc
mtu: 1400
ikeVersion: 2
preSharedKeyDynamic: true
interfacePairs:
- activeInterface: ipsec1
activeInterfaceWeight: 1
backupInterface: None
backupInterfaceWeight: 1
refreshTime: 1
refreshTimeUnit: MINUTE
subLocations:
- name: zscaler_sub1
ofwEnabled: false
cautionEnabled: false
serviceVpn:
- service_lan_vpn1,service_lan_vpn2
internalIp:
- internalIpValue: 172.16.2.1
aupEnabled: false
enforceBandwidthControl: disabled
trackerSourceIp: 1.2.3.4
trackers:
- name: tracker1
endpointApiUrl: http://cisco.com
threshold: 300
interval: 60
multiplier: 3
pulumi {
required_providers {
sdwan = {
source = "pulumi/sdwan"
}
}
}
resource "sdwan_ssezscalerfeature" "example" {
name = "Example"
description = "My Example"
feature_profile_id = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"
interfaces {
interface_name = "ipsec1"
auto = true
tunnel_source_interface = "GigabitEthernet8"
tunnel_set = "secure-internet-gateway-zscaler"
tunnel_dc_preference = "primary-dc"
mtu = 1400
ike_version = 2
pre_shared_key_dynamic = true
}
interface_pairs {
active_interface = "ipsec1"
active_interface_weight = 1
backup_interface = "None"
backup_interface_weight = 1
}
refresh_time = 1
refresh_time_unit = "MINUTE"
sub_locations {
name = "zscaler_sub1"
ofw_enabled = false
caution_enabled = false
service_vpn = ["service_lan_vpn1,service_lan_vpn2"]
internal_ip = [{
"internalIpValue" = "172.16.2.1"
}]
aup_enabled = false
enforce_bandwidth_control = "disabled"
}
tracker_source_ip = "1.2.3.4"
trackers {
name = "tracker1"
endpoint_api_url = "http://cisco.com"
threshold = 300
interval = 60
multiplier = 3
}
}
Create SseZscalerFeature Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SseZscalerFeature(name: string, args: SseZscalerFeatureArgs, opts?: CustomResourceOptions);@overload
def SseZscalerFeature(resource_name: str,
args: SseZscalerFeatureArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SseZscalerFeature(resource_name: str,
opts: Optional[ResourceOptions] = None,
feature_profile_id: Optional[str] = None,
interface_pairs: Optional[Sequence[SseZscalerFeatureInterfacePairArgs]] = None,
interfaces: Optional[Sequence[SseZscalerFeatureInterfaceArgs]] = None,
tracker_source_ip: Optional[str] = None,
aup_enabled: Optional[bool] = None,
aup_enabled_variable: Optional[str] = None,
aup_timeout: Optional[int] = None,
aup_timeout_variable: Optional[str] = None,
auth_required: Optional[bool] = None,
auth_required_variable: Optional[str] = None,
block_internet_until_accepted: Optional[bool] = None,
block_internet_until_accepted_variable: Optional[str] = None,
caution_enabled: Optional[bool] = None,
caution_enabled_variable: Optional[str] = None,
country: Optional[bool] = None,
country_variable: Optional[str] = None,
description: Optional[str] = None,
display_time_unit: Optional[str] = None,
display_time_unit_variable: Optional[str] = None,
dn_bandwidth: Optional[float] = None,
dn_bandwidth_variable: Optional[str] = None,
enforce_bandwidth_control: Optional[bool] = None,
enforce_bandwidth_control_variable: Optional[str] = None,
force_ssl_inspection: Optional[bool] = None,
force_ssl_inspection_variable: Optional[str] = None,
idle_time: Optional[int] = None,
idle_time_variable: Optional[str] = None,
ip_enforced_for_known_browsers: Optional[bool] = None,
ip_enforced_for_known_browsers_variable: Optional[str] = None,
ips_control: Optional[bool] = None,
ips_control_variable: Optional[str] = None,
location_name: Optional[str] = None,
location_name_variable: Optional[str] = None,
name: Optional[str] = None,
ofw_enabled: Optional[bool] = None,
ofw_enabled_variable: Optional[str] = None,
primary_data_center: Optional[str] = None,
primary_data_center_variable: Optional[str] = None,
refresh_time: Optional[int] = None,
refresh_time_unit: Optional[str] = None,
refresh_time_unit_variable: Optional[str] = None,
refresh_time_variable: Optional[str] = None,
secondary_data_center: Optional[str] = None,
secondary_data_center_variable: Optional[str] = None,
src_vpn: Optional[bool] = None,
sub_locations: Optional[Sequence[SseZscalerFeatureSubLocationArgs]] = None,
surrogate_ip: Optional[bool] = None,
surrogate_ip_variable: Optional[str] = None,
tracker_source_ip_variable: Optional[str] = None,
trackers: Optional[Sequence[SseZscalerFeatureTrackerArgs]] = None,
up_bandwidth: Optional[float] = None,
up_bandwidth_variable: Optional[str] = None,
xff_forward_enabled: Optional[bool] = None,
xff_forward_enabled_variable: Optional[str] = None)func NewSseZscalerFeature(ctx *Context, name string, args SseZscalerFeatureArgs, opts ...ResourceOption) (*SseZscalerFeature, error)public SseZscalerFeature(string name, SseZscalerFeatureArgs args, CustomResourceOptions? opts = null)
public SseZscalerFeature(String name, SseZscalerFeatureArgs args)
public SseZscalerFeature(String name, SseZscalerFeatureArgs args, CustomResourceOptions options)
type: sdwan:SseZscalerFeature
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "sdwan_ssezscalerfeature" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args SseZscalerFeatureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SseZscalerFeatureArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SseZscalerFeatureArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SseZscalerFeatureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SseZscalerFeatureArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var sseZscalerFeatureResource = new Sdwan.SseZscalerFeature("sseZscalerFeatureResource", new()
{
FeatureProfileId = "string",
InterfacePairs = new[]
{
new Sdwan.Inputs.SseZscalerFeatureInterfacePairArgs
{
ActiveInterface = "string",
ActiveInterfaceWeight = 0,
BackupInterface = "string",
BackupInterfaceWeight = 0,
},
},
Interfaces = new[]
{
new Sdwan.Inputs.SseZscalerFeatureInterfaceArgs
{
Auto = false,
DpdInterval = 0,
DpdIntervalVariable = "string",
DpdRetries = 0,
DpdRetriesVariable = "string",
IkeCiphersuite = "string",
IkeCiphersuiteVariable = "string",
IkeGroup = "string",
IkeGroupVariable = "string",
IkeLocalId = "string",
IkeLocalIdVariable = "string",
IkeRekeyInterval = 0,
IkeRekeyIntervalVariable = "string",
IkeRemoteId = "string",
IkeRemoteIdVariable = "string",
IkeVersion = 0,
IkeVersionVariable = "string",
InterfaceDescription = "string",
InterfaceDescriptionVariable = "string",
InterfaceName = "string",
IpsecCiphersuite = "string",
IpsecCiphersuiteVariable = "string",
IpsecRekeyInterval = 0,
IpsecRekeyIntervalVariable = "string",
IpsecReplayWindow = 0,
IpsecReplayWindowVariable = "string",
Ipv4Address = "string",
Ipv4AddressVariable = "string",
Mtu = 0,
MtuVariable = "string",
PerfectForwardSecrecy = "string",
PerfectForwardSecrecyVariable = "string",
PreSharedKeyDynamic = false,
PreSharedSecret = "string",
PreSharedSecretVariable = "string",
Shutdown = false,
TcpMssAdjust = 0,
TcpMssAdjustVariable = "string",
TrackEnable = false,
Tracker = "string",
TunnelDcPreference = "string",
TunnelDestination = "string",
TunnelDestinationVariable = "string",
TunnelPublicIp = "string",
TunnelPublicIpVariable = "string",
TunnelRouteVia = "string",
TunnelRouteViaVariable = "string",
TunnelSet = "string",
TunnelSource = "string",
TunnelSourceInterface = "string",
TunnelSourceInterfaceVariable = "string",
TunnelSourceVariable = "string",
Unnumbered = false,
},
},
TrackerSourceIp = "string",
AupEnabled = false,
AupEnabledVariable = "string",
AupTimeout = 0,
AupTimeoutVariable = "string",
AuthRequired = false,
AuthRequiredVariable = "string",
BlockInternetUntilAccepted = false,
BlockInternetUntilAcceptedVariable = "string",
CautionEnabled = false,
CautionEnabledVariable = "string",
Country = false,
CountryVariable = "string",
Description = "string",
DisplayTimeUnit = "string",
DisplayTimeUnitVariable = "string",
DnBandwidth = 0,
DnBandwidthVariable = "string",
EnforceBandwidthControl = false,
EnforceBandwidthControlVariable = "string",
ForceSslInspection = false,
ForceSslInspectionVariable = "string",
IdleTime = 0,
IdleTimeVariable = "string",
IpEnforcedForKnownBrowsers = false,
IpEnforcedForKnownBrowsersVariable = "string",
IpsControl = false,
IpsControlVariable = "string",
LocationName = "string",
LocationNameVariable = "string",
Name = "string",
OfwEnabled = false,
OfwEnabledVariable = "string",
PrimaryDataCenter = "string",
PrimaryDataCenterVariable = "string",
RefreshTime = 0,
RefreshTimeUnit = "string",
RefreshTimeUnitVariable = "string",
RefreshTimeVariable = "string",
SecondaryDataCenter = "string",
SecondaryDataCenterVariable = "string",
SrcVpn = false,
SubLocations = new[]
{
new Sdwan.Inputs.SseZscalerFeatureSubLocationArgs
{
AupEnabled = false,
AupEnabledVariable = "string",
AupTimeout = 0,
AupTimeoutVariable = "string",
AuthRequired = false,
AuthRequiredVariable = "string",
BlockInternetUntilAccepted = false,
BlockInternetUntilAcceptedVariable = "string",
CautionEnabled = false,
CautionEnabledVariable = "string",
DisplayTimeUnit = "string",
DisplayTimeUnitVariable = "string",
DnBandwidth = 0,
DnBandwidthVariable = "string",
EnforceBandwidthControl = "string",
EnforceBandwidthControlVariable = "string",
ForceSslInspection = false,
ForceSslInspectionVariable = "string",
IdleTime = 0,
IdleTimeVariable = "string",
InternalIps = new[]
{
new Sdwan.Inputs.SseZscalerFeatureSubLocationInternalIpArgs
{
InternalIpValue = "string",
InternalIpValueVariable = "string",
},
},
IpEnforcedForKnownBrowsers = false,
IpEnforcedForKnownBrowsersVariable = "string",
Name = "string",
NameVariable = "string",
OfwEnabled = false,
OfwEnabledVariable = "string",
RefreshTime = 0,
RefreshTimeUnit = "string",
RefreshTimeUnitVariable = "string",
RefreshTimeVariable = "string",
ServiceVpnVariable = "string",
ServiceVpns = new[]
{
"string",
},
SurrogateIp = false,
SurrogateIpVariable = "string",
UpBandwidth = 0,
UpBandwidthVariable = "string",
},
},
SurrogateIp = false,
SurrogateIpVariable = "string",
TrackerSourceIpVariable = "string",
Trackers = new[]
{
new Sdwan.Inputs.SseZscalerFeatureTrackerArgs
{
EndpointApiUrl = "string",
EndpointApiUrlVariable = "string",
Interval = 0,
IntervalVariable = "string",
Multiplier = 0,
MultiplierVariable = "string",
Name = "string",
Threshold = 0,
ThresholdVariable = "string",
},
},
UpBandwidth = 0,
UpBandwidthVariable = "string",
XffForwardEnabled = false,
XffForwardEnabledVariable = "string",
});
example, err := sdwan.NewSseZscalerFeature(ctx, "sseZscalerFeatureResource", &sdwan.SseZscalerFeatureArgs{
FeatureProfileId: pulumi.String("string"),
InterfacePairs: sdwan.SseZscalerFeatureInterfacePairArray{
&sdwan.SseZscalerFeatureInterfacePairArgs{
ActiveInterface: pulumi.String("string"),
ActiveInterfaceWeight: pulumi.Int(0),
BackupInterface: pulumi.String("string"),
BackupInterfaceWeight: pulumi.Int(0),
},
},
Interfaces: sdwan.SseZscalerFeatureInterfaceArray{
&sdwan.SseZscalerFeatureInterfaceArgs{
Auto: pulumi.Bool(false),
DpdInterval: pulumi.Int(0),
DpdIntervalVariable: pulumi.String("string"),
DpdRetries: pulumi.Int(0),
DpdRetriesVariable: pulumi.String("string"),
IkeCiphersuite: pulumi.String("string"),
IkeCiphersuiteVariable: pulumi.String("string"),
IkeGroup: pulumi.String("string"),
IkeGroupVariable: pulumi.String("string"),
IkeLocalId: pulumi.String("string"),
IkeLocalIdVariable: pulumi.String("string"),
IkeRekeyInterval: pulumi.Int(0),
IkeRekeyIntervalVariable: pulumi.String("string"),
IkeRemoteId: pulumi.String("string"),
IkeRemoteIdVariable: pulumi.String("string"),
IkeVersion: pulumi.Int(0),
IkeVersionVariable: pulumi.String("string"),
InterfaceDescription: pulumi.String("string"),
InterfaceDescriptionVariable: pulumi.String("string"),
InterfaceName: pulumi.String("string"),
IpsecCiphersuite: pulumi.String("string"),
IpsecCiphersuiteVariable: pulumi.String("string"),
IpsecRekeyInterval: pulumi.Int(0),
IpsecRekeyIntervalVariable: pulumi.String("string"),
IpsecReplayWindow: pulumi.Int(0),
IpsecReplayWindowVariable: pulumi.String("string"),
Ipv4Address: pulumi.String("string"),
Ipv4AddressVariable: pulumi.String("string"),
Mtu: pulumi.Int(0),
MtuVariable: pulumi.String("string"),
PerfectForwardSecrecy: pulumi.String("string"),
PerfectForwardSecrecyVariable: pulumi.String("string"),
PreSharedKeyDynamic: pulumi.Bool(false),
PreSharedSecret: pulumi.String("string"),
PreSharedSecretVariable: pulumi.String("string"),
Shutdown: pulumi.Bool(false),
TcpMssAdjust: pulumi.Int(0),
TcpMssAdjustVariable: pulumi.String("string"),
TrackEnable: pulumi.Bool(false),
Tracker: pulumi.String("string"),
TunnelDcPreference: pulumi.String("string"),
TunnelDestination: pulumi.String("string"),
TunnelDestinationVariable: pulumi.String("string"),
TunnelPublicIp: pulumi.String("string"),
TunnelPublicIpVariable: pulumi.String("string"),
TunnelRouteVia: pulumi.String("string"),
TunnelRouteViaVariable: pulumi.String("string"),
TunnelSet: pulumi.String("string"),
TunnelSource: pulumi.String("string"),
TunnelSourceInterface: pulumi.String("string"),
TunnelSourceInterfaceVariable: pulumi.String("string"),
TunnelSourceVariable: pulumi.String("string"),
Unnumbered: pulumi.Bool(false),
},
},
TrackerSourceIp: pulumi.String("string"),
AupEnabled: pulumi.Bool(false),
AupEnabledVariable: pulumi.String("string"),
AupTimeout: pulumi.Int(0),
AupTimeoutVariable: pulumi.String("string"),
AuthRequired: pulumi.Bool(false),
AuthRequiredVariable: pulumi.String("string"),
BlockInternetUntilAccepted: pulumi.Bool(false),
BlockInternetUntilAcceptedVariable: pulumi.String("string"),
CautionEnabled: pulumi.Bool(false),
CautionEnabledVariable: pulumi.String("string"),
Country: pulumi.Bool(false),
CountryVariable: pulumi.String("string"),
Description: pulumi.String("string"),
DisplayTimeUnit: pulumi.String("string"),
DisplayTimeUnitVariable: pulumi.String("string"),
DnBandwidth: pulumi.Float64(0),
DnBandwidthVariable: pulumi.String("string"),
EnforceBandwidthControl: pulumi.Bool(false),
EnforceBandwidthControlVariable: pulumi.String("string"),
ForceSslInspection: pulumi.Bool(false),
ForceSslInspectionVariable: pulumi.String("string"),
IdleTime: pulumi.Int(0),
IdleTimeVariable: pulumi.String("string"),
IpEnforcedForKnownBrowsers: pulumi.Bool(false),
IpEnforcedForKnownBrowsersVariable: pulumi.String("string"),
IpsControl: pulumi.Bool(false),
IpsControlVariable: pulumi.String("string"),
LocationName: pulumi.String("string"),
LocationNameVariable: pulumi.String("string"),
Name: pulumi.String("string"),
OfwEnabled: pulumi.Bool(false),
OfwEnabledVariable: pulumi.String("string"),
PrimaryDataCenter: pulumi.String("string"),
PrimaryDataCenterVariable: pulumi.String("string"),
RefreshTime: pulumi.Int(0),
RefreshTimeUnit: pulumi.String("string"),
RefreshTimeUnitVariable: pulumi.String("string"),
RefreshTimeVariable: pulumi.String("string"),
SecondaryDataCenter: pulumi.String("string"),
SecondaryDataCenterVariable: pulumi.String("string"),
SrcVpn: pulumi.Bool(false),
SubLocations: sdwan.SseZscalerFeatureSubLocationArray{
&sdwan.SseZscalerFeatureSubLocationArgs{
AupEnabled: pulumi.Bool(false),
AupEnabledVariable: pulumi.String("string"),
AupTimeout: pulumi.Int(0),
AupTimeoutVariable: pulumi.String("string"),
AuthRequired: pulumi.Bool(false),
AuthRequiredVariable: pulumi.String("string"),
BlockInternetUntilAccepted: pulumi.Bool(false),
BlockInternetUntilAcceptedVariable: pulumi.String("string"),
CautionEnabled: pulumi.Bool(false),
CautionEnabledVariable: pulumi.String("string"),
DisplayTimeUnit: pulumi.String("string"),
DisplayTimeUnitVariable: pulumi.String("string"),
DnBandwidth: pulumi.Float64(0),
DnBandwidthVariable: pulumi.String("string"),
EnforceBandwidthControl: pulumi.String("string"),
EnforceBandwidthControlVariable: pulumi.String("string"),
ForceSslInspection: pulumi.Bool(false),
ForceSslInspectionVariable: pulumi.String("string"),
IdleTime: pulumi.Int(0),
IdleTimeVariable: pulumi.String("string"),
InternalIps: sdwan.SseZscalerFeatureSubLocationInternalIpArray{
&sdwan.SseZscalerFeatureSubLocationInternalIpArgs{
InternalIpValue: pulumi.String("string"),
InternalIpValueVariable: pulumi.String("string"),
},
},
IpEnforcedForKnownBrowsers: pulumi.Bool(false),
IpEnforcedForKnownBrowsersVariable: pulumi.String("string"),
Name: pulumi.String("string"),
NameVariable: pulumi.String("string"),
OfwEnabled: pulumi.Bool(false),
OfwEnabledVariable: pulumi.String("string"),
RefreshTime: pulumi.Int(0),
RefreshTimeUnit: pulumi.String("string"),
RefreshTimeUnitVariable: pulumi.String("string"),
RefreshTimeVariable: pulumi.String("string"),
ServiceVpnVariable: pulumi.String("string"),
ServiceVpns: pulumi.StringArray{
pulumi.String("string"),
},
SurrogateIp: pulumi.Bool(false),
SurrogateIpVariable: pulumi.String("string"),
UpBandwidth: pulumi.Float64(0),
UpBandwidthVariable: pulumi.String("string"),
},
},
SurrogateIp: pulumi.Bool(false),
SurrogateIpVariable: pulumi.String("string"),
TrackerSourceIpVariable: pulumi.String("string"),
Trackers: sdwan.SseZscalerFeatureTrackerArray{
&sdwan.SseZscalerFeatureTrackerArgs{
EndpointApiUrl: pulumi.String("string"),
EndpointApiUrlVariable: pulumi.String("string"),
Interval: pulumi.Int(0),
IntervalVariable: pulumi.String("string"),
Multiplier: pulumi.Int(0),
MultiplierVariable: pulumi.String("string"),
Name: pulumi.String("string"),
Threshold: pulumi.Int(0),
ThresholdVariable: pulumi.String("string"),
},
},
UpBandwidth: pulumi.Float64(0),
UpBandwidthVariable: pulumi.String("string"),
XffForwardEnabled: pulumi.Bool(false),
XffForwardEnabledVariable: pulumi.String("string"),
})
resource "sdwan_ssezscalerfeature" "sseZscalerFeatureResource" {
feature_profile_id = "string"
interface_pairs {
active_interface = "string"
active_interface_weight = 0
backup_interface = "string"
backup_interface_weight = 0
}
interfaces {
auto = false
dpd_interval = 0
dpd_interval_variable = "string"
dpd_retries = 0
dpd_retries_variable = "string"
ike_ciphersuite = "string"
ike_ciphersuite_variable = "string"
ike_group = "string"
ike_group_variable = "string"
ike_local_id = "string"
ike_local_id_variable = "string"
ike_rekey_interval = 0
ike_rekey_interval_variable = "string"
ike_remote_id = "string"
ike_remote_id_variable = "string"
ike_version = 0
ike_version_variable = "string"
interface_description = "string"
interface_description_variable = "string"
interface_name = "string"
ipsec_ciphersuite = "string"
ipsec_ciphersuite_variable = "string"
ipsec_rekey_interval = 0
ipsec_rekey_interval_variable = "string"
ipsec_replay_window = 0
ipsec_replay_window_variable = "string"
ipv4_address = "string"
ipv4_address_variable = "string"
mtu = 0
mtu_variable = "string"
perfect_forward_secrecy = "string"
perfect_forward_secrecy_variable = "string"
pre_shared_key_dynamic = false
pre_shared_secret = "string"
pre_shared_secret_variable = "string"
shutdown = false
tcp_mss_adjust = 0
tcp_mss_adjust_variable = "string"
track_enable = false
tracker = "string"
tunnel_dc_preference = "string"
tunnel_destination = "string"
tunnel_destination_variable = "string"
tunnel_public_ip = "string"
tunnel_public_ip_variable = "string"
tunnel_route_via = "string"
tunnel_route_via_variable = "string"
tunnel_set = "string"
tunnel_source = "string"
tunnel_source_interface = "string"
tunnel_source_interface_variable = "string"
tunnel_source_variable = "string"
unnumbered = false
}
tracker_source_ip = "string"
aup_enabled = false
aup_enabled_variable = "string"
aup_timeout = 0
aup_timeout_variable = "string"
auth_required = false
auth_required_variable = "string"
block_internet_until_accepted = false
block_internet_until_accepted_variable = "string"
caution_enabled = false
caution_enabled_variable = "string"
country = false
country_variable = "string"
description = "string"
display_time_unit = "string"
display_time_unit_variable = "string"
dn_bandwidth = 0
dn_bandwidth_variable = "string"
enforce_bandwidth_control = false
enforce_bandwidth_control_variable = "string"
force_ssl_inspection = false
force_ssl_inspection_variable = "string"
idle_time = 0
idle_time_variable = "string"
ip_enforced_for_known_browsers = false
ip_enforced_for_known_browsers_variable = "string"
ips_control = false
ips_control_variable = "string"
location_name = "string"
location_name_variable = "string"
name = "string"
ofw_enabled = false
ofw_enabled_variable = "string"
primary_data_center = "string"
primary_data_center_variable = "string"
refresh_time = 0
refresh_time_unit = "string"
refresh_time_unit_variable = "string"
refresh_time_variable = "string"
secondary_data_center = "string"
secondary_data_center_variable = "string"
src_vpn = false
sub_locations {
aup_enabled = false
aup_enabled_variable = "string"
aup_timeout = 0
aup_timeout_variable = "string"
auth_required = false
auth_required_variable = "string"
block_internet_until_accepted = false
block_internet_until_accepted_variable = "string"
caution_enabled = false
caution_enabled_variable = "string"
display_time_unit = "string"
display_time_unit_variable = "string"
dn_bandwidth = 0
dn_bandwidth_variable = "string"
enforce_bandwidth_control = "string"
enforce_bandwidth_control_variable = "string"
force_ssl_inspection = false
force_ssl_inspection_variable = "string"
idle_time = 0
idle_time_variable = "string"
internal_ips {
internal_ip_value = "string"
internal_ip_value_variable = "string"
}
ip_enforced_for_known_browsers = false
ip_enforced_for_known_browsers_variable = "string"
name = "string"
name_variable = "string"
ofw_enabled = false
ofw_enabled_variable = "string"
refresh_time = 0
refresh_time_unit = "string"
refresh_time_unit_variable = "string"
refresh_time_variable = "string"
service_vpn_variable = "string"
service_vpns = ["string"]
surrogate_ip = false
surrogate_ip_variable = "string"
up_bandwidth = 0
up_bandwidth_variable = "string"
}
surrogate_ip = false
surrogate_ip_variable = "string"
tracker_source_ip_variable = "string"
trackers {
endpoint_api_url = "string"
endpoint_api_url_variable = "string"
interval = 0
interval_variable = "string"
multiplier = 0
multiplier_variable = "string"
name = "string"
threshold = 0
threshold_variable = "string"
}
up_bandwidth = 0
up_bandwidth_variable = "string"
xff_forward_enabled = false
xff_forward_enabled_variable = "string"
}
var sseZscalerFeatureResource = new SseZscalerFeature("sseZscalerFeatureResource", SseZscalerFeatureArgs.builder()
.featureProfileId("string")
.interfacePairs(SseZscalerFeatureInterfacePairArgs.builder()
.activeInterface("string")
.activeInterfaceWeight(0)
.backupInterface("string")
.backupInterfaceWeight(0)
.build())
.interfaces(SseZscalerFeatureInterfaceArgs.builder()
.auto(false)
.dpdInterval(0)
.dpdIntervalVariable("string")
.dpdRetries(0)
.dpdRetriesVariable("string")
.ikeCiphersuite("string")
.ikeCiphersuiteVariable("string")
.ikeGroup("string")
.ikeGroupVariable("string")
.ikeLocalId("string")
.ikeLocalIdVariable("string")
.ikeRekeyInterval(0)
.ikeRekeyIntervalVariable("string")
.ikeRemoteId("string")
.ikeRemoteIdVariable("string")
.ikeVersion(0)
.ikeVersionVariable("string")
.interfaceDescription("string")
.interfaceDescriptionVariable("string")
.interfaceName("string")
.ipsecCiphersuite("string")
.ipsecCiphersuiteVariable("string")
.ipsecRekeyInterval(0)
.ipsecRekeyIntervalVariable("string")
.ipsecReplayWindow(0)
.ipsecReplayWindowVariable("string")
.ipv4Address("string")
.ipv4AddressVariable("string")
.mtu(0)
.mtuVariable("string")
.perfectForwardSecrecy("string")
.perfectForwardSecrecyVariable("string")
.preSharedKeyDynamic(false)
.preSharedSecret("string")
.preSharedSecretVariable("string")
.shutdown(false)
.tcpMssAdjust(0)
.tcpMssAdjustVariable("string")
.trackEnable(false)
.tracker("string")
.tunnelDcPreference("string")
.tunnelDestination("string")
.tunnelDestinationVariable("string")
.tunnelPublicIp("string")
.tunnelPublicIpVariable("string")
.tunnelRouteVia("string")
.tunnelRouteViaVariable("string")
.tunnelSet("string")
.tunnelSource("string")
.tunnelSourceInterface("string")
.tunnelSourceInterfaceVariable("string")
.tunnelSourceVariable("string")
.unnumbered(false)
.build())
.trackerSourceIp("string")
.aupEnabled(false)
.aupEnabledVariable("string")
.aupTimeout(0)
.aupTimeoutVariable("string")
.authRequired(false)
.authRequiredVariable("string")
.blockInternetUntilAccepted(false)
.blockInternetUntilAcceptedVariable("string")
.cautionEnabled(false)
.cautionEnabledVariable("string")
.country(false)
.countryVariable("string")
.description("string")
.displayTimeUnit("string")
.displayTimeUnitVariable("string")
.dnBandwidth(0.0)
.dnBandwidthVariable("string")
.enforceBandwidthControl(false)
.enforceBandwidthControlVariable("string")
.forceSslInspection(false)
.forceSslInspectionVariable("string")
.idleTime(0)
.idleTimeVariable("string")
.ipEnforcedForKnownBrowsers(false)
.ipEnforcedForKnownBrowsersVariable("string")
.ipsControl(false)
.ipsControlVariable("string")
.locationName("string")
.locationNameVariable("string")
.name("string")
.ofwEnabled(false)
.ofwEnabledVariable("string")
.primaryDataCenter("string")
.primaryDataCenterVariable("string")
.refreshTime(0)
.refreshTimeUnit("string")
.refreshTimeUnitVariable("string")
.refreshTimeVariable("string")
.secondaryDataCenter("string")
.secondaryDataCenterVariable("string")
.srcVpn(false)
.subLocations(SseZscalerFeatureSubLocationArgs.builder()
.aupEnabled(false)
.aupEnabledVariable("string")
.aupTimeout(0)
.aupTimeoutVariable("string")
.authRequired(false)
.authRequiredVariable("string")
.blockInternetUntilAccepted(false)
.blockInternetUntilAcceptedVariable("string")
.cautionEnabled(false)
.cautionEnabledVariable("string")
.displayTimeUnit("string")
.displayTimeUnitVariable("string")
.dnBandwidth(0.0)
.dnBandwidthVariable("string")
.enforceBandwidthControl("string")
.enforceBandwidthControlVariable("string")
.forceSslInspection(false)
.forceSslInspectionVariable("string")
.idleTime(0)
.idleTimeVariable("string")
.internalIps(SseZscalerFeatureSubLocationInternalIpArgs.builder()
.internalIpValue("string")
.internalIpValueVariable("string")
.build())
.ipEnforcedForKnownBrowsers(false)
.ipEnforcedForKnownBrowsersVariable("string")
.name("string")
.nameVariable("string")
.ofwEnabled(false)
.ofwEnabledVariable("string")
.refreshTime(0)
.refreshTimeUnit("string")
.refreshTimeUnitVariable("string")
.refreshTimeVariable("string")
.serviceVpnVariable("string")
.serviceVpns("string")
.surrogateIp(false)
.surrogateIpVariable("string")
.upBandwidth(0.0)
.upBandwidthVariable("string")
.build())
.surrogateIp(false)
.surrogateIpVariable("string")
.trackerSourceIpVariable("string")
.trackers(SseZscalerFeatureTrackerArgs.builder()
.endpointApiUrl("string")
.endpointApiUrlVariable("string")
.interval(0)
.intervalVariable("string")
.multiplier(0)
.multiplierVariable("string")
.name("string")
.threshold(0)
.thresholdVariable("string")
.build())
.upBandwidth(0.0)
.upBandwidthVariable("string")
.xffForwardEnabled(false)
.xffForwardEnabledVariable("string")
.build());
sse_zscaler_feature_resource = sdwan.SseZscalerFeature("sseZscalerFeatureResource",
feature_profile_id="string",
interface_pairs=[{
"active_interface": "string",
"active_interface_weight": 0,
"backup_interface": "string",
"backup_interface_weight": 0,
}],
interfaces=[{
"auto": False,
"dpd_interval": 0,
"dpd_interval_variable": "string",
"dpd_retries": 0,
"dpd_retries_variable": "string",
"ike_ciphersuite": "string",
"ike_ciphersuite_variable": "string",
"ike_group": "string",
"ike_group_variable": "string",
"ike_local_id": "string",
"ike_local_id_variable": "string",
"ike_rekey_interval": 0,
"ike_rekey_interval_variable": "string",
"ike_remote_id": "string",
"ike_remote_id_variable": "string",
"ike_version": 0,
"ike_version_variable": "string",
"interface_description": "string",
"interface_description_variable": "string",
"interface_name": "string",
"ipsec_ciphersuite": "string",
"ipsec_ciphersuite_variable": "string",
"ipsec_rekey_interval": 0,
"ipsec_rekey_interval_variable": "string",
"ipsec_replay_window": 0,
"ipsec_replay_window_variable": "string",
"ipv4_address": "string",
"ipv4_address_variable": "string",
"mtu": 0,
"mtu_variable": "string",
"perfect_forward_secrecy": "string",
"perfect_forward_secrecy_variable": "string",
"pre_shared_key_dynamic": False,
"pre_shared_secret": "string",
"pre_shared_secret_variable": "string",
"shutdown": False,
"tcp_mss_adjust": 0,
"tcp_mss_adjust_variable": "string",
"track_enable": False,
"tracker": "string",
"tunnel_dc_preference": "string",
"tunnel_destination": "string",
"tunnel_destination_variable": "string",
"tunnel_public_ip": "string",
"tunnel_public_ip_variable": "string",
"tunnel_route_via": "string",
"tunnel_route_via_variable": "string",
"tunnel_set": "string",
"tunnel_source": "string",
"tunnel_source_interface": "string",
"tunnel_source_interface_variable": "string",
"tunnel_source_variable": "string",
"unnumbered": False,
}],
tracker_source_ip="string",
aup_enabled=False,
aup_enabled_variable="string",
aup_timeout=0,
aup_timeout_variable="string",
auth_required=False,
auth_required_variable="string",
block_internet_until_accepted=False,
block_internet_until_accepted_variable="string",
caution_enabled=False,
caution_enabled_variable="string",
country=False,
country_variable="string",
description="string",
display_time_unit="string",
display_time_unit_variable="string",
dn_bandwidth=float(0),
dn_bandwidth_variable="string",
enforce_bandwidth_control=False,
enforce_bandwidth_control_variable="string",
force_ssl_inspection=False,
force_ssl_inspection_variable="string",
idle_time=0,
idle_time_variable="string",
ip_enforced_for_known_browsers=False,
ip_enforced_for_known_browsers_variable="string",
ips_control=False,
ips_control_variable="string",
location_name="string",
location_name_variable="string",
name="string",
ofw_enabled=False,
ofw_enabled_variable="string",
primary_data_center="string",
primary_data_center_variable="string",
refresh_time=0,
refresh_time_unit="string",
refresh_time_unit_variable="string",
refresh_time_variable="string",
secondary_data_center="string",
secondary_data_center_variable="string",
src_vpn=False,
sub_locations=[{
"aup_enabled": False,
"aup_enabled_variable": "string",
"aup_timeout": 0,
"aup_timeout_variable": "string",
"auth_required": False,
"auth_required_variable": "string",
"block_internet_until_accepted": False,
"block_internet_until_accepted_variable": "string",
"caution_enabled": False,
"caution_enabled_variable": "string",
"display_time_unit": "string",
"display_time_unit_variable": "string",
"dn_bandwidth": float(0),
"dn_bandwidth_variable": "string",
"enforce_bandwidth_control": "string",
"enforce_bandwidth_control_variable": "string",
"force_ssl_inspection": False,
"force_ssl_inspection_variable": "string",
"idle_time": 0,
"idle_time_variable": "string",
"internal_ips": [{
"internal_ip_value": "string",
"internal_ip_value_variable": "string",
}],
"ip_enforced_for_known_browsers": False,
"ip_enforced_for_known_browsers_variable": "string",
"name": "string",
"name_variable": "string",
"ofw_enabled": False,
"ofw_enabled_variable": "string",
"refresh_time": 0,
"refresh_time_unit": "string",
"refresh_time_unit_variable": "string",
"refresh_time_variable": "string",
"service_vpn_variable": "string",
"service_vpns": ["string"],
"surrogate_ip": False,
"surrogate_ip_variable": "string",
"up_bandwidth": float(0),
"up_bandwidth_variable": "string",
}],
surrogate_ip=False,
surrogate_ip_variable="string",
tracker_source_ip_variable="string",
trackers=[{
"endpoint_api_url": "string",
"endpoint_api_url_variable": "string",
"interval": 0,
"interval_variable": "string",
"multiplier": 0,
"multiplier_variable": "string",
"name": "string",
"threshold": 0,
"threshold_variable": "string",
}],
up_bandwidth=float(0),
up_bandwidth_variable="string",
xff_forward_enabled=False,
xff_forward_enabled_variable="string")
const sseZscalerFeatureResource = new sdwan.SseZscalerFeature("sseZscalerFeatureResource", {
featureProfileId: "string",
interfacePairs: [{
activeInterface: "string",
activeInterfaceWeight: 0,
backupInterface: "string",
backupInterfaceWeight: 0,
}],
interfaces: [{
auto: false,
dpdInterval: 0,
dpdIntervalVariable: "string",
dpdRetries: 0,
dpdRetriesVariable: "string",
ikeCiphersuite: "string",
ikeCiphersuiteVariable: "string",
ikeGroup: "string",
ikeGroupVariable: "string",
ikeLocalId: "string",
ikeLocalIdVariable: "string",
ikeRekeyInterval: 0,
ikeRekeyIntervalVariable: "string",
ikeRemoteId: "string",
ikeRemoteIdVariable: "string",
ikeVersion: 0,
ikeVersionVariable: "string",
interfaceDescription: "string",
interfaceDescriptionVariable: "string",
interfaceName: "string",
ipsecCiphersuite: "string",
ipsecCiphersuiteVariable: "string",
ipsecRekeyInterval: 0,
ipsecRekeyIntervalVariable: "string",
ipsecReplayWindow: 0,
ipsecReplayWindowVariable: "string",
ipv4Address: "string",
ipv4AddressVariable: "string",
mtu: 0,
mtuVariable: "string",
perfectForwardSecrecy: "string",
perfectForwardSecrecyVariable: "string",
preSharedKeyDynamic: false,
preSharedSecret: "string",
preSharedSecretVariable: "string",
shutdown: false,
tcpMssAdjust: 0,
tcpMssAdjustVariable: "string",
trackEnable: false,
tracker: "string",
tunnelDcPreference: "string",
tunnelDestination: "string",
tunnelDestinationVariable: "string",
tunnelPublicIp: "string",
tunnelPublicIpVariable: "string",
tunnelRouteVia: "string",
tunnelRouteViaVariable: "string",
tunnelSet: "string",
tunnelSource: "string",
tunnelSourceInterface: "string",
tunnelSourceInterfaceVariable: "string",
tunnelSourceVariable: "string",
unnumbered: false,
}],
trackerSourceIp: "string",
aupEnabled: false,
aupEnabledVariable: "string",
aupTimeout: 0,
aupTimeoutVariable: "string",
authRequired: false,
authRequiredVariable: "string",
blockInternetUntilAccepted: false,
blockInternetUntilAcceptedVariable: "string",
cautionEnabled: false,
cautionEnabledVariable: "string",
country: false,
countryVariable: "string",
description: "string",
displayTimeUnit: "string",
displayTimeUnitVariable: "string",
dnBandwidth: 0,
dnBandwidthVariable: "string",
enforceBandwidthControl: false,
enforceBandwidthControlVariable: "string",
forceSslInspection: false,
forceSslInspectionVariable: "string",
idleTime: 0,
idleTimeVariable: "string",
ipEnforcedForKnownBrowsers: false,
ipEnforcedForKnownBrowsersVariable: "string",
ipsControl: false,
ipsControlVariable: "string",
locationName: "string",
locationNameVariable: "string",
name: "string",
ofwEnabled: false,
ofwEnabledVariable: "string",
primaryDataCenter: "string",
primaryDataCenterVariable: "string",
refreshTime: 0,
refreshTimeUnit: "string",
refreshTimeUnitVariable: "string",
refreshTimeVariable: "string",
secondaryDataCenter: "string",
secondaryDataCenterVariable: "string",
srcVpn: false,
subLocations: [{
aupEnabled: false,
aupEnabledVariable: "string",
aupTimeout: 0,
aupTimeoutVariable: "string",
authRequired: false,
authRequiredVariable: "string",
blockInternetUntilAccepted: false,
blockInternetUntilAcceptedVariable: "string",
cautionEnabled: false,
cautionEnabledVariable: "string",
displayTimeUnit: "string",
displayTimeUnitVariable: "string",
dnBandwidth: 0,
dnBandwidthVariable: "string",
enforceBandwidthControl: "string",
enforceBandwidthControlVariable: "string",
forceSslInspection: false,
forceSslInspectionVariable: "string",
idleTime: 0,
idleTimeVariable: "string",
internalIps: [{
internalIpValue: "string",
internalIpValueVariable: "string",
}],
ipEnforcedForKnownBrowsers: false,
ipEnforcedForKnownBrowsersVariable: "string",
name: "string",
nameVariable: "string",
ofwEnabled: false,
ofwEnabledVariable: "string",
refreshTime: 0,
refreshTimeUnit: "string",
refreshTimeUnitVariable: "string",
refreshTimeVariable: "string",
serviceVpnVariable: "string",
serviceVpns: ["string"],
surrogateIp: false,
surrogateIpVariable: "string",
upBandwidth: 0,
upBandwidthVariable: "string",
}],
surrogateIp: false,
surrogateIpVariable: "string",
trackerSourceIpVariable: "string",
trackers: [{
endpointApiUrl: "string",
endpointApiUrlVariable: "string",
interval: 0,
intervalVariable: "string",
multiplier: 0,
multiplierVariable: "string",
name: "string",
threshold: 0,
thresholdVariable: "string",
}],
upBandwidth: 0,
upBandwidthVariable: "string",
xffForwardEnabled: false,
xffForwardEnabledVariable: "string",
});
type: sdwan:SseZscalerFeature
properties:
aupEnabled: false
aupEnabledVariable: string
aupTimeout: 0
aupTimeoutVariable: string
authRequired: false
authRequiredVariable: string
blockInternetUntilAccepted: false
blockInternetUntilAcceptedVariable: string
cautionEnabled: false
cautionEnabledVariable: string
country: false
countryVariable: string
description: string
displayTimeUnit: string
displayTimeUnitVariable: string
dnBandwidth: 0
dnBandwidthVariable: string
enforceBandwidthControl: false
enforceBandwidthControlVariable: string
featureProfileId: string
forceSslInspection: false
forceSslInspectionVariable: string
idleTime: 0
idleTimeVariable: string
interfacePairs:
- activeInterface: string
activeInterfaceWeight: 0
backupInterface: string
backupInterfaceWeight: 0
interfaces:
- auto: false
dpdInterval: 0
dpdIntervalVariable: string
dpdRetries: 0
dpdRetriesVariable: string
ikeCiphersuite: string
ikeCiphersuiteVariable: string
ikeGroup: string
ikeGroupVariable: string
ikeLocalId: string
ikeLocalIdVariable: string
ikeRekeyInterval: 0
ikeRekeyIntervalVariable: string
ikeRemoteId: string
ikeRemoteIdVariable: string
ikeVersion: 0
ikeVersionVariable: string
interfaceDescription: string
interfaceDescriptionVariable: string
interfaceName: string
ipsecCiphersuite: string
ipsecCiphersuiteVariable: string
ipsecRekeyInterval: 0
ipsecRekeyIntervalVariable: string
ipsecReplayWindow: 0
ipsecReplayWindowVariable: string
ipv4Address: string
ipv4AddressVariable: string
mtu: 0
mtuVariable: string
perfectForwardSecrecy: string
perfectForwardSecrecyVariable: string
preSharedKeyDynamic: false
preSharedSecret: string
preSharedSecretVariable: string
shutdown: false
tcpMssAdjust: 0
tcpMssAdjustVariable: string
trackEnable: false
tracker: string
tunnelDcPreference: string
tunnelDestination: string
tunnelDestinationVariable: string
tunnelPublicIp: string
tunnelPublicIpVariable: string
tunnelRouteVia: string
tunnelRouteViaVariable: string
tunnelSet: string
tunnelSource: string
tunnelSourceInterface: string
tunnelSourceInterfaceVariable: string
tunnelSourceVariable: string
unnumbered: false
ipEnforcedForKnownBrowsers: false
ipEnforcedForKnownBrowsersVariable: string
ipsControl: false
ipsControlVariable: string
locationName: string
locationNameVariable: string
name: string
ofwEnabled: false
ofwEnabledVariable: string
primaryDataCenter: string
primaryDataCenterVariable: string
refreshTime: 0
refreshTimeUnit: string
refreshTimeUnitVariable: string
refreshTimeVariable: string
secondaryDataCenter: string
secondaryDataCenterVariable: string
srcVpn: false
subLocations:
- aupEnabled: false
aupEnabledVariable: string
aupTimeout: 0
aupTimeoutVariable: string
authRequired: false
authRequiredVariable: string
blockInternetUntilAccepted: false
blockInternetUntilAcceptedVariable: string
cautionEnabled: false
cautionEnabledVariable: string
displayTimeUnit: string
displayTimeUnitVariable: string
dnBandwidth: 0
dnBandwidthVariable: string
enforceBandwidthControl: string
enforceBandwidthControlVariable: string
forceSslInspection: false
forceSslInspectionVariable: string
idleTime: 0
idleTimeVariable: string
internalIps:
- internalIpValue: string
internalIpValueVariable: string
ipEnforcedForKnownBrowsers: false
ipEnforcedForKnownBrowsersVariable: string
name: string
nameVariable: string
ofwEnabled: false
ofwEnabledVariable: string
refreshTime: 0
refreshTimeUnit: string
refreshTimeUnitVariable: string
refreshTimeVariable: string
serviceVpnVariable: string
serviceVpns:
- string
surrogateIp: false
surrogateIpVariable: string
upBandwidth: 0
upBandwidthVariable: string
surrogateIp: false
surrogateIpVariable: string
trackerSourceIp: string
trackerSourceIpVariable: string
trackers:
- endpointApiUrl: string
endpointApiUrlVariable: string
interval: 0
intervalVariable: string
multiplier: 0
multiplierVariable: string
name: string
threshold: 0
thresholdVariable: string
upBandwidth: 0
upBandwidthVariable: string
xffForwardEnabled: false
xffForwardEnabledVariable: string
SseZscalerFeature Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The SseZscalerFeature resource accepts the following input properties:
- Feature
Profile stringId - Feature Profile ID
- Interface
Pairs List<SseZscaler Feature Interface Pair> - Interface Pair for active and backup
- Interfaces
List<Sse
Zscaler Feature Interface> - Interface name: IPsec when present
- Tracker
Source stringIp - Source IP address for Tracker
- Aup
Enabled bool - Enable Acceptable User Policy
- Default value:
false
- Default value:
- Aup
Enabled stringVariable - Variable name
- Aup
Timeout int - Custom Acceptable User Policy frequency in days, Attribute conditional on
aupEnabledequal totrue- Range:
1-180 - Default value:
1
- Range:
- Aup
Timeout stringVariable - Variable name, Attribute conditional on
aupEnabledequal totrue - Auth
Required bool - Enforce Authentication
- Default value:
false
- Default value:
- Auth
Required stringVariable - Variable name
- Block
Internet boolUntil Accepted - For first-time Acceptable User Policy behavior, block Internet access, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- Block
Internet stringUntil Accepted Variable - Variable name, Attribute conditional on
aupEnabledequal totrue - Caution
Enabled bool - Enable Caution
- Default value:
false
- Default value:
- Caution
Enabled stringVariable - Variable name
- Country bool
- Default value:
false
- Default value:
- Country
Variable string - Variable name
- Description string
- The description of the Feature
- Display
Time stringUnit - Display time unit, Attribute conditional on
surrogateIpequal totrue- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- Display
Time stringUnit Variable - Variable name, Attribute conditional on
surrogateIpequal totrue - Dn
Bandwidth double - , Attribute conditional on
enforceBandwidthControlequal totrue- Range:
0.1-99999
- Range:
- Dn
Bandwidth stringVariable - Variable name, Attribute conditional on
enforceBandwidthControlequal totrue - Enforce
Bandwidth boolControl - Default value:
false
- Default value:
- Enforce
Bandwidth stringControl Variable - Variable name
- Force
Ssl boolInspection - For first-time Acceptable User Policy behavior, force SSL inspection, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- Force
Ssl stringInspection Variable - Variable name, Attribute conditional on
aupEnabledequal totrue - Idle
Time int - Idle time to disassociation, Attribute conditional on
surrogateIpequal totrue- At Least:
1 - Default value:
1
- At Least:
- Idle
Time stringVariable - Variable name, Attribute conditional on
surrogateIpequal totrue - Ip
Enforced boolFor Known Browsers - Enforce Surrogate IP for known browsers
- Default value:
false
- Default value:
- Ip
Enforced stringFor Known Browsers Variable - Variable name
- Ips
Control bool - Enable IPS Control
- Default value:
false
- Default value:
- Ips
Control stringVariable - Variable name
- Location
Name string - Zscaler location name (optional)
- Default value:
Auto
- Default value:
- Location
Name stringVariable - Variable name
- Name string
- The name of the Feature
- Ofw
Enabled bool - Firewall enabled
- Default value:
false
- Default value:
- Ofw
Enabled stringVariable - Variable name
- Primary
Data stringCenter - Custom Primary Datacenter
- Default value:
Auto
- Default value:
- Primary
Data stringCenter Variable - Variable name
- Refresh
Time int - Refresh time for re-validation of surrogacy in minutes
- At Least:
1 - Default value:
1
- At Least:
- Refresh
Time stringUnit - Refresh Time unit
- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- Refresh
Time stringUnit Variable - Variable name
- Refresh
Time stringVariable - Variable name
- Secondary
Data stringCenter - Custom Secondary Datacenter
- Default value:
Auto
- Default value:
- Secondary
Data stringCenter Variable - Variable name
- Src
Vpn bool - Share Source VPN
- Default value:
false
- Default value:
- Sub
Locations List<SseZscaler Feature Sub Location> - Surrogate
Ip bool - Enable Surrogate IP, Attribute conditional on
authRequiredequal totrue- Default value:
false
- Default value:
- Surrogate
Ip stringVariable - Variable name, Attribute conditional on
authRequiredequal totrue - Tracker
Source stringIp Variable - Variable name
- Trackers
List<Sse
Zscaler Feature Tracker> - Tracker configuration
- Up
Bandwidth double - , Attribute conditional on
enforceBandwidthControlequal totrue- Range:
0.1-99999
- Range:
- Up
Bandwidth stringVariable - Variable name, Attribute conditional on
enforceBandwidthControlequal totrue - Xff
Forward boolEnabled - XFF forwarding enabled
- Default value:
false
- Default value:
- Xff
Forward stringEnabled Variable - Variable name
- Feature
Profile stringId - Feature Profile ID
- Interface
Pairs []SseZscaler Feature Interface Pair Args - Interface Pair for active and backup
- Interfaces
[]Sse
Zscaler Feature Interface Args - Interface name: IPsec when present
- Tracker
Source stringIp - Source IP address for Tracker
- Aup
Enabled bool - Enable Acceptable User Policy
- Default value:
false
- Default value:
- Aup
Enabled stringVariable - Variable name
- Aup
Timeout int - Custom Acceptable User Policy frequency in days, Attribute conditional on
aupEnabledequal totrue- Range:
1-180 - Default value:
1
- Range:
- Aup
Timeout stringVariable - Variable name, Attribute conditional on
aupEnabledequal totrue - Auth
Required bool - Enforce Authentication
- Default value:
false
- Default value:
- Auth
Required stringVariable - Variable name
- Block
Internet boolUntil Accepted - For first-time Acceptable User Policy behavior, block Internet access, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- Block
Internet stringUntil Accepted Variable - Variable name, Attribute conditional on
aupEnabledequal totrue - Caution
Enabled bool - Enable Caution
- Default value:
false
- Default value:
- Caution
Enabled stringVariable - Variable name
- Country bool
- Default value:
false
- Default value:
- Country
Variable string - Variable name
- Description string
- The description of the Feature
- Display
Time stringUnit - Display time unit, Attribute conditional on
surrogateIpequal totrue- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- Display
Time stringUnit Variable - Variable name, Attribute conditional on
surrogateIpequal totrue - Dn
Bandwidth float64 - , Attribute conditional on
enforceBandwidthControlequal totrue- Range:
0.1-99999
- Range:
- Dn
Bandwidth stringVariable - Variable name, Attribute conditional on
enforceBandwidthControlequal totrue - Enforce
Bandwidth boolControl - Default value:
false
- Default value:
- Enforce
Bandwidth stringControl Variable - Variable name
- Force
Ssl boolInspection - For first-time Acceptable User Policy behavior, force SSL inspection, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- Force
Ssl stringInspection Variable - Variable name, Attribute conditional on
aupEnabledequal totrue - Idle
Time int - Idle time to disassociation, Attribute conditional on
surrogateIpequal totrue- At Least:
1 - Default value:
1
- At Least:
- Idle
Time stringVariable - Variable name, Attribute conditional on
surrogateIpequal totrue - Ip
Enforced boolFor Known Browsers - Enforce Surrogate IP for known browsers
- Default value:
false
- Default value:
- Ip
Enforced stringFor Known Browsers Variable - Variable name
- Ips
Control bool - Enable IPS Control
- Default value:
false
- Default value:
- Ips
Control stringVariable - Variable name
- Location
Name string - Zscaler location name (optional)
- Default value:
Auto
- Default value:
- Location
Name stringVariable - Variable name
- Name string
- The name of the Feature
- Ofw
Enabled bool - Firewall enabled
- Default value:
false
- Default value:
- Ofw
Enabled stringVariable - Variable name
- Primary
Data stringCenter - Custom Primary Datacenter
- Default value:
Auto
- Default value:
- Primary
Data stringCenter Variable - Variable name
- Refresh
Time int - Refresh time for re-validation of surrogacy in minutes
- At Least:
1 - Default value:
1
- At Least:
- Refresh
Time stringUnit - Refresh Time unit
- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- Refresh
Time stringUnit Variable - Variable name
- Refresh
Time stringVariable - Variable name
- Secondary
Data stringCenter - Custom Secondary Datacenter
- Default value:
Auto
- Default value:
- Secondary
Data stringCenter Variable - Variable name
- Src
Vpn bool - Share Source VPN
- Default value:
false
- Default value:
- Sub
Locations []SseZscaler Feature Sub Location Args - Surrogate
Ip bool - Enable Surrogate IP, Attribute conditional on
authRequiredequal totrue- Default value:
false
- Default value:
- Surrogate
Ip stringVariable - Variable name, Attribute conditional on
authRequiredequal totrue - Tracker
Source stringIp Variable - Variable name
- Trackers
[]Sse
Zscaler Feature Tracker Args - Tracker configuration
- Up
Bandwidth float64 - , Attribute conditional on
enforceBandwidthControlequal totrue- Range:
0.1-99999
- Range:
- Up
Bandwidth stringVariable - Variable name, Attribute conditional on
enforceBandwidthControlequal totrue - Xff
Forward boolEnabled - XFF forwarding enabled
- Default value:
false
- Default value:
- Xff
Forward stringEnabled Variable - Variable name
- feature_
profile_ stringid - Feature Profile ID
- interface_
pairs list(object) - Interface Pair for active and backup
- interfaces list(object)
- Interface name: IPsec when present
- tracker_
source_ stringip - Source IP address for Tracker
- aup_
enabled bool - Enable Acceptable User Policy
- Default value:
false
- Default value:
- aup_
enabled_ stringvariable - Variable name
- aup_
timeout number - Custom Acceptable User Policy frequency in days, Attribute conditional on
aupEnabledequal totrue- Range:
1-180 - Default value:
1
- Range:
- aup_
timeout_ stringvariable - Variable name, Attribute conditional on
aupEnabledequal totrue - auth_
required bool - Enforce Authentication
- Default value:
false
- Default value:
- auth_
required_ stringvariable - Variable name
- block_
internet_ booluntil_ accepted - For first-time Acceptable User Policy behavior, block Internet access, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- block_
internet_ stringuntil_ accepted_ variable - Variable name, Attribute conditional on
aupEnabledequal totrue - caution_
enabled bool - Enable Caution
- Default value:
false
- Default value:
- caution_
enabled_ stringvariable - Variable name
- country bool
- Default value:
false
- Default value:
- country_
variable string - Variable name
- description string
- The description of the Feature
- display_
time_ stringunit - Display time unit, Attribute conditional on
surrogateIpequal totrue- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- display_
time_ stringunit_ variable - Variable name, Attribute conditional on
surrogateIpequal totrue - dn_
bandwidth number - , Attribute conditional on
enforceBandwidthControlequal totrue- Range:
0.1-99999
- Range:
- dn_
bandwidth_ stringvariable - Variable name, Attribute conditional on
enforceBandwidthControlequal totrue - enforce_
bandwidth_ boolcontrol - Default value:
false
- Default value:
- enforce_
bandwidth_ stringcontrol_ variable - Variable name
- force_
ssl_ boolinspection - For first-time Acceptable User Policy behavior, force SSL inspection, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- force_
ssl_ stringinspection_ variable - Variable name, Attribute conditional on
aupEnabledequal totrue - idle_
time number - Idle time to disassociation, Attribute conditional on
surrogateIpequal totrue- At Least:
1 - Default value:
1
- At Least:
- idle_
time_ stringvariable - Variable name, Attribute conditional on
surrogateIpequal totrue - ip_
enforced_ boolfor_ known_ browsers - Enforce Surrogate IP for known browsers
- Default value:
false
- Default value:
- ip_
enforced_ stringfor_ known_ browsers_ variable - Variable name
- ips_
control bool - Enable IPS Control
- Default value:
false
- Default value:
- ips_
control_ stringvariable - Variable name
- location_
name string - Zscaler location name (optional)
- Default value:
Auto
- Default value:
- location_
name_ stringvariable - Variable name
- name string
- The name of the Feature
- ofw_
enabled bool - Firewall enabled
- Default value:
false
- Default value:
- ofw_
enabled_ stringvariable - Variable name
- primary_
data_ stringcenter - Custom Primary Datacenter
- Default value:
Auto
- Default value:
- primary_
data_ stringcenter_ variable - Variable name
- refresh_
time number - Refresh time for re-validation of surrogacy in minutes
- At Least:
1 - Default value:
1
- At Least:
- refresh_
time_ stringunit - Refresh Time unit
- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- refresh_
time_ stringunit_ variable - Variable name
- refresh_
time_ stringvariable - Variable name
- secondary_
data_ stringcenter - Custom Secondary Datacenter
- Default value:
Auto
- Default value:
- secondary_
data_ stringcenter_ variable - Variable name
- src_
vpn bool - Share Source VPN
- Default value:
false
- Default value:
- sub_
locations list(object) - surrogate_
ip bool - Enable Surrogate IP, Attribute conditional on
authRequiredequal totrue- Default value:
false
- Default value:
- surrogate_
ip_ stringvariable - Variable name, Attribute conditional on
authRequiredequal totrue - tracker_
source_ stringip_ variable - Variable name
- trackers list(object)
- Tracker configuration
- up_
bandwidth number - , Attribute conditional on
enforceBandwidthControlequal totrue- Range:
0.1-99999
- Range:
- up_
bandwidth_ stringvariable - Variable name, Attribute conditional on
enforceBandwidthControlequal totrue - xff_
forward_ boolenabled - XFF forwarding enabled
- Default value:
false
- Default value:
- xff_
forward_ stringenabled_ variable - Variable name
- feature
Profile StringId - Feature Profile ID
- interface
Pairs List<SseZscaler Feature Interface Pair> - Interface Pair for active and backup
- interfaces
List<Sse
Zscaler Feature Interface> - Interface name: IPsec when present
- tracker
Source StringIp - Source IP address for Tracker
- aup
Enabled Boolean - Enable Acceptable User Policy
- Default value:
false
- Default value:
- aup
Enabled StringVariable - Variable name
- aup
Timeout Integer - Custom Acceptable User Policy frequency in days, Attribute conditional on
aupEnabledequal totrue- Range:
1-180 - Default value:
1
- Range:
- aup
Timeout StringVariable - Variable name, Attribute conditional on
aupEnabledequal totrue - auth
Required Boolean - Enforce Authentication
- Default value:
false
- Default value:
- auth
Required StringVariable - Variable name
- block
Internet BooleanUntil Accepted - For first-time Acceptable User Policy behavior, block Internet access, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- block
Internet StringUntil Accepted Variable - Variable name, Attribute conditional on
aupEnabledequal totrue - caution
Enabled Boolean - Enable Caution
- Default value:
false
- Default value:
- caution
Enabled StringVariable - Variable name
- country Boolean
- Default value:
false
- Default value:
- country
Variable String - Variable name
- description String
- The description of the Feature
- display
Time StringUnit - Display time unit, Attribute conditional on
surrogateIpequal totrue- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- display
Time StringUnit Variable - Variable name, Attribute conditional on
surrogateIpequal totrue - dn
Bandwidth Double - , Attribute conditional on
enforceBandwidthControlequal totrue- Range:
0.1-99999
- Range:
- dn
Bandwidth StringVariable - Variable name, Attribute conditional on
enforceBandwidthControlequal totrue - enforce
Bandwidth BooleanControl - Default value:
false
- Default value:
- enforce
Bandwidth StringControl Variable - Variable name
- force
Ssl BooleanInspection - For first-time Acceptable User Policy behavior, force SSL inspection, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- force
Ssl StringInspection Variable - Variable name, Attribute conditional on
aupEnabledequal totrue - idle
Time Integer - Idle time to disassociation, Attribute conditional on
surrogateIpequal totrue- At Least:
1 - Default value:
1
- At Least:
- idle
Time StringVariable - Variable name, Attribute conditional on
surrogateIpequal totrue - ip
Enforced BooleanFor Known Browsers - Enforce Surrogate IP for known browsers
- Default value:
false
- Default value:
- ip
Enforced StringFor Known Browsers Variable - Variable name
- ips
Control Boolean - Enable IPS Control
- Default value:
false
- Default value:
- ips
Control StringVariable - Variable name
- location
Name String - Zscaler location name (optional)
- Default value:
Auto
- Default value:
- location
Name StringVariable - Variable name
- name String
- The name of the Feature
- ofw
Enabled Boolean - Firewall enabled
- Default value:
false
- Default value:
- ofw
Enabled StringVariable - Variable name
- primary
Data StringCenter - Custom Primary Datacenter
- Default value:
Auto
- Default value:
- primary
Data StringCenter Variable - Variable name
- refresh
Time Integer - Refresh time for re-validation of surrogacy in minutes
- At Least:
1 - Default value:
1
- At Least:
- refresh
Time StringUnit - Refresh Time unit
- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- refresh
Time StringUnit Variable - Variable name
- refresh
Time StringVariable - Variable name
- secondary
Data StringCenter - Custom Secondary Datacenter
- Default value:
Auto
- Default value:
- secondary
Data StringCenter Variable - Variable name
- src
Vpn Boolean - Share Source VPN
- Default value:
false
- Default value:
- sub
Locations List<SseZscaler Feature Sub Location> - surrogate
Ip Boolean - Enable Surrogate IP, Attribute conditional on
authRequiredequal totrue- Default value:
false
- Default value:
- surrogate
Ip StringVariable - Variable name, Attribute conditional on
authRequiredequal totrue - tracker
Source StringIp Variable - Variable name
- trackers
List<Sse
Zscaler Feature Tracker> - Tracker configuration
- up
Bandwidth Double - , Attribute conditional on
enforceBandwidthControlequal totrue- Range:
0.1-99999
- Range:
- up
Bandwidth StringVariable - Variable name, Attribute conditional on
enforceBandwidthControlequal totrue - xff
Forward BooleanEnabled - XFF forwarding enabled
- Default value:
false
- Default value:
- xff
Forward StringEnabled Variable - Variable name
- feature
Profile stringId - Feature Profile ID
- interface
Pairs SseZscaler Feature Interface Pair[] - Interface Pair for active and backup
- interfaces
Sse
Zscaler Feature Interface[] - Interface name: IPsec when present
- tracker
Source stringIp - Source IP address for Tracker
- aup
Enabled boolean - Enable Acceptable User Policy
- Default value:
false
- Default value:
- aup
Enabled stringVariable - Variable name
- aup
Timeout number - Custom Acceptable User Policy frequency in days, Attribute conditional on
aupEnabledequal totrue- Range:
1-180 - Default value:
1
- Range:
- aup
Timeout stringVariable - Variable name, Attribute conditional on
aupEnabledequal totrue - auth
Required boolean - Enforce Authentication
- Default value:
false
- Default value:
- auth
Required stringVariable - Variable name
- block
Internet booleanUntil Accepted - For first-time Acceptable User Policy behavior, block Internet access, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- block
Internet stringUntil Accepted Variable - Variable name, Attribute conditional on
aupEnabledequal totrue - caution
Enabled boolean - Enable Caution
- Default value:
false
- Default value:
- caution
Enabled stringVariable - Variable name
- country boolean
- Default value:
false
- Default value:
- country
Variable string - Variable name
- description string
- The description of the Feature
- display
Time stringUnit - Display time unit, Attribute conditional on
surrogateIpequal totrue- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- display
Time stringUnit Variable - Variable name, Attribute conditional on
surrogateIpequal totrue - dn
Bandwidth number - , Attribute conditional on
enforceBandwidthControlequal totrue- Range:
0.1-99999
- Range:
- dn
Bandwidth stringVariable - Variable name, Attribute conditional on
enforceBandwidthControlequal totrue - enforce
Bandwidth booleanControl - Default value:
false
- Default value:
- enforce
Bandwidth stringControl Variable - Variable name
- force
Ssl booleanInspection - For first-time Acceptable User Policy behavior, force SSL inspection, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- force
Ssl stringInspection Variable - Variable name, Attribute conditional on
aupEnabledequal totrue - idle
Time number - Idle time to disassociation, Attribute conditional on
surrogateIpequal totrue- At Least:
1 - Default value:
1
- At Least:
- idle
Time stringVariable - Variable name, Attribute conditional on
surrogateIpequal totrue - ip
Enforced booleanFor Known Browsers - Enforce Surrogate IP for known browsers
- Default value:
false
- Default value:
- ip
Enforced stringFor Known Browsers Variable - Variable name
- ips
Control boolean - Enable IPS Control
- Default value:
false
- Default value:
- ips
Control stringVariable - Variable name
- location
Name string - Zscaler location name (optional)
- Default value:
Auto
- Default value:
- location
Name stringVariable - Variable name
- name string
- The name of the Feature
- ofw
Enabled boolean - Firewall enabled
- Default value:
false
- Default value:
- ofw
Enabled stringVariable - Variable name
- primary
Data stringCenter - Custom Primary Datacenter
- Default value:
Auto
- Default value:
- primary
Data stringCenter Variable - Variable name
- refresh
Time number - Refresh time for re-validation of surrogacy in minutes
- At Least:
1 - Default value:
1
- At Least:
- refresh
Time stringUnit - Refresh Time unit
- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- refresh
Time stringUnit Variable - Variable name
- refresh
Time stringVariable - Variable name
- secondary
Data stringCenter - Custom Secondary Datacenter
- Default value:
Auto
- Default value:
- secondary
Data stringCenter Variable - Variable name
- src
Vpn boolean - Share Source VPN
- Default value:
false
- Default value:
- sub
Locations SseZscaler Feature Sub Location[] - surrogate
Ip boolean - Enable Surrogate IP, Attribute conditional on
authRequiredequal totrue- Default value:
false
- Default value:
- surrogate
Ip stringVariable - Variable name, Attribute conditional on
authRequiredequal totrue - tracker
Source stringIp Variable - Variable name
- trackers
Sse
Zscaler Feature Tracker[] - Tracker configuration
- up
Bandwidth number - , Attribute conditional on
enforceBandwidthControlequal totrue- Range:
0.1-99999
- Range:
- up
Bandwidth stringVariable - Variable name, Attribute conditional on
enforceBandwidthControlequal totrue - xff
Forward booleanEnabled - XFF forwarding enabled
- Default value:
false
- Default value:
- xff
Forward stringEnabled Variable - Variable name
- feature_
profile_ strid - Feature Profile ID
- interface_
pairs Sequence[SseZscaler Feature Interface Pair Args] - Interface Pair for active and backup
- interfaces
Sequence[Sse
Zscaler Feature Interface Args] - Interface name: IPsec when present
- tracker_
source_ strip - Source IP address for Tracker
- aup_
enabled bool - Enable Acceptable User Policy
- Default value:
false
- Default value:
- aup_
enabled_ strvariable - Variable name
- aup_
timeout int - Custom Acceptable User Policy frequency in days, Attribute conditional on
aupEnabledequal totrue- Range:
1-180 - Default value:
1
- Range:
- aup_
timeout_ strvariable - Variable name, Attribute conditional on
aupEnabledequal totrue - auth_
required bool - Enforce Authentication
- Default value:
false
- Default value:
- auth_
required_ strvariable - Variable name
- block_
internet_ booluntil_ accepted - For first-time Acceptable User Policy behavior, block Internet access, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- block_
internet_ struntil_ accepted_ variable - Variable name, Attribute conditional on
aupEnabledequal totrue - caution_
enabled bool - Enable Caution
- Default value:
false
- Default value:
- caution_
enabled_ strvariable - Variable name
- country bool
- Default value:
false
- Default value:
- country_
variable str - Variable name
- description str
- The description of the Feature
- display_
time_ strunit - Display time unit, Attribute conditional on
surrogateIpequal totrue- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- display_
time_ strunit_ variable - Variable name, Attribute conditional on
surrogateIpequal totrue - dn_
bandwidth float - , Attribute conditional on
enforceBandwidthControlequal totrue- Range:
0.1-99999
- Range:
- dn_
bandwidth_ strvariable - Variable name, Attribute conditional on
enforceBandwidthControlequal totrue - enforce_
bandwidth_ boolcontrol - Default value:
false
- Default value:
- enforce_
bandwidth_ strcontrol_ variable - Variable name
- force_
ssl_ boolinspection - For first-time Acceptable User Policy behavior, force SSL inspection, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- force_
ssl_ strinspection_ variable - Variable name, Attribute conditional on
aupEnabledequal totrue - idle_
time int - Idle time to disassociation, Attribute conditional on
surrogateIpequal totrue- At Least:
1 - Default value:
1
- At Least:
- idle_
time_ strvariable - Variable name, Attribute conditional on
surrogateIpequal totrue - ip_
enforced_ boolfor_ known_ browsers - Enforce Surrogate IP for known browsers
- Default value:
false
- Default value:
- ip_
enforced_ strfor_ known_ browsers_ variable - Variable name
- ips_
control bool - Enable IPS Control
- Default value:
false
- Default value:
- ips_
control_ strvariable - Variable name
- location_
name str - Zscaler location name (optional)
- Default value:
Auto
- Default value:
- location_
name_ strvariable - Variable name
- name str
- The name of the Feature
- ofw_
enabled bool - Firewall enabled
- Default value:
false
- Default value:
- ofw_
enabled_ strvariable - Variable name
- primary_
data_ strcenter - Custom Primary Datacenter
- Default value:
Auto
- Default value:
- primary_
data_ strcenter_ variable - Variable name
- refresh_
time int - Refresh time for re-validation of surrogacy in minutes
- At Least:
1 - Default value:
1
- At Least:
- refresh_
time_ strunit - Refresh Time unit
- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- refresh_
time_ strunit_ variable - Variable name
- refresh_
time_ strvariable - Variable name
- secondary_
data_ strcenter - Custom Secondary Datacenter
- Default value:
Auto
- Default value:
- secondary_
data_ strcenter_ variable - Variable name
- src_
vpn bool - Share Source VPN
- Default value:
false
- Default value:
- sub_
locations Sequence[SseZscaler Feature Sub Location Args] - surrogate_
ip bool - Enable Surrogate IP, Attribute conditional on
authRequiredequal totrue- Default value:
false
- Default value:
- surrogate_
ip_ strvariable - Variable name, Attribute conditional on
authRequiredequal totrue - tracker_
source_ strip_ variable - Variable name
- trackers
Sequence[Sse
Zscaler Feature Tracker Args] - Tracker configuration
- up_
bandwidth float - , Attribute conditional on
enforceBandwidthControlequal totrue- Range:
0.1-99999
- Range:
- up_
bandwidth_ strvariable - Variable name, Attribute conditional on
enforceBandwidthControlequal totrue - xff_
forward_ boolenabled - XFF forwarding enabled
- Default value:
false
- Default value:
- xff_
forward_ strenabled_ variable - Variable name
- feature
Profile StringId - Feature Profile ID
- interface
Pairs List<Property Map> - Interface Pair for active and backup
- interfaces List<Property Map>
- Interface name: IPsec when present
- tracker
Source StringIp - Source IP address for Tracker
- aup
Enabled Boolean - Enable Acceptable User Policy
- Default value:
false
- Default value:
- aup
Enabled StringVariable - Variable name
- aup
Timeout Number - Custom Acceptable User Policy frequency in days, Attribute conditional on
aupEnabledequal totrue- Range:
1-180 - Default value:
1
- Range:
- aup
Timeout StringVariable - Variable name, Attribute conditional on
aupEnabledequal totrue - auth
Required Boolean - Enforce Authentication
- Default value:
false
- Default value:
- auth
Required StringVariable - Variable name
- block
Internet BooleanUntil Accepted - For first-time Acceptable User Policy behavior, block Internet access, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- block
Internet StringUntil Accepted Variable - Variable name, Attribute conditional on
aupEnabledequal totrue - caution
Enabled Boolean - Enable Caution
- Default value:
false
- Default value:
- caution
Enabled StringVariable - Variable name
- country Boolean
- Default value:
false
- Default value:
- country
Variable String - Variable name
- description String
- The description of the Feature
- display
Time StringUnit - Display time unit, Attribute conditional on
surrogateIpequal totrue- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- display
Time StringUnit Variable - Variable name, Attribute conditional on
surrogateIpequal totrue - dn
Bandwidth Number - , Attribute conditional on
enforceBandwidthControlequal totrue- Range:
0.1-99999
- Range:
- dn
Bandwidth StringVariable - Variable name, Attribute conditional on
enforceBandwidthControlequal totrue - enforce
Bandwidth BooleanControl - Default value:
false
- Default value:
- enforce
Bandwidth StringControl Variable - Variable name
- force
Ssl BooleanInspection - For first-time Acceptable User Policy behavior, force SSL inspection, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- force
Ssl StringInspection Variable - Variable name, Attribute conditional on
aupEnabledequal totrue - idle
Time Number - Idle time to disassociation, Attribute conditional on
surrogateIpequal totrue- At Least:
1 - Default value:
1
- At Least:
- idle
Time StringVariable - Variable name, Attribute conditional on
surrogateIpequal totrue - ip
Enforced BooleanFor Known Browsers - Enforce Surrogate IP for known browsers
- Default value:
false
- Default value:
- ip
Enforced StringFor Known Browsers Variable - Variable name
- ips
Control Boolean - Enable IPS Control
- Default value:
false
- Default value:
- ips
Control StringVariable - Variable name
- location
Name String - Zscaler location name (optional)
- Default value:
Auto
- Default value:
- location
Name StringVariable - Variable name
- name String
- The name of the Feature
- ofw
Enabled Boolean - Firewall enabled
- Default value:
false
- Default value:
- ofw
Enabled StringVariable - Variable name
- primary
Data StringCenter - Custom Primary Datacenter
- Default value:
Auto
- Default value:
- primary
Data StringCenter Variable - Variable name
- refresh
Time Number - Refresh time for re-validation of surrogacy in minutes
- At Least:
1 - Default value:
1
- At Least:
- refresh
Time StringUnit - Refresh Time unit
- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- refresh
Time StringUnit Variable - Variable name
- refresh
Time StringVariable - Variable name
- secondary
Data StringCenter - Custom Secondary Datacenter
- Default value:
Auto
- Default value:
- secondary
Data StringCenter Variable - Variable name
- src
Vpn Boolean - Share Source VPN
- Default value:
false
- Default value:
- sub
Locations List<Property Map> - surrogate
Ip Boolean - Enable Surrogate IP, Attribute conditional on
authRequiredequal totrue- Default value:
false
- Default value:
- surrogate
Ip StringVariable - Variable name, Attribute conditional on
authRequiredequal totrue - tracker
Source StringIp Variable - Variable name
- trackers List<Property Map>
- Tracker configuration
- up
Bandwidth Number - , Attribute conditional on
enforceBandwidthControlequal totrue- Range:
0.1-99999
- Range:
- up
Bandwidth StringVariable - Variable name, Attribute conditional on
enforceBandwidthControlequal totrue - xff
Forward BooleanEnabled - XFF forwarding enabled
- Default value:
false
- Default value:
- xff
Forward StringEnabled Variable - Variable name
Outputs
All input properties are implicitly available as output properties. Additionally, the SseZscalerFeature resource produces the following output properties:
Look up Existing SseZscalerFeature Resource
Get an existing SseZscalerFeature resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: SseZscalerFeatureState, opts?: CustomResourceOptions): SseZscalerFeature@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
aup_enabled: Optional[bool] = None,
aup_enabled_variable: Optional[str] = None,
aup_timeout: Optional[int] = None,
aup_timeout_variable: Optional[str] = None,
auth_required: Optional[bool] = None,
auth_required_variable: Optional[str] = None,
block_internet_until_accepted: Optional[bool] = None,
block_internet_until_accepted_variable: Optional[str] = None,
caution_enabled: Optional[bool] = None,
caution_enabled_variable: Optional[str] = None,
country: Optional[bool] = None,
country_variable: Optional[str] = None,
description: Optional[str] = None,
display_time_unit: Optional[str] = None,
display_time_unit_variable: Optional[str] = None,
dn_bandwidth: Optional[float] = None,
dn_bandwidth_variable: Optional[str] = None,
enforce_bandwidth_control: Optional[bool] = None,
enforce_bandwidth_control_variable: Optional[str] = None,
feature_profile_id: Optional[str] = None,
force_ssl_inspection: Optional[bool] = None,
force_ssl_inspection_variable: Optional[str] = None,
idle_time: Optional[int] = None,
idle_time_variable: Optional[str] = None,
interface_pairs: Optional[Sequence[SseZscalerFeatureInterfacePairArgs]] = None,
interfaces: Optional[Sequence[SseZscalerFeatureInterfaceArgs]] = None,
ip_enforced_for_known_browsers: Optional[bool] = None,
ip_enforced_for_known_browsers_variable: Optional[str] = None,
ips_control: Optional[bool] = None,
ips_control_variable: Optional[str] = None,
location_name: Optional[str] = None,
location_name_variable: Optional[str] = None,
name: Optional[str] = None,
ofw_enabled: Optional[bool] = None,
ofw_enabled_variable: Optional[str] = None,
primary_data_center: Optional[str] = None,
primary_data_center_variable: Optional[str] = None,
refresh_time: Optional[int] = None,
refresh_time_unit: Optional[str] = None,
refresh_time_unit_variable: Optional[str] = None,
refresh_time_variable: Optional[str] = None,
secondary_data_center: Optional[str] = None,
secondary_data_center_variable: Optional[str] = None,
src_vpn: Optional[bool] = None,
sub_locations: Optional[Sequence[SseZscalerFeatureSubLocationArgs]] = None,
surrogate_ip: Optional[bool] = None,
surrogate_ip_variable: Optional[str] = None,
tracker_source_ip: Optional[str] = None,
tracker_source_ip_variable: Optional[str] = None,
trackers: Optional[Sequence[SseZscalerFeatureTrackerArgs]] = None,
up_bandwidth: Optional[float] = None,
up_bandwidth_variable: Optional[str] = None,
version: Optional[int] = None,
xff_forward_enabled: Optional[bool] = None,
xff_forward_enabled_variable: Optional[str] = None) -> SseZscalerFeaturefunc GetSseZscalerFeature(ctx *Context, name string, id IDInput, state *SseZscalerFeatureState, opts ...ResourceOption) (*SseZscalerFeature, error)public static SseZscalerFeature Get(string name, Input<string> id, SseZscalerFeatureState? state, CustomResourceOptions? opts = null)public static SseZscalerFeature get(String name, Output<String> id, SseZscalerFeatureState state, CustomResourceOptions options)resources: _: type: sdwan:SseZscalerFeature get: id: ${id}import {
to = sdwan_ssezscalerfeature.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Aup
Enabled bool - Enable Acceptable User Policy
- Default value:
false
- Default value:
- Aup
Enabled stringVariable - Variable name
- Aup
Timeout int - Custom Acceptable User Policy frequency in days, Attribute conditional on
aupEnabledequal totrue- Range:
1-180 - Default value:
1
- Range:
- Aup
Timeout stringVariable - Variable name, Attribute conditional on
aupEnabledequal totrue - Auth
Required bool - Enforce Authentication
- Default value:
false
- Default value:
- Auth
Required stringVariable - Variable name
- Block
Internet boolUntil Accepted - For first-time Acceptable User Policy behavior, block Internet access, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- Block
Internet stringUntil Accepted Variable - Variable name, Attribute conditional on
aupEnabledequal totrue - Caution
Enabled bool - Enable Caution
- Default value:
false
- Default value:
- Caution
Enabled stringVariable - Variable name
- Country bool
- Default value:
false
- Default value:
- Country
Variable string - Variable name
- Description string
- The description of the Feature
- Display
Time stringUnit - Display time unit, Attribute conditional on
surrogateIpequal totrue- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- Display
Time stringUnit Variable - Variable name, Attribute conditional on
surrogateIpequal totrue - Dn
Bandwidth double - , Attribute conditional on
enforceBandwidthControlequal totrue- Range:
0.1-99999
- Range:
- Dn
Bandwidth stringVariable - Variable name, Attribute conditional on
enforceBandwidthControlequal totrue - Enforce
Bandwidth boolControl - Default value:
false
- Default value:
- Enforce
Bandwidth stringControl Variable - Variable name
- Feature
Profile stringId - Feature Profile ID
- Force
Ssl boolInspection - For first-time Acceptable User Policy behavior, force SSL inspection, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- Force
Ssl stringInspection Variable - Variable name, Attribute conditional on
aupEnabledequal totrue - Idle
Time int - Idle time to disassociation, Attribute conditional on
surrogateIpequal totrue- At Least:
1 - Default value:
1
- At Least:
- Idle
Time stringVariable - Variable name, Attribute conditional on
surrogateIpequal totrue - Interface
Pairs List<SseZscaler Feature Interface Pair> - Interface Pair for active and backup
- Interfaces
List<Sse
Zscaler Feature Interface> - Interface name: IPsec when present
- Ip
Enforced boolFor Known Browsers - Enforce Surrogate IP for known browsers
- Default value:
false
- Default value:
- Ip
Enforced stringFor Known Browsers Variable - Variable name
- Ips
Control bool - Enable IPS Control
- Default value:
false
- Default value:
- Ips
Control stringVariable - Variable name
- Location
Name string - Zscaler location name (optional)
- Default value:
Auto
- Default value:
- Location
Name stringVariable - Variable name
- Name string
- The name of the Feature
- Ofw
Enabled bool - Firewall enabled
- Default value:
false
- Default value:
- Ofw
Enabled stringVariable - Variable name
- Primary
Data stringCenter - Custom Primary Datacenter
- Default value:
Auto
- Default value:
- Primary
Data stringCenter Variable - Variable name
- Refresh
Time int - Refresh time for re-validation of surrogacy in minutes
- At Least:
1 - Default value:
1
- At Least:
- Refresh
Time stringUnit - Refresh Time unit
- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- Refresh
Time stringUnit Variable - Variable name
- Refresh
Time stringVariable - Variable name
- Secondary
Data stringCenter - Custom Secondary Datacenter
- Default value:
Auto
- Default value:
- Secondary
Data stringCenter Variable - Variable name
- Src
Vpn bool - Share Source VPN
- Default value:
false
- Default value:
- Sub
Locations List<SseZscaler Feature Sub Location> - Surrogate
Ip bool - Enable Surrogate IP, Attribute conditional on
authRequiredequal totrue- Default value:
false
- Default value:
- Surrogate
Ip stringVariable - Variable name, Attribute conditional on
authRequiredequal totrue - Tracker
Source stringIp - Source IP address for Tracker
- Tracker
Source stringIp Variable - Variable name
- Trackers
List<Sse
Zscaler Feature Tracker> - Tracker configuration
- Up
Bandwidth double - , Attribute conditional on
enforceBandwidthControlequal totrue- Range:
0.1-99999
- Range:
- Up
Bandwidth stringVariable - Variable name, Attribute conditional on
enforceBandwidthControlequal totrue - Version int
- The version of the Feature
- Xff
Forward boolEnabled - XFF forwarding enabled
- Default value:
false
- Default value:
- Xff
Forward stringEnabled Variable - Variable name
- Aup
Enabled bool - Enable Acceptable User Policy
- Default value:
false
- Default value:
- Aup
Enabled stringVariable - Variable name
- Aup
Timeout int - Custom Acceptable User Policy frequency in days, Attribute conditional on
aupEnabledequal totrue- Range:
1-180 - Default value:
1
- Range:
- Aup
Timeout stringVariable - Variable name, Attribute conditional on
aupEnabledequal totrue - Auth
Required bool - Enforce Authentication
- Default value:
false
- Default value:
- Auth
Required stringVariable - Variable name
- Block
Internet boolUntil Accepted - For first-time Acceptable User Policy behavior, block Internet access, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- Block
Internet stringUntil Accepted Variable - Variable name, Attribute conditional on
aupEnabledequal totrue - Caution
Enabled bool - Enable Caution
- Default value:
false
- Default value:
- Caution
Enabled stringVariable - Variable name
- Country bool
- Default value:
false
- Default value:
- Country
Variable string - Variable name
- Description string
- The description of the Feature
- Display
Time stringUnit - Display time unit, Attribute conditional on
surrogateIpequal totrue- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- Display
Time stringUnit Variable - Variable name, Attribute conditional on
surrogateIpequal totrue - Dn
Bandwidth float64 - , Attribute conditional on
enforceBandwidthControlequal totrue- Range:
0.1-99999
- Range:
- Dn
Bandwidth stringVariable - Variable name, Attribute conditional on
enforceBandwidthControlequal totrue - Enforce
Bandwidth boolControl - Default value:
false
- Default value:
- Enforce
Bandwidth stringControl Variable - Variable name
- Feature
Profile stringId - Feature Profile ID
- Force
Ssl boolInspection - For first-time Acceptable User Policy behavior, force SSL inspection, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- Force
Ssl stringInspection Variable - Variable name, Attribute conditional on
aupEnabledequal totrue - Idle
Time int - Idle time to disassociation, Attribute conditional on
surrogateIpequal totrue- At Least:
1 - Default value:
1
- At Least:
- Idle
Time stringVariable - Variable name, Attribute conditional on
surrogateIpequal totrue - Interface
Pairs []SseZscaler Feature Interface Pair Args - Interface Pair for active and backup
- Interfaces
[]Sse
Zscaler Feature Interface Args - Interface name: IPsec when present
- Ip
Enforced boolFor Known Browsers - Enforce Surrogate IP for known browsers
- Default value:
false
- Default value:
- Ip
Enforced stringFor Known Browsers Variable - Variable name
- Ips
Control bool - Enable IPS Control
- Default value:
false
- Default value:
- Ips
Control stringVariable - Variable name
- Location
Name string - Zscaler location name (optional)
- Default value:
Auto
- Default value:
- Location
Name stringVariable - Variable name
- Name string
- The name of the Feature
- Ofw
Enabled bool - Firewall enabled
- Default value:
false
- Default value:
- Ofw
Enabled stringVariable - Variable name
- Primary
Data stringCenter - Custom Primary Datacenter
- Default value:
Auto
- Default value:
- Primary
Data stringCenter Variable - Variable name
- Refresh
Time int - Refresh time for re-validation of surrogacy in minutes
- At Least:
1 - Default value:
1
- At Least:
- Refresh
Time stringUnit - Refresh Time unit
- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- Refresh
Time stringUnit Variable - Variable name
- Refresh
Time stringVariable - Variable name
- Secondary
Data stringCenter - Custom Secondary Datacenter
- Default value:
Auto
- Default value:
- Secondary
Data stringCenter Variable - Variable name
- Src
Vpn bool - Share Source VPN
- Default value:
false
- Default value:
- Sub
Locations []SseZscaler Feature Sub Location Args - Surrogate
Ip bool - Enable Surrogate IP, Attribute conditional on
authRequiredequal totrue- Default value:
false
- Default value:
- Surrogate
Ip stringVariable - Variable name, Attribute conditional on
authRequiredequal totrue - Tracker
Source stringIp - Source IP address for Tracker
- Tracker
Source stringIp Variable - Variable name
- Trackers
[]Sse
Zscaler Feature Tracker Args - Tracker configuration
- Up
Bandwidth float64 - , Attribute conditional on
enforceBandwidthControlequal totrue- Range:
0.1-99999
- Range:
- Up
Bandwidth stringVariable - Variable name, Attribute conditional on
enforceBandwidthControlequal totrue - Version int
- The version of the Feature
- Xff
Forward boolEnabled - XFF forwarding enabled
- Default value:
false
- Default value:
- Xff
Forward stringEnabled Variable - Variable name
- aup_
enabled bool - Enable Acceptable User Policy
- Default value:
false
- Default value:
- aup_
enabled_ stringvariable - Variable name
- aup_
timeout number - Custom Acceptable User Policy frequency in days, Attribute conditional on
aupEnabledequal totrue- Range:
1-180 - Default value:
1
- Range:
- aup_
timeout_ stringvariable - Variable name, Attribute conditional on
aupEnabledequal totrue - auth_
required bool - Enforce Authentication
- Default value:
false
- Default value:
- auth_
required_ stringvariable - Variable name
- block_
internet_ booluntil_ accepted - For first-time Acceptable User Policy behavior, block Internet access, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- block_
internet_ stringuntil_ accepted_ variable - Variable name, Attribute conditional on
aupEnabledequal totrue - caution_
enabled bool - Enable Caution
- Default value:
false
- Default value:
- caution_
enabled_ stringvariable - Variable name
- country bool
- Default value:
false
- Default value:
- country_
variable string - Variable name
- description string
- The description of the Feature
- display_
time_ stringunit - Display time unit, Attribute conditional on
surrogateIpequal totrue- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- display_
time_ stringunit_ variable - Variable name, Attribute conditional on
surrogateIpequal totrue - dn_
bandwidth number - , Attribute conditional on
enforceBandwidthControlequal totrue- Range:
0.1-99999
- Range:
- dn_
bandwidth_ stringvariable - Variable name, Attribute conditional on
enforceBandwidthControlequal totrue - enforce_
bandwidth_ boolcontrol - Default value:
false
- Default value:
- enforce_
bandwidth_ stringcontrol_ variable - Variable name
- feature_
profile_ stringid - Feature Profile ID
- force_
ssl_ boolinspection - For first-time Acceptable User Policy behavior, force SSL inspection, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- force_
ssl_ stringinspection_ variable - Variable name, Attribute conditional on
aupEnabledequal totrue - idle_
time number - Idle time to disassociation, Attribute conditional on
surrogateIpequal totrue- At Least:
1 - Default value:
1
- At Least:
- idle_
time_ stringvariable - Variable name, Attribute conditional on
surrogateIpequal totrue - interface_
pairs list(object) - Interface Pair for active and backup
- interfaces list(object)
- Interface name: IPsec when present
- ip_
enforced_ boolfor_ known_ browsers - Enforce Surrogate IP for known browsers
- Default value:
false
- Default value:
- ip_
enforced_ stringfor_ known_ browsers_ variable - Variable name
- ips_
control bool - Enable IPS Control
- Default value:
false
- Default value:
- ips_
control_ stringvariable - Variable name
- location_
name string - Zscaler location name (optional)
- Default value:
Auto
- Default value:
- location_
name_ stringvariable - Variable name
- name string
- The name of the Feature
- ofw_
enabled bool - Firewall enabled
- Default value:
false
- Default value:
- ofw_
enabled_ stringvariable - Variable name
- primary_
data_ stringcenter - Custom Primary Datacenter
- Default value:
Auto
- Default value:
- primary_
data_ stringcenter_ variable - Variable name
- refresh_
time number - Refresh time for re-validation of surrogacy in minutes
- At Least:
1 - Default value:
1
- At Least:
- refresh_
time_ stringunit - Refresh Time unit
- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- refresh_
time_ stringunit_ variable - Variable name
- refresh_
time_ stringvariable - Variable name
- secondary_
data_ stringcenter - Custom Secondary Datacenter
- Default value:
Auto
- Default value:
- secondary_
data_ stringcenter_ variable - Variable name
- src_
vpn bool - Share Source VPN
- Default value:
false
- Default value:
- sub_
locations list(object) - surrogate_
ip bool - Enable Surrogate IP, Attribute conditional on
authRequiredequal totrue- Default value:
false
- Default value:
- surrogate_
ip_ stringvariable - Variable name, Attribute conditional on
authRequiredequal totrue - tracker_
source_ stringip - Source IP address for Tracker
- tracker_
source_ stringip_ variable - Variable name
- trackers list(object)
- Tracker configuration
- up_
bandwidth number - , Attribute conditional on
enforceBandwidthControlequal totrue- Range:
0.1-99999
- Range:
- up_
bandwidth_ stringvariable - Variable name, Attribute conditional on
enforceBandwidthControlequal totrue - version number
- The version of the Feature
- xff_
forward_ boolenabled - XFF forwarding enabled
- Default value:
false
- Default value:
- xff_
forward_ stringenabled_ variable - Variable name
- aup
Enabled Boolean - Enable Acceptable User Policy
- Default value:
false
- Default value:
- aup
Enabled StringVariable - Variable name
- aup
Timeout Integer - Custom Acceptable User Policy frequency in days, Attribute conditional on
aupEnabledequal totrue- Range:
1-180 - Default value:
1
- Range:
- aup
Timeout StringVariable - Variable name, Attribute conditional on
aupEnabledequal totrue - auth
Required Boolean - Enforce Authentication
- Default value:
false
- Default value:
- auth
Required StringVariable - Variable name
- block
Internet BooleanUntil Accepted - For first-time Acceptable User Policy behavior, block Internet access, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- block
Internet StringUntil Accepted Variable - Variable name, Attribute conditional on
aupEnabledequal totrue - caution
Enabled Boolean - Enable Caution
- Default value:
false
- Default value:
- caution
Enabled StringVariable - Variable name
- country Boolean
- Default value:
false
- Default value:
- country
Variable String - Variable name
- description String
- The description of the Feature
- display
Time StringUnit - Display time unit, Attribute conditional on
surrogateIpequal totrue- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- display
Time StringUnit Variable - Variable name, Attribute conditional on
surrogateIpequal totrue - dn
Bandwidth Double - , Attribute conditional on
enforceBandwidthControlequal totrue- Range:
0.1-99999
- Range:
- dn
Bandwidth StringVariable - Variable name, Attribute conditional on
enforceBandwidthControlequal totrue - enforce
Bandwidth BooleanControl - Default value:
false
- Default value:
- enforce
Bandwidth StringControl Variable - Variable name
- feature
Profile StringId - Feature Profile ID
- force
Ssl BooleanInspection - For first-time Acceptable User Policy behavior, force SSL inspection, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- force
Ssl StringInspection Variable - Variable name, Attribute conditional on
aupEnabledequal totrue - idle
Time Integer - Idle time to disassociation, Attribute conditional on
surrogateIpequal totrue- At Least:
1 - Default value:
1
- At Least:
- idle
Time StringVariable - Variable name, Attribute conditional on
surrogateIpequal totrue - interface
Pairs List<SseZscaler Feature Interface Pair> - Interface Pair for active and backup
- interfaces
List<Sse
Zscaler Feature Interface> - Interface name: IPsec when present
- ip
Enforced BooleanFor Known Browsers - Enforce Surrogate IP for known browsers
- Default value:
false
- Default value:
- ip
Enforced StringFor Known Browsers Variable - Variable name
- ips
Control Boolean - Enable IPS Control
- Default value:
false
- Default value:
- ips
Control StringVariable - Variable name
- location
Name String - Zscaler location name (optional)
- Default value:
Auto
- Default value:
- location
Name StringVariable - Variable name
- name String
- The name of the Feature
- ofw
Enabled Boolean - Firewall enabled
- Default value:
false
- Default value:
- ofw
Enabled StringVariable - Variable name
- primary
Data StringCenter - Custom Primary Datacenter
- Default value:
Auto
- Default value:
- primary
Data StringCenter Variable - Variable name
- refresh
Time Integer - Refresh time for re-validation of surrogacy in minutes
- At Least:
1 - Default value:
1
- At Least:
- refresh
Time StringUnit - Refresh Time unit
- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- refresh
Time StringUnit Variable - Variable name
- refresh
Time StringVariable - Variable name
- secondary
Data StringCenter - Custom Secondary Datacenter
- Default value:
Auto
- Default value:
- secondary
Data StringCenter Variable - Variable name
- src
Vpn Boolean - Share Source VPN
- Default value:
false
- Default value:
- sub
Locations List<SseZscaler Feature Sub Location> - surrogate
Ip Boolean - Enable Surrogate IP, Attribute conditional on
authRequiredequal totrue- Default value:
false
- Default value:
- surrogate
Ip StringVariable - Variable name, Attribute conditional on
authRequiredequal totrue - tracker
Source StringIp - Source IP address for Tracker
- tracker
Source StringIp Variable - Variable name
- trackers
List<Sse
Zscaler Feature Tracker> - Tracker configuration
- up
Bandwidth Double - , Attribute conditional on
enforceBandwidthControlequal totrue- Range:
0.1-99999
- Range:
- up
Bandwidth StringVariable - Variable name, Attribute conditional on
enforceBandwidthControlequal totrue - version Integer
- The version of the Feature
- xff
Forward BooleanEnabled - XFF forwarding enabled
- Default value:
false
- Default value:
- xff
Forward StringEnabled Variable - Variable name
- aup
Enabled boolean - Enable Acceptable User Policy
- Default value:
false
- Default value:
- aup
Enabled stringVariable - Variable name
- aup
Timeout number - Custom Acceptable User Policy frequency in days, Attribute conditional on
aupEnabledequal totrue- Range:
1-180 - Default value:
1
- Range:
- aup
Timeout stringVariable - Variable name, Attribute conditional on
aupEnabledequal totrue - auth
Required boolean - Enforce Authentication
- Default value:
false
- Default value:
- auth
Required stringVariable - Variable name
- block
Internet booleanUntil Accepted - For first-time Acceptable User Policy behavior, block Internet access, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- block
Internet stringUntil Accepted Variable - Variable name, Attribute conditional on
aupEnabledequal totrue - caution
Enabled boolean - Enable Caution
- Default value:
false
- Default value:
- caution
Enabled stringVariable - Variable name
- country boolean
- Default value:
false
- Default value:
- country
Variable string - Variable name
- description string
- The description of the Feature
- display
Time stringUnit - Display time unit, Attribute conditional on
surrogateIpequal totrue- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- display
Time stringUnit Variable - Variable name, Attribute conditional on
surrogateIpequal totrue - dn
Bandwidth number - , Attribute conditional on
enforceBandwidthControlequal totrue- Range:
0.1-99999
- Range:
- dn
Bandwidth stringVariable - Variable name, Attribute conditional on
enforceBandwidthControlequal totrue - enforce
Bandwidth booleanControl - Default value:
false
- Default value:
- enforce
Bandwidth stringControl Variable - Variable name
- feature
Profile stringId - Feature Profile ID
- force
Ssl booleanInspection - For first-time Acceptable User Policy behavior, force SSL inspection, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- force
Ssl stringInspection Variable - Variable name, Attribute conditional on
aupEnabledequal totrue - idle
Time number - Idle time to disassociation, Attribute conditional on
surrogateIpequal totrue- At Least:
1 - Default value:
1
- At Least:
- idle
Time stringVariable - Variable name, Attribute conditional on
surrogateIpequal totrue - interface
Pairs SseZscaler Feature Interface Pair[] - Interface Pair for active and backup
- interfaces
Sse
Zscaler Feature Interface[] - Interface name: IPsec when present
- ip
Enforced booleanFor Known Browsers - Enforce Surrogate IP for known browsers
- Default value:
false
- Default value:
- ip
Enforced stringFor Known Browsers Variable - Variable name
- ips
Control boolean - Enable IPS Control
- Default value:
false
- Default value:
- ips
Control stringVariable - Variable name
- location
Name string - Zscaler location name (optional)
- Default value:
Auto
- Default value:
- location
Name stringVariable - Variable name
- name string
- The name of the Feature
- ofw
Enabled boolean - Firewall enabled
- Default value:
false
- Default value:
- ofw
Enabled stringVariable - Variable name
- primary
Data stringCenter - Custom Primary Datacenter
- Default value:
Auto
- Default value:
- primary
Data stringCenter Variable - Variable name
- refresh
Time number - Refresh time for re-validation of surrogacy in minutes
- At Least:
1 - Default value:
1
- At Least:
- refresh
Time stringUnit - Refresh Time unit
- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- refresh
Time stringUnit Variable - Variable name
- refresh
Time stringVariable - Variable name
- secondary
Data stringCenter - Custom Secondary Datacenter
- Default value:
Auto
- Default value:
- secondary
Data stringCenter Variable - Variable name
- src
Vpn boolean - Share Source VPN
- Default value:
false
- Default value:
- sub
Locations SseZscaler Feature Sub Location[] - surrogate
Ip boolean - Enable Surrogate IP, Attribute conditional on
authRequiredequal totrue- Default value:
false
- Default value:
- surrogate
Ip stringVariable - Variable name, Attribute conditional on
authRequiredequal totrue - tracker
Source stringIp - Source IP address for Tracker
- tracker
Source stringIp Variable - Variable name
- trackers
Sse
Zscaler Feature Tracker[] - Tracker configuration
- up
Bandwidth number - , Attribute conditional on
enforceBandwidthControlequal totrue- Range:
0.1-99999
- Range:
- up
Bandwidth stringVariable - Variable name, Attribute conditional on
enforceBandwidthControlequal totrue - version number
- The version of the Feature
- xff
Forward booleanEnabled - XFF forwarding enabled
- Default value:
false
- Default value:
- xff
Forward stringEnabled Variable - Variable name
- aup_
enabled bool - Enable Acceptable User Policy
- Default value:
false
- Default value:
- aup_
enabled_ strvariable - Variable name
- aup_
timeout int - Custom Acceptable User Policy frequency in days, Attribute conditional on
aupEnabledequal totrue- Range:
1-180 - Default value:
1
- Range:
- aup_
timeout_ strvariable - Variable name, Attribute conditional on
aupEnabledequal totrue - auth_
required bool - Enforce Authentication
- Default value:
false
- Default value:
- auth_
required_ strvariable - Variable name
- block_
internet_ booluntil_ accepted - For first-time Acceptable User Policy behavior, block Internet access, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- block_
internet_ struntil_ accepted_ variable - Variable name, Attribute conditional on
aupEnabledequal totrue - caution_
enabled bool - Enable Caution
- Default value:
false
- Default value:
- caution_
enabled_ strvariable - Variable name
- country bool
- Default value:
false
- Default value:
- country_
variable str - Variable name
- description str
- The description of the Feature
- display_
time_ strunit - Display time unit, Attribute conditional on
surrogateIpequal totrue- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- display_
time_ strunit_ variable - Variable name, Attribute conditional on
surrogateIpequal totrue - dn_
bandwidth float - , Attribute conditional on
enforceBandwidthControlequal totrue- Range:
0.1-99999
- Range:
- dn_
bandwidth_ strvariable - Variable name, Attribute conditional on
enforceBandwidthControlequal totrue - enforce_
bandwidth_ boolcontrol - Default value:
false
- Default value:
- enforce_
bandwidth_ strcontrol_ variable - Variable name
- feature_
profile_ strid - Feature Profile ID
- force_
ssl_ boolinspection - For first-time Acceptable User Policy behavior, force SSL inspection, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- force_
ssl_ strinspection_ variable - Variable name, Attribute conditional on
aupEnabledequal totrue - idle_
time int - Idle time to disassociation, Attribute conditional on
surrogateIpequal totrue- At Least:
1 - Default value:
1
- At Least:
- idle_
time_ strvariable - Variable name, Attribute conditional on
surrogateIpequal totrue - interface_
pairs Sequence[SseZscaler Feature Interface Pair Args] - Interface Pair for active and backup
- interfaces
Sequence[Sse
Zscaler Feature Interface Args] - Interface name: IPsec when present
- ip_
enforced_ boolfor_ known_ browsers - Enforce Surrogate IP for known browsers
- Default value:
false
- Default value:
- ip_
enforced_ strfor_ known_ browsers_ variable - Variable name
- ips_
control bool - Enable IPS Control
- Default value:
false
- Default value:
- ips_
control_ strvariable - Variable name
- location_
name str - Zscaler location name (optional)
- Default value:
Auto
- Default value:
- location_
name_ strvariable - Variable name
- name str
- The name of the Feature
- ofw_
enabled bool - Firewall enabled
- Default value:
false
- Default value:
- ofw_
enabled_ strvariable - Variable name
- primary_
data_ strcenter - Custom Primary Datacenter
- Default value:
Auto
- Default value:
- primary_
data_ strcenter_ variable - Variable name
- refresh_
time int - Refresh time for re-validation of surrogacy in minutes
- At Least:
1 - Default value:
1
- At Least:
- refresh_
time_ strunit - Refresh Time unit
- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- refresh_
time_ strunit_ variable - Variable name
- refresh_
time_ strvariable - Variable name
- secondary_
data_ strcenter - Custom Secondary Datacenter
- Default value:
Auto
- Default value:
- secondary_
data_ strcenter_ variable - Variable name
- src_
vpn bool - Share Source VPN
- Default value:
false
- Default value:
- sub_
locations Sequence[SseZscaler Feature Sub Location Args] - surrogate_
ip bool - Enable Surrogate IP, Attribute conditional on
authRequiredequal totrue- Default value:
false
- Default value:
- surrogate_
ip_ strvariable - Variable name, Attribute conditional on
authRequiredequal totrue - tracker_
source_ strip - Source IP address for Tracker
- tracker_
source_ strip_ variable - Variable name
- trackers
Sequence[Sse
Zscaler Feature Tracker Args] - Tracker configuration
- up_
bandwidth float - , Attribute conditional on
enforceBandwidthControlequal totrue- Range:
0.1-99999
- Range:
- up_
bandwidth_ strvariable - Variable name, Attribute conditional on
enforceBandwidthControlequal totrue - version int
- The version of the Feature
- xff_
forward_ boolenabled - XFF forwarding enabled
- Default value:
false
- Default value:
- xff_
forward_ strenabled_ variable - Variable name
- aup
Enabled Boolean - Enable Acceptable User Policy
- Default value:
false
- Default value:
- aup
Enabled StringVariable - Variable name
- aup
Timeout Number - Custom Acceptable User Policy frequency in days, Attribute conditional on
aupEnabledequal totrue- Range:
1-180 - Default value:
1
- Range:
- aup
Timeout StringVariable - Variable name, Attribute conditional on
aupEnabledequal totrue - auth
Required Boolean - Enforce Authentication
- Default value:
false
- Default value:
- auth
Required StringVariable - Variable name
- block
Internet BooleanUntil Accepted - For first-time Acceptable User Policy behavior, block Internet access, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- block
Internet StringUntil Accepted Variable - Variable name, Attribute conditional on
aupEnabledequal totrue - caution
Enabled Boolean - Enable Caution
- Default value:
false
- Default value:
- caution
Enabled StringVariable - Variable name
- country Boolean
- Default value:
false
- Default value:
- country
Variable String - Variable name
- description String
- The description of the Feature
- display
Time StringUnit - Display time unit, Attribute conditional on
surrogateIpequal totrue- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- display
Time StringUnit Variable - Variable name, Attribute conditional on
surrogateIpequal totrue - dn
Bandwidth Number - , Attribute conditional on
enforceBandwidthControlequal totrue- Range:
0.1-99999
- Range:
- dn
Bandwidth StringVariable - Variable name, Attribute conditional on
enforceBandwidthControlequal totrue - enforce
Bandwidth BooleanControl - Default value:
false
- Default value:
- enforce
Bandwidth StringControl Variable - Variable name
- feature
Profile StringId - Feature Profile ID
- force
Ssl BooleanInspection - For first-time Acceptable User Policy behavior, force SSL inspection, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- force
Ssl StringInspection Variable - Variable name, Attribute conditional on
aupEnabledequal totrue - idle
Time Number - Idle time to disassociation, Attribute conditional on
surrogateIpequal totrue- At Least:
1 - Default value:
1
- At Least:
- idle
Time StringVariable - Variable name, Attribute conditional on
surrogateIpequal totrue - interface
Pairs List<Property Map> - Interface Pair for active and backup
- interfaces List<Property Map>
- Interface name: IPsec when present
- ip
Enforced BooleanFor Known Browsers - Enforce Surrogate IP for known browsers
- Default value:
false
- Default value:
- ip
Enforced StringFor Known Browsers Variable - Variable name
- ips
Control Boolean - Enable IPS Control
- Default value:
false
- Default value:
- ips
Control StringVariable - Variable name
- location
Name String - Zscaler location name (optional)
- Default value:
Auto
- Default value:
- location
Name StringVariable - Variable name
- name String
- The name of the Feature
- ofw
Enabled Boolean - Firewall enabled
- Default value:
false
- Default value:
- ofw
Enabled StringVariable - Variable name
- primary
Data StringCenter - Custom Primary Datacenter
- Default value:
Auto
- Default value:
- primary
Data StringCenter Variable - Variable name
- refresh
Time Number - Refresh time for re-validation of surrogacy in minutes
- At Least:
1 - Default value:
1
- At Least:
- refresh
Time StringUnit - Refresh Time unit
- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- refresh
Time StringUnit Variable - Variable name
- refresh
Time StringVariable - Variable name
- secondary
Data StringCenter - Custom Secondary Datacenter
- Default value:
Auto
- Default value:
- secondary
Data StringCenter Variable - Variable name
- src
Vpn Boolean - Share Source VPN
- Default value:
false
- Default value:
- sub
Locations List<Property Map> - surrogate
Ip Boolean - Enable Surrogate IP, Attribute conditional on
authRequiredequal totrue- Default value:
false
- Default value:
- surrogate
Ip StringVariable - Variable name, Attribute conditional on
authRequiredequal totrue - tracker
Source StringIp - Source IP address for Tracker
- tracker
Source StringIp Variable - Variable name
- trackers List<Property Map>
- Tracker configuration
- up
Bandwidth Number - , Attribute conditional on
enforceBandwidthControlequal totrue- Range:
0.1-99999
- Range:
- up
Bandwidth StringVariable - Variable name, Attribute conditional on
enforceBandwidthControlequal totrue - version Number
- The version of the Feature
- xff
Forward BooleanEnabled - XFF forwarding enabled
- Default value:
false
- Default value:
- xff
Forward StringEnabled Variable - Variable name
Supporting Types
SseZscalerFeatureInterface, SseZscalerFeatureInterfaceArgs
- Auto bool
- Auto Tunnel Mode
- Dpd
Interval int - IKE keepalive interval (seconds)
- Range:
10-3600 - Default value:
10
- Range:
- Dpd
Interval stringVariable - Variable name
- Dpd
Retries int - IKE keepalive retries
- Range:
2-60 - Default value:
3
- Range:
- Dpd
Retries stringVariable - Variable name
- Ike
Ciphersuite string - IKE identity the IKE preshared secret belongs to
- Choices:
aes256-cbc-sha1,aes256-cbc-sha2,aes128-cbc-sha1,aes128-cbc-sha2 - Default value:
aes256-cbc-sha1
- Choices:
- Ike
Ciphersuite stringVariable - Variable name
- Ike
Group string - IKE Diffie Hellman Groups
- Choices:
2,5,14,15,16,19,20,21 - Default value:
16
- Choices:
- Ike
Group stringVariable - Variable name
- Ike
Local stringId - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- Ike
Local stringId Variable - Variable name
- Ike
Rekey intInterval - IKE rekey interval <300..1209600> seconds
- Range:
300-86400 - Default value:
14400
- Range:
- Ike
Rekey stringInterval Variable - Variable name
- Ike
Remote stringId - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- Ike
Remote stringId Variable - Variable name
- Ike
Version int - IKE Version <1..2>
- Range:
1-2 - Default value:
2
- Range:
- Ike
Version stringVariable - Variable name
- Interface
Description string - Interface description
- Interface
Description stringVariable - Variable name
- Interface
Name string - Interface name: IPsec when present
- Ipsec
Ciphersuite string - IPsec(ESP) encryption and integrity protocol
- Choices:
aes256-cbc-sha1,aes256-cbc-sha384,aes256-cbc-sha256,aes256-cbc-sha512,aes256-gcm - Default value:
aes256-cbc-sha512
- Choices:
- Ipsec
Ciphersuite stringVariable - Variable name
- Ipsec
Rekey intInterval - IPsec rekey interval <300..1209600> seconds
- Range:
300-1209600 - Default value:
3600
- Range:
- Ipsec
Rekey stringInterval Variable - Variable name
- Ipsec
Replay intWindow - Replay window size 32..8192 (must be a power of 2)
- Default value:
512
- Default value:
- Ipsec
Replay stringWindow Variable - Variable name
- Ipv4Address string
- Assign IPv4 address
- Ipv4Address
Variable string - Variable name
- Mtu int
- Interface MTU <576..2000>, in bytes
- Range:
576-2000 - Default value:
1400
- Range:
- Mtu
Variable string - Variable name
- Perfect
Forward stringSecrecy - IPsec perfect forward secrecy settings
- Choices:
group-2,group-5,group-14,group-15,group-16,group-19,group-20,group-21,none - Default value:
none
- Choices:
- Perfect
Forward stringSecrecy Variable - Variable name
- bool
- Use preshared key to authenticate IKE peer
- string
- Use preshared key to authenticate IKE peer
- string
- Variable name
- Shutdown bool
- Administrative state
- Default value:
false
- Default value:
- Tcp
Mss intAdjust - TCP MSS on SYN packets, in bytes
- Range:
500-1460
- Range:
- Tcp
Mss stringAdjust Variable - Variable name
- Track
Enable bool - Enable/disable Zscaler SSE tracking
- Default value:
true
- Default value:
- Tracker string
- Enable tracker for this interface
- Default value:
DefaultTracker
- Default value:
- Tunnel
Dc stringPreference - Zscaler SSE Tunnel Data Center
- Choices:
primary-dc,secondary-dc
- Choices:
- Tunnel
Destination string - Tunnel destination IP address
- Tunnel
Destination stringVariable - Variable name
- Tunnel
Public stringIp - Public IP required to setup GRE tunnel to Zscaler
- Default value:
Auto
- Default value:
- Tunnel
Public stringIp Variable - Variable name
- Tunnel
Route stringVia - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- Tunnel
Route stringVia Variable - Variable name
- Tunnel
Set string - Zscaler SSE Tunnel Provider
- Choices:
secure-internet-gateway-umbrella,secure-internet-gateway-zscaler,secure-internet-gateway-other
- Choices:
- Tunnel
Source string - Tunnel source IP Address
- Tunnel
Source stringInterface - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- Tunnel
Source stringInterface Variable - Variable name
- Tunnel
Source stringVariable - Variable name
- Unnumbered bool
- Unnumbered interface
- Auto bool
- Auto Tunnel Mode
- Dpd
Interval int - IKE keepalive interval (seconds)
- Range:
10-3600 - Default value:
10
- Range:
- Dpd
Interval stringVariable - Variable name
- Dpd
Retries int - IKE keepalive retries
- Range:
2-60 - Default value:
3
- Range:
- Dpd
Retries stringVariable - Variable name
- Ike
Ciphersuite string - IKE identity the IKE preshared secret belongs to
- Choices:
aes256-cbc-sha1,aes256-cbc-sha2,aes128-cbc-sha1,aes128-cbc-sha2 - Default value:
aes256-cbc-sha1
- Choices:
- Ike
Ciphersuite stringVariable - Variable name
- Ike
Group string - IKE Diffie Hellman Groups
- Choices:
2,5,14,15,16,19,20,21 - Default value:
16
- Choices:
- Ike
Group stringVariable - Variable name
- Ike
Local stringId - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- Ike
Local stringId Variable - Variable name
- Ike
Rekey intInterval - IKE rekey interval <300..1209600> seconds
- Range:
300-86400 - Default value:
14400
- Range:
- Ike
Rekey stringInterval Variable - Variable name
- Ike
Remote stringId - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- Ike
Remote stringId Variable - Variable name
- Ike
Version int - IKE Version <1..2>
- Range:
1-2 - Default value:
2
- Range:
- Ike
Version stringVariable - Variable name
- Interface
Description string - Interface description
- Interface
Description stringVariable - Variable name
- Interface
Name string - Interface name: IPsec when present
- Ipsec
Ciphersuite string - IPsec(ESP) encryption and integrity protocol
- Choices:
aes256-cbc-sha1,aes256-cbc-sha384,aes256-cbc-sha256,aes256-cbc-sha512,aes256-gcm - Default value:
aes256-cbc-sha512
- Choices:
- Ipsec
Ciphersuite stringVariable - Variable name
- Ipsec
Rekey intInterval - IPsec rekey interval <300..1209600> seconds
- Range:
300-1209600 - Default value:
3600
- Range:
- Ipsec
Rekey stringInterval Variable - Variable name
- Ipsec
Replay intWindow - Replay window size 32..8192 (must be a power of 2)
- Default value:
512
- Default value:
- Ipsec
Replay stringWindow Variable - Variable name
- Ipv4Address string
- Assign IPv4 address
- Ipv4Address
Variable string - Variable name
- Mtu int
- Interface MTU <576..2000>, in bytes
- Range:
576-2000 - Default value:
1400
- Range:
- Mtu
Variable string - Variable name
- Perfect
Forward stringSecrecy - IPsec perfect forward secrecy settings
- Choices:
group-2,group-5,group-14,group-15,group-16,group-19,group-20,group-21,none - Default value:
none
- Choices:
- Perfect
Forward stringSecrecy Variable - Variable name
- bool
- Use preshared key to authenticate IKE peer
- string
- Use preshared key to authenticate IKE peer
- string
- Variable name
- Shutdown bool
- Administrative state
- Default value:
false
- Default value:
- Tcp
Mss intAdjust - TCP MSS on SYN packets, in bytes
- Range:
500-1460
- Range:
- Tcp
Mss stringAdjust Variable - Variable name
- Track
Enable bool - Enable/disable Zscaler SSE tracking
- Default value:
true
- Default value:
- Tracker string
- Enable tracker for this interface
- Default value:
DefaultTracker
- Default value:
- Tunnel
Dc stringPreference - Zscaler SSE Tunnel Data Center
- Choices:
primary-dc,secondary-dc
- Choices:
- Tunnel
Destination string - Tunnel destination IP address
- Tunnel
Destination stringVariable - Variable name
- Tunnel
Public stringIp - Public IP required to setup GRE tunnel to Zscaler
- Default value:
Auto
- Default value:
- Tunnel
Public stringIp Variable - Variable name
- Tunnel
Route stringVia - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- Tunnel
Route stringVia Variable - Variable name
- Tunnel
Set string - Zscaler SSE Tunnel Provider
- Choices:
secure-internet-gateway-umbrella,secure-internet-gateway-zscaler,secure-internet-gateway-other
- Choices:
- Tunnel
Source string - Tunnel source IP Address
- Tunnel
Source stringInterface - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- Tunnel
Source stringInterface Variable - Variable name
- Tunnel
Source stringVariable - Variable name
- Unnumbered bool
- Unnumbered interface
- auto bool
- Auto Tunnel Mode
- dpd_
interval number - IKE keepalive interval (seconds)
- Range:
10-3600 - Default value:
10
- Range:
- dpd_
interval_ stringvariable - Variable name
- dpd_
retries number - IKE keepalive retries
- Range:
2-60 - Default value:
3
- Range:
- dpd_
retries_ stringvariable - Variable name
- ike_
ciphersuite string - IKE identity the IKE preshared secret belongs to
- Choices:
aes256-cbc-sha1,aes256-cbc-sha2,aes128-cbc-sha1,aes128-cbc-sha2 - Default value:
aes256-cbc-sha1
- Choices:
- ike_
ciphersuite_ stringvariable - Variable name
- ike_
group string - IKE Diffie Hellman Groups
- Choices:
2,5,14,15,16,19,20,21 - Default value:
16
- Choices:
- ike_
group_ stringvariable - Variable name
- ike_
local_ stringid - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- ike_
local_ stringid_ variable - Variable name
- ike_
rekey_ numberinterval - IKE rekey interval <300..1209600> seconds
- Range:
300-86400 - Default value:
14400
- Range:
- ike_
rekey_ stringinterval_ variable - Variable name
- ike_
remote_ stringid - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- ike_
remote_ stringid_ variable - Variable name
- ike_
version number - IKE Version <1..2>
- Range:
1-2 - Default value:
2
- Range:
- ike_
version_ stringvariable - Variable name
- interface_
description string - Interface description
- interface_
description_ stringvariable - Variable name
- interface_
name string - Interface name: IPsec when present
- ipsec_
ciphersuite string - IPsec(ESP) encryption and integrity protocol
- Choices:
aes256-cbc-sha1,aes256-cbc-sha384,aes256-cbc-sha256,aes256-cbc-sha512,aes256-gcm - Default value:
aes256-cbc-sha512
- Choices:
- ipsec_
ciphersuite_ stringvariable - Variable name
- ipsec_
rekey_ numberinterval - IPsec rekey interval <300..1209600> seconds
- Range:
300-1209600 - Default value:
3600
- Range:
- ipsec_
rekey_ stringinterval_ variable - Variable name
- ipsec_
replay_ numberwindow - Replay window size 32..8192 (must be a power of 2)
- Default value:
512
- Default value:
- ipsec_
replay_ stringwindow_ variable - Variable name
- ipv4_
address string - Assign IPv4 address
- ipv4_
address_ stringvariable - Variable name
- mtu number
- Interface MTU <576..2000>, in bytes
- Range:
576-2000 - Default value:
1400
- Range:
- mtu_
variable string - Variable name
- perfect_
forward_ stringsecrecy - IPsec perfect forward secrecy settings
- Choices:
group-2,group-5,group-14,group-15,group-16,group-19,group-20,group-21,none - Default value:
none
- Choices:
- perfect_
forward_ stringsecrecy_ variable - Variable name
- bool
- Use preshared key to authenticate IKE peer
- string
- Use preshared key to authenticate IKE peer
- string
- Variable name
- shutdown bool
- Administrative state
- Default value:
false
- Default value:
- tcp_
mss_ numberadjust - TCP MSS on SYN packets, in bytes
- Range:
500-1460
- Range:
- tcp_
mss_ stringadjust_ variable - Variable name
- track_
enable bool - Enable/disable Zscaler SSE tracking
- Default value:
true
- Default value:
- tracker string
- Enable tracker for this interface
- Default value:
DefaultTracker
- Default value:
- tunnel_
dc_ stringpreference - Zscaler SSE Tunnel Data Center
- Choices:
primary-dc,secondary-dc
- Choices:
- tunnel_
destination string - Tunnel destination IP address
- tunnel_
destination_ stringvariable - Variable name
- tunnel_
public_ stringip - Public IP required to setup GRE tunnel to Zscaler
- Default value:
Auto
- Default value:
- tunnel_
public_ stringip_ variable - Variable name
- tunnel_
route_ stringvia - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- tunnel_
route_ stringvia_ variable - Variable name
- tunnel_
set string - Zscaler SSE Tunnel Provider
- Choices:
secure-internet-gateway-umbrella,secure-internet-gateway-zscaler,secure-internet-gateway-other
- Choices:
- tunnel_
source string - Tunnel source IP Address
- tunnel_
source_ stringinterface - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- tunnel_
source_ stringinterface_ variable - Variable name
- tunnel_
source_ stringvariable - Variable name
- unnumbered bool
- Unnumbered interface
- auto Boolean
- Auto Tunnel Mode
- dpd
Interval Integer - IKE keepalive interval (seconds)
- Range:
10-3600 - Default value:
10
- Range:
- dpd
Interval StringVariable - Variable name
- dpd
Retries Integer - IKE keepalive retries
- Range:
2-60 - Default value:
3
- Range:
- dpd
Retries StringVariable - Variable name
- ike
Ciphersuite String - IKE identity the IKE preshared secret belongs to
- Choices:
aes256-cbc-sha1,aes256-cbc-sha2,aes128-cbc-sha1,aes128-cbc-sha2 - Default value:
aes256-cbc-sha1
- Choices:
- ike
Ciphersuite StringVariable - Variable name
- ike
Group String - IKE Diffie Hellman Groups
- Choices:
2,5,14,15,16,19,20,21 - Default value:
16
- Choices:
- ike
Group StringVariable - Variable name
- ike
Local StringId - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- ike
Local StringId Variable - Variable name
- ike
Rekey IntegerInterval - IKE rekey interval <300..1209600> seconds
- Range:
300-86400 - Default value:
14400
- Range:
- ike
Rekey StringInterval Variable - Variable name
- ike
Remote StringId - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- ike
Remote StringId Variable - Variable name
- ike
Version Integer - IKE Version <1..2>
- Range:
1-2 - Default value:
2
- Range:
- ike
Version StringVariable - Variable name
- interface
Description String - Interface description
- interface
Description StringVariable - Variable name
- interface
Name String - Interface name: IPsec when present
- ipsec
Ciphersuite String - IPsec(ESP) encryption and integrity protocol
- Choices:
aes256-cbc-sha1,aes256-cbc-sha384,aes256-cbc-sha256,aes256-cbc-sha512,aes256-gcm - Default value:
aes256-cbc-sha512
- Choices:
- ipsec
Ciphersuite StringVariable - Variable name
- ipsec
Rekey IntegerInterval - IPsec rekey interval <300..1209600> seconds
- Range:
300-1209600 - Default value:
3600
- Range:
- ipsec
Rekey StringInterval Variable - Variable name
- ipsec
Replay IntegerWindow - Replay window size 32..8192 (must be a power of 2)
- Default value:
512
- Default value:
- ipsec
Replay StringWindow Variable - Variable name
- ipv4Address String
- Assign IPv4 address
- ipv4Address
Variable String - Variable name
- mtu Integer
- Interface MTU <576..2000>, in bytes
- Range:
576-2000 - Default value:
1400
- Range:
- mtu
Variable String - Variable name
- perfect
Forward StringSecrecy - IPsec perfect forward secrecy settings
- Choices:
group-2,group-5,group-14,group-15,group-16,group-19,group-20,group-21,none - Default value:
none
- Choices:
- perfect
Forward StringSecrecy Variable - Variable name
- Boolean
- Use preshared key to authenticate IKE peer
- String
- Use preshared key to authenticate IKE peer
- String
- Variable name
- shutdown Boolean
- Administrative state
- Default value:
false
- Default value:
- tcp
Mss IntegerAdjust - TCP MSS on SYN packets, in bytes
- Range:
500-1460
- Range:
- tcp
Mss StringAdjust Variable - Variable name
- track
Enable Boolean - Enable/disable Zscaler SSE tracking
- Default value:
true
- Default value:
- tracker String
- Enable tracker for this interface
- Default value:
DefaultTracker
- Default value:
- tunnel
Dc StringPreference - Zscaler SSE Tunnel Data Center
- Choices:
primary-dc,secondary-dc
- Choices:
- tunnel
Destination String - Tunnel destination IP address
- tunnel
Destination StringVariable - Variable name
- tunnel
Public StringIp - Public IP required to setup GRE tunnel to Zscaler
- Default value:
Auto
- Default value:
- tunnel
Public StringIp Variable - Variable name
- tunnel
Route StringVia - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- tunnel
Route StringVia Variable - Variable name
- tunnel
Set String - Zscaler SSE Tunnel Provider
- Choices:
secure-internet-gateway-umbrella,secure-internet-gateway-zscaler,secure-internet-gateway-other
- Choices:
- tunnel
Source String - Tunnel source IP Address
- tunnel
Source StringInterface - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- tunnel
Source StringInterface Variable - Variable name
- tunnel
Source StringVariable - Variable name
- unnumbered Boolean
- Unnumbered interface
- auto boolean
- Auto Tunnel Mode
- dpd
Interval number - IKE keepalive interval (seconds)
- Range:
10-3600 - Default value:
10
- Range:
- dpd
Interval stringVariable - Variable name
- dpd
Retries number - IKE keepalive retries
- Range:
2-60 - Default value:
3
- Range:
- dpd
Retries stringVariable - Variable name
- ike
Ciphersuite string - IKE identity the IKE preshared secret belongs to
- Choices:
aes256-cbc-sha1,aes256-cbc-sha2,aes128-cbc-sha1,aes128-cbc-sha2 - Default value:
aes256-cbc-sha1
- Choices:
- ike
Ciphersuite stringVariable - Variable name
- ike
Group string - IKE Diffie Hellman Groups
- Choices:
2,5,14,15,16,19,20,21 - Default value:
16
- Choices:
- ike
Group stringVariable - Variable name
- ike
Local stringId - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- ike
Local stringId Variable - Variable name
- ike
Rekey numberInterval - IKE rekey interval <300..1209600> seconds
- Range:
300-86400 - Default value:
14400
- Range:
- ike
Rekey stringInterval Variable - Variable name
- ike
Remote stringId - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- ike
Remote stringId Variable - Variable name
- ike
Version number - IKE Version <1..2>
- Range:
1-2 - Default value:
2
- Range:
- ike
Version stringVariable - Variable name
- interface
Description string - Interface description
- interface
Description stringVariable - Variable name
- interface
Name string - Interface name: IPsec when present
- ipsec
Ciphersuite string - IPsec(ESP) encryption and integrity protocol
- Choices:
aes256-cbc-sha1,aes256-cbc-sha384,aes256-cbc-sha256,aes256-cbc-sha512,aes256-gcm - Default value:
aes256-cbc-sha512
- Choices:
- ipsec
Ciphersuite stringVariable - Variable name
- ipsec
Rekey numberInterval - IPsec rekey interval <300..1209600> seconds
- Range:
300-1209600 - Default value:
3600
- Range:
- ipsec
Rekey stringInterval Variable - Variable name
- ipsec
Replay numberWindow - Replay window size 32..8192 (must be a power of 2)
- Default value:
512
- Default value:
- ipsec
Replay stringWindow Variable - Variable name
- ipv4Address string
- Assign IPv4 address
- ipv4Address
Variable string - Variable name
- mtu number
- Interface MTU <576..2000>, in bytes
- Range:
576-2000 - Default value:
1400
- Range:
- mtu
Variable string - Variable name
- perfect
Forward stringSecrecy - IPsec perfect forward secrecy settings
- Choices:
group-2,group-5,group-14,group-15,group-16,group-19,group-20,group-21,none - Default value:
none
- Choices:
- perfect
Forward stringSecrecy Variable - Variable name
- boolean
- Use preshared key to authenticate IKE peer
- string
- Use preshared key to authenticate IKE peer
- string
- Variable name
- shutdown boolean
- Administrative state
- Default value:
false
- Default value:
- tcp
Mss numberAdjust - TCP MSS on SYN packets, in bytes
- Range:
500-1460
- Range:
- tcp
Mss stringAdjust Variable - Variable name
- track
Enable boolean - Enable/disable Zscaler SSE tracking
- Default value:
true
- Default value:
- tracker string
- Enable tracker for this interface
- Default value:
DefaultTracker
- Default value:
- tunnel
Dc stringPreference - Zscaler SSE Tunnel Data Center
- Choices:
primary-dc,secondary-dc
- Choices:
- tunnel
Destination string - Tunnel destination IP address
- tunnel
Destination stringVariable - Variable name
- tunnel
Public stringIp - Public IP required to setup GRE tunnel to Zscaler
- Default value:
Auto
- Default value:
- tunnel
Public stringIp Variable - Variable name
- tunnel
Route stringVia - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- tunnel
Route stringVia Variable - Variable name
- tunnel
Set string - Zscaler SSE Tunnel Provider
- Choices:
secure-internet-gateway-umbrella,secure-internet-gateway-zscaler,secure-internet-gateway-other
- Choices:
- tunnel
Source string - Tunnel source IP Address
- tunnel
Source stringInterface - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- tunnel
Source stringInterface Variable - Variable name
- tunnel
Source stringVariable - Variable name
- unnumbered boolean
- Unnumbered interface
- auto bool
- Auto Tunnel Mode
- dpd_
interval int - IKE keepalive interval (seconds)
- Range:
10-3600 - Default value:
10
- Range:
- dpd_
interval_ strvariable - Variable name
- dpd_
retries int - IKE keepalive retries
- Range:
2-60 - Default value:
3
- Range:
- dpd_
retries_ strvariable - Variable name
- ike_
ciphersuite str - IKE identity the IKE preshared secret belongs to
- Choices:
aes256-cbc-sha1,aes256-cbc-sha2,aes128-cbc-sha1,aes128-cbc-sha2 - Default value:
aes256-cbc-sha1
- Choices:
- ike_
ciphersuite_ strvariable - Variable name
- ike_
group str - IKE Diffie Hellman Groups
- Choices:
2,5,14,15,16,19,20,21 - Default value:
16
- Choices:
- ike_
group_ strvariable - Variable name
- ike_
local_ strid - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- ike_
local_ strid_ variable - Variable name
- ike_
rekey_ intinterval - IKE rekey interval <300..1209600> seconds
- Range:
300-86400 - Default value:
14400
- Range:
- ike_
rekey_ strinterval_ variable - Variable name
- ike_
remote_ strid - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- ike_
remote_ strid_ variable - Variable name
- ike_
version int - IKE Version <1..2>
- Range:
1-2 - Default value:
2
- Range:
- ike_
version_ strvariable - Variable name
- interface_
description str - Interface description
- interface_
description_ strvariable - Variable name
- interface_
name str - Interface name: IPsec when present
- ipsec_
ciphersuite str - IPsec(ESP) encryption and integrity protocol
- Choices:
aes256-cbc-sha1,aes256-cbc-sha384,aes256-cbc-sha256,aes256-cbc-sha512,aes256-gcm - Default value:
aes256-cbc-sha512
- Choices:
- ipsec_
ciphersuite_ strvariable - Variable name
- ipsec_
rekey_ intinterval - IPsec rekey interval <300..1209600> seconds
- Range:
300-1209600 - Default value:
3600
- Range:
- ipsec_
rekey_ strinterval_ variable - Variable name
- ipsec_
replay_ intwindow - Replay window size 32..8192 (must be a power of 2)
- Default value:
512
- Default value:
- ipsec_
replay_ strwindow_ variable - Variable name
- ipv4_
address str - Assign IPv4 address
- ipv4_
address_ strvariable - Variable name
- mtu int
- Interface MTU <576..2000>, in bytes
- Range:
576-2000 - Default value:
1400
- Range:
- mtu_
variable str - Variable name
- perfect_
forward_ strsecrecy - IPsec perfect forward secrecy settings
- Choices:
group-2,group-5,group-14,group-15,group-16,group-19,group-20,group-21,none - Default value:
none
- Choices:
- perfect_
forward_ strsecrecy_ variable - Variable name
- bool
- Use preshared key to authenticate IKE peer
- str
- Use preshared key to authenticate IKE peer
- str
- Variable name
- shutdown bool
- Administrative state
- Default value:
false
- Default value:
- tcp_
mss_ intadjust - TCP MSS on SYN packets, in bytes
- Range:
500-1460
- Range:
- tcp_
mss_ stradjust_ variable - Variable name
- track_
enable bool - Enable/disable Zscaler SSE tracking
- Default value:
true
- Default value:
- tracker str
- Enable tracker for this interface
- Default value:
DefaultTracker
- Default value:
- tunnel_
dc_ strpreference - Zscaler SSE Tunnel Data Center
- Choices:
primary-dc,secondary-dc
- Choices:
- tunnel_
destination str - Tunnel destination IP address
- tunnel_
destination_ strvariable - Variable name
- tunnel_
public_ strip - Public IP required to setup GRE tunnel to Zscaler
- Default value:
Auto
- Default value:
- tunnel_
public_ strip_ variable - Variable name
- tunnel_
route_ strvia - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- tunnel_
route_ strvia_ variable - Variable name
- tunnel_
set str - Zscaler SSE Tunnel Provider
- Choices:
secure-internet-gateway-umbrella,secure-internet-gateway-zscaler,secure-internet-gateway-other
- Choices:
- tunnel_
source str - Tunnel source IP Address
- tunnel_
source_ strinterface - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- tunnel_
source_ strinterface_ variable - Variable name
- tunnel_
source_ strvariable - Variable name
- unnumbered bool
- Unnumbered interface
- auto Boolean
- Auto Tunnel Mode
- dpd
Interval Number - IKE keepalive interval (seconds)
- Range:
10-3600 - Default value:
10
- Range:
- dpd
Interval StringVariable - Variable name
- dpd
Retries Number - IKE keepalive retries
- Range:
2-60 - Default value:
3
- Range:
- dpd
Retries StringVariable - Variable name
- ike
Ciphersuite String - IKE identity the IKE preshared secret belongs to
- Choices:
aes256-cbc-sha1,aes256-cbc-sha2,aes128-cbc-sha1,aes128-cbc-sha2 - Default value:
aes256-cbc-sha1
- Choices:
- ike
Ciphersuite StringVariable - Variable name
- ike
Group String - IKE Diffie Hellman Groups
- Choices:
2,5,14,15,16,19,20,21 - Default value:
16
- Choices:
- ike
Group StringVariable - Variable name
- ike
Local StringId - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- ike
Local StringId Variable - Variable name
- ike
Rekey NumberInterval - IKE rekey interval <300..1209600> seconds
- Range:
300-86400 - Default value:
14400
- Range:
- ike
Rekey StringInterval Variable - Variable name
- ike
Remote StringId - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- ike
Remote StringId Variable - Variable name
- ike
Version Number - IKE Version <1..2>
- Range:
1-2 - Default value:
2
- Range:
- ike
Version StringVariable - Variable name
- interface
Description String - Interface description
- interface
Description StringVariable - Variable name
- interface
Name String - Interface name: IPsec when present
- ipsec
Ciphersuite String - IPsec(ESP) encryption and integrity protocol
- Choices:
aes256-cbc-sha1,aes256-cbc-sha384,aes256-cbc-sha256,aes256-cbc-sha512,aes256-gcm - Default value:
aes256-cbc-sha512
- Choices:
- ipsec
Ciphersuite StringVariable - Variable name
- ipsec
Rekey NumberInterval - IPsec rekey interval <300..1209600> seconds
- Range:
300-1209600 - Default value:
3600
- Range:
- ipsec
Rekey StringInterval Variable - Variable name
- ipsec
Replay NumberWindow - Replay window size 32..8192 (must be a power of 2)
- Default value:
512
- Default value:
- ipsec
Replay StringWindow Variable - Variable name
- ipv4Address String
- Assign IPv4 address
- ipv4Address
Variable String - Variable name
- mtu Number
- Interface MTU <576..2000>, in bytes
- Range:
576-2000 - Default value:
1400
- Range:
- mtu
Variable String - Variable name
- perfect
Forward StringSecrecy - IPsec perfect forward secrecy settings
- Choices:
group-2,group-5,group-14,group-15,group-16,group-19,group-20,group-21,none - Default value:
none
- Choices:
- perfect
Forward StringSecrecy Variable - Variable name
- Boolean
- Use preshared key to authenticate IKE peer
- String
- Use preshared key to authenticate IKE peer
- String
- Variable name
- shutdown Boolean
- Administrative state
- Default value:
false
- Default value:
- tcp
Mss NumberAdjust - TCP MSS on SYN packets, in bytes
- Range:
500-1460
- Range:
- tcp
Mss StringAdjust Variable - Variable name
- track
Enable Boolean - Enable/disable Zscaler SSE tracking
- Default value:
true
- Default value:
- tracker String
- Enable tracker for this interface
- Default value:
DefaultTracker
- Default value:
- tunnel
Dc StringPreference - Zscaler SSE Tunnel Data Center
- Choices:
primary-dc,secondary-dc
- Choices:
- tunnel
Destination String - Tunnel destination IP address
- tunnel
Destination StringVariable - Variable name
- tunnel
Public StringIp - Public IP required to setup GRE tunnel to Zscaler
- Default value:
Auto
- Default value:
- tunnel
Public StringIp Variable - Variable name
- tunnel
Route StringVia - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- tunnel
Route StringVia Variable - Variable name
- tunnel
Set String - Zscaler SSE Tunnel Provider
- Choices:
secure-internet-gateway-umbrella,secure-internet-gateway-zscaler,secure-internet-gateway-other
- Choices:
- tunnel
Source String - Tunnel source IP Address
- tunnel
Source StringInterface - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- tunnel
Source StringInterface Variable - Variable name
- tunnel
Source StringVariable - Variable name
- unnumbered Boolean
- Unnumbered interface
SseZscalerFeatureInterfacePair, SseZscalerFeatureInterfacePairArgs
- Active
Interface string - Active Tunnel Interface for Zscaler SSE
- Active
Interface intWeight - Active Tunnel Interface Weight
- Range:
1-255
- Range:
- Backup
Interface string - Backup Tunnel Interface for Zscaler SSE
- Backup
Interface intWeight - Backup Tunnel Interface Weight
- Range:
1-255
- Range:
- Active
Interface string - Active Tunnel Interface for Zscaler SSE
- Active
Interface intWeight - Active Tunnel Interface Weight
- Range:
1-255
- Range:
- Backup
Interface string - Backup Tunnel Interface for Zscaler SSE
- Backup
Interface intWeight - Backup Tunnel Interface Weight
- Range:
1-255
- Range:
- active_
interface string - Active Tunnel Interface for Zscaler SSE
- active_
interface_ numberweight - Active Tunnel Interface Weight
- Range:
1-255
- Range:
- backup_
interface string - Backup Tunnel Interface for Zscaler SSE
- backup_
interface_ numberweight - Backup Tunnel Interface Weight
- Range:
1-255
- Range:
- active
Interface String - Active Tunnel Interface for Zscaler SSE
- active
Interface IntegerWeight - Active Tunnel Interface Weight
- Range:
1-255
- Range:
- backup
Interface String - Backup Tunnel Interface for Zscaler SSE
- backup
Interface IntegerWeight - Backup Tunnel Interface Weight
- Range:
1-255
- Range:
- active
Interface string - Active Tunnel Interface for Zscaler SSE
- active
Interface numberWeight - Active Tunnel Interface Weight
- Range:
1-255
- Range:
- backup
Interface string - Backup Tunnel Interface for Zscaler SSE
- backup
Interface numberWeight - Backup Tunnel Interface Weight
- Range:
1-255
- Range:
- active_
interface str - Active Tunnel Interface for Zscaler SSE
- active_
interface_ intweight - Active Tunnel Interface Weight
- Range:
1-255
- Range:
- backup_
interface str - Backup Tunnel Interface for Zscaler SSE
- backup_
interface_ intweight - Backup Tunnel Interface Weight
- Range:
1-255
- Range:
- active
Interface String - Active Tunnel Interface for Zscaler SSE
- active
Interface NumberWeight - Active Tunnel Interface Weight
- Range:
1-255
- Range:
- backup
Interface String - Backup Tunnel Interface for Zscaler SSE
- backup
Interface NumberWeight - Backup Tunnel Interface Weight
- Range:
1-255
- Range:
SseZscalerFeatureSubLocation, SseZscalerFeatureSubLocationArgs
- Aup
Enabled bool - Displays an Acceptable Use Policy for unauthenticated traffic and require users to accept it
- Default value:
false
- Default value:
- Aup
Enabled stringVariable - Variable name
- Aup
Timeout int - How frequently in days the Acceptable Use Policy is displayed to users, Attribute conditional on
aupEnabledequal totrue- Range:
1-180 - Default value:
1
- Range:
- Aup
Timeout stringVariable - Variable name, Attribute conditional on
aupEnabledequal totrue - Auth
Required bool - Enable Enforce Authentication to require users from this location to authenticate to the service.
- Default value:
false
- Default value:
- Auth
Required stringVariable - Variable name
- Block
Internet boolUntil Accepted - Disable all access to the internet, including non-HTTP traffic, until the user accepts the Acceptable Use Policy, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- Block
Internet stringUntil Accepted Variable - Variable name, Attribute conditional on
aupEnabledequal totrue - Caution
Enabled bool - Enforces a caution policy action and display an end user notification for unauthenticated traffic. If disabled, the action is treated as an allow policy.
- Default value:
false
- Default value:
- Caution
Enabled stringVariable - Variable name
- Display
Time stringUnit - Display time unit for Idle Time to Disassociation, Attribute conditional on
surrogateIpequal totrue- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- Display
Time stringUnit Variable - Variable name, Attribute conditional on
surrogateIpequal totrue - Dn
Bandwidth double - , Attribute conditional on
enforceBandwidthControlequal tooverride- Range:
0.1-99999
- Range:
- Dn
Bandwidth stringVariable - Variable name, Attribute conditional on
enforceBandwidthControlequal tooverride - Enforce
Bandwidth stringControl - Enforce Bandwidth Control for sub location
- Choices:
location-bandwidth,override,disabled - Default value:
location-bandwidth
- Choices:
- Enforce
Bandwidth stringControl Variable - Variable name
- Force
Ssl boolInspection - Enable to make SSL Interception enforce an Acceptable Use Policy for HTTPS traffic, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- Force
Ssl stringInspection Variable - Variable name, Attribute conditional on
aupEnabledequal totrue - Idle
Time int - Idle time to disassociation. How long after a completed transaction the service retains the IP address to user mapping., Attribute conditional on
surrogateIpequal totrue- At Least:
1 - Default value:
1
- At Least:
- Idle
Time stringVariable - Variable name, Attribute conditional on
surrogateIpequal totrue - Internal
Ips List<SseZscaler Feature Sub Location Internal Ip> - Ip
Enforced boolFor Known Browsers - If enabled, and if the IP-user mapping exists, then the Surrogate user identity is used for traffic from known browsers. If disabled, traffic from known browsers will always be challenged using the configured authentication mechanism and Surrogate user identity is ignored
- Default value:
false
- Default value:
- Ip
Enforced stringFor Known Browsers Variable - Variable name
- Name string
- Name
Variable string - Variable name
- Ofw
Enabled bool - Enforces firewall at the location
- Default value:
false
- Default value:
- Ofw
Enabled stringVariable - Variable name
- Refresh
Time int - Length of time that surrogate user identity can be used for traffic from known browsers before it must refresh and re-validate the surrogate user identity, Attribute conditional on
ipEnforcedForKnownBrowsersequal totrue- At Least:
1 - Default value:
1
- At Least:
- Refresh
Time stringUnit - Refresh Time display unit, Attribute conditional on
ipEnforcedForKnownBrowsersequal totrue- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- Refresh
Time stringUnit Variable - Variable name, Attribute conditional on
ipEnforcedForKnownBrowsersequal totrue - Refresh
Time stringVariable - Variable name, Attribute conditional on
ipEnforcedForKnownBrowsersequal totrue - Service
Vpn stringVariable - Variable name
- Service
Vpns List<string> - Surrogate
Ip bool - Enable Surrogate IP. Maps users to device IP addresses. This is used to enforce user policies on cookie-compatible traffic., Attribute conditional on
authRequiredequal totrue- Default value:
false
- Default value:
- Surrogate
Ip stringVariable - Variable name, Attribute conditional on
authRequiredequal totrue - Up
Bandwidth double - , Attribute conditional on
enforceBandwidthControlequal tooverride- Range:
0.1-99999
- Range:
- Up
Bandwidth stringVariable - Variable name, Attribute conditional on
enforceBandwidthControlequal tooverride
- Aup
Enabled bool - Displays an Acceptable Use Policy for unauthenticated traffic and require users to accept it
- Default value:
false
- Default value:
- Aup
Enabled stringVariable - Variable name
- Aup
Timeout int - How frequently in days the Acceptable Use Policy is displayed to users, Attribute conditional on
aupEnabledequal totrue- Range:
1-180 - Default value:
1
- Range:
- Aup
Timeout stringVariable - Variable name, Attribute conditional on
aupEnabledequal totrue - Auth
Required bool - Enable Enforce Authentication to require users from this location to authenticate to the service.
- Default value:
false
- Default value:
- Auth
Required stringVariable - Variable name
- Block
Internet boolUntil Accepted - Disable all access to the internet, including non-HTTP traffic, until the user accepts the Acceptable Use Policy, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- Block
Internet stringUntil Accepted Variable - Variable name, Attribute conditional on
aupEnabledequal totrue - Caution
Enabled bool - Enforces a caution policy action and display an end user notification for unauthenticated traffic. If disabled, the action is treated as an allow policy.
- Default value:
false
- Default value:
- Caution
Enabled stringVariable - Variable name
- Display
Time stringUnit - Display time unit for Idle Time to Disassociation, Attribute conditional on
surrogateIpequal totrue- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- Display
Time stringUnit Variable - Variable name, Attribute conditional on
surrogateIpequal totrue - Dn
Bandwidth float64 - , Attribute conditional on
enforceBandwidthControlequal tooverride- Range:
0.1-99999
- Range:
- Dn
Bandwidth stringVariable - Variable name, Attribute conditional on
enforceBandwidthControlequal tooverride - Enforce
Bandwidth stringControl - Enforce Bandwidth Control for sub location
- Choices:
location-bandwidth,override,disabled - Default value:
location-bandwidth
- Choices:
- Enforce
Bandwidth stringControl Variable - Variable name
- Force
Ssl boolInspection - Enable to make SSL Interception enforce an Acceptable Use Policy for HTTPS traffic, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- Force
Ssl stringInspection Variable - Variable name, Attribute conditional on
aupEnabledequal totrue - Idle
Time int - Idle time to disassociation. How long after a completed transaction the service retains the IP address to user mapping., Attribute conditional on
surrogateIpequal totrue- At Least:
1 - Default value:
1
- At Least:
- Idle
Time stringVariable - Variable name, Attribute conditional on
surrogateIpequal totrue - Internal
Ips []SseZscaler Feature Sub Location Internal Ip - Ip
Enforced boolFor Known Browsers - If enabled, and if the IP-user mapping exists, then the Surrogate user identity is used for traffic from known browsers. If disabled, traffic from known browsers will always be challenged using the configured authentication mechanism and Surrogate user identity is ignored
- Default value:
false
- Default value:
- Ip
Enforced stringFor Known Browsers Variable - Variable name
- Name string
- Name
Variable string - Variable name
- Ofw
Enabled bool - Enforces firewall at the location
- Default value:
false
- Default value:
- Ofw
Enabled stringVariable - Variable name
- Refresh
Time int - Length of time that surrogate user identity can be used for traffic from known browsers before it must refresh and re-validate the surrogate user identity, Attribute conditional on
ipEnforcedForKnownBrowsersequal totrue- At Least:
1 - Default value:
1
- At Least:
- Refresh
Time stringUnit - Refresh Time display unit, Attribute conditional on
ipEnforcedForKnownBrowsersequal totrue- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- Refresh
Time stringUnit Variable - Variable name, Attribute conditional on
ipEnforcedForKnownBrowsersequal totrue - Refresh
Time stringVariable - Variable name, Attribute conditional on
ipEnforcedForKnownBrowsersequal totrue - Service
Vpn stringVariable - Variable name
- Service
Vpns []string - Surrogate
Ip bool - Enable Surrogate IP. Maps users to device IP addresses. This is used to enforce user policies on cookie-compatible traffic., Attribute conditional on
authRequiredequal totrue- Default value:
false
- Default value:
- Surrogate
Ip stringVariable - Variable name, Attribute conditional on
authRequiredequal totrue - Up
Bandwidth float64 - , Attribute conditional on
enforceBandwidthControlequal tooverride- Range:
0.1-99999
- Range:
- Up
Bandwidth stringVariable - Variable name, Attribute conditional on
enforceBandwidthControlequal tooverride
- aup_
enabled bool - Displays an Acceptable Use Policy for unauthenticated traffic and require users to accept it
- Default value:
false
- Default value:
- aup_
enabled_ stringvariable - Variable name
- aup_
timeout number - How frequently in days the Acceptable Use Policy is displayed to users, Attribute conditional on
aupEnabledequal totrue- Range:
1-180 - Default value:
1
- Range:
- aup_
timeout_ stringvariable - Variable name, Attribute conditional on
aupEnabledequal totrue - auth_
required bool - Enable Enforce Authentication to require users from this location to authenticate to the service.
- Default value:
false
- Default value:
- auth_
required_ stringvariable - Variable name
- block_
internet_ booluntil_ accepted - Disable all access to the internet, including non-HTTP traffic, until the user accepts the Acceptable Use Policy, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- block_
internet_ stringuntil_ accepted_ variable - Variable name, Attribute conditional on
aupEnabledequal totrue - caution_
enabled bool - Enforces a caution policy action and display an end user notification for unauthenticated traffic. If disabled, the action is treated as an allow policy.
- Default value:
false
- Default value:
- caution_
enabled_ stringvariable - Variable name
- display_
time_ stringunit - Display time unit for Idle Time to Disassociation, Attribute conditional on
surrogateIpequal totrue- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- display_
time_ stringunit_ variable - Variable name, Attribute conditional on
surrogateIpequal totrue - dn_
bandwidth number - , Attribute conditional on
enforceBandwidthControlequal tooverride- Range:
0.1-99999
- Range:
- dn_
bandwidth_ stringvariable - Variable name, Attribute conditional on
enforceBandwidthControlequal tooverride - enforce_
bandwidth_ stringcontrol - Enforce Bandwidth Control for sub location
- Choices:
location-bandwidth,override,disabled - Default value:
location-bandwidth
- Choices:
- enforce_
bandwidth_ stringcontrol_ variable - Variable name
- force_
ssl_ boolinspection - Enable to make SSL Interception enforce an Acceptable Use Policy for HTTPS traffic, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- force_
ssl_ stringinspection_ variable - Variable name, Attribute conditional on
aupEnabledequal totrue - idle_
time number - Idle time to disassociation. How long after a completed transaction the service retains the IP address to user mapping., Attribute conditional on
surrogateIpequal totrue- At Least:
1 - Default value:
1
- At Least:
- idle_
time_ stringvariable - Variable name, Attribute conditional on
surrogateIpequal totrue - internal_
ips list(object) - ip_
enforced_ boolfor_ known_ browsers - If enabled, and if the IP-user mapping exists, then the Surrogate user identity is used for traffic from known browsers. If disabled, traffic from known browsers will always be challenged using the configured authentication mechanism and Surrogate user identity is ignored
- Default value:
false
- Default value:
- ip_
enforced_ stringfor_ known_ browsers_ variable - Variable name
- name string
- name_
variable string - Variable name
- ofw_
enabled bool - Enforces firewall at the location
- Default value:
false
- Default value:
- ofw_
enabled_ stringvariable - Variable name
- refresh_
time number - Length of time that surrogate user identity can be used for traffic from known browsers before it must refresh and re-validate the surrogate user identity, Attribute conditional on
ipEnforcedForKnownBrowsersequal totrue- At Least:
1 - Default value:
1
- At Least:
- refresh_
time_ stringunit - Refresh Time display unit, Attribute conditional on
ipEnforcedForKnownBrowsersequal totrue- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- refresh_
time_ stringunit_ variable - Variable name, Attribute conditional on
ipEnforcedForKnownBrowsersequal totrue - refresh_
time_ stringvariable - Variable name, Attribute conditional on
ipEnforcedForKnownBrowsersequal totrue - service_
vpn_ stringvariable - Variable name
- service_
vpns list(string) - surrogate_
ip bool - Enable Surrogate IP. Maps users to device IP addresses. This is used to enforce user policies on cookie-compatible traffic., Attribute conditional on
authRequiredequal totrue- Default value:
false
- Default value:
- surrogate_
ip_ stringvariable - Variable name, Attribute conditional on
authRequiredequal totrue - up_
bandwidth number - , Attribute conditional on
enforceBandwidthControlequal tooverride- Range:
0.1-99999
- Range:
- up_
bandwidth_ stringvariable - Variable name, Attribute conditional on
enforceBandwidthControlequal tooverride
- aup
Enabled Boolean - Displays an Acceptable Use Policy for unauthenticated traffic and require users to accept it
- Default value:
false
- Default value:
- aup
Enabled StringVariable - Variable name
- aup
Timeout Integer - How frequently in days the Acceptable Use Policy is displayed to users, Attribute conditional on
aupEnabledequal totrue- Range:
1-180 - Default value:
1
- Range:
- aup
Timeout StringVariable - Variable name, Attribute conditional on
aupEnabledequal totrue - auth
Required Boolean - Enable Enforce Authentication to require users from this location to authenticate to the service.
- Default value:
false
- Default value:
- auth
Required StringVariable - Variable name
- block
Internet BooleanUntil Accepted - Disable all access to the internet, including non-HTTP traffic, until the user accepts the Acceptable Use Policy, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- block
Internet StringUntil Accepted Variable - Variable name, Attribute conditional on
aupEnabledequal totrue - caution
Enabled Boolean - Enforces a caution policy action and display an end user notification for unauthenticated traffic. If disabled, the action is treated as an allow policy.
- Default value:
false
- Default value:
- caution
Enabled StringVariable - Variable name
- display
Time StringUnit - Display time unit for Idle Time to Disassociation, Attribute conditional on
surrogateIpequal totrue- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- display
Time StringUnit Variable - Variable name, Attribute conditional on
surrogateIpequal totrue - dn
Bandwidth Double - , Attribute conditional on
enforceBandwidthControlequal tooverride- Range:
0.1-99999
- Range:
- dn
Bandwidth StringVariable - Variable name, Attribute conditional on
enforceBandwidthControlequal tooverride - enforce
Bandwidth StringControl - Enforce Bandwidth Control for sub location
- Choices:
location-bandwidth,override,disabled - Default value:
location-bandwidth
- Choices:
- enforce
Bandwidth StringControl Variable - Variable name
- force
Ssl BooleanInspection - Enable to make SSL Interception enforce an Acceptable Use Policy for HTTPS traffic, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- force
Ssl StringInspection Variable - Variable name, Attribute conditional on
aupEnabledequal totrue - idle
Time Integer - Idle time to disassociation. How long after a completed transaction the service retains the IP address to user mapping., Attribute conditional on
surrogateIpequal totrue- At Least:
1 - Default value:
1
- At Least:
- idle
Time StringVariable - Variable name, Attribute conditional on
surrogateIpequal totrue - internal
Ips List<SseZscaler Feature Sub Location Internal Ip> - ip
Enforced BooleanFor Known Browsers - If enabled, and if the IP-user mapping exists, then the Surrogate user identity is used for traffic from known browsers. If disabled, traffic from known browsers will always be challenged using the configured authentication mechanism and Surrogate user identity is ignored
- Default value:
false
- Default value:
- ip
Enforced StringFor Known Browsers Variable - Variable name
- name String
- name
Variable String - Variable name
- ofw
Enabled Boolean - Enforces firewall at the location
- Default value:
false
- Default value:
- ofw
Enabled StringVariable - Variable name
- refresh
Time Integer - Length of time that surrogate user identity can be used for traffic from known browsers before it must refresh and re-validate the surrogate user identity, Attribute conditional on
ipEnforcedForKnownBrowsersequal totrue- At Least:
1 - Default value:
1
- At Least:
- refresh
Time StringUnit - Refresh Time display unit, Attribute conditional on
ipEnforcedForKnownBrowsersequal totrue- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- refresh
Time StringUnit Variable - Variable name, Attribute conditional on
ipEnforcedForKnownBrowsersequal totrue - refresh
Time StringVariable - Variable name, Attribute conditional on
ipEnforcedForKnownBrowsersequal totrue - service
Vpn StringVariable - Variable name
- service
Vpns List<String> - surrogate
Ip Boolean - Enable Surrogate IP. Maps users to device IP addresses. This is used to enforce user policies on cookie-compatible traffic., Attribute conditional on
authRequiredequal totrue- Default value:
false
- Default value:
- surrogate
Ip StringVariable - Variable name, Attribute conditional on
authRequiredequal totrue - up
Bandwidth Double - , Attribute conditional on
enforceBandwidthControlequal tooverride- Range:
0.1-99999
- Range:
- up
Bandwidth StringVariable - Variable name, Attribute conditional on
enforceBandwidthControlequal tooverride
- aup
Enabled boolean - Displays an Acceptable Use Policy for unauthenticated traffic and require users to accept it
- Default value:
false
- Default value:
- aup
Enabled stringVariable - Variable name
- aup
Timeout number - How frequently in days the Acceptable Use Policy is displayed to users, Attribute conditional on
aupEnabledequal totrue- Range:
1-180 - Default value:
1
- Range:
- aup
Timeout stringVariable - Variable name, Attribute conditional on
aupEnabledequal totrue - auth
Required boolean - Enable Enforce Authentication to require users from this location to authenticate to the service.
- Default value:
false
- Default value:
- auth
Required stringVariable - Variable name
- block
Internet booleanUntil Accepted - Disable all access to the internet, including non-HTTP traffic, until the user accepts the Acceptable Use Policy, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- block
Internet stringUntil Accepted Variable - Variable name, Attribute conditional on
aupEnabledequal totrue - caution
Enabled boolean - Enforces a caution policy action and display an end user notification for unauthenticated traffic. If disabled, the action is treated as an allow policy.
- Default value:
false
- Default value:
- caution
Enabled stringVariable - Variable name
- display
Time stringUnit - Display time unit for Idle Time to Disassociation, Attribute conditional on
surrogateIpequal totrue- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- display
Time stringUnit Variable - Variable name, Attribute conditional on
surrogateIpequal totrue - dn
Bandwidth number - , Attribute conditional on
enforceBandwidthControlequal tooverride- Range:
0.1-99999
- Range:
- dn
Bandwidth stringVariable - Variable name, Attribute conditional on
enforceBandwidthControlequal tooverride - enforce
Bandwidth stringControl - Enforce Bandwidth Control for sub location
- Choices:
location-bandwidth,override,disabled - Default value:
location-bandwidth
- Choices:
- enforce
Bandwidth stringControl Variable - Variable name
- force
Ssl booleanInspection - Enable to make SSL Interception enforce an Acceptable Use Policy for HTTPS traffic, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- force
Ssl stringInspection Variable - Variable name, Attribute conditional on
aupEnabledequal totrue - idle
Time number - Idle time to disassociation. How long after a completed transaction the service retains the IP address to user mapping., Attribute conditional on
surrogateIpequal totrue- At Least:
1 - Default value:
1
- At Least:
- idle
Time stringVariable - Variable name, Attribute conditional on
surrogateIpequal totrue - internal
Ips SseZscaler Feature Sub Location Internal Ip[] - ip
Enforced booleanFor Known Browsers - If enabled, and if the IP-user mapping exists, then the Surrogate user identity is used for traffic from known browsers. If disabled, traffic from known browsers will always be challenged using the configured authentication mechanism and Surrogate user identity is ignored
- Default value:
false
- Default value:
- ip
Enforced stringFor Known Browsers Variable - Variable name
- name string
- name
Variable string - Variable name
- ofw
Enabled boolean - Enforces firewall at the location
- Default value:
false
- Default value:
- ofw
Enabled stringVariable - Variable name
- refresh
Time number - Length of time that surrogate user identity can be used for traffic from known browsers before it must refresh and re-validate the surrogate user identity, Attribute conditional on
ipEnforcedForKnownBrowsersequal totrue- At Least:
1 - Default value:
1
- At Least:
- refresh
Time stringUnit - Refresh Time display unit, Attribute conditional on
ipEnforcedForKnownBrowsersequal totrue- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- refresh
Time stringUnit Variable - Variable name, Attribute conditional on
ipEnforcedForKnownBrowsersequal totrue - refresh
Time stringVariable - Variable name, Attribute conditional on
ipEnforcedForKnownBrowsersequal totrue - service
Vpn stringVariable - Variable name
- service
Vpns string[] - surrogate
Ip boolean - Enable Surrogate IP. Maps users to device IP addresses. This is used to enforce user policies on cookie-compatible traffic., Attribute conditional on
authRequiredequal totrue- Default value:
false
- Default value:
- surrogate
Ip stringVariable - Variable name, Attribute conditional on
authRequiredequal totrue - up
Bandwidth number - , Attribute conditional on
enforceBandwidthControlequal tooverride- Range:
0.1-99999
- Range:
- up
Bandwidth stringVariable - Variable name, Attribute conditional on
enforceBandwidthControlequal tooverride
- aup_
enabled bool - Displays an Acceptable Use Policy for unauthenticated traffic and require users to accept it
- Default value:
false
- Default value:
- aup_
enabled_ strvariable - Variable name
- aup_
timeout int - How frequently in days the Acceptable Use Policy is displayed to users, Attribute conditional on
aupEnabledequal totrue- Range:
1-180 - Default value:
1
- Range:
- aup_
timeout_ strvariable - Variable name, Attribute conditional on
aupEnabledequal totrue - auth_
required bool - Enable Enforce Authentication to require users from this location to authenticate to the service.
- Default value:
false
- Default value:
- auth_
required_ strvariable - Variable name
- block_
internet_ booluntil_ accepted - Disable all access to the internet, including non-HTTP traffic, until the user accepts the Acceptable Use Policy, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- block_
internet_ struntil_ accepted_ variable - Variable name, Attribute conditional on
aupEnabledequal totrue - caution_
enabled bool - Enforces a caution policy action and display an end user notification for unauthenticated traffic. If disabled, the action is treated as an allow policy.
- Default value:
false
- Default value:
- caution_
enabled_ strvariable - Variable name
- display_
time_ strunit - Display time unit for Idle Time to Disassociation, Attribute conditional on
surrogateIpequal totrue- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- display_
time_ strunit_ variable - Variable name, Attribute conditional on
surrogateIpequal totrue - dn_
bandwidth float - , Attribute conditional on
enforceBandwidthControlequal tooverride- Range:
0.1-99999
- Range:
- dn_
bandwidth_ strvariable - Variable name, Attribute conditional on
enforceBandwidthControlequal tooverride - enforce_
bandwidth_ strcontrol - Enforce Bandwidth Control for sub location
- Choices:
location-bandwidth,override,disabled - Default value:
location-bandwidth
- Choices:
- enforce_
bandwidth_ strcontrol_ variable - Variable name
- force_
ssl_ boolinspection - Enable to make SSL Interception enforce an Acceptable Use Policy for HTTPS traffic, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- force_
ssl_ strinspection_ variable - Variable name, Attribute conditional on
aupEnabledequal totrue - idle_
time int - Idle time to disassociation. How long after a completed transaction the service retains the IP address to user mapping., Attribute conditional on
surrogateIpequal totrue- At Least:
1 - Default value:
1
- At Least:
- idle_
time_ strvariable - Variable name, Attribute conditional on
surrogateIpequal totrue - internal_
ips Sequence[SseZscaler Feature Sub Location Internal Ip] - ip_
enforced_ boolfor_ known_ browsers - If enabled, and if the IP-user mapping exists, then the Surrogate user identity is used for traffic from known browsers. If disabled, traffic from known browsers will always be challenged using the configured authentication mechanism and Surrogate user identity is ignored
- Default value:
false
- Default value:
- ip_
enforced_ strfor_ known_ browsers_ variable - Variable name
- name str
- name_
variable str - Variable name
- ofw_
enabled bool - Enforces firewall at the location
- Default value:
false
- Default value:
- ofw_
enabled_ strvariable - Variable name
- refresh_
time int - Length of time that surrogate user identity can be used for traffic from known browsers before it must refresh and re-validate the surrogate user identity, Attribute conditional on
ipEnforcedForKnownBrowsersequal totrue- At Least:
1 - Default value:
1
- At Least:
- refresh_
time_ strunit - Refresh Time display unit, Attribute conditional on
ipEnforcedForKnownBrowsersequal totrue- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- refresh_
time_ strunit_ variable - Variable name, Attribute conditional on
ipEnforcedForKnownBrowsersequal totrue - refresh_
time_ strvariable - Variable name, Attribute conditional on
ipEnforcedForKnownBrowsersequal totrue - service_
vpn_ strvariable - Variable name
- service_
vpns Sequence[str] - surrogate_
ip bool - Enable Surrogate IP. Maps users to device IP addresses. This is used to enforce user policies on cookie-compatible traffic., Attribute conditional on
authRequiredequal totrue- Default value:
false
- Default value:
- surrogate_
ip_ strvariable - Variable name, Attribute conditional on
authRequiredequal totrue - up_
bandwidth float - , Attribute conditional on
enforceBandwidthControlequal tooverride- Range:
0.1-99999
- Range:
- up_
bandwidth_ strvariable - Variable name, Attribute conditional on
enforceBandwidthControlequal tooverride
- aup
Enabled Boolean - Displays an Acceptable Use Policy for unauthenticated traffic and require users to accept it
- Default value:
false
- Default value:
- aup
Enabled StringVariable - Variable name
- aup
Timeout Number - How frequently in days the Acceptable Use Policy is displayed to users, Attribute conditional on
aupEnabledequal totrue- Range:
1-180 - Default value:
1
- Range:
- aup
Timeout StringVariable - Variable name, Attribute conditional on
aupEnabledequal totrue - auth
Required Boolean - Enable Enforce Authentication to require users from this location to authenticate to the service.
- Default value:
false
- Default value:
- auth
Required StringVariable - Variable name
- block
Internet BooleanUntil Accepted - Disable all access to the internet, including non-HTTP traffic, until the user accepts the Acceptable Use Policy, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- block
Internet StringUntil Accepted Variable - Variable name, Attribute conditional on
aupEnabledequal totrue - caution
Enabled Boolean - Enforces a caution policy action and display an end user notification for unauthenticated traffic. If disabled, the action is treated as an allow policy.
- Default value:
false
- Default value:
- caution
Enabled StringVariable - Variable name
- display
Time StringUnit - Display time unit for Idle Time to Disassociation, Attribute conditional on
surrogateIpequal totrue- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- display
Time StringUnit Variable - Variable name, Attribute conditional on
surrogateIpequal totrue - dn
Bandwidth Number - , Attribute conditional on
enforceBandwidthControlequal tooverride- Range:
0.1-99999
- Range:
- dn
Bandwidth StringVariable - Variable name, Attribute conditional on
enforceBandwidthControlequal tooverride - enforce
Bandwidth StringControl - Enforce Bandwidth Control for sub location
- Choices:
location-bandwidth,override,disabled - Default value:
location-bandwidth
- Choices:
- enforce
Bandwidth StringControl Variable - Variable name
- force
Ssl BooleanInspection - Enable to make SSL Interception enforce an Acceptable Use Policy for HTTPS traffic, Attribute conditional on
aupEnabledequal totrue- Default value:
false
- Default value:
- force
Ssl StringInspection Variable - Variable name, Attribute conditional on
aupEnabledequal totrue - idle
Time Number - Idle time to disassociation. How long after a completed transaction the service retains the IP address to user mapping., Attribute conditional on
surrogateIpequal totrue- At Least:
1 - Default value:
1
- At Least:
- idle
Time StringVariable - Variable name, Attribute conditional on
surrogateIpequal totrue - internal
Ips List<Property Map> - ip
Enforced BooleanFor Known Browsers - If enabled, and if the IP-user mapping exists, then the Surrogate user identity is used for traffic from known browsers. If disabled, traffic from known browsers will always be challenged using the configured authentication mechanism and Surrogate user identity is ignored
- Default value:
false
- Default value:
- ip
Enforced StringFor Known Browsers Variable - Variable name
- name String
- name
Variable String - Variable name
- ofw
Enabled Boolean - Enforces firewall at the location
- Default value:
false
- Default value:
- ofw
Enabled StringVariable - Variable name
- refresh
Time Number - Length of time that surrogate user identity can be used for traffic from known browsers before it must refresh and re-validate the surrogate user identity, Attribute conditional on
ipEnforcedForKnownBrowsersequal totrue- At Least:
1 - Default value:
1
- At Least:
- refresh
Time StringUnit - Refresh Time display unit, Attribute conditional on
ipEnforcedForKnownBrowsersequal totrue- Choices:
MINUTE,HOUR,DAY - Default value:
MINUTE
- Choices:
- refresh
Time StringUnit Variable - Variable name, Attribute conditional on
ipEnforcedForKnownBrowsersequal totrue - refresh
Time StringVariable - Variable name, Attribute conditional on
ipEnforcedForKnownBrowsersequal totrue - service
Vpn StringVariable - Variable name
- service
Vpns List<String> - surrogate
Ip Boolean - Enable Surrogate IP. Maps users to device IP addresses. This is used to enforce user policies on cookie-compatible traffic., Attribute conditional on
authRequiredequal totrue- Default value:
false
- Default value:
- surrogate
Ip StringVariable - Variable name, Attribute conditional on
authRequiredequal totrue - up
Bandwidth Number - , Attribute conditional on
enforceBandwidthControlequal tooverride- Range:
0.1-99999
- Range:
- up
Bandwidth StringVariable - Variable name, Attribute conditional on
enforceBandwidthControlequal tooverride
SseZscalerFeatureSubLocationInternalIp, SseZscalerFeatureSubLocationInternalIpArgs
- Internal
Ip stringValue - Internal
Ip stringValue Variable - Variable name
- Internal
Ip stringValue - Internal
Ip stringValue Variable - Variable name
- internal_
ip_ stringvalue - internal_
ip_ stringvalue_ variable - Variable name
- internal
Ip StringValue - internal
Ip StringValue Variable - Variable name
- internal
Ip stringValue - internal
Ip stringValue Variable - Variable name
- internal_
ip_ strvalue - internal_
ip_ strvalue_ variable - Variable name
- internal
Ip StringValue - internal
Ip StringValue Variable - Variable name
SseZscalerFeatureTracker, SseZscalerFeatureTrackerArgs
- Endpoint
Api stringUrl - API url of endpoint
- Endpoint
Api stringUrl Variable - Variable name
- Interval int
- Probe interval <10..600> seconds
- Range:
20-600 - Default value:
30
- Range:
- Interval
Variable string - Variable name
- Multiplier int
- Probe failure multiplier <1..10> failed attempts
- Range:
1-10 - Default value:
2
- Range:
- Multiplier
Variable string - Variable name
- Name string
- Tracker name
- Threshold int
- Probe Timeout threshold <100..1000> milliseconds
- Range:
100-1000 - Default value:
1000
- Range:
- Threshold
Variable string - Variable name
- Endpoint
Api stringUrl - API url of endpoint
- Endpoint
Api stringUrl Variable - Variable name
- Interval int
- Probe interval <10..600> seconds
- Range:
20-600 - Default value:
30
- Range:
- Interval
Variable string - Variable name
- Multiplier int
- Probe failure multiplier <1..10> failed attempts
- Range:
1-10 - Default value:
2
- Range:
- Multiplier
Variable string - Variable name
- Name string
- Tracker name
- Threshold int
- Probe Timeout threshold <100..1000> milliseconds
- Range:
100-1000 - Default value:
1000
- Range:
- Threshold
Variable string - Variable name
- endpoint_
api_ stringurl - API url of endpoint
- endpoint_
api_ stringurl_ variable - Variable name
- interval number
- Probe interval <10..600> seconds
- Range:
20-600 - Default value:
30
- Range:
- interval_
variable string - Variable name
- multiplier number
- Probe failure multiplier <1..10> failed attempts
- Range:
1-10 - Default value:
2
- Range:
- multiplier_
variable string - Variable name
- name string
- Tracker name
- threshold number
- Probe Timeout threshold <100..1000> milliseconds
- Range:
100-1000 - Default value:
1000
- Range:
- threshold_
variable string - Variable name
- endpoint
Api StringUrl - API url of endpoint
- endpoint
Api StringUrl Variable - Variable name
- interval Integer
- Probe interval <10..600> seconds
- Range:
20-600 - Default value:
30
- Range:
- interval
Variable String - Variable name
- multiplier Integer
- Probe failure multiplier <1..10> failed attempts
- Range:
1-10 - Default value:
2
- Range:
- multiplier
Variable String - Variable name
- name String
- Tracker name
- threshold Integer
- Probe Timeout threshold <100..1000> milliseconds
- Range:
100-1000 - Default value:
1000
- Range:
- threshold
Variable String - Variable name
- endpoint
Api stringUrl - API url of endpoint
- endpoint
Api stringUrl Variable - Variable name
- interval number
- Probe interval <10..600> seconds
- Range:
20-600 - Default value:
30
- Range:
- interval
Variable string - Variable name
- multiplier number
- Probe failure multiplier <1..10> failed attempts
- Range:
1-10 - Default value:
2
- Range:
- multiplier
Variable string - Variable name
- name string
- Tracker name
- threshold number
- Probe Timeout threshold <100..1000> milliseconds
- Range:
100-1000 - Default value:
1000
- Range:
- threshold
Variable string - Variable name
- endpoint_
api_ strurl - API url of endpoint
- endpoint_
api_ strurl_ variable - Variable name
- interval int
- Probe interval <10..600> seconds
- Range:
20-600 - Default value:
30
- Range:
- interval_
variable str - Variable name
- multiplier int
- Probe failure multiplier <1..10> failed attempts
- Range:
1-10 - Default value:
2
- Range:
- multiplier_
variable str - Variable name
- name str
- Tracker name
- threshold int
- Probe Timeout threshold <100..1000> milliseconds
- Range:
100-1000 - Default value:
1000
- Range:
- threshold_
variable str - Variable name
- endpoint
Api StringUrl - API url of endpoint
- endpoint
Api StringUrl Variable - Variable name
- interval Number
- Probe interval <10..600> seconds
- Range:
20-600 - Default value:
30
- Range:
- interval
Variable String - Variable name
- multiplier Number
- Probe failure multiplier <1..10> failed attempts
- Range:
1-10 - Default value:
2
- Range:
- multiplier
Variable String - Variable name
- name String
- Tracker name
- threshold Number
- Probe Timeout threshold <100..1000> milliseconds
- Range:
100-1000 - Default value:
1000
- Range:
- threshold
Variable String - Variable name
Import
The pulumi import command can be used, for example:
Expected import identifier with the format: “sse_zscaler_feature_id,feature_profile_id”
$ pulumi import sdwan:index/sseZscalerFeature:SseZscalerFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- sdwan pulumi/pulumi-sdwan
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
sdwanTerraform Provider.
published on Friday, Jun 26, 2026 by Pulumi