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
to90
- 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
to180
- City
Country string Whether Double Encryption is enabled or disabled for the app. i.e
"San Jose, US"
- Country
Code string i.e
"US"
,"CA"
- Description string
Description of the App Connector Group.
- Dns
Query stringType Supported values are:
- Enabled bool
Whether this App Connector Group is enabled or not. Default value:
true
. Supported values:true
,false
- Lss
App boolConnector Group - Name string
Name of the App Connector Group.
- Override
Version boolProfile Whether the default version profile of the App Connector Group is applied or overridden. Default:
false
Supported values:true
,false
- Tcp
Quick boolAck App 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 boolAck Assistant 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 boolAck Read Assistant 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 string 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 stringIn Secs 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 to0
and less than86400
, in15
minute intervals- Use
In boolDr Mode Supported values:
true
,false
- Version
Profile stringId ID of the version profile. To learn more, see Version Profile Use Cases. Supported values are:
- Version
Profile stringName 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
to90
- 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
to180
- City
Country string Whether Double Encryption is enabled or disabled for the app. i.e
"San Jose, US"
- Country
Code string i.e
"US"
,"CA"
- Description string
Description of the App Connector Group.
- Dns
Query stringType Supported values are:
- Enabled bool
Whether this App Connector Group is enabled or not. Default value:
true
. Supported values:true
,false
- Lss
App boolConnector Group - Name string
Name of the App Connector Group.
- Override
Version boolProfile Whether the default version profile of the App Connector Group is applied or overridden. Default:
false
Supported values:true
,false
- Tcp
Quick boolAck App 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 boolAck Assistant 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 boolAck Read Assistant 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 string 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 stringIn Secs 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 to0
and less than86400
, in15
minute intervals- Use
In boolDr Mode Supported values:
true
,false
- Version
Profile stringId ID of the version profile. To learn more, see Version Profile Use Cases. Supported values are:
- Version
Profile stringName 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
to90
- 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
to180
- city
Country String Whether Double Encryption is enabled or disabled for the app. i.e
"San Jose, US"
- country
Code String i.e
"US"
,"CA"
- description String
Description of the App Connector Group.
- dns
Query StringType Supported values are:
- enabled Boolean
Whether this App Connector Group is enabled or not. Default value:
true
. Supported values:true
,false
- lss
App BooleanConnector Group - name String
Name of the App Connector Group.
- override
Version BooleanProfile Whether the default version profile of the App Connector Group is applied or overridden. Default:
false
Supported values:true
,false
- tcp
Quick BooleanAck App 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 BooleanAck Assistant 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 BooleanAck Read Assistant 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 String 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 StringIn Secs 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 to0
and less than86400
, in15
minute intervals- use
In BooleanDr Mode Supported values:
true
,false
- version
Profile StringId ID of the version profile. To learn more, see Version Profile Use Cases. Supported values are:
- version
Profile StringName 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
to90
- 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
to180
- city
Country string Whether Double Encryption is enabled or disabled for the app. i.e
"San Jose, US"
- country
Code string i.e
"US"
,"CA"
- description string
Description of the App Connector Group.
- dns
Query stringType Supported values are:
- enabled boolean
Whether this App Connector Group is enabled or not. Default value:
true
. Supported values:true
,false
- lss
App booleanConnector Group - name string
Name of the App Connector Group.
- override
Version booleanProfile Whether the default version profile of the App Connector Group is applied or overridden. Default:
false
Supported values:true
,false
- tcp
Quick booleanAck App 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 booleanAck Assistant 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 booleanAck Read Assistant 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 string 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 stringIn Secs 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 to0
and less than86400
, in15
minute intervals- use
In booleanDr Mode Supported values:
true
,false
- version
Profile stringId ID of the version profile. To learn more, see Version Profile Use Cases. Supported values are:
- version
Profile stringName 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
to90
- 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
to180
- 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_ strtype Supported values are:
- enabled bool
Whether this App Connector Group is enabled or not. Default value:
true
. Supported values:true
,false
- lss_
app_ boolconnector_ group - name str
Name of the App Connector Group.
- override_
version_ boolprofile Whether the default version profile of the App Connector Group is applied or overridden. Default:
false
Supported values:true
,false
- tcp_
quick_ boolack_ app 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_ boolack_ assistant 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_ boolack_ read_ assistant 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_ strin_ secs 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 to0
and less than86400
, in15
minute intervals- use_
in_ booldr_ mode Supported values:
true
,false
- version_
profile_ strid ID of the version profile. To learn more, see Version Profile Use Cases. Supported values are:
- version_
profile_ strname 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
to90
- 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
to180
- city
Country String Whether Double Encryption is enabled or disabled for the app. i.e
"San Jose, US"
- country
Code String i.e
"US"
,"CA"
- description String
Description of the App Connector Group.
- dns
Query StringType Supported values are:
- enabled Boolean
Whether this App Connector Group is enabled or not. Default value:
true
. Supported values:true
,false
- lss
App BooleanConnector Group - name String
Name of the App Connector Group.
- override
Version BooleanProfile Whether the default version profile of the App Connector Group is applied or overridden. Default:
false
Supported values:true
,false
- tcp
Quick BooleanAck App 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 BooleanAck Assistant 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 BooleanAck Read Assistant 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 String 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 StringIn Secs 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 to0
and less than86400
, in15
minute intervals- use
In BooleanDr Mode Supported values:
true
,false
- version
Profile StringId ID of the version profile. To learn more, see Version Profile Use Cases. Supported values are:
- version
Profile StringName 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.
- City
Country string Whether Double Encryption is enabled or disabled for the app. i.e
"San Jose, US"
- Country
Code string i.e
"US"
,"CA"
- Description string
Description of the App Connector Group.
- Dns
Query stringType 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
to90
- 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
to180
- Lss
App boolConnector Group - Name string
Name of the App Connector Group.
- Override
Version boolProfile Whether the default version profile of the App Connector Group is applied or overridden. Default:
false
Supported values:true
,false
- Tcp
Quick boolAck App 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 boolAck Assistant 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 boolAck Read Assistant 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 string 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 stringIn Secs 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 to0
and less than86400
, in15
minute intervals- Use
In boolDr Mode Supported values:
true
,false
- Version
Profile stringId ID of the version profile. To learn more, see Version Profile Use Cases. Supported values are:
- Version
Profile stringName 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 string Whether Double Encryption is enabled or disabled for the app. i.e
"San Jose, US"
- Country
Code string i.e
"US"
,"CA"
- Description string
Description of the App Connector Group.
- Dns
Query stringType 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
to90
- 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
to180
- Lss
App boolConnector Group - Name string
Name of the App Connector Group.
- Override
Version boolProfile Whether the default version profile of the App Connector Group is applied or overridden. Default:
false
Supported values:true
,false
- Tcp
Quick boolAck App 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 boolAck Assistant 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 boolAck Read Assistant 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 string 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 stringIn Secs 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 to0
and less than86400
, in15
minute intervals- Use
In boolDr Mode Supported values:
true
,false
- Version
Profile stringId ID of the version profile. To learn more, see Version Profile Use Cases. Supported values are:
- Version
Profile stringName 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 String Whether Double Encryption is enabled or disabled for the app. i.e
"San Jose, US"
- country
Code String i.e
"US"
,"CA"
- description String
Description of the App Connector Group.
- dns
Query StringType 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
to90
- 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
to180
- lss
App BooleanConnector Group - name String
Name of the App Connector Group.
- override
Version BooleanProfile Whether the default version profile of the App Connector Group is applied or overridden. Default:
false
Supported values:true
,false
- tcp
Quick BooleanAck App 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 BooleanAck Assistant 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 BooleanAck Read Assistant 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 String 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 StringIn Secs 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 to0
and less than86400
, in15
minute intervals- use
In BooleanDr Mode Supported values:
true
,false
- version
Profile StringId ID of the version profile. To learn more, see Version Profile Use Cases. Supported values are:
- version
Profile StringName 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 string Whether Double Encryption is enabled or disabled for the app. i.e
"San Jose, US"
- country
Code string i.e
"US"
,"CA"
- description string
Description of the App Connector Group.
- dns
Query stringType 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
to90
- 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
to180
- lss
App booleanConnector Group - name string
Name of the App Connector Group.
- override
Version booleanProfile Whether the default version profile of the App Connector Group is applied or overridden. Default:
false
Supported values:true
,false
- tcp
Quick booleanAck App 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 booleanAck Assistant 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 booleanAck Read Assistant 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 string 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 stringIn Secs 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 to0
and less than86400
, in15
minute intervals- use
In booleanDr Mode Supported values:
true
,false
- version
Profile stringId ID of the version profile. To learn more, see Version Profile Use Cases. Supported values are:
- version
Profile stringName 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_ strtype 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
to90
- 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
to180
- lss_
app_ boolconnector_ group - name str
Name of the App Connector Group.
- override_
version_ boolprofile Whether the default version profile of the App Connector Group is applied or overridden. Default:
false
Supported values:true
,false
- tcp_
quick_ boolack_ app 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_ boolack_ assistant 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_ boolack_ read_ assistant 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_ strin_ secs 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 to0
and less than86400
, in15
minute intervals- use_
in_ booldr_ mode Supported values:
true
,false
- version_
profile_ strid ID of the version profile. To learn more, see Version Profile Use Cases. Supported values are:
- version_
profile_ strname 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 String Whether Double Encryption is enabled or disabled for the app. i.e
"San Jose, US"
- country
Code String i.e
"US"
,"CA"
- description String
Description of the App Connector Group.
- dns
Query StringType 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
to90
- 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
to180
- lss
App BooleanConnector Group - name String
Name of the App Connector Group.
- override
Version BooleanProfile Whether the default version profile of the App Connector Group is applied or overridden. Default:
false
Supported values:true
,false
- tcp
Quick BooleanAck App 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 BooleanAck Assistant 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 BooleanAck Read Assistant 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 String 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 StringIn Secs 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 to0
and less than86400
, in15
minute intervals- use
In BooleanDr Mode Supported values:
true
,false
- version
Profile StringId ID of the version profile. To learn more, see Version Profile Use Cases. Supported values are:
- version
Profile StringName 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.