1. Packages
  2. Zscaler Private Access (ZPA)
  3. API Docs
  4. PrivateCloudGroup
Zscaler Private Access v1.0.3 published on Wednesday, Jan 21, 2026 by Zscaler
zpa logo
Zscaler Private Access v1.0.3 published on Wednesday, Jan 21, 2026 by Zscaler

    The zpa_private_cloud_group resource creates a private cloud group in the Zscaler Private Access cloud.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as zpa from "@bdzscaler/pulumi-zpa";
    
    const _this = new zpa.PrivateCloudGroup("this", {
        name: "PrivateCloudGroup01",
        description: "Example private cloud group",
        enabled: true,
        cityCountry: "San Jose, US",
        latitude: "37.33874",
        longitude: "-121.8852525",
        location: "San Jose, CA, USA",
        upgradeDay: "SUNDAY",
        upgradeTimeInSecs: "66600",
        siteId: "72058304855088543",
        versionProfileId: "0",
        overrideVersionProfile: true,
        isPublic: "TRUE",
    });
    
    import pulumi
    import zscaler_pulumi_zpa as zpa
    
    this = zpa.PrivateCloudGroup("this",
        name="PrivateCloudGroup01",
        description="Example private cloud group",
        enabled=True,
        city_country="San Jose, US",
        latitude="37.33874",
        longitude="-121.8852525",
        location="San Jose, CA, USA",
        upgrade_day="SUNDAY",
        upgrade_time_in_secs="66600",
        site_id="72058304855088543",
        version_profile_id="0",
        override_version_profile=True,
        is_public="TRUE")
    
    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 {
    		_, err := zpa.NewPrivateCloudGroup(ctx, "this", &zpa.PrivateCloudGroupArgs{
    			Name:                   pulumi.String("PrivateCloudGroup01"),
    			Description:            pulumi.String("Example private cloud group"),
    			Enabled:                pulumi.Bool(true),
    			CityCountry:            pulumi.String("San Jose, US"),
    			Latitude:               pulumi.String("37.33874"),
    			Longitude:              pulumi.String("-121.8852525"),
    			Location:               pulumi.String("San Jose, CA, USA"),
    			UpgradeDay:             pulumi.String("SUNDAY"),
    			UpgradeTimeInSecs:      pulumi.String("66600"),
    			SiteId:                 pulumi.String("72058304855088543"),
    			VersionProfileId:       pulumi.String("0"),
    			OverrideVersionProfile: pulumi.Bool(true),
    			IsPublic:               pulumi.String("TRUE"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Zpa = zscaler.PulumiPackage.Zpa;
    
    return await Deployment.RunAsync(() => 
    {
        var @this = new Zpa.PrivateCloudGroup("this", new()
        {
            Name = "PrivateCloudGroup01",
            Description = "Example private cloud group",
            Enabled = true,
            CityCountry = "San Jose, US",
            Latitude = "37.33874",
            Longitude = "-121.8852525",
            Location = "San Jose, CA, USA",
            UpgradeDay = "SUNDAY",
            UpgradeTimeInSecs = "66600",
            SiteId = "72058304855088543",
            VersionProfileId = "0",
            OverrideVersionProfile = true,
            IsPublic = "TRUE",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.zpa.PrivateCloudGroup;
    import com.pulumi.zpa.PrivateCloudGroupArgs;
    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) {
            var this_ = new PrivateCloudGroup("this", PrivateCloudGroupArgs.builder()
                .name("PrivateCloudGroup01")
                .description("Example private cloud group")
                .enabled(true)
                .cityCountry("San Jose, US")
                .latitude("37.33874")
                .longitude("-121.8852525")
                .location("San Jose, CA, USA")
                .upgradeDay("SUNDAY")
                .upgradeTimeInSecs("66600")
                .siteId("72058304855088543")
                .versionProfileId("0")
                .overrideVersionProfile(true)
                .isPublic("TRUE")
                .build());
    
        }
    }
    
    resources:
      this:
        type: zpa:PrivateCloudGroup
        properties:
          name: PrivateCloudGroup01
          description: Example private cloud group
          enabled: true
          cityCountry: San Jose, US
          latitude: '37.33874'
          longitude: '-121.8852525'
          location: San Jose, CA, USA
          upgradeDay: SUNDAY
          upgradeTimeInSecs: '66600'
          siteId: '72058304855088543'
          versionProfileId: '0'
          overrideVersionProfile: true
          isPublic: TRUE
    

    Create PrivateCloudGroup Resource

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

    Constructor syntax

    new PrivateCloudGroup(name: string, args?: PrivateCloudGroupArgs, opts?: CustomResourceOptions);
    @overload
    def PrivateCloudGroup(resource_name: str,
                          args: Optional[PrivateCloudGroupArgs] = None,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def PrivateCloudGroup(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          city_country: Optional[str] = None,
                          country_code: Optional[str] = None,
                          description: Optional[str] = None,
                          enabled: Optional[bool] = None,
                          is_public: Optional[str] = None,
                          latitude: Optional[str] = None,
                          location: Optional[str] = None,
                          longitude: Optional[str] = None,
                          microtenant_id: Optional[str] = None,
                          name: Optional[str] = None,
                          override_version_profile: Optional[bool] = None,
                          site_id: Optional[str] = None,
                          upgrade_day: Optional[str] = None,
                          upgrade_time_in_secs: Optional[str] = None,
                          version_profile_id: Optional[str] = None)
    func NewPrivateCloudGroup(ctx *Context, name string, args *PrivateCloudGroupArgs, opts ...ResourceOption) (*PrivateCloudGroup, error)
    public PrivateCloudGroup(string name, PrivateCloudGroupArgs? args = null, CustomResourceOptions? opts = null)
    public PrivateCloudGroup(String name, PrivateCloudGroupArgs args)
    public PrivateCloudGroup(String name, PrivateCloudGroupArgs args, CustomResourceOptions options)
    
    type: zpa:PrivateCloudGroup
    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 PrivateCloudGroupArgs
    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 PrivateCloudGroupArgs
    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 PrivateCloudGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PrivateCloudGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PrivateCloudGroupArgs
    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 privateCloudGroupResource = new Zpa.PrivateCloudGroup("privateCloudGroupResource", new()
    {
        CityCountry = "string",
        CountryCode = "string",
        Description = "string",
        Enabled = false,
        IsPublic = "string",
        Latitude = "string",
        Location = "string",
        Longitude = "string",
        MicrotenantId = "string",
        Name = "string",
        OverrideVersionProfile = false,
        SiteId = "string",
        UpgradeDay = "string",
        UpgradeTimeInSecs = "string",
        VersionProfileId = "string",
    });
    
    example, err := zpa.NewPrivateCloudGroup(ctx, "privateCloudGroupResource", &zpa.PrivateCloudGroupArgs{
    	CityCountry:            pulumi.String("string"),
    	CountryCode:            pulumi.String("string"),
    	Description:            pulumi.String("string"),
    	Enabled:                pulumi.Bool(false),
    	IsPublic:               pulumi.String("string"),
    	Latitude:               pulumi.String("string"),
    	Location:               pulumi.String("string"),
    	Longitude:              pulumi.String("string"),
    	MicrotenantId:          pulumi.String("string"),
    	Name:                   pulumi.String("string"),
    	OverrideVersionProfile: pulumi.Bool(false),
    	SiteId:                 pulumi.String("string"),
    	UpgradeDay:             pulumi.String("string"),
    	UpgradeTimeInSecs:      pulumi.String("string"),
    	VersionProfileId:       pulumi.String("string"),
    })
    
    var privateCloudGroupResource = new PrivateCloudGroup("privateCloudGroupResource", PrivateCloudGroupArgs.builder()
        .cityCountry("string")
        .countryCode("string")
        .description("string")
        .enabled(false)
        .isPublic("string")
        .latitude("string")
        .location("string")
        .longitude("string")
        .microtenantId("string")
        .name("string")
        .overrideVersionProfile(false)
        .siteId("string")
        .upgradeDay("string")
        .upgradeTimeInSecs("string")
        .versionProfileId("string")
        .build());
    
    private_cloud_group_resource = zpa.PrivateCloudGroup("privateCloudGroupResource",
        city_country="string",
        country_code="string",
        description="string",
        enabled=False,
        is_public="string",
        latitude="string",
        location="string",
        longitude="string",
        microtenant_id="string",
        name="string",
        override_version_profile=False,
        site_id="string",
        upgrade_day="string",
        upgrade_time_in_secs="string",
        version_profile_id="string")
    
    const privateCloudGroupResource = new zpa.PrivateCloudGroup("privateCloudGroupResource", {
        cityCountry: "string",
        countryCode: "string",
        description: "string",
        enabled: false,
        isPublic: "string",
        latitude: "string",
        location: "string",
        longitude: "string",
        microtenantId: "string",
        name: "string",
        overrideVersionProfile: false,
        siteId: "string",
        upgradeDay: "string",
        upgradeTimeInSecs: "string",
        versionProfileId: "string",
    });
    
    type: zpa:PrivateCloudGroup
    properties:
        cityCountry: string
        countryCode: string
        description: string
        enabled: false
        isPublic: string
        latitude: string
        location: string
        longitude: string
        microtenantId: string
        name: string
        overrideVersionProfile: false
        siteId: string
        upgradeDay: string
        upgradeTimeInSecs: string
        versionProfileId: string
    

    PrivateCloudGroup 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 PrivateCloudGroup resource accepts the following input properties:

    CityCountry string
    • City and country of the Private Cloud Group
    CountryCode string
    • Country code of the Private Cloud Group
    Description string
    • Description of the Private Cloud Group
    Enabled bool
    • Whether this Private Cloud Group is enabled or not
    IsPublic string
    • Whether the Private Cloud Group is public
    Latitude string
    • Latitude of the Private Cloud Group. Integer or decimal. With values in the range of -90 to 90
    Location string
    • Location of the Private Cloud Group
    Longitude string
    • Longitude of the Private Cloud Group. Integer or decimal. With values in the range of -180 to 180
    MicrotenantId string
    • Microtenant ID for the Private Cloud Group
    Name string
    • Name of the Private Cloud Group
    OverrideVersionProfile bool
    • Whether the default version profile of the Private Cloud Group is applied or overridden
    SiteId string
    • Site ID for the Private Cloud Group
    UpgradeDay string
    • Private Cloud Controllers in this group will attempt to update to a newer version of the software during this specified day. Supported values: SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY
    UpgradeTimeInSecs string
    • Private Cloud Controllers in this group will attempt to update to a newer version of the software during this specified time. Integer in seconds (i.e., -66600). The integer should be greater than or equal to 0 and less than 86400, in 15 minute intervals
    VersionProfileId string
    • ID of the version profile for the Private Cloud Group
    CityCountry string
    • City and country of the Private Cloud Group
    CountryCode string
    • Country code of the Private Cloud Group
    Description string
    • Description of the Private Cloud Group
    Enabled bool
    • Whether this Private Cloud Group is enabled or not
    IsPublic string
    • Whether the Private Cloud Group is public
    Latitude string
    • Latitude of the Private Cloud Group. Integer or decimal. With values in the range of -90 to 90
    Location string
    • Location of the Private Cloud Group
    Longitude string
    • Longitude of the Private Cloud Group. Integer or decimal. With values in the range of -180 to 180
    MicrotenantId string
    • Microtenant ID for the Private Cloud Group
    Name string
    • Name of the Private Cloud Group
    OverrideVersionProfile bool
    • Whether the default version profile of the Private Cloud Group is applied or overridden
    SiteId string
    • Site ID for the Private Cloud Group
    UpgradeDay string
    • Private Cloud Controllers in this group will attempt to update to a newer version of the software during this specified day. Supported values: SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY
    UpgradeTimeInSecs string
    • Private Cloud Controllers in this group will attempt to update to a newer version of the software during this specified time. Integer in seconds (i.e., -66600). The integer should be greater than or equal to 0 and less than 86400, in 15 minute intervals
    VersionProfileId string
    • ID of the version profile for the Private Cloud Group
    cityCountry String
    • City and country of the Private Cloud Group
    countryCode String
    • Country code of the Private Cloud Group
    description String
    • Description of the Private Cloud Group
    enabled Boolean
    • Whether this Private Cloud Group is enabled or not
    isPublic String
    • Whether the Private Cloud Group is public
    latitude String
    • Latitude of the Private Cloud Group. Integer or decimal. With values in the range of -90 to 90
    location String
    • Location of the Private Cloud Group
    longitude String
    • Longitude of the Private Cloud Group. Integer or decimal. With values in the range of -180 to 180
    microtenantId String
    • Microtenant ID for the Private Cloud Group
    name String
    • Name of the Private Cloud Group
    overrideVersionProfile Boolean
    • Whether the default version profile of the Private Cloud Group is applied or overridden
    siteId String
    • Site ID for the Private Cloud Group
    upgradeDay String
    • Private Cloud Controllers in this group will attempt to update to a newer version of the software during this specified day. Supported values: SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY
    upgradeTimeInSecs String
    • Private Cloud Controllers in this group will attempt to update to a newer version of the software during this specified time. Integer in seconds (i.e., -66600). The integer should be greater than or equal to 0 and less than 86400, in 15 minute intervals
    versionProfileId String
    • ID of the version profile for the Private Cloud Group
    cityCountry string
    • City and country of the Private Cloud Group
    countryCode string
    • Country code of the Private Cloud Group
    description string
    • Description of the Private Cloud Group
    enabled boolean
    • Whether this Private Cloud Group is enabled or not
    isPublic string
    • Whether the Private Cloud Group is public
    latitude string
    • Latitude of the Private Cloud Group. Integer or decimal. With values in the range of -90 to 90
    location string
    • Location of the Private Cloud Group
    longitude string
    • Longitude of the Private Cloud Group. Integer or decimal. With values in the range of -180 to 180
    microtenantId string
    • Microtenant ID for the Private Cloud Group
    name string
    • Name of the Private Cloud Group
    overrideVersionProfile boolean
    • Whether the default version profile of the Private Cloud Group is applied or overridden
    siteId string
    • Site ID for the Private Cloud Group
    upgradeDay string
    • Private Cloud Controllers in this group will attempt to update to a newer version of the software during this specified day. Supported values: SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY
    upgradeTimeInSecs string
    • Private Cloud Controllers in this group will attempt to update to a newer version of the software during this specified time. Integer in seconds (i.e., -66600). The integer should be greater than or equal to 0 and less than 86400, in 15 minute intervals
    versionProfileId string
    • ID of the version profile for the Private Cloud Group
    city_country str
    • City and country of the Private Cloud Group
    country_code str
    • Country code of the Private Cloud Group
    description str
    • Description of the Private Cloud Group
    enabled bool
    • Whether this Private Cloud Group is enabled or not
    is_public str
    • Whether the Private Cloud Group is public
    latitude str
    • Latitude of the Private Cloud Group. Integer or decimal. With values in the range of -90 to 90
    location str
    • Location of the Private Cloud Group
    longitude str
    • Longitude of the Private Cloud Group. Integer or decimal. With values in the range of -180 to 180
    microtenant_id str
    • Microtenant ID for the Private Cloud Group
    name str
    • Name of the Private Cloud Group
    override_version_profile bool
    • Whether the default version profile of the Private Cloud Group is applied or overridden
    site_id str
    • Site ID for the Private Cloud Group
    upgrade_day str
    • Private Cloud Controllers in this group will attempt to update to a newer version of the software during this specified day. Supported values: SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY
    upgrade_time_in_secs str
    • Private Cloud Controllers in this group will attempt to update to a newer version of the software during this specified time. Integer in seconds (i.e., -66600). The integer should be greater than or equal to 0 and less than 86400, in 15 minute intervals
    version_profile_id str
    • ID of the version profile for the Private Cloud Group
    cityCountry String
    • City and country of the Private Cloud Group
    countryCode String
    • Country code of the Private Cloud Group
    description String
    • Description of the Private Cloud Group
    enabled Boolean
    • Whether this Private Cloud Group is enabled or not
    isPublic String
    • Whether the Private Cloud Group is public
    latitude String
    • Latitude of the Private Cloud Group. Integer or decimal. With values in the range of -90 to 90
    location String
    • Location of the Private Cloud Group
    longitude String
    • Longitude of the Private Cloud Group. Integer or decimal. With values in the range of -180 to 180
    microtenantId String
    • Microtenant ID for the Private Cloud Group
    name String
    • Name of the Private Cloud Group
    overrideVersionProfile Boolean
    • Whether the default version profile of the Private Cloud Group is applied or overridden
    siteId String
    • Site ID for the Private Cloud Group
    upgradeDay String
    • Private Cloud Controllers in this group will attempt to update to a newer version of the software during this specified day. Supported values: SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY
    upgradeTimeInSecs String
    • Private Cloud Controllers in this group will attempt to update to a newer version of the software during this specified time. Integer in seconds (i.e., -66600). The integer should be greater than or equal to 0 and less than 86400, in 15 minute intervals
    versionProfileId String
    • ID of the version profile for the Private Cloud Group

    Outputs

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

    Get an existing PrivateCloudGroup 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?: PrivateCloudGroupState, opts?: CustomResourceOptions): PrivateCloudGroup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            city_country: Optional[str] = None,
            country_code: Optional[str] = None,
            description: Optional[str] = None,
            enabled: Optional[bool] = None,
            is_public: Optional[str] = None,
            latitude: Optional[str] = None,
            location: Optional[str] = None,
            longitude: Optional[str] = None,
            microtenant_id: Optional[str] = None,
            name: Optional[str] = None,
            override_version_profile: Optional[bool] = None,
            site_id: Optional[str] = None,
            upgrade_day: Optional[str] = None,
            upgrade_time_in_secs: Optional[str] = None,
            version_profile_id: Optional[str] = None) -> PrivateCloudGroup
    func GetPrivateCloudGroup(ctx *Context, name string, id IDInput, state *PrivateCloudGroupState, opts ...ResourceOption) (*PrivateCloudGroup, error)
    public static PrivateCloudGroup Get(string name, Input<string> id, PrivateCloudGroupState? state, CustomResourceOptions? opts = null)
    public static PrivateCloudGroup get(String name, Output<String> id, PrivateCloudGroupState state, CustomResourceOptions options)
    resources:  _:    type: zpa:PrivateCloudGroup    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.
    The following state arguments are supported:
    CityCountry string
    • City and country of the Private Cloud Group
    CountryCode string
    • Country code of the Private Cloud Group
    Description string
    • Description of the Private Cloud Group
    Enabled bool
    • Whether this Private Cloud Group is enabled or not
    IsPublic string
    • Whether the Private Cloud Group is public
    Latitude string
    • Latitude of the Private Cloud Group. Integer or decimal. With values in the range of -90 to 90
    Location string
    • Location of the Private Cloud Group
    Longitude string
    • Longitude of the Private Cloud Group. Integer or decimal. With values in the range of -180 to 180
    MicrotenantId string
    • Microtenant ID for the Private Cloud Group
    Name string
    • Name of the Private Cloud Group
    OverrideVersionProfile bool
    • Whether the default version profile of the Private Cloud Group is applied or overridden
    SiteId string
    • Site ID for the Private Cloud Group
    UpgradeDay string
    • Private Cloud Controllers in this group will attempt to update to a newer version of the software during this specified day. Supported values: SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY
    UpgradeTimeInSecs string
    • Private Cloud Controllers in this group will attempt to update to a newer version of the software during this specified time. Integer in seconds (i.e., -66600). The integer should be greater than or equal to 0 and less than 86400, in 15 minute intervals
    VersionProfileId string
    • ID of the version profile for the Private Cloud Group
    CityCountry string
    • City and country of the Private Cloud Group
    CountryCode string
    • Country code of the Private Cloud Group
    Description string
    • Description of the Private Cloud Group
    Enabled bool
    • Whether this Private Cloud Group is enabled or not
    IsPublic string
    • Whether the Private Cloud Group is public
    Latitude string
    • Latitude of the Private Cloud Group. Integer or decimal. With values in the range of -90 to 90
    Location string
    • Location of the Private Cloud Group
    Longitude string
    • Longitude of the Private Cloud Group. Integer or decimal. With values in the range of -180 to 180
    MicrotenantId string
    • Microtenant ID for the Private Cloud Group
    Name string
    • Name of the Private Cloud Group
    OverrideVersionProfile bool
    • Whether the default version profile of the Private Cloud Group is applied or overridden
    SiteId string
    • Site ID for the Private Cloud Group
    UpgradeDay string
    • Private Cloud Controllers in this group will attempt to update to a newer version of the software during this specified day. Supported values: SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY
    UpgradeTimeInSecs string
    • Private Cloud Controllers in this group will attempt to update to a newer version of the software during this specified time. Integer in seconds (i.e., -66600). The integer should be greater than or equal to 0 and less than 86400, in 15 minute intervals
    VersionProfileId string
    • ID of the version profile for the Private Cloud Group
    cityCountry String
    • City and country of the Private Cloud Group
    countryCode String
    • Country code of the Private Cloud Group
    description String
    • Description of the Private Cloud Group
    enabled Boolean
    • Whether this Private Cloud Group is enabled or not
    isPublic String
    • Whether the Private Cloud Group is public
    latitude String
    • Latitude of the Private Cloud Group. Integer or decimal. With values in the range of -90 to 90
    location String
    • Location of the Private Cloud Group
    longitude String
    • Longitude of the Private Cloud Group. Integer or decimal. With values in the range of -180 to 180
    microtenantId String
    • Microtenant ID for the Private Cloud Group
    name String
    • Name of the Private Cloud Group
    overrideVersionProfile Boolean
    • Whether the default version profile of the Private Cloud Group is applied or overridden
    siteId String
    • Site ID for the Private Cloud Group
    upgradeDay String
    • Private Cloud Controllers in this group will attempt to update to a newer version of the software during this specified day. Supported values: SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY
    upgradeTimeInSecs String
    • Private Cloud Controllers in this group will attempt to update to a newer version of the software during this specified time. Integer in seconds (i.e., -66600). The integer should be greater than or equal to 0 and less than 86400, in 15 minute intervals
    versionProfileId String
    • ID of the version profile for the Private Cloud Group
    cityCountry string
    • City and country of the Private Cloud Group
    countryCode string
    • Country code of the Private Cloud Group
    description string
    • Description of the Private Cloud Group
    enabled boolean
    • Whether this Private Cloud Group is enabled or not
    isPublic string
    • Whether the Private Cloud Group is public
    latitude string
    • Latitude of the Private Cloud Group. Integer or decimal. With values in the range of -90 to 90
    location string
    • Location of the Private Cloud Group
    longitude string
    • Longitude of the Private Cloud Group. Integer or decimal. With values in the range of -180 to 180
    microtenantId string
    • Microtenant ID for the Private Cloud Group
    name string
    • Name of the Private Cloud Group
    overrideVersionProfile boolean
    • Whether the default version profile of the Private Cloud Group is applied or overridden
    siteId string
    • Site ID for the Private Cloud Group
    upgradeDay string
    • Private Cloud Controllers in this group will attempt to update to a newer version of the software during this specified day. Supported values: SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY
    upgradeTimeInSecs string
    • Private Cloud Controllers in this group will attempt to update to a newer version of the software during this specified time. Integer in seconds (i.e., -66600). The integer should be greater than or equal to 0 and less than 86400, in 15 minute intervals
    versionProfileId string
    • ID of the version profile for the Private Cloud Group
    city_country str
    • City and country of the Private Cloud Group
    country_code str
    • Country code of the Private Cloud Group
    description str
    • Description of the Private Cloud Group
    enabled bool
    • Whether this Private Cloud Group is enabled or not
    is_public str
    • Whether the Private Cloud Group is public
    latitude str
    • Latitude of the Private Cloud Group. Integer or decimal. With values in the range of -90 to 90
    location str
    • Location of the Private Cloud Group
    longitude str
    • Longitude of the Private Cloud Group. Integer or decimal. With values in the range of -180 to 180
    microtenant_id str
    • Microtenant ID for the Private Cloud Group
    name str
    • Name of the Private Cloud Group
    override_version_profile bool
    • Whether the default version profile of the Private Cloud Group is applied or overridden
    site_id str
    • Site ID for the Private Cloud Group
    upgrade_day str
    • Private Cloud Controllers in this group will attempt to update to a newer version of the software during this specified day. Supported values: SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY
    upgrade_time_in_secs str
    • Private Cloud Controllers in this group will attempt to update to a newer version of the software during this specified time. Integer in seconds (i.e., -66600). The integer should be greater than or equal to 0 and less than 86400, in 15 minute intervals
    version_profile_id str
    • ID of the version profile for the Private Cloud Group
    cityCountry String
    • City and country of the Private Cloud Group
    countryCode String
    • Country code of the Private Cloud Group
    description String
    • Description of the Private Cloud Group
    enabled Boolean
    • Whether this Private Cloud Group is enabled or not
    isPublic String
    • Whether the Private Cloud Group is public
    latitude String
    • Latitude of the Private Cloud Group. Integer or decimal. With values in the range of -90 to 90
    location String
    • Location of the Private Cloud Group
    longitude String
    • Longitude of the Private Cloud Group. Integer or decimal. With values in the range of -180 to 180
    microtenantId String
    • Microtenant ID for the Private Cloud Group
    name String
    • Name of the Private Cloud Group
    overrideVersionProfile Boolean
    • Whether the default version profile of the Private Cloud Group is applied or overridden
    siteId String
    • Site ID for the Private Cloud Group
    upgradeDay String
    • Private Cloud Controllers in this group will attempt to update to a newer version of the software during this specified day. Supported values: SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY
    upgradeTimeInSecs String
    • Private Cloud Controllers in this group will attempt to update to a newer version of the software during this specified time. Integer in seconds (i.e., -66600). The integer should be greater than or equal to 0 and less than 86400, in 15 minute intervals
    versionProfileId String
    • ID of the version profile for the Private Cloud Group

    Import

    Zscaler offers a dedicated tool called Zscaler-Terraformer to allow the automated import of ZPA configurations into Terraform-compliant HashiCorp Configuration Language.

    Visit

    Private Cloud Group can be imported by using <GROUP ID> or <GROUP NAME> as the import ID.

    $ pulumi import zpa:index/privateCloudGroup:PrivateCloudGroup example <group_id>
    

    or

    $ pulumi import zpa:index/privateCloudGroup:PrivateCloudGroup example <group_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 zpa Terraform Provider.
    zpa logo
    Zscaler Private Access v1.0.3 published on Wednesday, Jan 21, 2026 by Zscaler
      Meet Neo: Your AI Platform Teammate