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.



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

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



678
679
680
# File 'lib/google/apis/iap_v1/classes.rb', line 678

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)


684
685
686
# File 'lib/google/apis/iap_v1/classes.rb', line 684

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



691
692
693
694
# File 'lib/google/apis/iap_v1/classes.rb', line 691

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