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.
5247 5248 5249 |
# File 'lib/google/apis/ces_v1/classes.rb', line 5247 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
An optional description for the security scheme.
Corresponds to the JSON property description
5239 5240 5241 |
# File 'lib/google/apis/ces_v1/classes.rb', line 5239 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
5245 5246 5247 |
# File 'lib/google/apis/ces_v1/classes.rb', line 5245 def open_id_connect_url @open_id_connect_url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5252 5253 5254 5255 |
# File 'lib/google/apis/ces_v1/classes.rb', line 5252 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 |