Viewing docs for Auth0 v3.51.0
published on Tuesday, Aug 18, 2026 by Pulumi
published on Tuesday, Aug 18, 2026 by Pulumi
Viewing docs for Auth0 v3.51.0
published on Tuesday, Aug 18, 2026 by Pulumi
published on Tuesday, Aug 18, 2026 by Pulumi
Data source to retrieve a specific client (application) association for an organization, by organizationId and clientId (EA only).
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as auth0 from "@pulumi/auth0";
const myOrgClient = auth0.getOrganizationClient({
organizationId: "org_XXXXX",
clientId: "clientXXXXX",
});
import pulumi
import pulumi_auth0 as auth0
my_org_client = auth0.get_organization_client(organization_id="org_XXXXX",
client_id="clientXXXXX")
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 {
_, err := auth0.GetOrganizationClient(ctx, &auth0.LookupOrganizationClientArgs{
OrganizationId: "org_XXXXX",
ClientId: "clientXXXXX",
}, 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(() =>
{
var myOrgClient = Auth0.GetOrganizationClient.Invoke(new()
{
OrganizationId = "org_XXXXX",
ClientId = "clientXXXXX",
});
});
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.GetOrganizationClientArgs;
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) {
final var myOrgClient = Auth0Functions.getOrganizationClient(GetOrganizationClientArgs.builder()
.organizationId("org_XXXXX")
.clientId("clientXXXXX")
.build());
}
}
variables:
myOrgClient:
fn::invoke:
function: auth0:getOrganizationClient
arguments:
organizationId: org_XXXXX
clientId: clientXXXXX
pulumi {
required_providers {
auth0 = {
source = "pulumi/auth0"
}
}
}
data "auth0_getorganizationclient" "myOrgClient" {
organization_id = "org_XXXXX"
client_id = "clientXXXXX"
}
Using getOrganizationClient
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 getOrganizationClient(args: GetOrganizationClientArgs, opts?: InvokeOptions): Promise<GetOrganizationClientResult>
function getOrganizationClientOutput(args: GetOrganizationClientOutputArgs, opts?: InvokeOutputOptions): Output<GetOrganizationClientResult>def get_organization_client(client_id: Optional[str] = None,
organization_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetOrganizationClientResult
def get_organization_client_output(client_id: pulumi.Input[Optional[str]] = None,
organization_id: pulumi.Input[Optional[str]] = None,
opts: Optional[InvokeOutputOptions] = None) -> Output[GetOrganizationClientResult]func LookupOrganizationClient(ctx *Context, args *LookupOrganizationClientArgs, opts ...InvokeOption) (*LookupOrganizationClientResult, error)
func LookupOrganizationClientOutput(ctx *Context, args *LookupOrganizationClientOutputArgs, opts ...InvokeOption) LookupOrganizationClientResultOutput> Note: This function is named LookupOrganizationClient in the Go SDK.
public static class GetOrganizationClient
{
public static Task<GetOrganizationClientResult> InvokeAsync(GetOrganizationClientArgs args, InvokeOptions? opts = null)
public static Output<GetOrganizationClientResult> Invoke(GetOrganizationClientInvokeArgs args, InvokeOptions? opts = null)
public static Output<GetOrganizationClientResult> Invoke(GetOrganizationClientInvokeArgs args, InvokeOutputOptions opts)
}public static CompletableFuture<GetOrganizationClientResult> getOrganizationClient(GetOrganizationClientArgs args, InvokeOptions options)
public static Output<GetOrganizationClientResult> getOrganizationClient(GetOrganizationClientArgs args, InvokeOptions options)
public static Output<GetOrganizationClientResult> getOrganizationClient(GetOrganizationClientArgs args, InvokeOutputOptions options)
fn::invoke:
function: auth0:index/getOrganizationClient:getOrganizationClient
arguments:
# arguments dictionarydata "auth0_get_organization_client" "name" {
# arguments
}The following arguments are supported:
- Client
Id string - The ID of the client (application) to associate with the organization.
- Organization
Id string - The ID of the organization to associate the client (application) with.
- Client
Id string - The ID of the client (application) to associate with the organization.
- Organization
Id string - The ID of the organization to associate the client (application) with.
- client_
id string - The ID of the client (application) to associate with the organization.
- organization_
id string - The ID of the organization to associate the client (application) with.
- client
Id String - The ID of the client (application) to associate with the organization.
- organization
Id String - The ID of the organization to associate the client (application) with.
- client
Id string - The ID of the client (application) to associate with the organization.
- organization
Id string - The ID of the organization to associate the client (application) with.
- client_
id str - The ID of the client (application) to associate with the organization.
- organization_
id str - The ID of the organization to associate the client (application) with.
- client
Id String - The ID of the client (application) to associate with the organization.
- organization
Id String - The ID of the organization to associate the client (application) with.
getOrganizationClient Result
The following output properties are available:
- App
Type string - The type of the associated client application.
- Client
Id string - The ID of the client (application) to associate with the organization.
- Grant
Types List<string> - The grant types enabled for the associated client.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
First boolParty - Whether the associated client is a first-party client (
true) or not (false). - Logo
Uri string - The URI of the associated client's logo.
- Name string
- The name of the associated client.
- Organization
Id string - The ID of the organization to associate the client (application) with.
- Organization
Usage string - How the associated client handles organizations during authentication. Available values are
deny,alloworrequire. This is a read-only reflection of the client's ownorganizationUsagesetting and is managed on theauth0.Clientresource, not here. - Use
For boolMember Access - Whether this client is used for member access to the organization. An association starts out with this turned off and it has to be activated explicitly.
- App
Type string - The type of the associated client application.
- Client
Id string - The ID of the client (application) to associate with the organization.
- Grant
Types []string - The grant types enabled for the associated client.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
First boolParty - Whether the associated client is a first-party client (
true) or not (false). - Logo
Uri string - The URI of the associated client's logo.
- Name string
- The name of the associated client.
- Organization
Id string - The ID of the organization to associate the client (application) with.
- Organization
Usage string - How the associated client handles organizations during authentication. Available values are
deny,alloworrequire. This is a read-only reflection of the client's ownorganizationUsagesetting and is managed on theauth0.Clientresource, not here. - Use
For boolMember Access - Whether this client is used for member access to the organization. An association starts out with this turned off and it has to be activated explicitly.
- app_
type string - The type of the associated client application.
- client_
id string - The ID of the client (application) to associate with the organization.
- grant_
types list(string) - The grant types enabled for the associated client.
- id string
- The provider-assigned unique ID for this managed resource.
- is_
first_ boolparty - Whether the associated client is a first-party client (
true) or not (false). - logo_
uri string - The URI of the associated client's logo.
- name string
- The name of the associated client.
- organization_
id string - The ID of the organization to associate the client (application) with.
- organization_
usage string - How the associated client handles organizations during authentication. Available values are
deny,alloworrequire. This is a read-only reflection of the client's ownorganizationUsagesetting and is managed on theauth0.Clientresource, not here. - use_
for_ boolmember_ access - Whether this client is used for member access to the organization. An association starts out with this turned off and it has to be activated explicitly.
- app
Type String - The type of the associated client application.
- client
Id String - The ID of the client (application) to associate with the organization.
- grant
Types List<String> - The grant types enabled for the associated client.
- id String
- The provider-assigned unique ID for this managed resource.
- is
First BooleanParty - Whether the associated client is a first-party client (
true) or not (false). - logo
Uri String - The URI of the associated client's logo.
- name String
- The name of the associated client.
- organization
Id String - The ID of the organization to associate the client (application) with.
- organization
Usage String - How the associated client handles organizations during authentication. Available values are
deny,alloworrequire. This is a read-only reflection of the client's ownorganizationUsagesetting and is managed on theauth0.Clientresource, not here. - use
For BooleanMember Access - Whether this client is used for member access to the organization. An association starts out with this turned off and it has to be activated explicitly.
- app
Type string - The type of the associated client application.
- client
Id string - The ID of the client (application) to associate with the organization.
- grant
Types string[] - The grant types enabled for the associated client.
- id string
- The provider-assigned unique ID for this managed resource.
- is
First booleanParty - Whether the associated client is a first-party client (
true) or not (false). - logo
Uri string - The URI of the associated client's logo.
- name string
- The name of the associated client.
- organization
Id string - The ID of the organization to associate the client (application) with.
- organization
Usage string - How the associated client handles organizations during authentication. Available values are
deny,alloworrequire. This is a read-only reflection of the client's ownorganizationUsagesetting and is managed on theauth0.Clientresource, not here. - use
For booleanMember Access - Whether this client is used for member access to the organization. An association starts out with this turned off and it has to be activated explicitly.
- app_
type str - The type of the associated client application.
- client_
id str - The ID of the client (application) to associate with the organization.
- grant_
types Sequence[str] - The grant types enabled for the associated client.
- id str
- The provider-assigned unique ID for this managed resource.
- is_
first_ boolparty - Whether the associated client is a first-party client (
true) or not (false). - logo_
uri str - The URI of the associated client's logo.
- name str
- The name of the associated client.
- organization_
id str - The ID of the organization to associate the client (application) with.
- organization_
usage str - How the associated client handles organizations during authentication. Available values are
deny,alloworrequire. This is a read-only reflection of the client's ownorganizationUsagesetting and is managed on theauth0.Clientresource, not here. - use_
for_ boolmember_ access - Whether this client is used for member access to the organization. An association starts out with this turned off and it has to be activated explicitly.
- app
Type String - The type of the associated client application.
- client
Id String - The ID of the client (application) to associate with the organization.
- grant
Types List<String> - The grant types enabled for the associated client.
- id String
- The provider-assigned unique ID for this managed resource.
- is
First BooleanParty - Whether the associated client is a first-party client (
true) or not (false). - logo
Uri String - The URI of the associated client's logo.
- name String
- The name of the associated client.
- organization
Id String - The ID of the organization to associate the client (application) with.
- organization
Usage String - How the associated client handles organizations during authentication. Available values are
deny,alloworrequire. This is a read-only reflection of the client's ownorganizationUsagesetting and is managed on theauth0.Clientresource, not here. - use
For BooleanMember Access - Whether this client is used for member access to the organization. An association starts out with this turned off and it has to be activated explicitly.
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.51.0
published on Tuesday, Aug 18, 2026 by Pulumi
published on Tuesday, Aug 18, 2026 by Pulumi