zpa logo
Zscaler Private Access v0.0.4, Jan 30 23

zpa.AppConnectorGroup.ConnectorGroup

Import

Zscaler offers a dedicated tool called Zscaler-Terraformer to allow the automated import of ZPA configurations into Terraform-compliant HashiCorp Configuration Language. Visit App Connector Group can be imported by using <APP CONNECTOR GROUP ID> or <APP CONNECTOR GROUP NAME>as the import ID.

 $ pulumi import zpa:AppConnectorGroup/connectorGroup:ConnectorGroup example <app_connector_group_id>

or

 $ pulumi import zpa:AppConnectorGroup/connectorGroup:ConnectorGroup example <app_connector_group_name>

Example Usage

using System.Collections.Generic;
using Pulumi;
using Zpa = zscaler.PulumiPackage.Zpa;

return await Deployment.RunAsync(() => 
{
    // Create a App Connector Group
    var example = new Zpa.AppConnectorGroup.ConnectorGroup("example", new()
    {
        CityCountry = "San Jose, CA",
        CountryCode = "US",
        Description = "Example",
        DnsQueryType = "IPV4_IPV6",
        Enabled = true,
        Latitude = "37.338",
        Location = "San Jose, CA, US",
        Longitude = "-121.8863",
        OverrideVersionProfile = true,
        UpgradeDay = "SUNDAY",
        UpgradeTimeInSecs = "66600",
        VersionProfileName = "New Release",
    });

});
package main

import (
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/zscaler/pulumi-zpa/sdk/go/zpa/AppConnectorGroup"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := AppConnectorGroup.NewConnectorGroup(ctx, "example", &AppConnectorGroup.ConnectorGroupArgs{
			CityCountry:            pulumi.String("San Jose, CA"),
			CountryCode:            pulumi.String("US"),
			Description:            pulumi.String("Example"),
			DnsQueryType:           pulumi.String("IPV4_IPV6"),
			Enabled:                pulumi.Bool(true),
			Latitude:               pulumi.String("37.338"),
			Location:               pulumi.String("San Jose, CA, US"),
			Longitude:              pulumi.String("-121.8863"),
			OverrideVersionProfile: pulumi.Bool(true),
			UpgradeDay:             pulumi.String("SUNDAY"),
			UpgradeTimeInSecs:      pulumi.String("66600"),
			VersionProfileName:     pulumi.String("New Release"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.zpa.AppConnectorGroup.ConnectorGroup;
import com.pulumi.zpa.AppConnectorGroup.ConnectorGroupArgs;
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 example = new ConnectorGroup("example", ConnectorGroupArgs.builder()        
            .cityCountry("San Jose, CA")
            .countryCode("US")
            .description("Example")
            .dnsQueryType("IPV4_IPV6")
            .enabled(true)
            .latitude("37.338")
            .location("San Jose, CA, US")
            .longitude("-121.8863")
            .overrideVersionProfile(true)
            .upgradeDay("SUNDAY")
            .upgradeTimeInSecs("66600")
            .versionProfileName("New Release")
            .build());

    }
}
import pulumi
import zscaler_pulumi_zpa as zpa

# Create a App Connector Group
example = zpa.app_connector_group.ConnectorGroup("example",
    city_country="San Jose, CA",
    country_code="US",
    description="Example",
    dns_query_type="IPV4_IPV6",
    enabled=True,
    latitude="37.338",
    location="San Jose, CA, US",
    longitude="-121.8863",
    override_version_profile=True,
    upgrade_day="SUNDAY",
    upgrade_time_in_secs="66600",
    version_profile_name="New Release")
import * as pulumi from "@pulumi/pulumi";
import * as zpa from "@zscaler/pulumi-zpa";

// Create a App Connector Group
const example = new zpa.appconnectorgroup.ConnectorGroup("example", {
    cityCountry: "San Jose, CA",
    countryCode: "US",
    description: "Example",
    dnsQueryType: "IPV4_IPV6",
    enabled: true,
    latitude: "37.338",
    location: "San Jose, CA, US",
    longitude: "-121.8863",
    overrideVersionProfile: true,
    upgradeDay: "SUNDAY",
    upgradeTimeInSecs: "66600",
    versionProfileName: "New Release",
});
resources:
  # Create a App Connector Group
  example:
    type: zpa:AppConnectorGroup:ConnectorGroup
    properties:
      cityCountry: San Jose, CA
      countryCode: US
      description: Example
      dnsQueryType: IPV4_IPV6
      enabled: true
      latitude: '37.338'
      location: San Jose, CA, US
      longitude: '-121.8863'
      overrideVersionProfile: true
      upgradeDay: SUNDAY
      upgradeTimeInSecs: '66600'
      versionProfileName: New Release

Create ConnectorGroup Resource

new ConnectorGroup(name: string, args: ConnectorGroupArgs, opts?: CustomResourceOptions);
@overload
def ConnectorGroup(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   city_country: Optional[str] = None,
                   country_code: Optional[str] = None,
                   description: Optional[str] = None,
                   dns_query_type: Optional[str] = None,
                   enabled: Optional[bool] = None,
                   latitude: Optional[str] = None,
                   location: Optional[str] = None,
                   longitude: Optional[str] = None,
                   lss_app_connector_group: Optional[bool] = None,
                   name: Optional[str] = None,
                   override_version_profile: Optional[bool] = None,
                   tcp_quick_ack_app: Optional[bool] = None,
                   tcp_quick_ack_assistant: Optional[bool] = None,
                   tcp_quick_ack_read_assistant: Optional[bool] = None,
                   upgrade_day: Optional[str] = None,
                   upgrade_time_in_secs: Optional[str] = None,
                   use_in_dr_mode: Optional[bool] = None,
                   version_profile_id: Optional[str] = None,
                   version_profile_name: Optional[str] = None)
@overload
def ConnectorGroup(resource_name: str,
                   args: ConnectorGroupArgs,
                   opts: Optional[ResourceOptions] = None)
func NewConnectorGroup(ctx *Context, name string, args ConnectorGroupArgs, opts ...ResourceOption) (*ConnectorGroup, error)
public ConnectorGroup(string name, ConnectorGroupArgs args, CustomResourceOptions? opts = null)
public ConnectorGroup(String name, ConnectorGroupArgs args)
public ConnectorGroup(String name, ConnectorGroupArgs args, CustomResourceOptions options)
type: zpa:AppConnectorGroup:ConnectorGroup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args ConnectorGroupArgs
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 ConnectorGroupArgs
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 ConnectorGroupArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args ConnectorGroupArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args ConnectorGroupArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

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

Latitude string

Latitude of the App Connector Group. Integer or decimal. With values in the range of -90 to 90

Location string

Location of the App Connector Group. i.e "San Jose, CA, USA"

Longitude string

Longitude of the App Connector Group. Integer or decimal. With values in the range of -180 to 180

CityCountry string

Whether Double Encryption is enabled or disabled for the app. i.e "San Jose, US"

CountryCode string

i.e "US", "CA"

Description string

Description of the App Connector Group.

DnsQueryType string

Supported values are:

Enabled bool

Whether this App Connector Group is enabled or not. Default value: true. Supported values: true, false

LssAppConnectorGroup bool
Name string

Name of the App Connector Group.

OverrideVersionProfile bool

Whether the default version profile of the App Connector Group is applied or overridden. Default: false Supported values: true, false

TcpQuickAckApp bool

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

TcpQuickAckAssistant bool

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

TcpQuickAckReadAssistant bool

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

UpgradeDay string

App Connectors in this group will attempt to update to a newer version of the software during this specified day i.e SUNDAY

UpgradeTimeInSecs string

App Connectors in this group will attempt to update to a newer version of the software during this specified time. Default value: 66600. Integer in seconds (i.e., -66600). The integer should be greater than or equal to 0 and less than 86400, in 15 minute intervals

UseInDrMode bool

Supported values: true, false

VersionProfileId string

ID of the version profile. To learn more, see Version Profile Use Cases. Supported values are:

VersionProfileName string

Name of the version profile. To learn more, see Version Profile Use Cases. This value is required, if the value for overrideVersionProfile is set to true

Latitude string

Latitude of the App Connector Group. Integer or decimal. With values in the range of -90 to 90

Location string

Location of the App Connector Group. i.e "San Jose, CA, USA"

Longitude string

Longitude of the App Connector Group. Integer or decimal. With values in the range of -180 to 180

CityCountry string

Whether Double Encryption is enabled or disabled for the app. i.e "San Jose, US"

CountryCode string

i.e "US", "CA"

Description string

Description of the App Connector Group.

DnsQueryType string

Supported values are:

Enabled bool

Whether this App Connector Group is enabled or not. Default value: true. Supported values: true, false

LssAppConnectorGroup bool
Name string

Name of the App Connector Group.

OverrideVersionProfile bool

Whether the default version profile of the App Connector Group is applied or overridden. Default: false Supported values: true, false

TcpQuickAckApp bool

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

TcpQuickAckAssistant bool

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

TcpQuickAckReadAssistant bool

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

UpgradeDay string

App Connectors in this group will attempt to update to a newer version of the software during this specified day i.e SUNDAY

UpgradeTimeInSecs string

App Connectors in this group will attempt to update to a newer version of the software during this specified time. Default value: 66600. Integer in seconds (i.e., -66600). The integer should be greater than or equal to 0 and less than 86400, in 15 minute intervals

UseInDrMode bool

Supported values: true, false

VersionProfileId string

ID of the version profile. To learn more, see Version Profile Use Cases. Supported values are:

VersionProfileName string

Name of the version profile. To learn more, see Version Profile Use Cases. This value is required, if the value for overrideVersionProfile is set to true

latitude String

Latitude of the App Connector Group. Integer or decimal. With values in the range of -90 to 90

location String

Location of the App Connector Group. i.e "San Jose, CA, USA"

longitude String

Longitude of the App Connector Group. Integer or decimal. With values in the range of -180 to 180

cityCountry String

Whether Double Encryption is enabled or disabled for the app. i.e "San Jose, US"

countryCode String

i.e "US", "CA"

description String

Description of the App Connector Group.

dnsQueryType String

Supported values are:

enabled Boolean

Whether this App Connector Group is enabled or not. Default value: true. Supported values: true, false

lssAppConnectorGroup Boolean
name String

Name of the App Connector Group.

overrideVersionProfile Boolean

Whether the default version profile of the App Connector Group is applied or overridden. Default: false Supported values: true, false

tcpQuickAckApp Boolean

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

tcpQuickAckAssistant Boolean

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

tcpQuickAckReadAssistant Boolean

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

upgradeDay String

App Connectors in this group will attempt to update to a newer version of the software during this specified day i.e SUNDAY

upgradeTimeInSecs String

App Connectors in this group will attempt to update to a newer version of the software during this specified time. Default value: 66600. Integer in seconds (i.e., -66600). The integer should be greater than or equal to 0 and less than 86400, in 15 minute intervals

useInDrMode Boolean

Supported values: true, false

versionProfileId String

ID of the version profile. To learn more, see Version Profile Use Cases. Supported values are:

versionProfileName String

Name of the version profile. To learn more, see Version Profile Use Cases. This value is required, if the value for overrideVersionProfile is set to true

latitude string

Latitude of the App Connector Group. Integer or decimal. With values in the range of -90 to 90

location string

Location of the App Connector Group. i.e "San Jose, CA, USA"

longitude string

Longitude of the App Connector Group. Integer or decimal. With values in the range of -180 to 180

cityCountry string

Whether Double Encryption is enabled or disabled for the app. i.e "San Jose, US"

countryCode string

i.e "US", "CA"

description string

Description of the App Connector Group.

dnsQueryType string

Supported values are:

enabled boolean

Whether this App Connector Group is enabled or not. Default value: true. Supported values: true, false

lssAppConnectorGroup boolean
name string

Name of the App Connector Group.

overrideVersionProfile boolean

Whether the default version profile of the App Connector Group is applied or overridden. Default: false Supported values: true, false

tcpQuickAckApp boolean

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

tcpQuickAckAssistant boolean

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

tcpQuickAckReadAssistant boolean

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

upgradeDay string

App Connectors in this group will attempt to update to a newer version of the software during this specified day i.e SUNDAY

upgradeTimeInSecs string

App Connectors in this group will attempt to update to a newer version of the software during this specified time. Default value: 66600. Integer in seconds (i.e., -66600). The integer should be greater than or equal to 0 and less than 86400, in 15 minute intervals

useInDrMode boolean

Supported values: true, false

versionProfileId string

ID of the version profile. To learn more, see Version Profile Use Cases. Supported values are:

versionProfileName string

Name of the version profile. To learn more, see Version Profile Use Cases. This value is required, if the value for overrideVersionProfile is set to true

latitude str

Latitude of the App Connector Group. Integer or decimal. With values in the range of -90 to 90

location str

Location of the App Connector Group. i.e "San Jose, CA, USA"

longitude str

Longitude of the App Connector Group. Integer or decimal. With values in the range of -180 to 180

city_country str

Whether Double Encryption is enabled or disabled for the app. i.e "San Jose, US"

country_code str

i.e "US", "CA"

description str

Description of the App Connector Group.

dns_query_type str

Supported values are:

enabled bool

Whether this App Connector Group is enabled or not. Default value: true. Supported values: true, false

lss_app_connector_group bool
name str

Name of the App Connector Group.

override_version_profile bool

Whether the default version profile of the App Connector Group is applied or overridden. Default: false Supported values: true, false

tcp_quick_ack_app bool

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

tcp_quick_ack_assistant bool

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

tcp_quick_ack_read_assistant bool

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

upgrade_day str

App Connectors in this group will attempt to update to a newer version of the software during this specified day i.e SUNDAY

upgrade_time_in_secs str

App Connectors in this group will attempt to update to a newer version of the software during this specified time. Default value: 66600. Integer in seconds (i.e., -66600). The integer should be greater than or equal to 0 and less than 86400, in 15 minute intervals

use_in_dr_mode bool

Supported values: true, false

version_profile_id str

ID of the version profile. To learn more, see Version Profile Use Cases. Supported values are:

version_profile_name str

Name of the version profile. To learn more, see Version Profile Use Cases. This value is required, if the value for overrideVersionProfile is set to true

latitude String

Latitude of the App Connector Group. Integer or decimal. With values in the range of -90 to 90

location String

Location of the App Connector Group. i.e "San Jose, CA, USA"

longitude String

Longitude of the App Connector Group. Integer or decimal. With values in the range of -180 to 180

cityCountry String

Whether Double Encryption is enabled or disabled for the app. i.e "San Jose, US"

countryCode String

i.e "US", "CA"

description String

Description of the App Connector Group.

dnsQueryType String

Supported values are:

enabled Boolean

Whether this App Connector Group is enabled or not. Default value: true. Supported values: true, false

lssAppConnectorGroup Boolean
name String

Name of the App Connector Group.

overrideVersionProfile Boolean

Whether the default version profile of the App Connector Group is applied or overridden. Default: false Supported values: true, false

tcpQuickAckApp Boolean

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

tcpQuickAckAssistant Boolean

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

tcpQuickAckReadAssistant Boolean

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

upgradeDay String

App Connectors in this group will attempt to update to a newer version of the software during this specified day i.e SUNDAY

upgradeTimeInSecs String

App Connectors in this group will attempt to update to a newer version of the software during this specified time. Default value: 66600. Integer in seconds (i.e., -66600). The integer should be greater than or equal to 0 and less than 86400, in 15 minute intervals

useInDrMode Boolean

Supported values: true, false

versionProfileId String

ID of the version profile. To learn more, see Version Profile Use Cases. Supported values are:

versionProfileName String

Name of the version profile. To learn more, see Version Profile Use Cases. This value is required, if the value for overrideVersionProfile is set to true

Outputs

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

Get an existing ConnectorGroup 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?: ConnectorGroupState, opts?: CustomResourceOptions): ConnectorGroup
@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,
        dns_query_type: Optional[str] = None,
        enabled: Optional[bool] = None,
        latitude: Optional[str] = None,
        location: Optional[str] = None,
        longitude: Optional[str] = None,
        lss_app_connector_group: Optional[bool] = None,
        name: Optional[str] = None,
        override_version_profile: Optional[bool] = None,
        tcp_quick_ack_app: Optional[bool] = None,
        tcp_quick_ack_assistant: Optional[bool] = None,
        tcp_quick_ack_read_assistant: Optional[bool] = None,
        upgrade_day: Optional[str] = None,
        upgrade_time_in_secs: Optional[str] = None,
        use_in_dr_mode: Optional[bool] = None,
        version_profile_id: Optional[str] = None,
        version_profile_name: Optional[str] = None) -> ConnectorGroup
func GetConnectorGroup(ctx *Context, name string, id IDInput, state *ConnectorGroupState, opts ...ResourceOption) (*ConnectorGroup, error)
public static ConnectorGroup Get(string name, Input<string> id, ConnectorGroupState? state, CustomResourceOptions? opts = null)
public static ConnectorGroup get(String name, Output<String> id, ConnectorGroupState 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:
CityCountry string

Whether Double Encryption is enabled or disabled for the app. i.e "San Jose, US"

CountryCode string

i.e "US", "CA"

Description string

Description of the App Connector Group.

DnsQueryType string

Supported values are:

Enabled bool

Whether this App Connector Group is enabled or not. Default value: true. Supported values: true, false

Latitude string

Latitude of the App Connector Group. Integer or decimal. With values in the range of -90 to 90

Location string

Location of the App Connector Group. i.e "San Jose, CA, USA"

Longitude string

Longitude of the App Connector Group. Integer or decimal. With values in the range of -180 to 180

LssAppConnectorGroup bool
Name string

Name of the App Connector Group.

OverrideVersionProfile bool

Whether the default version profile of the App Connector Group is applied or overridden. Default: false Supported values: true, false

TcpQuickAckApp bool

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

TcpQuickAckAssistant bool

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

TcpQuickAckReadAssistant bool

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

UpgradeDay string

App Connectors in this group will attempt to update to a newer version of the software during this specified day i.e SUNDAY

UpgradeTimeInSecs string

App Connectors in this group will attempt to update to a newer version of the software during this specified time. Default value: 66600. Integer in seconds (i.e., -66600). The integer should be greater than or equal to 0 and less than 86400, in 15 minute intervals

UseInDrMode bool

Supported values: true, false

VersionProfileId string

ID of the version profile. To learn more, see Version Profile Use Cases. Supported values are:

VersionProfileName string

Name of the version profile. To learn more, see Version Profile Use Cases. This value is required, if the value for overrideVersionProfile is set to true

CityCountry string

Whether Double Encryption is enabled or disabled for the app. i.e "San Jose, US"

CountryCode string

i.e "US", "CA"

Description string

Description of the App Connector Group.

DnsQueryType string

Supported values are:

Enabled bool

Whether this App Connector Group is enabled or not. Default value: true. Supported values: true, false

Latitude string

Latitude of the App Connector Group. Integer or decimal. With values in the range of -90 to 90

Location string

Location of the App Connector Group. i.e "San Jose, CA, USA"

Longitude string

Longitude of the App Connector Group. Integer or decimal. With values in the range of -180 to 180

LssAppConnectorGroup bool
Name string

Name of the App Connector Group.

OverrideVersionProfile bool

Whether the default version profile of the App Connector Group is applied or overridden. Default: false Supported values: true, false

TcpQuickAckApp bool

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

TcpQuickAckAssistant bool

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

TcpQuickAckReadAssistant bool

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

UpgradeDay string

App Connectors in this group will attempt to update to a newer version of the software during this specified day i.e SUNDAY

UpgradeTimeInSecs string

App Connectors in this group will attempt to update to a newer version of the software during this specified time. Default value: 66600. Integer in seconds (i.e., -66600). The integer should be greater than or equal to 0 and less than 86400, in 15 minute intervals

UseInDrMode bool

Supported values: true, false

VersionProfileId string

ID of the version profile. To learn more, see Version Profile Use Cases. Supported values are:

VersionProfileName string

Name of the version profile. To learn more, see Version Profile Use Cases. This value is required, if the value for overrideVersionProfile is set to true

cityCountry String

Whether Double Encryption is enabled or disabled for the app. i.e "San Jose, US"

countryCode String

i.e "US", "CA"

description String

Description of the App Connector Group.

dnsQueryType String

Supported values are:

enabled Boolean

Whether this App Connector Group is enabled or not. Default value: true. Supported values: true, false

latitude String

Latitude of the App Connector Group. Integer or decimal. With values in the range of -90 to 90

location String

Location of the App Connector Group. i.e "San Jose, CA, USA"

longitude String

Longitude of the App Connector Group. Integer or decimal. With values in the range of -180 to 180

lssAppConnectorGroup Boolean
name String

Name of the App Connector Group.

overrideVersionProfile Boolean

Whether the default version profile of the App Connector Group is applied or overridden. Default: false Supported values: true, false

tcpQuickAckApp Boolean

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

tcpQuickAckAssistant Boolean

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

tcpQuickAckReadAssistant Boolean

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

upgradeDay String

App Connectors in this group will attempt to update to a newer version of the software during this specified day i.e SUNDAY

upgradeTimeInSecs String

App Connectors in this group will attempt to update to a newer version of the software during this specified time. Default value: 66600. Integer in seconds (i.e., -66600). The integer should be greater than or equal to 0 and less than 86400, in 15 minute intervals

useInDrMode Boolean

Supported values: true, false

versionProfileId String

ID of the version profile. To learn more, see Version Profile Use Cases. Supported values are:

versionProfileName String

Name of the version profile. To learn more, see Version Profile Use Cases. This value is required, if the value for overrideVersionProfile is set to true

cityCountry string

Whether Double Encryption is enabled or disabled for the app. i.e "San Jose, US"

countryCode string

i.e "US", "CA"

description string

Description of the App Connector Group.

dnsQueryType string

Supported values are:

enabled boolean

Whether this App Connector Group is enabled or not. Default value: true. Supported values: true, false

latitude string

Latitude of the App Connector Group. Integer or decimal. With values in the range of -90 to 90

location string

Location of the App Connector Group. i.e "San Jose, CA, USA"

longitude string

Longitude of the App Connector Group. Integer or decimal. With values in the range of -180 to 180

lssAppConnectorGroup boolean
name string

Name of the App Connector Group.

overrideVersionProfile boolean

Whether the default version profile of the App Connector Group is applied or overridden. Default: false Supported values: true, false

tcpQuickAckApp boolean

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

tcpQuickAckAssistant boolean

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

tcpQuickAckReadAssistant boolean

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

upgradeDay string

App Connectors in this group will attempt to update to a newer version of the software during this specified day i.e SUNDAY

upgradeTimeInSecs string

App Connectors in this group will attempt to update to a newer version of the software during this specified time. Default value: 66600. Integer in seconds (i.e., -66600). The integer should be greater than or equal to 0 and less than 86400, in 15 minute intervals

useInDrMode boolean

Supported values: true, false

versionProfileId string

ID of the version profile. To learn more, see Version Profile Use Cases. Supported values are:

versionProfileName string

Name of the version profile. To learn more, see Version Profile Use Cases. This value is required, if the value for overrideVersionProfile is set to true

city_country str

Whether Double Encryption is enabled or disabled for the app. i.e "San Jose, US"

country_code str

i.e "US", "CA"

description str

Description of the App Connector Group.

dns_query_type str

Supported values are:

enabled bool

Whether this App Connector Group is enabled or not. Default value: true. Supported values: true, false

latitude str

Latitude of the App Connector Group. Integer or decimal. With values in the range of -90 to 90

location str

Location of the App Connector Group. i.e "San Jose, CA, USA"

longitude str

Longitude of the App Connector Group. Integer or decimal. With values in the range of -180 to 180

lss_app_connector_group bool
name str

Name of the App Connector Group.

override_version_profile bool

Whether the default version profile of the App Connector Group is applied or overridden. Default: false Supported values: true, false

tcp_quick_ack_app bool

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

tcp_quick_ack_assistant bool

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

tcp_quick_ack_read_assistant bool

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

upgrade_day str

App Connectors in this group will attempt to update to a newer version of the software during this specified day i.e SUNDAY

upgrade_time_in_secs str

App Connectors in this group will attempt to update to a newer version of the software during this specified time. Default value: 66600. Integer in seconds (i.e., -66600). The integer should be greater than or equal to 0 and less than 86400, in 15 minute intervals

use_in_dr_mode bool

Supported values: true, false

version_profile_id str

ID of the version profile. To learn more, see Version Profile Use Cases. Supported values are:

version_profile_name str

Name of the version profile. To learn more, see Version Profile Use Cases. This value is required, if the value for overrideVersionProfile is set to true

cityCountry String

Whether Double Encryption is enabled or disabled for the app. i.e "San Jose, US"

countryCode String

i.e "US", "CA"

description String

Description of the App Connector Group.

dnsQueryType String

Supported values are:

enabled Boolean

Whether this App Connector Group is enabled or not. Default value: true. Supported values: true, false

latitude String

Latitude of the App Connector Group. Integer or decimal. With values in the range of -90 to 90

location String

Location of the App Connector Group. i.e "San Jose, CA, USA"

longitude String

Longitude of the App Connector Group. Integer or decimal. With values in the range of -180 to 180

lssAppConnectorGroup Boolean
name String

Name of the App Connector Group.

overrideVersionProfile Boolean

Whether the default version profile of the App Connector Group is applied or overridden. Default: false Supported values: true, false

tcpQuickAckApp Boolean

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

tcpQuickAckAssistant Boolean

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

tcpQuickAckReadAssistant Boolean

Whether TCP Quick Acknowledgement is enabled or disabled for the application. The tcpQuickAckApp, tcpQuickAckAssistant, and tcpQuickAckReadAssistant fields must all share the same value. Supported values: true, false

upgradeDay String

App Connectors in this group will attempt to update to a newer version of the software during this specified day i.e SUNDAY

upgradeTimeInSecs String

App Connectors in this group will attempt to update to a newer version of the software during this specified time. Default value: 66600. Integer in seconds (i.e., -66600). The integer should be greater than or equal to 0 and less than 86400, in 15 minute intervals

useInDrMode Boolean

Supported values: true, false

versionProfileId String

ID of the version profile. To learn more, see Version Profile Use Cases. Supported values are:

versionProfileName String

Name of the version profile. To learn more, see Version Profile Use Cases. This value is required, if the value for overrideVersionProfile is set to true

Package Details

Repository
zpa zscaler/pulumi-zpa
License
MIT
Notes

This Pulumi package is based on the zpa Terraform Provider.