Class: Google::Apis::CloudidentityV1::GoogleAppsCloudidentityDevicesV1alpha1ListDevicesResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudidentityV1::GoogleAppsCloudidentityDevicesV1alpha1ListDevicesResponse
- Defined in:
- generated/google/apis/cloudidentity_v1/classes.rb,
generated/google/apis/cloudidentity_v1/representations.rb,
generated/google/apis/cloudidentity_v1/representations.rb
Overview
Response message that is returned in LRO result of ListDevices Operation.
Instance Attribute Summary collapse
-
#devices ⇒ Array<Google::Apis::CloudidentityV1::GoogleAppsCloudidentityDevicesV1alpha1Device>
Devices meeting the list restrictions.
-
#next_page_token ⇒ String
Token to retrieve the next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAppsCloudidentityDevicesV1alpha1ListDevicesResponse
constructor
A new instance of GoogleAppsCloudidentityDevicesV1alpha1ListDevicesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleAppsCloudidentityDevicesV1alpha1ListDevicesResponse
Returns a new instance of GoogleAppsCloudidentityDevicesV1alpha1ListDevicesResponse.
541 542 543 |
# File 'generated/google/apis/cloudidentity_v1/classes.rb', line 541 def initialize(**args) update!(**args) end |
Instance Attribute Details
#devices ⇒ Array<Google::Apis::CloudidentityV1::GoogleAppsCloudidentityDevicesV1alpha1Device>
Devices meeting the list restrictions.
Corresponds to the JSON property devices
533 534 535 |
# File 'generated/google/apis/cloudidentity_v1/classes.rb', line 533 def devices @devices end |
#next_page_token ⇒ String
Token to retrieve the next page of results. Empty if there are no more
results.
Corresponds to the JSON property nextPageToken
539 540 541 |
# File 'generated/google/apis/cloudidentity_v1/classes.rb', line 539 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
546 547 548 549 |
# File 'generated/google/apis/cloudidentity_v1/classes.rb', line 546 def update!(**args) @devices = args[:devices] if args.key?(:devices) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |