ConnectorProfileOAuthPropertiesArgs

data class ConnectorProfileOAuthPropertiesArgs(val authCodeUrl: Output<String>? = null, val oAuthScopes: Output<List<String>>? = null, val tokenUrl: Output<String>? = null) : ConvertibleToJava<ConnectorProfileOAuthPropertiesArgs>

Constructors

Link copied to clipboard
constructor(authCodeUrl: Output<String>? = null, oAuthScopes: Output<List<String>>? = null, tokenUrl: Output<String>? = null)

Properties

Link copied to clipboard
val authCodeUrl: Output<String>? = null

The authorization code url required to redirect to SAP Login Page to fetch authorization code for OAuth type authentication.

Link copied to clipboard
val oAuthScopes: Output<List<String>>? = null

The OAuth scopes required for OAuth type authentication.

Link copied to clipboard
val tokenUrl: Output<String>? = null

The token url required to fetch access/refresh tokens using authorization code and also to refresh expired access token using refresh token.

Functions

Link copied to clipboard
open override fun toJava(): ConnectorProfileOAuthPropertiesArgs