Class: Google::Apis::ComputeAlpha::BackendServiceIapoAuth2ClientInfo
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::BackendServiceIapoAuth2ClientInfo
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb
Instance Attribute Summary collapse
-
#application_name ⇒ String
Application name to be used in OAuth consent screen.
-
#client_name ⇒ String
Name of the client to be generated.
-
#developer_email_address ⇒ String
Developer's information to be used in OAuth consent screen.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BackendServiceIapoAuth2ClientInfo
constructor
A new instance of BackendServiceIapoAuth2ClientInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ BackendServiceIapoAuth2ClientInfo
Returns a new instance of BackendServiceIapoAuth2ClientInfo.
6219 6220 6221 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 6219 def initialize(**args) update!(**args) end |
Instance Attribute Details
#application_name ⇒ String
Application name to be used in OAuth consent screen.
Corresponds to the JSON property applicationName
6205 6206 6207 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 6205 def application_name @application_name end |
#client_name ⇒ String
Name of the client to be generated.
Optional - If not provided, the name will be autogenerated by the
backend.
Corresponds to the JSON property clientName
6212 6213 6214 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 6212 def client_name @client_name end |
#developer_email_address ⇒ String
Developer's information to be used in OAuth consent screen.
Corresponds to the JSON property developerEmailAddress
6217 6218 6219 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 6217 def developer_email_address @developer_email_address end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6224 6225 6226 6227 6228 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 6224 def update!(**args) @application_name = args[:application_name] if args.key?(:application_name) @client_name = args[:client_name] if args.key?(:client_name) @developer_email_address = args[:developer_email_address] if args.key?(:developer_email_address) end |