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

Inherits:
Object
  • Object
show all
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

Response message for ListIdentityAwareProxyClients.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ListIdentityAwareProxyClientsResponse

Returns a new instance of ListIdentityAwareProxyClientsResponse.



503
504
505
# File 'generated/google/apis/iap_v1/classes.rb', line 503

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



495
496
497
# File 'generated/google/apis/iap_v1/classes.rb', line 495

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)


501
502
503
# File 'generated/google/apis/iap_v1/classes.rb', line 501

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



508
509
510
511
# File 'generated/google/apis/iap_v1/classes.rb', line 508

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