Class: Google::Apis::IapV1::ListIdentityAwareProxyClientsResponse

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

Response message for ListIdentityAwareProxyClients.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListIdentityAwareProxyClientsResponse

Returns a new instance of ListIdentityAwareProxyClientsResponse.



689
690
691
# File 'lib/google/apis/iap_v1/classes.rb', line 689

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

Instance Attribute Details

#identity_aware_proxy_clientsArray<Google::Apis::IapV1::IdentityAwareProxyClient>

Clients existing in the brand. Corresponds to the JSON property identityAwareProxyClients



681
682
683
# File 'lib/google/apis/iap_v1/classes.rb', line 681

def identity_aware_proxy_clients
  @identity_aware_proxy_clients
end

#next_page_tokenString

A token, which can be send as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


687
688
689
# File 'lib/google/apis/iap_v1/classes.rb', line 687

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



694
695
696
697
# File 'lib/google/apis/iap_v1/classes.rb', line 694

def update!(**args)
  @identity_aware_proxy_clients = args[:identity_aware_proxy_clients] if args.key?(:identity_aware_proxy_clients)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end