auth0 logo
Auth0 v2.18.0, Mar 20 23

auth0.getBrandingTheme

Use this data source to access information about the tenant’s branding theme settings.

Example Usage

using System.Collections.Generic;
using Pulumi;
using Auth0 = Pulumi.Auth0;

return await Deployment.RunAsync(() => 
{
    var myBrandingTheme = Auth0.GetBrandingTheme.Invoke();

});
package main

import (
	"github.com/pulumi/pulumi-auth0/sdk/v2/go/auth0"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := auth0.LookupBrandingTheme(ctx, nil, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.auth0.Auth0Functions;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var myBrandingTheme = Auth0Functions.getBrandingTheme();

    }
}
import pulumi
import pulumi_auth0 as auth0

my_branding_theme = auth0.get_branding_theme()
import * as pulumi from "@pulumi/pulumi";
import * as auth0 from "@pulumi/auth0";

const myBrandingTheme = auth0.getBrandingTheme({});
variables:
  myBrandingTheme:
    fn::invoke:
      Function: auth0:getBrandingTheme
      Arguments: {}

Using getBrandingTheme

function getBrandingTheme(opts?: InvokeOptions): Promise<GetBrandingThemeResult>
def get_branding_theme(opts: Optional[InvokeOptions] = None) -> GetBrandingThemeResult
func LookupBrandingTheme(ctx *Context, opts ...InvokeOption) (*LookupBrandingThemeResult, error)

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

public static class GetBrandingTheme 
{
    public static Task<GetBrandingThemeResult> InvokeAsync(InvokeOptions? opts = null)
}
public static CompletableFuture<GetBrandingThemeResult> getBrandingTheme(InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
  function: auth0:index/getBrandingTheme:getBrandingTheme
  arguments:
    # arguments dictionary

getBrandingTheme Result

The following output properties are available:

borders List<Property Map>
colors List<Property Map>
displayName String

The display name for the branding theme.

fonts List<Property Map>
id String

The provider-assigned unique ID for this managed resource.

pageBackgrounds List<Property Map>
widgets List<Property Map>

Supporting Types

GetBrandingThemeBorder

GetBrandingThemeColor

GetBrandingThemeFont

GetBrandingThemeFontBodyText

Bold bool
Size double
Bold bool
Size float64
bold Boolean
size Double
bold boolean
size number
bold bool
size float
bold Boolean
size Number

GetBrandingThemeFontButtonsText

Bold bool
Size double
Bold bool
Size float64
bold Boolean
size Double
bold boolean
size number
bold bool
size float
bold Boolean
size Number

GetBrandingThemeFontInputLabel

Bold bool
Size double
Bold bool
Size float64
bold Boolean
size Double
bold boolean
size number
bold bool
size float
bold Boolean
size Number
Bold bool
Size double
Bold bool
Size float64
bold Boolean
size Double
bold boolean
size number
bold bool
size float
bold Boolean
size Number

GetBrandingThemeFontSubtitle

Bold bool
Size double
Bold bool
Size float64
bold Boolean
size Double
bold boolean
size number
bold bool
size float
bold Boolean
size Number

GetBrandingThemeFontTitle

Bold bool
Size double
Bold bool
Size float64
bold Boolean
size Double
bold boolean
size number
bold bool
size float
bold Boolean
size Number

GetBrandingThemePageBackground

GetBrandingThemeWidget

Package Details

Repository
Auth0 pulumi/pulumi-auth0
License
Apache-2.0
Notes

This Pulumi package is based on the auth0 Terraform Provider.