Class: Google::Apis::IapV1::IdentityAwareProxyClient

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/iap_v1/classes.rb,
lib/google/apis/iap_v1/representations.rb,
lib/google/apis/iap_v1/representations.rb

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ IdentityAwareProxyClient

Returns a new instance of IdentityAwareProxyClient.



498
499
500
# File 'lib/google/apis/iap_v1/classes.rb', line 498

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#display_nameString

Human-friendly name given to the OAuth client. Corresponds to the JSON property displayName

Returns:

  • (String)


486
487
488
# File 'lib/google/apis/iap_v1/classes.rb', line 486

def display_name
  @display_name
end

#nameString

Output only. Unique identifier of the OAuth client. Corresponds to the JSON property name

Returns:

  • (String)


491
492
493
# File 'lib/google/apis/iap_v1/classes.rb', line 491

def name
  @name
end

#secretString

Output only. Client secret of the OAuth client. Corresponds to the JSON property secret

Returns:

  • (String)


496
497
498
# File 'lib/google/apis/iap_v1/classes.rb', line 496

def secret
  @secret
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



503
504
505
506
507
# File 'lib/google/apis/iap_v1/classes.rb', line 503

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