1. Packages
  2. Zscaler Private Access (ZPA)
  3. API Docs
  4. getBrowserProtection
Zscaler Private Access v1.0.3 published on Wednesday, Jan 21, 2026 by Zscaler
zpa logo
Zscaler Private Access v1.0.3 published on Wednesday, Jan 21, 2026 by Zscaler

    Use the zpa_browser_protection data source to get information about managed browser protection profiles within the Zscaler Private Access cloud. This data source can be used when configuring zpa.PolicyBrowserProtectionRule.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as zpa from "@bdzscaler/pulumi-zpa";
    
    const _this = zpa.getBrowserProtection({
        name: "Profile01",
    });
    
    import pulumi
    import pulumi_zpa as zpa
    
    this = zpa.get_browser_protection(name="Profile01")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/zscaler/pulumi-zpa/sdk/go/zpa"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := zpa.GetBrowserProtection(ctx, &zpa.GetBrowserProtectionArgs{
    			Name: pulumi.StringRef("Profile01"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Zpa = Pulumi.Zpa;
    
    return await Deployment.RunAsync(() => 
    {
        var @this = Zpa.GetBrowserProtection.Invoke(new()
        {
            Name = "Profile01",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.zpa.ZpaFunctions;
    import com.pulumi.zpa.inputs.GetBrowserProtectionArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var this = ZpaFunctions.getBrowserProtection(GetBrowserProtectionArgs.builder()
                .name("Profile01")
                .build());
    
        }
    }
    
    variables:
      this:
        fn::invoke:
          function: zpa:getBrowserProtection
          arguments:
            name: Profile01
    

    Using getBrowserProtection

    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 getBrowserProtection(args: GetBrowserProtectionArgs, opts?: InvokeOptions): Promise<GetBrowserProtectionResult>
    function getBrowserProtectionOutput(args: GetBrowserProtectionOutputArgs, opts?: InvokeOptions): Output<GetBrowserProtectionResult>
    def get_browser_protection(name: Optional[str] = None,
                               opts: Optional[InvokeOptions] = None) -> GetBrowserProtectionResult
    def get_browser_protection_output(name: Optional[pulumi.Input[str]] = None,
                               opts: Optional[InvokeOptions] = None) -> Output[GetBrowserProtectionResult]
    func GetBrowserProtection(ctx *Context, args *GetBrowserProtectionArgs, opts ...InvokeOption) (*GetBrowserProtectionResult, error)
    func GetBrowserProtectionOutput(ctx *Context, args *GetBrowserProtectionOutputArgs, opts ...InvokeOption) GetBrowserProtectionResultOutput

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

    public static class GetBrowserProtection 
    {
        public static Task<GetBrowserProtectionResult> InvokeAsync(GetBrowserProtectionArgs args, InvokeOptions? opts = null)
        public static Output<GetBrowserProtectionResult> Invoke(GetBrowserProtectionInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetBrowserProtectionResult> getBrowserProtection(GetBrowserProtectionArgs args, InvokeOptions options)
    public static Output<GetBrowserProtectionResult> getBrowserProtection(GetBrowserProtectionArgs args, InvokeOptions options)
    
    fn::invoke:
      function: zpa:index/getBrowserProtection:getBrowserProtection
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Name string
    Name string
    name String
    name string
    name str
    name String

    getBrowserProtection Result

    The following output properties are available:

    Supporting Types

    GetBrowserProtectionCriteria

    GetBrowserProtectionCriteriaFingerPrintCriteria

    GetBrowserProtectionCriteriaFingerPrintCriteriaBrowser

    browserEng Boolean
    browserEngVer Boolean
    browserName Boolean
    browserVersion Boolean
    canvas Boolean
    flashVer Boolean
    fpUsrAgentStr Boolean
    isCookie Boolean
    isLocalStorage Boolean
    isSessStorage Boolean
    ja3 Boolean
    mime Boolean
    plugin Boolean
    silverlightVer Boolean
    browserEng boolean
    browserEngVer boolean
    browserName boolean
    browserVersion boolean
    canvas boolean
    flashVer boolean
    fpUsrAgentStr boolean
    isCookie boolean
    isLocalStorage boolean
    isSessStorage boolean
    ja3 boolean
    mime boolean
    plugin boolean
    silverlightVer boolean
    browserEng Boolean
    browserEngVer Boolean
    browserName Boolean
    browserVersion Boolean
    canvas Boolean
    flashVer Boolean
    fpUsrAgentStr Boolean
    isCookie Boolean
    isLocalStorage Boolean
    isSessStorage Boolean
    ja3 Boolean
    mime Boolean
    plugin Boolean
    silverlightVer Boolean

    GetBrowserProtectionCriteriaFingerPrintCriteriaLocation

    Lat bool
    Lon bool
    Lat bool
    Lon bool
    lat Boolean
    lon Boolean
    lat boolean
    lon boolean
    lat bool
    lon bool
    lat Boolean
    lon Boolean

    GetBrowserProtectionCriteriaFingerPrintCriteriaSystem

    availScreenResolution Boolean
    cpuArch Boolean
    currScreenResolution Boolean
    font Boolean
    javaVer Boolean
    mobileDevType Boolean
    monitorMobile Boolean
    osName Boolean
    osVersion Boolean
    sysLang Boolean
    tz Boolean
    usrLang Boolean
    availScreenResolution boolean
    cpuArch boolean
    currScreenResolution boolean
    font boolean
    javaVer boolean
    mobileDevType boolean
    monitorMobile boolean
    osName boolean
    osVersion boolean
    sysLang boolean
    tz boolean
    usrLang boolean
    availScreenResolution Boolean
    cpuArch Boolean
    currScreenResolution Boolean
    font Boolean
    javaVer Boolean
    mobileDevType Boolean
    monitorMobile Boolean
    osName Boolean
    osVersion Boolean
    sysLang Boolean
    tz Boolean
    usrLang Boolean

    Package Details

    Repository
    zpa zscaler/pulumi-zpa
    License
    MIT
    Notes
    This Pulumi package is based on the zpa Terraform Provider.
    zpa logo
    Zscaler Private Access v1.0.3 published on Wednesday, Jan 21, 2026 by Zscaler
      Meet Neo: Your AI Platform Teammate