Class: Google::Apis::CesV1::LfA2aV1OpenIdConnectSecurityScheme
- Inherits:
-
Object
- Object
- Google::Apis::CesV1::LfA2aV1OpenIdConnectSecurityScheme
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/ces_v1/classes.rb,
lib/google/apis/ces_v1/representations.rb,
lib/google/apis/ces_v1/representations.rb
Overview
Defines a security scheme using OpenID Connect.
Instance Attribute Summary collapse
-
#description ⇒ String
An optional description for the security scheme.
-
#open_id_connect_url ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LfA2aV1OpenIdConnectSecurityScheme
constructor
A new instance of LfA2aV1OpenIdConnectSecurityScheme.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ LfA2aV1OpenIdConnectSecurityScheme
Returns a new instance of LfA2aV1OpenIdConnectSecurityScheme.
5189 5190 5191 |
# File 'lib/google/apis/ces_v1/classes.rb', line 5189 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
An optional description for the security scheme.
Corresponds to the JSON property description
5181 5182 5183 |
# File 'lib/google/apis/ces_v1/classes.rb', line 5181 def description @description end |
#open_id_connect_url ⇒ String
Required. The OpenID Connect Discovery URL for the OIDC provider's metadata.
Corresponds to the JSON property openIdConnectUrl
5187 5188 5189 |
# File 'lib/google/apis/ces_v1/classes.rb', line 5187 def open_id_connect_url @open_id_connect_url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5194 5195 5196 5197 |
# File 'lib/google/apis/ces_v1/classes.rb', line 5194 def update!(**args) @description = args[:description] if args.key?(:description) @open_id_connect_url = args[:open_id_connect_url] if args.key?(:open_id_connect_url) end |