Class: Google::Apis::IntegrationsV1::GoogleCloudConnectorsV1AuthConfigOauth2JwtBearer

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/integrations_v1/classes.rb,
lib/google/apis/integrations_v1/representations.rb,
lib/google/apis/integrations_v1/representations.rb

Overview

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.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudConnectorsV1AuthConfigOauth2JwtBearer

Returns a new instance of GoogleCloudConnectorsV1AuthConfigOauth2JwtBearer.



5265
5266
5267
# File 'lib/google/apis/integrations_v1/classes.rb', line 5265

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#client_keyGoogle::Apis::IntegrationsV1::GoogleCloudConnectorsV1Secret

Secret provides a reference to entries in Secret Manager. Corresponds to the JSON property clientKey



5258
5259
5260
# File 'lib/google/apis/integrations_v1/classes.rb', line 5258

def client_key
  @client_key
end

#jwt_claimsGoogle::Apis::IntegrationsV1::GoogleCloudConnectorsV1AuthConfigOauth2JwtBearerJwtClaims

JWT claims used for the jwt-bearer authorization grant. Corresponds to the JSON property jwtClaims



5263
5264
5265
# File 'lib/google/apis/integrations_v1/classes.rb', line 5263

def jwt_claims
  @jwt_claims
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5270
5271
5272
5273
# File 'lib/google/apis/integrations_v1/classes.rb', line 5270

def update!(**args)
  @client_key = args[:client_key] if args.key?(:client_key)
  @jwt_claims = args[:jwt_claims] if args.key?(:jwt_claims)
end