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 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.
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,
});
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),
})
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());
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)
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,
});
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
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:
- Clientless
Apps List<Zscaler.Zpa. Inputs. Browser Access Clientless App> - Domain
Names List<string> - List of domains and IPs.
- Segment
Group stringId - Bypass
Type 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.
- Config
Space string - Description string
- Description of the application.
- Double
Encrypt bool - Whether Double Encryption is enabled or disabled for the app.
- Enabled bool
- Health
Check stringType - Health
Reporting string - Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
- Icmp
Access stringType - Ip
Anchored bool - Is
Cname boolEnabled - Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
- Is
Incomplete boolDr Config - Match
Style string - Name string
- Name of the application.
- Passive
Health boolEnabled - Segment
Group stringName - Select
Connector boolClose To App - Server
Groups List<Zscaler.Zpa. Inputs. Browser Access Server Group> - List of the server group IDs.
- Tcp
Keep stringAlive - Tcp
Port List<Zscaler.Range Zpa. Inputs. Browser Access Tcp Port Range> - tcp port range
- Tcp
Port List<string>Ranges - TCP port ranges used to access the app.
- Udp
Port List<Zscaler.Range Zpa. Inputs. Browser Access Udp Port Range> - udp port range
- Udp
Port List<string>Ranges - UDP port ranges used to access the app.
- Use
In boolDr Mode
- Clientless
Apps []BrowserAccess Clientless App Args - Domain
Names []string - List of domains and IPs.
- Segment
Group stringId - Bypass
Type 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.
- Config
Space string - Description string
- Description of the application.
- Double
Encrypt bool - Whether Double Encryption is enabled or disabled for the app.
- Enabled bool
- Health
Check stringType - Health
Reporting string - Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
- Icmp
Access stringType - Ip
Anchored bool - Is
Cname boolEnabled - Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
- Is
Incomplete boolDr Config - Match
Style string - Name string
- Name of the application.
- Passive
Health boolEnabled - Segment
Group stringName - Select
Connector boolClose To App - Server
Groups []BrowserAccess Server Group Args - List of the server group IDs.
- Tcp
Keep stringAlive - Tcp
Port []BrowserRange Access Tcp Port Range Args - tcp port range
- Tcp
Port []stringRanges - TCP port ranges used to access the app.
- Udp
Port []BrowserRange Access Udp Port Range Args - udp port range
- Udp
Port []stringRanges - UDP port ranges used to access the app.
- Use
In boolDr Mode
- clientless
Apps List<BrowserAccess Clientless App> - domain
Names List<String> - List of domains and IPs.
- segment
Group StringId - bypass
Type 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.
- config
Space String - description String
- Description of the application.
- double
Encrypt Boolean - Whether Double Encryption is enabled or disabled for the app.
- enabled Boolean
- health
Check StringType - health
Reporting String - Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
- icmp
Access StringType - ip
Anchored Boolean - is
Cname BooleanEnabled - Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
- is
Incomplete BooleanDr Config - match
Style String - name String
- Name of the application.
- passive
Health BooleanEnabled - segment
Group StringName - select
Connector BooleanClose To App - server
Groups List<BrowserAccess Server Group> - List of the server group IDs.
- tcp
Keep StringAlive - tcp
Port List<BrowserRange Access Tcp Port Range> - tcp port range
- tcp
Port List<String>Ranges - TCP port ranges used to access the app.
- udp
Port List<BrowserRange Access Udp Port Range> - udp port range
- udp
Port List<String>Ranges - UDP port ranges used to access the app.
- use
In BooleanDr Mode
- clientless
Apps BrowserAccess Clientless App[] - domain
Names string[] - List of domains and IPs.
- segment
Group stringId - bypass
Type 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.
- config
Space string - description string
- Description of the application.
- double
Encrypt boolean - Whether Double Encryption is enabled or disabled for the app.
- enabled boolean
- health
Check stringType - health
Reporting string - Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
- icmp
Access stringType - ip
Anchored boolean - is
Cname booleanEnabled - Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
- is
Incomplete booleanDr Config - match
Style string - name string
- Name of the application.
- passive
Health booleanEnabled - segment
Group stringName - select
Connector booleanClose To App - server
Groups BrowserAccess Server Group[] - List of the server group IDs.
- tcp
Keep stringAlive - tcp
Port BrowserRange Access Tcp Port Range[] - tcp port range
- tcp
Port string[]Ranges - TCP port ranges used to access the app.
- udp
Port BrowserRange Access Udp Port Range[] - udp port range
- udp
Port string[]Ranges - UDP port ranges used to access the app.
- use
In booleanDr Mode
- clientless_
apps Sequence[BrowserAccess Clientless App Args] - domain_
names Sequence[str] - List of domains and IPs.
- segment_
group_ strid - 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_ strtype - health_
reporting str - Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
- icmp_
access_ strtype - ip_
anchored bool - is_
cname_ boolenabled - Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
- is_
incomplete_ booldr_ config - match_
style str - name str
- Name of the application.
- passive_
health_ boolenabled - segment_
group_ strname - select_
connector_ boolclose_ to_ app - server_
groups Sequence[BrowserAccess Server Group Args] - List of the server group IDs.
- tcp_
keep_ stralive - tcp_
port_ Sequence[Browserrange Access Tcp Port Range Args] - tcp port range
- tcp_
port_ Sequence[str]ranges - TCP port ranges used to access the app.
- udp_
port_ Sequence[Browserrange Access Udp Port Range Args] - udp port range
- udp_
port_ Sequence[str]ranges - UDP port ranges used to access the app.
- use_
in_ booldr_ mode
- clientless
Apps List<Property Map> - domain
Names List<String> - List of domains and IPs.
- segment
Group StringId - bypass
Type 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.
- config
Space String - description String
- Description of the application.
- double
Encrypt Boolean - Whether Double Encryption is enabled or disabled for the app.
- enabled Boolean
- health
Check StringType - health
Reporting String - Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
- icmp
Access StringType - ip
Anchored Boolean - is
Cname BooleanEnabled - Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
- is
Incomplete BooleanDr Config - match
Style String - name String
- Name of the application.
- passive
Health BooleanEnabled - segment
Group StringName - select
Connector BooleanClose To App - server
Groups List<Property Map> - List of the server group IDs.
- tcp
Keep StringAlive - tcp
Port List<Property Map>Range - tcp port range
- tcp
Port List<String>Ranges - TCP port ranges used to access the app.
- udp
Port List<Property Map>Range - udp port range
- udp
Port List<String>Ranges - UDP port ranges used to access the app.
- use
In BooleanDr Mode
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.
- Bypass
Type 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.
- Clientless
Apps List<Zscaler.Zpa. Inputs. Browser Access Clientless App> - Config
Space string - Description string
- Description of the application.
- Domain
Names List<string> - List of domains and IPs.
- Double
Encrypt bool - Whether Double Encryption is enabled or disabled for the app.
- Enabled bool
- Health
Check stringType - Health
Reporting string - Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
- Icmp
Access stringType - Ip
Anchored bool - Is
Cname boolEnabled - Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
- Is
Incomplete boolDr Config - Match
Style string - Name string
- Name of the application.
- Passive
Health boolEnabled - Segment
Group stringId - Segment
Group stringName - Select
Connector boolClose To App - Server
Groups List<Zscaler.Zpa. Inputs. Browser Access Server Group> - List of the server group IDs.
- Tcp
Keep stringAlive - Tcp
Port List<Zscaler.Range Zpa. Inputs. Browser Access Tcp Port Range> - tcp port range
- Tcp
Port List<string>Ranges - TCP port ranges used to access the app.
- Udp
Port List<Zscaler.Range Zpa. Inputs. Browser Access Udp Port Range> - udp port range
- Udp
Port List<string>Ranges - UDP port ranges used to access the app.
- Use
In boolDr Mode
- Bypass
Type 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.
- Clientless
Apps []BrowserAccess Clientless App Args - Config
Space string - Description string
- Description of the application.
- Domain
Names []string - List of domains and IPs.
- Double
Encrypt bool - Whether Double Encryption is enabled or disabled for the app.
- Enabled bool
- Health
Check stringType - Health
Reporting string - Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
- Icmp
Access stringType - Ip
Anchored bool - Is
Cname boolEnabled - Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
- Is
Incomplete boolDr Config - Match
Style string - Name string
- Name of the application.
- Passive
Health boolEnabled - Segment
Group stringId - Segment
Group stringName - Select
Connector boolClose To App - Server
Groups []BrowserAccess Server Group Args - List of the server group IDs.
- Tcp
Keep stringAlive - Tcp
Port []BrowserRange Access Tcp Port Range Args - tcp port range
- Tcp
Port []stringRanges - TCP port ranges used to access the app.
- Udp
Port []BrowserRange Access Udp Port Range Args - udp port range
- Udp
Port []stringRanges - UDP port ranges used to access the app.
- Use
In boolDr Mode
- bypass
Type 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.
- clientless
Apps List<BrowserAccess Clientless App> - config
Space String - description String
- Description of the application.
- domain
Names List<String> - List of domains and IPs.
- double
Encrypt Boolean - Whether Double Encryption is enabled or disabled for the app.
- enabled Boolean
- health
Check StringType - health
Reporting String - Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
- icmp
Access StringType - ip
Anchored Boolean - is
Cname BooleanEnabled - Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
- is
Incomplete BooleanDr Config - match
Style String - name String
- Name of the application.
- passive
Health BooleanEnabled - segment
Group StringId - segment
Group StringName - select
Connector BooleanClose To App - server
Groups List<BrowserAccess Server Group> - List of the server group IDs.
- tcp
Keep StringAlive - tcp
Port List<BrowserRange Access Tcp Port Range> - tcp port range
- tcp
Port List<String>Ranges - TCP port ranges used to access the app.
- udp
Port List<BrowserRange Access Udp Port Range> - udp port range
- udp
Port List<String>Ranges - UDP port ranges used to access the app.
- use
In BooleanDr Mode
- bypass
Type 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.
- clientless
Apps BrowserAccess Clientless App[] - config
Space string - description string
- Description of the application.
- domain
Names string[] - List of domains and IPs.
- double
Encrypt boolean - Whether Double Encryption is enabled or disabled for the app.
- enabled boolean
- health
Check stringType - health
Reporting string - Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
- icmp
Access stringType - ip
Anchored boolean - is
Cname booleanEnabled - Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
- is
Incomplete booleanDr Config - match
Style string - name string
- Name of the application.
- passive
Health booleanEnabled - segment
Group stringId - segment
Group stringName - select
Connector booleanClose To App - server
Groups BrowserAccess Server Group[] - List of the server group IDs.
- tcp
Keep stringAlive - tcp
Port BrowserRange Access Tcp Port Range[] - tcp port range
- tcp
Port string[]Ranges - TCP port ranges used to access the app.
- udp
Port BrowserRange Access Udp Port Range[] - udp port range
- udp
Port string[]Ranges - UDP port ranges used to access the app.
- use
In booleanDr Mode
- 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[BrowserAccess Clientless App Args] - 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_ strtype - health_
reporting str - Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
- icmp_
access_ strtype - ip_
anchored bool - is_
cname_ boolenabled - Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
- is_
incomplete_ booldr_ config - match_
style str - name str
- Name of the application.
- passive_
health_ boolenabled - segment_
group_ strid - segment_
group_ strname - select_
connector_ boolclose_ to_ app - server_
groups Sequence[BrowserAccess Server Group Args] - List of the server group IDs.
- tcp_
keep_ stralive - tcp_
port_ Sequence[Browserrange Access Tcp Port Range Args] - tcp port range
- tcp_
port_ Sequence[str]ranges - TCP port ranges used to access the app.
- udp_
port_ Sequence[Browserrange Access Udp Port Range Args] - udp port range
- udp_
port_ Sequence[str]ranges - UDP port ranges used to access the app.
- use_
in_ booldr_ mode
- bypass
Type 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.
- clientless
Apps List<Property Map> - config
Space String - description String
- Description of the application.
- domain
Names List<String> - List of domains and IPs.
- double
Encrypt Boolean - Whether Double Encryption is enabled or disabled for the app.
- enabled Boolean
- health
Check StringType - health
Reporting String - Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
- icmp
Access StringType - ip
Anchored Boolean - is
Cname BooleanEnabled - Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
- is
Incomplete BooleanDr Config - match
Style String - name String
- Name of the application.
- passive
Health BooleanEnabled - segment
Group StringId - segment
Group StringName - select
Connector BooleanClose To App - server
Groups List<Property Map> - List of the server group IDs.
- tcp
Keep StringAlive - tcp
Port List<Property Map>Range - tcp port range
- tcp
Port List<String>Ranges - TCP port ranges used to access the app.
- udp
Port List<Property Map>Range - udp port range
- udp
Port List<String>Ranges - UDP port ranges used to access the app.
- use
In BooleanDr Mode
Supporting Types
BrowserAccessClientlessApp, BrowserAccessClientlessAppArgs
- Application
Port string - Port for the BA app.
- Application
Protocol string - Protocol for the BA app.
- Name string
- Allow
Options bool - If you want ZPA to forward unauthenticated HTTP preflight OPTIONS requests from the browser to the app.
- Certificate
Id string - ID of the BA certificate.
- Description string
- Domain string
- Domain name or IP address of the BA app.
- Enabled bool
- Id string
- Trust
Untrusted boolCert - Indicates whether Use Untrusted Certificates is enabled or disabled for a BA app.
- Application
Port string - Port for the BA app.
- Application
Protocol string - Protocol for the BA app.
- Name string
- Allow
Options bool - If you want ZPA to forward unauthenticated HTTP preflight OPTIONS requests from the browser to the app.
- Certificate
Id string - ID of the BA certificate.
- Description string
- Domain string
- Domain name or IP address of the BA app.
- Enabled bool
- Id string
- Trust
Untrusted boolCert - Indicates whether Use Untrusted Certificates is enabled or disabled for a BA app.
- application
Port String - Port for the BA app.
- application
Protocol String - Protocol for the BA app.
- name String
- allow
Options Boolean - If you want ZPA to forward unauthenticated HTTP preflight OPTIONS requests from the browser to the app.
- certificate
Id String - ID of the BA certificate.
- description String
- domain String
- Domain name or IP address of the BA app.
- enabled Boolean
- id String
- trust
Untrusted BooleanCert - Indicates whether Use Untrusted Certificates is enabled or disabled for a BA app.
- application
Port string - Port for the BA app.
- application
Protocol string - Protocol for the BA app.
- name string
- allow
Options boolean - If you want ZPA to forward unauthenticated HTTP preflight OPTIONS requests from the browser to the app.
- certificate
Id string - ID of the BA certificate.
- description string
- domain string
- Domain name or IP address of the BA app.
- enabled boolean
- id string
- trust
Untrusted booleanCert - 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.
- description str
- domain str
- Domain name or IP address of the BA app.
- enabled bool
- id str
- trust_
untrusted_ boolcert - Indicates whether Use Untrusted Certificates is enabled or disabled for a BA app.
- application
Port String - Port for the BA app.
- application
Protocol String - Protocol for the BA app.
- name String
- allow
Options Boolean - If you want ZPA to forward unauthenticated HTTP preflight OPTIONS requests from the browser to the app.
- certificate
Id String - ID of the BA certificate.
- description String
- domain String
- Domain name or IP address of the BA app.
- enabled Boolean
- id String
- trust
Untrusted BooleanCert - 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
BrowserAccessUdpPortRange, BrowserAccessUdpPortRangeArgs
Package Details
- Repository
- zpa zscaler/pulumi-zpa
- License
- MIT
- Notes
- This Pulumi package is based on the
zpa
Terraform Provider.