Oauth2JwtBearerArgs

data class Oauth2JwtBearerArgs(val clientKey: Output<SecretArgs>? = null, val jwtClaims: Output<JwtClaimsArgs>? = null) : ConvertibleToJava<Oauth2JwtBearerArgs>

Parameters to support JSON Web Token (JWT) Profile for Oauth 2.0 Authorization Grant based authentication. See https://tools.ietf.org/html/rfc7523 for more details.

Constructors

Link copied to clipboard
constructor(clientKey: Output<SecretArgs>? = null, jwtClaims: Output<JwtClaimsArgs>? = null)

Properties

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

Secret version reference containing a PKCS#8 PEM-encoded private key associated with the Client Certificate. This private key will be used to sign JWTs used for the jwt-bearer authorization grant. Specified in the form as: projects/*/secrets/*/versions/*.

Link copied to clipboard
val jwtClaims: Output<JwtClaimsArgs>? = null

JwtClaims providers fields to generate the token. //*/

Functions

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