1. Packages
  2. Packages
  3. Cisco Catalyst SD-WAN Provider
  4. API Docs
  5. getSseZscalerFeature
Viewing docs for Cisco Catalyst SD-WAN v0.9.1
published on Friday, Jun 26, 2026 by Pulumi
sdwan logo
Viewing docs for Cisco Catalyst SD-WAN v0.9.1
published on Friday, Jun 26, 2026 by Pulumi

    This data source can read the SSE Zscaler Feature.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as sdwan from "@pulumi/sdwan";
    
    const example = sdwan.getSseZscalerFeature({
        id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
        featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
    });
    
    import pulumi
    import pulumi_sdwan as sdwan
    
    example = sdwan.get_sse_zscaler_feature(id="f6b2c44c-693c-4763-b010-895aa3d236bd",
        feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
    
    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.GetSseZscalerFeature(ctx, &sdwan.LookupSseZscalerFeatureArgs{
    			Id:               pulumi.StringRef("f6b2c44c-693c-4763-b010-895aa3d236bd"),
    			FeatureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
    		}, nil)
    		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 = Sdwan.GetSseZscalerFeature.Invoke(new()
        {
            Id = "f6b2c44c-693c-4763-b010-895aa3d236bd",
            FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.sdwan.SdwanFunctions;
    import com.pulumi.sdwan.inputs.GetSseZscalerFeatureArgs;
    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) {
            final var example = SdwanFunctions.getSseZscalerFeature(GetSseZscalerFeatureArgs.builder()
                .id("f6b2c44c-693c-4763-b010-895aa3d236bd")
                .featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
                .build());
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: sdwan:getSseZscalerFeature
          arguments:
            id: f6b2c44c-693c-4763-b010-895aa3d236bd
            featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
    
    pulumi {
      required_providers {
        sdwan = {
          source = "pulumi/sdwan"
        }
      }
    }
    
    data "sdwan_getssezscalerfeature" "example" {
      id                 = "f6b2c44c-693c-4763-b010-895aa3d236bd"
      feature_profile_id = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"
    }
    

    Using getSseZscalerFeature

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getSseZscalerFeature(args: GetSseZscalerFeatureArgs, opts?: InvokeOptions): Promise<GetSseZscalerFeatureResult>
    function getSseZscalerFeatureOutput(args: GetSseZscalerFeatureOutputArgs, opts?: InvokeOptions): Output<GetSseZscalerFeatureResult>
    def get_sse_zscaler_feature(feature_profile_id: Optional[str] = None,
                                id: Optional[str] = None,
                                name: Optional[str] = None,
                                opts: Optional[InvokeOptions] = None) -> GetSseZscalerFeatureResult
    def get_sse_zscaler_feature_output(feature_profile_id: pulumi.Input[Optional[str]] = None,
                                id: pulumi.Input[Optional[str]] = None,
                                name: pulumi.Input[Optional[str]] = None,
                                opts: Optional[InvokeOptions] = None) -> Output[GetSseZscalerFeatureResult]
    func LookupSseZscalerFeature(ctx *Context, args *LookupSseZscalerFeatureArgs, opts ...InvokeOption) (*LookupSseZscalerFeatureResult, error)
    func LookupSseZscalerFeatureOutput(ctx *Context, args *LookupSseZscalerFeatureOutputArgs, opts ...InvokeOption) LookupSseZscalerFeatureResultOutput

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

    public static class GetSseZscalerFeature 
    {
        public static Task<GetSseZscalerFeatureResult> InvokeAsync(GetSseZscalerFeatureArgs args, InvokeOptions? opts = null)
        public static Output<GetSseZscalerFeatureResult> Invoke(GetSseZscalerFeatureInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetSseZscalerFeatureResult> getSseZscalerFeature(GetSseZscalerFeatureArgs args, InvokeOptions options)
    public static Output<GetSseZscalerFeatureResult> getSseZscalerFeature(GetSseZscalerFeatureArgs args, InvokeOptions options)
    
    fn::invoke:
      function: sdwan:index/getSseZscalerFeature:getSseZscalerFeature
      arguments:
        # arguments dictionary
    data "sdwan_getssezscalerfeature" "name" {
        # arguments
    }

    The following arguments are supported:

    FeatureProfileId string
    Feature Profile ID
    Id string
    The id of the Feature
    Name string
    The name of the Feature
    FeatureProfileId string
    Feature Profile ID
    Id string
    The id of the Feature
    Name string
    The name of the Feature
    feature_profile_id string
    Feature Profile ID
    id string
    The id of the Feature
    name string
    The name of the Feature
    featureProfileId String
    Feature Profile ID
    id String
    The id of the Feature
    name String
    The name of the Feature
    featureProfileId string
    Feature Profile ID
    id string
    The id of the Feature
    name string
    The name of the Feature
    feature_profile_id str
    Feature Profile ID
    id str
    The id of the Feature
    name str
    The name of the Feature
    featureProfileId String
    Feature Profile ID
    id String
    The id of the Feature
    name String
    The name of the Feature

    getSseZscalerFeature Result

    The following output properties are available:

    AupEnabled bool
    Enable Acceptable User Policy
    AupEnabledVariable string
    Variable name
    AupTimeout int
    Custom Acceptable User Policy frequency in days
    AupTimeoutVariable string
    Variable name
    AuthRequired bool
    Enforce Authentication
    AuthRequiredVariable string
    Variable name
    BlockInternetUntilAccepted bool
    For first-time Acceptable User Policy behavior, block Internet access
    BlockInternetUntilAcceptedVariable string
    Variable name
    CautionEnabled bool
    Enable Caution
    CautionEnabledVariable string
    Variable name
    Country bool
    CountryVariable string
    Variable name
    Description string
    The description of the Feature
    DisplayTimeUnit string
    Display time unit
    DisplayTimeUnitVariable string
    Variable name
    DnBandwidth double
    DnBandwidthVariable string
    Variable name
    EnforceBandwidthControl bool
    EnforceBandwidthControlVariable string
    Variable name
    FeatureProfileId string
    Feature Profile ID
    ForceSslInspection bool
    For first-time Acceptable User Policy behavior, force SSL inspection
    ForceSslInspectionVariable string
    Variable name
    Id string
    The id of the Feature
    IdleTime int
    Idle time to disassociation
    IdleTimeVariable string
    Variable name
    InterfacePairs List<GetSseZscalerFeatureInterfacePair>
    Interface Pair for active and backup
    Interfaces List<GetSseZscalerFeatureInterface>
    Interface name: IPsec when present
    IpEnforcedForKnownBrowsers bool
    Enforce Surrogate IP for known browsers
    IpEnforcedForKnownBrowsersVariable string
    Variable name
    IpsControl bool
    Enable IPS Control
    IpsControlVariable string
    Variable name
    LocationName string
    Zscaler location name (optional)
    LocationNameVariable string
    Variable name
    Name string
    The name of the Feature
    OfwEnabled bool
    Firewall enabled
    OfwEnabledVariable string
    Variable name
    PrimaryDataCenter string
    Custom Primary Datacenter
    PrimaryDataCenterVariable string
    Variable name
    RefreshTime int
    Refresh time for re-validation of surrogacy in minutes
    RefreshTimeUnit string
    Refresh Time unit
    RefreshTimeUnitVariable string
    Variable name
    RefreshTimeVariable string
    Variable name
    SecondaryDataCenter string
    Custom Secondary Datacenter
    SecondaryDataCenterVariable string
    Variable name
    SrcVpn bool
    Share Source VPN
    SubLocations List<GetSseZscalerFeatureSubLocation>
    SurrogateIp bool
    Enable Surrogate IP
    SurrogateIpVariable string
    Variable name
    TrackerSourceIp string
    Source IP address for Tracker
    TrackerSourceIpVariable string
    Variable name
    Trackers List<GetSseZscalerFeatureTracker>
    Tracker configuration
    UpBandwidth double
    UpBandwidthVariable string
    Variable name
    Version int
    The version of the Feature
    XffForwardEnabled bool
    XFF forwarding enabled
    XffForwardEnabledVariable string
    Variable name
    AupEnabled bool
    Enable Acceptable User Policy
    AupEnabledVariable string
    Variable name
    AupTimeout int
    Custom Acceptable User Policy frequency in days
    AupTimeoutVariable string
    Variable name
    AuthRequired bool
    Enforce Authentication
    AuthRequiredVariable string
    Variable name
    BlockInternetUntilAccepted bool
    For first-time Acceptable User Policy behavior, block Internet access
    BlockInternetUntilAcceptedVariable string
    Variable name
    CautionEnabled bool
    Enable Caution
    CautionEnabledVariable string
    Variable name
    Country bool
    CountryVariable string
    Variable name
    Description string
    The description of the Feature
    DisplayTimeUnit string
    Display time unit
    DisplayTimeUnitVariable string
    Variable name
    DnBandwidth float64
    DnBandwidthVariable string
    Variable name
    EnforceBandwidthControl bool
    EnforceBandwidthControlVariable string
    Variable name
    FeatureProfileId string
    Feature Profile ID
    ForceSslInspection bool
    For first-time Acceptable User Policy behavior, force SSL inspection
    ForceSslInspectionVariable string
    Variable name
    Id string
    The id of the Feature
    IdleTime int
    Idle time to disassociation
    IdleTimeVariable string
    Variable name
    InterfacePairs []GetSseZscalerFeatureInterfacePair
    Interface Pair for active and backup
    Interfaces []GetSseZscalerFeatureInterface
    Interface name: IPsec when present
    IpEnforcedForKnownBrowsers bool
    Enforce Surrogate IP for known browsers
    IpEnforcedForKnownBrowsersVariable string
    Variable name
    IpsControl bool
    Enable IPS Control
    IpsControlVariable string
    Variable name
    LocationName string
    Zscaler location name (optional)
    LocationNameVariable string
    Variable name
    Name string
    The name of the Feature
    OfwEnabled bool
    Firewall enabled
    OfwEnabledVariable string
    Variable name
    PrimaryDataCenter string
    Custom Primary Datacenter
    PrimaryDataCenterVariable string
    Variable name
    RefreshTime int
    Refresh time for re-validation of surrogacy in minutes
    RefreshTimeUnit string
    Refresh Time unit
    RefreshTimeUnitVariable string
    Variable name
    RefreshTimeVariable string
    Variable name
    SecondaryDataCenter string
    Custom Secondary Datacenter
    SecondaryDataCenterVariable string
    Variable name
    SrcVpn bool
    Share Source VPN
    SubLocations []GetSseZscalerFeatureSubLocation
    SurrogateIp bool
    Enable Surrogate IP
    SurrogateIpVariable string
    Variable name
    TrackerSourceIp string
    Source IP address for Tracker
    TrackerSourceIpVariable string
    Variable name
    Trackers []GetSseZscalerFeatureTracker
    Tracker configuration
    UpBandwidth float64
    UpBandwidthVariable string
    Variable name
    Version int
    The version of the Feature
    XffForwardEnabled bool
    XFF forwarding enabled
    XffForwardEnabledVariable string
    Variable name
    aup_enabled bool
    Enable Acceptable User Policy
    aup_enabled_variable string
    Variable name
    aup_timeout number
    Custom Acceptable User Policy frequency in days
    aup_timeout_variable string
    Variable name
    auth_required bool
    Enforce Authentication
    auth_required_variable string
    Variable name
    block_internet_until_accepted bool
    For first-time Acceptable User Policy behavior, block Internet access
    block_internet_until_accepted_variable string
    Variable name
    caution_enabled bool
    Enable Caution
    caution_enabled_variable string
    Variable name
    country bool
    country_variable string
    Variable name
    description string
    The description of the Feature
    display_time_unit string
    Display time unit
    display_time_unit_variable string
    Variable name
    dn_bandwidth number
    dn_bandwidth_variable string
    Variable name
    enforce_bandwidth_control bool
    enforce_bandwidth_control_variable string
    Variable name
    feature_profile_id string
    Feature Profile ID
    force_ssl_inspection bool
    For first-time Acceptable User Policy behavior, force SSL inspection
    force_ssl_inspection_variable string
    Variable name
    id string
    The id of the Feature
    idle_time number
    Idle time to disassociation
    idle_time_variable string
    Variable name
    interface_pairs list(object)
    Interface Pair for active and backup
    interfaces list(object)
    Interface name: IPsec when present
    ip_enforced_for_known_browsers bool
    Enforce Surrogate IP for known browsers
    ip_enforced_for_known_browsers_variable string
    Variable name
    ips_control bool
    Enable IPS Control
    ips_control_variable string
    Variable name
    location_name string
    Zscaler location name (optional)
    location_name_variable string
    Variable name
    name string
    The name of the Feature
    ofw_enabled bool
    Firewall enabled
    ofw_enabled_variable string
    Variable name
    primary_data_center string
    Custom Primary Datacenter
    primary_data_center_variable string
    Variable name
    refresh_time number
    Refresh time for re-validation of surrogacy in minutes
    refresh_time_unit string
    Refresh Time unit
    refresh_time_unit_variable string
    Variable name
    refresh_time_variable string
    Variable name
    secondary_data_center string
    Custom Secondary Datacenter
    secondary_data_center_variable string
    Variable name
    src_vpn bool
    Share Source VPN
    sub_locations list(object)
    surrogate_ip bool
    Enable Surrogate IP
    surrogate_ip_variable string
    Variable name
    tracker_source_ip string
    Source IP address for Tracker
    tracker_source_ip_variable string
    Variable name
    trackers list(object)
    Tracker configuration
    up_bandwidth number
    up_bandwidth_variable string
    Variable name
    version number
    The version of the Feature
    xff_forward_enabled bool
    XFF forwarding enabled
    xff_forward_enabled_variable string
    Variable name
    aupEnabled Boolean
    Enable Acceptable User Policy
    aupEnabledVariable String
    Variable name
    aupTimeout Integer
    Custom Acceptable User Policy frequency in days
    aupTimeoutVariable String
    Variable name
    authRequired Boolean
    Enforce Authentication
    authRequiredVariable String
    Variable name
    blockInternetUntilAccepted Boolean
    For first-time Acceptable User Policy behavior, block Internet access
    blockInternetUntilAcceptedVariable String
    Variable name
    cautionEnabled Boolean
    Enable Caution
    cautionEnabledVariable String
    Variable name
    country Boolean
    countryVariable String
    Variable name
    description String
    The description of the Feature
    displayTimeUnit String
    Display time unit
    displayTimeUnitVariable String
    Variable name
    dnBandwidth Double
    dnBandwidthVariable String
    Variable name
    enforceBandwidthControl Boolean
    enforceBandwidthControlVariable String
    Variable name
    featureProfileId String
    Feature Profile ID
    forceSslInspection Boolean
    For first-time Acceptable User Policy behavior, force SSL inspection
    forceSslInspectionVariable String
    Variable name
    id String
    The id of the Feature
    idleTime Integer
    Idle time to disassociation
    idleTimeVariable String
    Variable name
    interfacePairs List<GetSseZscalerFeatureInterfacePair>
    Interface Pair for active and backup
    interfaces List<GetSseZscalerFeatureInterface>
    Interface name: IPsec when present
    ipEnforcedForKnownBrowsers Boolean
    Enforce Surrogate IP for known browsers
    ipEnforcedForKnownBrowsersVariable String
    Variable name
    ipsControl Boolean
    Enable IPS Control
    ipsControlVariable String
    Variable name
    locationName String
    Zscaler location name (optional)
    locationNameVariable String
    Variable name
    name String
    The name of the Feature
    ofwEnabled Boolean
    Firewall enabled
    ofwEnabledVariable String
    Variable name
    primaryDataCenter String
    Custom Primary Datacenter
    primaryDataCenterVariable String
    Variable name
    refreshTime Integer
    Refresh time for re-validation of surrogacy in minutes
    refreshTimeUnit String
    Refresh Time unit
    refreshTimeUnitVariable String
    Variable name
    refreshTimeVariable String
    Variable name
    secondaryDataCenter String
    Custom Secondary Datacenter
    secondaryDataCenterVariable String
    Variable name
    srcVpn Boolean
    Share Source VPN
    subLocations List<GetSseZscalerFeatureSubLocation>
    surrogateIp Boolean
    Enable Surrogate IP
    surrogateIpVariable String
    Variable name
    trackerSourceIp String
    Source IP address for Tracker
    trackerSourceIpVariable String
    Variable name
    trackers List<GetSseZscalerFeatureTracker>
    Tracker configuration
    upBandwidth Double
    upBandwidthVariable String
    Variable name
    version Integer
    The version of the Feature
    xffForwardEnabled Boolean
    XFF forwarding enabled
    xffForwardEnabledVariable String
    Variable name
    aupEnabled boolean
    Enable Acceptable User Policy
    aupEnabledVariable string
    Variable name
    aupTimeout number
    Custom Acceptable User Policy frequency in days
    aupTimeoutVariable string
    Variable name
    authRequired boolean
    Enforce Authentication
    authRequiredVariable string
    Variable name
    blockInternetUntilAccepted boolean
    For first-time Acceptable User Policy behavior, block Internet access
    blockInternetUntilAcceptedVariable string
    Variable name
    cautionEnabled boolean
    Enable Caution
    cautionEnabledVariable string
    Variable name
    country boolean
    countryVariable string
    Variable name
    description string
    The description of the Feature
    displayTimeUnit string
    Display time unit
    displayTimeUnitVariable string
    Variable name
    dnBandwidth number
    dnBandwidthVariable string
    Variable name
    enforceBandwidthControl boolean
    enforceBandwidthControlVariable string
    Variable name
    featureProfileId string
    Feature Profile ID
    forceSslInspection boolean
    For first-time Acceptable User Policy behavior, force SSL inspection
    forceSslInspectionVariable string
    Variable name
    id string
    The id of the Feature
    idleTime number
    Idle time to disassociation
    idleTimeVariable string
    Variable name
    interfacePairs GetSseZscalerFeatureInterfacePair[]
    Interface Pair for active and backup
    interfaces GetSseZscalerFeatureInterface[]
    Interface name: IPsec when present
    ipEnforcedForKnownBrowsers boolean
    Enforce Surrogate IP for known browsers
    ipEnforcedForKnownBrowsersVariable string
    Variable name
    ipsControl boolean
    Enable IPS Control
    ipsControlVariable string
    Variable name
    locationName string
    Zscaler location name (optional)
    locationNameVariable string
    Variable name
    name string
    The name of the Feature
    ofwEnabled boolean
    Firewall enabled
    ofwEnabledVariable string
    Variable name
    primaryDataCenter string
    Custom Primary Datacenter
    primaryDataCenterVariable string
    Variable name
    refreshTime number
    Refresh time for re-validation of surrogacy in minutes
    refreshTimeUnit string
    Refresh Time unit
    refreshTimeUnitVariable string
    Variable name
    refreshTimeVariable string
    Variable name
    secondaryDataCenter string
    Custom Secondary Datacenter
    secondaryDataCenterVariable string
    Variable name
    srcVpn boolean
    Share Source VPN
    subLocations GetSseZscalerFeatureSubLocation[]
    surrogateIp boolean
    Enable Surrogate IP
    surrogateIpVariable string
    Variable name
    trackerSourceIp string
    Source IP address for Tracker
    trackerSourceIpVariable string
    Variable name
    trackers GetSseZscalerFeatureTracker[]
    Tracker configuration
    upBandwidth number
    upBandwidthVariable string
    Variable name
    version number
    The version of the Feature
    xffForwardEnabled boolean
    XFF forwarding enabled
    xffForwardEnabledVariable string
    Variable name
    aup_enabled bool
    Enable Acceptable User Policy
    aup_enabled_variable str
    Variable name
    aup_timeout int
    Custom Acceptable User Policy frequency in days
    aup_timeout_variable str
    Variable name
    auth_required bool
    Enforce Authentication
    auth_required_variable str
    Variable name
    block_internet_until_accepted bool
    For first-time Acceptable User Policy behavior, block Internet access
    block_internet_until_accepted_variable str
    Variable name
    caution_enabled bool
    Enable Caution
    caution_enabled_variable str
    Variable name
    country bool
    country_variable str
    Variable name
    description str
    The description of the Feature
    display_time_unit str
    Display time unit
    display_time_unit_variable str
    Variable name
    dn_bandwidth float
    dn_bandwidth_variable str
    Variable name
    enforce_bandwidth_control bool
    enforce_bandwidth_control_variable str
    Variable name
    feature_profile_id str
    Feature Profile ID
    force_ssl_inspection bool
    For first-time Acceptable User Policy behavior, force SSL inspection
    force_ssl_inspection_variable str
    Variable name
    id str
    The id of the Feature
    idle_time int
    Idle time to disassociation
    idle_time_variable str
    Variable name
    interface_pairs Sequence[GetSseZscalerFeatureInterfacePair]
    Interface Pair for active and backup
    interfaces Sequence[GetSseZscalerFeatureInterface]
    Interface name: IPsec when present
    ip_enforced_for_known_browsers bool
    Enforce Surrogate IP for known browsers
    ip_enforced_for_known_browsers_variable str
    Variable name
    ips_control bool
    Enable IPS Control
    ips_control_variable str
    Variable name
    location_name str
    Zscaler location name (optional)
    location_name_variable str
    Variable name
    name str
    The name of the Feature
    ofw_enabled bool
    Firewall enabled
    ofw_enabled_variable str
    Variable name
    primary_data_center str
    Custom Primary Datacenter
    primary_data_center_variable str
    Variable name
    refresh_time int
    Refresh time for re-validation of surrogacy in minutes
    refresh_time_unit str
    Refresh Time unit
    refresh_time_unit_variable str
    Variable name
    refresh_time_variable str
    Variable name
    secondary_data_center str
    Custom Secondary Datacenter
    secondary_data_center_variable str
    Variable name
    src_vpn bool
    Share Source VPN
    sub_locations Sequence[GetSseZscalerFeatureSubLocation]
    surrogate_ip bool
    Enable Surrogate IP
    surrogate_ip_variable str
    Variable name
    tracker_source_ip str
    Source IP address for Tracker
    tracker_source_ip_variable str
    Variable name
    trackers Sequence[GetSseZscalerFeatureTracker]
    Tracker configuration
    up_bandwidth float
    up_bandwidth_variable str
    Variable name
    version int
    The version of the Feature
    xff_forward_enabled bool
    XFF forwarding enabled
    xff_forward_enabled_variable str
    Variable name
    aupEnabled Boolean
    Enable Acceptable User Policy
    aupEnabledVariable String
    Variable name
    aupTimeout Number
    Custom Acceptable User Policy frequency in days
    aupTimeoutVariable String
    Variable name
    authRequired Boolean
    Enforce Authentication
    authRequiredVariable String
    Variable name
    blockInternetUntilAccepted Boolean
    For first-time Acceptable User Policy behavior, block Internet access
    blockInternetUntilAcceptedVariable String
    Variable name
    cautionEnabled Boolean
    Enable Caution
    cautionEnabledVariable String
    Variable name
    country Boolean
    countryVariable String
    Variable name
    description String
    The description of the Feature
    displayTimeUnit String
    Display time unit
    displayTimeUnitVariable String
    Variable name
    dnBandwidth Number
    dnBandwidthVariable String
    Variable name
    enforceBandwidthControl Boolean
    enforceBandwidthControlVariable String
    Variable name
    featureProfileId String
    Feature Profile ID
    forceSslInspection Boolean
    For first-time Acceptable User Policy behavior, force SSL inspection
    forceSslInspectionVariable String
    Variable name
    id String
    The id of the Feature
    idleTime Number
    Idle time to disassociation
    idleTimeVariable String
    Variable name
    interfacePairs List<Property Map>
    Interface Pair for active and backup
    interfaces List<Property Map>
    Interface name: IPsec when present
    ipEnforcedForKnownBrowsers Boolean
    Enforce Surrogate IP for known browsers
    ipEnforcedForKnownBrowsersVariable String
    Variable name
    ipsControl Boolean
    Enable IPS Control
    ipsControlVariable String
    Variable name
    locationName String
    Zscaler location name (optional)
    locationNameVariable String
    Variable name
    name String
    The name of the Feature
    ofwEnabled Boolean
    Firewall enabled
    ofwEnabledVariable String
    Variable name
    primaryDataCenter String
    Custom Primary Datacenter
    primaryDataCenterVariable String
    Variable name
    refreshTime Number
    Refresh time for re-validation of surrogacy in minutes
    refreshTimeUnit String
    Refresh Time unit
    refreshTimeUnitVariable String
    Variable name
    refreshTimeVariable String
    Variable name
    secondaryDataCenter String
    Custom Secondary Datacenter
    secondaryDataCenterVariable String
    Variable name
    srcVpn Boolean
    Share Source VPN
    subLocations List<Property Map>
    surrogateIp Boolean
    Enable Surrogate IP
    surrogateIpVariable String
    Variable name
    trackerSourceIp String
    Source IP address for Tracker
    trackerSourceIpVariable String
    Variable name
    trackers List<Property Map>
    Tracker configuration
    upBandwidth Number
    upBandwidthVariable String
    Variable name
    version Number
    The version of the Feature
    xffForwardEnabled Boolean
    XFF forwarding enabled
    xffForwardEnabledVariable String
    Variable name

    Supporting Types

    GetSseZscalerFeatureInterface

    Auto bool
    Auto Tunnel Mode
    DpdInterval int
    IKE keepalive interval (seconds)
    DpdIntervalVariable string
    Variable name
    DpdRetries int
    IKE keepalive retries
    DpdRetriesVariable string
    Variable name
    IkeCiphersuite string
    IKE identity the IKE preshared secret belongs to
    IkeCiphersuiteVariable string
    Variable name
    IkeGroup string
    IKE Diffie Hellman Groups
    IkeGroupVariable string
    Variable name
    IkeLocalId string
    IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
    IkeLocalIdVariable string
    Variable name
    IkeRekeyInterval int
    IKE rekey interval \n\n seconds
    IkeRekeyIntervalVariable string
    Variable name
    IkeRemoteId string
    IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
    IkeRemoteIdVariable string
    Variable name
    IkeVersion int
    IKE Version \n\n
    IkeVersionVariable string
    Variable name
    InterfaceDescription string
    Interface description
    InterfaceDescriptionVariable string
    Variable name
    InterfaceName string
    Interface name: IPsec when present
    IpsecCiphersuite string
    IPsec(ESP) encryption and integrity protocol
    IpsecCiphersuiteVariable string
    Variable name
    IpsecRekeyInterval int
    IPsec rekey interval \n\n seconds
    IpsecRekeyIntervalVariable string
    Variable name
    IpsecReplayWindow int
    Replay window size 32..8192 (must be a power of 2)
    IpsecReplayWindowVariable string
    Variable name
    Ipv4Address string
    Assign IPv4 address
    Ipv4AddressVariable string
    Variable name
    Mtu int
    Interface MTU \n\n, in bytes
    MtuVariable string
    Variable name
    PerfectForwardSecrecy string
    IPsec perfect forward secrecy settings
    PerfectForwardSecrecyVariable string
    Variable name
    PreSharedKeyDynamic bool
    Use preshared key to authenticate IKE peer
    PreSharedSecret string
    Use preshared key to authenticate IKE peer
    PreSharedSecretVariable string
    Variable name
    Shutdown bool
    Administrative state
    TcpMssAdjust int
    TCP MSS on SYN packets, in bytes
    TcpMssAdjustVariable string
    Variable name
    TrackEnable bool
    Enable/disable Zscaler SSE tracking
    Tracker string
    Enable tracker for this interface
    TunnelDcPreference string
    Zscaler SSE Tunnel Data Center
    TunnelDestination string
    Tunnel destination IP address
    TunnelDestinationVariable string
    Variable name
    TunnelPublicIp string
    Public IP required to setup GRE tunnel to Zscaler
    TunnelPublicIpVariable string
    Variable name
    TunnelRouteVia string
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    TunnelRouteViaVariable string
    Variable name
    TunnelSet string
    Zscaler SSE Tunnel Provider
    TunnelSource string
    Tunnel source IP Address
    TunnelSourceInterface string
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    TunnelSourceInterfaceVariable string
    Variable name
    TunnelSourceVariable string
    Variable name
    Unnumbered bool
    Unnumbered interface
    Auto bool
    Auto Tunnel Mode
    DpdInterval int
    IKE keepalive interval (seconds)
    DpdIntervalVariable string
    Variable name
    DpdRetries int
    IKE keepalive retries
    DpdRetriesVariable string
    Variable name
    IkeCiphersuite string
    IKE identity the IKE preshared secret belongs to
    IkeCiphersuiteVariable string
    Variable name
    IkeGroup string
    IKE Diffie Hellman Groups
    IkeGroupVariable string
    Variable name
    IkeLocalId string
    IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
    IkeLocalIdVariable string
    Variable name
    IkeRekeyInterval int
    IKE rekey interval \n\n seconds
    IkeRekeyIntervalVariable string
    Variable name
    IkeRemoteId string
    IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
    IkeRemoteIdVariable string
    Variable name
    IkeVersion int
    IKE Version \n\n
    IkeVersionVariable string
    Variable name
    InterfaceDescription string
    Interface description
    InterfaceDescriptionVariable string
    Variable name
    InterfaceName string
    Interface name: IPsec when present
    IpsecCiphersuite string
    IPsec(ESP) encryption and integrity protocol
    IpsecCiphersuiteVariable string
    Variable name
    IpsecRekeyInterval int
    IPsec rekey interval \n\n seconds
    IpsecRekeyIntervalVariable string
    Variable name
    IpsecReplayWindow int
    Replay window size 32..8192 (must be a power of 2)
    IpsecReplayWindowVariable string
    Variable name
    Ipv4Address string
    Assign IPv4 address
    Ipv4AddressVariable string
    Variable name
    Mtu int
    Interface MTU \n\n, in bytes
    MtuVariable string
    Variable name
    PerfectForwardSecrecy string
    IPsec perfect forward secrecy settings
    PerfectForwardSecrecyVariable string
    Variable name
    PreSharedKeyDynamic bool
    Use preshared key to authenticate IKE peer
    PreSharedSecret string
    Use preshared key to authenticate IKE peer
    PreSharedSecretVariable string
    Variable name
    Shutdown bool
    Administrative state
    TcpMssAdjust int
    TCP MSS on SYN packets, in bytes
    TcpMssAdjustVariable string
    Variable name
    TrackEnable bool
    Enable/disable Zscaler SSE tracking
    Tracker string
    Enable tracker for this interface
    TunnelDcPreference string
    Zscaler SSE Tunnel Data Center
    TunnelDestination string
    Tunnel destination IP address
    TunnelDestinationVariable string
    Variable name
    TunnelPublicIp string
    Public IP required to setup GRE tunnel to Zscaler
    TunnelPublicIpVariable string
    Variable name
    TunnelRouteVia string
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    TunnelRouteViaVariable string
    Variable name
    TunnelSet string
    Zscaler SSE Tunnel Provider
    TunnelSource string
    Tunnel source IP Address
    TunnelSourceInterface string
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    TunnelSourceInterfaceVariable string
    Variable name
    TunnelSourceVariable string
    Variable name
    Unnumbered bool
    Unnumbered interface
    auto bool
    Auto Tunnel Mode
    dpd_interval number
    IKE keepalive interval (seconds)
    dpd_interval_variable string
    Variable name
    dpd_retries number
    IKE keepalive retries
    dpd_retries_variable string
    Variable name
    ike_ciphersuite string
    IKE identity the IKE preshared secret belongs to
    ike_ciphersuite_variable string
    Variable name
    ike_group string
    IKE Diffie Hellman Groups
    ike_group_variable string
    Variable name
    ike_local_id string
    IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
    ike_local_id_variable string
    Variable name
    ike_rekey_interval number
    IKE rekey interval \n\n seconds
    ike_rekey_interval_variable string
    Variable name
    ike_remote_id string
    IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
    ike_remote_id_variable string
    Variable name
    ike_version number
    IKE Version \n\n
    ike_version_variable string
    Variable name
    interface_description string
    Interface description
    interface_description_variable string
    Variable name
    interface_name string
    Interface name: IPsec when present
    ipsec_ciphersuite string
    IPsec(ESP) encryption and integrity protocol
    ipsec_ciphersuite_variable string
    Variable name
    ipsec_rekey_interval number
    IPsec rekey interval \n\n seconds
    ipsec_rekey_interval_variable string
    Variable name
    ipsec_replay_window number
    Replay window size 32..8192 (must be a power of 2)
    ipsec_replay_window_variable string
    Variable name
    ipv4_address string
    Assign IPv4 address
    ipv4_address_variable string
    Variable name
    mtu number
    Interface MTU \n\n, in bytes
    mtu_variable string
    Variable name
    perfect_forward_secrecy string
    IPsec perfect forward secrecy settings
    perfect_forward_secrecy_variable string
    Variable name
    pre_shared_key_dynamic bool
    Use preshared key to authenticate IKE peer
    pre_shared_secret string
    Use preshared key to authenticate IKE peer
    pre_shared_secret_variable string
    Variable name
    shutdown bool
    Administrative state
    tcp_mss_adjust number
    TCP MSS on SYN packets, in bytes
    tcp_mss_adjust_variable string
    Variable name
    track_enable bool
    Enable/disable Zscaler SSE tracking
    tracker string
    Enable tracker for this interface
    tunnel_dc_preference string
    Zscaler SSE Tunnel Data Center
    tunnel_destination string
    Tunnel destination IP address
    tunnel_destination_variable string
    Variable name
    tunnel_public_ip string
    Public IP required to setup GRE tunnel to Zscaler
    tunnel_public_ip_variable string
    Variable name
    tunnel_route_via string
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    tunnel_route_via_variable string
    Variable name
    tunnel_set string
    Zscaler SSE Tunnel Provider
    tunnel_source string
    Tunnel source IP Address
    tunnel_source_interface string
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    tunnel_source_interface_variable string
    Variable name
    tunnel_source_variable string
    Variable name
    unnumbered bool
    Unnumbered interface
    auto Boolean
    Auto Tunnel Mode
    dpdInterval Integer
    IKE keepalive interval (seconds)
    dpdIntervalVariable String
    Variable name
    dpdRetries Integer
    IKE keepalive retries
    dpdRetriesVariable String
    Variable name
    ikeCiphersuite String
    IKE identity the IKE preshared secret belongs to
    ikeCiphersuiteVariable String
    Variable name
    ikeGroup String
    IKE Diffie Hellman Groups
    ikeGroupVariable String
    Variable name
    ikeLocalId String
    IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
    ikeLocalIdVariable String
    Variable name
    ikeRekeyInterval Integer
    IKE rekey interval \n\n seconds
    ikeRekeyIntervalVariable String
    Variable name
    ikeRemoteId String
    IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
    ikeRemoteIdVariable String
    Variable name
    ikeVersion Integer
    IKE Version \n\n
    ikeVersionVariable String
    Variable name
    interfaceDescription String
    Interface description
    interfaceDescriptionVariable String
    Variable name
    interfaceName String
    Interface name: IPsec when present
    ipsecCiphersuite String
    IPsec(ESP) encryption and integrity protocol
    ipsecCiphersuiteVariable String
    Variable name
    ipsecRekeyInterval Integer
    IPsec rekey interval \n\n seconds
    ipsecRekeyIntervalVariable String
    Variable name
    ipsecReplayWindow Integer
    Replay window size 32..8192 (must be a power of 2)
    ipsecReplayWindowVariable String
    Variable name
    ipv4Address String
    Assign IPv4 address
    ipv4AddressVariable String
    Variable name
    mtu Integer
    Interface MTU \n\n, in bytes
    mtuVariable String
    Variable name
    perfectForwardSecrecy String
    IPsec perfect forward secrecy settings
    perfectForwardSecrecyVariable String
    Variable name
    preSharedKeyDynamic Boolean
    Use preshared key to authenticate IKE peer
    preSharedSecret String
    Use preshared key to authenticate IKE peer
    preSharedSecretVariable String
    Variable name
    shutdown Boolean
    Administrative state
    tcpMssAdjust Integer
    TCP MSS on SYN packets, in bytes
    tcpMssAdjustVariable String
    Variable name
    trackEnable Boolean
    Enable/disable Zscaler SSE tracking
    tracker String
    Enable tracker for this interface
    tunnelDcPreference String
    Zscaler SSE Tunnel Data Center
    tunnelDestination String
    Tunnel destination IP address
    tunnelDestinationVariable String
    Variable name
    tunnelPublicIp String
    Public IP required to setup GRE tunnel to Zscaler
    tunnelPublicIpVariable String
    Variable name
    tunnelRouteVia String
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    tunnelRouteViaVariable String
    Variable name
    tunnelSet String
    Zscaler SSE Tunnel Provider
    tunnelSource String
    Tunnel source IP Address
    tunnelSourceInterface String
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    tunnelSourceInterfaceVariable String
    Variable name
    tunnelSourceVariable String
    Variable name
    unnumbered Boolean
    Unnumbered interface
    auto boolean
    Auto Tunnel Mode
    dpdInterval number
    IKE keepalive interval (seconds)
    dpdIntervalVariable string
    Variable name
    dpdRetries number
    IKE keepalive retries
    dpdRetriesVariable string
    Variable name
    ikeCiphersuite string
    IKE identity the IKE preshared secret belongs to
    ikeCiphersuiteVariable string
    Variable name
    ikeGroup string
    IKE Diffie Hellman Groups
    ikeGroupVariable string
    Variable name
    ikeLocalId string
    IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
    ikeLocalIdVariable string
    Variable name
    ikeRekeyInterval number
    IKE rekey interval \n\n seconds
    ikeRekeyIntervalVariable string
    Variable name
    ikeRemoteId string
    IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
    ikeRemoteIdVariable string
    Variable name
    ikeVersion number
    IKE Version \n\n
    ikeVersionVariable string
    Variable name
    interfaceDescription string
    Interface description
    interfaceDescriptionVariable string
    Variable name
    interfaceName string
    Interface name: IPsec when present
    ipsecCiphersuite string
    IPsec(ESP) encryption and integrity protocol
    ipsecCiphersuiteVariable string
    Variable name
    ipsecRekeyInterval number
    IPsec rekey interval \n\n seconds
    ipsecRekeyIntervalVariable string
    Variable name
    ipsecReplayWindow number
    Replay window size 32..8192 (must be a power of 2)
    ipsecReplayWindowVariable string
    Variable name
    ipv4Address string
    Assign IPv4 address
    ipv4AddressVariable string
    Variable name
    mtu number
    Interface MTU \n\n, in bytes
    mtuVariable string
    Variable name
    perfectForwardSecrecy string
    IPsec perfect forward secrecy settings
    perfectForwardSecrecyVariable string
    Variable name
    preSharedKeyDynamic boolean
    Use preshared key to authenticate IKE peer
    preSharedSecret string
    Use preshared key to authenticate IKE peer
    preSharedSecretVariable string
    Variable name
    shutdown boolean
    Administrative state
    tcpMssAdjust number
    TCP MSS on SYN packets, in bytes
    tcpMssAdjustVariable string
    Variable name
    trackEnable boolean
    Enable/disable Zscaler SSE tracking
    tracker string
    Enable tracker for this interface
    tunnelDcPreference string
    Zscaler SSE Tunnel Data Center
    tunnelDestination string
    Tunnel destination IP address
    tunnelDestinationVariable string
    Variable name
    tunnelPublicIp string
    Public IP required to setup GRE tunnel to Zscaler
    tunnelPublicIpVariable string
    Variable name
    tunnelRouteVia string
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    tunnelRouteViaVariable string
    Variable name
    tunnelSet string
    Zscaler SSE Tunnel Provider
    tunnelSource string
    Tunnel source IP Address
    tunnelSourceInterface string
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    tunnelSourceInterfaceVariable string
    Variable name
    tunnelSourceVariable string
    Variable name
    unnumbered boolean
    Unnumbered interface
    auto bool
    Auto Tunnel Mode
    dpd_interval int
    IKE keepalive interval (seconds)
    dpd_interval_variable str
    Variable name
    dpd_retries int
    IKE keepalive retries
    dpd_retries_variable str
    Variable name
    ike_ciphersuite str
    IKE identity the IKE preshared secret belongs to
    ike_ciphersuite_variable str
    Variable name
    ike_group str
    IKE Diffie Hellman Groups
    ike_group_variable str
    Variable name
    ike_local_id str
    IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
    ike_local_id_variable str
    Variable name
    ike_rekey_interval int
    IKE rekey interval \n\n seconds
    ike_rekey_interval_variable str
    Variable name
    ike_remote_id str
    IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
    ike_remote_id_variable str
    Variable name
    ike_version int
    IKE Version \n\n
    ike_version_variable str
    Variable name
    interface_description str
    Interface description
    interface_description_variable str
    Variable name
    interface_name str
    Interface name: IPsec when present
    ipsec_ciphersuite str
    IPsec(ESP) encryption and integrity protocol
    ipsec_ciphersuite_variable str
    Variable name
    ipsec_rekey_interval int
    IPsec rekey interval \n\n seconds
    ipsec_rekey_interval_variable str
    Variable name
    ipsec_replay_window int
    Replay window size 32..8192 (must be a power of 2)
    ipsec_replay_window_variable str
    Variable name
    ipv4_address str
    Assign IPv4 address
    ipv4_address_variable str
    Variable name
    mtu int
    Interface MTU \n\n, in bytes
    mtu_variable str
    Variable name
    perfect_forward_secrecy str
    IPsec perfect forward secrecy settings
    perfect_forward_secrecy_variable str
    Variable name
    pre_shared_key_dynamic bool
    Use preshared key to authenticate IKE peer
    pre_shared_secret str
    Use preshared key to authenticate IKE peer
    pre_shared_secret_variable str
    Variable name
    shutdown bool
    Administrative state
    tcp_mss_adjust int
    TCP MSS on SYN packets, in bytes
    tcp_mss_adjust_variable str
    Variable name
    track_enable bool
    Enable/disable Zscaler SSE tracking
    tracker str
    Enable tracker for this interface
    tunnel_dc_preference str
    Zscaler SSE Tunnel Data Center
    tunnel_destination str
    Tunnel destination IP address
    tunnel_destination_variable str
    Variable name
    tunnel_public_ip str
    Public IP required to setup GRE tunnel to Zscaler
    tunnel_public_ip_variable str
    Variable name
    tunnel_route_via str
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    tunnel_route_via_variable str
    Variable name
    tunnel_set str
    Zscaler SSE Tunnel Provider
    tunnel_source str
    Tunnel source IP Address
    tunnel_source_interface str
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    tunnel_source_interface_variable str
    Variable name
    tunnel_source_variable str
    Variable name
    unnumbered bool
    Unnumbered interface
    auto Boolean
    Auto Tunnel Mode
    dpdInterval Number
    IKE keepalive interval (seconds)
    dpdIntervalVariable String
    Variable name
    dpdRetries Number
    IKE keepalive retries
    dpdRetriesVariable String
    Variable name
    ikeCiphersuite String
    IKE identity the IKE preshared secret belongs to
    ikeCiphersuiteVariable String
    Variable name
    ikeGroup String
    IKE Diffie Hellman Groups
    ikeGroupVariable String
    Variable name
    ikeLocalId String
    IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
    ikeLocalIdVariable String
    Variable name
    ikeRekeyInterval Number
    IKE rekey interval \n\n seconds
    ikeRekeyIntervalVariable String
    Variable name
    ikeRemoteId String
    IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
    ikeRemoteIdVariable String
    Variable name
    ikeVersion Number
    IKE Version \n\n
    ikeVersionVariable String
    Variable name
    interfaceDescription String
    Interface description
    interfaceDescriptionVariable String
    Variable name
    interfaceName String
    Interface name: IPsec when present
    ipsecCiphersuite String
    IPsec(ESP) encryption and integrity protocol
    ipsecCiphersuiteVariable String
    Variable name
    ipsecRekeyInterval Number
    IPsec rekey interval \n\n seconds
    ipsecRekeyIntervalVariable String
    Variable name
    ipsecReplayWindow Number
    Replay window size 32..8192 (must be a power of 2)
    ipsecReplayWindowVariable String
    Variable name
    ipv4Address String
    Assign IPv4 address
    ipv4AddressVariable String
    Variable name
    mtu Number
    Interface MTU \n\n, in bytes
    mtuVariable String
    Variable name
    perfectForwardSecrecy String
    IPsec perfect forward secrecy settings
    perfectForwardSecrecyVariable String
    Variable name
    preSharedKeyDynamic Boolean
    Use preshared key to authenticate IKE peer
    preSharedSecret String
    Use preshared key to authenticate IKE peer
    preSharedSecretVariable String
    Variable name
    shutdown Boolean
    Administrative state
    tcpMssAdjust Number
    TCP MSS on SYN packets, in bytes
    tcpMssAdjustVariable String
    Variable name
    trackEnable Boolean
    Enable/disable Zscaler SSE tracking
    tracker String
    Enable tracker for this interface
    tunnelDcPreference String
    Zscaler SSE Tunnel Data Center
    tunnelDestination String
    Tunnel destination IP address
    tunnelDestinationVariable String
    Variable name
    tunnelPublicIp String
    Public IP required to setup GRE tunnel to Zscaler
    tunnelPublicIpVariable String
    Variable name
    tunnelRouteVia String
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    tunnelRouteViaVariable String
    Variable name
    tunnelSet String
    Zscaler SSE Tunnel Provider
    tunnelSource String
    Tunnel source IP Address
    tunnelSourceInterface String
    \n\n Interface name: ge0/\n\n or ge0/\n\n.vlanid
    tunnelSourceInterfaceVariable String
    Variable name
    tunnelSourceVariable String
    Variable name
    unnumbered Boolean
    Unnumbered interface

    GetSseZscalerFeatureInterfacePair

    ActiveInterface string
    Active Tunnel Interface for Zscaler SSE
    ActiveInterfaceWeight int
    Active Tunnel Interface Weight
    BackupInterface string
    Backup Tunnel Interface for Zscaler SSE
    BackupInterfaceWeight int
    Backup Tunnel Interface Weight
    ActiveInterface string
    Active Tunnel Interface for Zscaler SSE
    ActiveInterfaceWeight int
    Active Tunnel Interface Weight
    BackupInterface string
    Backup Tunnel Interface for Zscaler SSE
    BackupInterfaceWeight int
    Backup Tunnel Interface Weight
    active_interface string
    Active Tunnel Interface for Zscaler SSE
    active_interface_weight number
    Active Tunnel Interface Weight
    backup_interface string
    Backup Tunnel Interface for Zscaler SSE
    backup_interface_weight number
    Backup Tunnel Interface Weight
    activeInterface String
    Active Tunnel Interface for Zscaler SSE
    activeInterfaceWeight Integer
    Active Tunnel Interface Weight
    backupInterface String
    Backup Tunnel Interface for Zscaler SSE
    backupInterfaceWeight Integer
    Backup Tunnel Interface Weight
    activeInterface string
    Active Tunnel Interface for Zscaler SSE
    activeInterfaceWeight number
    Active Tunnel Interface Weight
    backupInterface string
    Backup Tunnel Interface for Zscaler SSE
    backupInterfaceWeight number
    Backup Tunnel Interface Weight
    active_interface str
    Active Tunnel Interface for Zscaler SSE
    active_interface_weight int
    Active Tunnel Interface Weight
    backup_interface str
    Backup Tunnel Interface for Zscaler SSE
    backup_interface_weight int
    Backup Tunnel Interface Weight
    activeInterface String
    Active Tunnel Interface for Zscaler SSE
    activeInterfaceWeight Number
    Active Tunnel Interface Weight
    backupInterface String
    Backup Tunnel Interface for Zscaler SSE
    backupInterfaceWeight Number
    Backup Tunnel Interface Weight

    GetSseZscalerFeatureSubLocation

    AupEnabled bool
    Displays an Acceptable Use Policy for unauthenticated traffic and require users to accept it
    AupEnabledVariable string
    Variable name
    AupTimeout int
    How frequently in days the Acceptable Use Policy is displayed to users
    AupTimeoutVariable string
    Variable name
    AuthRequired bool
    Enable Enforce Authentication to require users from this location to authenticate to the service.
    AuthRequiredVariable string
    Variable name
    BlockInternetUntilAccepted bool
    Disable all access to the internet, including non-HTTP traffic, until the user accepts the Acceptable Use Policy
    BlockInternetUntilAcceptedVariable string
    Variable name
    CautionEnabled 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.
    CautionEnabledVariable string
    Variable name
    DisplayTimeUnit string
    Display time unit for Idle Time to Disassociation
    DisplayTimeUnitVariable string
    Variable name
    DnBandwidth double
    DnBandwidthVariable string
    Variable name
    EnforceBandwidthControl string
    Enforce Bandwidth Control for sub location
    EnforceBandwidthControlVariable string
    Variable name
    ForceSslInspection bool
    Enable to make SSL Interception enforce an Acceptable Use Policy for HTTPS traffic
    ForceSslInspectionVariable string
    Variable name
    IdleTime int
    Idle time to disassociation. How long after a completed transaction the service retains the IP address to user mapping.
    IdleTimeVariable string
    Variable name
    InternalIps List<GetSseZscalerFeatureSubLocationInternalIp>
    IpEnforcedForKnownBrowsers bool
    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
    IpEnforcedForKnownBrowsersVariable string
    Variable name
    Name string
    NameVariable string
    Variable name
    OfwEnabled bool
    Enforces firewall at the location
    OfwEnabledVariable string
    Variable name
    RefreshTime 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
    RefreshTimeUnit string
    Refresh Time display unit
    RefreshTimeUnitVariable string
    Variable name
    RefreshTimeVariable string
    Variable name
    ServiceVpnVariable string
    Variable name
    ServiceVpns List<string>
    SurrogateIp bool
    Enable Surrogate IP. Maps users to device IP addresses. This is used to enforce user policies on cookie-compatible traffic.
    SurrogateIpVariable string
    Variable name
    UpBandwidth double
    UpBandwidthVariable string
    Variable name
    AupEnabled bool
    Displays an Acceptable Use Policy for unauthenticated traffic and require users to accept it
    AupEnabledVariable string
    Variable name
    AupTimeout int
    How frequently in days the Acceptable Use Policy is displayed to users
    AupTimeoutVariable string
    Variable name
    AuthRequired bool
    Enable Enforce Authentication to require users from this location to authenticate to the service.
    AuthRequiredVariable string
    Variable name
    BlockInternetUntilAccepted bool
    Disable all access to the internet, including non-HTTP traffic, until the user accepts the Acceptable Use Policy
    BlockInternetUntilAcceptedVariable string
    Variable name
    CautionEnabled 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.
    CautionEnabledVariable string
    Variable name
    DisplayTimeUnit string
    Display time unit for Idle Time to Disassociation
    DisplayTimeUnitVariable string
    Variable name
    DnBandwidth float64
    DnBandwidthVariable string
    Variable name
    EnforceBandwidthControl string
    Enforce Bandwidth Control for sub location
    EnforceBandwidthControlVariable string
    Variable name
    ForceSslInspection bool
    Enable to make SSL Interception enforce an Acceptable Use Policy for HTTPS traffic
    ForceSslInspectionVariable string
    Variable name
    IdleTime int
    Idle time to disassociation. How long after a completed transaction the service retains the IP address to user mapping.
    IdleTimeVariable string
    Variable name
    InternalIps []GetSseZscalerFeatureSubLocationInternalIp
    IpEnforcedForKnownBrowsers bool
    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
    IpEnforcedForKnownBrowsersVariable string
    Variable name
    Name string
    NameVariable string
    Variable name
    OfwEnabled bool
    Enforces firewall at the location
    OfwEnabledVariable string
    Variable name
    RefreshTime 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
    RefreshTimeUnit string
    Refresh Time display unit
    RefreshTimeUnitVariable string
    Variable name
    RefreshTimeVariable string
    Variable name
    ServiceVpnVariable string
    Variable name
    ServiceVpns []string
    SurrogateIp bool
    Enable Surrogate IP. Maps users to device IP addresses. This is used to enforce user policies on cookie-compatible traffic.
    SurrogateIpVariable string
    Variable name
    UpBandwidth float64
    UpBandwidthVariable string
    Variable name
    aup_enabled bool
    Displays an Acceptable Use Policy for unauthenticated traffic and require users to accept it
    aup_enabled_variable string
    Variable name
    aup_timeout number
    How frequently in days the Acceptable Use Policy is displayed to users
    aup_timeout_variable string
    Variable name
    auth_required bool
    Enable Enforce Authentication to require users from this location to authenticate to the service.
    auth_required_variable string
    Variable name
    block_internet_until_accepted bool
    Disable all access to the internet, including non-HTTP traffic, until the user accepts the Acceptable Use Policy
    block_internet_until_accepted_variable string
    Variable name
    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.
    caution_enabled_variable string
    Variable name
    display_time_unit string
    Display time unit for Idle Time to Disassociation
    display_time_unit_variable string
    Variable name
    dn_bandwidth number
    dn_bandwidth_variable string
    Variable name
    enforce_bandwidth_control string
    Enforce Bandwidth Control for sub location
    enforce_bandwidth_control_variable string
    Variable name
    force_ssl_inspection bool
    Enable to make SSL Interception enforce an Acceptable Use Policy for HTTPS traffic
    force_ssl_inspection_variable string
    Variable name
    idle_time number
    Idle time to disassociation. How long after a completed transaction the service retains the IP address to user mapping.
    idle_time_variable string
    Variable name
    internal_ips list(object)
    ip_enforced_for_known_browsers bool
    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
    ip_enforced_for_known_browsers_variable string
    Variable name
    name string
    name_variable string
    Variable name
    ofw_enabled bool
    Enforces firewall at the location
    ofw_enabled_variable string
    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
    refresh_time_unit string
    Refresh Time display unit
    refresh_time_unit_variable string
    Variable name
    refresh_time_variable string
    Variable name
    service_vpn_variable string
    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.
    surrogate_ip_variable string
    Variable name
    up_bandwidth number
    up_bandwidth_variable string
    Variable name
    aupEnabled Boolean
    Displays an Acceptable Use Policy for unauthenticated traffic and require users to accept it
    aupEnabledVariable String
    Variable name
    aupTimeout Integer
    How frequently in days the Acceptable Use Policy is displayed to users
    aupTimeoutVariable String
    Variable name
    authRequired Boolean
    Enable Enforce Authentication to require users from this location to authenticate to the service.
    authRequiredVariable String
    Variable name
    blockInternetUntilAccepted Boolean
    Disable all access to the internet, including non-HTTP traffic, until the user accepts the Acceptable Use Policy
    blockInternetUntilAcceptedVariable String
    Variable name
    cautionEnabled 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.
    cautionEnabledVariable String
    Variable name
    displayTimeUnit String
    Display time unit for Idle Time to Disassociation
    displayTimeUnitVariable String
    Variable name
    dnBandwidth Double
    dnBandwidthVariable String
    Variable name
    enforceBandwidthControl String
    Enforce Bandwidth Control for sub location
    enforceBandwidthControlVariable String
    Variable name
    forceSslInspection Boolean
    Enable to make SSL Interception enforce an Acceptable Use Policy for HTTPS traffic
    forceSslInspectionVariable String
    Variable name
    idleTime Integer
    Idle time to disassociation. How long after a completed transaction the service retains the IP address to user mapping.
    idleTimeVariable String
    Variable name
    internalIps List<GetSseZscalerFeatureSubLocationInternalIp>
    ipEnforcedForKnownBrowsers Boolean
    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
    ipEnforcedForKnownBrowsersVariable String
    Variable name
    name String
    nameVariable String
    Variable name
    ofwEnabled Boolean
    Enforces firewall at the location
    ofwEnabledVariable String
    Variable name
    refreshTime 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
    refreshTimeUnit String
    Refresh Time display unit
    refreshTimeUnitVariable String
    Variable name
    refreshTimeVariable String
    Variable name
    serviceVpnVariable String
    Variable name
    serviceVpns List<String>
    surrogateIp Boolean
    Enable Surrogate IP. Maps users to device IP addresses. This is used to enforce user policies on cookie-compatible traffic.
    surrogateIpVariable String
    Variable name
    upBandwidth Double
    upBandwidthVariable String
    Variable name
    aupEnabled boolean
    Displays an Acceptable Use Policy for unauthenticated traffic and require users to accept it
    aupEnabledVariable string
    Variable name
    aupTimeout number
    How frequently in days the Acceptable Use Policy is displayed to users
    aupTimeoutVariable string
    Variable name
    authRequired boolean
    Enable Enforce Authentication to require users from this location to authenticate to the service.
    authRequiredVariable string
    Variable name
    blockInternetUntilAccepted boolean
    Disable all access to the internet, including non-HTTP traffic, until the user accepts the Acceptable Use Policy
    blockInternetUntilAcceptedVariable string
    Variable name
    cautionEnabled 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.
    cautionEnabledVariable string
    Variable name
    displayTimeUnit string
    Display time unit for Idle Time to Disassociation
    displayTimeUnitVariable string
    Variable name
    dnBandwidth number
    dnBandwidthVariable string
    Variable name
    enforceBandwidthControl string
    Enforce Bandwidth Control for sub location
    enforceBandwidthControlVariable string
    Variable name
    forceSslInspection boolean
    Enable to make SSL Interception enforce an Acceptable Use Policy for HTTPS traffic
    forceSslInspectionVariable string
    Variable name
    idleTime number
    Idle time to disassociation. How long after a completed transaction the service retains the IP address to user mapping.
    idleTimeVariable string
    Variable name
    internalIps GetSseZscalerFeatureSubLocationInternalIp[]
    ipEnforcedForKnownBrowsers boolean
    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
    ipEnforcedForKnownBrowsersVariable string
    Variable name
    name string
    nameVariable string
    Variable name
    ofwEnabled boolean
    Enforces firewall at the location
    ofwEnabledVariable string
    Variable name
    refreshTime 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
    refreshTimeUnit string
    Refresh Time display unit
    refreshTimeUnitVariable string
    Variable name
    refreshTimeVariable string
    Variable name
    serviceVpnVariable string
    Variable name
    serviceVpns string[]
    surrogateIp boolean
    Enable Surrogate IP. Maps users to device IP addresses. This is used to enforce user policies on cookie-compatible traffic.
    surrogateIpVariable string
    Variable name
    upBandwidth number
    upBandwidthVariable string
    Variable name
    aup_enabled bool
    Displays an Acceptable Use Policy for unauthenticated traffic and require users to accept it
    aup_enabled_variable str
    Variable name
    aup_timeout int
    How frequently in days the Acceptable Use Policy is displayed to users
    aup_timeout_variable str
    Variable name
    auth_required bool
    Enable Enforce Authentication to require users from this location to authenticate to the service.
    auth_required_variable str
    Variable name
    block_internet_until_accepted bool
    Disable all access to the internet, including non-HTTP traffic, until the user accepts the Acceptable Use Policy
    block_internet_until_accepted_variable str
    Variable name
    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.
    caution_enabled_variable str
    Variable name
    display_time_unit str
    Display time unit for Idle Time to Disassociation
    display_time_unit_variable str
    Variable name
    dn_bandwidth float
    dn_bandwidth_variable str
    Variable name
    enforce_bandwidth_control str
    Enforce Bandwidth Control for sub location
    enforce_bandwidth_control_variable str
    Variable name
    force_ssl_inspection bool
    Enable to make SSL Interception enforce an Acceptable Use Policy for HTTPS traffic
    force_ssl_inspection_variable str
    Variable name
    idle_time int
    Idle time to disassociation. How long after a completed transaction the service retains the IP address to user mapping.
    idle_time_variable str
    Variable name
    internal_ips Sequence[GetSseZscalerFeatureSubLocationInternalIp]
    ip_enforced_for_known_browsers bool
    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
    ip_enforced_for_known_browsers_variable str
    Variable name
    name str
    name_variable str
    Variable name
    ofw_enabled bool
    Enforces firewall at the location
    ofw_enabled_variable str
    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
    refresh_time_unit str
    Refresh Time display unit
    refresh_time_unit_variable str
    Variable name
    refresh_time_variable str
    Variable name
    service_vpn_variable str
    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.
    surrogate_ip_variable str
    Variable name
    up_bandwidth float
    up_bandwidth_variable str
    Variable name
    aupEnabled Boolean
    Displays an Acceptable Use Policy for unauthenticated traffic and require users to accept it
    aupEnabledVariable String
    Variable name
    aupTimeout Number
    How frequently in days the Acceptable Use Policy is displayed to users
    aupTimeoutVariable String
    Variable name
    authRequired Boolean
    Enable Enforce Authentication to require users from this location to authenticate to the service.
    authRequiredVariable String
    Variable name
    blockInternetUntilAccepted Boolean
    Disable all access to the internet, including non-HTTP traffic, until the user accepts the Acceptable Use Policy
    blockInternetUntilAcceptedVariable String
    Variable name
    cautionEnabled 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.
    cautionEnabledVariable String
    Variable name
    displayTimeUnit String
    Display time unit for Idle Time to Disassociation
    displayTimeUnitVariable String
    Variable name
    dnBandwidth Number
    dnBandwidthVariable String
    Variable name
    enforceBandwidthControl String
    Enforce Bandwidth Control for sub location
    enforceBandwidthControlVariable String
    Variable name
    forceSslInspection Boolean
    Enable to make SSL Interception enforce an Acceptable Use Policy for HTTPS traffic
    forceSslInspectionVariable String
    Variable name
    idleTime Number
    Idle time to disassociation. How long after a completed transaction the service retains the IP address to user mapping.
    idleTimeVariable String
    Variable name
    internalIps List<Property Map>
    ipEnforcedForKnownBrowsers Boolean
    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
    ipEnforcedForKnownBrowsersVariable String
    Variable name
    name String
    nameVariable String
    Variable name
    ofwEnabled Boolean
    Enforces firewall at the location
    ofwEnabledVariable String
    Variable name
    refreshTime 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
    refreshTimeUnit String
    Refresh Time display unit
    refreshTimeUnitVariable String
    Variable name
    refreshTimeVariable String
    Variable name
    serviceVpnVariable String
    Variable name
    serviceVpns List<String>
    surrogateIp Boolean
    Enable Surrogate IP. Maps users to device IP addresses. This is used to enforce user policies on cookie-compatible traffic.
    surrogateIpVariable String
    Variable name
    upBandwidth Number
    upBandwidthVariable String
    Variable name

    GetSseZscalerFeatureSubLocationInternalIp

    InternalIpValue string
    InternalIpValueVariable string
    Variable name
    InternalIpValue string
    InternalIpValueVariable string
    Variable name
    internalIpValue String
    internalIpValueVariable String
    Variable name
    internalIpValue string
    internalIpValueVariable string
    Variable name
    internalIpValue String
    internalIpValueVariable String
    Variable name

    GetSseZscalerFeatureTracker

    EndpointApiUrl string
    API url of endpoint
    EndpointApiUrlVariable string
    Variable name
    Interval int
    Probe interval \n\n seconds
    IntervalVariable string
    Variable name
    Multiplier int
    Probe failure multiplier \n\n failed attempts
    MultiplierVariable string
    Variable name
    Name string
    Tracker name
    Threshold int
    Probe Timeout threshold \n\n milliseconds
    ThresholdVariable string
    Variable name
    EndpointApiUrl string
    API url of endpoint
    EndpointApiUrlVariable string
    Variable name
    Interval int
    Probe interval \n\n seconds
    IntervalVariable string
    Variable name
    Multiplier int
    Probe failure multiplier \n\n failed attempts
    MultiplierVariable string
    Variable name
    Name string
    Tracker name
    Threshold int
    Probe Timeout threshold \n\n milliseconds
    ThresholdVariable string
    Variable name
    endpoint_api_url string
    API url of endpoint
    endpoint_api_url_variable string
    Variable name
    interval number
    Probe interval \n\n seconds
    interval_variable string
    Variable name
    multiplier number
    Probe failure multiplier \n\n failed attempts
    multiplier_variable string
    Variable name
    name string
    Tracker name
    threshold number
    Probe Timeout threshold \n\n milliseconds
    threshold_variable string
    Variable name
    endpointApiUrl String
    API url of endpoint
    endpointApiUrlVariable String
    Variable name
    interval Integer
    Probe interval \n\n seconds
    intervalVariable String
    Variable name
    multiplier Integer
    Probe failure multiplier \n\n failed attempts
    multiplierVariable String
    Variable name
    name String
    Tracker name
    threshold Integer
    Probe Timeout threshold \n\n milliseconds
    thresholdVariable String
    Variable name
    endpointApiUrl string
    API url of endpoint
    endpointApiUrlVariable string
    Variable name
    interval number
    Probe interval \n\n seconds
    intervalVariable string
    Variable name
    multiplier number
    Probe failure multiplier \n\n failed attempts
    multiplierVariable string
    Variable name
    name string
    Tracker name
    threshold number
    Probe Timeout threshold \n\n milliseconds
    thresholdVariable string
    Variable name
    endpoint_api_url str
    API url of endpoint
    endpoint_api_url_variable str
    Variable name
    interval int
    Probe interval \n\n seconds
    interval_variable str
    Variable name
    multiplier int
    Probe failure multiplier \n\n failed attempts
    multiplier_variable str
    Variable name
    name str
    Tracker name
    threshold int
    Probe Timeout threshold \n\n milliseconds
    threshold_variable str
    Variable name
    endpointApiUrl String
    API url of endpoint
    endpointApiUrlVariable String
    Variable name
    interval Number
    Probe interval \n\n seconds
    intervalVariable String
    Variable name
    multiplier Number
    Probe failure multiplier \n\n failed attempts
    multiplierVariable String
    Variable name
    name String
    Tracker name
    threshold Number
    Probe Timeout threshold \n\n milliseconds
    thresholdVariable String
    Variable name

    Package Details

    Repository
    sdwan pulumi/pulumi-sdwan
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the sdwan Terraform Provider.
    sdwan logo
    Viewing docs for Cisco Catalyst SD-WAN v0.9.1
    published on Friday, Jun 26, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial