class Google::Apis::IapV1::IdentityAwareProxyClient

Contains the data that describes an Identity Aware Proxy owned client.

Attributes

display_name[RW]

Human-friendly name given to the OAuth client. Corresponds to the JSON property `displayName` @return [String]

name[RW]

Output only. Unique identifier of the OAuth client. Corresponds to the JSON property `name` @return [String]

secret[RW]

Output only. Client secret of the OAuth client. Corresponds to the JSON property `secret` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/iap_v1/classes.rb, line 489
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/iap_v1/classes.rb, line 494
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