1. Packages
  2. Zscaler Private Access (ZPA)
  3. API Docs
  4. BrowserAccess
Zscaler Private Access v0.0.12 published on Tuesday, Jul 30, 2024 by Zscaler

zpa.BrowserAccess

Explore with Pulumi AI

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

Constructor example

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

var browserAccessResource = new Zpa.BrowserAccess("browserAccessResource", new()
{
    DomainNames = new[]
    {
        "string",
    },
    ClientlessApps = new[]
    {
        new Zpa.Inputs.BrowserAccessClientlessAppArgs
        {
            ApplicationPort = "string",
            ApplicationProtocol = "string",
            Name = "string",
            AllowOptions = false,
            CertificateId = "string",
            Description = "string",
            Domain = "string",
            Enabled = false,
            Id = "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,
});
Copy
example, err := zpa.NewBrowserAccess(ctx, "browserAccessResource", &zpa.BrowserAccessArgs{
	DomainNames: pulumi.StringArray{
		pulumi.String("string"),
	},
	ClientlessApps: zpa.BrowserAccessClientlessAppArray{
		&zpa.BrowserAccessClientlessAppArgs{
			ApplicationPort:     pulumi.String("string"),
			ApplicationProtocol: pulumi.String("string"),
			Name:                pulumi.String("string"),
			AllowOptions:        pulumi.Bool(false),
			CertificateId:       pulumi.String("string"),
			Description:         pulumi.String("string"),
			Domain:              pulumi.String("string"),
			Enabled:             pulumi.Bool(false),
			Id:                  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),
})
Copy
var browserAccessResource = new BrowserAccess("browserAccessResource", BrowserAccessArgs.builder()
    .domainNames("string")
    .clientlessApps(BrowserAccessClientlessAppArgs.builder()
        .applicationPort("string")
        .applicationProtocol("string")
        .name("string")
        .allowOptions(false)
        .certificateId("string")
        .description("string")
        .domain("string")
        .enabled(false)
        .id("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());
Copy
browser_access_resource = zpa.BrowserAccess("browserAccessResource",
    domain_names=["string"],
    clientless_apps=[{
        "application_port": "string",
        "application_protocol": "string",
        "name": "string",
        "allow_options": False,
        "certificate_id": "string",
        "description": "string",
        "domain": "string",
        "enabled": False,
        "id": "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=[{
        "ids": ["string"],
    }],
    tcp_keep_alive="string",
    tcp_port_range=[{
        "from_": "string",
        "to": "string",
    }],
    tcp_port_ranges=["string"],
    udp_port_range=[{
        "from_": "string",
        "to": "string",
    }],
    udp_port_ranges=["string"],
    use_in_dr_mode=False)
Copy
const browserAccessResource = new zpa.BrowserAccess("browserAccessResource", {
    domainNames: ["string"],
    clientlessApps: [{
        applicationPort: "string",
        applicationProtocol: "string",
        name: "string",
        allowOptions: false,
        certificateId: "string",
        description: "string",
        domain: "string",
        enabled: false,
        id: "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,
});
Copy
type: zpa:BrowserAccess
properties:
    bypassType: string
    clientlessApps:
        - allowOptions: false
          applicationPort: string
          applicationProtocol: string
          certificateId: string
          description: string
          domain: string
          enabled: false
          id: string
          name: 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
Copy

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

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The BrowserAccess resource accepts the following input properties:

ClientlessApps This property is required. List<Zscaler.Zpa.Inputs.BrowserAccessClientlessApp>
DomainNames This property is required. List<string>
List of domains and IPs.
SegmentGroupId This property is required. 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 Changes to this property will trigger replacement. 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 This property is required. []BrowserAccessClientlessAppArgs
DomainNames This property is required. []string
List of domains and IPs.
SegmentGroupId This property is required. 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 Changes to this property will trigger replacement. 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 This property is required. List<BrowserAccessClientlessApp>
domainNames This property is required. List<String>
List of domains and IPs.
segmentGroupId This property is required. 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 Changes to this property will trigger replacement. 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 This property is required. BrowserAccessClientlessApp[]
domainNames This property is required. string[]
List of domains and IPs.
segmentGroupId This property is required. 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 Changes to this property will trigger replacement. 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 This property is required. Sequence[BrowserAccessClientlessAppArgs]
domain_names This property is required. Sequence[str]
List of domains and IPs.
segment_group_id This property is required. 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 Changes to this property will trigger replacement. 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 This property is required. List<Property Map>
domainNames This property is required. List<String>
List of domains and IPs.
segmentGroupId This property is required. 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 Changes to this property will trigger replacement. 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)
resources:  _:    type: zpa:BrowserAccess    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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
This property is required.
Changes to this property will trigger replacement.
string
Port for the BA app.
ApplicationProtocol
This property is required.
Changes to this property will trigger replacement.
string
Protocol for the BA app.
Name This property is required. string
AllowOptions bool
If you want ZPA to forward unauthenticated HTTP preflight OPTIONS requests from the browser to the app.
CertificateId Changes to this property will trigger replacement. string
ID of the BA certificate.
Description string
Domain string
Domain name or IP address of the BA app.
Enabled bool
Id string
TrustUntrustedCert bool
Indicates whether Use Untrusted Certificates is enabled or disabled for a BA app.
ApplicationPort
This property is required.
Changes to this property will trigger replacement.
string
Port for the BA app.
ApplicationProtocol
This property is required.
Changes to this property will trigger replacement.
string
Protocol for the BA app.
Name This property is required. string
AllowOptions bool
If you want ZPA to forward unauthenticated HTTP preflight OPTIONS requests from the browser to the app.
CertificateId Changes to this property will trigger replacement. string
ID of the BA certificate.
Description string
Domain string
Domain name or IP address of the BA app.
Enabled bool
Id string
TrustUntrustedCert bool
Indicates whether Use Untrusted Certificates is enabled or disabled for a BA app.
applicationPort
This property is required.
Changes to this property will trigger replacement.
String
Port for the BA app.
applicationProtocol
This property is required.
Changes to this property will trigger replacement.
String
Protocol for the BA app.
name This property is required. String
allowOptions Boolean
If you want ZPA to forward unauthenticated HTTP preflight OPTIONS requests from the browser to the app.
certificateId Changes to this property will trigger replacement. String
ID of the BA certificate.
description String
domain String
Domain name or IP address of the BA app.
enabled Boolean
id String
trustUntrustedCert Boolean
Indicates whether Use Untrusted Certificates is enabled or disabled for a BA app.
applicationPort
This property is required.
Changes to this property will trigger replacement.
string
Port for the BA app.
applicationProtocol
This property is required.
Changes to this property will trigger replacement.
string
Protocol for the BA app.
name This property is required. string
allowOptions boolean
If you want ZPA to forward unauthenticated HTTP preflight OPTIONS requests from the browser to the app.
certificateId Changes to this property will trigger replacement. string
ID of the BA certificate.
description string
domain string
Domain name or IP address of the BA app.
enabled boolean
id string
trustUntrustedCert boolean
Indicates whether Use Untrusted Certificates is enabled or disabled for a BA app.
application_port
This property is required.
Changes to this property will trigger replacement.
str
Port for the BA app.
application_protocol
This property is required.
Changes to this property will trigger replacement.
str
Protocol for the BA app.
name This property is required. str
allow_options bool
If you want ZPA to forward unauthenticated HTTP preflight OPTIONS requests from the browser to the app.
certificate_id Changes to this property will trigger replacement. str
ID of the BA certificate.
description str
domain str
Domain name or IP address of the BA app.
enabled bool
id str
trust_untrusted_cert bool
Indicates whether Use Untrusted Certificates is enabled or disabled for a BA app.
applicationPort
This property is required.
Changes to this property will trigger replacement.
String
Port for the BA app.
applicationProtocol
This property is required.
Changes to this property will trigger replacement.
String
Protocol for the BA app.
name This property is required. String
allowOptions Boolean
If you want ZPA to forward unauthenticated HTTP preflight OPTIONS requests from the browser to the app.
certificateId Changes to this property will trigger replacement. String
ID of the BA certificate.
description String
domain String
Domain name or IP address of the BA app.
enabled Boolean
id 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.