Class: Google::Apis::CloudiotV1::ListDevicesResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudiotV1::ListDevicesResponse
- 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.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListDevicesResponse
Returns a new instance of ListDevicesResponse
738 739 740 |
# File 'generated/google/apis/cloudiot_v1/classes.rb', line 738 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
730 731 732 |
# File 'generated/google/apis/cloudiot_v1/classes.rb', line 730 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
736 737 738 |
# File 'generated/google/apis/cloudiot_v1/classes.rb', line 736 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
743 744 745 746 |
# File 'generated/google/apis/cloudiot_v1/classes.rb', line 743 def update!(**args) @devices = args[:devices] if args.key?(:devices) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |