zpa.ApplicationSegmentBrowserAccess
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as zpa from "@bdzscaler/pulumi-zpa";
import * as zpa from "@pulumi/zpa";
const testCert = zpa.getBaCertificate({
    name: "sales.acme.com",
});
// ZPA Segment Group resource
const exampleSegmentGroup = new zpa.SegmentGroup("exampleSegmentGroup", {
    description: "Example",
    enabled: true,
});
const exampleAppConnectorGroup = zpa.getAppConnectorGroup({
    name: "AWS-Connector",
});
// ZPA Server Group resource
const exampleServerGroup = new zpa.ServerGroup("exampleServerGroup", {
    description: "Example",
    enabled: true,
    dynamicDiscovery: true,
    appConnectorGroups: [{
        ids: [exampleAppConnectorGroup.then(exampleAppConnectorGroup => exampleAppConnectorGroup.id)],
    }],
});
// Create Browser Access Application
const browserAccessApps = new zpa.ApplicationSegmentBrowserAccess("browserAccessApps", {
    description: "Browser Access Apps",
    enabled: true,
    healthReporting: "ON_ACCESS",
    bypassType: "NEVER",
    tcpPortRanges: [
        "80",
        "80",
    ],
    domainNames: ["sales.acme.com"],
    segmentGroupId: exampleSegmentGroup.id,
    clientlessApps: [{
        name: "sales.acme.com",
        applicationProtocol: "HTTP",
        applicationPort: "80",
        certificateId: testCert.then(testCert => testCert.id),
        trustUntrustedCert: true,
        enabled: true,
        domain: "sales.acme.com",
    }],
    serverGroups: [{
        ids: [exampleServerGroup.id],
    }],
});
import pulumi
import pulumi_zpa as zpa
import zscaler_pulumi_zpa as zpa
test_cert = zpa.get_ba_certificate(name="sales.acme.com")
# ZPA Segment Group resource
example_segment_group = zpa.SegmentGroup("exampleSegmentGroup",
    description="Example",
    enabled=True)
example_app_connector_group = zpa.get_app_connector_group(name="AWS-Connector")
# ZPA Server Group resource
example_server_group = zpa.ServerGroup("exampleServerGroup",
    description="Example",
    enabled=True,
    dynamic_discovery=True,
    app_connector_groups=[zpa.ServerGroupAppConnectorGroupArgs(
        ids=[example_app_connector_group.id],
    )])
# Create Browser Access Application
browser_access_apps = zpa.ApplicationSegmentBrowserAccess("browserAccessApps",
    description="Browser Access Apps",
    enabled=True,
    health_reporting="ON_ACCESS",
    bypass_type="NEVER",
    tcp_port_ranges=[
        "80",
        "80",
    ],
    domain_names=["sales.acme.com"],
    segment_group_id=example_segment_group.id,
    clientless_apps=[zpa.ApplicationSegmentBrowserAccessClientlessAppArgs(
        name="sales.acme.com",
        application_protocol="HTTP",
        application_port="80",
        certificate_id=test_cert.id,
        trust_untrusted_cert=True,
        enabled=True,
        domain="sales.acme.com",
    )],
    server_groups=[zpa.ApplicationSegmentBrowserAccessServerGroupArgs(
        ids=[example_server_group.id],
    )])
package main
import (
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/zscaler/pulumi-zpa/sdk/go/zpa"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		testCert, err := zpa.GetBaCertificate(ctx, &zpa.GetBaCertificateArgs{
			Name: pulumi.StringRef("sales.acme.com"),
		}, nil)
		if err != nil {
			return err
		}
		// ZPA Segment Group resource
		exampleSegmentGroup, err := zpa.NewSegmentGroup(ctx, "exampleSegmentGroup", &zpa.SegmentGroupArgs{
			Description: pulumi.String("Example"),
			Enabled:     pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		exampleAppConnectorGroup, err := zpa.GetAppConnectorGroup(ctx, &zpa.GetAppConnectorGroupArgs{
			Name: pulumi.StringRef("AWS-Connector"),
		}, nil)
		if err != nil {
			return err
		}
		// ZPA Server Group resource
		exampleServerGroup, err := zpa.NewServerGroup(ctx, "exampleServerGroup", &zpa.ServerGroupArgs{
			Description:      pulumi.String("Example"),
			Enabled:          pulumi.Bool(true),
			DynamicDiscovery: pulumi.Bool(true),
			AppConnectorGroups: zpa.ServerGroupAppConnectorGroupArray{
				&zpa.ServerGroupAppConnectorGroupArgs{
					Ids: pulumi.StringArray{
						pulumi.String(exampleAppConnectorGroup.Id),
					},
				},
			},
		})
		if err != nil {
			return err
		}
		// Create Browser Access Application
		_, err = zpa.NewApplicationSegmentBrowserAccess(ctx, "browserAccessApps", &zpa.ApplicationSegmentBrowserAccessArgs{
			Description:     pulumi.String("Browser Access Apps"),
			Enabled:         pulumi.Bool(true),
			HealthReporting: pulumi.String("ON_ACCESS"),
			BypassType:      pulumi.String("NEVER"),
			TcpPortRanges: pulumi.StringArray{
				pulumi.String("80"),
				pulumi.String("80"),
			},
			DomainNames: pulumi.StringArray{
				pulumi.String("sales.acme.com"),
			},
			SegmentGroupId: exampleSegmentGroup.ID(),
			ClientlessApps: zpa.ApplicationSegmentBrowserAccessClientlessAppArray{
				&zpa.ApplicationSegmentBrowserAccessClientlessAppArgs{
					Name:                pulumi.String("sales.acme.com"),
					ApplicationProtocol: pulumi.String("HTTP"),
					ApplicationPort:     pulumi.String("80"),
					CertificateId:       pulumi.String(testCert.Id),
					TrustUntrustedCert:  pulumi.Bool(true),
					Enabled:             pulumi.Bool(true),
					Domain:              pulumi.String("sales.acme.com"),
				},
			},
			ServerGroups: zpa.ApplicationSegmentBrowserAccessServerGroupArray{
				&zpa.ApplicationSegmentBrowserAccessServerGroupArgs{
					Ids: pulumi.StringArray{
						exampleServerGroup.ID(),
					},
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Zpa = Pulumi.Zpa;
using Zpa = Zscaler.Zpa;
return await Deployment.RunAsync(() => 
{
    var testCert = Zpa.GetBaCertificate.Invoke(new()
    {
        Name = "sales.acme.com",
    });
    // ZPA Segment Group resource
    var exampleSegmentGroup = new Zpa.SegmentGroup("exampleSegmentGroup", new()
    {
        Description = "Example",
        Enabled = true,
    });
    var exampleAppConnectorGroup = Zpa.GetAppConnectorGroup.Invoke(new()
    {
        Name = "AWS-Connector",
    });
    // ZPA Server Group resource
    var exampleServerGroup = new Zpa.ServerGroup("exampleServerGroup", new()
    {
        Description = "Example",
        Enabled = true,
        DynamicDiscovery = true,
        AppConnectorGroups = new[]
        {
            new Zpa.Inputs.ServerGroupAppConnectorGroupArgs
            {
                Ids = new[]
                {
                    exampleAppConnectorGroup.Apply(getAppConnectorGroupResult => getAppConnectorGroupResult.Id),
                },
            },
        },
    });
    // Create Browser Access Application
    var browserAccessApps = new Zpa.ApplicationSegmentBrowserAccess("browserAccessApps", new()
    {
        Description = "Browser Access Apps",
        Enabled = true,
        HealthReporting = "ON_ACCESS",
        BypassType = "NEVER",
        TcpPortRanges = new[]
        {
            "80",
            "80",
        },
        DomainNames = new[]
        {
            "sales.acme.com",
        },
        SegmentGroupId = exampleSegmentGroup.Id,
        ClientlessApps = new[]
        {
            new Zpa.Inputs.ApplicationSegmentBrowserAccessClientlessAppArgs
            {
                Name = "sales.acme.com",
                ApplicationProtocol = "HTTP",
                ApplicationPort = "80",
                CertificateId = testCert.Apply(getBaCertificateResult => getBaCertificateResult.Id),
                TrustUntrustedCert = true,
                Enabled = true,
                Domain = "sales.acme.com",
            },
        },
        ServerGroups = new[]
        {
            new Zpa.Inputs.ApplicationSegmentBrowserAccessServerGroupArgs
            {
                Ids = new[]
                {
                    exampleServerGroup.Id,
                },
            },
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.zpa.ZpaFunctions;
import com.pulumi.zpa.inputs.GetBaCertificateArgs;
import com.pulumi.zpa.SegmentGroup;
import com.pulumi.zpa.SegmentGroupArgs;
import com.pulumi.zpa.inputs.GetAppConnectorGroupArgs;
import com.pulumi.zpa.ServerGroup;
import com.pulumi.zpa.ServerGroupArgs;
import com.pulumi.zpa.inputs.ServerGroupAppConnectorGroupArgs;
import com.pulumi.zpa.ApplicationSegmentBrowserAccess;
import com.pulumi.zpa.ApplicationSegmentBrowserAccessArgs;
import com.pulumi.zpa.inputs.ApplicationSegmentBrowserAccessClientlessAppArgs;
import com.pulumi.zpa.inputs.ApplicationSegmentBrowserAccessServerGroupArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        final var testCert = ZpaFunctions.getBaCertificate(GetBaCertificateArgs.builder()
            .name("sales.acme.com")
            .build());
        // ZPA Segment Group resource
        var exampleSegmentGroup = new SegmentGroup("exampleSegmentGroup", SegmentGroupArgs.builder()
            .description("Example")
            .enabled(true)
            .build());
        final var exampleAppConnectorGroup = ZpaFunctions.getAppConnectorGroup(GetAppConnectorGroupArgs.builder()
            .name("AWS-Connector")
            .build());
        // ZPA Server Group resource
        var exampleServerGroup = new ServerGroup("exampleServerGroup", ServerGroupArgs.builder()
            .description("Example")
            .enabled(true)
            .dynamicDiscovery(true)
            .appConnectorGroups(ServerGroupAppConnectorGroupArgs.builder()
                .ids(exampleAppConnectorGroup.applyValue(getAppConnectorGroupResult -> getAppConnectorGroupResult.id()))
                .build())
            .build());
        // Create Browser Access Application
        var browserAccessApps = new ApplicationSegmentBrowserAccess("browserAccessApps", ApplicationSegmentBrowserAccessArgs.builder()
            .description("Browser Access Apps")
            .enabled(true)
            .healthReporting("ON_ACCESS")
            .bypassType("NEVER")
            .tcpPortRanges(            
                "80",
                "80")
            .domainNames("sales.acme.com")
            .segmentGroupId(exampleSegmentGroup.id())
            .clientlessApps(ApplicationSegmentBrowserAccessClientlessAppArgs.builder()
                .name("sales.acme.com")
                .applicationProtocol("HTTP")
                .applicationPort("80")
                .certificateId(testCert.applyValue(getBaCertificateResult -> getBaCertificateResult.id()))
                .trustUntrustedCert(true)
                .enabled(true)
                .domain("sales.acme.com")
                .build())
            .serverGroups(ApplicationSegmentBrowserAccessServerGroupArgs.builder()
                .ids(exampleServerGroup.id())
                .build())
            .build());
    }
}
resources:
  # Create Browser Access Application
  browserAccessApps:
    type: zpa:ApplicationSegmentBrowserAccess
    properties:
      description: Browser Access Apps
      enabled: true
      healthReporting: ON_ACCESS
      bypassType: NEVER
      tcpPortRanges:
        - '80'
        - '80'
      domainNames:
        - sales.acme.com
      segmentGroupId: ${exampleSegmentGroup.id}
      clientlessApps:
        - name: sales.acme.com
          applicationProtocol: HTTP
          applicationPort: '80'
          certificateId: ${testCert.id}
          trustUntrustedCert: true
          enabled: true
          domain: sales.acme.com
      serverGroups:
        - ids:
            - ${exampleServerGroup.id}
  # ZPA Segment Group resource
  exampleSegmentGroup:
    type: zpa:SegmentGroup
    properties:
      description: Example
      enabled: true
  # ZPA Server Group resource
  exampleServerGroup:
    type: zpa:ServerGroup
    properties:
      description: Example
      enabled: true
      dynamicDiscovery: true
      appConnectorGroups:
        - ids:
            - ${exampleAppConnectorGroup.id}
variables:
  testCert:
    fn::invoke:
      Function: zpa:getBaCertificate
      Arguments:
        name: sales.acme.com
  exampleAppConnectorGroup:
    fn::invoke:
      Function: zpa:getAppConnectorGroup
      Arguments:
        name: AWS-Connector
Create ApplicationSegmentBrowserAccess Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ApplicationSegmentBrowserAccess(name: string, args: ApplicationSegmentBrowserAccessArgs, opts?: CustomResourceOptions);@overload
def ApplicationSegmentBrowserAccess(resource_name: str,
                                    args: ApplicationSegmentBrowserAccessArgs,
                                    opts: Optional[ResourceOptions] = None)
@overload
def ApplicationSegmentBrowserAccess(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    domain_names: Optional[Sequence[str]] = None,
                                    clientless_apps: Optional[Sequence[ApplicationSegmentBrowserAccessClientlessAppArgs]] = 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[ApplicationSegmentBrowserAccessServerGroupArgs]] = None,
                                    tcp_keep_alive: Optional[str] = None,
                                    tcp_port_range: Optional[Sequence[ApplicationSegmentBrowserAccessTcpPortRangeArgs]] = None,
                                    tcp_port_ranges: Optional[Sequence[str]] = None,
                                    udp_port_range: Optional[Sequence[ApplicationSegmentBrowserAccessUdpPortRangeArgs]] = None,
                                    udp_port_ranges: Optional[Sequence[str]] = None,
                                    use_in_dr_mode: Optional[bool] = None)func NewApplicationSegmentBrowserAccess(ctx *Context, name string, args ApplicationSegmentBrowserAccessArgs, opts ...ResourceOption) (*ApplicationSegmentBrowserAccess, error)public ApplicationSegmentBrowserAccess(string name, ApplicationSegmentBrowserAccessArgs args, CustomResourceOptions? opts = null)
public ApplicationSegmentBrowserAccess(String name, ApplicationSegmentBrowserAccessArgs args)
public ApplicationSegmentBrowserAccess(String name, ApplicationSegmentBrowserAccessArgs args, CustomResourceOptions options)
type: zpa:ApplicationSegmentBrowserAccess
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 ApplicationSegmentBrowserAccessArgs
- 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 ApplicationSegmentBrowserAccessArgs
- 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 ApplicationSegmentBrowserAccessArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ApplicationSegmentBrowserAccessArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ApplicationSegmentBrowserAccessArgs
- 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 applicationSegmentBrowserAccessResource = new Zpa.ApplicationSegmentBrowserAccess("applicationSegmentBrowserAccessResource", new()
{
    DomainNames = new[]
    {
        "string",
    },
    ClientlessApps = new[]
    {
        new Zpa.Inputs.ApplicationSegmentBrowserAccessClientlessAppArgs
        {
            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.ApplicationSegmentBrowserAccessServerGroupArgs
        {
            Ids = new[]
            {
                "string",
            },
        },
    },
    TcpKeepAlive = "string",
    TcpPortRange = new[]
    {
        new Zpa.Inputs.ApplicationSegmentBrowserAccessTcpPortRangeArgs
        {
            From = "string",
            To = "string",
        },
    },
    TcpPortRanges = new[]
    {
        "string",
    },
    UdpPortRange = new[]
    {
        new Zpa.Inputs.ApplicationSegmentBrowserAccessUdpPortRangeArgs
        {
            From = "string",
            To = "string",
        },
    },
    UdpPortRanges = new[]
    {
        "string",
    },
    UseInDrMode = false,
});
example, err := zpa.NewApplicationSegmentBrowserAccess(ctx, "applicationSegmentBrowserAccessResource", &zpa.ApplicationSegmentBrowserAccessArgs{
	DomainNames: pulumi.StringArray{
		pulumi.String("string"),
	},
	ClientlessApps: zpa.ApplicationSegmentBrowserAccessClientlessAppArray{
		&zpa.ApplicationSegmentBrowserAccessClientlessAppArgs{
			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.ApplicationSegmentBrowserAccessServerGroupArray{
		&zpa.ApplicationSegmentBrowserAccessServerGroupArgs{
			Ids: pulumi.StringArray{
				pulumi.String("string"),
			},
		},
	},
	TcpKeepAlive: pulumi.String("string"),
	TcpPortRange: zpa.ApplicationSegmentBrowserAccessTcpPortRangeArray{
		&zpa.ApplicationSegmentBrowserAccessTcpPortRangeArgs{
			From: pulumi.String("string"),
			To:   pulumi.String("string"),
		},
	},
	TcpPortRanges: pulumi.StringArray{
		pulumi.String("string"),
	},
	UdpPortRange: zpa.ApplicationSegmentBrowserAccessUdpPortRangeArray{
		&zpa.ApplicationSegmentBrowserAccessUdpPortRangeArgs{
			From: pulumi.String("string"),
			To:   pulumi.String("string"),
		},
	},
	UdpPortRanges: pulumi.StringArray{
		pulumi.String("string"),
	},
	UseInDrMode: pulumi.Bool(false),
})
var applicationSegmentBrowserAccessResource = new ApplicationSegmentBrowserAccess("applicationSegmentBrowserAccessResource", ApplicationSegmentBrowserAccessArgs.builder()
    .domainNames("string")
    .clientlessApps(ApplicationSegmentBrowserAccessClientlessAppArgs.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(ApplicationSegmentBrowserAccessServerGroupArgs.builder()
        .ids("string")
        .build())
    .tcpKeepAlive("string")
    .tcpPortRange(ApplicationSegmentBrowserAccessTcpPortRangeArgs.builder()
        .from("string")
        .to("string")
        .build())
    .tcpPortRanges("string")
    .udpPortRange(ApplicationSegmentBrowserAccessUdpPortRangeArgs.builder()
        .from("string")
        .to("string")
        .build())
    .udpPortRanges("string")
    .useInDrMode(false)
    .build());
application_segment_browser_access_resource = zpa.ApplicationSegmentBrowserAccess("applicationSegmentBrowserAccessResource",
    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 applicationSegmentBrowserAccessResource = new zpa.ApplicationSegmentBrowserAccess("applicationSegmentBrowserAccessResource", {
    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:ApplicationSegmentBrowserAccess
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
ApplicationSegmentBrowserAccess 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 ApplicationSegmentBrowserAccess resource accepts the following input properties:
- ClientlessApps List<Zscaler.Zpa. Inputs. Application Segment Browser Access Clientless App> 
- DomainNames List<string>
- List of domains and IPs.
- SegmentGroup stringId 
- 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
- HealthCheck stringType 
- HealthReporting string
- Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
- IcmpAccess stringType 
- IpAnchored bool
- IsCname boolEnabled 
- Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
- IsIncomplete boolDr Config 
- MatchStyle string
- Name string
- Name of the application.
- PassiveHealth boolEnabled 
- SegmentGroup stringName 
- SelectConnector boolClose To App 
- ServerGroups List<Zscaler.Zpa. Inputs. Application Segment Browser Access Server Group> 
- List of the server group IDs.
- TcpKeep stringAlive 
- TcpPort List<Zscaler.Range Zpa. Inputs. Application Segment Browser Access Tcp Port Range> 
- tcp port range
- TcpPort List<string>Ranges 
- TCP port ranges used to access the app.
- UdpPort List<Zscaler.Range Zpa. Inputs. Application Segment Browser Access Udp Port Range> 
- udp port range
- UdpPort List<string>Ranges 
- UDP port ranges used to access the app.
- UseIn boolDr Mode 
- ClientlessApps []ApplicationSegment Browser Access Clientless App Args 
- DomainNames []string
- List of domains and IPs.
- SegmentGroup stringId 
- 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
- HealthCheck stringType 
- HealthReporting string
- Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
- IcmpAccess stringType 
- IpAnchored bool
- IsCname boolEnabled 
- Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
- IsIncomplete boolDr Config 
- MatchStyle string
- Name string
- Name of the application.
- PassiveHealth boolEnabled 
- SegmentGroup stringName 
- SelectConnector boolClose To App 
- ServerGroups []ApplicationSegment Browser Access Server Group Args 
- List of the server group IDs.
- TcpKeep stringAlive 
- TcpPort []ApplicationRange Segment Browser Access Tcp Port Range Args 
- tcp port range
- TcpPort []stringRanges 
- TCP port ranges used to access the app.
- UdpPort []ApplicationRange Segment Browser Access Udp Port Range Args 
- udp port range
- UdpPort []stringRanges 
- UDP port ranges used to access the app.
- UseIn boolDr Mode 
- clientlessApps List<ApplicationSegment Browser Access Clientless App> 
- domainNames List<String>
- List of domains and IPs.
- segmentGroup StringId 
- 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
- healthCheck StringType 
- healthReporting String
- Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
- icmpAccess StringType 
- ipAnchored Boolean
- isCname BooleanEnabled 
- Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
- isIncomplete BooleanDr Config 
- matchStyle String
- name String
- Name of the application.
- passiveHealth BooleanEnabled 
- segmentGroup StringName 
- selectConnector BooleanClose To App 
- serverGroups List<ApplicationSegment Browser Access Server Group> 
- List of the server group IDs.
- tcpKeep StringAlive 
- tcpPort List<ApplicationRange Segment Browser Access Tcp Port Range> 
- tcp port range
- tcpPort List<String>Ranges 
- TCP port ranges used to access the app.
- udpPort List<ApplicationRange Segment Browser Access Udp Port Range> 
- udp port range
- udpPort List<String>Ranges 
- UDP port ranges used to access the app.
- useIn BooleanDr Mode 
- clientlessApps ApplicationSegment Browser Access Clientless App[] 
- domainNames string[]
- List of domains and IPs.
- segmentGroup stringId 
- 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
- healthCheck stringType 
- healthReporting string
- Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
- icmpAccess stringType 
- ipAnchored boolean
- isCname booleanEnabled 
- Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
- isIncomplete booleanDr Config 
- matchStyle string
- name string
- Name of the application.
- passiveHealth booleanEnabled 
- segmentGroup stringName 
- selectConnector booleanClose To App 
- serverGroups ApplicationSegment Browser Access Server Group[] 
- List of the server group IDs.
- tcpKeep stringAlive 
- tcpPort ApplicationRange Segment Browser Access Tcp Port Range[] 
- tcp port range
- tcpPort string[]Ranges 
- TCP port ranges used to access the app.
- udpPort ApplicationRange Segment Browser Access Udp Port Range[] 
- udp port range
- udpPort string[]Ranges 
- UDP port ranges used to access the app.
- useIn booleanDr Mode 
- clientless_apps Sequence[ApplicationSegment Browser Access 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[ApplicationSegment Browser Access Server Group Args] 
- List of the server group IDs.
- tcp_keep_ stralive 
- tcp_port_ Sequence[Applicationrange Segment Browser Access Tcp Port Range Args] 
- tcp port range
- tcp_port_ Sequence[str]ranges 
- TCP port ranges used to access the app.
- udp_port_ Sequence[Applicationrange Segment Browser 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 
- clientlessApps List<Property Map>
- domainNames List<String>
- List of domains and IPs.
- segmentGroup StringId 
- 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
- healthCheck StringType 
- healthReporting String
- Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
- icmpAccess StringType 
- ipAnchored Boolean
- isCname BooleanEnabled 
- Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
- isIncomplete BooleanDr Config 
- matchStyle String
- name String
- Name of the application.
- passiveHealth BooleanEnabled 
- segmentGroup StringName 
- selectConnector BooleanClose To App 
- serverGroups List<Property Map>
- List of the server group IDs.
- tcpKeep StringAlive 
- tcpPort List<Property Map>Range 
- tcp port range
- tcpPort List<String>Ranges 
- TCP port ranges used to access the app.
- udpPort List<Property Map>Range 
- udp port range
- udpPort List<String>Ranges 
- UDP port ranges used to access the app.
- useIn BooleanDr Mode 
Outputs
All input properties are implicitly available as output properties. Additionally, the ApplicationSegmentBrowserAccess 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 ApplicationSegmentBrowserAccess Resource
Get an existing ApplicationSegmentBrowserAccess 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?: ApplicationSegmentBrowserAccessState, opts?: CustomResourceOptions): ApplicationSegmentBrowserAccess@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        bypass_type: Optional[str] = None,
        clientless_apps: Optional[Sequence[ApplicationSegmentBrowserAccessClientlessAppArgs]] = 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[ApplicationSegmentBrowserAccessServerGroupArgs]] = None,
        tcp_keep_alive: Optional[str] = None,
        tcp_port_range: Optional[Sequence[ApplicationSegmentBrowserAccessTcpPortRangeArgs]] = None,
        tcp_port_ranges: Optional[Sequence[str]] = None,
        udp_port_range: Optional[Sequence[ApplicationSegmentBrowserAccessUdpPortRangeArgs]] = None,
        udp_port_ranges: Optional[Sequence[str]] = None,
        use_in_dr_mode: Optional[bool] = None) -> ApplicationSegmentBrowserAccessfunc GetApplicationSegmentBrowserAccess(ctx *Context, name string, id IDInput, state *ApplicationSegmentBrowserAccessState, opts ...ResourceOption) (*ApplicationSegmentBrowserAccess, error)public static ApplicationSegmentBrowserAccess Get(string name, Input<string> id, ApplicationSegmentBrowserAccessState? state, CustomResourceOptions? opts = null)public static ApplicationSegmentBrowserAccess get(String name, Output<String> id, ApplicationSegmentBrowserAccessState state, CustomResourceOptions options)resources:  _:    type: zpa:ApplicationSegmentBrowserAccess    get:      id: ${id}- 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.
- 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. Application Segment Browser Access Clientless App> 
- 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
- HealthCheck stringType 
- HealthReporting string
- Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
- IcmpAccess stringType 
- IpAnchored bool
- IsCname boolEnabled 
- Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
- IsIncomplete boolDr Config 
- MatchStyle string
- Name string
- Name of the application.
- PassiveHealth boolEnabled 
- SegmentGroup stringId 
- SegmentGroup stringName 
- SelectConnector boolClose To App 
- ServerGroups List<Zscaler.Zpa. Inputs. Application Segment Browser Access Server Group> 
- List of the server group IDs.
- TcpKeep stringAlive 
- TcpPort List<Zscaler.Range Zpa. Inputs. Application Segment Browser Access Tcp Port Range> 
- tcp port range
- TcpPort List<string>Ranges 
- TCP port ranges used to access the app.
- UdpPort List<Zscaler.Range Zpa. Inputs. Application Segment Browser Access Udp Port Range> 
- udp port range
- UdpPort List<string>Ranges 
- UDP port ranges used to access the app.
- UseIn boolDr Mode 
- 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 []ApplicationSegment Browser Access Clientless App Args 
- 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
- HealthCheck stringType 
- HealthReporting string
- Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
- IcmpAccess stringType 
- IpAnchored bool
- IsCname boolEnabled 
- Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
- IsIncomplete boolDr Config 
- MatchStyle string
- Name string
- Name of the application.
- PassiveHealth boolEnabled 
- SegmentGroup stringId 
- SegmentGroup stringName 
- SelectConnector boolClose To App 
- ServerGroups []ApplicationSegment Browser Access Server Group Args 
- List of the server group IDs.
- TcpKeep stringAlive 
- TcpPort []ApplicationRange Segment Browser Access Tcp Port Range Args 
- tcp port range
- TcpPort []stringRanges 
- TCP port ranges used to access the app.
- UdpPort []ApplicationRange Segment Browser Access Udp Port Range Args 
- udp port range
- UdpPort []stringRanges 
- UDP port ranges used to access the app.
- UseIn boolDr Mode 
- 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<ApplicationSegment Browser Access Clientless App> 
- 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
- healthCheck StringType 
- healthReporting String
- Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
- icmpAccess StringType 
- ipAnchored Boolean
- isCname BooleanEnabled 
- Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
- isIncomplete BooleanDr Config 
- matchStyle String
- name String
- Name of the application.
- passiveHealth BooleanEnabled 
- segmentGroup StringId 
- segmentGroup StringName 
- selectConnector BooleanClose To App 
- serverGroups List<ApplicationSegment Browser Access Server Group> 
- List of the server group IDs.
- tcpKeep StringAlive 
- tcpPort List<ApplicationRange Segment Browser Access Tcp Port Range> 
- tcp port range
- tcpPort List<String>Ranges 
- TCP port ranges used to access the app.
- udpPort List<ApplicationRange Segment Browser Access Udp Port Range> 
- udp port range
- udpPort List<String>Ranges 
- UDP port ranges used to access the app.
- useIn BooleanDr Mode 
- 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 ApplicationSegment Browser Access Clientless App[] 
- 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
- healthCheck stringType 
- healthReporting string
- Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
- icmpAccess stringType 
- ipAnchored boolean
- isCname booleanEnabled 
- Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
- isIncomplete booleanDr Config 
- matchStyle string
- name string
- Name of the application.
- passiveHealth booleanEnabled 
- segmentGroup stringId 
- segmentGroup stringName 
- selectConnector booleanClose To App 
- serverGroups ApplicationSegment Browser Access Server Group[] 
- List of the server group IDs.
- tcpKeep stringAlive 
- tcpPort ApplicationRange Segment Browser Access Tcp Port Range[] 
- tcp port range
- tcpPort string[]Ranges 
- TCP port ranges used to access the app.
- udpPort ApplicationRange Segment Browser Access Udp Port Range[] 
- udp port range
- udpPort string[]Ranges 
- UDP port ranges used to access the app.
- useIn 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[ApplicationSegment Browser Access 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[ApplicationSegment Browser Access Server Group Args] 
- List of the server group IDs.
- tcp_keep_ stralive 
- tcp_port_ Sequence[Applicationrange Segment Browser Access Tcp Port Range Args] 
- tcp port range
- tcp_port_ Sequence[str]ranges 
- TCP port ranges used to access the app.
- udp_port_ Sequence[Applicationrange Segment Browser 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 
- 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
- healthCheck StringType 
- healthReporting String
- Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
- icmpAccess StringType 
- ipAnchored Boolean
- isCname BooleanEnabled 
- Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
- isIncomplete BooleanDr Config 
- matchStyle String
- name String
- Name of the application.
- passiveHealth BooleanEnabled 
- segmentGroup StringId 
- segmentGroup StringName 
- selectConnector BooleanClose To App 
- serverGroups List<Property Map>
- List of the server group IDs.
- tcpKeep StringAlive 
- tcpPort List<Property Map>Range 
- tcp port range
- tcpPort List<String>Ranges 
- TCP port ranges used to access the app.
- udpPort List<Property Map>Range 
- udp port range
- udpPort List<String>Ranges 
- UDP port ranges used to access the app.
- useIn BooleanDr Mode 
Supporting Types
ApplicationSegmentBrowserAccessClientlessApp, ApplicationSegmentBrowserAccessClientlessAppArgs            
- 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.
- Description string
- Domain string
- Domain name or IP address of the BA app.
- Enabled bool
- Id string
- TrustUntrusted boolCert 
- 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.
- Description string
- Domain string
- Domain name or IP address of the BA app.
- Enabled bool
- Id string
- TrustUntrusted boolCert 
- 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.
- description String
- domain String
- Domain name or IP address of the BA app.
- enabled Boolean
- id String
- trustUntrusted BooleanCert 
- 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.
- description string
- domain string
- Domain name or IP address of the BA app.
- enabled boolean
- id string
- trustUntrusted 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.
- 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.
- description String
- domain String
- Domain name or IP address of the BA app.
- enabled Boolean
- id String
- trustUntrusted BooleanCert 
- Indicates whether Use Untrusted Certificates is enabled or disabled for a BA app.
ApplicationSegmentBrowserAccessServerGroup, ApplicationSegmentBrowserAccessServerGroupArgs            
- Ids List<string>
- Ids []string
- ids List<String>
- ids string[]
- ids Sequence[str]
- ids List<String>
ApplicationSegmentBrowserAccessTcpPortRange, ApplicationSegmentBrowserAccessTcpPortRangeArgs              
ApplicationSegmentBrowserAccessUdpPortRange, ApplicationSegmentBrowserAccessUdpPortRangeArgs              
Import
Zscaler offers a dedicated tool called Zscaler-Terraformer to allow the automated import of ZPA configurations into Terraform-compliant HashiCorp Configuration Language.
Visit
zpa_application_segment_browser_access Application Segment Browser Access can be imported by using <BROWSER ACCESS ID> or <<BROWSER ACCESS NAME> as the import ID.
For example:
$ pulumi import zpa:index/applicationSegmentBrowserAccess:ApplicationSegmentBrowserAccess example <browser_access_id>.
or
$ pulumi import zpa:index/applicationSegmentBrowserAccess:ApplicationSegmentBrowserAccess example <browser_access_name>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- zpa zscaler/pulumi-zpa
- License
- MIT
- Notes
- This Pulumi package is based on the zpaTerraform Provider.
