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

zpa.CloudBrowserIsolationExternalProfile

Explore with Pulumi AI

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

    The zpa_cloud_browser_isolation_external_profile resource creates a Cloud Browser Isolation external profile. This resource can then be used in as part of zpa.PolicyAccessIsolationRule when the action attribute is set to ISOLATE.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as zpa from "@bdzscaler/pulumi-zpa";
    import * as zpa from "@pulumi/zpa";
    
    const thisCloudBrowserIsolationBanner = zpa.getCloudBrowserIsolationBanner({
        name: "Default",
    });
    const singapore = zpa.getCloudBrowserIsolationRegion({
        name: "Singapore",
    });
    const frankfurt = zpa.getCloudBrowserIsolationRegion({
        name: "Frankfurt",
    });
    const thisCloudBrowserIsolationCertificate = zpa.getCloudBrowserIsolationCertificate({
        name: "Zscaler Root Certificate",
    });
    const thisCloudBrowserIsolationExternalProfile = new zpa.CloudBrowserIsolationExternalProfile("thisCloudBrowserIsolationExternalProfile", {
        description: "CBI_Profile_Example",
        bannerId: thisCloudBrowserIsolationBanner.then(thisCloudBrowserIsolationBanner => thisCloudBrowserIsolationBanner.id),
        regionIds: [singapore.then(singapore => singapore.id)],
        certificateIds: [thisCloudBrowserIsolationCertificate.then(thisCloudBrowserIsolationCertificate => thisCloudBrowserIsolationCertificate.id)],
        userExperiences: [{
            sessionPersistence: true,
            browserInBrowser: true,
        }],
        securityControls: [{
            copyPaste: "all",
            uploadDownload: "all",
            documentViewer: true,
            localRender: true,
            allowPrinting: true,
            restrictKeystrokes: false,
        }],
    });
    
    import pulumi
    import pulumi_zpa as zpa
    import zscaler_pulumi_zpa as zpa
    
    this_cloud_browser_isolation_banner = zpa.get_cloud_browser_isolation_banner(name="Default")
    singapore = zpa.get_cloud_browser_isolation_region(name="Singapore")
    frankfurt = zpa.get_cloud_browser_isolation_region(name="Frankfurt")
    this_cloud_browser_isolation_certificate = zpa.get_cloud_browser_isolation_certificate(name="Zscaler Root Certificate")
    this_cloud_browser_isolation_external_profile = zpa.CloudBrowserIsolationExternalProfile("thisCloudBrowserIsolationExternalProfile",
        description="CBI_Profile_Example",
        banner_id=this_cloud_browser_isolation_banner.id,
        region_ids=[singapore.id],
        certificate_ids=[this_cloud_browser_isolation_certificate.id],
        user_experiences=[zpa.CloudBrowserIsolationExternalProfileUserExperienceArgs(
            session_persistence=True,
            browser_in_browser=True,
        )],
        security_controls=[zpa.CloudBrowserIsolationExternalProfileSecurityControlArgs(
            copy_paste="all",
            upload_download="all",
            document_viewer=True,
            local_render=True,
            allow_printing=True,
            restrict_keystrokes=False,
        )])
    
    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 {
    		thisCloudBrowserIsolationBanner, err := zpa.LookupCloudBrowserIsolationBanner(ctx, &zpa.LookupCloudBrowserIsolationBannerArgs{
    			Name: pulumi.StringRef("Default"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		singapore, err := zpa.GetCloudBrowserIsolationRegion(ctx, &zpa.GetCloudBrowserIsolationRegionArgs{
    			Name: pulumi.StringRef("Singapore"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		_, err = zpa.GetCloudBrowserIsolationRegion(ctx, &zpa.GetCloudBrowserIsolationRegionArgs{
    			Name: pulumi.StringRef("Frankfurt"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		thisCloudBrowserIsolationCertificate, err := zpa.LookupCloudBrowserIsolationCertificate(ctx, &zpa.LookupCloudBrowserIsolationCertificateArgs{
    			Name: pulumi.StringRef("Zscaler Root Certificate"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		_, err = zpa.NewCloudBrowserIsolationExternalProfile(ctx, "thisCloudBrowserIsolationExternalProfile", &zpa.CloudBrowserIsolationExternalProfileArgs{
    			Description: pulumi.String("CBI_Profile_Example"),
    			BannerId:    pulumi.String(thisCloudBrowserIsolationBanner.Id),
    			RegionIds: pulumi.StringArray{
    				pulumi.String(singapore.Id),
    			},
    			CertificateIds: pulumi.StringArray{
    				pulumi.String(thisCloudBrowserIsolationCertificate.Id),
    			},
    			UserExperiences: zpa.CloudBrowserIsolationExternalProfileUserExperienceArray{
    				&zpa.CloudBrowserIsolationExternalProfileUserExperienceArgs{
    					SessionPersistence: pulumi.Bool(true),
    					BrowserInBrowser:   pulumi.Bool(true),
    				},
    			},
    			SecurityControls: zpa.CloudBrowserIsolationExternalProfileSecurityControlArray{
    				&zpa.CloudBrowserIsolationExternalProfileSecurityControlArgs{
    					CopyPaste:          pulumi.String("all"),
    					UploadDownload:     pulumi.String("all"),
    					DocumentViewer:     pulumi.Bool(true),
    					LocalRender:        pulumi.Bool(true),
    					AllowPrinting:      pulumi.Bool(true),
    					RestrictKeystrokes: pulumi.Bool(false),
    				},
    			},
    		})
    		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 thisCloudBrowserIsolationBanner = Zpa.GetCloudBrowserIsolationBanner.Invoke(new()
        {
            Name = "Default",
        });
    
        var singapore = Zpa.GetCloudBrowserIsolationRegion.Invoke(new()
        {
            Name = "Singapore",
        });
    
        var frankfurt = Zpa.GetCloudBrowserIsolationRegion.Invoke(new()
        {
            Name = "Frankfurt",
        });
    
        var thisCloudBrowserIsolationCertificate = Zpa.GetCloudBrowserIsolationCertificate.Invoke(new()
        {
            Name = "Zscaler Root Certificate",
        });
    
        var thisCloudBrowserIsolationExternalProfile = new Zpa.CloudBrowserIsolationExternalProfile("thisCloudBrowserIsolationExternalProfile", new()
        {
            Description = "CBI_Profile_Example",
            BannerId = thisCloudBrowserIsolationBanner.Apply(getCloudBrowserIsolationBannerResult => getCloudBrowserIsolationBannerResult.Id),
            RegionIds = new[]
            {
                singapore.Apply(getCloudBrowserIsolationRegionResult => getCloudBrowserIsolationRegionResult.Id),
            },
            CertificateIds = new[]
            {
                thisCloudBrowserIsolationCertificate.Apply(getCloudBrowserIsolationCertificateResult => getCloudBrowserIsolationCertificateResult.Id),
            },
            UserExperiences = new[]
            {
                new Zpa.Inputs.CloudBrowserIsolationExternalProfileUserExperienceArgs
                {
                    SessionPersistence = true,
                    BrowserInBrowser = true,
                },
            },
            SecurityControls = new[]
            {
                new Zpa.Inputs.CloudBrowserIsolationExternalProfileSecurityControlArgs
                {
                    CopyPaste = "all",
                    UploadDownload = "all",
                    DocumentViewer = true,
                    LocalRender = true,
                    AllowPrinting = true,
                    RestrictKeystrokes = false,
                },
            },
        });
    
    });
    
    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.GetCloudBrowserIsolationBannerArgs;
    import com.pulumi.zpa.inputs.GetCloudBrowserIsolationRegionArgs;
    import com.pulumi.zpa.inputs.GetCloudBrowserIsolationCertificateArgs;
    import com.pulumi.zpa.CloudBrowserIsolationExternalProfile;
    import com.pulumi.zpa.CloudBrowserIsolationExternalProfileArgs;
    import com.pulumi.zpa.inputs.CloudBrowserIsolationExternalProfileUserExperienceArgs;
    import com.pulumi.zpa.inputs.CloudBrowserIsolationExternalProfileSecurityControlArgs;
    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 thisCloudBrowserIsolationBanner = ZpaFunctions.getCloudBrowserIsolationBanner(GetCloudBrowserIsolationBannerArgs.builder()
                .name("Default")
                .build());
    
            final var singapore = ZpaFunctions.getCloudBrowserIsolationRegion(GetCloudBrowserIsolationRegionArgs.builder()
                .name("Singapore")
                .build());
    
            final var frankfurt = ZpaFunctions.getCloudBrowserIsolationRegion(GetCloudBrowserIsolationRegionArgs.builder()
                .name("Frankfurt")
                .build());
    
            final var thisCloudBrowserIsolationCertificate = ZpaFunctions.getCloudBrowserIsolationCertificate(GetCloudBrowserIsolationCertificateArgs.builder()
                .name("Zscaler Root Certificate")
                .build());
    
            var thisCloudBrowserIsolationExternalProfile = new CloudBrowserIsolationExternalProfile("thisCloudBrowserIsolationExternalProfile", CloudBrowserIsolationExternalProfileArgs.builder()        
                .description("CBI_Profile_Example")
                .bannerId(thisCloudBrowserIsolationBanner.applyValue(getCloudBrowserIsolationBannerResult -> getCloudBrowserIsolationBannerResult.id()))
                .regionIds(singapore.applyValue(getCloudBrowserIsolationRegionResult -> getCloudBrowserIsolationRegionResult.id()))
                .certificateIds(thisCloudBrowserIsolationCertificate.applyValue(getCloudBrowserIsolationCertificateResult -> getCloudBrowserIsolationCertificateResult.id()))
                .userExperiences(CloudBrowserIsolationExternalProfileUserExperienceArgs.builder()
                    .sessionPersistence(true)
                    .browserInBrowser(true)
                    .build())
                .securityControls(CloudBrowserIsolationExternalProfileSecurityControlArgs.builder()
                    .copyPaste("all")
                    .uploadDownload("all")
                    .documentViewer(true)
                    .localRender(true)
                    .allowPrinting(true)
                    .restrictKeystrokes(false)
                    .build())
                .build());
    
        }
    }
    
    resources:
      thisCloudBrowserIsolationExternalProfile:
        type: zpa:CloudBrowserIsolationExternalProfile
        properties:
          description: CBI_Profile_Example
          bannerId: ${thisCloudBrowserIsolationBanner.id}
          regionIds:
            - ${singapore.id}
          certificateIds:
            - ${thisCloudBrowserIsolationCertificate.id}
          userExperiences:
            - sessionPersistence: true
              browserInBrowser: true
          securityControls:
            - copyPaste: all
              uploadDownload: all
              documentViewer: true
              localRender: true
              allowPrinting: true
              restrictKeystrokes: false
    variables:
      thisCloudBrowserIsolationBanner:
        fn::invoke:
          Function: zpa:getCloudBrowserIsolationBanner
          Arguments:
            name: Default
      singapore:
        fn::invoke:
          Function: zpa:getCloudBrowserIsolationRegion
          Arguments:
            name: Singapore
      frankfurt:
        fn::invoke:
          Function: zpa:getCloudBrowserIsolationRegion
          Arguments:
            name: Frankfurt
      thisCloudBrowserIsolationCertificate:
        fn::invoke:
          Function: zpa:getCloudBrowserIsolationCertificate
          Arguments:
            name: Zscaler Root Certificate
    

    Create CloudBrowserIsolationExternalProfile Resource

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

    Constructor syntax

    new CloudBrowserIsolationExternalProfile(name: string, args: CloudBrowserIsolationExternalProfileArgs, opts?: CustomResourceOptions);
    @overload
    def CloudBrowserIsolationExternalProfile(resource_name: str,
                                             args: CloudBrowserIsolationExternalProfileArgs,
                                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def CloudBrowserIsolationExternalProfile(resource_name: str,
                                             opts: Optional[ResourceOptions] = None,
                                             banner_id: Optional[str] = None,
                                             certificate_ids: Optional[Sequence[str]] = None,
                                             description: Optional[str] = None,
                                             name: Optional[str] = None,
                                             region_ids: Optional[Sequence[str]] = None,
                                             security_controls: Optional[Sequence[CloudBrowserIsolationExternalProfileSecurityControlArgs]] = None,
                                             user_experiences: Optional[Sequence[CloudBrowserIsolationExternalProfileUserExperienceArgs]] = None)
    func NewCloudBrowserIsolationExternalProfile(ctx *Context, name string, args CloudBrowserIsolationExternalProfileArgs, opts ...ResourceOption) (*CloudBrowserIsolationExternalProfile, error)
    public CloudBrowserIsolationExternalProfile(string name, CloudBrowserIsolationExternalProfileArgs args, CustomResourceOptions? opts = null)
    public CloudBrowserIsolationExternalProfile(String name, CloudBrowserIsolationExternalProfileArgs args)
    public CloudBrowserIsolationExternalProfile(String name, CloudBrowserIsolationExternalProfileArgs args, CustomResourceOptions options)
    
    type: zpa:CloudBrowserIsolationExternalProfile
    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 CloudBrowserIsolationExternalProfileArgs
    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 CloudBrowserIsolationExternalProfileArgs
    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 CloudBrowserIsolationExternalProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CloudBrowserIsolationExternalProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CloudBrowserIsolationExternalProfileArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

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

    var cloudBrowserIsolationExternalProfileResource = new Zpa.CloudBrowserIsolationExternalProfile("cloudBrowserIsolationExternalProfileResource", new()
    {
        BannerId = "string",
        CertificateIds = new[]
        {
            "string",
        },
        Description = "string",
        Name = "string",
        RegionIds = new[]
        {
            "string",
        },
        SecurityControls = new[]
        {
            new Zpa.Inputs.CloudBrowserIsolationExternalProfileSecurityControlArgs
            {
                AllowPrinting = false,
                CopyPaste = "string",
                DocumentViewer = false,
                LocalRender = false,
                RestrictKeystrokes = false,
                UploadDownload = "string",
            },
        },
        UserExperiences = new[]
        {
            new Zpa.Inputs.CloudBrowserIsolationExternalProfileUserExperienceArgs
            {
                BrowserInBrowser = false,
                SessionPersistence = false,
            },
        },
    });
    
    example, err := zpa.NewCloudBrowserIsolationExternalProfile(ctx, "cloudBrowserIsolationExternalProfileResource", &zpa.CloudBrowserIsolationExternalProfileArgs{
    	BannerId: pulumi.String("string"),
    	CertificateIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Description: pulumi.String("string"),
    	Name:        pulumi.String("string"),
    	RegionIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	SecurityControls: zpa.CloudBrowserIsolationExternalProfileSecurityControlArray{
    		&zpa.CloudBrowserIsolationExternalProfileSecurityControlArgs{
    			AllowPrinting:      pulumi.Bool(false),
    			CopyPaste:          pulumi.String("string"),
    			DocumentViewer:     pulumi.Bool(false),
    			LocalRender:        pulumi.Bool(false),
    			RestrictKeystrokes: pulumi.Bool(false),
    			UploadDownload:     pulumi.String("string"),
    		},
    	},
    	UserExperiences: zpa.CloudBrowserIsolationExternalProfileUserExperienceArray{
    		&zpa.CloudBrowserIsolationExternalProfileUserExperienceArgs{
    			BrowserInBrowser:   pulumi.Bool(false),
    			SessionPersistence: pulumi.Bool(false),
    		},
    	},
    })
    
    var cloudBrowserIsolationExternalProfileResource = new CloudBrowserIsolationExternalProfile("cloudBrowserIsolationExternalProfileResource", CloudBrowserIsolationExternalProfileArgs.builder()        
        .bannerId("string")
        .certificateIds("string")
        .description("string")
        .name("string")
        .regionIds("string")
        .securityControls(CloudBrowserIsolationExternalProfileSecurityControlArgs.builder()
            .allowPrinting(false)
            .copyPaste("string")
            .documentViewer(false)
            .localRender(false)
            .restrictKeystrokes(false)
            .uploadDownload("string")
            .build())
        .userExperiences(CloudBrowserIsolationExternalProfileUserExperienceArgs.builder()
            .browserInBrowser(false)
            .sessionPersistence(false)
            .build())
        .build());
    
    cloud_browser_isolation_external_profile_resource = zpa.CloudBrowserIsolationExternalProfile("cloudBrowserIsolationExternalProfileResource",
        banner_id="string",
        certificate_ids=["string"],
        description="string",
        name="string",
        region_ids=["string"],
        security_controls=[zpa.CloudBrowserIsolationExternalProfileSecurityControlArgs(
            allow_printing=False,
            copy_paste="string",
            document_viewer=False,
            local_render=False,
            restrict_keystrokes=False,
            upload_download="string",
        )],
        user_experiences=[zpa.CloudBrowserIsolationExternalProfileUserExperienceArgs(
            browser_in_browser=False,
            session_persistence=False,
        )])
    
    const cloudBrowserIsolationExternalProfileResource = new zpa.CloudBrowserIsolationExternalProfile("cloudBrowserIsolationExternalProfileResource", {
        bannerId: "string",
        certificateIds: ["string"],
        description: "string",
        name: "string",
        regionIds: ["string"],
        securityControls: [{
            allowPrinting: false,
            copyPaste: "string",
            documentViewer: false,
            localRender: false,
            restrictKeystrokes: false,
            uploadDownload: "string",
        }],
        userExperiences: [{
            browserInBrowser: false,
            sessionPersistence: false,
        }],
    });
    
    type: zpa:CloudBrowserIsolationExternalProfile
    properties:
        bannerId: string
        certificateIds:
            - string
        description: string
        name: string
        regionIds:
            - string
        securityControls:
            - allowPrinting: false
              copyPaste: string
              documentViewer: false
              localRender: false
              restrictKeystrokes: false
              uploadDownload: string
        userExperiences:
            - browserInBrowser: false
              sessionPersistence: false
    

    CloudBrowserIsolationExternalProfile Resource Properties

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

    Inputs

    The CloudBrowserIsolationExternalProfile resource accepts the following input properties:

    BannerId string
    CertificateIds []string
    This field defines the list of server groups IDs.
    Description string
    Name string
    RegionIds []string
    This field defines the list of server groups IDs.
    SecurityControls []CloudBrowserIsolationExternalProfileSecurityControlArgs
    UserExperiences []CloudBrowserIsolationExternalProfileUserExperienceArgs
    bannerId String
    certificateIds List<String>
    This field defines the list of server groups IDs.
    description String
    name String
    regionIds List<String>
    This field defines the list of server groups IDs.
    securityControls List<CloudBrowserIsolationExternalProfileSecurityControl>
    userExperiences List<CloudBrowserIsolationExternalProfileUserExperience>
    bannerId string
    certificateIds string[]
    This field defines the list of server groups IDs.
    description string
    name string
    regionIds string[]
    This field defines the list of server groups IDs.
    securityControls CloudBrowserIsolationExternalProfileSecurityControl[]
    userExperiences CloudBrowserIsolationExternalProfileUserExperience[]
    bannerId String
    certificateIds List<String>
    This field defines the list of server groups IDs.
    description String
    name String
    regionIds List<String>
    This field defines the list of server groups IDs.
    securityControls List<Property Map>
    userExperiences List<Property Map>

    Outputs

    All input properties are implicitly available as output properties. Additionally, the CloudBrowserIsolationExternalProfile 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 CloudBrowserIsolationExternalProfile Resource

    Get an existing CloudBrowserIsolationExternalProfile 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?: CloudBrowserIsolationExternalProfileState, opts?: CustomResourceOptions): CloudBrowserIsolationExternalProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            banner_id: Optional[str] = None,
            certificate_ids: Optional[Sequence[str]] = None,
            description: Optional[str] = None,
            name: Optional[str] = None,
            region_ids: Optional[Sequence[str]] = None,
            security_controls: Optional[Sequence[CloudBrowserIsolationExternalProfileSecurityControlArgs]] = None,
            user_experiences: Optional[Sequence[CloudBrowserIsolationExternalProfileUserExperienceArgs]] = None) -> CloudBrowserIsolationExternalProfile
    func GetCloudBrowserIsolationExternalProfile(ctx *Context, name string, id IDInput, state *CloudBrowserIsolationExternalProfileState, opts ...ResourceOption) (*CloudBrowserIsolationExternalProfile, error)
    public static CloudBrowserIsolationExternalProfile Get(string name, Input<string> id, CloudBrowserIsolationExternalProfileState? state, CustomResourceOptions? opts = null)
    public static CloudBrowserIsolationExternalProfile get(String name, Output<String> id, CloudBrowserIsolationExternalProfileState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    BannerId string
    CertificateIds []string
    This field defines the list of server groups IDs.
    Description string
    Name string
    RegionIds []string
    This field defines the list of server groups IDs.
    SecurityControls []CloudBrowserIsolationExternalProfileSecurityControlArgs
    UserExperiences []CloudBrowserIsolationExternalProfileUserExperienceArgs
    bannerId String
    certificateIds List<String>
    This field defines the list of server groups IDs.
    description String
    name String
    regionIds List<String>
    This field defines the list of server groups IDs.
    securityControls List<CloudBrowserIsolationExternalProfileSecurityControl>
    userExperiences List<CloudBrowserIsolationExternalProfileUserExperience>
    bannerId string
    certificateIds string[]
    This field defines the list of server groups IDs.
    description string
    name string
    regionIds string[]
    This field defines the list of server groups IDs.
    securityControls CloudBrowserIsolationExternalProfileSecurityControl[]
    userExperiences CloudBrowserIsolationExternalProfileUserExperience[]
    bannerId String
    certificateIds List<String>
    This field defines the list of server groups IDs.
    description String
    name String
    regionIds List<String>
    This field defines the list of server groups IDs.
    securityControls List<Property Map>
    userExperiences List<Property Map>

    Supporting Types

    CloudBrowserIsolationExternalProfileSecurityControl, CloudBrowserIsolationExternalProfileSecurityControlArgs

    CloudBrowserIsolationExternalProfileUserExperience, CloudBrowserIsolationExternalProfileUserExperienceArgs

    Package Details

    Repository
    zpa zscaler/pulumi-zpa
    License
    MIT
    Notes
    This Pulumi package is based on the zpa Terraform Provider.
    zpa logo
    Zscaler Private Access v0.0.10 published on Tuesday, Apr 9, 2024 by Zscaler