Class: Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1AuthConfigOauth2JwtBearer
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1AuthConfigOauth2JwtBearer
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/integrations_v1alpha/classes.rb,
lib/google/apis/integrations_v1alpha/representations.rb,
lib/google/apis/integrations_v1alpha/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
-
#client_key ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret
Secret provides a reference to entries in Secret Manager.
-
#jwt_claims ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1AuthConfigOauth2JwtBearerJwtClaims
JWT claims used for the jwt-bearer authorization grant.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudConnectorsV1AuthConfigOauth2JwtBearer
constructor
A new instance of GoogleCloudConnectorsV1AuthConfigOauth2JwtBearer.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudConnectorsV1AuthConfigOauth2JwtBearer
Returns a new instance of GoogleCloudConnectorsV1AuthConfigOauth2JwtBearer.
4856 4857 4858 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4856 def initialize(**args) update!(**args) end |
Instance Attribute Details
#client_key ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1Secret
Secret provides a reference to entries in Secret Manager.
Corresponds to the JSON property clientKey
4849 4850 4851 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4849 def client_key @client_key end |
#jwt_claims ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudConnectorsV1AuthConfigOauth2JwtBearerJwtClaims
JWT claims used for the jwt-bearer authorization grant.
Corresponds to the JSON property jwtClaims
4854 4855 4856 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4854 def jwt_claims @jwt_claims end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4861 4862 4863 4864 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4861 def update!(**args) @client_key = args[:client_key] if args.key?(:client_key) @jwt_claims = args[:jwt_claims] if args.key?(:jwt_claims) end |