1. Packages
  2. Auth0 Provider
  3. API Docs
  4. getClients
Auth0 v3.16.0 published on Wednesday, Mar 12, 2025 by Pulumi

auth0.getClients

Explore with Pulumi AI

auth0 logo
Auth0 v3.16.0 published on Wednesday, Mar 12, 2025 by Pulumi

    Data source to retrieve a list of Auth0 application clients with optional filtering.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as auth0 from "@pulumi/auth0";
    
    // Auth0 clients with "External" in the name
    const externalApps = auth0.getClients({
        nameFilter: "External",
    });
    // Auth0 clients filtered by non_interactive or spa app type
    const m2mApps = auth0.getClients({
        appTypes: [
            "non_interactive",
            "spa",
        ],
    });
    // Auth0 clients filtered by is_first_party equal to true
    const firstPartyApps = auth0.getClients({
        isFirstParty: true,
    });
    
    import pulumi
    import pulumi_auth0 as auth0
    
    # Auth0 clients with "External" in the name
    external_apps = auth0.get_clients(name_filter="External")
    # Auth0 clients filtered by non_interactive or spa app type
    m2m_apps = auth0.get_clients(app_types=[
        "non_interactive",
        "spa",
    ])
    # Auth0 clients filtered by is_first_party equal to true
    first_party_apps = auth0.get_clients(is_first_party=True)
    
    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 {
    		// Auth0 clients with "External" in the name
    		_, err := auth0.GetClients(ctx, &auth0.GetClientsArgs{
    			NameFilter: pulumi.StringRef("External"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		// Auth0 clients filtered by non_interactive or spa app type
    		_, err = auth0.GetClients(ctx, &auth0.GetClientsArgs{
    			AppTypes: []string{
    				"non_interactive",
    				"spa",
    			},
    		}, nil)
    		if err != nil {
    			return err
    		}
    		// Auth0 clients filtered by is_first_party equal to true
    		_, err = auth0.GetClients(ctx, &auth0.GetClientsArgs{
    			IsFirstParty: pulumi.BoolRef(true),
    		}, 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(() => 
    {
        // Auth0 clients with "External" in the name
        var externalApps = Auth0.GetClients.Invoke(new()
        {
            NameFilter = "External",
        });
    
        // Auth0 clients filtered by non_interactive or spa app type
        var m2mApps = Auth0.GetClients.Invoke(new()
        {
            AppTypes = new[]
            {
                "non_interactive",
                "spa",
            },
        });
    
        // Auth0 clients filtered by is_first_party equal to true
        var firstPartyApps = Auth0.GetClients.Invoke(new()
        {
            IsFirstParty = true,
        });
    
    });
    
    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.GetClientsArgs;
    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) {
            // Auth0 clients with "External" in the name
            final var externalApps = Auth0Functions.getClients(GetClientsArgs.builder()
                .nameFilter("External")
                .build());
    
            // Auth0 clients filtered by non_interactive or spa app type
            final var m2mApps = Auth0Functions.getClients(GetClientsArgs.builder()
                .appTypes(            
                    "non_interactive",
                    "spa")
                .build());
    
            // Auth0 clients filtered by is_first_party equal to true
            final var firstPartyApps = Auth0Functions.getClients(GetClientsArgs.builder()
                .isFirstParty(true)
                .build());
    
        }
    }
    
    variables:
      # Auth0 clients with "External" in the name
      externalApps:
        fn::invoke:
          function: auth0:getClients
          arguments:
            nameFilter: External
      # Auth0 clients filtered by non_interactive or spa app type
      m2mApps:
        fn::invoke:
          function: auth0:getClients
          arguments:
            appTypes:
              - non_interactive
              - spa
      # Auth0 clients filtered by is_first_party equal to true
      firstPartyApps:
        fn::invoke:
          function: auth0:getClients
          arguments:
            isFirstParty: true
    

    Using getClients

    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 getClients(args: GetClientsArgs, opts?: InvokeOptions): Promise<GetClientsResult>
    function getClientsOutput(args: GetClientsOutputArgs, opts?: InvokeOptions): Output<GetClientsResult>
    def get_clients(app_types: Optional[Sequence[str]] = None,
                    is_first_party: Optional[bool] = None,
                    name_filter: Optional[str] = None,
                    opts: Optional[InvokeOptions] = None) -> GetClientsResult
    def get_clients_output(app_types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                    is_first_party: Optional[pulumi.Input[bool]] = None,
                    name_filter: Optional[pulumi.Input[str]] = None,
                    opts: Optional[InvokeOptions] = None) -> Output[GetClientsResult]
    func GetClients(ctx *Context, args *GetClientsArgs, opts ...InvokeOption) (*GetClientsResult, error)
    func GetClientsOutput(ctx *Context, args *GetClientsOutputArgs, opts ...InvokeOption) GetClientsResultOutput

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

    public static class GetClients 
    {
        public static Task<GetClientsResult> InvokeAsync(GetClientsArgs args, InvokeOptions? opts = null)
        public static Output<GetClientsResult> Invoke(GetClientsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetClientsResult> getClients(GetClientsArgs args, InvokeOptions options)
    public static Output<GetClientsResult> getClients(GetClientsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: auth0:index/getClients:getClients
      arguments:
        # arguments dictionary

    The following arguments are supported:

    AppTypes List<string>
    Filter clients by application types.
    IsFirstParty bool
    Filter clients by first party status.
    NameFilter string
    Filter clients by name (partial matches supported).
    AppTypes []string
    Filter clients by application types.
    IsFirstParty bool
    Filter clients by first party status.
    NameFilter string
    Filter clients by name (partial matches supported).
    appTypes List<String>
    Filter clients by application types.
    isFirstParty Boolean
    Filter clients by first party status.
    nameFilter String
    Filter clients by name (partial matches supported).
    appTypes string[]
    Filter clients by application types.
    isFirstParty boolean
    Filter clients by first party status.
    nameFilter string
    Filter clients by name (partial matches supported).
    app_types Sequence[str]
    Filter clients by application types.
    is_first_party bool
    Filter clients by first party status.
    name_filter str
    Filter clients by name (partial matches supported).
    appTypes List<String>
    Filter clients by application types.
    isFirstParty Boolean
    Filter clients by first party status.
    nameFilter String
    Filter clients by name (partial matches supported).

    getClients Result

    The following output properties are available:

    Clients List<GetClientsClient>
    List of clients matching the filter criteria.
    Id string
    The provider-assigned unique ID for this managed resource.
    AppTypes List<string>
    Filter clients by application types.
    IsFirstParty bool
    Filter clients by first party status.
    NameFilter string
    Filter clients by name (partial matches supported).
    Clients []GetClientsClient
    List of clients matching the filter criteria.
    Id string
    The provider-assigned unique ID for this managed resource.
    AppTypes []string
    Filter clients by application types.
    IsFirstParty bool
    Filter clients by first party status.
    NameFilter string
    Filter clients by name (partial matches supported).
    clients List<GetClientsClient>
    List of clients matching the filter criteria.
    id String
    The provider-assigned unique ID for this managed resource.
    appTypes List<String>
    Filter clients by application types.
    isFirstParty Boolean
    Filter clients by first party status.
    nameFilter String
    Filter clients by name (partial matches supported).
    clients GetClientsClient[]
    List of clients matching the filter criteria.
    id string
    The provider-assigned unique ID for this managed resource.
    appTypes string[]
    Filter clients by application types.
    isFirstParty boolean
    Filter clients by first party status.
    nameFilter string
    Filter clients by name (partial matches supported).
    clients Sequence[GetClientsClient]
    List of clients matching the filter criteria.
    id str
    The provider-assigned unique ID for this managed resource.
    app_types Sequence[str]
    Filter clients by application types.
    is_first_party bool
    Filter clients by first party status.
    name_filter str
    Filter clients by name (partial matches supported).
    clients List<Property Map>
    List of clients matching the filter criteria.
    id String
    The provider-assigned unique ID for this managed resource.
    appTypes List<String>
    Filter clients by application types.
    isFirstParty Boolean
    Filter clients by first party status.
    nameFilter String
    Filter clients by name (partial matches supported).

    Supporting Types

    GetClientsClient

    AllowedClients List<string>
    List of applications ID's that will be allowed to make delegation request. By default, all applications will be allowed.
    AllowedLogoutUrls List<string>
    URLs that Auth0 may redirect to after logout.
    AllowedOrigins List<string>
    URLs that represent valid origins for cross-origin resource sharing. By default, all your callback URLs will be allowed.
    AppType string
    Type of application the client represents. Possible values are: native, spa, regular_web, non_interactive, sso_integration. Specific SSO integrations types accepted as well are: rms, box, cloudbees, concur, dropbox, mscrm, echosign, egnyte, newrelic, office365, salesforce, sentry, sharepoint, slack, springcm, zendesk, zoom.
    Callbacks List<string>
    URLs that Auth0 may call back to after a user authenticates for the client. Make sure to specify the protocol (https://) otherwise the callback may fail in some cases. With the exception of custom URI schemes for native clients, all callbacks should use protocol https://.
    ClientMetadata Dictionary<string, string>
    Metadata associated with the client, in the form of an object with string values (max 255 chars). Maximum of 10 metadata properties allowed. Field names (max 255 chars) are alphanumeric and may only include the following special characters: :,-+=_*?"/\()<>@ [Tab] [Space].
    ClientSecret string
    Description string
    Description of the purpose of the client.
    GrantTypes List<string>
    Types of grants that this client is authorized to use.
    IsFirstParty bool
    Indicates whether this client is a first-party client.Defaults to true from the API
    IsTokenEndpointIpHeaderTrusted bool
    Indicates whether the token endpoint IP header is trusted. Requires the authentication method to be set to client_secret_post or client_secret_basic. Setting this property when creating the resource, will default the authentication method to client_secret_post. To change the authentication method to client_secret_basic use the auth0.ClientCredentials resource.
    OidcLogouts List<GetClientsClientOidcLogout>
    Configure OIDC logout for the Client
    TokenExchanges List<GetClientsClientTokenExchange>
    Allows configuration for token exchange
    WebOrigins List<string>
    URLs that represent valid web origins for use with web message response mode.
    ClientId string
    The ID of the client. If not provided, name must be set.
    Name string
    The name of the client. If not provided, client_id must be set.
    AllowedClients []string
    List of applications ID's that will be allowed to make delegation request. By default, all applications will be allowed.
    AllowedLogoutUrls []string
    URLs that Auth0 may redirect to after logout.
    AllowedOrigins []string
    URLs that represent valid origins for cross-origin resource sharing. By default, all your callback URLs will be allowed.
    AppType string
    Type of application the client represents. Possible values are: native, spa, regular_web, non_interactive, sso_integration. Specific SSO integrations types accepted as well are: rms, box, cloudbees, concur, dropbox, mscrm, echosign, egnyte, newrelic, office365, salesforce, sentry, sharepoint, slack, springcm, zendesk, zoom.
    Callbacks []string
    URLs that Auth0 may call back to after a user authenticates for the client. Make sure to specify the protocol (https://) otherwise the callback may fail in some cases. With the exception of custom URI schemes for native clients, all callbacks should use protocol https://.
    ClientMetadata map[string]string
    Metadata associated with the client, in the form of an object with string values (max 255 chars). Maximum of 10 metadata properties allowed. Field names (max 255 chars) are alphanumeric and may only include the following special characters: :,-+=_*?"/\()<>@ [Tab] [Space].
    ClientSecret string
    Description string
    Description of the purpose of the client.
    GrantTypes []string
    Types of grants that this client is authorized to use.
    IsFirstParty bool
    Indicates whether this client is a first-party client.Defaults to true from the API
    IsTokenEndpointIpHeaderTrusted bool
    Indicates whether the token endpoint IP header is trusted. Requires the authentication method to be set to client_secret_post or client_secret_basic. Setting this property when creating the resource, will default the authentication method to client_secret_post. To change the authentication method to client_secret_basic use the auth0.ClientCredentials resource.
    OidcLogouts []GetClientsClientOidcLogout
    Configure OIDC logout for the Client
    TokenExchanges []GetClientsClientTokenExchange
    Allows configuration for token exchange
    WebOrigins []string
    URLs that represent valid web origins for use with web message response mode.
    ClientId string
    The ID of the client. If not provided, name must be set.
    Name string
    The name of the client. If not provided, client_id must be set.
    allowedClients List<String>
    List of applications ID's that will be allowed to make delegation request. By default, all applications will be allowed.
    allowedLogoutUrls List<String>
    URLs that Auth0 may redirect to after logout.
    allowedOrigins List<String>
    URLs that represent valid origins for cross-origin resource sharing. By default, all your callback URLs will be allowed.
    appType String
    Type of application the client represents. Possible values are: native, spa, regular_web, non_interactive, sso_integration. Specific SSO integrations types accepted as well are: rms, box, cloudbees, concur, dropbox, mscrm, echosign, egnyte, newrelic, office365, salesforce, sentry, sharepoint, slack, springcm, zendesk, zoom.
    callbacks List<String>
    URLs that Auth0 may call back to after a user authenticates for the client. Make sure to specify the protocol (https://) otherwise the callback may fail in some cases. With the exception of custom URI schemes for native clients, all callbacks should use protocol https://.
    clientMetadata Map<String,String>
    Metadata associated with the client, in the form of an object with string values (max 255 chars). Maximum of 10 metadata properties allowed. Field names (max 255 chars) are alphanumeric and may only include the following special characters: :,-+=_*?"/\()<>@ [Tab] [Space].
    clientSecret String
    description String
    Description of the purpose of the client.
    grantTypes List<String>
    Types of grants that this client is authorized to use.
    isFirstParty Boolean
    Indicates whether this client is a first-party client.Defaults to true from the API
    isTokenEndpointIpHeaderTrusted Boolean
    Indicates whether the token endpoint IP header is trusted. Requires the authentication method to be set to client_secret_post or client_secret_basic. Setting this property when creating the resource, will default the authentication method to client_secret_post. To change the authentication method to client_secret_basic use the auth0.ClientCredentials resource.
    oidcLogouts List<GetClientsClientOidcLogout>
    Configure OIDC logout for the Client
    tokenExchanges List<GetClientsClientTokenExchange>
    Allows configuration for token exchange
    webOrigins List<String>
    URLs that represent valid web origins for use with web message response mode.
    clientId String
    The ID of the client. If not provided, name must be set.
    name String
    The name of the client. If not provided, client_id must be set.
    allowedClients string[]
    List of applications ID's that will be allowed to make delegation request. By default, all applications will be allowed.
    allowedLogoutUrls string[]
    URLs that Auth0 may redirect to after logout.
    allowedOrigins string[]
    URLs that represent valid origins for cross-origin resource sharing. By default, all your callback URLs will be allowed.
    appType string
    Type of application the client represents. Possible values are: native, spa, regular_web, non_interactive, sso_integration. Specific SSO integrations types accepted as well are: rms, box, cloudbees, concur, dropbox, mscrm, echosign, egnyte, newrelic, office365, salesforce, sentry, sharepoint, slack, springcm, zendesk, zoom.
    callbacks string[]
    URLs that Auth0 may call back to after a user authenticates for the client. Make sure to specify the protocol (https://) otherwise the callback may fail in some cases. With the exception of custom URI schemes for native clients, all callbacks should use protocol https://.
    clientMetadata {[key: string]: string}
    Metadata associated with the client, in the form of an object with string values (max 255 chars). Maximum of 10 metadata properties allowed. Field names (max 255 chars) are alphanumeric and may only include the following special characters: :,-+=_*?"/\()<>@ [Tab] [Space].
    clientSecret string
    description string
    Description of the purpose of the client.
    grantTypes string[]
    Types of grants that this client is authorized to use.
    isFirstParty boolean
    Indicates whether this client is a first-party client.Defaults to true from the API
    isTokenEndpointIpHeaderTrusted boolean
    Indicates whether the token endpoint IP header is trusted. Requires the authentication method to be set to client_secret_post or client_secret_basic. Setting this property when creating the resource, will default the authentication method to client_secret_post. To change the authentication method to client_secret_basic use the auth0.ClientCredentials resource.
    oidcLogouts GetClientsClientOidcLogout[]
    Configure OIDC logout for the Client
    tokenExchanges GetClientsClientTokenExchange[]
    Allows configuration for token exchange
    webOrigins string[]
    URLs that represent valid web origins for use with web message response mode.
    clientId string
    The ID of the client. If not provided, name must be set.
    name string
    The name of the client. If not provided, client_id must be set.
    allowed_clients Sequence[str]
    List of applications ID's that will be allowed to make delegation request. By default, all applications will be allowed.
    allowed_logout_urls Sequence[str]
    URLs that Auth0 may redirect to after logout.
    allowed_origins Sequence[str]
    URLs that represent valid origins for cross-origin resource sharing. By default, all your callback URLs will be allowed.
    app_type str
    Type of application the client represents. Possible values are: native, spa, regular_web, non_interactive, sso_integration. Specific SSO integrations types accepted as well are: rms, box, cloudbees, concur, dropbox, mscrm, echosign, egnyte, newrelic, office365, salesforce, sentry, sharepoint, slack, springcm, zendesk, zoom.
    callbacks Sequence[str]
    URLs that Auth0 may call back to after a user authenticates for the client. Make sure to specify the protocol (https://) otherwise the callback may fail in some cases. With the exception of custom URI schemes for native clients, all callbacks should use protocol https://.
    client_metadata Mapping[str, str]
    Metadata associated with the client, in the form of an object with string values (max 255 chars). Maximum of 10 metadata properties allowed. Field names (max 255 chars) are alphanumeric and may only include the following special characters: :,-+=_*?"/\()<>@ [Tab] [Space].
    client_secret str
    description str
    Description of the purpose of the client.
    grant_types Sequence[str]
    Types of grants that this client is authorized to use.
    is_first_party bool
    Indicates whether this client is a first-party client.Defaults to true from the API
    is_token_endpoint_ip_header_trusted bool
    Indicates whether the token endpoint IP header is trusted. Requires the authentication method to be set to client_secret_post or client_secret_basic. Setting this property when creating the resource, will default the authentication method to client_secret_post. To change the authentication method to client_secret_basic use the auth0.ClientCredentials resource.
    oidc_logouts Sequence[GetClientsClientOidcLogout]
    Configure OIDC logout for the Client
    token_exchanges Sequence[GetClientsClientTokenExchange]
    Allows configuration for token exchange
    web_origins Sequence[str]
    URLs that represent valid web origins for use with web message response mode.
    client_id str
    The ID of the client. If not provided, name must be set.
    name str
    The name of the client. If not provided, client_id must be set.
    allowedClients List<String>
    List of applications ID's that will be allowed to make delegation request. By default, all applications will be allowed.
    allowedLogoutUrls List<String>
    URLs that Auth0 may redirect to after logout.
    allowedOrigins List<String>
    URLs that represent valid origins for cross-origin resource sharing. By default, all your callback URLs will be allowed.
    appType String
    Type of application the client represents. Possible values are: native, spa, regular_web, non_interactive, sso_integration. Specific SSO integrations types accepted as well are: rms, box, cloudbees, concur, dropbox, mscrm, echosign, egnyte, newrelic, office365, salesforce, sentry, sharepoint, slack, springcm, zendesk, zoom.
    callbacks List<String>
    URLs that Auth0 may call back to after a user authenticates for the client. Make sure to specify the protocol (https://) otherwise the callback may fail in some cases. With the exception of custom URI schemes for native clients, all callbacks should use protocol https://.
    clientMetadata Map<String>
    Metadata associated with the client, in the form of an object with string values (max 255 chars). Maximum of 10 metadata properties allowed. Field names (max 255 chars) are alphanumeric and may only include the following special characters: :,-+=_*?"/\()<>@ [Tab] [Space].
    clientSecret String
    description String
    Description of the purpose of the client.
    grantTypes List<String>
    Types of grants that this client is authorized to use.
    isFirstParty Boolean
    Indicates whether this client is a first-party client.Defaults to true from the API
    isTokenEndpointIpHeaderTrusted Boolean
    Indicates whether the token endpoint IP header is trusted. Requires the authentication method to be set to client_secret_post or client_secret_basic. Setting this property when creating the resource, will default the authentication method to client_secret_post. To change the authentication method to client_secret_basic use the auth0.ClientCredentials resource.
    oidcLogouts List<Property Map>
    Configure OIDC logout for the Client
    tokenExchanges List<Property Map>
    Allows configuration for token exchange
    webOrigins List<String>
    URLs that represent valid web origins for use with web message response mode.
    clientId String
    The ID of the client. If not provided, name must be set.
    name String
    The name of the client. If not provided, client_id must be set.

    GetClientsClientOidcLogout

    BackchannelLogoutInitiators List<GetClientsClientOidcLogoutBackchannelLogoutInitiator>
    Configure OIDC logout initiators for the Client
    BackchannelLogoutUrls List<string>
    Set of URLs that are valid to call back from Auth0 for OIDC backchannel logout. Currently only one URL is allowed.
    BackchannelLogoutInitiators []GetClientsClientOidcLogoutBackchannelLogoutInitiator
    Configure OIDC logout initiators for the Client
    BackchannelLogoutUrls []string
    Set of URLs that are valid to call back from Auth0 for OIDC backchannel logout. Currently only one URL is allowed.
    backchannelLogoutInitiators List<GetClientsClientOidcLogoutBackchannelLogoutInitiator>
    Configure OIDC logout initiators for the Client
    backchannelLogoutUrls List<String>
    Set of URLs that are valid to call back from Auth0 for OIDC backchannel logout. Currently only one URL is allowed.
    backchannelLogoutInitiators GetClientsClientOidcLogoutBackchannelLogoutInitiator[]
    Configure OIDC logout initiators for the Client
    backchannelLogoutUrls string[]
    Set of URLs that are valid to call back from Auth0 for OIDC backchannel logout. Currently only one URL is allowed.
    backchannel_logout_initiators Sequence[GetClientsClientOidcLogoutBackchannelLogoutInitiator]
    Configure OIDC logout initiators for the Client
    backchannel_logout_urls Sequence[str]
    Set of URLs that are valid to call back from Auth0 for OIDC backchannel logout. Currently only one URL is allowed.
    backchannelLogoutInitiators List<Property Map>
    Configure OIDC logout initiators for the Client
    backchannelLogoutUrls List<String>
    Set of URLs that are valid to call back from Auth0 for OIDC backchannel logout. Currently only one URL is allowed.

    GetClientsClientOidcLogoutBackchannelLogoutInitiator

    Mode string
    Determines the configuration method for enabling initiators. custom enables only the initiators listed in the backchannel_logout_selected_initiators set, all enables all current and future initiators.
    SelectedInitiators List<string>
    Contains the list of initiators to be enabled for the given client.
    Mode string
    Determines the configuration method for enabling initiators. custom enables only the initiators listed in the backchannel_logout_selected_initiators set, all enables all current and future initiators.
    SelectedInitiators []string
    Contains the list of initiators to be enabled for the given client.
    mode String
    Determines the configuration method for enabling initiators. custom enables only the initiators listed in the backchannel_logout_selected_initiators set, all enables all current and future initiators.
    selectedInitiators List<String>
    Contains the list of initiators to be enabled for the given client.
    mode string
    Determines the configuration method for enabling initiators. custom enables only the initiators listed in the backchannel_logout_selected_initiators set, all enables all current and future initiators.
    selectedInitiators string[]
    Contains the list of initiators to be enabled for the given client.
    mode str
    Determines the configuration method for enabling initiators. custom enables only the initiators listed in the backchannel_logout_selected_initiators set, all enables all current and future initiators.
    selected_initiators Sequence[str]
    Contains the list of initiators to be enabled for the given client.
    mode String
    Determines the configuration method for enabling initiators. custom enables only the initiators listed in the backchannel_logout_selected_initiators set, all enables all current and future initiators.
    selectedInitiators List<String>
    Contains the list of initiators to be enabled for the given client.

    GetClientsClientTokenExchange

    AllowAnyProfileOfTypes List<string>
    List of allowed profile types for token exchange
    AllowAnyProfileOfTypes []string
    List of allowed profile types for token exchange
    allowAnyProfileOfTypes List<String>
    List of allowed profile types for token exchange
    allowAnyProfileOfTypes string[]
    List of allowed profile types for token exchange
    allow_any_profile_of_types Sequence[str]
    List of allowed profile types for token exchange
    allowAnyProfileOfTypes List<String>
    List of allowed profile types for token exchange

    Package Details

    Repository
    Auth0 pulumi/pulumi-auth0
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the auth0 Terraform Provider.
    auth0 logo
    Auth0 v3.16.0 published on Wednesday, Mar 12, 2025 by Pulumi