Auth0 v3.16.0 published on Wednesday, Mar 12, 2025 by Pulumi
auth0.getClients
Explore with Pulumi AI
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:
- App
Types List<string> - Filter clients by application types.
- Is
First boolParty - Filter clients by first party status.
- Name
Filter string - Filter clients by name (partial matches supported).
- App
Types []string - Filter clients by application types.
- Is
First boolParty - Filter clients by first party status.
- Name
Filter string - Filter clients by name (partial matches supported).
- app
Types List<String> - Filter clients by application types.
- is
First BooleanParty - Filter clients by first party status.
- name
Filter String - Filter clients by name (partial matches supported).
- app
Types string[] - Filter clients by application types.
- is
First booleanParty - Filter clients by first party status.
- name
Filter string - Filter clients by name (partial matches supported).
- app_
types Sequence[str] - Filter clients by application types.
- is_
first_ boolparty - Filter clients by first party status.
- name_
filter str - Filter clients by name (partial matches supported).
- app
Types List<String> - Filter clients by application types.
- is
First BooleanParty - Filter clients by first party status.
- name
Filter String - Filter clients by name (partial matches supported).
getClients Result
The following output properties are available:
- Clients
List<Get
Clients Client> - List of clients matching the filter criteria.
- Id string
- The provider-assigned unique ID for this managed resource.
- App
Types List<string> - Filter clients by application types.
- Is
First boolParty - Filter clients by first party status.
- Name
Filter string - Filter clients by name (partial matches supported).
- Clients
[]Get
Clients Client - List of clients matching the filter criteria.
- Id string
- The provider-assigned unique ID for this managed resource.
- App
Types []string - Filter clients by application types.
- Is
First boolParty - Filter clients by first party status.
- Name
Filter string - Filter clients by name (partial matches supported).
- clients
List<Get
Clients Client> - List of clients matching the filter criteria.
- id String
- The provider-assigned unique ID for this managed resource.
- app
Types List<String> - Filter clients by application types.
- is
First BooleanParty - Filter clients by first party status.
- name
Filter String - Filter clients by name (partial matches supported).
- clients
Get
Clients Client[] - List of clients matching the filter criteria.
- id string
- The provider-assigned unique ID for this managed resource.
- app
Types string[] - Filter clients by application types.
- is
First booleanParty - Filter clients by first party status.
- name
Filter string - Filter clients by name (partial matches supported).
- clients
Sequence[Get
Clients Client] - 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_ boolparty - 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.
- app
Types List<String> - Filter clients by application types.
- is
First BooleanParty - Filter clients by first party status.
- name
Filter String - Filter clients by name (partial matches supported).
Supporting Types
GetClientsClient
- Allowed
Clients List<string> - List of applications ID's that will be allowed to make delegation request. By default, all applications will be allowed.
- Allowed
Logout List<string>Urls - URLs that Auth0 may redirect to after logout.
- Allowed
Origins List<string> - URLs that represent valid origins for cross-origin resource sharing. By default, all your callback URLs will be allowed.
- App
Type 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://.
- Client
Metadata 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]
. - Client
Secret string - Description string
- Description of the purpose of the client.
- Grant
Types List<string> - Types of grants that this client is authorized to use.
- Is
First boolParty - Indicates whether this client is a first-party client.Defaults to true from the API
- Is
Token boolEndpoint Ip Header Trusted - Indicates whether the token endpoint IP header is trusted. Requires the authentication method to be set to
client_secret_post
orclient_secret_basic
. Setting this property when creating the resource, will default the authentication method toclient_secret_post
. To change the authentication method toclient_secret_basic
use theauth0.ClientCredentials
resource. - Oidc
Logouts List<GetClients Client Oidc Logout> - Configure OIDC logout for the Client
- Token
Exchanges List<GetClients Client Token Exchange> - Allows configuration for token exchange
- Web
Origins List<string> - URLs that represent valid web origins for use with web message response mode.
- Client
Id 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 []string - List of applications ID's that will be allowed to make delegation request. By default, all applications will be allowed.
- Allowed
Logout []stringUrls - URLs that Auth0 may redirect to after logout.
- Allowed
Origins []string - URLs that represent valid origins for cross-origin resource sharing. By default, all your callback URLs will be allowed.
- App
Type 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://.
- Client
Metadata 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]
. - Client
Secret string - Description string
- Description of the purpose of the client.
- Grant
Types []string - Types of grants that this client is authorized to use.
- Is
First boolParty - Indicates whether this client is a first-party client.Defaults to true from the API
- Is
Token boolEndpoint Ip Header Trusted - Indicates whether the token endpoint IP header is trusted. Requires the authentication method to be set to
client_secret_post
orclient_secret_basic
. Setting this property when creating the resource, will default the authentication method toclient_secret_post
. To change the authentication method toclient_secret_basic
use theauth0.ClientCredentials
resource. - Oidc
Logouts []GetClients Client Oidc Logout - Configure OIDC logout for the Client
- Token
Exchanges []GetClients Client Token Exchange - Allows configuration for token exchange
- Web
Origins []string - URLs that represent valid web origins for use with web message response mode.
- Client
Id 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 List<String> - List of applications ID's that will be allowed to make delegation request. By default, all applications will be allowed.
- allowed
Logout List<String>Urls - URLs that Auth0 may redirect to after logout.
- allowed
Origins List<String> - URLs that represent valid origins for cross-origin resource sharing. By default, all your callback URLs will be allowed.
- app
Type 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://.
- client
Metadata 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]
. - client
Secret String - description String
- Description of the purpose of the client.
- grant
Types List<String> - Types of grants that this client is authorized to use.
- is
First BooleanParty - Indicates whether this client is a first-party client.Defaults to true from the API
- is
Token BooleanEndpoint Ip Header Trusted - Indicates whether the token endpoint IP header is trusted. Requires the authentication method to be set to
client_secret_post
orclient_secret_basic
. Setting this property when creating the resource, will default the authentication method toclient_secret_post
. To change the authentication method toclient_secret_basic
use theauth0.ClientCredentials
resource. - oidc
Logouts List<GetClients Client Oidc Logout> - Configure OIDC logout for the Client
- token
Exchanges List<GetClients Client Token Exchange> - Allows configuration for token exchange
- web
Origins List<String> - URLs that represent valid web origins for use with web message response mode.
- client
Id 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 string[] - List of applications ID's that will be allowed to make delegation request. By default, all applications will be allowed.
- allowed
Logout string[]Urls - URLs that Auth0 may redirect to after logout.
- allowed
Origins string[] - URLs that represent valid origins for cross-origin resource sharing. By default, all your callback URLs will be allowed.
- app
Type 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://.
- client
Metadata {[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]
. - client
Secret string - description string
- Description of the purpose of the client.
- grant
Types string[] - Types of grants that this client is authorized to use.
- is
First booleanParty - Indicates whether this client is a first-party client.Defaults to true from the API
- is
Token booleanEndpoint Ip Header Trusted - Indicates whether the token endpoint IP header is trusted. Requires the authentication method to be set to
client_secret_post
orclient_secret_basic
. Setting this property when creating the resource, will default the authentication method toclient_secret_post
. To change the authentication method toclient_secret_basic
use theauth0.ClientCredentials
resource. - oidc
Logouts GetClients Client Oidc Logout[] - Configure OIDC logout for the Client
- token
Exchanges GetClients Client Token Exchange[] - Allows configuration for token exchange
- web
Origins string[] - URLs that represent valid web origins for use with web message response mode.
- client
Id 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_ Sequence[str]urls - 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_ boolparty - Indicates whether this client is a first-party client.Defaults to true from the API
- is_
token_ boolendpoint_ ip_ header_ trusted - Indicates whether the token endpoint IP header is trusted. Requires the authentication method to be set to
client_secret_post
orclient_secret_basic
. Setting this property when creating the resource, will default the authentication method toclient_secret_post
. To change the authentication method toclient_secret_basic
use theauth0.ClientCredentials
resource. - oidc_
logouts Sequence[GetClients Client Oidc Logout] - Configure OIDC logout for the Client
- token_
exchanges Sequence[GetClients Client Token Exchange] - 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.
- allowed
Clients List<String> - List of applications ID's that will be allowed to make delegation request. By default, all applications will be allowed.
- allowed
Logout List<String>Urls - URLs that Auth0 may redirect to after logout.
- allowed
Origins List<String> - URLs that represent valid origins for cross-origin resource sharing. By default, all your callback URLs will be allowed.
- app
Type 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://.
- client
Metadata 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]
. - client
Secret String - description String
- Description of the purpose of the client.
- grant
Types List<String> - Types of grants that this client is authorized to use.
- is
First BooleanParty - Indicates whether this client is a first-party client.Defaults to true from the API
- is
Token BooleanEndpoint Ip Header Trusted - Indicates whether the token endpoint IP header is trusted. Requires the authentication method to be set to
client_secret_post
orclient_secret_basic
. Setting this property when creating the resource, will default the authentication method toclient_secret_post
. To change the authentication method toclient_secret_basic
use theauth0.ClientCredentials
resource. - oidc
Logouts List<Property Map> - Configure OIDC logout for the Client
- token
Exchanges List<Property Map> - Allows configuration for token exchange
- web
Origins List<String> - URLs that represent valid web origins for use with web message response mode.
- client
Id 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
- Backchannel
Logout List<GetInitiators Clients Client Oidc Logout Backchannel Logout Initiator> - Configure OIDC logout initiators for the Client
- Backchannel
Logout List<string>Urls - Set of URLs that are valid to call back from Auth0 for OIDC backchannel logout. Currently only one URL is allowed.
- Backchannel
Logout []GetInitiators Clients Client Oidc Logout Backchannel Logout Initiator - Configure OIDC logout initiators for the Client
- Backchannel
Logout []stringUrls - Set of URLs that are valid to call back from Auth0 for OIDC backchannel logout. Currently only one URL is allowed.
- backchannel
Logout List<GetInitiators Clients Client Oidc Logout Backchannel Logout Initiator> - Configure OIDC logout initiators for the Client
- backchannel
Logout List<String>Urls - Set of URLs that are valid to call back from Auth0 for OIDC backchannel logout. Currently only one URL is allowed.
- backchannel
Logout GetInitiators Clients Client Oidc Logout Backchannel Logout Initiator[] - Configure OIDC logout initiators for the Client
- backchannel
Logout string[]Urls - Set of URLs that are valid to call back from Auth0 for OIDC backchannel logout. Currently only one URL is allowed.
- backchannel_
logout_ Sequence[Getinitiators Clients Client Oidc Logout Backchannel Logout Initiator] - Configure OIDC logout initiators for the Client
- backchannel_
logout_ Sequence[str]urls - Set of URLs that are valid to call back from Auth0 for OIDC backchannel logout. Currently only one URL is allowed.
- backchannel
Logout List<Property Map>Initiators - Configure OIDC logout initiators for the Client
- backchannel
Logout List<String>Urls - 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. - Selected
Initiators 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. - Selected
Initiators []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. - selected
Initiators 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. - selected
Initiators 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. - selected
Initiators List<String> - Contains the list of initiators to be enabled for the given client.
GetClientsClientTokenExchange
- Allow
Any List<string>Profile Of Types - List of allowed profile types for token exchange
- Allow
Any []stringProfile Of Types - List of allowed profile types for token exchange
- allow
Any List<String>Profile Of Types - List of allowed profile types for token exchange
- allow
Any string[]Profile Of Types - List of allowed profile types for token exchange
- allow_
any_ Sequence[str]profile_ of_ types - List of allowed profile types for token exchange
- allow
Any List<String>Profile Of Types - 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.