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.
5170 5171 5172 |
# File 'lib/google/apis/ces_v1/classes.rb', line 5170 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
An optional description for the security scheme.
Corresponds to the JSON property description
5162 5163 5164 |
# File 'lib/google/apis/ces_v1/classes.rb', line 5162 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
5168 5169 5170 |
# File 'lib/google/apis/ces_v1/classes.rb', line 5168 def open_id_connect_url @open_id_connect_url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5175 5176 5177 5178 |
# File 'lib/google/apis/ces_v1/classes.rb', line 5175 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 |