Class: Google::Apis::IapV1::ListIdentityAwareProxyClientsResponse
- Inherits:
-
Object
- Object
- Google::Apis::IapV1::ListIdentityAwareProxyClientsResponse
- 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
-
#identity_aware_proxy_clients ⇒ Array<Google::Apis::IapV1::IdentityAwareProxyClient>
Clients existing in the brand.
-
#next_page_token ⇒ String
A token, which can be send as
page_token
to retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListIdentityAwareProxyClientsResponse
constructor
A new instance of ListIdentityAwareProxyClientsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListIdentityAwareProxyClientsResponse
Returns a new instance of ListIdentityAwareProxyClientsResponse.
527 528 529 |
# File 'generated/google/apis/iap_v1/classes.rb', line 527 def initialize(**args) update!(**args) end |
Instance Attribute Details
#identity_aware_proxy_clients ⇒ Array<Google::Apis::IapV1::IdentityAwareProxyClient>
Clients existing in the brand.
Corresponds to the JSON property identityAwareProxyClients
519 520 521 |
# File 'generated/google/apis/iap_v1/classes.rb', line 519 def identity_aware_proxy_clients @identity_aware_proxy_clients end |
#next_page_token ⇒ String
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
525 526 527 |
# File 'generated/google/apis/iap_v1/classes.rb', line 525 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
532 533 534 535 |
# File 'generated/google/apis/iap_v1/classes.rb', line 532 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 |