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.



585
586
587
# File 'lib/google/apis/iap_v1/classes.rb', line 585

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



577
578
579
# File 'lib/google/apis/iap_v1/classes.rb', line 577

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)


583
584
585
# File 'lib/google/apis/iap_v1/classes.rb', line 583

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



590
591
592
593
# File 'lib/google/apis/iap_v1/classes.rb', line 590

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