Class: Google::Apis::IapV1::IdentityAwareProxyClient
- Inherits:
-
Object
- Object
- Google::Apis::IapV1::IdentityAwareProxyClient
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/iap_v1/classes.rb,
generated/google/apis/iap_v1/representations.rb,
generated/google/apis/iap_v1/representations.rb
Overview
Contains the data that describes an Identity Aware Proxy owned client.
Instance Attribute Summary collapse
-
#display_name ⇒ String
Human-friendly name given to the OAuth client.
-
#name ⇒ String
Output only.
-
#secret ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ IdentityAwareProxyClient
constructor
A new instance of IdentityAwareProxyClient.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ IdentityAwareProxyClient
Returns a new instance of IdentityAwareProxyClient.
481 482 483 |
# File 'generated/google/apis/iap_v1/classes.rb', line 481 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
Human-friendly name given to the OAuth client.
Corresponds to the JSON property displayName
469 470 471 |
# File 'generated/google/apis/iap_v1/classes.rb', line 469 def display_name @display_name end |
#name ⇒ String
Output only. Unique identifier of the OAuth client.
Corresponds to the JSON property name
474 475 476 |
# File 'generated/google/apis/iap_v1/classes.rb', line 474 def name @name end |
#secret ⇒ String
Output only. Client secret of the OAuth client.
Corresponds to the JSON property secret
479 480 481 |
# File 'generated/google/apis/iap_v1/classes.rb', line 479 def secret @secret end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
486 487 488 489 490 |
# File 'generated/google/apis/iap_v1/classes.rb', line 486 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @name = args[:name] if args.key?(:name) @secret = args[:secret] if args.key?(:secret) end |