Show / Hide Table of Contents

Class ClientState

Inheritance
System.Object
Pulumi.InputArgs
Pulumi.ResourceArgs
ClientState
Inherited Members
Pulumi.ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Auth0
Assembly: Pulumi.Auth0.dll
Syntax
public sealed class ClientState : ResourceArgs

Constructors

View Source

ClientState()

Declaration
public ClientState()

Properties

View Source

Addons

List(Resource). Configuration settings for add-ons for this client. For details, see Add-ons.

Declaration
public Input<ClientAddonsGetArgs> Addons { get; set; }
Property Value
Type Description
Pulumi.Input<ClientAddonsGetArgs>
View Source

AllowedLogoutUrls

List(String). URLs that Auth0 may redirect to after logout.

Declaration
public InputList<string> AllowedLogoutUrls { get; set; }
Property Value
Type Description
Pulumi.InputList<System.String>
View Source

AllowedOrigins

List(String). URLs that represent valid origins for cross-origin resource sharing. By default, all your callback URLs will be allowed.

Declaration
public InputList<string> AllowedOrigins { get; set; }
Property Value
Type Description
Pulumi.InputList<System.String>
View Source

AppType

String. Type of application the client represents. Options include native, spa, regular_web, non_interactive, rms, box, cloudbees, concur, dropbox, mscrm, echosign, egnyte, newrelic, office365, salesforce, sentry, sharepoint, slack, springcm, zendesk, zoom.

Declaration
public Input<string> AppType { get; set; }
Property Value
Type Description
Pulumi.Input<System.String>
View Source

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://.

Declaration
public InputList<string> Callbacks { get; set; }
Property Value
Type Description
Pulumi.InputList<System.String>
View Source

ClientId

String. ID of the client.

Declaration
public Input<string> ClientId { get; set; }
Property Value
Type Description
Pulumi.Input<System.String>
View Source

ClientMetadata

Map(String)

Declaration
public InputMap<object> ClientMetadata { get; set; }
Property Value
Type Description
Pulumi.InputMap<System.Object>
View Source

ClientSecret

String. Secret for the client; keep this private.

Declaration
public Input<string> ClientSecret { get; set; }
Property Value
Type Description
Pulumi.Input<System.String>
View Source

ClientSecretRotationTrigger

Map.

Declaration
public InputMap<object> ClientSecretRotationTrigger { get; set; }
Property Value
Type Description
Pulumi.InputMap<System.Object>
View Source

CrossOriginAuth

Boolean. Indicates whether or not the client can be used to make cross-origin authentication requests.

Declaration
public Input<bool> CrossOriginAuth { get; set; }
Property Value
Type Description
Pulumi.Input<System.Boolean>
View Source

CrossOriginLoc

String. URL for the location on your site where the cross-origin verification takes place for the cross-origin auth flow. Used when performing auth in your own domain instead of through the Auth0-hosted login page.

Declaration
public Input<string> CrossOriginLoc { get; set; }
Property Value
Type Description
Pulumi.Input<System.String>
View Source

CustomLoginPage

String. Content of the custom login page.

Declaration
public Input<string> CustomLoginPage { get; set; }
Property Value
Type Description
Pulumi.Input<System.String>
View Source

CustomLoginPageOn

Boolean. Indicates whether or not a custom login page is to be used.

Declaration
public Input<bool> CustomLoginPageOn { get; set; }
Property Value
Type Description
Pulumi.Input<System.Boolean>
View Source

CustomLoginPagePreview

String.

Declaration
public Input<string> CustomLoginPagePreview { get; set; }
Property Value
Type Description
Pulumi.Input<System.String>
View Source

Description

String, (Max length = 140 characters). Description of the purpose of the client.

Declaration
public Input<string> Description { get; set; }
Property Value
Type Description
Pulumi.Input<System.String>
View Source

EncryptionKey

Map(String).

Declaration
public InputMap<string> EncryptionKey { get; set; }
Property Value
Type Description
Pulumi.InputMap<System.String>
View Source

FormTemplate

String. Form template for WS-Federation protocol.

Declaration
public Input<string> FormTemplate { get; set; }
Property Value
Type Description
Pulumi.Input<System.String>
View Source

GrantTypes

List(String). Types of grants that this client is authorized to use.

Declaration
public InputList<string> GrantTypes { get; set; }
Property Value
Type Description
Pulumi.InputList<System.String>
View Source

InitiateLoginUri

Declaration
public Input<string> InitiateLoginUri { get; set; }
Property Value
Type Description
Pulumi.Input<System.String>
View Source

IsFirstParty

Boolean. Indicates whether or not this client is a first-party client.

Declaration
public Input<bool> IsFirstParty { get; set; }
Property Value
Type Description
Pulumi.Input<System.Boolean>
View Source

IsTokenEndpointIpHeaderTrusted

Boolean. Indicates whether or not the token endpoint IP header is trusted.

Declaration
public Input<bool> IsTokenEndpointIpHeaderTrusted { get; set; }
Property Value
Type Description
Pulumi.Input<System.Boolean>
View Source

JwtConfiguration

List(Resource). Configuration settings for the JWTs issued for this client. For details, see JWT Configuration.

Declaration
public Input<ClientJwtConfigurationGetArgs> JwtConfiguration { get; set; }
Property Value
Type Description
Pulumi.Input<ClientJwtConfigurationGetArgs>
View Source

LogoUri

String. URL of the logo for the client. Recommended size is 150px x 150px. If none is set, the default badge for the application type will be shown.

Declaration
public Input<string> LogoUri { get; set; }
Property Value
Type Description
Pulumi.Input<System.String>
View Source

Mobile

List(Resource). Configuration settings for mobile native applications. For details, see Mobile.

Declaration
public Input<ClientMobileGetArgs> Mobile { get; set; }
Property Value
Type Description
Pulumi.Input<ClientMobileGetArgs>
View Source

Name

String. Name of the client.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Pulumi.Input<System.String>
View Source

OidcConformant

Boolean. Indicates whether or not this client will conform to strict OIDC specifications.

Declaration
public Input<bool> OidcConformant { get; set; }
Property Value
Type Description
Pulumi.Input<System.Boolean>
View Source

Sso

Boolean. Indicates whether or not the client should use Auth0 rather than the IdP to perform Single Sign-On (SSO). True = Use Auth0.

Declaration
public Input<bool> Sso { get; set; }
Property Value
Type Description
Pulumi.Input<System.Boolean>
View Source

SsoDisabled

Boolean. Indicates whether or not SSO is disabled.

Declaration
public Input<bool> SsoDisabled { get; set; }
Property Value
Type Description
Pulumi.Input<System.Boolean>
View Source

TokenEndpointAuthMethod

String. Defines the requested authentication method for the token endpoint. Options include none (public client without a client secret), client_secret_post (client uses HTTP POST parameters), client_secret_basic (client uses HTTP Basic).

Declaration
public Input<string> TokenEndpointAuthMethod { get; set; }
Property Value
Type Description
Pulumi.Input<System.String>
View Source

WebOrigins

List(String). URLs that represent valid web origins for use with web message response mode.

Declaration
public InputList<string> WebOrigins { get; set; }
Property Value
Type Description
Pulumi.InputList<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.