Oauth2ClientCredentialsArgs

data class Oauth2ClientCredentialsArgs(val clientId: Output<String>? = null, val clientSecret: Output<SecretArgs>? = null) : ConvertibleToJava<Oauth2ClientCredentialsArgs>

Parameters to support Oauth 2.0 Client Credentials Grant Authentication. See https://tools.ietf.org/html/rfc6749#section-1.3.4 for more details.

Constructors

Link copied to clipboard
fun Oauth2ClientCredentialsArgs(clientId: Output<String>? = null, clientSecret: Output<SecretArgs>? = null)

Functions

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

Properties

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

The client identifier.

Link copied to clipboard
val clientSecret: Output<SecretArgs>? = null

Secret version reference containing the client secret.