class Google::Apis::ConnectorsV1::Oauth2JwtBearer

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

Attributes

client_key[RW]

Secret provides a reference to entries in Secret Manager. Corresponds to the JSON property ‘clientKey` @return [Google::Apis::ConnectorsV1::Secret]

jwt_claims[RW]

JWT claims used for the jwt-bearer authorization grant. Corresponds to the JSON property ‘jwtClaims` @return [Google::Apis::ConnectorsV1::JwtClaims]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/connectors_v1/classes.rb, line 1347
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/connectors_v1/classes.rb, line 1352
def update!(**args)
  @client_key = args[:client_key] if args.key?(:client_key)
  @jwt_claims = args[:jwt_claims] if args.key?(:jwt_claims)
end