import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * This resource allows you to manage branding within your Auth0 tenant. Auth0 can be customized with a look and feel that aligns with your organization's brand requirements and user expectations. * * ## Import * * As this is not a resource identifiable by an ID within the Auth0 Management API, * * branding can be imported using a random string. * * We recommend [Version 4 UUID](https://www.uuidgenerator.net/version4) * * Example: * * ```sh * $ pulumi import auth0:index/branding:Branding my_brand "22f4f21b-017a-319d-92e7-2291c1ca36c4" * ``` */ export declare class Branding extends pulumi.CustomResource { /** * Get an existing Branding resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: BrandingState, opts?: pulumi.CustomResourceOptions): Branding; /** * Returns true if the given object is an instance of Branding. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Branding; /** * Configuration settings for colors for branding. */ readonly colors: pulumi.Output; /** * URL for the favicon. */ readonly faviconUrl: pulumi.Output; /** * Configuration settings to customize the font. */ readonly font: pulumi.Output; /** * URL of logo for branding. */ readonly logoUrl: pulumi.Output; /** * Configuration settings for Universal Login. */ readonly universalLogin: pulumi.Output; /** * Create a Branding resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args?: BrandingArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Branding resources. */ export interface BrandingState { /** * Configuration settings for colors for branding. */ colors?: pulumi.Input; /** * URL for the favicon. */ faviconUrl?: pulumi.Input; /** * Configuration settings to customize the font. */ font?: pulumi.Input; /** * URL of logo for branding. */ logoUrl?: pulumi.Input; /** * Configuration settings for Universal Login. */ universalLogin?: pulumi.Input; } /** * The set of arguments for constructing a Branding resource. */ export interface BrandingArgs { /** * Configuration settings for colors for branding. */ colors?: pulumi.Input; /** * URL for the favicon. */ faviconUrl?: pulumi.Input; /** * Configuration settings to customize the font. */ font?: pulumi.Input; /** * URL of logo for branding. */ logoUrl?: pulumi.Input; /** * Configuration settings for Universal Login. */ universalLogin?: pulumi.Input; }