Viewing docs for Auth0 v3.44.0
published on Sunday, May 24, 2026 by Pulumi
published on Sunday, May 24, 2026 by Pulumi
Viewing docs for Auth0 v3.44.0
published on Sunday, May 24, 2026 by Pulumi
published on Sunday, May 24, 2026 by Pulumi
Data source to retrieve a specific Auth0 organization by organizationId or name.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as auth0 from "@pulumi/auth0";
// An Auth0 Organization loaded using its name.
const some_organization_by_name = auth0.getOrganization({
name: "my-org",
});
// An Auth0 Organization loaded using its ID.
const some_organization_by_id = auth0.getOrganization({
organizationId: "org_abcdefghkijklmnopqrstuvwxyz0123456789",
});
import pulumi
import pulumi_auth0 as auth0
# An Auth0 Organization loaded using its name.
some_organization_by_name = auth0.get_organization(name="my-org")
# An Auth0 Organization loaded using its ID.
some_organization_by_id = auth0.get_organization(organization_id="org_abcdefghkijklmnopqrstuvwxyz0123456789")
package main
import (
"github.com/pulumi/pulumi-auth0/sdk/v3/go/auth0"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// An Auth0 Organization loaded using its name.
_, err := auth0.GetOrganization(ctx, &auth0.LookupOrganizationArgs{
Name: pulumi.StringRef("my-org"),
}, nil)
if err != nil {
return err
}
// An Auth0 Organization loaded using its ID.
_, err = auth0.GetOrganization(ctx, &auth0.LookupOrganizationArgs{
OrganizationId: pulumi.StringRef("org_abcdefghkijklmnopqrstuvwxyz0123456789"),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Auth0 = Pulumi.Auth0;
return await Deployment.RunAsync(() =>
{
// An Auth0 Organization loaded using its name.
var some_organization_by_name = Auth0.GetOrganization.Invoke(new()
{
Name = "my-org",
});
// An Auth0 Organization loaded using its ID.
var some_organization_by_id = Auth0.GetOrganization.Invoke(new()
{
OrganizationId = "org_abcdefghkijklmnopqrstuvwxyz0123456789",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.auth0.Auth0Functions;
import com.pulumi.auth0.inputs.GetOrganizationArgs;
import java.util.ArrayList;
import java.util.Arrays;
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) {
// An Auth0 Organization loaded using its name.
final var some-organization-by-name = Auth0Functions.getOrganization(GetOrganizationArgs.builder()
.name("my-org")
.build());
// An Auth0 Organization loaded using its ID.
final var some-organization-by-id = Auth0Functions.getOrganization(GetOrganizationArgs.builder()
.organizationId("org_abcdefghkijklmnopqrstuvwxyz0123456789")
.build());
}
}
variables:
# An Auth0 Organization loaded using its name.
some-organization-by-name:
fn::invoke:
function: auth0:getOrganization
arguments:
name: my-org
# An Auth0 Organization loaded using its ID.
some-organization-by-id:
fn::invoke:
function: auth0:getOrganization
arguments:
organizationId: org_abcdefghkijklmnopqrstuvwxyz0123456789
pulumi {
required_providers {
auth0 = {
source = "pulumi/auth0"
}
}
}
data "auth0_getorganization" "some-organization-by-name" {
name = "my-org"
}
data "auth0_getorganization" "some-organization-by-id" {
organization_id = "org_abcdefghkijklmnopqrstuvwxyz0123456789"
}
# An Auth0 Organization loaded using its name.
# An Auth0 Organization loaded using its ID.
Using getOrganization
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 getOrganization(args: GetOrganizationArgs, opts?: InvokeOptions): Promise<GetOrganizationResult>
function getOrganizationOutput(args: GetOrganizationOutputArgs, opts?: InvokeOptions): Output<GetOrganizationResult>def get_organization(name: Optional[str] = None,
organization_id: Optional[str] = None,
skip_client_grants: Optional[bool] = None,
skip_connections: Optional[bool] = None,
skip_members: Optional[bool] = None,
opts: Optional[InvokeOptions] = None) -> GetOrganizationResult
def get_organization_output(name: pulumi.Input[Optional[str]] = None,
organization_id: pulumi.Input[Optional[str]] = None,
skip_client_grants: pulumi.Input[Optional[bool]] = None,
skip_connections: pulumi.Input[Optional[bool]] = None,
skip_members: pulumi.Input[Optional[bool]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetOrganizationResult]func LookupOrganization(ctx *Context, args *LookupOrganizationArgs, opts ...InvokeOption) (*LookupOrganizationResult, error)
func LookupOrganizationOutput(ctx *Context, args *LookupOrganizationOutputArgs, opts ...InvokeOption) LookupOrganizationResultOutput> Note: This function is named LookupOrganization in the Go SDK.
public static class GetOrganization
{
public static Task<GetOrganizationResult> InvokeAsync(GetOrganizationArgs args, InvokeOptions? opts = null)
public static Output<GetOrganizationResult> Invoke(GetOrganizationInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetOrganizationResult> getOrganization(GetOrganizationArgs args, InvokeOptions options)
public static Output<GetOrganizationResult> getOrganization(GetOrganizationArgs args, InvokeOptions options)
fn::invoke:
function: auth0:index/getOrganization:getOrganization
arguments:
# arguments dictionarydata "auth0_getorganization" "name" {
# arguments
}The following arguments are supported:
- Name string
- The name of the organization. If not provided,
organizationIdmust be set. For performance, it is advised to use theorganizationIdas a lookup if possible. - Organization
Id string - The ID of the organization. If not provided,
namemust be set. - Skip
Client boolGrants - Whether to skip organization client grants. Setting this to
truewill skip API call to /api/v2/organizations/{id}/client-grants. - Skip
Connections bool - Whether to skip organization connections. Setting this to
truewill skip paginated API calls to /api/v2/organizations/{id}/connections. - Skip
Members bool - Whether to skip organization members. Setting this to
truewill skip paginated API calls to /api/v2/organizations/{id}/members.
- Name string
- The name of the organization. If not provided,
organizationIdmust be set. For performance, it is advised to use theorganizationIdas a lookup if possible. - Organization
Id string - The ID of the organization. If not provided,
namemust be set. - Skip
Client boolGrants - Whether to skip organization client grants. Setting this to
truewill skip API call to /api/v2/organizations/{id}/client-grants. - Skip
Connections bool - Whether to skip organization connections. Setting this to
truewill skip paginated API calls to /api/v2/organizations/{id}/connections. - Skip
Members bool - Whether to skip organization members. Setting this to
truewill skip paginated API calls to /api/v2/organizations/{id}/members.
- name string
- The name of the organization. If not provided,
organizationIdmust be set. For performance, it is advised to use theorganizationIdas a lookup if possible. - organization_
id string - The ID of the organization. If not provided,
namemust be set. - skip_
client_ boolgrants - Whether to skip organization client grants. Setting this to
truewill skip API call to /api/v2/organizations/{id}/client-grants. - skip_
connections bool - Whether to skip organization connections. Setting this to
truewill skip paginated API calls to /api/v2/organizations/{id}/connections. - skip_
members bool - Whether to skip organization members. Setting this to
truewill skip paginated API calls to /api/v2/organizations/{id}/members.
- name String
- The name of the organization. If not provided,
organizationIdmust be set. For performance, it is advised to use theorganizationIdas a lookup if possible. - organization
Id String - The ID of the organization. If not provided,
namemust be set. - skip
Client BooleanGrants - Whether to skip organization client grants. Setting this to
truewill skip API call to /api/v2/organizations/{id}/client-grants. - skip
Connections Boolean - Whether to skip organization connections. Setting this to
truewill skip paginated API calls to /api/v2/organizations/{id}/connections. - skip
Members Boolean - Whether to skip organization members. Setting this to
truewill skip paginated API calls to /api/v2/organizations/{id}/members.
- name string
- The name of the organization. If not provided,
organizationIdmust be set. For performance, it is advised to use theorganizationIdas a lookup if possible. - organization
Id string - The ID of the organization. If not provided,
namemust be set. - skip
Client booleanGrants - Whether to skip organization client grants. Setting this to
truewill skip API call to /api/v2/organizations/{id}/client-grants. - skip
Connections boolean - Whether to skip organization connections. Setting this to
truewill skip paginated API calls to /api/v2/organizations/{id}/connections. - skip
Members boolean - Whether to skip organization members. Setting this to
truewill skip paginated API calls to /api/v2/organizations/{id}/members.
- name str
- The name of the organization. If not provided,
organizationIdmust be set. For performance, it is advised to use theorganizationIdas a lookup if possible. - organization_
id str - The ID of the organization. If not provided,
namemust be set. - skip_
client_ boolgrants - Whether to skip organization client grants. Setting this to
truewill skip API call to /api/v2/organizations/{id}/client-grants. - skip_
connections bool - Whether to skip organization connections. Setting this to
truewill skip paginated API calls to /api/v2/organizations/{id}/connections. - skip_
members bool - Whether to skip organization members. Setting this to
truewill skip paginated API calls to /api/v2/organizations/{id}/members.
- name String
- The name of the organization. If not provided,
organizationIdmust be set. For performance, it is advised to use theorganizationIdas a lookup if possible. - organization
Id String - The ID of the organization. If not provided,
namemust be set. - skip
Client BooleanGrants - Whether to skip organization client grants. Setting this to
truewill skip API call to /api/v2/organizations/{id}/client-grants. - skip
Connections Boolean - Whether to skip organization connections. Setting this to
truewill skip paginated API calls to /api/v2/organizations/{id}/connections. - skip
Members Boolean - Whether to skip organization members. Setting this to
truewill skip paginated API calls to /api/v2/organizations/{id}/members.
getOrganization Result
The following output properties are available:
- Brandings
List<Get
Organization Branding> - Defines how to style the login pages.
- Client
Grants List<string> - Client Grant ID(s) that are associated to the organization. Skips populating if
skipClientGrantsistrue. - Connections
List<Get
Organization Connection> - Connections enabled for this organization. Skips populating if
skipConnectionsistrue. - Display
Name string - Friendly name of this organization.
- Id string
- The provider-assigned unique ID for this managed resource.
- Members List<string>
- User ID(s) that are members of the organization. Skips populating if
skipMembersistrue. - Metadata Dictionary<string, string>
- Metadata associated with the organization. Maximum of 10 metadata properties allowed.
- Token
Quotas List<GetOrganization Token Quota> - The token quota configuration.
- Name string
- The name of the organization. If not provided,
organizationIdmust be set. For performance, it is advised to use theorganizationIdas a lookup if possible. - Organization
Id string - The ID of the organization. If not provided,
namemust be set. - Skip
Client boolGrants - Whether to skip organization client grants. Setting this to
truewill skip API call to /api/v2/organizations/{id}/client-grants. - Skip
Connections bool - Whether to skip organization connections. Setting this to
truewill skip paginated API calls to /api/v2/organizations/{id}/connections. - Skip
Members bool - Whether to skip organization members. Setting this to
truewill skip paginated API calls to /api/v2/organizations/{id}/members.
- Brandings
[]Get
Organization Branding - Defines how to style the login pages.
- Client
Grants []string - Client Grant ID(s) that are associated to the organization. Skips populating if
skipClientGrantsistrue. - Connections
[]Get
Organization Connection Type - Connections enabled for this organization. Skips populating if
skipConnectionsistrue. - Display
Name string - Friendly name of this organization.
- Id string
- The provider-assigned unique ID for this managed resource.
- Members []string
- User ID(s) that are members of the organization. Skips populating if
skipMembersistrue. - Metadata map[string]string
- Metadata associated with the organization. Maximum of 10 metadata properties allowed.
- Token
Quotas []GetOrganization Token Quota - The token quota configuration.
- Name string
- The name of the organization. If not provided,
organizationIdmust be set. For performance, it is advised to use theorganizationIdas a lookup if possible. - Organization
Id string - The ID of the organization. If not provided,
namemust be set. - Skip
Client boolGrants - Whether to skip organization client grants. Setting this to
truewill skip API call to /api/v2/organizations/{id}/client-grants. - Skip
Connections bool - Whether to skip organization connections. Setting this to
truewill skip paginated API calls to /api/v2/organizations/{id}/connections. - Skip
Members bool - Whether to skip organization members. Setting this to
truewill skip paginated API calls to /api/v2/organizations/{id}/members.
- brandings list(object)
- Defines how to style the login pages.
- client_
grants list(string) - Client Grant ID(s) that are associated to the organization. Skips populating if
skipClientGrantsistrue. - connections list(object)
- Connections enabled for this organization. Skips populating if
skipConnectionsistrue. - display_
name string - Friendly name of this organization.
- id string
- The provider-assigned unique ID for this managed resource.
- members list(string)
- User ID(s) that are members of the organization. Skips populating if
skipMembersistrue. - metadata map(string)
- Metadata associated with the organization. Maximum of 10 metadata properties allowed.
- token_
quotas list(object) - The token quota configuration.
- name string
- The name of the organization. If not provided,
organizationIdmust be set. For performance, it is advised to use theorganizationIdas a lookup if possible. - organization_
id string - The ID of the organization. If not provided,
namemust be set. - skip_
client_ boolgrants - Whether to skip organization client grants. Setting this to
truewill skip API call to /api/v2/organizations/{id}/client-grants. - skip_
connections bool - Whether to skip organization connections. Setting this to
truewill skip paginated API calls to /api/v2/organizations/{id}/connections. - skip_
members bool - Whether to skip organization members. Setting this to
truewill skip paginated API calls to /api/v2/organizations/{id}/members.
- brandings
List<Get
Organization Branding> - Defines how to style the login pages.
- client
Grants List<String> - Client Grant ID(s) that are associated to the organization. Skips populating if
skipClientGrantsistrue. - connections
List<Get
Organization Connection> - Connections enabled for this organization. Skips populating if
skipConnectionsistrue. - display
Name String - Friendly name of this organization.
- id String
- The provider-assigned unique ID for this managed resource.
- members List<String>
- User ID(s) that are members of the organization. Skips populating if
skipMembersistrue. - metadata Map<String,String>
- Metadata associated with the organization. Maximum of 10 metadata properties allowed.
- token
Quotas List<GetOrganization Token Quota> - The token quota configuration.
- name String
- The name of the organization. If not provided,
organizationIdmust be set. For performance, it is advised to use theorganizationIdas a lookup if possible. - organization
Id String - The ID of the organization. If not provided,
namemust be set. - skip
Client BooleanGrants - Whether to skip organization client grants. Setting this to
truewill skip API call to /api/v2/organizations/{id}/client-grants. - skip
Connections Boolean - Whether to skip organization connections. Setting this to
truewill skip paginated API calls to /api/v2/organizations/{id}/connections. - skip
Members Boolean - Whether to skip organization members. Setting this to
truewill skip paginated API calls to /api/v2/organizations/{id}/members.
- brandings
Get
Organization Branding[] - Defines how to style the login pages.
- client
Grants string[] - Client Grant ID(s) that are associated to the organization. Skips populating if
skipClientGrantsistrue. - connections
Get
Organization Connection[] - Connections enabled for this organization. Skips populating if
skipConnectionsistrue. - display
Name string - Friendly name of this organization.
- id string
- The provider-assigned unique ID for this managed resource.
- members string[]
- User ID(s) that are members of the organization. Skips populating if
skipMembersistrue. - metadata {[key: string]: string}
- Metadata associated with the organization. Maximum of 10 metadata properties allowed.
- token
Quotas GetOrganization Token Quota[] - The token quota configuration.
- name string
- The name of the organization. If not provided,
organizationIdmust be set. For performance, it is advised to use theorganizationIdas a lookup if possible. - organization
Id string - The ID of the organization. If not provided,
namemust be set. - skip
Client booleanGrants - Whether to skip organization client grants. Setting this to
truewill skip API call to /api/v2/organizations/{id}/client-grants. - skip
Connections boolean - Whether to skip organization connections. Setting this to
truewill skip paginated API calls to /api/v2/organizations/{id}/connections. - skip
Members boolean - Whether to skip organization members. Setting this to
truewill skip paginated API calls to /api/v2/organizations/{id}/members.
- brandings
Sequence[Get
Organization Branding] - Defines how to style the login pages.
- client_
grants Sequence[str] - Client Grant ID(s) that are associated to the organization. Skips populating if
skipClientGrantsistrue. - connections
Sequence[Get
Organization Connection] - Connections enabled for this organization. Skips populating if
skipConnectionsistrue. - display_
name str - Friendly name of this organization.
- id str
- The provider-assigned unique ID for this managed resource.
- members Sequence[str]
- User ID(s) that are members of the organization. Skips populating if
skipMembersistrue. - metadata Mapping[str, str]
- Metadata associated with the organization. Maximum of 10 metadata properties allowed.
- token_
quotas Sequence[GetOrganization Token Quota] - The token quota configuration.
- name str
- The name of the organization. If not provided,
organizationIdmust be set. For performance, it is advised to use theorganizationIdas a lookup if possible. - organization_
id str - The ID of the organization. If not provided,
namemust be set. - skip_
client_ boolgrants - Whether to skip organization client grants. Setting this to
truewill skip API call to /api/v2/organizations/{id}/client-grants. - skip_
connections bool - Whether to skip organization connections. Setting this to
truewill skip paginated API calls to /api/v2/organizations/{id}/connections. - skip_
members bool - Whether to skip organization members. Setting this to
truewill skip paginated API calls to /api/v2/organizations/{id}/members.
- brandings List<Property Map>
- Defines how to style the login pages.
- client
Grants List<String> - Client Grant ID(s) that are associated to the organization. Skips populating if
skipClientGrantsistrue. - connections List<Property Map>
- Connections enabled for this organization. Skips populating if
skipConnectionsistrue. - display
Name String - Friendly name of this organization.
- id String
- The provider-assigned unique ID for this managed resource.
- members List<String>
- User ID(s) that are members of the organization. Skips populating if
skipMembersistrue. - metadata Map<String>
- Metadata associated with the organization. Maximum of 10 metadata properties allowed.
- token
Quotas List<Property Map> - The token quota configuration.
- name String
- The name of the organization. If not provided,
organizationIdmust be set. For performance, it is advised to use theorganizationIdas a lookup if possible. - organization
Id String - The ID of the organization. If not provided,
namemust be set. - skip
Client BooleanGrants - Whether to skip organization client grants. Setting this to
truewill skip API call to /api/v2/organizations/{id}/client-grants. - skip
Connections Boolean - Whether to skip organization connections. Setting this to
truewill skip paginated API calls to /api/v2/organizations/{id}/connections. - skip
Members Boolean - Whether to skip organization members. Setting this to
truewill skip paginated API calls to /api/v2/organizations/{id}/members.
Supporting Types
GetOrganizationBranding
GetOrganizationConnection
- Assign
Membership boolOn Login - When
true, all users that log in with this connection will be automatically granted membership in the organization. Whenfalse, users must be granted membership in the organization before logging in with this connection. - Connection
Id string - The ID of the enabled connection on the organization.
- Is
Enabled bool - Whether the connection is enabled for the organization.
- Is
Signup boolEnabled - Determines whether organization sign-up should be enabled for this organization connection. Only applicable for database connections. Note:
isSignupEnabledcan only betrueifassignMembershipOnLoginistrue. - Organization
Access stringLevel - The access level for this organization connection. Can be
none,readonly,limited, orfull. - Organization
Connection stringName - Name of the connection in the scope of this organization.
- bool
- Determines whether a connection should be displayed on this organization's login prompt. Only applicable for enterprise connections.
- Assign
Membership boolOn Login - When
true, all users that log in with this connection will be automatically granted membership in the organization. Whenfalse, users must be granted membership in the organization before logging in with this connection. - Connection
Id string - The ID of the enabled connection on the organization.
- Is
Enabled bool - Whether the connection is enabled for the organization.
- Is
Signup boolEnabled - Determines whether organization sign-up should be enabled for this organization connection. Only applicable for database connections. Note:
isSignupEnabledcan only betrueifassignMembershipOnLoginistrue. - Organization
Access stringLevel - The access level for this organization connection. Can be
none,readonly,limited, orfull. - Organization
Connection stringName - Name of the connection in the scope of this organization.
- bool
- Determines whether a connection should be displayed on this organization's login prompt. Only applicable for enterprise connections.
- assign_
membership_ boolon_ login - When
true, all users that log in with this connection will be automatically granted membership in the organization. Whenfalse, users must be granted membership in the organization before logging in with this connection. - connection_
id string - The ID of the enabled connection on the organization.
- is_
enabled bool - Whether the connection is enabled for the organization.
- is_
signup_ boolenabled - Determines whether organization sign-up should be enabled for this organization connection. Only applicable for database connections. Note:
isSignupEnabledcan only betrueifassignMembershipOnLoginistrue. - organization_
access_ stringlevel - The access level for this organization connection. Can be
none,readonly,limited, orfull. - organization_
connection_ stringname - Name of the connection in the scope of this organization.
- bool
- Determines whether a connection should be displayed on this organization's login prompt. Only applicable for enterprise connections.
- assign
Membership BooleanOn Login - When
true, all users that log in with this connection will be automatically granted membership in the organization. Whenfalse, users must be granted membership in the organization before logging in with this connection. - connection
Id String - The ID of the enabled connection on the organization.
- is
Enabled Boolean - Whether the connection is enabled for the organization.
- is
Signup BooleanEnabled - Determines whether organization sign-up should be enabled for this organization connection. Only applicable for database connections. Note:
isSignupEnabledcan only betrueifassignMembershipOnLoginistrue. - organization
Access StringLevel - The access level for this organization connection. Can be
none,readonly,limited, orfull. - organization
Connection StringName - Name of the connection in the scope of this organization.
- Boolean
- Determines whether a connection should be displayed on this organization's login prompt. Only applicable for enterprise connections.
- assign
Membership booleanOn Login - When
true, all users that log in with this connection will be automatically granted membership in the organization. Whenfalse, users must be granted membership in the organization before logging in with this connection. - connection
Id string - The ID of the enabled connection on the organization.
- is
Enabled boolean - Whether the connection is enabled for the organization.
- is
Signup booleanEnabled - Determines whether organization sign-up should be enabled for this organization connection. Only applicable for database connections. Note:
isSignupEnabledcan only betrueifassignMembershipOnLoginistrue. - organization
Access stringLevel - The access level for this organization connection. Can be
none,readonly,limited, orfull. - organization
Connection stringName - Name of the connection in the scope of this organization.
- boolean
- Determines whether a connection should be displayed on this organization's login prompt. Only applicable for enterprise connections.
- assign_
membership_ boolon_ login - When
true, all users that log in with this connection will be automatically granted membership in the organization. Whenfalse, users must be granted membership in the organization before logging in with this connection. - connection_
id str - The ID of the enabled connection on the organization.
- is_
enabled bool - Whether the connection is enabled for the organization.
- is_
signup_ boolenabled - Determines whether organization sign-up should be enabled for this organization connection. Only applicable for database connections. Note:
isSignupEnabledcan only betrueifassignMembershipOnLoginistrue. - organization_
access_ strlevel - The access level for this organization connection. Can be
none,readonly,limited, orfull. - organization_
connection_ strname - Name of the connection in the scope of this organization.
- bool
- Determines whether a connection should be displayed on this organization's login prompt. Only applicable for enterprise connections.
- assign
Membership BooleanOn Login - When
true, all users that log in with this connection will be automatically granted membership in the organization. Whenfalse, users must be granted membership in the organization before logging in with this connection. - connection
Id String - The ID of the enabled connection on the organization.
- is
Enabled Boolean - Whether the connection is enabled for the organization.
- is
Signup BooleanEnabled - Determines whether organization sign-up should be enabled for this organization connection. Only applicable for database connections. Note:
isSignupEnabledcan only betrueifassignMembershipOnLoginistrue. - organization
Access StringLevel - The access level for this organization connection. Can be
none,readonly,limited, orfull. - organization
Connection StringName - Name of the connection in the scope of this organization.
- Boolean
- Determines whether a connection should be displayed on this organization's login prompt. Only applicable for enterprise connections.
GetOrganizationTokenQuota
- Client
Credentials List<GetOrganization Token Quota Client Credential> - The token quota configuration for client credentials.
- Client
Credentials []GetOrganization Token Quota Client Credential - The token quota configuration for client credentials.
- client_
credentials list(object) - The token quota configuration for client credentials.
- client
Credentials List<GetOrganization Token Quota Client Credential> - The token quota configuration for client credentials.
- client
Credentials GetOrganization Token Quota Client Credential[] - The token quota configuration for client credentials.
- client_
credentials Sequence[GetOrganization Token Quota Client Credential] - The token quota configuration for client credentials.
- client
Credentials List<Property Map> - The token quota configuration for client credentials.
GetOrganizationTokenQuotaClientCredential
- Enforce bool
- If enabled, the quota will be enforced and requests in excess of the quota will fail. If disabled, the quota will not be enforced, but notifications for requests exceeding the quota will be available in logs.
- Per
Day int - Maximum number of issued tokens per day
- Per
Hour int - Maximum number of issued tokens per hour
- Enforce bool
- If enabled, the quota will be enforced and requests in excess of the quota will fail. If disabled, the quota will not be enforced, but notifications for requests exceeding the quota will be available in logs.
- Per
Day int - Maximum number of issued tokens per day
- Per
Hour int - Maximum number of issued tokens per hour
- enforce bool
- If enabled, the quota will be enforced and requests in excess of the quota will fail. If disabled, the quota will not be enforced, but notifications for requests exceeding the quota will be available in logs.
- per_
day number - Maximum number of issued tokens per day
- per_
hour number - Maximum number of issued tokens per hour
- enforce Boolean
- If enabled, the quota will be enforced and requests in excess of the quota will fail. If disabled, the quota will not be enforced, but notifications for requests exceeding the quota will be available in logs.
- per
Day Integer - Maximum number of issued tokens per day
- per
Hour Integer - Maximum number of issued tokens per hour
- enforce boolean
- If enabled, the quota will be enforced and requests in excess of the quota will fail. If disabled, the quota will not be enforced, but notifications for requests exceeding the quota will be available in logs.
- per
Day number - Maximum number of issued tokens per day
- per
Hour number - Maximum number of issued tokens per hour
- enforce bool
- If enabled, the quota will be enforced and requests in excess of the quota will fail. If disabled, the quota will not be enforced, but notifications for requests exceeding the quota will be available in logs.
- per_
day int - Maximum number of issued tokens per day
- per_
hour int - Maximum number of issued tokens per hour
- enforce Boolean
- If enabled, the quota will be enforced and requests in excess of the quota will fail. If disabled, the quota will not be enforced, but notifications for requests exceeding the quota will be available in logs.
- per
Day Number - Maximum number of issued tokens per day
- per
Hour Number - Maximum number of issued tokens per hour
Package Details
- Repository
- Auth0 pulumi/pulumi-auth0
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
auth0Terraform Provider.
Viewing docs for Auth0 v3.44.0
published on Sunday, May 24, 2026 by Pulumi
published on Sunday, May 24, 2026 by Pulumi