Class: Google::Apis::CloudiotV1::ListDevicesResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudiotV1::ListDevicesResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/cloudiot_v1/classes.rb,
generated/google/apis/cloudiot_v1/representations.rb,
generated/google/apis/cloudiot_v1/representations.rb
Overview
Response for ListDevices
.
Instance Attribute Summary collapse
-
#devices ⇒ Array<Google::Apis::CloudiotV1::Device>
The devices that match the request.
-
#next_page_token ⇒ String
If not empty, indicates that there may be more devices that match the request; this value should be passed in a new
ListDevicesRequest
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListDevicesResponse
constructor
A new instance of ListDevicesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListDevicesResponse
Returns a new instance of ListDevicesResponse.
753 754 755 |
# File 'generated/google/apis/cloudiot_v1/classes.rb', line 753 def initialize(**args) update!(**args) end |
Instance Attribute Details
#devices ⇒ Array<Google::Apis::CloudiotV1::Device>
The devices that match the request.
Corresponds to the JSON property devices
745 746 747 |
# File 'generated/google/apis/cloudiot_v1/classes.rb', line 745 def devices @devices end |
#next_page_token ⇒ String
If not empty, indicates that there may be more devices that match the request;
this value should be passed in a new ListDevicesRequest
.
Corresponds to the JSON property nextPageToken
751 752 753 |
# File 'generated/google/apis/cloudiot_v1/classes.rb', line 751 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
758 759 760 761 |
# File 'generated/google/apis/cloudiot_v1/classes.rb', line 758 def update!(**args) @devices = args[:devices] if args.key?(:devices) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |