Show / Hide Table of Contents

Class ResourceServerState

Inheritance
System.Object
Pulumi.InputArgs
Pulumi.ResourceArgs
ResourceServerState
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 ResourceServerState : ResourceArgs

Constructors

View Source

ResourceServerState()

Declaration
public ResourceServerState()

Properties

View Source

AllowOfflineAccess

Boolean. Indicates whether or not refresh tokens can be issued for this resource server.

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

EnforcePolicies

Boolean. Indicates whether or not authorization polices are enforced.

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

Identifier

String. Unique identifier for the resource server. Used as the audience parameter for authorization calls. Can not be changed once set.

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

Name

String. Friendly name for the resource server. Cannot include &lt; or > characters.

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

Options

Map(String). Used to store additional metadata

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

Scopes

Set(Resource). List of permissions (scopes) used by this resource server. For details, see Scopes.

Declaration
public InputList<ResourceServerScopeGetArgs> Scopes { get; set; }
Property Value
Type Description
Pulumi.InputList<ResourceServerScopeGetArgs>
View Source

SigningAlg

String. Algorithm used to sign JWTs. Options include HS256 and RS256.

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

SigningSecret

String. Secret used to sign tokens when using symmetric algorithms (HS256).

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

SkipConsentForVerifiableFirstPartyClients

Boolean. Indicates whether or not to skip user consent for applications flagged as first party.

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

TokenDialect

String. Dialect of access tokens that should be issued for this resource server. Options include access_token or access_token_authz (includes permissions).

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

TokenLifetime

Integer. Number of seconds during which access tokens issued for this resource server from the token endpoint remain valid.

Declaration
public Input<int> TokenLifetime { get; set; }
Property Value
Type Description
Pulumi.Input<System.Int32>
View Source

TokenLifetimeForWeb

Integer. Number of seconds during which access tokens issued for this resource server via implicit or hybrid flows remain valid. Cannot be greater than the token_lifetime value.

Declaration
public Input<int> TokenLifetimeForWeb { get; set; }
Property Value
Type Description
Pulumi.Input<System.Int32>
View Source

VerificationLocation

String

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