1. Packages
  2. Cloudflare Provider
  3. API Docs
  4. getZeroTrustAccessPolicies
Cloudflare v6.1.2 published on Monday, Apr 28, 2025 by Pulumi

cloudflare.getZeroTrustAccessPolicies

Explore with Pulumi AI

cloudflare logo
Cloudflare v6.1.2 published on Monday, Apr 28, 2025 by Pulumi

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as cloudflare from "@pulumi/cloudflare";
    
    const exampleZeroTrustAccessPolicies = cloudflare.getZeroTrustAccessPolicies({
        accountId: "023e105f4ecef8ad9ca31a8372d0c353",
    });
    
    import pulumi
    import pulumi_cloudflare as cloudflare
    
    example_zero_trust_access_policies = cloudflare.get_zero_trust_access_policies(account_id="023e105f4ecef8ad9ca31a8372d0c353")
    
    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.LookupZeroTrustAccessPolicies(ctx, &cloudflare.LookupZeroTrustAccessPoliciesArgs{
    			AccountId: "023e105f4ecef8ad9ca31a8372d0c353",
    		}, 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 exampleZeroTrustAccessPolicies = Cloudflare.GetZeroTrustAccessPolicies.Invoke(new()
        {
            AccountId = "023e105f4ecef8ad9ca31a8372d0c353",
        });
    
    });
    
    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.GetZeroTrustAccessPoliciesArgs;
    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 exampleZeroTrustAccessPolicies = CloudflareFunctions.getZeroTrustAccessPolicies(GetZeroTrustAccessPoliciesArgs.builder()
                .accountId("023e105f4ecef8ad9ca31a8372d0c353")
                .build());
    
        }
    }
    
    variables:
      exampleZeroTrustAccessPolicies:
        fn::invoke:
          function: cloudflare:getZeroTrustAccessPolicies
          arguments:
            accountId: 023e105f4ecef8ad9ca31a8372d0c353
    

    Using getZeroTrustAccessPolicies

    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 getZeroTrustAccessPolicies(args: GetZeroTrustAccessPoliciesArgs, opts?: InvokeOptions): Promise<GetZeroTrustAccessPoliciesResult>
    function getZeroTrustAccessPoliciesOutput(args: GetZeroTrustAccessPoliciesOutputArgs, opts?: InvokeOptions): Output<GetZeroTrustAccessPoliciesResult>
    def get_zero_trust_access_policies(account_id: Optional[str] = None,
                                       max_items: Optional[int] = None,
                                       opts: Optional[InvokeOptions] = None) -> GetZeroTrustAccessPoliciesResult
    def get_zero_trust_access_policies_output(account_id: Optional[pulumi.Input[str]] = None,
                                       max_items: Optional[pulumi.Input[int]] = None,
                                       opts: Optional[InvokeOptions] = None) -> Output[GetZeroTrustAccessPoliciesResult]
    func LookupZeroTrustAccessPolicies(ctx *Context, args *LookupZeroTrustAccessPoliciesArgs, opts ...InvokeOption) (*LookupZeroTrustAccessPoliciesResult, error)
    func LookupZeroTrustAccessPoliciesOutput(ctx *Context, args *LookupZeroTrustAccessPoliciesOutputArgs, opts ...InvokeOption) LookupZeroTrustAccessPoliciesResultOutput

    > Note: This function is named LookupZeroTrustAccessPolicies in the Go SDK.

    public static class GetZeroTrustAccessPolicies 
    {
        public static Task<GetZeroTrustAccessPoliciesResult> InvokeAsync(GetZeroTrustAccessPoliciesArgs args, InvokeOptions? opts = null)
        public static Output<GetZeroTrustAccessPoliciesResult> Invoke(GetZeroTrustAccessPoliciesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetZeroTrustAccessPoliciesResult> getZeroTrustAccessPolicies(GetZeroTrustAccessPoliciesArgs args, InvokeOptions options)
    public static Output<GetZeroTrustAccessPoliciesResult> getZeroTrustAccessPolicies(GetZeroTrustAccessPoliciesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: cloudflare:index/getZeroTrustAccessPolicies:getZeroTrustAccessPolicies
      arguments:
        # arguments dictionary

    The following arguments are supported:

    AccountId string
    Identifier.
    MaxItems int
    Max items to fetch, default: 1000
    AccountId string
    Identifier.
    MaxItems int
    Max items to fetch, default: 1000
    accountId String
    Identifier.
    maxItems Integer
    Max items to fetch, default: 1000
    accountId string
    Identifier.
    maxItems number
    Max items to fetch, default: 1000
    account_id str
    Identifier.
    max_items int
    Max items to fetch, default: 1000
    accountId String
    Identifier.
    maxItems Number
    Max items to fetch, default: 1000

    getZeroTrustAccessPolicies Result

    The following output properties are available:

    AccountId string
    Identifier.
    Id string
    The provider-assigned unique ID for this managed resource.
    Results List<GetZeroTrustAccessPoliciesResult>
    The items returned by the data source
    MaxItems int
    Max items to fetch, default: 1000
    AccountId string
    Identifier.
    Id string
    The provider-assigned unique ID for this managed resource.
    Results []GetZeroTrustAccessPoliciesResult
    The items returned by the data source
    MaxItems int
    Max items to fetch, default: 1000
    accountId String
    Identifier.
    id String
    The provider-assigned unique ID for this managed resource.
    results List<GetZeroTrustAccessPoliciesResult>
    The items returned by the data source
    maxItems Integer
    Max items to fetch, default: 1000
    accountId string
    Identifier.
    id string
    The provider-assigned unique ID for this managed resource.
    results GetZeroTrustAccessPoliciesResult[]
    The items returned by the data source
    maxItems number
    Max items to fetch, default: 1000
    account_id str
    Identifier.
    id str
    The provider-assigned unique ID for this managed resource.
    results Sequence[GetZeroTrustAccessPoliciesResult]
    The items returned by the data source
    max_items int
    Max items to fetch, default: 1000
    accountId String
    Identifier.
    id String
    The provider-assigned unique ID for this managed resource.
    results List<Property Map>
    The items returned by the data source
    maxItems Number
    Max items to fetch, default: 1000

    Supporting Types

    GetZeroTrustAccessPoliciesResult

    AppCount int
    Number of access applications currently using this policy.
    ApprovalGroups List<GetZeroTrustAccessPoliciesResultApprovalGroup>
    Administrators who can approve a temporary authentication request.
    ApprovalRequired bool
    Requires the user to request access from an administrator at the start of each session.
    CreatedAt string
    Decision string
    The action Access will take if a user matches this policy. Infrastructure application policies can only use the Allow action. Available values: "allow", "deny", "non_identity", "bypass".
    Excludes List<GetZeroTrustAccessPoliciesResultExclude>
    Rules evaluated with a NOT logical operator. To match the policy, a user cannot meet any of the Exclude rules.
    Id string
    The UUID of the policy
    Includes List<GetZeroTrustAccessPoliciesResultInclude>
    Rules evaluated with an OR logical operator. A user needs to meet only one of the Include rules.
    IsolationRequired bool
    Require this application to be served in an isolated browser for users matching this policy. 'Client Web Isolation' must be on for the account in order to use this feature.
    Name string
    The name of the Access policy.
    PurposeJustificationPrompt string
    A custom message that will appear on the purpose justification screen.
    PurposeJustificationRequired bool
    Require users to enter a justification when they log in to the application.
    Requires List<GetZeroTrustAccessPoliciesResultRequire>
    Rules evaluated with an AND logical operator. To match the policy, a user must meet all of the Require rules.
    Reusable bool
    SessionDuration string
    The amount of time that tokens issued for the application will be valid. Must be in the format 300ms or 2h45m. Valid time units are: ns, us (or µs), ms, s, m, h.
    UpdatedAt string
    AppCount int
    Number of access applications currently using this policy.
    ApprovalGroups []GetZeroTrustAccessPoliciesResultApprovalGroup
    Administrators who can approve a temporary authentication request.
    ApprovalRequired bool
    Requires the user to request access from an administrator at the start of each session.
    CreatedAt string
    Decision string
    The action Access will take if a user matches this policy. Infrastructure application policies can only use the Allow action. Available values: "allow", "deny", "non_identity", "bypass".
    Excludes []GetZeroTrustAccessPoliciesResultExclude
    Rules evaluated with a NOT logical operator. To match the policy, a user cannot meet any of the Exclude rules.
    Id string
    The UUID of the policy
    Includes []GetZeroTrustAccessPoliciesResultInclude
    Rules evaluated with an OR logical operator. A user needs to meet only one of the Include rules.
    IsolationRequired bool
    Require this application to be served in an isolated browser for users matching this policy. 'Client Web Isolation' must be on for the account in order to use this feature.
    Name string
    The name of the Access policy.
    PurposeJustificationPrompt string
    A custom message that will appear on the purpose justification screen.
    PurposeJustificationRequired bool
    Require users to enter a justification when they log in to the application.
    Requires []GetZeroTrustAccessPoliciesResultRequire
    Rules evaluated with an AND logical operator. To match the policy, a user must meet all of the Require rules.
    Reusable bool
    SessionDuration string
    The amount of time that tokens issued for the application will be valid. Must be in the format 300ms or 2h45m. Valid time units are: ns, us (or µs), ms, s, m, h.
    UpdatedAt string
    appCount Integer
    Number of access applications currently using this policy.
    approvalGroups List<GetZeroTrustAccessPoliciesResultApprovalGroup>
    Administrators who can approve a temporary authentication request.
    approvalRequired Boolean
    Requires the user to request access from an administrator at the start of each session.
    createdAt String
    decision String
    The action Access will take if a user matches this policy. Infrastructure application policies can only use the Allow action. Available values: "allow", "deny", "non_identity", "bypass".
    excludes List<GetZeroTrustAccessPoliciesResultExclude>
    Rules evaluated with a NOT logical operator. To match the policy, a user cannot meet any of the Exclude rules.
    id String
    The UUID of the policy
    includes List<GetZeroTrustAccessPoliciesResultInclude>
    Rules evaluated with an OR logical operator. A user needs to meet only one of the Include rules.
    isolationRequired Boolean
    Require this application to be served in an isolated browser for users matching this policy. 'Client Web Isolation' must be on for the account in order to use this feature.
    name String
    The name of the Access policy.
    purposeJustificationPrompt String
    A custom message that will appear on the purpose justification screen.
    purposeJustificationRequired Boolean
    Require users to enter a justification when they log in to the application.
    requires List<GetZeroTrustAccessPoliciesResultRequire>
    Rules evaluated with an AND logical operator. To match the policy, a user must meet all of the Require rules.
    reusable Boolean
    sessionDuration String
    The amount of time that tokens issued for the application will be valid. Must be in the format 300ms or 2h45m. Valid time units are: ns, us (or µs), ms, s, m, h.
    updatedAt String
    appCount number
    Number of access applications currently using this policy.
    approvalGroups GetZeroTrustAccessPoliciesResultApprovalGroup[]
    Administrators who can approve a temporary authentication request.
    approvalRequired boolean
    Requires the user to request access from an administrator at the start of each session.
    createdAt string
    decision string
    The action Access will take if a user matches this policy. Infrastructure application policies can only use the Allow action. Available values: "allow", "deny", "non_identity", "bypass".
    excludes GetZeroTrustAccessPoliciesResultExclude[]
    Rules evaluated with a NOT logical operator. To match the policy, a user cannot meet any of the Exclude rules.
    id string
    The UUID of the policy
    includes GetZeroTrustAccessPoliciesResultInclude[]
    Rules evaluated with an OR logical operator. A user needs to meet only one of the Include rules.
    isolationRequired boolean
    Require this application to be served in an isolated browser for users matching this policy. 'Client Web Isolation' must be on for the account in order to use this feature.
    name string
    The name of the Access policy.
    purposeJustificationPrompt string
    A custom message that will appear on the purpose justification screen.
    purposeJustificationRequired boolean
    Require users to enter a justification when they log in to the application.
    requires GetZeroTrustAccessPoliciesResultRequire[]
    Rules evaluated with an AND logical operator. To match the policy, a user must meet all of the Require rules.
    reusable boolean
    sessionDuration string
    The amount of time that tokens issued for the application will be valid. Must be in the format 300ms or 2h45m. Valid time units are: ns, us (or µs), ms, s, m, h.
    updatedAt string
    app_count int
    Number of access applications currently using this policy.
    approval_groups Sequence[GetZeroTrustAccessPoliciesResultApprovalGroup]
    Administrators who can approve a temporary authentication request.
    approval_required bool
    Requires the user to request access from an administrator at the start of each session.
    created_at str
    decision str
    The action Access will take if a user matches this policy. Infrastructure application policies can only use the Allow action. Available values: "allow", "deny", "non_identity", "bypass".
    excludes Sequence[GetZeroTrustAccessPoliciesResultExclude]
    Rules evaluated with a NOT logical operator. To match the policy, a user cannot meet any of the Exclude rules.
    id str
    The UUID of the policy
    includes Sequence[GetZeroTrustAccessPoliciesResultInclude]
    Rules evaluated with an OR logical operator. A user needs to meet only one of the Include rules.
    isolation_required bool
    Require this application to be served in an isolated browser for users matching this policy. 'Client Web Isolation' must be on for the account in order to use this feature.
    name str
    The name of the Access policy.
    purpose_justification_prompt str
    A custom message that will appear on the purpose justification screen.
    purpose_justification_required bool
    Require users to enter a justification when they log in to the application.
    requires Sequence[GetZeroTrustAccessPoliciesResultRequire]
    Rules evaluated with an AND logical operator. To match the policy, a user must meet all of the Require rules.
    reusable bool
    session_duration str
    The amount of time that tokens issued for the application will be valid. Must be in the format 300ms or 2h45m. Valid time units are: ns, us (or µs), ms, s, m, h.
    updated_at str
    appCount Number
    Number of access applications currently using this policy.
    approvalGroups List<Property Map>
    Administrators who can approve a temporary authentication request.
    approvalRequired Boolean
    Requires the user to request access from an administrator at the start of each session.
    createdAt String
    decision String
    The action Access will take if a user matches this policy. Infrastructure application policies can only use the Allow action. Available values: "allow", "deny", "non_identity", "bypass".
    excludes List<Property Map>
    Rules evaluated with a NOT logical operator. To match the policy, a user cannot meet any of the Exclude rules.
    id String
    The UUID of the policy
    includes List<Property Map>
    Rules evaluated with an OR logical operator. A user needs to meet only one of the Include rules.
    isolationRequired Boolean
    Require this application to be served in an isolated browser for users matching this policy. 'Client Web Isolation' must be on for the account in order to use this feature.
    name String
    The name of the Access policy.
    purposeJustificationPrompt String
    A custom message that will appear on the purpose justification screen.
    purposeJustificationRequired Boolean
    Require users to enter a justification when they log in to the application.
    requires List<Property Map>
    Rules evaluated with an AND logical operator. To match the policy, a user must meet all of the Require rules.
    reusable Boolean
    sessionDuration String
    The amount of time that tokens issued for the application will be valid. Must be in the format 300ms or 2h45m. Valid time units are: ns, us (or µs), ms, s, m, h.
    updatedAt String

    GetZeroTrustAccessPoliciesResultApprovalGroup

    ApprovalsNeeded double
    The number of approvals needed to obtain access.
    EmailAddresses List<string>
    A list of emails that can approve the access request.
    EmailListUuid string
    The UUID of an re-usable email list.
    ApprovalsNeeded float64
    The number of approvals needed to obtain access.
    EmailAddresses []string
    A list of emails that can approve the access request.
    EmailListUuid string
    The UUID of an re-usable email list.
    approvalsNeeded Double
    The number of approvals needed to obtain access.
    emailAddresses List<String>
    A list of emails that can approve the access request.
    emailListUuid String
    The UUID of an re-usable email list.
    approvalsNeeded number
    The number of approvals needed to obtain access.
    emailAddresses string[]
    A list of emails that can approve the access request.
    emailListUuid string
    The UUID of an re-usable email list.
    approvals_needed float
    The number of approvals needed to obtain access.
    email_addresses Sequence[str]
    A list of emails that can approve the access request.
    email_list_uuid str
    The UUID of an re-usable email list.
    approvalsNeeded Number
    The number of approvals needed to obtain access.
    emailAddresses List<String>
    A list of emails that can approve the access request.
    emailListUuid String
    The UUID of an re-usable email list.

    GetZeroTrustAccessPoliciesResultExclude

    AnyValidServiceToken GetZeroTrustAccessPoliciesResultExcludeAnyValidServiceToken
    An empty object which matches on all service tokens.
    AuthContext GetZeroTrustAccessPoliciesResultExcludeAuthContext
    AuthMethod GetZeroTrustAccessPoliciesResultExcludeAuthMethod
    AzureAd GetZeroTrustAccessPoliciesResultExcludeAzureAd
    Certificate GetZeroTrustAccessPoliciesResultExcludeCertificate
    CommonName GetZeroTrustAccessPoliciesResultExcludeCommonName
    DevicePosture GetZeroTrustAccessPoliciesResultExcludeDevicePosture
    Email GetZeroTrustAccessPoliciesResultExcludeEmail
    EmailDomain GetZeroTrustAccessPoliciesResultExcludeEmailDomain
    EmailList GetZeroTrustAccessPoliciesResultExcludeEmailList
    Everyone GetZeroTrustAccessPoliciesResultExcludeEveryone
    An empty object which matches on all users.
    ExternalEvaluation GetZeroTrustAccessPoliciesResultExcludeExternalEvaluation
    Geo GetZeroTrustAccessPoliciesResultExcludeGeo
    GithubOrganization GetZeroTrustAccessPoliciesResultExcludeGithubOrganization
    Group GetZeroTrustAccessPoliciesResultExcludeGroup
    Gsuite GetZeroTrustAccessPoliciesResultExcludeGsuite
    Ip GetZeroTrustAccessPoliciesResultExcludeIp
    IpList GetZeroTrustAccessPoliciesResultExcludeIpList
    LoginMethod GetZeroTrustAccessPoliciesResultExcludeLoginMethod
    Okta GetZeroTrustAccessPoliciesResultExcludeOkta
    Saml GetZeroTrustAccessPoliciesResultExcludeSaml
    ServiceToken GetZeroTrustAccessPoliciesResultExcludeServiceToken
    AnyValidServiceToken GetZeroTrustAccessPoliciesResultExcludeAnyValidServiceToken
    An empty object which matches on all service tokens.
    AuthContext GetZeroTrustAccessPoliciesResultExcludeAuthContext
    AuthMethod GetZeroTrustAccessPoliciesResultExcludeAuthMethod
    AzureAd GetZeroTrustAccessPoliciesResultExcludeAzureAd
    Certificate GetZeroTrustAccessPoliciesResultExcludeCertificate
    CommonName GetZeroTrustAccessPoliciesResultExcludeCommonName
    DevicePosture GetZeroTrustAccessPoliciesResultExcludeDevicePosture
    Email GetZeroTrustAccessPoliciesResultExcludeEmail
    EmailDomain GetZeroTrustAccessPoliciesResultExcludeEmailDomain
    EmailList GetZeroTrustAccessPoliciesResultExcludeEmailList
    Everyone GetZeroTrustAccessPoliciesResultExcludeEveryone
    An empty object which matches on all users.
    ExternalEvaluation GetZeroTrustAccessPoliciesResultExcludeExternalEvaluation
    Geo GetZeroTrustAccessPoliciesResultExcludeGeo
    GithubOrganization GetZeroTrustAccessPoliciesResultExcludeGithubOrganization
    Group GetZeroTrustAccessPoliciesResultExcludeGroup
    Gsuite GetZeroTrustAccessPoliciesResultExcludeGsuite
    Ip GetZeroTrustAccessPoliciesResultExcludeIp
    IpList GetZeroTrustAccessPoliciesResultExcludeIpList
    LoginMethod GetZeroTrustAccessPoliciesResultExcludeLoginMethod
    Okta GetZeroTrustAccessPoliciesResultExcludeOkta
    Saml GetZeroTrustAccessPoliciesResultExcludeSaml
    ServiceToken GetZeroTrustAccessPoliciesResultExcludeServiceToken
    anyValidServiceToken GetZeroTrustAccessPoliciesResultExcludeAnyValidServiceToken
    An empty object which matches on all service tokens.
    authContext GetZeroTrustAccessPoliciesResultExcludeAuthContext
    authMethod GetZeroTrustAccessPoliciesResultExcludeAuthMethod
    azureAd GetZeroTrustAccessPoliciesResultExcludeAzureAd
    certificate GetZeroTrustAccessPoliciesResultExcludeCertificate
    commonName GetZeroTrustAccessPoliciesResultExcludeCommonName
    devicePosture GetZeroTrustAccessPoliciesResultExcludeDevicePosture
    email GetZeroTrustAccessPoliciesResultExcludeEmail
    emailDomain GetZeroTrustAccessPoliciesResultExcludeEmailDomain
    emailList GetZeroTrustAccessPoliciesResultExcludeEmailList
    everyone GetZeroTrustAccessPoliciesResultExcludeEveryone
    An empty object which matches on all users.
    externalEvaluation GetZeroTrustAccessPoliciesResultExcludeExternalEvaluation
    geo GetZeroTrustAccessPoliciesResultExcludeGeo
    githubOrganization GetZeroTrustAccessPoliciesResultExcludeGithubOrganization
    group GetZeroTrustAccessPoliciesResultExcludeGroup
    gsuite GetZeroTrustAccessPoliciesResultExcludeGsuite
    ip GetZeroTrustAccessPoliciesResultExcludeIp
    ipList GetZeroTrustAccessPoliciesResultExcludeIpList
    loginMethod GetZeroTrustAccessPoliciesResultExcludeLoginMethod
    okta GetZeroTrustAccessPoliciesResultExcludeOkta
    saml GetZeroTrustAccessPoliciesResultExcludeSaml
    serviceToken GetZeroTrustAccessPoliciesResultExcludeServiceToken
    anyValidServiceToken GetZeroTrustAccessPoliciesResultExcludeAnyValidServiceToken
    An empty object which matches on all service tokens.
    authContext GetZeroTrustAccessPoliciesResultExcludeAuthContext
    authMethod GetZeroTrustAccessPoliciesResultExcludeAuthMethod
    azureAd GetZeroTrustAccessPoliciesResultExcludeAzureAd
    certificate GetZeroTrustAccessPoliciesResultExcludeCertificate
    commonName GetZeroTrustAccessPoliciesResultExcludeCommonName
    devicePosture GetZeroTrustAccessPoliciesResultExcludeDevicePosture
    email GetZeroTrustAccessPoliciesResultExcludeEmail
    emailDomain GetZeroTrustAccessPoliciesResultExcludeEmailDomain
    emailList GetZeroTrustAccessPoliciesResultExcludeEmailList
    everyone GetZeroTrustAccessPoliciesResultExcludeEveryone
    An empty object which matches on all users.
    externalEvaluation GetZeroTrustAccessPoliciesResultExcludeExternalEvaluation
    geo GetZeroTrustAccessPoliciesResultExcludeGeo
    githubOrganization GetZeroTrustAccessPoliciesResultExcludeGithubOrganization
    group GetZeroTrustAccessPoliciesResultExcludeGroup
    gsuite GetZeroTrustAccessPoliciesResultExcludeGsuite
    ip GetZeroTrustAccessPoliciesResultExcludeIp
    ipList GetZeroTrustAccessPoliciesResultExcludeIpList
    loginMethod GetZeroTrustAccessPoliciesResultExcludeLoginMethod
    okta GetZeroTrustAccessPoliciesResultExcludeOkta
    saml GetZeroTrustAccessPoliciesResultExcludeSaml
    serviceToken GetZeroTrustAccessPoliciesResultExcludeServiceToken
    any_valid_service_token GetZeroTrustAccessPoliciesResultExcludeAnyValidServiceToken
    An empty object which matches on all service tokens.
    auth_context GetZeroTrustAccessPoliciesResultExcludeAuthContext
    auth_method GetZeroTrustAccessPoliciesResultExcludeAuthMethod
    azure_ad GetZeroTrustAccessPoliciesResultExcludeAzureAd
    certificate GetZeroTrustAccessPoliciesResultExcludeCertificate
    common_name GetZeroTrustAccessPoliciesResultExcludeCommonName
    device_posture GetZeroTrustAccessPoliciesResultExcludeDevicePosture
    email GetZeroTrustAccessPoliciesResultExcludeEmail
    email_domain GetZeroTrustAccessPoliciesResultExcludeEmailDomain
    email_list GetZeroTrustAccessPoliciesResultExcludeEmailList
    everyone GetZeroTrustAccessPoliciesResultExcludeEveryone
    An empty object which matches on all users.
    external_evaluation GetZeroTrustAccessPoliciesResultExcludeExternalEvaluation
    geo GetZeroTrustAccessPoliciesResultExcludeGeo
    github_organization GetZeroTrustAccessPoliciesResultExcludeGithubOrganization
    group GetZeroTrustAccessPoliciesResultExcludeGroup
    gsuite GetZeroTrustAccessPoliciesResultExcludeGsuite
    ip GetZeroTrustAccessPoliciesResultExcludeIp
    ip_list GetZeroTrustAccessPoliciesResultExcludeIpList
    login_method GetZeroTrustAccessPoliciesResultExcludeLoginMethod
    okta GetZeroTrustAccessPoliciesResultExcludeOkta
    saml GetZeroTrustAccessPoliciesResultExcludeSaml
    service_token GetZeroTrustAccessPoliciesResultExcludeServiceToken

    GetZeroTrustAccessPoliciesResultExcludeAuthContext

    AcId string
    The ACID of an Authentication context.
    Id string
    The ID of an Authentication context.
    IdentityProviderId string
    The ID of your Azure identity provider.
    AcId string
    The ACID of an Authentication context.
    Id string
    The ID of an Authentication context.
    IdentityProviderId string
    The ID of your Azure identity provider.
    acId String
    The ACID of an Authentication context.
    id String
    The ID of an Authentication context.
    identityProviderId String
    The ID of your Azure identity provider.
    acId string
    The ACID of an Authentication context.
    id string
    The ID of an Authentication context.
    identityProviderId string
    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_id str
    The ID of your Azure identity provider.
    acId String
    The ACID of an Authentication context.
    id String
    The ID of an Authentication context.
    identityProviderId String
    The ID of your Azure identity provider.

    GetZeroTrustAccessPoliciesResultExcludeAuthMethod

    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.

    GetZeroTrustAccessPoliciesResultExcludeAzureAd

    Id string
    The ID of an Azure group.
    IdentityProviderId string
    The ID of your Azure identity provider.
    Id string
    The ID of an Azure group.
    IdentityProviderId string
    The ID of your Azure identity provider.
    id String
    The ID of an Azure group.
    identityProviderId String
    The ID of your Azure identity provider.
    id string
    The ID of an Azure group.
    identityProviderId string
    The ID of your Azure identity provider.
    id str
    The ID of an Azure group.
    identity_provider_id str
    The ID of your Azure identity provider.
    id String
    The ID of an Azure group.
    identityProviderId String
    The ID of your Azure identity provider.

    GetZeroTrustAccessPoliciesResultExcludeCommonName

    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.

    GetZeroTrustAccessPoliciesResultExcludeDevicePosture

    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.

    GetZeroTrustAccessPoliciesResultExcludeEmail

    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.

    GetZeroTrustAccessPoliciesResultExcludeEmailDomain

    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.

    GetZeroTrustAccessPoliciesResultExcludeEmailList

    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.

    GetZeroTrustAccessPoliciesResultExcludeExternalEvaluation

    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.

    GetZeroTrustAccessPoliciesResultExcludeGeo

    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.

    GetZeroTrustAccessPoliciesResultExcludeGithubOrganization

    IdentityProviderId string
    The ID of your Github identity provider.
    Name string
    The name of the organization.
    Team string
    The name of the team
    IdentityProviderId string
    The ID of your Github identity provider.
    Name string
    The name of the organization.
    Team string
    The name of the team
    identityProviderId String
    The ID of your Github identity provider.
    name String
    The name of the organization.
    team String
    The name of the team
    identityProviderId string
    The ID of your Github identity provider.
    name string
    The name of the organization.
    team string
    The name of the team
    identity_provider_id str
    The ID of your Github identity provider.
    name str
    The name of the organization.
    team str
    The name of the team
    identityProviderId String
    The ID of your Github identity provider.
    name String
    The name of the organization.
    team String
    The name of the team

    GetZeroTrustAccessPoliciesResultExcludeGroup

    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.

    GetZeroTrustAccessPoliciesResultExcludeGsuite

    Email string
    The email of the Google Workspace group.
    IdentityProviderId string
    The ID of your Google Workspace identity provider.
    Email string
    The email of the Google Workspace group.
    IdentityProviderId string
    The ID of your Google Workspace identity provider.
    email String
    The email of the Google Workspace group.
    identityProviderId String
    The ID of your Google Workspace identity provider.
    email string
    The email of the Google Workspace group.
    identityProviderId string
    The ID of your Google Workspace identity provider.
    email str
    The email of the Google Workspace group.
    identity_provider_id str
    The ID of your Google Workspace identity provider.
    email String
    The email of the Google Workspace group.
    identityProviderId String
    The ID of your Google Workspace identity provider.

    GetZeroTrustAccessPoliciesResultExcludeIp

    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.

    GetZeroTrustAccessPoliciesResultExcludeIpList

    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.

    GetZeroTrustAccessPoliciesResultExcludeLoginMethod

    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.

    GetZeroTrustAccessPoliciesResultExcludeOkta

    IdentityProviderId string
    The ID of your Okta identity provider.
    Name string
    The name of the Okta group.
    IdentityProviderId string
    The ID of your Okta identity provider.
    Name string
    The name of the Okta group.
    identityProviderId String
    The ID of your Okta identity provider.
    name String
    The name of the Okta group.
    identityProviderId string
    The ID of your Okta identity provider.
    name string
    The name of the Okta group.
    identity_provider_id str
    The ID of your Okta identity provider.
    name str
    The name of the Okta group.
    identityProviderId String
    The ID of your Okta identity provider.
    name String
    The name of the Okta group.

    GetZeroTrustAccessPoliciesResultExcludeSaml

    AttributeName string
    The name of the SAML attribute.
    AttributeValue string
    The SAML attribute value to look for.
    IdentityProviderId string
    The ID of your SAML identity provider.
    AttributeName string
    The name of the SAML attribute.
    AttributeValue string
    The SAML attribute value to look for.
    IdentityProviderId string
    The ID of your SAML identity provider.
    attributeName String
    The name of the SAML attribute.
    attributeValue String
    The SAML attribute value to look for.
    identityProviderId String
    The ID of your SAML identity provider.
    attributeName string
    The name of the SAML attribute.
    attributeValue string
    The SAML attribute value to look for.
    identityProviderId string
    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_id str
    The ID of your SAML identity provider.
    attributeName String
    The name of the SAML attribute.
    attributeValue String
    The SAML attribute value to look for.
    identityProviderId String
    The ID of your SAML identity provider.

    GetZeroTrustAccessPoliciesResultExcludeServiceToken

    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.

    GetZeroTrustAccessPoliciesResultInclude

    AnyValidServiceToken GetZeroTrustAccessPoliciesResultIncludeAnyValidServiceToken
    An empty object which matches on all service tokens.
    AuthContext GetZeroTrustAccessPoliciesResultIncludeAuthContext
    AuthMethod GetZeroTrustAccessPoliciesResultIncludeAuthMethod
    AzureAd GetZeroTrustAccessPoliciesResultIncludeAzureAd
    Certificate GetZeroTrustAccessPoliciesResultIncludeCertificate
    CommonName GetZeroTrustAccessPoliciesResultIncludeCommonName
    DevicePosture GetZeroTrustAccessPoliciesResultIncludeDevicePosture
    Email GetZeroTrustAccessPoliciesResultIncludeEmail
    EmailDomain GetZeroTrustAccessPoliciesResultIncludeEmailDomain
    EmailList GetZeroTrustAccessPoliciesResultIncludeEmailList
    Everyone GetZeroTrustAccessPoliciesResultIncludeEveryone
    An empty object which matches on all users.
    ExternalEvaluation GetZeroTrustAccessPoliciesResultIncludeExternalEvaluation
    Geo GetZeroTrustAccessPoliciesResultIncludeGeo
    GithubOrganization GetZeroTrustAccessPoliciesResultIncludeGithubOrganization
    Group GetZeroTrustAccessPoliciesResultIncludeGroup
    Gsuite GetZeroTrustAccessPoliciesResultIncludeGsuite
    Ip GetZeroTrustAccessPoliciesResultIncludeIp
    IpList GetZeroTrustAccessPoliciesResultIncludeIpList
    LoginMethod GetZeroTrustAccessPoliciesResultIncludeLoginMethod
    Okta GetZeroTrustAccessPoliciesResultIncludeOkta
    Saml GetZeroTrustAccessPoliciesResultIncludeSaml
    ServiceToken GetZeroTrustAccessPoliciesResultIncludeServiceToken
    AnyValidServiceToken GetZeroTrustAccessPoliciesResultIncludeAnyValidServiceToken
    An empty object which matches on all service tokens.
    AuthContext GetZeroTrustAccessPoliciesResultIncludeAuthContext
    AuthMethod GetZeroTrustAccessPoliciesResultIncludeAuthMethod
    AzureAd GetZeroTrustAccessPoliciesResultIncludeAzureAd
    Certificate GetZeroTrustAccessPoliciesResultIncludeCertificate
    CommonName GetZeroTrustAccessPoliciesResultIncludeCommonName
    DevicePosture GetZeroTrustAccessPoliciesResultIncludeDevicePosture
    Email GetZeroTrustAccessPoliciesResultIncludeEmail
    EmailDomain GetZeroTrustAccessPoliciesResultIncludeEmailDomain
    EmailList GetZeroTrustAccessPoliciesResultIncludeEmailList
    Everyone GetZeroTrustAccessPoliciesResultIncludeEveryone
    An empty object which matches on all users.
    ExternalEvaluation GetZeroTrustAccessPoliciesResultIncludeExternalEvaluation
    Geo GetZeroTrustAccessPoliciesResultIncludeGeo
    GithubOrganization GetZeroTrustAccessPoliciesResultIncludeGithubOrganization
    Group GetZeroTrustAccessPoliciesResultIncludeGroup
    Gsuite GetZeroTrustAccessPoliciesResultIncludeGsuite
    Ip GetZeroTrustAccessPoliciesResultIncludeIp
    IpList GetZeroTrustAccessPoliciesResultIncludeIpList
    LoginMethod GetZeroTrustAccessPoliciesResultIncludeLoginMethod
    Okta GetZeroTrustAccessPoliciesResultIncludeOkta
    Saml GetZeroTrustAccessPoliciesResultIncludeSaml
    ServiceToken GetZeroTrustAccessPoliciesResultIncludeServiceToken
    anyValidServiceToken GetZeroTrustAccessPoliciesResultIncludeAnyValidServiceToken
    An empty object which matches on all service tokens.
    authContext GetZeroTrustAccessPoliciesResultIncludeAuthContext
    authMethod GetZeroTrustAccessPoliciesResultIncludeAuthMethod
    azureAd GetZeroTrustAccessPoliciesResultIncludeAzureAd
    certificate GetZeroTrustAccessPoliciesResultIncludeCertificate
    commonName GetZeroTrustAccessPoliciesResultIncludeCommonName
    devicePosture GetZeroTrustAccessPoliciesResultIncludeDevicePosture
    email GetZeroTrustAccessPoliciesResultIncludeEmail
    emailDomain GetZeroTrustAccessPoliciesResultIncludeEmailDomain
    emailList GetZeroTrustAccessPoliciesResultIncludeEmailList
    everyone GetZeroTrustAccessPoliciesResultIncludeEveryone
    An empty object which matches on all users.
    externalEvaluation GetZeroTrustAccessPoliciesResultIncludeExternalEvaluation
    geo GetZeroTrustAccessPoliciesResultIncludeGeo
    githubOrganization GetZeroTrustAccessPoliciesResultIncludeGithubOrganization
    group GetZeroTrustAccessPoliciesResultIncludeGroup
    gsuite GetZeroTrustAccessPoliciesResultIncludeGsuite
    ip GetZeroTrustAccessPoliciesResultIncludeIp
    ipList GetZeroTrustAccessPoliciesResultIncludeIpList
    loginMethod GetZeroTrustAccessPoliciesResultIncludeLoginMethod
    okta GetZeroTrustAccessPoliciesResultIncludeOkta
    saml GetZeroTrustAccessPoliciesResultIncludeSaml
    serviceToken GetZeroTrustAccessPoliciesResultIncludeServiceToken
    anyValidServiceToken GetZeroTrustAccessPoliciesResultIncludeAnyValidServiceToken
    An empty object which matches on all service tokens.
    authContext GetZeroTrustAccessPoliciesResultIncludeAuthContext
    authMethod GetZeroTrustAccessPoliciesResultIncludeAuthMethod
    azureAd GetZeroTrustAccessPoliciesResultIncludeAzureAd
    certificate GetZeroTrustAccessPoliciesResultIncludeCertificate
    commonName GetZeroTrustAccessPoliciesResultIncludeCommonName
    devicePosture GetZeroTrustAccessPoliciesResultIncludeDevicePosture
    email GetZeroTrustAccessPoliciesResultIncludeEmail
    emailDomain GetZeroTrustAccessPoliciesResultIncludeEmailDomain
    emailList GetZeroTrustAccessPoliciesResultIncludeEmailList
    everyone GetZeroTrustAccessPoliciesResultIncludeEveryone
    An empty object which matches on all users.
    externalEvaluation GetZeroTrustAccessPoliciesResultIncludeExternalEvaluation
    geo GetZeroTrustAccessPoliciesResultIncludeGeo
    githubOrganization GetZeroTrustAccessPoliciesResultIncludeGithubOrganization
    group GetZeroTrustAccessPoliciesResultIncludeGroup
    gsuite GetZeroTrustAccessPoliciesResultIncludeGsuite
    ip GetZeroTrustAccessPoliciesResultIncludeIp
    ipList GetZeroTrustAccessPoliciesResultIncludeIpList
    loginMethod GetZeroTrustAccessPoliciesResultIncludeLoginMethod
    okta GetZeroTrustAccessPoliciesResultIncludeOkta
    saml GetZeroTrustAccessPoliciesResultIncludeSaml
    serviceToken GetZeroTrustAccessPoliciesResultIncludeServiceToken
    any_valid_service_token GetZeroTrustAccessPoliciesResultIncludeAnyValidServiceToken
    An empty object which matches on all service tokens.
    auth_context GetZeroTrustAccessPoliciesResultIncludeAuthContext
    auth_method GetZeroTrustAccessPoliciesResultIncludeAuthMethod
    azure_ad GetZeroTrustAccessPoliciesResultIncludeAzureAd
    certificate GetZeroTrustAccessPoliciesResultIncludeCertificate
    common_name GetZeroTrustAccessPoliciesResultIncludeCommonName
    device_posture GetZeroTrustAccessPoliciesResultIncludeDevicePosture
    email GetZeroTrustAccessPoliciesResultIncludeEmail
    email_domain GetZeroTrustAccessPoliciesResultIncludeEmailDomain
    email_list GetZeroTrustAccessPoliciesResultIncludeEmailList
    everyone GetZeroTrustAccessPoliciesResultIncludeEveryone
    An empty object which matches on all users.
    external_evaluation GetZeroTrustAccessPoliciesResultIncludeExternalEvaluation
    geo GetZeroTrustAccessPoliciesResultIncludeGeo
    github_organization GetZeroTrustAccessPoliciesResultIncludeGithubOrganization
    group GetZeroTrustAccessPoliciesResultIncludeGroup
    gsuite GetZeroTrustAccessPoliciesResultIncludeGsuite
    ip GetZeroTrustAccessPoliciesResultIncludeIp
    ip_list GetZeroTrustAccessPoliciesResultIncludeIpList
    login_method GetZeroTrustAccessPoliciesResultIncludeLoginMethod
    okta GetZeroTrustAccessPoliciesResultIncludeOkta
    saml GetZeroTrustAccessPoliciesResultIncludeSaml
    service_token GetZeroTrustAccessPoliciesResultIncludeServiceToken

    GetZeroTrustAccessPoliciesResultIncludeAuthContext

    AcId string
    The ACID of an Authentication context.
    Id string
    The ID of an Authentication context.
    IdentityProviderId string
    The ID of your Azure identity provider.
    AcId string
    The ACID of an Authentication context.
    Id string
    The ID of an Authentication context.
    IdentityProviderId string
    The ID of your Azure identity provider.
    acId String
    The ACID of an Authentication context.
    id String
    The ID of an Authentication context.
    identityProviderId String
    The ID of your Azure identity provider.
    acId string
    The ACID of an Authentication context.
    id string
    The ID of an Authentication context.
    identityProviderId string
    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_id str
    The ID of your Azure identity provider.
    acId String
    The ACID of an Authentication context.
    id String
    The ID of an Authentication context.
    identityProviderId String
    The ID of your Azure identity provider.

    GetZeroTrustAccessPoliciesResultIncludeAuthMethod

    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.

    GetZeroTrustAccessPoliciesResultIncludeAzureAd

    Id string
    The ID of an Azure group.
    IdentityProviderId string
    The ID of your Azure identity provider.
    Id string
    The ID of an Azure group.
    IdentityProviderId string
    The ID of your Azure identity provider.
    id String
    The ID of an Azure group.
    identityProviderId String
    The ID of your Azure identity provider.
    id string
    The ID of an Azure group.
    identityProviderId string
    The ID of your Azure identity provider.
    id str
    The ID of an Azure group.
    identity_provider_id str
    The ID of your Azure identity provider.
    id String
    The ID of an Azure group.
    identityProviderId String
    The ID of your Azure identity provider.

    GetZeroTrustAccessPoliciesResultIncludeCommonName

    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.

    GetZeroTrustAccessPoliciesResultIncludeDevicePosture

    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.

    GetZeroTrustAccessPoliciesResultIncludeEmail

    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.

    GetZeroTrustAccessPoliciesResultIncludeEmailDomain

    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.

    GetZeroTrustAccessPoliciesResultIncludeEmailList

    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.

    GetZeroTrustAccessPoliciesResultIncludeExternalEvaluation

    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.

    GetZeroTrustAccessPoliciesResultIncludeGeo

    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.

    GetZeroTrustAccessPoliciesResultIncludeGithubOrganization

    IdentityProviderId string
    The ID of your Github identity provider.
    Name string
    The name of the organization.
    Team string
    The name of the team
    IdentityProviderId string
    The ID of your Github identity provider.
    Name string
    The name of the organization.
    Team string
    The name of the team
    identityProviderId String
    The ID of your Github identity provider.
    name String
    The name of the organization.
    team String
    The name of the team
    identityProviderId string
    The ID of your Github identity provider.
    name string
    The name of the organization.
    team string
    The name of the team
    identity_provider_id str
    The ID of your Github identity provider.
    name str
    The name of the organization.
    team str
    The name of the team
    identityProviderId String
    The ID of your Github identity provider.
    name String
    The name of the organization.
    team String
    The name of the team

    GetZeroTrustAccessPoliciesResultIncludeGroup

    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.

    GetZeroTrustAccessPoliciesResultIncludeGsuite

    Email string
    The email of the Google Workspace group.
    IdentityProviderId string
    The ID of your Google Workspace identity provider.
    Email string
    The email of the Google Workspace group.
    IdentityProviderId string
    The ID of your Google Workspace identity provider.
    email String
    The email of the Google Workspace group.
    identityProviderId String
    The ID of your Google Workspace identity provider.
    email string
    The email of the Google Workspace group.
    identityProviderId string
    The ID of your Google Workspace identity provider.
    email str
    The email of the Google Workspace group.
    identity_provider_id str
    The ID of your Google Workspace identity provider.
    email String
    The email of the Google Workspace group.
    identityProviderId String
    The ID of your Google Workspace identity provider.

    GetZeroTrustAccessPoliciesResultIncludeIp

    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.

    GetZeroTrustAccessPoliciesResultIncludeIpList

    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.

    GetZeroTrustAccessPoliciesResultIncludeLoginMethod

    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.

    GetZeroTrustAccessPoliciesResultIncludeOkta

    IdentityProviderId string
    The ID of your Okta identity provider.
    Name string
    The name of the Okta group.
    IdentityProviderId string
    The ID of your Okta identity provider.
    Name string
    The name of the Okta group.
    identityProviderId String
    The ID of your Okta identity provider.
    name String
    The name of the Okta group.
    identityProviderId string
    The ID of your Okta identity provider.
    name string
    The name of the Okta group.
    identity_provider_id str
    The ID of your Okta identity provider.
    name str
    The name of the Okta group.
    identityProviderId String
    The ID of your Okta identity provider.
    name String
    The name of the Okta group.

    GetZeroTrustAccessPoliciesResultIncludeSaml

    AttributeName string
    The name of the SAML attribute.
    AttributeValue string
    The SAML attribute value to look for.
    IdentityProviderId string
    The ID of your SAML identity provider.
    AttributeName string
    The name of the SAML attribute.
    AttributeValue string
    The SAML attribute value to look for.
    IdentityProviderId string
    The ID of your SAML identity provider.
    attributeName String
    The name of the SAML attribute.
    attributeValue String
    The SAML attribute value to look for.
    identityProviderId String
    The ID of your SAML identity provider.
    attributeName string
    The name of the SAML attribute.
    attributeValue string
    The SAML attribute value to look for.
    identityProviderId string
    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_id str
    The ID of your SAML identity provider.
    attributeName String
    The name of the SAML attribute.
    attributeValue String
    The SAML attribute value to look for.
    identityProviderId String
    The ID of your SAML identity provider.

    GetZeroTrustAccessPoliciesResultIncludeServiceToken

    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.

    GetZeroTrustAccessPoliciesResultRequire

    AnyValidServiceToken GetZeroTrustAccessPoliciesResultRequireAnyValidServiceToken
    An empty object which matches on all service tokens.
    AuthContext GetZeroTrustAccessPoliciesResultRequireAuthContext
    AuthMethod GetZeroTrustAccessPoliciesResultRequireAuthMethod
    AzureAd GetZeroTrustAccessPoliciesResultRequireAzureAd
    Certificate GetZeroTrustAccessPoliciesResultRequireCertificate
    CommonName GetZeroTrustAccessPoliciesResultRequireCommonName
    DevicePosture GetZeroTrustAccessPoliciesResultRequireDevicePosture
    Email GetZeroTrustAccessPoliciesResultRequireEmail
    EmailDomain GetZeroTrustAccessPoliciesResultRequireEmailDomain
    EmailList GetZeroTrustAccessPoliciesResultRequireEmailList
    Everyone GetZeroTrustAccessPoliciesResultRequireEveryone
    An empty object which matches on all users.
    ExternalEvaluation GetZeroTrustAccessPoliciesResultRequireExternalEvaluation
    Geo GetZeroTrustAccessPoliciesResultRequireGeo
    GithubOrganization GetZeroTrustAccessPoliciesResultRequireGithubOrganization
    Group GetZeroTrustAccessPoliciesResultRequireGroup
    Gsuite GetZeroTrustAccessPoliciesResultRequireGsuite
    Ip GetZeroTrustAccessPoliciesResultRequireIp
    IpList GetZeroTrustAccessPoliciesResultRequireIpList
    LoginMethod GetZeroTrustAccessPoliciesResultRequireLoginMethod
    Okta GetZeroTrustAccessPoliciesResultRequireOkta
    Saml GetZeroTrustAccessPoliciesResultRequireSaml
    ServiceToken GetZeroTrustAccessPoliciesResultRequireServiceToken
    AnyValidServiceToken GetZeroTrustAccessPoliciesResultRequireAnyValidServiceToken
    An empty object which matches on all service tokens.
    AuthContext GetZeroTrustAccessPoliciesResultRequireAuthContext
    AuthMethod GetZeroTrustAccessPoliciesResultRequireAuthMethod
    AzureAd GetZeroTrustAccessPoliciesResultRequireAzureAd
    Certificate GetZeroTrustAccessPoliciesResultRequireCertificate
    CommonName GetZeroTrustAccessPoliciesResultRequireCommonName
    DevicePosture GetZeroTrustAccessPoliciesResultRequireDevicePosture
    Email GetZeroTrustAccessPoliciesResultRequireEmail
    EmailDomain GetZeroTrustAccessPoliciesResultRequireEmailDomain
    EmailList GetZeroTrustAccessPoliciesResultRequireEmailList
    Everyone GetZeroTrustAccessPoliciesResultRequireEveryone
    An empty object which matches on all users.
    ExternalEvaluation GetZeroTrustAccessPoliciesResultRequireExternalEvaluation
    Geo GetZeroTrustAccessPoliciesResultRequireGeo
    GithubOrganization GetZeroTrustAccessPoliciesResultRequireGithubOrganization
    Group GetZeroTrustAccessPoliciesResultRequireGroup
    Gsuite GetZeroTrustAccessPoliciesResultRequireGsuite
    Ip GetZeroTrustAccessPoliciesResultRequireIp
    IpList GetZeroTrustAccessPoliciesResultRequireIpList
    LoginMethod GetZeroTrustAccessPoliciesResultRequireLoginMethod
    Okta GetZeroTrustAccessPoliciesResultRequireOkta
    Saml GetZeroTrustAccessPoliciesResultRequireSaml
    ServiceToken GetZeroTrustAccessPoliciesResultRequireServiceToken
    anyValidServiceToken GetZeroTrustAccessPoliciesResultRequireAnyValidServiceToken
    An empty object which matches on all service tokens.
    authContext GetZeroTrustAccessPoliciesResultRequireAuthContext
    authMethod GetZeroTrustAccessPoliciesResultRequireAuthMethod
    azureAd GetZeroTrustAccessPoliciesResultRequireAzureAd
    certificate GetZeroTrustAccessPoliciesResultRequireCertificate
    commonName GetZeroTrustAccessPoliciesResultRequireCommonName
    devicePosture GetZeroTrustAccessPoliciesResultRequireDevicePosture
    email GetZeroTrustAccessPoliciesResultRequireEmail
    emailDomain GetZeroTrustAccessPoliciesResultRequireEmailDomain
    emailList GetZeroTrustAccessPoliciesResultRequireEmailList
    everyone GetZeroTrustAccessPoliciesResultRequireEveryone
    An empty object which matches on all users.
    externalEvaluation GetZeroTrustAccessPoliciesResultRequireExternalEvaluation
    geo GetZeroTrustAccessPoliciesResultRequireGeo
    githubOrganization GetZeroTrustAccessPoliciesResultRequireGithubOrganization
    group GetZeroTrustAccessPoliciesResultRequireGroup
    gsuite GetZeroTrustAccessPoliciesResultRequireGsuite
    ip GetZeroTrustAccessPoliciesResultRequireIp
    ipList GetZeroTrustAccessPoliciesResultRequireIpList
    loginMethod GetZeroTrustAccessPoliciesResultRequireLoginMethod
    okta GetZeroTrustAccessPoliciesResultRequireOkta
    saml GetZeroTrustAccessPoliciesResultRequireSaml
    serviceToken GetZeroTrustAccessPoliciesResultRequireServiceToken
    anyValidServiceToken GetZeroTrustAccessPoliciesResultRequireAnyValidServiceToken
    An empty object which matches on all service tokens.
    authContext GetZeroTrustAccessPoliciesResultRequireAuthContext
    authMethod GetZeroTrustAccessPoliciesResultRequireAuthMethod
    azureAd GetZeroTrustAccessPoliciesResultRequireAzureAd
    certificate GetZeroTrustAccessPoliciesResultRequireCertificate
    commonName GetZeroTrustAccessPoliciesResultRequireCommonName
    devicePosture GetZeroTrustAccessPoliciesResultRequireDevicePosture
    email GetZeroTrustAccessPoliciesResultRequireEmail
    emailDomain GetZeroTrustAccessPoliciesResultRequireEmailDomain
    emailList GetZeroTrustAccessPoliciesResultRequireEmailList
    everyone GetZeroTrustAccessPoliciesResultRequireEveryone
    An empty object which matches on all users.
    externalEvaluation GetZeroTrustAccessPoliciesResultRequireExternalEvaluation
    geo GetZeroTrustAccessPoliciesResultRequireGeo
    githubOrganization GetZeroTrustAccessPoliciesResultRequireGithubOrganization
    group GetZeroTrustAccessPoliciesResultRequireGroup
    gsuite GetZeroTrustAccessPoliciesResultRequireGsuite
    ip GetZeroTrustAccessPoliciesResultRequireIp
    ipList GetZeroTrustAccessPoliciesResultRequireIpList
    loginMethod GetZeroTrustAccessPoliciesResultRequireLoginMethod
    okta GetZeroTrustAccessPoliciesResultRequireOkta
    saml GetZeroTrustAccessPoliciesResultRequireSaml
    serviceToken GetZeroTrustAccessPoliciesResultRequireServiceToken
    any_valid_service_token GetZeroTrustAccessPoliciesResultRequireAnyValidServiceToken
    An empty object which matches on all service tokens.
    auth_context GetZeroTrustAccessPoliciesResultRequireAuthContext
    auth_method GetZeroTrustAccessPoliciesResultRequireAuthMethod
    azure_ad GetZeroTrustAccessPoliciesResultRequireAzureAd
    certificate GetZeroTrustAccessPoliciesResultRequireCertificate
    common_name GetZeroTrustAccessPoliciesResultRequireCommonName
    device_posture GetZeroTrustAccessPoliciesResultRequireDevicePosture
    email GetZeroTrustAccessPoliciesResultRequireEmail
    email_domain GetZeroTrustAccessPoliciesResultRequireEmailDomain
    email_list GetZeroTrustAccessPoliciesResultRequireEmailList
    everyone GetZeroTrustAccessPoliciesResultRequireEveryone
    An empty object which matches on all users.
    external_evaluation GetZeroTrustAccessPoliciesResultRequireExternalEvaluation
    geo GetZeroTrustAccessPoliciesResultRequireGeo
    github_organization GetZeroTrustAccessPoliciesResultRequireGithubOrganization
    group GetZeroTrustAccessPoliciesResultRequireGroup
    gsuite GetZeroTrustAccessPoliciesResultRequireGsuite
    ip GetZeroTrustAccessPoliciesResultRequireIp
    ip_list GetZeroTrustAccessPoliciesResultRequireIpList
    login_method GetZeroTrustAccessPoliciesResultRequireLoginMethod
    okta GetZeroTrustAccessPoliciesResultRequireOkta
    saml GetZeroTrustAccessPoliciesResultRequireSaml
    service_token GetZeroTrustAccessPoliciesResultRequireServiceToken

    GetZeroTrustAccessPoliciesResultRequireAuthContext

    AcId string
    The ACID of an Authentication context.
    Id string
    The ID of an Authentication context.
    IdentityProviderId string
    The ID of your Azure identity provider.
    AcId string
    The ACID of an Authentication context.
    Id string
    The ID of an Authentication context.
    IdentityProviderId string
    The ID of your Azure identity provider.
    acId String
    The ACID of an Authentication context.
    id String
    The ID of an Authentication context.
    identityProviderId String
    The ID of your Azure identity provider.
    acId string
    The ACID of an Authentication context.
    id string
    The ID of an Authentication context.
    identityProviderId string
    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_id str
    The ID of your Azure identity provider.
    acId String
    The ACID of an Authentication context.
    id String
    The ID of an Authentication context.
    identityProviderId String
    The ID of your Azure identity provider.

    GetZeroTrustAccessPoliciesResultRequireAuthMethod

    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.

    GetZeroTrustAccessPoliciesResultRequireAzureAd

    Id string
    The ID of an Azure group.
    IdentityProviderId string
    The ID of your Azure identity provider.
    Id string
    The ID of an Azure group.
    IdentityProviderId string
    The ID of your Azure identity provider.
    id String
    The ID of an Azure group.
    identityProviderId String
    The ID of your Azure identity provider.
    id string
    The ID of an Azure group.
    identityProviderId string
    The ID of your Azure identity provider.
    id str
    The ID of an Azure group.
    identity_provider_id str
    The ID of your Azure identity provider.
    id String
    The ID of an Azure group.
    identityProviderId String
    The ID of your Azure identity provider.

    GetZeroTrustAccessPoliciesResultRequireCommonName

    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.

    GetZeroTrustAccessPoliciesResultRequireDevicePosture

    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.

    GetZeroTrustAccessPoliciesResultRequireEmail

    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.

    GetZeroTrustAccessPoliciesResultRequireEmailDomain

    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.

    GetZeroTrustAccessPoliciesResultRequireEmailList

    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.

    GetZeroTrustAccessPoliciesResultRequireExternalEvaluation

    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.

    GetZeroTrustAccessPoliciesResultRequireGeo

    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.

    GetZeroTrustAccessPoliciesResultRequireGithubOrganization

    IdentityProviderId string
    The ID of your Github identity provider.
    Name string
    The name of the organization.
    Team string
    The name of the team
    IdentityProviderId string
    The ID of your Github identity provider.
    Name string
    The name of the organization.
    Team string
    The name of the team
    identityProviderId String
    The ID of your Github identity provider.
    name String
    The name of the organization.
    team String
    The name of the team
    identityProviderId string
    The ID of your Github identity provider.
    name string
    The name of the organization.
    team string
    The name of the team
    identity_provider_id str
    The ID of your Github identity provider.
    name str
    The name of the organization.
    team str
    The name of the team
    identityProviderId String
    The ID of your Github identity provider.
    name String
    The name of the organization.
    team String
    The name of the team

    GetZeroTrustAccessPoliciesResultRequireGroup

    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.

    GetZeroTrustAccessPoliciesResultRequireGsuite

    Email string
    The email of the Google Workspace group.
    IdentityProviderId string
    The ID of your Google Workspace identity provider.
    Email string
    The email of the Google Workspace group.
    IdentityProviderId string
    The ID of your Google Workspace identity provider.
    email String
    The email of the Google Workspace group.
    identityProviderId String
    The ID of your Google Workspace identity provider.
    email string
    The email of the Google Workspace group.
    identityProviderId string
    The ID of your Google Workspace identity provider.
    email str
    The email of the Google Workspace group.
    identity_provider_id str
    The ID of your Google Workspace identity provider.
    email String
    The email of the Google Workspace group.
    identityProviderId String
    The ID of your Google Workspace identity provider.

    GetZeroTrustAccessPoliciesResultRequireIp

    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.

    GetZeroTrustAccessPoliciesResultRequireIpList

    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.

    GetZeroTrustAccessPoliciesResultRequireLoginMethod

    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.

    GetZeroTrustAccessPoliciesResultRequireOkta

    IdentityProviderId string
    The ID of your Okta identity provider.
    Name string
    The name of the Okta group.
    IdentityProviderId string
    The ID of your Okta identity provider.
    Name string
    The name of the Okta group.
    identityProviderId String
    The ID of your Okta identity provider.
    name String
    The name of the Okta group.
    identityProviderId string
    The ID of your Okta identity provider.
    name string
    The name of the Okta group.
    identity_provider_id str
    The ID of your Okta identity provider.
    name str
    The name of the Okta group.
    identityProviderId String
    The ID of your Okta identity provider.
    name String
    The name of the Okta group.

    GetZeroTrustAccessPoliciesResultRequireSaml

    AttributeName string
    The name of the SAML attribute.
    AttributeValue string
    The SAML attribute value to look for.
    IdentityProviderId string
    The ID of your SAML identity provider.
    AttributeName string
    The name of the SAML attribute.
    AttributeValue string
    The SAML attribute value to look for.
    IdentityProviderId string
    The ID of your SAML identity provider.
    attributeName String
    The name of the SAML attribute.
    attributeValue String
    The SAML attribute value to look for.
    identityProviderId String
    The ID of your SAML identity provider.
    attributeName string
    The name of the SAML attribute.
    attributeValue string
    The SAML attribute value to look for.
    identityProviderId string
    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_id str
    The ID of your SAML identity provider.
    attributeName String
    The name of the SAML attribute.
    attributeValue String
    The SAML attribute value to look for.
    identityProviderId String
    The ID of your SAML identity provider.

    GetZeroTrustAccessPoliciesResultRequireServiceToken

    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 cloudflare Terraform Provider.
    cloudflare logo
    Cloudflare v6.1.2 published on Monday, Apr 28, 2025 by Pulumi