1. Packages
  2. Zscaler Private Access (ZPA)
  3. API Docs
  4. BrowserAccess
Zscaler Private Access v0.0.10 published on Tuesday, Apr 9, 2024 by Zscaler

zpa.BrowserAccess

Explore with Pulumi AI

zpa logo
Zscaler Private Access v0.0.10 published on Tuesday, Apr 9, 2024 by Zscaler

    Create BrowserAccess Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new BrowserAccess(name: string, args: BrowserAccessArgs, opts?: CustomResourceOptions);
    @overload
    def BrowserAccess(resource_name: str,
                      args: BrowserAccessArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def BrowserAccess(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      domain_names: Optional[Sequence[str]] = None,
                      clientless_apps: Optional[Sequence[BrowserAccessClientlessAppArgs]] = None,
                      segment_group_id: Optional[str] = None,
                      is_incomplete_dr_config: Optional[bool] = None,
                      name: Optional[str] = None,
                      double_encrypt: Optional[bool] = None,
                      enabled: Optional[bool] = None,
                      health_check_type: Optional[str] = None,
                      health_reporting: Optional[str] = None,
                      icmp_access_type: Optional[str] = None,
                      ip_anchored: Optional[bool] = None,
                      is_cname_enabled: Optional[bool] = None,
                      bypass_type: Optional[str] = None,
                      match_style: Optional[str] = None,
                      description: Optional[str] = None,
                      passive_health_enabled: Optional[bool] = None,
                      config_space: Optional[str] = None,
                      segment_group_name: Optional[str] = None,
                      select_connector_close_to_app: Optional[bool] = None,
                      server_groups: Optional[Sequence[BrowserAccessServerGroupArgs]] = None,
                      tcp_keep_alive: Optional[str] = None,
                      tcp_port_range: Optional[Sequence[BrowserAccessTcpPortRangeArgs]] = None,
                      tcp_port_ranges: Optional[Sequence[str]] = None,
                      udp_port_range: Optional[Sequence[BrowserAccessUdpPortRangeArgs]] = None,
                      udp_port_ranges: Optional[Sequence[str]] = None,
                      use_in_dr_mode: Optional[bool] = None)
    func NewBrowserAccess(ctx *Context, name string, args BrowserAccessArgs, opts ...ResourceOption) (*BrowserAccess, error)
    public BrowserAccess(string name, BrowserAccessArgs args, CustomResourceOptions? opts = null)
    public BrowserAccess(String name, BrowserAccessArgs args)
    public BrowserAccess(String name, BrowserAccessArgs args, CustomResourceOptions options)
    
    type: zpa:BrowserAccess
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args BrowserAccessArgs
    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 BrowserAccessArgs
    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 BrowserAccessArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args BrowserAccessArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args BrowserAccessArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var browserAccessResource = new Zpa.BrowserAccess("browserAccessResource", new()
    {
        DomainNames = new[]
        {
            "string",
        },
        ClientlessApps = new[]
        {
            new Zpa.Inputs.BrowserAccessClientlessAppArgs
            {
                Name = "string",
                ApplicationPort = "string",
                ApplicationProtocol = "string",
                Domain = "string",
                Cname = "string",
                Description = "string",
                AllowOptions = false,
                Enabled = false,
                Hidden = false,
                Id = "string",
                LocalDomain = "string",
                CertificateId = "string",
                Path = "string",
                TrustUntrustedCert = false,
            },
        },
        SegmentGroupId = "string",
        IsIncompleteDrConfig = false,
        Name = "string",
        DoubleEncrypt = false,
        Enabled = false,
        HealthCheckType = "string",
        HealthReporting = "string",
        IcmpAccessType = "string",
        IpAnchored = false,
        IsCnameEnabled = false,
        BypassType = "string",
        MatchStyle = "string",
        Description = "string",
        PassiveHealthEnabled = false,
        ConfigSpace = "string",
        SegmentGroupName = "string",
        SelectConnectorCloseToApp = false,
        ServerGroups = new[]
        {
            new Zpa.Inputs.BrowserAccessServerGroupArgs
            {
                Ids = new[]
                {
                    "string",
                },
            },
        },
        TcpKeepAlive = "string",
        TcpPortRange = new[]
        {
            new Zpa.Inputs.BrowserAccessTcpPortRangeArgs
            {
                From = "string",
                To = "string",
            },
        },
        TcpPortRanges = new[]
        {
            "string",
        },
        UdpPortRange = new[]
        {
            new Zpa.Inputs.BrowserAccessUdpPortRangeArgs
            {
                From = "string",
                To = "string",
            },
        },
        UdpPortRanges = new[]
        {
            "string",
        },
        UseInDrMode = false,
    });
    
    example, err := zpa.NewBrowserAccess(ctx, "browserAccessResource", &zpa.BrowserAccessArgs{
    	DomainNames: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	ClientlessApps: zpa.BrowserAccessClientlessAppArray{
    		&zpa.BrowserAccessClientlessAppArgs{
    			Name:                pulumi.String("string"),
    			ApplicationPort:     pulumi.String("string"),
    			ApplicationProtocol: pulumi.String("string"),
    			Domain:              pulumi.String("string"),
    			Cname:               pulumi.String("string"),
    			Description:         pulumi.String("string"),
    			AllowOptions:        pulumi.Bool(false),
    			Enabled:             pulumi.Bool(false),
    			Hidden:              pulumi.Bool(false),
    			Id:                  pulumi.String("string"),
    			LocalDomain:         pulumi.String("string"),
    			CertificateId:       pulumi.String("string"),
    			Path:                pulumi.String("string"),
    			TrustUntrustedCert:  pulumi.Bool(false),
    		},
    	},
    	SegmentGroupId:            pulumi.String("string"),
    	IsIncompleteDrConfig:      pulumi.Bool(false),
    	Name:                      pulumi.String("string"),
    	DoubleEncrypt:             pulumi.Bool(false),
    	Enabled:                   pulumi.Bool(false),
    	HealthCheckType:           pulumi.String("string"),
    	HealthReporting:           pulumi.String("string"),
    	IcmpAccessType:            pulumi.String("string"),
    	IpAnchored:                pulumi.Bool(false),
    	IsCnameEnabled:            pulumi.Bool(false),
    	BypassType:                pulumi.String("string"),
    	MatchStyle:                pulumi.String("string"),
    	Description:               pulumi.String("string"),
    	PassiveHealthEnabled:      pulumi.Bool(false),
    	ConfigSpace:               pulumi.String("string"),
    	SegmentGroupName:          pulumi.String("string"),
    	SelectConnectorCloseToApp: pulumi.Bool(false),
    	ServerGroups: zpa.BrowserAccessServerGroupArray{
    		&zpa.BrowserAccessServerGroupArgs{
    			Ids: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    	},
    	TcpKeepAlive: pulumi.String("string"),
    	TcpPortRange: zpa.BrowserAccessTcpPortRangeArray{
    		&zpa.BrowserAccessTcpPortRangeArgs{
    			From: pulumi.String("string"),
    			To:   pulumi.String("string"),
    		},
    	},
    	TcpPortRanges: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	UdpPortRange: zpa.BrowserAccessUdpPortRangeArray{
    		&zpa.BrowserAccessUdpPortRangeArgs{
    			From: pulumi.String("string"),
    			To:   pulumi.String("string"),
    		},
    	},
    	UdpPortRanges: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	UseInDrMode: pulumi.Bool(false),
    })
    
    var browserAccessResource = new BrowserAccess("browserAccessResource", BrowserAccessArgs.builder()        
        .domainNames("string")
        .clientlessApps(BrowserAccessClientlessAppArgs.builder()
            .name("string")
            .applicationPort("string")
            .applicationProtocol("string")
            .domain("string")
            .cname("string")
            .description("string")
            .allowOptions(false)
            .enabled(false)
            .hidden(false)
            .id("string")
            .localDomain("string")
            .certificateId("string")
            .path("string")
            .trustUntrustedCert(false)
            .build())
        .segmentGroupId("string")
        .isIncompleteDrConfig(false)
        .name("string")
        .doubleEncrypt(false)
        .enabled(false)
        .healthCheckType("string")
        .healthReporting("string")
        .icmpAccessType("string")
        .ipAnchored(false)
        .isCnameEnabled(false)
        .bypassType("string")
        .matchStyle("string")
        .description("string")
        .passiveHealthEnabled(false)
        .configSpace("string")
        .segmentGroupName("string")
        .selectConnectorCloseToApp(false)
        .serverGroups(BrowserAccessServerGroupArgs.builder()
            .ids("string")
            .build())
        .tcpKeepAlive("string")
        .tcpPortRange(BrowserAccessTcpPortRangeArgs.builder()
            .from("string")
            .to("string")
            .build())
        .tcpPortRanges("string")
        .udpPortRange(BrowserAccessUdpPortRangeArgs.builder()
            .from("string")
            .to("string")
            .build())
        .udpPortRanges("string")
        .useInDrMode(false)
        .build());
    
    browser_access_resource = zpa.BrowserAccess("browserAccessResource",
        domain_names=["string"],
        clientless_apps=[zpa.BrowserAccessClientlessAppArgs(
            name="string",
            application_port="string",
            application_protocol="string",
            domain="string",
            cname="string",
            description="string",
            allow_options=False,
            enabled=False,
            hidden=False,
            id="string",
            local_domain="string",
            certificate_id="string",
            path="string",
            trust_untrusted_cert=False,
        )],
        segment_group_id="string",
        is_incomplete_dr_config=False,
        name="string",
        double_encrypt=False,
        enabled=False,
        health_check_type="string",
        health_reporting="string",
        icmp_access_type="string",
        ip_anchored=False,
        is_cname_enabled=False,
        bypass_type="string",
        match_style="string",
        description="string",
        passive_health_enabled=False,
        config_space="string",
        segment_group_name="string",
        select_connector_close_to_app=False,
        server_groups=[zpa.BrowserAccessServerGroupArgs(
            ids=["string"],
        )],
        tcp_keep_alive="string",
        tcp_port_range=[zpa.BrowserAccessTcpPortRangeArgs(
            from_="string",
            to="string",
        )],
        tcp_port_ranges=["string"],
        udp_port_range=[zpa.BrowserAccessUdpPortRangeArgs(
            from_="string",
            to="string",
        )],
        udp_port_ranges=["string"],
        use_in_dr_mode=False)
    
    const browserAccessResource = new zpa.BrowserAccess("browserAccessResource", {
        domainNames: ["string"],
        clientlessApps: [{
            name: "string",
            applicationPort: "string",
            applicationProtocol: "string",
            domain: "string",
            cname: "string",
            description: "string",
            allowOptions: false,
            enabled: false,
            hidden: false,
            id: "string",
            localDomain: "string",
            certificateId: "string",
            path: "string",
            trustUntrustedCert: false,
        }],
        segmentGroupId: "string",
        isIncompleteDrConfig: false,
        name: "string",
        doubleEncrypt: false,
        enabled: false,
        healthCheckType: "string",
        healthReporting: "string",
        icmpAccessType: "string",
        ipAnchored: false,
        isCnameEnabled: false,
        bypassType: "string",
        matchStyle: "string",
        description: "string",
        passiveHealthEnabled: false,
        configSpace: "string",
        segmentGroupName: "string",
        selectConnectorCloseToApp: false,
        serverGroups: [{
            ids: ["string"],
        }],
        tcpKeepAlive: "string",
        tcpPortRange: [{
            from: "string",
            to: "string",
        }],
        tcpPortRanges: ["string"],
        udpPortRange: [{
            from: "string",
            to: "string",
        }],
        udpPortRanges: ["string"],
        useInDrMode: false,
    });
    
    type: zpa:BrowserAccess
    properties:
        bypassType: string
        clientlessApps:
            - allowOptions: false
              applicationPort: string
              applicationProtocol: string
              certificateId: string
              cname: string
              description: string
              domain: string
              enabled: false
              hidden: false
              id: string
              localDomain: string
              name: string
              path: string
              trustUntrustedCert: false
        configSpace: string
        description: string
        domainNames:
            - string
        doubleEncrypt: false
        enabled: false
        healthCheckType: string
        healthReporting: string
        icmpAccessType: string
        ipAnchored: false
        isCnameEnabled: false
        isIncompleteDrConfig: false
        matchStyle: string
        name: string
        passiveHealthEnabled: false
        segmentGroupId: string
        segmentGroupName: string
        selectConnectorCloseToApp: false
        serverGroups:
            - ids:
                - string
        tcpKeepAlive: string
        tcpPortRange:
            - from: string
              to: string
        tcpPortRanges:
            - string
        udpPortRange:
            - from: string
              to: string
        udpPortRanges:
            - string
        useInDrMode: false
    

    BrowserAccess Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The BrowserAccess resource accepts the following input properties:

    ClientlessApps List<Zscaler.Zpa.Inputs.BrowserAccessClientlessApp>
    DomainNames List<string>
    List of domains and IPs.
    SegmentGroupId string
    BypassType string
    Indicates whether users can bypass ZPA to access applications. Default: NEVER. Supported values: ALWAYS, NEVER, ON_NET. The value NEVER indicates the use of the client forwarding policy.
    ConfigSpace string
    Description string
    Description of the application.
    DoubleEncrypt bool
    Whether Double Encryption is enabled or disabled for the app.
    Enabled bool
    HealthCheckType string
    HealthReporting string
    Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
    IcmpAccessType string
    IpAnchored bool
    IsCnameEnabled bool
    Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
    IsIncompleteDrConfig bool
    MatchStyle string
    Name string
    Name of the application.
    PassiveHealthEnabled bool
    SegmentGroupName string
    SelectConnectorCloseToApp bool
    ServerGroups List<Zscaler.Zpa.Inputs.BrowserAccessServerGroup>
    List of the server group IDs.
    TcpKeepAlive string
    TcpPortRange List<Zscaler.Zpa.Inputs.BrowserAccessTcpPortRange>
    tcp port range
    TcpPortRanges List<string>
    TCP port ranges used to access the app.
    UdpPortRange List<Zscaler.Zpa.Inputs.BrowserAccessUdpPortRange>
    udp port range
    UdpPortRanges List<string>
    UDP port ranges used to access the app.
    UseInDrMode bool
    ClientlessApps []BrowserAccessClientlessAppArgs
    DomainNames []string
    List of domains and IPs.
    SegmentGroupId string
    BypassType string
    Indicates whether users can bypass ZPA to access applications. Default: NEVER. Supported values: ALWAYS, NEVER, ON_NET. The value NEVER indicates the use of the client forwarding policy.
    ConfigSpace string
    Description string
    Description of the application.
    DoubleEncrypt bool
    Whether Double Encryption is enabled or disabled for the app.
    Enabled bool
    HealthCheckType string
    HealthReporting string
    Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
    IcmpAccessType string
    IpAnchored bool
    IsCnameEnabled bool
    Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
    IsIncompleteDrConfig bool
    MatchStyle string
    Name string
    Name of the application.
    PassiveHealthEnabled bool
    SegmentGroupName string
    SelectConnectorCloseToApp bool
    ServerGroups []BrowserAccessServerGroupArgs
    List of the server group IDs.
    TcpKeepAlive string
    TcpPortRange []BrowserAccessTcpPortRangeArgs
    tcp port range
    TcpPortRanges []string
    TCP port ranges used to access the app.
    UdpPortRange []BrowserAccessUdpPortRangeArgs
    udp port range
    UdpPortRanges []string
    UDP port ranges used to access the app.
    UseInDrMode bool
    clientlessApps List<BrowserAccessClientlessApp>
    domainNames List<String>
    List of domains and IPs.
    segmentGroupId String
    bypassType String
    Indicates whether users can bypass ZPA to access applications. Default: NEVER. Supported values: ALWAYS, NEVER, ON_NET. The value NEVER indicates the use of the client forwarding policy.
    configSpace String
    description String
    Description of the application.
    doubleEncrypt Boolean
    Whether Double Encryption is enabled or disabled for the app.
    enabled Boolean
    healthCheckType String
    healthReporting String
    Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
    icmpAccessType String
    ipAnchored Boolean
    isCnameEnabled Boolean
    Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
    isIncompleteDrConfig Boolean
    matchStyle String
    name String
    Name of the application.
    passiveHealthEnabled Boolean
    segmentGroupName String
    selectConnectorCloseToApp Boolean
    serverGroups List<BrowserAccessServerGroup>
    List of the server group IDs.
    tcpKeepAlive String
    tcpPortRange List<BrowserAccessTcpPortRange>
    tcp port range
    tcpPortRanges List<String>
    TCP port ranges used to access the app.
    udpPortRange List<BrowserAccessUdpPortRange>
    udp port range
    udpPortRanges List<String>
    UDP port ranges used to access the app.
    useInDrMode Boolean
    clientlessApps BrowserAccessClientlessApp[]
    domainNames string[]
    List of domains and IPs.
    segmentGroupId string
    bypassType string
    Indicates whether users can bypass ZPA to access applications. Default: NEVER. Supported values: ALWAYS, NEVER, ON_NET. The value NEVER indicates the use of the client forwarding policy.
    configSpace string
    description string
    Description of the application.
    doubleEncrypt boolean
    Whether Double Encryption is enabled or disabled for the app.
    enabled boolean
    healthCheckType string
    healthReporting string
    Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
    icmpAccessType string
    ipAnchored boolean
    isCnameEnabled boolean
    Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
    isIncompleteDrConfig boolean
    matchStyle string
    name string
    Name of the application.
    passiveHealthEnabled boolean
    segmentGroupName string
    selectConnectorCloseToApp boolean
    serverGroups BrowserAccessServerGroup[]
    List of the server group IDs.
    tcpKeepAlive string
    tcpPortRange BrowserAccessTcpPortRange[]
    tcp port range
    tcpPortRanges string[]
    TCP port ranges used to access the app.
    udpPortRange BrowserAccessUdpPortRange[]
    udp port range
    udpPortRanges string[]
    UDP port ranges used to access the app.
    useInDrMode boolean
    clientless_apps Sequence[BrowserAccessClientlessAppArgs]
    domain_names Sequence[str]
    List of domains and IPs.
    segment_group_id str
    bypass_type str
    Indicates whether users can bypass ZPA to access applications. Default: NEVER. Supported values: ALWAYS, NEVER, ON_NET. The value NEVER indicates the use of the client forwarding policy.
    config_space str
    description str
    Description of the application.
    double_encrypt bool
    Whether Double Encryption is enabled or disabled for the app.
    enabled bool
    health_check_type str
    health_reporting str
    Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
    icmp_access_type str
    ip_anchored bool
    is_cname_enabled bool
    Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
    is_incomplete_dr_config bool
    match_style str
    name str
    Name of the application.
    passive_health_enabled bool
    segment_group_name str
    select_connector_close_to_app bool
    server_groups Sequence[BrowserAccessServerGroupArgs]
    List of the server group IDs.
    tcp_keep_alive str
    tcp_port_range Sequence[BrowserAccessTcpPortRangeArgs]
    tcp port range
    tcp_port_ranges Sequence[str]
    TCP port ranges used to access the app.
    udp_port_range Sequence[BrowserAccessUdpPortRangeArgs]
    udp port range
    udp_port_ranges Sequence[str]
    UDP port ranges used to access the app.
    use_in_dr_mode bool
    clientlessApps List<Property Map>
    domainNames List<String>
    List of domains and IPs.
    segmentGroupId String
    bypassType String
    Indicates whether users can bypass ZPA to access applications. Default: NEVER. Supported values: ALWAYS, NEVER, ON_NET. The value NEVER indicates the use of the client forwarding policy.
    configSpace String
    description String
    Description of the application.
    doubleEncrypt Boolean
    Whether Double Encryption is enabled or disabled for the app.
    enabled Boolean
    healthCheckType String
    healthReporting String
    Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
    icmpAccessType String
    ipAnchored Boolean
    isCnameEnabled Boolean
    Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
    isIncompleteDrConfig Boolean
    matchStyle String
    name String
    Name of the application.
    passiveHealthEnabled Boolean
    segmentGroupName String
    selectConnectorCloseToApp Boolean
    serverGroups List<Property Map>
    List of the server group IDs.
    tcpKeepAlive String
    tcpPortRange List<Property Map>
    tcp port range
    tcpPortRanges List<String>
    TCP port ranges used to access the app.
    udpPortRange List<Property Map>
    udp port range
    udpPortRanges List<String>
    UDP port ranges used to access the app.
    useInDrMode Boolean

    Outputs

    All input properties are implicitly available as output properties. Additionally, the BrowserAccess resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing BrowserAccess Resource

    Get an existing BrowserAccess 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?: BrowserAccessState, opts?: CustomResourceOptions): BrowserAccess
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            bypass_type: Optional[str] = None,
            clientless_apps: Optional[Sequence[BrowserAccessClientlessAppArgs]] = None,
            config_space: Optional[str] = None,
            description: Optional[str] = None,
            domain_names: Optional[Sequence[str]] = None,
            double_encrypt: Optional[bool] = None,
            enabled: Optional[bool] = None,
            health_check_type: Optional[str] = None,
            health_reporting: Optional[str] = None,
            icmp_access_type: Optional[str] = None,
            ip_anchored: Optional[bool] = None,
            is_cname_enabled: Optional[bool] = None,
            is_incomplete_dr_config: Optional[bool] = None,
            match_style: Optional[str] = None,
            name: Optional[str] = None,
            passive_health_enabled: Optional[bool] = None,
            segment_group_id: Optional[str] = None,
            segment_group_name: Optional[str] = None,
            select_connector_close_to_app: Optional[bool] = None,
            server_groups: Optional[Sequence[BrowserAccessServerGroupArgs]] = None,
            tcp_keep_alive: Optional[str] = None,
            tcp_port_range: Optional[Sequence[BrowserAccessTcpPortRangeArgs]] = None,
            tcp_port_ranges: Optional[Sequence[str]] = None,
            udp_port_range: Optional[Sequence[BrowserAccessUdpPortRangeArgs]] = None,
            udp_port_ranges: Optional[Sequence[str]] = None,
            use_in_dr_mode: Optional[bool] = None) -> BrowserAccess
    func GetBrowserAccess(ctx *Context, name string, id IDInput, state *BrowserAccessState, opts ...ResourceOption) (*BrowserAccess, error)
    public static BrowserAccess Get(string name, Input<string> id, BrowserAccessState? state, CustomResourceOptions? opts = null)
    public static BrowserAccess get(String name, Output<String> id, BrowserAccessState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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.
    The following state arguments are supported:
    BypassType string
    Indicates whether users can bypass ZPA to access applications. Default: NEVER. Supported values: ALWAYS, NEVER, ON_NET. The value NEVER indicates the use of the client forwarding policy.
    ClientlessApps List<Zscaler.Zpa.Inputs.BrowserAccessClientlessApp>
    ConfigSpace string
    Description string
    Description of the application.
    DomainNames List<string>
    List of domains and IPs.
    DoubleEncrypt bool
    Whether Double Encryption is enabled or disabled for the app.
    Enabled bool
    HealthCheckType string
    HealthReporting string
    Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
    IcmpAccessType string
    IpAnchored bool
    IsCnameEnabled bool
    Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
    IsIncompleteDrConfig bool
    MatchStyle string
    Name string
    Name of the application.
    PassiveHealthEnabled bool
    SegmentGroupId string
    SegmentGroupName string
    SelectConnectorCloseToApp bool
    ServerGroups List<Zscaler.Zpa.Inputs.BrowserAccessServerGroup>
    List of the server group IDs.
    TcpKeepAlive string
    TcpPortRange List<Zscaler.Zpa.Inputs.BrowserAccessTcpPortRange>
    tcp port range
    TcpPortRanges List<string>
    TCP port ranges used to access the app.
    UdpPortRange List<Zscaler.Zpa.Inputs.BrowserAccessUdpPortRange>
    udp port range
    UdpPortRanges List<string>
    UDP port ranges used to access the app.
    UseInDrMode bool
    BypassType string
    Indicates whether users can bypass ZPA to access applications. Default: NEVER. Supported values: ALWAYS, NEVER, ON_NET. The value NEVER indicates the use of the client forwarding policy.
    ClientlessApps []BrowserAccessClientlessAppArgs
    ConfigSpace string
    Description string
    Description of the application.
    DomainNames []string
    List of domains and IPs.
    DoubleEncrypt bool
    Whether Double Encryption is enabled or disabled for the app.
    Enabled bool
    HealthCheckType string
    HealthReporting string
    Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
    IcmpAccessType string
    IpAnchored bool
    IsCnameEnabled bool
    Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
    IsIncompleteDrConfig bool
    MatchStyle string
    Name string
    Name of the application.
    PassiveHealthEnabled bool
    SegmentGroupId string
    SegmentGroupName string
    SelectConnectorCloseToApp bool
    ServerGroups []BrowserAccessServerGroupArgs
    List of the server group IDs.
    TcpKeepAlive string
    TcpPortRange []BrowserAccessTcpPortRangeArgs
    tcp port range
    TcpPortRanges []string
    TCP port ranges used to access the app.
    UdpPortRange []BrowserAccessUdpPortRangeArgs
    udp port range
    UdpPortRanges []string
    UDP port ranges used to access the app.
    UseInDrMode bool
    bypassType String
    Indicates whether users can bypass ZPA to access applications. Default: NEVER. Supported values: ALWAYS, NEVER, ON_NET. The value NEVER indicates the use of the client forwarding policy.
    clientlessApps List<BrowserAccessClientlessApp>
    configSpace String
    description String
    Description of the application.
    domainNames List<String>
    List of domains and IPs.
    doubleEncrypt Boolean
    Whether Double Encryption is enabled or disabled for the app.
    enabled Boolean
    healthCheckType String
    healthReporting String
    Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
    icmpAccessType String
    ipAnchored Boolean
    isCnameEnabled Boolean
    Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
    isIncompleteDrConfig Boolean
    matchStyle String
    name String
    Name of the application.
    passiveHealthEnabled Boolean
    segmentGroupId String
    segmentGroupName String
    selectConnectorCloseToApp Boolean
    serverGroups List<BrowserAccessServerGroup>
    List of the server group IDs.
    tcpKeepAlive String
    tcpPortRange List<BrowserAccessTcpPortRange>
    tcp port range
    tcpPortRanges List<String>
    TCP port ranges used to access the app.
    udpPortRange List<BrowserAccessUdpPortRange>
    udp port range
    udpPortRanges List<String>
    UDP port ranges used to access the app.
    useInDrMode Boolean
    bypassType string
    Indicates whether users can bypass ZPA to access applications. Default: NEVER. Supported values: ALWAYS, NEVER, ON_NET. The value NEVER indicates the use of the client forwarding policy.
    clientlessApps BrowserAccessClientlessApp[]
    configSpace string
    description string
    Description of the application.
    domainNames string[]
    List of domains and IPs.
    doubleEncrypt boolean
    Whether Double Encryption is enabled or disabled for the app.
    enabled boolean
    healthCheckType string
    healthReporting string
    Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
    icmpAccessType string
    ipAnchored boolean
    isCnameEnabled boolean
    Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
    isIncompleteDrConfig boolean
    matchStyle string
    name string
    Name of the application.
    passiveHealthEnabled boolean
    segmentGroupId string
    segmentGroupName string
    selectConnectorCloseToApp boolean
    serverGroups BrowserAccessServerGroup[]
    List of the server group IDs.
    tcpKeepAlive string
    tcpPortRange BrowserAccessTcpPortRange[]
    tcp port range
    tcpPortRanges string[]
    TCP port ranges used to access the app.
    udpPortRange BrowserAccessUdpPortRange[]
    udp port range
    udpPortRanges string[]
    UDP port ranges used to access the app.
    useInDrMode boolean
    bypass_type str
    Indicates whether users can bypass ZPA to access applications. Default: NEVER. Supported values: ALWAYS, NEVER, ON_NET. The value NEVER indicates the use of the client forwarding policy.
    clientless_apps Sequence[BrowserAccessClientlessAppArgs]
    config_space str
    description str
    Description of the application.
    domain_names Sequence[str]
    List of domains and IPs.
    double_encrypt bool
    Whether Double Encryption is enabled or disabled for the app.
    enabled bool
    health_check_type str
    health_reporting str
    Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
    icmp_access_type str
    ip_anchored bool
    is_cname_enabled bool
    Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
    is_incomplete_dr_config bool
    match_style str
    name str
    Name of the application.
    passive_health_enabled bool
    segment_group_id str
    segment_group_name str
    select_connector_close_to_app bool
    server_groups Sequence[BrowserAccessServerGroupArgs]
    List of the server group IDs.
    tcp_keep_alive str
    tcp_port_range Sequence[BrowserAccessTcpPortRangeArgs]
    tcp port range
    tcp_port_ranges Sequence[str]
    TCP port ranges used to access the app.
    udp_port_range Sequence[BrowserAccessUdpPortRangeArgs]
    udp port range
    udp_port_ranges Sequence[str]
    UDP port ranges used to access the app.
    use_in_dr_mode bool
    bypassType String
    Indicates whether users can bypass ZPA to access applications. Default: NEVER. Supported values: ALWAYS, NEVER, ON_NET. The value NEVER indicates the use of the client forwarding policy.
    clientlessApps List<Property Map>
    configSpace String
    description String
    Description of the application.
    domainNames List<String>
    List of domains and IPs.
    doubleEncrypt Boolean
    Whether Double Encryption is enabled or disabled for the app.
    enabled Boolean
    healthCheckType String
    healthReporting String
    Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
    icmpAccessType String
    ipAnchored Boolean
    isCnameEnabled Boolean
    Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
    isIncompleteDrConfig Boolean
    matchStyle String
    name String
    Name of the application.
    passiveHealthEnabled Boolean
    segmentGroupId String
    segmentGroupName String
    selectConnectorCloseToApp Boolean
    serverGroups List<Property Map>
    List of the server group IDs.
    tcpKeepAlive String
    tcpPortRange List<Property Map>
    tcp port range
    tcpPortRanges List<String>
    TCP port ranges used to access the app.
    udpPortRange List<Property Map>
    udp port range
    udpPortRanges List<String>
    UDP port ranges used to access the app.
    useInDrMode Boolean

    Supporting Types

    BrowserAccessClientlessApp, BrowserAccessClientlessAppArgs

    ApplicationPort string
    Port for the BA app.
    ApplicationProtocol string
    Protocol for the BA app.
    Name string
    AllowOptions bool
    If you want ZPA to forward unauthenticated HTTP preflight OPTIONS requests from the browser to the app.
    CertificateId string
    ID of the BA certificate.
    Cname string
    Description string
    Domain string
    Domain name or IP address of the BA app.
    Enabled bool
    Hidden bool
    Id string
    LocalDomain string
    Path string
    TrustUntrustedCert bool
    Indicates whether Use Untrusted Certificates is enabled or disabled for a BA app.
    ApplicationPort string
    Port for the BA app.
    ApplicationProtocol string
    Protocol for the BA app.
    Name string
    AllowOptions bool
    If you want ZPA to forward unauthenticated HTTP preflight OPTIONS requests from the browser to the app.
    CertificateId string
    ID of the BA certificate.
    Cname string
    Description string
    Domain string
    Domain name or IP address of the BA app.
    Enabled bool
    Hidden bool
    Id string
    LocalDomain string
    Path string
    TrustUntrustedCert bool
    Indicates whether Use Untrusted Certificates is enabled or disabled for a BA app.
    applicationPort String
    Port for the BA app.
    applicationProtocol String
    Protocol for the BA app.
    name String
    allowOptions Boolean
    If you want ZPA to forward unauthenticated HTTP preflight OPTIONS requests from the browser to the app.
    certificateId String
    ID of the BA certificate.
    cname String
    description String
    domain String
    Domain name or IP address of the BA app.
    enabled Boolean
    hidden Boolean
    id String
    localDomain String
    path String
    trustUntrustedCert Boolean
    Indicates whether Use Untrusted Certificates is enabled or disabled for a BA app.
    applicationPort string
    Port for the BA app.
    applicationProtocol string
    Protocol for the BA app.
    name string
    allowOptions boolean
    If you want ZPA to forward unauthenticated HTTP preflight OPTIONS requests from the browser to the app.
    certificateId string
    ID of the BA certificate.
    cname string
    description string
    domain string
    Domain name or IP address of the BA app.
    enabled boolean
    hidden boolean
    id string
    localDomain string
    path string
    trustUntrustedCert boolean
    Indicates whether Use Untrusted Certificates is enabled or disabled for a BA app.
    application_port str
    Port for the BA app.
    application_protocol str
    Protocol for the BA app.
    name str
    allow_options bool
    If you want ZPA to forward unauthenticated HTTP preflight OPTIONS requests from the browser to the app.
    certificate_id str
    ID of the BA certificate.
    cname str
    description str
    domain str
    Domain name or IP address of the BA app.
    enabled bool
    hidden bool
    id str
    local_domain str
    path str
    trust_untrusted_cert bool
    Indicates whether Use Untrusted Certificates is enabled or disabled for a BA app.
    applicationPort String
    Port for the BA app.
    applicationProtocol String
    Protocol for the BA app.
    name String
    allowOptions Boolean
    If you want ZPA to forward unauthenticated HTTP preflight OPTIONS requests from the browser to the app.
    certificateId String
    ID of the BA certificate.
    cname String
    description String
    domain String
    Domain name or IP address of the BA app.
    enabled Boolean
    hidden Boolean
    id String
    localDomain String
    path String
    trustUntrustedCert Boolean
    Indicates whether Use Untrusted Certificates is enabled or disabled for a BA app.

    BrowserAccessServerGroup, BrowserAccessServerGroupArgs

    Ids List<string>
    Ids []string
    ids List<String>
    ids string[]
    ids Sequence[str]
    ids List<String>

    BrowserAccessTcpPortRange, BrowserAccessTcpPortRangeArgs

    From string
    To string
    From string
    To string
    from String
    to String
    from string
    to string
    from_ str
    to str
    from String
    to String

    BrowserAccessUdpPortRange, BrowserAccessUdpPortRangeArgs

    From string
    To string
    From string
    To string
    from String
    to String
    from string
    to string
    from_ str
    to str
    from String
    to String

    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 v0.0.10 published on Tuesday, Apr 9, 2024 by Zscaler