Show / Hide Table of Contents

Class OAuthState

Inheritance
System.Object
InputArgs
ResourceArgs
OAuthState
Inherited Members
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.Okta.App
Assembly: Pulumi.Okta.dll
Syntax
public sealed class OAuthState : ResourceArgs

Constructors

View Source

OAuthState()

Declaration
public OAuthState()

Properties

View Source

AutoKeyRotation

Requested key rotation mode.

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

AutoSubmitToolbar

Display auto submit toolbar.

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

ClientBasicSecret

OAuth client secret key, this can be set when token_endpoint_auth_method is client_secret_basic.

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

ClientId

The client ID of the application.

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

ClientSecret

The client secret of the application.

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

ClientUri

URI to a web page providing information about the client.

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

ConsentMethod

Indicates whether user consent is required or implicit. Valid values: REQUIRED, TRUSTED. Default value is TRUSTED.

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

CustomClientId

This property allows you to set the application's client id.

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

GrantTypes

List of OAuth 2.0 grant types. Conditional validation params found here https://developer.okta.com/docs/api/resources/apps#credentials-settings-details. Defaults to minimum requirements per app type.

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

Groups

The groups assigned to the application. It is recommended not to use this and instead use okta.app.GroupAssignment.

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

HideIos

Do not display application icon on mobile app.

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

HideWeb

Do not display application icon to users.

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

IssuerMode

Indicates whether the Okta Authorization Server uses the original Okta org domain URL or a custom domain URL as the issuer of ID token for this client.

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

Label

The Application's display name.

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

LoginUri

URI that initiates login.

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

LogoUri

URI that references a logo for the client.

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

Name

Name assigned to the application by Okta.

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

OmitSecret

This tells the provider not to persist the application's secret to state. If this is ever changes from true => false your app will be recreated.

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

PolicyUri

URI to web page providing client policy document.

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

PostLogoutRedirectUris

List of URIs for redirection after logout.

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

Profile

Custom JSON that represents an OAuth application's profile.

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

RedirectUris

List of URIs for use in the redirect-based flow. This is required for all application types except service.

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

ResponseTypes

List of OAuth 2.0 response type strings.

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

SignOnMode

Sign on mode of application.

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

Status

The status of the application, by default it is &quot;ACTIVE&quot;.

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

TokenEndpointAuthMethod

Requested authentication method for the token endpoint. It can be set to &quot;none&quot;, &quot;client_secret_post&quot;, &quot;client_secret_basic&quot;, &quot;client_secret_jwt&quot;.

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

TosUri

URI to web page providing client tos (terms of service).

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

Type

The type of OAuth application.

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

Users

The users assigned to the application. It is recommended not to use this and instead use okta.app.User.

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