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.
5231 5232 5233 |
# File 'lib/google/apis/ces_v1/classes.rb', line 5231 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
An optional description for the security scheme.
Corresponds to the JSON property description
5223 5224 5225 |
# File 'lib/google/apis/ces_v1/classes.rb', line 5223 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
5229 5230 5231 |
# File 'lib/google/apis/ces_v1/classes.rb', line 5229 def open_id_connect_url @open_id_connect_url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5236 5237 5238 5239 |
# File 'lib/google/apis/ces_v1/classes.rb', line 5236 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 |