Class: Google::Apis::CesV1::LfA2aV1OpenIdConnectSecurityScheme

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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

#descriptionString

An optional description for the security scheme. Corresponds to the JSON property description

Returns:

  • (String)


5162
5163
5164
# File 'lib/google/apis/ces_v1/classes.rb', line 5162

def description
  @description
end

#open_id_connect_urlString

Required. The OpenID Connect Discovery URL for the OIDC provider's metadata. Corresponds to the JSON property openIdConnectUrl

Returns:

  • (String)


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