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]
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