Cloudflare v6.10.1 published on Wednesday, Oct 22, 2025 by Pulumi
cloudflare.getZeroTrustAccessGroups
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as cloudflare from "@pulumi/cloudflare";
const exampleZeroTrustAccessGroups = cloudflare.getZeroTrustAccessGroups({
    accountId: "account_id",
    zoneId: "zone_id",
    name: "name",
    search: "search",
});
import pulumi
import pulumi_cloudflare as cloudflare
example_zero_trust_access_groups = cloudflare.get_zero_trust_access_groups(account_id="account_id",
    zone_id="zone_id",
    name="name",
    search="search")
package main
import (
	"github.com/pulumi/pulumi-cloudflare/sdk/v6/go/cloudflare"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := cloudflare.LookupZeroTrustAccessGroups(ctx, &cloudflare.LookupZeroTrustAccessGroupsArgs{
			AccountId: pulumi.StringRef("account_id"),
			ZoneId:    pulumi.StringRef("zone_id"),
			Name:      pulumi.StringRef("name"),
			Search:    pulumi.StringRef("search"),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Cloudflare = Pulumi.Cloudflare;
return await Deployment.RunAsync(() => 
{
    var exampleZeroTrustAccessGroups = Cloudflare.GetZeroTrustAccessGroups.Invoke(new()
    {
        AccountId = "account_id",
        ZoneId = "zone_id",
        Name = "name",
        Search = "search",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.cloudflare.CloudflareFunctions;
import com.pulumi.cloudflare.inputs.GetZeroTrustAccessGroupsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        final var exampleZeroTrustAccessGroups = CloudflareFunctions.getZeroTrustAccessGroups(GetZeroTrustAccessGroupsArgs.builder()
            .accountId("account_id")
            .zoneId("zone_id")
            .name("name")
            .search("search")
            .build());
    }
}
variables:
  exampleZeroTrustAccessGroups:
    fn::invoke:
      function: cloudflare:getZeroTrustAccessGroups
      arguments:
        accountId: account_id
        zoneId: zone_id
        name: name
        search: search
Using getZeroTrustAccessGroups
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getZeroTrustAccessGroups(args: GetZeroTrustAccessGroupsArgs, opts?: InvokeOptions): Promise<GetZeroTrustAccessGroupsResult>
function getZeroTrustAccessGroupsOutput(args: GetZeroTrustAccessGroupsOutputArgs, opts?: InvokeOptions): Output<GetZeroTrustAccessGroupsResult>def get_zero_trust_access_groups(account_id: Optional[str] = None,
                                 max_items: Optional[int] = None,
                                 name: Optional[str] = None,
                                 search: Optional[str] = None,
                                 zone_id: Optional[str] = None,
                                 opts: Optional[InvokeOptions] = None) -> GetZeroTrustAccessGroupsResult
def get_zero_trust_access_groups_output(account_id: Optional[pulumi.Input[str]] = None,
                                 max_items: Optional[pulumi.Input[int]] = None,
                                 name: Optional[pulumi.Input[str]] = None,
                                 search: Optional[pulumi.Input[str]] = None,
                                 zone_id: Optional[pulumi.Input[str]] = None,
                                 opts: Optional[InvokeOptions] = None) -> Output[GetZeroTrustAccessGroupsResult]func LookupZeroTrustAccessGroups(ctx *Context, args *LookupZeroTrustAccessGroupsArgs, opts ...InvokeOption) (*LookupZeroTrustAccessGroupsResult, error)
func LookupZeroTrustAccessGroupsOutput(ctx *Context, args *LookupZeroTrustAccessGroupsOutputArgs, opts ...InvokeOption) LookupZeroTrustAccessGroupsResultOutput> Note: This function is named LookupZeroTrustAccessGroups in the Go SDK.
public static class GetZeroTrustAccessGroups 
{
    public static Task<GetZeroTrustAccessGroupsResult> InvokeAsync(GetZeroTrustAccessGroupsArgs args, InvokeOptions? opts = null)
    public static Output<GetZeroTrustAccessGroupsResult> Invoke(GetZeroTrustAccessGroupsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetZeroTrustAccessGroupsResult> getZeroTrustAccessGroups(GetZeroTrustAccessGroupsArgs args, InvokeOptions options)
public static Output<GetZeroTrustAccessGroupsResult> getZeroTrustAccessGroups(GetZeroTrustAccessGroupsArgs args, InvokeOptions options)
fn::invoke:
  function: cloudflare:index/getZeroTrustAccessGroups:getZeroTrustAccessGroups
  arguments:
    # arguments dictionaryThe following arguments are supported:
- AccountId string
- The Account ID to use for this endpoint. Mutually exclusive with the Zone ID.
- MaxItems int
- Max items to fetch, default: 1000
- Name string
- The name of the group.
- Search string
- Search for groups by other listed query parameters.
- ZoneId string
- The Zone ID to use for this endpoint. Mutually exclusive with the Account ID.
- AccountId string
- The Account ID to use for this endpoint. Mutually exclusive with the Zone ID.
- MaxItems int
- Max items to fetch, default: 1000
- Name string
- The name of the group.
- Search string
- Search for groups by other listed query parameters.
- ZoneId string
- The Zone ID to use for this endpoint. Mutually exclusive with the Account ID.
- accountId String
- The Account ID to use for this endpoint. Mutually exclusive with the Zone ID.
- maxItems Integer
- Max items to fetch, default: 1000
- name String
- The name of the group.
- search String
- Search for groups by other listed query parameters.
- zoneId String
- The Zone ID to use for this endpoint. Mutually exclusive with the Account ID.
- accountId string
- The Account ID to use for this endpoint. Mutually exclusive with the Zone ID.
- maxItems number
- Max items to fetch, default: 1000
- name string
- The name of the group.
- search string
- Search for groups by other listed query parameters.
- zoneId string
- The Zone ID to use for this endpoint. Mutually exclusive with the Account ID.
- account_id str
- The Account ID to use for this endpoint. Mutually exclusive with the Zone ID.
- max_items int
- Max items to fetch, default: 1000
- name str
- The name of the group.
- search str
- Search for groups by other listed query parameters.
- zone_id str
- The Zone ID to use for this endpoint. Mutually exclusive with the Account ID.
- accountId String
- The Account ID to use for this endpoint. Mutually exclusive with the Zone ID.
- maxItems Number
- Max items to fetch, default: 1000
- name String
- The name of the group.
- search String
- Search for groups by other listed query parameters.
- zoneId String
- The Zone ID to use for this endpoint. Mutually exclusive with the Account ID.
getZeroTrustAccessGroups Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Results
List<GetZero Trust Access Groups Result> 
- The items returned by the data source
- AccountId string
- The Account ID to use for this endpoint. Mutually exclusive with the Zone ID.
- MaxItems int
- Max items to fetch, default: 1000
- Name string
- The name of the group.
- Search string
- Search for groups by other listed query parameters.
- ZoneId string
- The Zone ID to use for this endpoint. Mutually exclusive with the Account ID.
- Id string
- The provider-assigned unique ID for this managed resource.
- Results
[]GetZero Trust Access Groups Result 
- The items returned by the data source
- AccountId string
- The Account ID to use for this endpoint. Mutually exclusive with the Zone ID.
- MaxItems int
- Max items to fetch, default: 1000
- Name string
- The name of the group.
- Search string
- Search for groups by other listed query parameters.
- ZoneId string
- The Zone ID to use for this endpoint. Mutually exclusive with the Account ID.
- id String
- The provider-assigned unique ID for this managed resource.
- results
List<GetZero Trust Access Groups Result> 
- The items returned by the data source
- accountId String
- The Account ID to use for this endpoint. Mutually exclusive with the Zone ID.
- maxItems Integer
- Max items to fetch, default: 1000
- name String
- The name of the group.
- search String
- Search for groups by other listed query parameters.
- zoneId String
- The Zone ID to use for this endpoint. Mutually exclusive with the Account ID.
- id string
- The provider-assigned unique ID for this managed resource.
- results
GetZero Trust Access Groups Result[] 
- The items returned by the data source
- accountId string
- The Account ID to use for this endpoint. Mutually exclusive with the Zone ID.
- maxItems number
- Max items to fetch, default: 1000
- name string
- The name of the group.
- search string
- Search for groups by other listed query parameters.
- zoneId string
- The Zone ID to use for this endpoint. Mutually exclusive with the Account ID.
- id str
- The provider-assigned unique ID for this managed resource.
- results
Sequence[GetZero Trust Access Groups Result] 
- The items returned by the data source
- account_id str
- The Account ID to use for this endpoint. Mutually exclusive with the Zone ID.
- max_items int
- Max items to fetch, default: 1000
- name str
- The name of the group.
- search str
- Search for groups by other listed query parameters.
- zone_id str
- The Zone ID to use for this endpoint. Mutually exclusive with the Account ID.
- id String
- The provider-assigned unique ID for this managed resource.
- results List<Property Map>
- The items returned by the data source
- accountId String
- The Account ID to use for this endpoint. Mutually exclusive with the Zone ID.
- maxItems Number
- Max items to fetch, default: 1000
- name String
- The name of the group.
- search String
- Search for groups by other listed query parameters.
- zoneId String
- The Zone ID to use for this endpoint. Mutually exclusive with the Account ID.
Supporting Types
GetZeroTrustAccessGroupsResult     
- Excludes
List<GetZero Trust Access Groups Result Exclude> 
- Rules evaluated with a NOT logical operator. To match a policy, a user cannot meet any of the Exclude rules.
- Id string
- UUID.
- Includes
List<GetZero Trust Access Groups Result Include> 
- Rules evaluated with an OR logical operator. A user needs to meet only one of the Include rules.
- IsDefaults List<GetZero Trust Access Groups Result Is Default> 
- Rules evaluated with an AND logical operator. To match a policy, a user must meet all of the Require rules.
- Name string
- The name of the Access group.
- Requires
List<GetZero Trust Access Groups Result Require> 
- Rules evaluated with an AND logical operator. To match a policy, a user must meet all of the Require rules.
- Excludes
[]GetZero Trust Access Groups Result Exclude 
- Rules evaluated with a NOT logical operator. To match a policy, a user cannot meet any of the Exclude rules.
- Id string
- UUID.
- Includes
[]GetZero Trust Access Groups Result Include 
- Rules evaluated with an OR logical operator. A user needs to meet only one of the Include rules.
- IsDefaults []GetZero Trust Access Groups Result Is Default 
- Rules evaluated with an AND logical operator. To match a policy, a user must meet all of the Require rules.
- Name string
- The name of the Access group.
- Requires
[]GetZero Trust Access Groups Result Require 
- Rules evaluated with an AND logical operator. To match a policy, a user must meet all of the Require rules.
- excludes
List<GetZero Trust Access Groups Result Exclude> 
- Rules evaluated with a NOT logical operator. To match a policy, a user cannot meet any of the Exclude rules.
- id String
- UUID.
- includes
List<GetZero Trust Access Groups Result Include> 
- Rules evaluated with an OR logical operator. A user needs to meet only one of the Include rules.
- isDefaults List<GetZero Trust Access Groups Result Is Default> 
- Rules evaluated with an AND logical operator. To match a policy, a user must meet all of the Require rules.
- name String
- The name of the Access group.
- requires
List<GetZero Trust Access Groups Result Require> 
- Rules evaluated with an AND logical operator. To match a policy, a user must meet all of the Require rules.
- excludes
GetZero Trust Access Groups Result Exclude[] 
- Rules evaluated with a NOT logical operator. To match a policy, a user cannot meet any of the Exclude rules.
- id string
- UUID.
- includes
GetZero Trust Access Groups Result Include[] 
- Rules evaluated with an OR logical operator. A user needs to meet only one of the Include rules.
- isDefaults GetZero Trust Access Groups Result Is Default[] 
- Rules evaluated with an AND logical operator. To match a policy, a user must meet all of the Require rules.
- name string
- The name of the Access group.
- requires
GetZero Trust Access Groups Result Require[] 
- Rules evaluated with an AND logical operator. To match a policy, a user must meet all of the Require rules.
- excludes
Sequence[GetZero Trust Access Groups Result Exclude] 
- Rules evaluated with a NOT logical operator. To match a policy, a user cannot meet any of the Exclude rules.
- id str
- UUID.
- includes
Sequence[GetZero Trust Access Groups Result Include] 
- Rules evaluated with an OR logical operator. A user needs to meet only one of the Include rules.
- is_defaults Sequence[GetZero Trust Access Groups Result Is Default] 
- Rules evaluated with an AND logical operator. To match a policy, a user must meet all of the Require rules.
- name str
- The name of the Access group.
- requires
Sequence[GetZero Trust Access Groups Result Require] 
- Rules evaluated with an AND logical operator. To match a policy, a user must meet all of the Require rules.
- excludes List<Property Map>
- Rules evaluated with a NOT logical operator. To match a policy, a user cannot meet any of the Exclude rules.
- id String
- UUID.
- includes List<Property Map>
- Rules evaluated with an OR logical operator. A user needs to meet only one of the Include rules.
- isDefaults List<Property Map>
- Rules evaluated with an AND logical operator. To match a policy, a user must meet all of the Require rules.
- name String
- The name of the Access group.
- requires List<Property Map>
- Rules evaluated with an AND logical operator. To match a policy, a user must meet all of the Require rules.
GetZeroTrustAccessGroupsResultExclude      
- AnyValid GetService Token Zero Trust Access Groups Result Exclude Any Valid Service Token 
- An empty object which matches on all service tokens.
- AuthContext GetZero Trust Access Groups Result Exclude Auth Context 
- AuthMethod GetZero Trust Access Groups Result Exclude Auth Method 
- AzureAd GetZero Trust Access Groups Result Exclude Azure Ad 
- Certificate
GetZero Trust Access Groups Result Exclude Certificate 
- CommonName GetZero Trust Access Groups Result Exclude Common Name 
- DevicePosture GetZero Trust Access Groups Result Exclude Device Posture 
- Email
GetZero Trust Access Groups Result Exclude Email 
- EmailDomain GetZero Trust Access Groups Result Exclude Email Domain 
- EmailList GetZero Trust Access Groups Result Exclude Email List 
- Everyone
GetZero Trust Access Groups Result Exclude Everyone 
- An empty object which matches on all users.
- ExternalEvaluation GetZero Trust Access Groups Result Exclude External Evaluation 
- Geo
GetZero Trust Access Groups Result Exclude Geo 
- GithubOrganization GetZero Trust Access Groups Result Exclude Github Organization 
- Group
GetZero Trust Access Groups Result Exclude Group 
- Gsuite
GetZero Trust Access Groups Result Exclude Gsuite 
- Ip
GetZero Trust Access Groups Result Exclude Ip 
- IpList GetZero Trust Access Groups Result Exclude Ip List 
- LinkedApp GetToken Zero Trust Access Groups Result Exclude Linked App Token 
- LoginMethod GetZero Trust Access Groups Result Exclude Login Method 
- Oidc
GetZero Trust Access Groups Result Exclude Oidc 
- Okta
GetZero Trust Access Groups Result Exclude Okta 
- Saml
GetZero Trust Access Groups Result Exclude Saml 
- ServiceToken GetZero Trust Access Groups Result Exclude Service Token 
- AnyValid GetService Token Zero Trust Access Groups Result Exclude Any Valid Service Token 
- An empty object which matches on all service tokens.
- AuthContext GetZero Trust Access Groups Result Exclude Auth Context 
- AuthMethod GetZero Trust Access Groups Result Exclude Auth Method 
- AzureAd GetZero Trust Access Groups Result Exclude Azure Ad 
- Certificate
GetZero Trust Access Groups Result Exclude Certificate 
- CommonName GetZero Trust Access Groups Result Exclude Common Name 
- DevicePosture GetZero Trust Access Groups Result Exclude Device Posture 
- Email
GetZero Trust Access Groups Result Exclude Email 
- EmailDomain GetZero Trust Access Groups Result Exclude Email Domain 
- EmailList GetZero Trust Access Groups Result Exclude Email List 
- Everyone
GetZero Trust Access Groups Result Exclude Everyone 
- An empty object which matches on all users.
- ExternalEvaluation GetZero Trust Access Groups Result Exclude External Evaluation 
- Geo
GetZero Trust Access Groups Result Exclude Geo 
- GithubOrganization GetZero Trust Access Groups Result Exclude Github Organization 
- Group
GetZero Trust Access Groups Result Exclude Group 
- Gsuite
GetZero Trust Access Groups Result Exclude Gsuite 
- Ip
GetZero Trust Access Groups Result Exclude Ip 
- IpList GetZero Trust Access Groups Result Exclude Ip List 
- LinkedApp GetToken Zero Trust Access Groups Result Exclude Linked App Token 
- LoginMethod GetZero Trust Access Groups Result Exclude Login Method 
- Oidc
GetZero Trust Access Groups Result Exclude Oidc 
- Okta
GetZero Trust Access Groups Result Exclude Okta 
- Saml
GetZero Trust Access Groups Result Exclude Saml 
- ServiceToken GetZero Trust Access Groups Result Exclude Service Token 
- anyValid GetService Token Zero Trust Access Groups Result Exclude Any Valid Service Token 
- An empty object which matches on all service tokens.
- authContext GetZero Trust Access Groups Result Exclude Auth Context 
- authMethod GetZero Trust Access Groups Result Exclude Auth Method 
- azureAd GetZero Trust Access Groups Result Exclude Azure Ad 
- certificate
GetZero Trust Access Groups Result Exclude Certificate 
- commonName GetZero Trust Access Groups Result Exclude Common Name 
- devicePosture GetZero Trust Access Groups Result Exclude Device Posture 
- email
GetZero Trust Access Groups Result Exclude Email 
- emailDomain GetZero Trust Access Groups Result Exclude Email Domain 
- emailList GetZero Trust Access Groups Result Exclude Email List 
- everyone
GetZero Trust Access Groups Result Exclude Everyone 
- An empty object which matches on all users.
- externalEvaluation GetZero Trust Access Groups Result Exclude External Evaluation 
- geo
GetZero Trust Access Groups Result Exclude Geo 
- githubOrganization GetZero Trust Access Groups Result Exclude Github Organization 
- group
GetZero Trust Access Groups Result Exclude Group 
- gsuite
GetZero Trust Access Groups Result Exclude Gsuite 
- ip
GetZero Trust Access Groups Result Exclude Ip 
- ipList GetZero Trust Access Groups Result Exclude Ip List 
- linkedApp GetToken Zero Trust Access Groups Result Exclude Linked App Token 
- loginMethod GetZero Trust Access Groups Result Exclude Login Method 
- oidc
GetZero Trust Access Groups Result Exclude Oidc 
- okta
GetZero Trust Access Groups Result Exclude Okta 
- saml
GetZero Trust Access Groups Result Exclude Saml 
- serviceToken GetZero Trust Access Groups Result Exclude Service Token 
- anyValid GetService Token Zero Trust Access Groups Result Exclude Any Valid Service Token 
- An empty object which matches on all service tokens.
- authContext GetZero Trust Access Groups Result Exclude Auth Context 
- authMethod GetZero Trust Access Groups Result Exclude Auth Method 
- azureAd GetZero Trust Access Groups Result Exclude Azure Ad 
- certificate
GetZero Trust Access Groups Result Exclude Certificate 
- commonName GetZero Trust Access Groups Result Exclude Common Name 
- devicePosture GetZero Trust Access Groups Result Exclude Device Posture 
- email
GetZero Trust Access Groups Result Exclude Email 
- emailDomain GetZero Trust Access Groups Result Exclude Email Domain 
- emailList GetZero Trust Access Groups Result Exclude Email List 
- everyone
GetZero Trust Access Groups Result Exclude Everyone 
- An empty object which matches on all users.
- externalEvaluation GetZero Trust Access Groups Result Exclude External Evaluation 
- geo
GetZero Trust Access Groups Result Exclude Geo 
- githubOrganization GetZero Trust Access Groups Result Exclude Github Organization 
- group
GetZero Trust Access Groups Result Exclude Group 
- gsuite
GetZero Trust Access Groups Result Exclude Gsuite 
- ip
GetZero Trust Access Groups Result Exclude Ip 
- ipList GetZero Trust Access Groups Result Exclude Ip List 
- linkedApp GetToken Zero Trust Access Groups Result Exclude Linked App Token 
- loginMethod GetZero Trust Access Groups Result Exclude Login Method 
- oidc
GetZero Trust Access Groups Result Exclude Oidc 
- okta
GetZero Trust Access Groups Result Exclude Okta 
- saml
GetZero Trust Access Groups Result Exclude Saml 
- serviceToken GetZero Trust Access Groups Result Exclude Service Token 
- any_valid_ Getservice_ token Zero Trust Access Groups Result Exclude Any Valid Service Token 
- An empty object which matches on all service tokens.
- auth_context GetZero Trust Access Groups Result Exclude Auth Context 
- auth_method GetZero Trust Access Groups Result Exclude Auth Method 
- azure_ad GetZero Trust Access Groups Result Exclude Azure Ad 
- certificate
GetZero Trust Access Groups Result Exclude Certificate 
- common_name GetZero Trust Access Groups Result Exclude Common Name 
- device_posture GetZero Trust Access Groups Result Exclude Device Posture 
- email
GetZero Trust Access Groups Result Exclude Email 
- email_domain GetZero Trust Access Groups Result Exclude Email Domain 
- email_list GetZero Trust Access Groups Result Exclude Email List 
- everyone
GetZero Trust Access Groups Result Exclude Everyone 
- An empty object which matches on all users.
- external_evaluation GetZero Trust Access Groups Result Exclude External Evaluation 
- geo
GetZero Trust Access Groups Result Exclude Geo 
- github_organization GetZero Trust Access Groups Result Exclude Github Organization 
- group
GetZero Trust Access Groups Result Exclude Group 
- gsuite
GetZero Trust Access Groups Result Exclude Gsuite 
- ip
GetZero Trust Access Groups Result Exclude Ip 
- ip_list GetZero Trust Access Groups Result Exclude Ip List 
- linked_app_ Gettoken Zero Trust Access Groups Result Exclude Linked App Token 
- login_method GetZero Trust Access Groups Result Exclude Login Method 
- oidc
GetZero Trust Access Groups Result Exclude Oidc 
- okta
GetZero Trust Access Groups Result Exclude Okta 
- saml
GetZero Trust Access Groups Result Exclude Saml 
- service_token GetZero Trust Access Groups Result Exclude Service Token 
- anyValid Property MapService Token 
- An empty object which matches on all service tokens.
- authContext Property Map
- authMethod Property Map
- azureAd Property Map
- certificate Property Map
- commonName Property Map
- devicePosture Property Map
- email Property Map
- emailDomain Property Map
- emailList Property Map
- everyone Property Map
- An empty object which matches on all users.
- externalEvaluation Property Map
- geo Property Map
- githubOrganization Property Map
- group Property Map
- gsuite Property Map
- ip Property Map
- ipList Property Map
- linkedApp Property MapToken 
- loginMethod Property Map
- oidc Property Map
- okta Property Map
- saml Property Map
- serviceToken Property Map
GetZeroTrustAccessGroupsResultExcludeAuthContext        
- AcId string
- The ACID of an Authentication context.
- Id string
- The ID of an Authentication context.
- IdentityProvider stringId 
- The ID of your Azure identity provider.
- AcId string
- The ACID of an Authentication context.
- Id string
- The ID of an Authentication context.
- IdentityProvider stringId 
- The ID of your Azure identity provider.
- acId String
- The ACID of an Authentication context.
- id String
- The ID of an Authentication context.
- identityProvider StringId 
- The ID of your Azure identity provider.
- acId string
- The ACID of an Authentication context.
- id string
- The ID of an Authentication context.
- identityProvider stringId 
- The ID of your Azure identity provider.
- ac_id str
- The ACID of an Authentication context.
- id str
- The ID of an Authentication context.
- identity_provider_ strid 
- The ID of your Azure identity provider.
- acId String
- The ACID of an Authentication context.
- id String
- The ID of an Authentication context.
- identityProvider StringId 
- The ID of your Azure identity provider.
GetZeroTrustAccessGroupsResultExcludeAuthMethod        
- AuthMethod string
- The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
- AuthMethod string
- The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
- authMethod String
- The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
- authMethod string
- The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
- auth_method str
- The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
- authMethod String
- The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
GetZeroTrustAccessGroupsResultExcludeAzureAd        
- Id string
- The ID of an Azure group.
- IdentityProvider stringId 
- The ID of your Azure identity provider.
- Id string
- The ID of an Azure group.
- IdentityProvider stringId 
- The ID of your Azure identity provider.
- id String
- The ID of an Azure group.
- identityProvider StringId 
- The ID of your Azure identity provider.
- id string
- The ID of an Azure group.
- identityProvider stringId 
- The ID of your Azure identity provider.
- id str
- The ID of an Azure group.
- identity_provider_ strid 
- The ID of your Azure identity provider.
- id String
- The ID of an Azure group.
- identityProvider StringId 
- The ID of your Azure identity provider.
GetZeroTrustAccessGroupsResultExcludeCommonName        
- CommonName string
- The common name to match.
- CommonName string
- The common name to match.
- commonName String
- The common name to match.
- commonName string
- The common name to match.
- common_name str
- The common name to match.
- commonName String
- The common name to match.
GetZeroTrustAccessGroupsResultExcludeDevicePosture        
- IntegrationUid string
- The ID of a device posture integration.
- IntegrationUid string
- The ID of a device posture integration.
- integrationUid String
- The ID of a device posture integration.
- integrationUid string
- The ID of a device posture integration.
- integration_uid str
- The ID of a device posture integration.
- integrationUid String
- The ID of a device posture integration.
GetZeroTrustAccessGroupsResultExcludeEmail       
- Email string
- The email of the user.
- Email string
- The email of the user.
- email String
- The email of the user.
- email string
- The email of the user.
- email str
- The email of the user.
- email String
- The email of the user.
GetZeroTrustAccessGroupsResultExcludeEmailDomain        
- Domain string
- The email domain to match.
- Domain string
- The email domain to match.
- domain String
- The email domain to match.
- domain string
- The email domain to match.
- domain str
- The email domain to match.
- domain String
- The email domain to match.
GetZeroTrustAccessGroupsResultExcludeEmailList        
- Id string
- The ID of a previously created email list.
- Id string
- The ID of a previously created email list.
- id String
- The ID of a previously created email list.
- id string
- The ID of a previously created email list.
- id str
- The ID of a previously created email list.
- id String
- The ID of a previously created email list.
GetZeroTrustAccessGroupsResultExcludeExternalEvaluation        
- EvaluateUrl string
- The API endpoint containing your business logic.
- KeysUrl string
- The API endpoint containing the key that Access uses to verify that the response came from your API.
- EvaluateUrl string
- The API endpoint containing your business logic.
- KeysUrl string
- The API endpoint containing the key that Access uses to verify that the response came from your API.
- evaluateUrl String
- The API endpoint containing your business logic.
- keysUrl String
- The API endpoint containing the key that Access uses to verify that the response came from your API.
- evaluateUrl string
- The API endpoint containing your business logic.
- keysUrl string
- The API endpoint containing the key that Access uses to verify that the response came from your API.
- evaluate_url str
- The API endpoint containing your business logic.
- keys_url str
- The API endpoint containing the key that Access uses to verify that the response came from your API.
- evaluateUrl String
- The API endpoint containing your business logic.
- keysUrl String
- The API endpoint containing the key that Access uses to verify that the response came from your API.
GetZeroTrustAccessGroupsResultExcludeGeo       
- CountryCode string
- The country code that should be matched.
- CountryCode string
- The country code that should be matched.
- countryCode String
- The country code that should be matched.
- countryCode string
- The country code that should be matched.
- country_code str
- The country code that should be matched.
- countryCode String
- The country code that should be matched.
GetZeroTrustAccessGroupsResultExcludeGithubOrganization        
- IdentityProvider stringId 
- The ID of your Github identity provider.
- Name string
- The name of the organization.
- Team string
- The name of the team
- IdentityProvider stringId 
- The ID of your Github identity provider.
- Name string
- The name of the organization.
- Team string
- The name of the team
- identityProvider StringId 
- The ID of your Github identity provider.
- name String
- The name of the organization.
- team String
- The name of the team
- identityProvider stringId 
- The ID of your Github identity provider.
- name string
- The name of the organization.
- team string
- The name of the team
- identity_provider_ strid 
- The ID of your Github identity provider.
- name str
- The name of the organization.
- team str
- The name of the team
- identityProvider StringId 
- The ID of your Github identity provider.
- name String
- The name of the organization.
- team String
- The name of the team
GetZeroTrustAccessGroupsResultExcludeGroup       
- Id string
- The ID of a previously created Access group.
- Id string
- The ID of a previously created Access group.
- id String
- The ID of a previously created Access group.
- id string
- The ID of a previously created Access group.
- id str
- The ID of a previously created Access group.
- id String
- The ID of a previously created Access group.
GetZeroTrustAccessGroupsResultExcludeGsuite       
- Email string
- The email of the Google Workspace group.
- IdentityProvider stringId 
- The ID of your Google Workspace identity provider.
- Email string
- The email of the Google Workspace group.
- IdentityProvider stringId 
- The ID of your Google Workspace identity provider.
- email String
- The email of the Google Workspace group.
- identityProvider StringId 
- The ID of your Google Workspace identity provider.
- email string
- The email of the Google Workspace group.
- identityProvider stringId 
- The ID of your Google Workspace identity provider.
- email str
- The email of the Google Workspace group.
- identity_provider_ strid 
- The ID of your Google Workspace identity provider.
- email String
- The email of the Google Workspace group.
- identityProvider StringId 
- The ID of your Google Workspace identity provider.
GetZeroTrustAccessGroupsResultExcludeIp       
- Ip string
- An IPv4 or IPv6 CIDR block.
- Ip string
- An IPv4 or IPv6 CIDR block.
- ip String
- An IPv4 or IPv6 CIDR block.
- ip string
- An IPv4 or IPv6 CIDR block.
- ip str
- An IPv4 or IPv6 CIDR block.
- ip String
- An IPv4 or IPv6 CIDR block.
GetZeroTrustAccessGroupsResultExcludeIpList        
- Id string
- The ID of a previously created IP list.
- Id string
- The ID of a previously created IP list.
- id String
- The ID of a previously created IP list.
- id string
- The ID of a previously created IP list.
- id str
- The ID of a previously created IP list.
- id String
- The ID of a previously created IP list.
GetZeroTrustAccessGroupsResultExcludeLinkedAppToken         
- AppUid string
- The ID of an Access OIDC SaaS application
- AppUid string
- The ID of an Access OIDC SaaS application
- appUid String
- The ID of an Access OIDC SaaS application
- appUid string
- The ID of an Access OIDC SaaS application
- app_uid str
- The ID of an Access OIDC SaaS application
- appUid String
- The ID of an Access OIDC SaaS application
GetZeroTrustAccessGroupsResultExcludeLoginMethod        
- Id string
- The ID of an identity provider.
- Id string
- The ID of an identity provider.
- id String
- The ID of an identity provider.
- id string
- The ID of an identity provider.
- id str
- The ID of an identity provider.
- id String
- The ID of an identity provider.
GetZeroTrustAccessGroupsResultExcludeOidc       
- ClaimName string
- The name of the OIDC claim.
- ClaimValue string
- The OIDC claim value to look for.
- IdentityProvider stringId 
- The ID of your OIDC identity provider.
- ClaimName string
- The name of the OIDC claim.
- ClaimValue string
- The OIDC claim value to look for.
- IdentityProvider stringId 
- The ID of your OIDC identity provider.
- claimName String
- The name of the OIDC claim.
- claimValue String
- The OIDC claim value to look for.
- identityProvider StringId 
- The ID of your OIDC identity provider.
- claimName string
- The name of the OIDC claim.
- claimValue string
- The OIDC claim value to look for.
- identityProvider stringId 
- The ID of your OIDC identity provider.
- claim_name str
- The name of the OIDC claim.
- claim_value str
- The OIDC claim value to look for.
- identity_provider_ strid 
- The ID of your OIDC identity provider.
- claimName String
- The name of the OIDC claim.
- claimValue String
- The OIDC claim value to look for.
- identityProvider StringId 
- The ID of your OIDC identity provider.
GetZeroTrustAccessGroupsResultExcludeOkta       
- IdentityProvider stringId 
- The ID of your Okta identity provider.
- Name string
- The name of the Okta group.
- IdentityProvider stringId 
- The ID of your Okta identity provider.
- Name string
- The name of the Okta group.
- identityProvider StringId 
- The ID of your Okta identity provider.
- name String
- The name of the Okta group.
- identityProvider stringId 
- The ID of your Okta identity provider.
- name string
- The name of the Okta group.
- identity_provider_ strid 
- The ID of your Okta identity provider.
- name str
- The name of the Okta group.
- identityProvider StringId 
- The ID of your Okta identity provider.
- name String
- The name of the Okta group.
GetZeroTrustAccessGroupsResultExcludeSaml       
- AttributeName string
- The name of the SAML attribute.
- AttributeValue string
- The SAML attribute value to look for.
- IdentityProvider stringId 
- The ID of your SAML identity provider.
- AttributeName string
- The name of the SAML attribute.
- AttributeValue string
- The SAML attribute value to look for.
- IdentityProvider stringId 
- The ID of your SAML identity provider.
- attributeName String
- The name of the SAML attribute.
- attributeValue String
- The SAML attribute value to look for.
- identityProvider StringId 
- The ID of your SAML identity provider.
- attributeName string
- The name of the SAML attribute.
- attributeValue string
- The SAML attribute value to look for.
- identityProvider stringId 
- The ID of your SAML identity provider.
- attribute_name str
- The name of the SAML attribute.
- attribute_value str
- The SAML attribute value to look for.
- identity_provider_ strid 
- The ID of your SAML identity provider.
- attributeName String
- The name of the SAML attribute.
- attributeValue String
- The SAML attribute value to look for.
- identityProvider StringId 
- The ID of your SAML identity provider.
GetZeroTrustAccessGroupsResultExcludeServiceToken        
- TokenId string
- The ID of a Service Token.
- TokenId string
- The ID of a Service Token.
- tokenId String
- The ID of a Service Token.
- tokenId string
- The ID of a Service Token.
- token_id str
- The ID of a Service Token.
- tokenId String
- The ID of a Service Token.
GetZeroTrustAccessGroupsResultInclude      
- AnyValid GetService Token Zero Trust Access Groups Result Include Any Valid Service Token 
- An empty object which matches on all service tokens.
- AuthContext GetZero Trust Access Groups Result Include Auth Context 
- AuthMethod GetZero Trust Access Groups Result Include Auth Method 
- AzureAd GetZero Trust Access Groups Result Include Azure Ad 
- Certificate
GetZero Trust Access Groups Result Include Certificate 
- CommonName GetZero Trust Access Groups Result Include Common Name 
- DevicePosture GetZero Trust Access Groups Result Include Device Posture 
- Email
GetZero Trust Access Groups Result Include Email 
- EmailDomain GetZero Trust Access Groups Result Include Email Domain 
- EmailList GetZero Trust Access Groups Result Include Email List 
- Everyone
GetZero Trust Access Groups Result Include Everyone 
- An empty object which matches on all users.
- ExternalEvaluation GetZero Trust Access Groups Result Include External Evaluation 
- Geo
GetZero Trust Access Groups Result Include Geo 
- GithubOrganization GetZero Trust Access Groups Result Include Github Organization 
- Group
GetZero Trust Access Groups Result Include Group 
- Gsuite
GetZero Trust Access Groups Result Include Gsuite 
- Ip
GetZero Trust Access Groups Result Include Ip 
- IpList GetZero Trust Access Groups Result Include Ip List 
- LinkedApp GetToken Zero Trust Access Groups Result Include Linked App Token 
- LoginMethod GetZero Trust Access Groups Result Include Login Method 
- Oidc
GetZero Trust Access Groups Result Include Oidc 
- Okta
GetZero Trust Access Groups Result Include Okta 
- Saml
GetZero Trust Access Groups Result Include Saml 
- ServiceToken GetZero Trust Access Groups Result Include Service Token 
- AnyValid GetService Token Zero Trust Access Groups Result Include Any Valid Service Token 
- An empty object which matches on all service tokens.
- AuthContext GetZero Trust Access Groups Result Include Auth Context 
- AuthMethod GetZero Trust Access Groups Result Include Auth Method 
- AzureAd GetZero Trust Access Groups Result Include Azure Ad 
- Certificate
GetZero Trust Access Groups Result Include Certificate 
- CommonName GetZero Trust Access Groups Result Include Common Name 
- DevicePosture GetZero Trust Access Groups Result Include Device Posture 
- Email
GetZero Trust Access Groups Result Include Email 
- EmailDomain GetZero Trust Access Groups Result Include Email Domain 
- EmailList GetZero Trust Access Groups Result Include Email List 
- Everyone
GetZero Trust Access Groups Result Include Everyone 
- An empty object which matches on all users.
- ExternalEvaluation GetZero Trust Access Groups Result Include External Evaluation 
- Geo
GetZero Trust Access Groups Result Include Geo 
- GithubOrganization GetZero Trust Access Groups Result Include Github Organization 
- Group
GetZero Trust Access Groups Result Include Group 
- Gsuite
GetZero Trust Access Groups Result Include Gsuite 
- Ip
GetZero Trust Access Groups Result Include Ip 
- IpList GetZero Trust Access Groups Result Include Ip List 
- LinkedApp GetToken Zero Trust Access Groups Result Include Linked App Token 
- LoginMethod GetZero Trust Access Groups Result Include Login Method 
- Oidc
GetZero Trust Access Groups Result Include Oidc 
- Okta
GetZero Trust Access Groups Result Include Okta 
- Saml
GetZero Trust Access Groups Result Include Saml 
- ServiceToken GetZero Trust Access Groups Result Include Service Token 
- anyValid GetService Token Zero Trust Access Groups Result Include Any Valid Service Token 
- An empty object which matches on all service tokens.
- authContext GetZero Trust Access Groups Result Include Auth Context 
- authMethod GetZero Trust Access Groups Result Include Auth Method 
- azureAd GetZero Trust Access Groups Result Include Azure Ad 
- certificate
GetZero Trust Access Groups Result Include Certificate 
- commonName GetZero Trust Access Groups Result Include Common Name 
- devicePosture GetZero Trust Access Groups Result Include Device Posture 
- email
GetZero Trust Access Groups Result Include Email 
- emailDomain GetZero Trust Access Groups Result Include Email Domain 
- emailList GetZero Trust Access Groups Result Include Email List 
- everyone
GetZero Trust Access Groups Result Include Everyone 
- An empty object which matches on all users.
- externalEvaluation GetZero Trust Access Groups Result Include External Evaluation 
- geo
GetZero Trust Access Groups Result Include Geo 
- githubOrganization GetZero Trust Access Groups Result Include Github Organization 
- group
GetZero Trust Access Groups Result Include Group 
- gsuite
GetZero Trust Access Groups Result Include Gsuite 
- ip
GetZero Trust Access Groups Result Include Ip 
- ipList GetZero Trust Access Groups Result Include Ip List 
- linkedApp GetToken Zero Trust Access Groups Result Include Linked App Token 
- loginMethod GetZero Trust Access Groups Result Include Login Method 
- oidc
GetZero Trust Access Groups Result Include Oidc 
- okta
GetZero Trust Access Groups Result Include Okta 
- saml
GetZero Trust Access Groups Result Include Saml 
- serviceToken GetZero Trust Access Groups Result Include Service Token 
- anyValid GetService Token Zero Trust Access Groups Result Include Any Valid Service Token 
- An empty object which matches on all service tokens.
- authContext GetZero Trust Access Groups Result Include Auth Context 
- authMethod GetZero Trust Access Groups Result Include Auth Method 
- azureAd GetZero Trust Access Groups Result Include Azure Ad 
- certificate
GetZero Trust Access Groups Result Include Certificate 
- commonName GetZero Trust Access Groups Result Include Common Name 
- devicePosture GetZero Trust Access Groups Result Include Device Posture 
- email
GetZero Trust Access Groups Result Include Email 
- emailDomain GetZero Trust Access Groups Result Include Email Domain 
- emailList GetZero Trust Access Groups Result Include Email List 
- everyone
GetZero Trust Access Groups Result Include Everyone 
- An empty object which matches on all users.
- externalEvaluation GetZero Trust Access Groups Result Include External Evaluation 
- geo
GetZero Trust Access Groups Result Include Geo 
- githubOrganization GetZero Trust Access Groups Result Include Github Organization 
- group
GetZero Trust Access Groups Result Include Group 
- gsuite
GetZero Trust Access Groups Result Include Gsuite 
- ip
GetZero Trust Access Groups Result Include Ip 
- ipList GetZero Trust Access Groups Result Include Ip List 
- linkedApp GetToken Zero Trust Access Groups Result Include Linked App Token 
- loginMethod GetZero Trust Access Groups Result Include Login Method 
- oidc
GetZero Trust Access Groups Result Include Oidc 
- okta
GetZero Trust Access Groups Result Include Okta 
- saml
GetZero Trust Access Groups Result Include Saml 
- serviceToken GetZero Trust Access Groups Result Include Service Token 
- any_valid_ Getservice_ token Zero Trust Access Groups Result Include Any Valid Service Token 
- An empty object which matches on all service tokens.
- auth_context GetZero Trust Access Groups Result Include Auth Context 
- auth_method GetZero Trust Access Groups Result Include Auth Method 
- azure_ad GetZero Trust Access Groups Result Include Azure Ad 
- certificate
GetZero Trust Access Groups Result Include Certificate 
- common_name GetZero Trust Access Groups Result Include Common Name 
- device_posture GetZero Trust Access Groups Result Include Device Posture 
- email
GetZero Trust Access Groups Result Include Email 
- email_domain GetZero Trust Access Groups Result Include Email Domain 
- email_list GetZero Trust Access Groups Result Include Email List 
- everyone
GetZero Trust Access Groups Result Include Everyone 
- An empty object which matches on all users.
- external_evaluation GetZero Trust Access Groups Result Include External Evaluation 
- geo
GetZero Trust Access Groups Result Include Geo 
- github_organization GetZero Trust Access Groups Result Include Github Organization 
- group
GetZero Trust Access Groups Result Include Group 
- gsuite
GetZero Trust Access Groups Result Include Gsuite 
- ip
GetZero Trust Access Groups Result Include Ip 
- ip_list GetZero Trust Access Groups Result Include Ip List 
- linked_app_ Gettoken Zero Trust Access Groups Result Include Linked App Token 
- login_method GetZero Trust Access Groups Result Include Login Method 
- oidc
GetZero Trust Access Groups Result Include Oidc 
- okta
GetZero Trust Access Groups Result Include Okta 
- saml
GetZero Trust Access Groups Result Include Saml 
- service_token GetZero Trust Access Groups Result Include Service Token 
- anyValid Property MapService Token 
- An empty object which matches on all service tokens.
- authContext Property Map
- authMethod Property Map
- azureAd Property Map
- certificate Property Map
- commonName Property Map
- devicePosture Property Map
- email Property Map
- emailDomain Property Map
- emailList Property Map
- everyone Property Map
- An empty object which matches on all users.
- externalEvaluation Property Map
- geo Property Map
- githubOrganization Property Map
- group Property Map
- gsuite Property Map
- ip Property Map
- ipList Property Map
- linkedApp Property MapToken 
- loginMethod Property Map
- oidc Property Map
- okta Property Map
- saml Property Map
- serviceToken Property Map
GetZeroTrustAccessGroupsResultIncludeAuthContext        
- AcId string
- The ACID of an Authentication context.
- Id string
- The ID of an Authentication context.
- IdentityProvider stringId 
- The ID of your Azure identity provider.
- AcId string
- The ACID of an Authentication context.
- Id string
- The ID of an Authentication context.
- IdentityProvider stringId 
- The ID of your Azure identity provider.
- acId String
- The ACID of an Authentication context.
- id String
- The ID of an Authentication context.
- identityProvider StringId 
- The ID of your Azure identity provider.
- acId string
- The ACID of an Authentication context.
- id string
- The ID of an Authentication context.
- identityProvider stringId 
- The ID of your Azure identity provider.
- ac_id str
- The ACID of an Authentication context.
- id str
- The ID of an Authentication context.
- identity_provider_ strid 
- The ID of your Azure identity provider.
- acId String
- The ACID of an Authentication context.
- id String
- The ID of an Authentication context.
- identityProvider StringId 
- The ID of your Azure identity provider.
GetZeroTrustAccessGroupsResultIncludeAuthMethod        
- AuthMethod string
- The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
- AuthMethod string
- The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
- authMethod String
- The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
- authMethod string
- The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
- auth_method str
- The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
- authMethod String
- The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
GetZeroTrustAccessGroupsResultIncludeAzureAd        
- Id string
- The ID of an Azure group.
- IdentityProvider stringId 
- The ID of your Azure identity provider.
- Id string
- The ID of an Azure group.
- IdentityProvider stringId 
- The ID of your Azure identity provider.
- id String
- The ID of an Azure group.
- identityProvider StringId 
- The ID of your Azure identity provider.
- id string
- The ID of an Azure group.
- identityProvider stringId 
- The ID of your Azure identity provider.
- id str
- The ID of an Azure group.
- identity_provider_ strid 
- The ID of your Azure identity provider.
- id String
- The ID of an Azure group.
- identityProvider StringId 
- The ID of your Azure identity provider.
GetZeroTrustAccessGroupsResultIncludeCommonName        
- CommonName string
- The common name to match.
- CommonName string
- The common name to match.
- commonName String
- The common name to match.
- commonName string
- The common name to match.
- common_name str
- The common name to match.
- commonName String
- The common name to match.
GetZeroTrustAccessGroupsResultIncludeDevicePosture        
- IntegrationUid string
- The ID of a device posture integration.
- IntegrationUid string
- The ID of a device posture integration.
- integrationUid String
- The ID of a device posture integration.
- integrationUid string
- The ID of a device posture integration.
- integration_uid str
- The ID of a device posture integration.
- integrationUid String
- The ID of a device posture integration.
GetZeroTrustAccessGroupsResultIncludeEmail       
- Email string
- The email of the user.
- Email string
- The email of the user.
- email String
- The email of the user.
- email string
- The email of the user.
- email str
- The email of the user.
- email String
- The email of the user.
GetZeroTrustAccessGroupsResultIncludeEmailDomain        
- Domain string
- The email domain to match.
- Domain string
- The email domain to match.
- domain String
- The email domain to match.
- domain string
- The email domain to match.
- domain str
- The email domain to match.
- domain String
- The email domain to match.
GetZeroTrustAccessGroupsResultIncludeEmailList        
- Id string
- The ID of a previously created email list.
- Id string
- The ID of a previously created email list.
- id String
- The ID of a previously created email list.
- id string
- The ID of a previously created email list.
- id str
- The ID of a previously created email list.
- id String
- The ID of a previously created email list.
GetZeroTrustAccessGroupsResultIncludeExternalEvaluation        
- EvaluateUrl string
- The API endpoint containing your business logic.
- KeysUrl string
- The API endpoint containing the key that Access uses to verify that the response came from your API.
- EvaluateUrl string
- The API endpoint containing your business logic.
- KeysUrl string
- The API endpoint containing the key that Access uses to verify that the response came from your API.
- evaluateUrl String
- The API endpoint containing your business logic.
- keysUrl String
- The API endpoint containing the key that Access uses to verify that the response came from your API.
- evaluateUrl string
- The API endpoint containing your business logic.
- keysUrl string
- The API endpoint containing the key that Access uses to verify that the response came from your API.
- evaluate_url str
- The API endpoint containing your business logic.
- keys_url str
- The API endpoint containing the key that Access uses to verify that the response came from your API.
- evaluateUrl String
- The API endpoint containing your business logic.
- keysUrl String
- The API endpoint containing the key that Access uses to verify that the response came from your API.
GetZeroTrustAccessGroupsResultIncludeGeo       
- CountryCode string
- The country code that should be matched.
- CountryCode string
- The country code that should be matched.
- countryCode String
- The country code that should be matched.
- countryCode string
- The country code that should be matched.
- country_code str
- The country code that should be matched.
- countryCode String
- The country code that should be matched.
GetZeroTrustAccessGroupsResultIncludeGithubOrganization        
- IdentityProvider stringId 
- The ID of your Github identity provider.
- Name string
- The name of the organization.
- Team string
- The name of the team
- IdentityProvider stringId 
- The ID of your Github identity provider.
- Name string
- The name of the organization.
- Team string
- The name of the team
- identityProvider StringId 
- The ID of your Github identity provider.
- name String
- The name of the organization.
- team String
- The name of the team
- identityProvider stringId 
- The ID of your Github identity provider.
- name string
- The name of the organization.
- team string
- The name of the team
- identity_provider_ strid 
- The ID of your Github identity provider.
- name str
- The name of the organization.
- team str
- The name of the team
- identityProvider StringId 
- The ID of your Github identity provider.
- name String
- The name of the organization.
- team String
- The name of the team
GetZeroTrustAccessGroupsResultIncludeGroup       
- Id string
- The ID of a previously created Access group.
- Id string
- The ID of a previously created Access group.
- id String
- The ID of a previously created Access group.
- id string
- The ID of a previously created Access group.
- id str
- The ID of a previously created Access group.
- id String
- The ID of a previously created Access group.
GetZeroTrustAccessGroupsResultIncludeGsuite       
- Email string
- The email of the Google Workspace group.
- IdentityProvider stringId 
- The ID of your Google Workspace identity provider.
- Email string
- The email of the Google Workspace group.
- IdentityProvider stringId 
- The ID of your Google Workspace identity provider.
- email String
- The email of the Google Workspace group.
- identityProvider StringId 
- The ID of your Google Workspace identity provider.
- email string
- The email of the Google Workspace group.
- identityProvider stringId 
- The ID of your Google Workspace identity provider.
- email str
- The email of the Google Workspace group.
- identity_provider_ strid 
- The ID of your Google Workspace identity provider.
- email String
- The email of the Google Workspace group.
- identityProvider StringId 
- The ID of your Google Workspace identity provider.
GetZeroTrustAccessGroupsResultIncludeIp       
- Ip string
- An IPv4 or IPv6 CIDR block.
- Ip string
- An IPv4 or IPv6 CIDR block.
- ip String
- An IPv4 or IPv6 CIDR block.
- ip string
- An IPv4 or IPv6 CIDR block.
- ip str
- An IPv4 or IPv6 CIDR block.
- ip String
- An IPv4 or IPv6 CIDR block.
GetZeroTrustAccessGroupsResultIncludeIpList        
- Id string
- The ID of a previously created IP list.
- Id string
- The ID of a previously created IP list.
- id String
- The ID of a previously created IP list.
- id string
- The ID of a previously created IP list.
- id str
- The ID of a previously created IP list.
- id String
- The ID of a previously created IP list.
GetZeroTrustAccessGroupsResultIncludeLinkedAppToken         
- AppUid string
- The ID of an Access OIDC SaaS application
- AppUid string
- The ID of an Access OIDC SaaS application
- appUid String
- The ID of an Access OIDC SaaS application
- appUid string
- The ID of an Access OIDC SaaS application
- app_uid str
- The ID of an Access OIDC SaaS application
- appUid String
- The ID of an Access OIDC SaaS application
GetZeroTrustAccessGroupsResultIncludeLoginMethod        
- Id string
- The ID of an identity provider.
- Id string
- The ID of an identity provider.
- id String
- The ID of an identity provider.
- id string
- The ID of an identity provider.
- id str
- The ID of an identity provider.
- id String
- The ID of an identity provider.
GetZeroTrustAccessGroupsResultIncludeOidc       
- ClaimName string
- The name of the OIDC claim.
- ClaimValue string
- The OIDC claim value to look for.
- IdentityProvider stringId 
- The ID of your OIDC identity provider.
- ClaimName string
- The name of the OIDC claim.
- ClaimValue string
- The OIDC claim value to look for.
- IdentityProvider stringId 
- The ID of your OIDC identity provider.
- claimName String
- The name of the OIDC claim.
- claimValue String
- The OIDC claim value to look for.
- identityProvider StringId 
- The ID of your OIDC identity provider.
- claimName string
- The name of the OIDC claim.
- claimValue string
- The OIDC claim value to look for.
- identityProvider stringId 
- The ID of your OIDC identity provider.
- claim_name str
- The name of the OIDC claim.
- claim_value str
- The OIDC claim value to look for.
- identity_provider_ strid 
- The ID of your OIDC identity provider.
- claimName String
- The name of the OIDC claim.
- claimValue String
- The OIDC claim value to look for.
- identityProvider StringId 
- The ID of your OIDC identity provider.
GetZeroTrustAccessGroupsResultIncludeOkta       
- IdentityProvider stringId 
- The ID of your Okta identity provider.
- Name string
- The name of the Okta group.
- IdentityProvider stringId 
- The ID of your Okta identity provider.
- Name string
- The name of the Okta group.
- identityProvider StringId 
- The ID of your Okta identity provider.
- name String
- The name of the Okta group.
- identityProvider stringId 
- The ID of your Okta identity provider.
- name string
- The name of the Okta group.
- identity_provider_ strid 
- The ID of your Okta identity provider.
- name str
- The name of the Okta group.
- identityProvider StringId 
- The ID of your Okta identity provider.
- name String
- The name of the Okta group.
GetZeroTrustAccessGroupsResultIncludeSaml       
- AttributeName string
- The name of the SAML attribute.
- AttributeValue string
- The SAML attribute value to look for.
- IdentityProvider stringId 
- The ID of your SAML identity provider.
- AttributeName string
- The name of the SAML attribute.
- AttributeValue string
- The SAML attribute value to look for.
- IdentityProvider stringId 
- The ID of your SAML identity provider.
- attributeName String
- The name of the SAML attribute.
- attributeValue String
- The SAML attribute value to look for.
- identityProvider StringId 
- The ID of your SAML identity provider.
- attributeName string
- The name of the SAML attribute.
- attributeValue string
- The SAML attribute value to look for.
- identityProvider stringId 
- The ID of your SAML identity provider.
- attribute_name str
- The name of the SAML attribute.
- attribute_value str
- The SAML attribute value to look for.
- identity_provider_ strid 
- The ID of your SAML identity provider.
- attributeName String
- The name of the SAML attribute.
- attributeValue String
- The SAML attribute value to look for.
- identityProvider StringId 
- The ID of your SAML identity provider.
GetZeroTrustAccessGroupsResultIncludeServiceToken        
- TokenId string
- The ID of a Service Token.
- TokenId string
- The ID of a Service Token.
- tokenId String
- The ID of a Service Token.
- tokenId string
- The ID of a Service Token.
- token_id str
- The ID of a Service Token.
- tokenId String
- The ID of a Service Token.
GetZeroTrustAccessGroupsResultIsDefault       
- AnyValid GetService Token Zero Trust Access Groups Result Is Default Any Valid Service Token 
- An empty object which matches on all service tokens.
- AuthContext GetZero Trust Access Groups Result Is Default Auth Context 
- AuthMethod GetZero Trust Access Groups Result Is Default Auth Method 
- AzureAd GetZero Trust Access Groups Result Is Default Azure Ad 
- Certificate
GetZero Trust Access Groups Result Is Default Certificate 
- CommonName GetZero Trust Access Groups Result Is Default Common Name 
- DevicePosture GetZero Trust Access Groups Result Is Default Device Posture 
- Email
GetZero Trust Access Groups Result Is Default Email 
- EmailDomain GetZero Trust Access Groups Result Is Default Email Domain 
- EmailList GetZero Trust Access Groups Result Is Default Email List 
- Everyone
GetZero Trust Access Groups Result Is Default Everyone 
- An empty object which matches on all users.
- ExternalEvaluation GetZero Trust Access Groups Result Is Default External Evaluation 
- Geo
GetZero Trust Access Groups Result Is Default Geo 
- GithubOrganization GetZero Trust Access Groups Result Is Default Github Organization 
- Group
GetZero Trust Access Groups Result Is Default Group 
- Gsuite
GetZero Trust Access Groups Result Is Default Gsuite 
- Ip
GetZero Trust Access Groups Result Is Default Ip 
- IpList GetZero Trust Access Groups Result Is Default Ip List 
- LinkedApp GetToken Zero Trust Access Groups Result Is Default Linked App Token 
- LoginMethod GetZero Trust Access Groups Result Is Default Login Method 
- Oidc
GetZero Trust Access Groups Result Is Default Oidc 
- Okta
GetZero Trust Access Groups Result Is Default Okta 
- Saml
GetZero Trust Access Groups Result Is Default Saml 
- ServiceToken GetZero Trust Access Groups Result Is Default Service Token 
- AnyValid GetService Token Zero Trust Access Groups Result Is Default Any Valid Service Token 
- An empty object which matches on all service tokens.
- AuthContext GetZero Trust Access Groups Result Is Default Auth Context 
- AuthMethod GetZero Trust Access Groups Result Is Default Auth Method 
- AzureAd GetZero Trust Access Groups Result Is Default Azure Ad 
- Certificate
GetZero Trust Access Groups Result Is Default Certificate 
- CommonName GetZero Trust Access Groups Result Is Default Common Name 
- DevicePosture GetZero Trust Access Groups Result Is Default Device Posture 
- Email
GetZero Trust Access Groups Result Is Default Email 
- EmailDomain GetZero Trust Access Groups Result Is Default Email Domain 
- EmailList GetZero Trust Access Groups Result Is Default Email List 
- Everyone
GetZero Trust Access Groups Result Is Default Everyone 
- An empty object which matches on all users.
- ExternalEvaluation GetZero Trust Access Groups Result Is Default External Evaluation 
- Geo
GetZero Trust Access Groups Result Is Default Geo 
- GithubOrganization GetZero Trust Access Groups Result Is Default Github Organization 
- Group
GetZero Trust Access Groups Result Is Default Group 
- Gsuite
GetZero Trust Access Groups Result Is Default Gsuite 
- Ip
GetZero Trust Access Groups Result Is Default Ip 
- IpList GetZero Trust Access Groups Result Is Default Ip List 
- LinkedApp GetToken Zero Trust Access Groups Result Is Default Linked App Token 
- LoginMethod GetZero Trust Access Groups Result Is Default Login Method 
- Oidc
GetZero Trust Access Groups Result Is Default Oidc 
- Okta
GetZero Trust Access Groups Result Is Default Okta 
- Saml
GetZero Trust Access Groups Result Is Default Saml 
- ServiceToken GetZero Trust Access Groups Result Is Default Service Token 
- anyValid GetService Token Zero Trust Access Groups Result Is Default Any Valid Service Token 
- An empty object which matches on all service tokens.
- authContext GetZero Trust Access Groups Result Is Default Auth Context 
- authMethod GetZero Trust Access Groups Result Is Default Auth Method 
- azureAd GetZero Trust Access Groups Result Is Default Azure Ad 
- certificate
GetZero Trust Access Groups Result Is Default Certificate 
- commonName GetZero Trust Access Groups Result Is Default Common Name 
- devicePosture GetZero Trust Access Groups Result Is Default Device Posture 
- email
GetZero Trust Access Groups Result Is Default Email 
- emailDomain GetZero Trust Access Groups Result Is Default Email Domain 
- emailList GetZero Trust Access Groups Result Is Default Email List 
- everyone
GetZero Trust Access Groups Result Is Default Everyone 
- An empty object which matches on all users.
- externalEvaluation GetZero Trust Access Groups Result Is Default External Evaluation 
- geo
GetZero Trust Access Groups Result Is Default Geo 
- githubOrganization GetZero Trust Access Groups Result Is Default Github Organization 
- group
GetZero Trust Access Groups Result Is Default Group 
- gsuite
GetZero Trust Access Groups Result Is Default Gsuite 
- ip
GetZero Trust Access Groups Result Is Default Ip 
- ipList GetZero Trust Access Groups Result Is Default Ip List 
- linkedApp GetToken Zero Trust Access Groups Result Is Default Linked App Token 
- loginMethod GetZero Trust Access Groups Result Is Default Login Method 
- oidc
GetZero Trust Access Groups Result Is Default Oidc 
- okta
GetZero Trust Access Groups Result Is Default Okta 
- saml
GetZero Trust Access Groups Result Is Default Saml 
- serviceToken GetZero Trust Access Groups Result Is Default Service Token 
- anyValid GetService Token Zero Trust Access Groups Result Is Default Any Valid Service Token 
- An empty object which matches on all service tokens.
- authContext GetZero Trust Access Groups Result Is Default Auth Context 
- authMethod GetZero Trust Access Groups Result Is Default Auth Method 
- azureAd GetZero Trust Access Groups Result Is Default Azure Ad 
- certificate
GetZero Trust Access Groups Result Is Default Certificate 
- commonName GetZero Trust Access Groups Result Is Default Common Name 
- devicePosture GetZero Trust Access Groups Result Is Default Device Posture 
- email
GetZero Trust Access Groups Result Is Default Email 
- emailDomain GetZero Trust Access Groups Result Is Default Email Domain 
- emailList GetZero Trust Access Groups Result Is Default Email List 
- everyone
GetZero Trust Access Groups Result Is Default Everyone 
- An empty object which matches on all users.
- externalEvaluation GetZero Trust Access Groups Result Is Default External Evaluation 
- geo
GetZero Trust Access Groups Result Is Default Geo 
- githubOrganization GetZero Trust Access Groups Result Is Default Github Organization 
- group
GetZero Trust Access Groups Result Is Default Group 
- gsuite
GetZero Trust Access Groups Result Is Default Gsuite 
- ip
GetZero Trust Access Groups Result Is Default Ip 
- ipList GetZero Trust Access Groups Result Is Default Ip List 
- linkedApp GetToken Zero Trust Access Groups Result Is Default Linked App Token 
- loginMethod GetZero Trust Access Groups Result Is Default Login Method 
- oidc
GetZero Trust Access Groups Result Is Default Oidc 
- okta
GetZero Trust Access Groups Result Is Default Okta 
- saml
GetZero Trust Access Groups Result Is Default Saml 
- serviceToken GetZero Trust Access Groups Result Is Default Service Token 
- any_valid_ Getservice_ token Zero Trust Access Groups Result Is Default Any Valid Service Token 
- An empty object which matches on all service tokens.
- auth_context GetZero Trust Access Groups Result Is Default Auth Context 
- auth_method GetZero Trust Access Groups Result Is Default Auth Method 
- azure_ad GetZero Trust Access Groups Result Is Default Azure Ad 
- certificate
GetZero Trust Access Groups Result Is Default Certificate 
- common_name GetZero Trust Access Groups Result Is Default Common Name 
- device_posture GetZero Trust Access Groups Result Is Default Device Posture 
- email
GetZero Trust Access Groups Result Is Default Email 
- email_domain GetZero Trust Access Groups Result Is Default Email Domain 
- email_list GetZero Trust Access Groups Result Is Default Email List 
- everyone
GetZero Trust Access Groups Result Is Default Everyone 
- An empty object which matches on all users.
- external_evaluation GetZero Trust Access Groups Result Is Default External Evaluation 
- geo
GetZero Trust Access Groups Result Is Default Geo 
- github_organization GetZero Trust Access Groups Result Is Default Github Organization 
- group
GetZero Trust Access Groups Result Is Default Group 
- gsuite
GetZero Trust Access Groups Result Is Default Gsuite 
- ip
GetZero Trust Access Groups Result Is Default Ip 
- ip_list GetZero Trust Access Groups Result Is Default Ip List 
- linked_app_ Gettoken Zero Trust Access Groups Result Is Default Linked App Token 
- login_method GetZero Trust Access Groups Result Is Default Login Method 
- oidc
GetZero Trust Access Groups Result Is Default Oidc 
- okta
GetZero Trust Access Groups Result Is Default Okta 
- saml
GetZero Trust Access Groups Result Is Default Saml 
- service_token GetZero Trust Access Groups Result Is Default Service Token 
- anyValid Property MapService Token 
- An empty object which matches on all service tokens.
- authContext Property Map
- authMethod Property Map
- azureAd Property Map
- certificate Property Map
- commonName Property Map
- devicePosture Property Map
- email Property Map
- emailDomain Property Map
- emailList Property Map
- everyone Property Map
- An empty object which matches on all users.
- externalEvaluation Property Map
- geo Property Map
- githubOrganization Property Map
- group Property Map
- gsuite Property Map
- ip Property Map
- ipList Property Map
- linkedApp Property MapToken 
- loginMethod Property Map
- oidc Property Map
- okta Property Map
- saml Property Map
- serviceToken Property Map
GetZeroTrustAccessGroupsResultIsDefaultAuthContext         
- AcId string
- The ACID of an Authentication context.
- Id string
- The ID of an Authentication context.
- IdentityProvider stringId 
- The ID of your Azure identity provider.
- AcId string
- The ACID of an Authentication context.
- Id string
- The ID of an Authentication context.
- IdentityProvider stringId 
- The ID of your Azure identity provider.
- acId String
- The ACID of an Authentication context.
- id String
- The ID of an Authentication context.
- identityProvider StringId 
- The ID of your Azure identity provider.
- acId string
- The ACID of an Authentication context.
- id string
- The ID of an Authentication context.
- identityProvider stringId 
- The ID of your Azure identity provider.
- ac_id str
- The ACID of an Authentication context.
- id str
- The ID of an Authentication context.
- identity_provider_ strid 
- The ID of your Azure identity provider.
- acId String
- The ACID of an Authentication context.
- id String
- The ID of an Authentication context.
- identityProvider StringId 
- The ID of your Azure identity provider.
GetZeroTrustAccessGroupsResultIsDefaultAuthMethod         
- AuthMethod string
- The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
- AuthMethod string
- The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
- authMethod String
- The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
- authMethod string
- The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
- auth_method str
- The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
- authMethod String
- The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
GetZeroTrustAccessGroupsResultIsDefaultAzureAd         
- Id string
- The ID of an Azure group.
- IdentityProvider stringId 
- The ID of your Azure identity provider.
- Id string
- The ID of an Azure group.
- IdentityProvider stringId 
- The ID of your Azure identity provider.
- id String
- The ID of an Azure group.
- identityProvider StringId 
- The ID of your Azure identity provider.
- id string
- The ID of an Azure group.
- identityProvider stringId 
- The ID of your Azure identity provider.
- id str
- The ID of an Azure group.
- identity_provider_ strid 
- The ID of your Azure identity provider.
- id String
- The ID of an Azure group.
- identityProvider StringId 
- The ID of your Azure identity provider.
GetZeroTrustAccessGroupsResultIsDefaultCommonName         
- CommonName string
- The common name to match.
- CommonName string
- The common name to match.
- commonName String
- The common name to match.
- commonName string
- The common name to match.
- common_name str
- The common name to match.
- commonName String
- The common name to match.
GetZeroTrustAccessGroupsResultIsDefaultDevicePosture         
- IntegrationUid string
- The ID of a device posture integration.
- IntegrationUid string
- The ID of a device posture integration.
- integrationUid String
- The ID of a device posture integration.
- integrationUid string
- The ID of a device posture integration.
- integration_uid str
- The ID of a device posture integration.
- integrationUid String
- The ID of a device posture integration.
GetZeroTrustAccessGroupsResultIsDefaultEmail        
- Email string
- The email of the user.
- Email string
- The email of the user.
- email String
- The email of the user.
- email string
- The email of the user.
- email str
- The email of the user.
- email String
- The email of the user.
GetZeroTrustAccessGroupsResultIsDefaultEmailDomain         
- Domain string
- The email domain to match.
- Domain string
- The email domain to match.
- domain String
- The email domain to match.
- domain string
- The email domain to match.
- domain str
- The email domain to match.
- domain String
- The email domain to match.
GetZeroTrustAccessGroupsResultIsDefaultEmailList         
- Id string
- The ID of a previously created email list.
- Id string
- The ID of a previously created email list.
- id String
- The ID of a previously created email list.
- id string
- The ID of a previously created email list.
- id str
- The ID of a previously created email list.
- id String
- The ID of a previously created email list.
GetZeroTrustAccessGroupsResultIsDefaultExternalEvaluation         
- EvaluateUrl string
- The API endpoint containing your business logic.
- KeysUrl string
- The API endpoint containing the key that Access uses to verify that the response came from your API.
- EvaluateUrl string
- The API endpoint containing your business logic.
- KeysUrl string
- The API endpoint containing the key that Access uses to verify that the response came from your API.
- evaluateUrl String
- The API endpoint containing your business logic.
- keysUrl String
- The API endpoint containing the key that Access uses to verify that the response came from your API.
- evaluateUrl string
- The API endpoint containing your business logic.
- keysUrl string
- The API endpoint containing the key that Access uses to verify that the response came from your API.
- evaluate_url str
- The API endpoint containing your business logic.
- keys_url str
- The API endpoint containing the key that Access uses to verify that the response came from your API.
- evaluateUrl String
- The API endpoint containing your business logic.
- keysUrl String
- The API endpoint containing the key that Access uses to verify that the response came from your API.
GetZeroTrustAccessGroupsResultIsDefaultGeo        
- CountryCode string
- The country code that should be matched.
- CountryCode string
- The country code that should be matched.
- countryCode String
- The country code that should be matched.
- countryCode string
- The country code that should be matched.
- country_code str
- The country code that should be matched.
- countryCode String
- The country code that should be matched.
GetZeroTrustAccessGroupsResultIsDefaultGithubOrganization         
- IdentityProvider stringId 
- The ID of your Github identity provider.
- Name string
- The name of the organization.
- Team string
- The name of the team
- IdentityProvider stringId 
- The ID of your Github identity provider.
- Name string
- The name of the organization.
- Team string
- The name of the team
- identityProvider StringId 
- The ID of your Github identity provider.
- name String
- The name of the organization.
- team String
- The name of the team
- identityProvider stringId 
- The ID of your Github identity provider.
- name string
- The name of the organization.
- team string
- The name of the team
- identity_provider_ strid 
- The ID of your Github identity provider.
- name str
- The name of the organization.
- team str
- The name of the team
- identityProvider StringId 
- The ID of your Github identity provider.
- name String
- The name of the organization.
- team String
- The name of the team
GetZeroTrustAccessGroupsResultIsDefaultGroup        
- Id string
- The ID of a previously created Access group.
- Id string
- The ID of a previously created Access group.
- id String
- The ID of a previously created Access group.
- id string
- The ID of a previously created Access group.
- id str
- The ID of a previously created Access group.
- id String
- The ID of a previously created Access group.
GetZeroTrustAccessGroupsResultIsDefaultGsuite        
- Email string
- The email of the Google Workspace group.
- IdentityProvider stringId 
- The ID of your Google Workspace identity provider.
- Email string
- The email of the Google Workspace group.
- IdentityProvider stringId 
- The ID of your Google Workspace identity provider.
- email String
- The email of the Google Workspace group.
- identityProvider StringId 
- The ID of your Google Workspace identity provider.
- email string
- The email of the Google Workspace group.
- identityProvider stringId 
- The ID of your Google Workspace identity provider.
- email str
- The email of the Google Workspace group.
- identity_provider_ strid 
- The ID of your Google Workspace identity provider.
- email String
- The email of the Google Workspace group.
- identityProvider StringId 
- The ID of your Google Workspace identity provider.
GetZeroTrustAccessGroupsResultIsDefaultIp        
- Ip string
- An IPv4 or IPv6 CIDR block.
- Ip string
- An IPv4 or IPv6 CIDR block.
- ip String
- An IPv4 or IPv6 CIDR block.
- ip string
- An IPv4 or IPv6 CIDR block.
- ip str
- An IPv4 or IPv6 CIDR block.
- ip String
- An IPv4 or IPv6 CIDR block.
GetZeroTrustAccessGroupsResultIsDefaultIpList         
- Id string
- The ID of a previously created IP list.
- Id string
- The ID of a previously created IP list.
- id String
- The ID of a previously created IP list.
- id string
- The ID of a previously created IP list.
- id str
- The ID of a previously created IP list.
- id String
- The ID of a previously created IP list.
GetZeroTrustAccessGroupsResultIsDefaultLinkedAppToken          
- AppUid string
- The ID of an Access OIDC SaaS application
- AppUid string
- The ID of an Access OIDC SaaS application
- appUid String
- The ID of an Access OIDC SaaS application
- appUid string
- The ID of an Access OIDC SaaS application
- app_uid str
- The ID of an Access OIDC SaaS application
- appUid String
- The ID of an Access OIDC SaaS application
GetZeroTrustAccessGroupsResultIsDefaultLoginMethod         
- Id string
- The ID of an identity provider.
- Id string
- The ID of an identity provider.
- id String
- The ID of an identity provider.
- id string
- The ID of an identity provider.
- id str
- The ID of an identity provider.
- id String
- The ID of an identity provider.
GetZeroTrustAccessGroupsResultIsDefaultOidc        
- ClaimName string
- The name of the OIDC claim.
- ClaimValue string
- The OIDC claim value to look for.
- IdentityProvider stringId 
- The ID of your OIDC identity provider.
- ClaimName string
- The name of the OIDC claim.
- ClaimValue string
- The OIDC claim value to look for.
- IdentityProvider stringId 
- The ID of your OIDC identity provider.
- claimName String
- The name of the OIDC claim.
- claimValue String
- The OIDC claim value to look for.
- identityProvider StringId 
- The ID of your OIDC identity provider.
- claimName string
- The name of the OIDC claim.
- claimValue string
- The OIDC claim value to look for.
- identityProvider stringId 
- The ID of your OIDC identity provider.
- claim_name str
- The name of the OIDC claim.
- claim_value str
- The OIDC claim value to look for.
- identity_provider_ strid 
- The ID of your OIDC identity provider.
- claimName String
- The name of the OIDC claim.
- claimValue String
- The OIDC claim value to look for.
- identityProvider StringId 
- The ID of your OIDC identity provider.
GetZeroTrustAccessGroupsResultIsDefaultOkta        
- IdentityProvider stringId 
- The ID of your Okta identity provider.
- Name string
- The name of the Okta group.
- IdentityProvider stringId 
- The ID of your Okta identity provider.
- Name string
- The name of the Okta group.
- identityProvider StringId 
- The ID of your Okta identity provider.
- name String
- The name of the Okta group.
- identityProvider stringId 
- The ID of your Okta identity provider.
- name string
- The name of the Okta group.
- identity_provider_ strid 
- The ID of your Okta identity provider.
- name str
- The name of the Okta group.
- identityProvider StringId 
- The ID of your Okta identity provider.
- name String
- The name of the Okta group.
GetZeroTrustAccessGroupsResultIsDefaultSaml        
- AttributeName string
- The name of the SAML attribute.
- AttributeValue string
- The SAML attribute value to look for.
- IdentityProvider stringId 
- The ID of your SAML identity provider.
- AttributeName string
- The name of the SAML attribute.
- AttributeValue string
- The SAML attribute value to look for.
- IdentityProvider stringId 
- The ID of your SAML identity provider.
- attributeName String
- The name of the SAML attribute.
- attributeValue String
- The SAML attribute value to look for.
- identityProvider StringId 
- The ID of your SAML identity provider.
- attributeName string
- The name of the SAML attribute.
- attributeValue string
- The SAML attribute value to look for.
- identityProvider stringId 
- The ID of your SAML identity provider.
- attribute_name str
- The name of the SAML attribute.
- attribute_value str
- The SAML attribute value to look for.
- identity_provider_ strid 
- The ID of your SAML identity provider.
- attributeName String
- The name of the SAML attribute.
- attributeValue String
- The SAML attribute value to look for.
- identityProvider StringId 
- The ID of your SAML identity provider.
GetZeroTrustAccessGroupsResultIsDefaultServiceToken         
- TokenId string
- The ID of a Service Token.
- TokenId string
- The ID of a Service Token.
- tokenId String
- The ID of a Service Token.
- tokenId string
- The ID of a Service Token.
- token_id str
- The ID of a Service Token.
- tokenId String
- The ID of a Service Token.
GetZeroTrustAccessGroupsResultRequire      
- AnyValid GetService Token Zero Trust Access Groups Result Require Any Valid Service Token 
- An empty object which matches on all service tokens.
- AuthContext GetZero Trust Access Groups Result Require Auth Context 
- AuthMethod GetZero Trust Access Groups Result Require Auth Method 
- AzureAd GetZero Trust Access Groups Result Require Azure Ad 
- Certificate
GetZero Trust Access Groups Result Require Certificate 
- CommonName GetZero Trust Access Groups Result Require Common Name 
- DevicePosture GetZero Trust Access Groups Result Require Device Posture 
- Email
GetZero Trust Access Groups Result Require Email 
- EmailDomain GetZero Trust Access Groups Result Require Email Domain 
- EmailList GetZero Trust Access Groups Result Require Email List 
- Everyone
GetZero Trust Access Groups Result Require Everyone 
- An empty object which matches on all users.
- ExternalEvaluation GetZero Trust Access Groups Result Require External Evaluation 
- Geo
GetZero Trust Access Groups Result Require Geo 
- GithubOrganization GetZero Trust Access Groups Result Require Github Organization 
- Group
GetZero Trust Access Groups Result Require Group 
- Gsuite
GetZero Trust Access Groups Result Require Gsuite 
- Ip
GetZero Trust Access Groups Result Require Ip 
- IpList GetZero Trust Access Groups Result Require Ip List 
- LinkedApp GetToken Zero Trust Access Groups Result Require Linked App Token 
- LoginMethod GetZero Trust Access Groups Result Require Login Method 
- Oidc
GetZero Trust Access Groups Result Require Oidc 
- Okta
GetZero Trust Access Groups Result Require Okta 
- Saml
GetZero Trust Access Groups Result Require Saml 
- ServiceToken GetZero Trust Access Groups Result Require Service Token 
- AnyValid GetService Token Zero Trust Access Groups Result Require Any Valid Service Token 
- An empty object which matches on all service tokens.
- AuthContext GetZero Trust Access Groups Result Require Auth Context 
- AuthMethod GetZero Trust Access Groups Result Require Auth Method 
- AzureAd GetZero Trust Access Groups Result Require Azure Ad 
- Certificate
GetZero Trust Access Groups Result Require Certificate 
- CommonName GetZero Trust Access Groups Result Require Common Name 
- DevicePosture GetZero Trust Access Groups Result Require Device Posture 
- Email
GetZero Trust Access Groups Result Require Email 
- EmailDomain GetZero Trust Access Groups Result Require Email Domain 
- EmailList GetZero Trust Access Groups Result Require Email List 
- Everyone
GetZero Trust Access Groups Result Require Everyone 
- An empty object which matches on all users.
- ExternalEvaluation GetZero Trust Access Groups Result Require External Evaluation 
- Geo
GetZero Trust Access Groups Result Require Geo 
- GithubOrganization GetZero Trust Access Groups Result Require Github Organization 
- Group
GetZero Trust Access Groups Result Require Group 
- Gsuite
GetZero Trust Access Groups Result Require Gsuite 
- Ip
GetZero Trust Access Groups Result Require Ip 
- IpList GetZero Trust Access Groups Result Require Ip List 
- LinkedApp GetToken Zero Trust Access Groups Result Require Linked App Token 
- LoginMethod GetZero Trust Access Groups Result Require Login Method 
- Oidc
GetZero Trust Access Groups Result Require Oidc 
- Okta
GetZero Trust Access Groups Result Require Okta 
- Saml
GetZero Trust Access Groups Result Require Saml 
- ServiceToken GetZero Trust Access Groups Result Require Service Token 
- anyValid GetService Token Zero Trust Access Groups Result Require Any Valid Service Token 
- An empty object which matches on all service tokens.
- authContext GetZero Trust Access Groups Result Require Auth Context 
- authMethod GetZero Trust Access Groups Result Require Auth Method 
- azureAd GetZero Trust Access Groups Result Require Azure Ad 
- certificate
GetZero Trust Access Groups Result Require Certificate 
- commonName GetZero Trust Access Groups Result Require Common Name 
- devicePosture GetZero Trust Access Groups Result Require Device Posture 
- email
GetZero Trust Access Groups Result Require Email 
- emailDomain GetZero Trust Access Groups Result Require Email Domain 
- emailList GetZero Trust Access Groups Result Require Email List 
- everyone
GetZero Trust Access Groups Result Require Everyone 
- An empty object which matches on all users.
- externalEvaluation GetZero Trust Access Groups Result Require External Evaluation 
- geo
GetZero Trust Access Groups Result Require Geo 
- githubOrganization GetZero Trust Access Groups Result Require Github Organization 
- group
GetZero Trust Access Groups Result Require Group 
- gsuite
GetZero Trust Access Groups Result Require Gsuite 
- ip
GetZero Trust Access Groups Result Require Ip 
- ipList GetZero Trust Access Groups Result Require Ip List 
- linkedApp GetToken Zero Trust Access Groups Result Require Linked App Token 
- loginMethod GetZero Trust Access Groups Result Require Login Method 
- oidc
GetZero Trust Access Groups Result Require Oidc 
- okta
GetZero Trust Access Groups Result Require Okta 
- saml
GetZero Trust Access Groups Result Require Saml 
- serviceToken GetZero Trust Access Groups Result Require Service Token 
- anyValid GetService Token Zero Trust Access Groups Result Require Any Valid Service Token 
- An empty object which matches on all service tokens.
- authContext GetZero Trust Access Groups Result Require Auth Context 
- authMethod GetZero Trust Access Groups Result Require Auth Method 
- azureAd GetZero Trust Access Groups Result Require Azure Ad 
- certificate
GetZero Trust Access Groups Result Require Certificate 
- commonName GetZero Trust Access Groups Result Require Common Name 
- devicePosture GetZero Trust Access Groups Result Require Device Posture 
- email
GetZero Trust Access Groups Result Require Email 
- emailDomain GetZero Trust Access Groups Result Require Email Domain 
- emailList GetZero Trust Access Groups Result Require Email List 
- everyone
GetZero Trust Access Groups Result Require Everyone 
- An empty object which matches on all users.
- externalEvaluation GetZero Trust Access Groups Result Require External Evaluation 
- geo
GetZero Trust Access Groups Result Require Geo 
- githubOrganization GetZero Trust Access Groups Result Require Github Organization 
- group
GetZero Trust Access Groups Result Require Group 
- gsuite
GetZero Trust Access Groups Result Require Gsuite 
- ip
GetZero Trust Access Groups Result Require Ip 
- ipList GetZero Trust Access Groups Result Require Ip List 
- linkedApp GetToken Zero Trust Access Groups Result Require Linked App Token 
- loginMethod GetZero Trust Access Groups Result Require Login Method 
- oidc
GetZero Trust Access Groups Result Require Oidc 
- okta
GetZero Trust Access Groups Result Require Okta 
- saml
GetZero Trust Access Groups Result Require Saml 
- serviceToken GetZero Trust Access Groups Result Require Service Token 
- any_valid_ Getservice_ token Zero Trust Access Groups Result Require Any Valid Service Token 
- An empty object which matches on all service tokens.
- auth_context GetZero Trust Access Groups Result Require Auth Context 
- auth_method GetZero Trust Access Groups Result Require Auth Method 
- azure_ad GetZero Trust Access Groups Result Require Azure Ad 
- certificate
GetZero Trust Access Groups Result Require Certificate 
- common_name GetZero Trust Access Groups Result Require Common Name 
- device_posture GetZero Trust Access Groups Result Require Device Posture 
- email
GetZero Trust Access Groups Result Require Email 
- email_domain GetZero Trust Access Groups Result Require Email Domain 
- email_list GetZero Trust Access Groups Result Require Email List 
- everyone
GetZero Trust Access Groups Result Require Everyone 
- An empty object which matches on all users.
- external_evaluation GetZero Trust Access Groups Result Require External Evaluation 
- geo
GetZero Trust Access Groups Result Require Geo 
- github_organization GetZero Trust Access Groups Result Require Github Organization 
- group
GetZero Trust Access Groups Result Require Group 
- gsuite
GetZero Trust Access Groups Result Require Gsuite 
- ip
GetZero Trust Access Groups Result Require Ip 
- ip_list GetZero Trust Access Groups Result Require Ip List 
- linked_app_ Gettoken Zero Trust Access Groups Result Require Linked App Token 
- login_method GetZero Trust Access Groups Result Require Login Method 
- oidc
GetZero Trust Access Groups Result Require Oidc 
- okta
GetZero Trust Access Groups Result Require Okta 
- saml
GetZero Trust Access Groups Result Require Saml 
- service_token GetZero Trust Access Groups Result Require Service Token 
- anyValid Property MapService Token 
- An empty object which matches on all service tokens.
- authContext Property Map
- authMethod Property Map
- azureAd Property Map
- certificate Property Map
- commonName Property Map
- devicePosture Property Map
- email Property Map
- emailDomain Property Map
- emailList Property Map
- everyone Property Map
- An empty object which matches on all users.
- externalEvaluation Property Map
- geo Property Map
- githubOrganization Property Map
- group Property Map
- gsuite Property Map
- ip Property Map
- ipList Property Map
- linkedApp Property MapToken 
- loginMethod Property Map
- oidc Property Map
- okta Property Map
- saml Property Map
- serviceToken Property Map
GetZeroTrustAccessGroupsResultRequireAuthContext        
- AcId string
- The ACID of an Authentication context.
- Id string
- The ID of an Authentication context.
- IdentityProvider stringId 
- The ID of your Azure identity provider.
- AcId string
- The ACID of an Authentication context.
- Id string
- The ID of an Authentication context.
- IdentityProvider stringId 
- The ID of your Azure identity provider.
- acId String
- The ACID of an Authentication context.
- id String
- The ID of an Authentication context.
- identityProvider StringId 
- The ID of your Azure identity provider.
- acId string
- The ACID of an Authentication context.
- id string
- The ID of an Authentication context.
- identityProvider stringId 
- The ID of your Azure identity provider.
- ac_id str
- The ACID of an Authentication context.
- id str
- The ID of an Authentication context.
- identity_provider_ strid 
- The ID of your Azure identity provider.
- acId String
- The ACID of an Authentication context.
- id String
- The ID of an Authentication context.
- identityProvider StringId 
- The ID of your Azure identity provider.
GetZeroTrustAccessGroupsResultRequireAuthMethod        
- AuthMethod string
- The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
- AuthMethod string
- The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
- authMethod String
- The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
- authMethod string
- The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
- auth_method str
- The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
- authMethod String
- The type of authentication method https://datatracker.ietf.org/doc/html/rfc8176#section-2.
GetZeroTrustAccessGroupsResultRequireAzureAd        
- Id string
- The ID of an Azure group.
- IdentityProvider stringId 
- The ID of your Azure identity provider.
- Id string
- The ID of an Azure group.
- IdentityProvider stringId 
- The ID of your Azure identity provider.
- id String
- The ID of an Azure group.
- identityProvider StringId 
- The ID of your Azure identity provider.
- id string
- The ID of an Azure group.
- identityProvider stringId 
- The ID of your Azure identity provider.
- id str
- The ID of an Azure group.
- identity_provider_ strid 
- The ID of your Azure identity provider.
- id String
- The ID of an Azure group.
- identityProvider StringId 
- The ID of your Azure identity provider.
GetZeroTrustAccessGroupsResultRequireCommonName        
- CommonName string
- The common name to match.
- CommonName string
- The common name to match.
- commonName String
- The common name to match.
- commonName string
- The common name to match.
- common_name str
- The common name to match.
- commonName String
- The common name to match.
GetZeroTrustAccessGroupsResultRequireDevicePosture        
- IntegrationUid string
- The ID of a device posture integration.
- IntegrationUid string
- The ID of a device posture integration.
- integrationUid String
- The ID of a device posture integration.
- integrationUid string
- The ID of a device posture integration.
- integration_uid str
- The ID of a device posture integration.
- integrationUid String
- The ID of a device posture integration.
GetZeroTrustAccessGroupsResultRequireEmail       
- Email string
- The email of the user.
- Email string
- The email of the user.
- email String
- The email of the user.
- email string
- The email of the user.
- email str
- The email of the user.
- email String
- The email of the user.
GetZeroTrustAccessGroupsResultRequireEmailDomain        
- Domain string
- The email domain to match.
- Domain string
- The email domain to match.
- domain String
- The email domain to match.
- domain string
- The email domain to match.
- domain str
- The email domain to match.
- domain String
- The email domain to match.
GetZeroTrustAccessGroupsResultRequireEmailList        
- Id string
- The ID of a previously created email list.
- Id string
- The ID of a previously created email list.
- id String
- The ID of a previously created email list.
- id string
- The ID of a previously created email list.
- id str
- The ID of a previously created email list.
- id String
- The ID of a previously created email list.
GetZeroTrustAccessGroupsResultRequireExternalEvaluation        
- EvaluateUrl string
- The API endpoint containing your business logic.
- KeysUrl string
- The API endpoint containing the key that Access uses to verify that the response came from your API.
- EvaluateUrl string
- The API endpoint containing your business logic.
- KeysUrl string
- The API endpoint containing the key that Access uses to verify that the response came from your API.
- evaluateUrl String
- The API endpoint containing your business logic.
- keysUrl String
- The API endpoint containing the key that Access uses to verify that the response came from your API.
- evaluateUrl string
- The API endpoint containing your business logic.
- keysUrl string
- The API endpoint containing the key that Access uses to verify that the response came from your API.
- evaluate_url str
- The API endpoint containing your business logic.
- keys_url str
- The API endpoint containing the key that Access uses to verify that the response came from your API.
- evaluateUrl String
- The API endpoint containing your business logic.
- keysUrl String
- The API endpoint containing the key that Access uses to verify that the response came from your API.
GetZeroTrustAccessGroupsResultRequireGeo       
- CountryCode string
- The country code that should be matched.
- CountryCode string
- The country code that should be matched.
- countryCode String
- The country code that should be matched.
- countryCode string
- The country code that should be matched.
- country_code str
- The country code that should be matched.
- countryCode String
- The country code that should be matched.
GetZeroTrustAccessGroupsResultRequireGithubOrganization        
- IdentityProvider stringId 
- The ID of your Github identity provider.
- Name string
- The name of the organization.
- Team string
- The name of the team
- IdentityProvider stringId 
- The ID of your Github identity provider.
- Name string
- The name of the organization.
- Team string
- The name of the team
- identityProvider StringId 
- The ID of your Github identity provider.
- name String
- The name of the organization.
- team String
- The name of the team
- identityProvider stringId 
- The ID of your Github identity provider.
- name string
- The name of the organization.
- team string
- The name of the team
- identity_provider_ strid 
- The ID of your Github identity provider.
- name str
- The name of the organization.
- team str
- The name of the team
- identityProvider StringId 
- The ID of your Github identity provider.
- name String
- The name of the organization.
- team String
- The name of the team
GetZeroTrustAccessGroupsResultRequireGroup       
- Id string
- The ID of a previously created Access group.
- Id string
- The ID of a previously created Access group.
- id String
- The ID of a previously created Access group.
- id string
- The ID of a previously created Access group.
- id str
- The ID of a previously created Access group.
- id String
- The ID of a previously created Access group.
GetZeroTrustAccessGroupsResultRequireGsuite       
- Email string
- The email of the Google Workspace group.
- IdentityProvider stringId 
- The ID of your Google Workspace identity provider.
- Email string
- The email of the Google Workspace group.
- IdentityProvider stringId 
- The ID of your Google Workspace identity provider.
- email String
- The email of the Google Workspace group.
- identityProvider StringId 
- The ID of your Google Workspace identity provider.
- email string
- The email of the Google Workspace group.
- identityProvider stringId 
- The ID of your Google Workspace identity provider.
- email str
- The email of the Google Workspace group.
- identity_provider_ strid 
- The ID of your Google Workspace identity provider.
- email String
- The email of the Google Workspace group.
- identityProvider StringId 
- The ID of your Google Workspace identity provider.
GetZeroTrustAccessGroupsResultRequireIp       
- Ip string
- An IPv4 or IPv6 CIDR block.
- Ip string
- An IPv4 or IPv6 CIDR block.
- ip String
- An IPv4 or IPv6 CIDR block.
- ip string
- An IPv4 or IPv6 CIDR block.
- ip str
- An IPv4 or IPv6 CIDR block.
- ip String
- An IPv4 or IPv6 CIDR block.
GetZeroTrustAccessGroupsResultRequireIpList        
- Id string
- The ID of a previously created IP list.
- Id string
- The ID of a previously created IP list.
- id String
- The ID of a previously created IP list.
- id string
- The ID of a previously created IP list.
- id str
- The ID of a previously created IP list.
- id String
- The ID of a previously created IP list.
GetZeroTrustAccessGroupsResultRequireLinkedAppToken         
- AppUid string
- The ID of an Access OIDC SaaS application
- AppUid string
- The ID of an Access OIDC SaaS application
- appUid String
- The ID of an Access OIDC SaaS application
- appUid string
- The ID of an Access OIDC SaaS application
- app_uid str
- The ID of an Access OIDC SaaS application
- appUid String
- The ID of an Access OIDC SaaS application
GetZeroTrustAccessGroupsResultRequireLoginMethod        
- Id string
- The ID of an identity provider.
- Id string
- The ID of an identity provider.
- id String
- The ID of an identity provider.
- id string
- The ID of an identity provider.
- id str
- The ID of an identity provider.
- id String
- The ID of an identity provider.
GetZeroTrustAccessGroupsResultRequireOidc       
- ClaimName string
- The name of the OIDC claim.
- ClaimValue string
- The OIDC claim value to look for.
- IdentityProvider stringId 
- The ID of your OIDC identity provider.
- ClaimName string
- The name of the OIDC claim.
- ClaimValue string
- The OIDC claim value to look for.
- IdentityProvider stringId 
- The ID of your OIDC identity provider.
- claimName String
- The name of the OIDC claim.
- claimValue String
- The OIDC claim value to look for.
- identityProvider StringId 
- The ID of your OIDC identity provider.
- claimName string
- The name of the OIDC claim.
- claimValue string
- The OIDC claim value to look for.
- identityProvider stringId 
- The ID of your OIDC identity provider.
- claim_name str
- The name of the OIDC claim.
- claim_value str
- The OIDC claim value to look for.
- identity_provider_ strid 
- The ID of your OIDC identity provider.
- claimName String
- The name of the OIDC claim.
- claimValue String
- The OIDC claim value to look for.
- identityProvider StringId 
- The ID of your OIDC identity provider.
GetZeroTrustAccessGroupsResultRequireOkta       
- IdentityProvider stringId 
- The ID of your Okta identity provider.
- Name string
- The name of the Okta group.
- IdentityProvider stringId 
- The ID of your Okta identity provider.
- Name string
- The name of the Okta group.
- identityProvider StringId 
- The ID of your Okta identity provider.
- name String
- The name of the Okta group.
- identityProvider stringId 
- The ID of your Okta identity provider.
- name string
- The name of the Okta group.
- identity_provider_ strid 
- The ID of your Okta identity provider.
- name str
- The name of the Okta group.
- identityProvider StringId 
- The ID of your Okta identity provider.
- name String
- The name of the Okta group.
GetZeroTrustAccessGroupsResultRequireSaml       
- AttributeName string
- The name of the SAML attribute.
- AttributeValue string
- The SAML attribute value to look for.
- IdentityProvider stringId 
- The ID of your SAML identity provider.
- AttributeName string
- The name of the SAML attribute.
- AttributeValue string
- The SAML attribute value to look for.
- IdentityProvider stringId 
- The ID of your SAML identity provider.
- attributeName String
- The name of the SAML attribute.
- attributeValue String
- The SAML attribute value to look for.
- identityProvider StringId 
- The ID of your SAML identity provider.
- attributeName string
- The name of the SAML attribute.
- attributeValue string
- The SAML attribute value to look for.
- identityProvider stringId 
- The ID of your SAML identity provider.
- attribute_name str
- The name of the SAML attribute.
- attribute_value str
- The SAML attribute value to look for.
- identity_provider_ strid 
- The ID of your SAML identity provider.
- attributeName String
- The name of the SAML attribute.
- attributeValue String
- The SAML attribute value to look for.
- identityProvider StringId 
- The ID of your SAML identity provider.
GetZeroTrustAccessGroupsResultRequireServiceToken        
- TokenId string
- The ID of a Service Token.
- TokenId string
- The ID of a Service Token.
- tokenId String
- The ID of a Service Token.
- tokenId string
- The ID of a Service Token.
- token_id str
- The ID of a Service Token.
- tokenId String
- The ID of a Service Token.
Package Details
- Repository
- Cloudflare pulumi/pulumi-cloudflare
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the cloudflareTerraform Provider.
