Class: Google::Apis::CloudiotV1beta1::ListDeviceRegistriesResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::CloudiotV1beta1::ListDeviceRegistriesResponse
 
 
- Defined in:
 - generated/google/apis/cloudiot_v1beta1/classes.rb,
generated/google/apis/cloudiot_v1beta1/representations.rb,
generated/google/apis/cloudiot_v1beta1/representations.rb 
Overview
Response for ListDeviceRegistries.
Instance Attribute Summary collapse
- 
  
    
      #device_registries  ⇒ Array<Google::Apis::CloudiotV1beta1::DeviceRegistry> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The registries that matched the query.
 - 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
If not empty, indicates that there may be more registries that match the request; this value should be passed in a new
ListDeviceRegistriesRequest. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListDeviceRegistriesResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ListDeviceRegistriesResponse.
 - 
  
    
      #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) ⇒ ListDeviceRegistriesResponse
Returns a new instance of ListDeviceRegistriesResponse
      580 581 582  | 
    
      # File 'generated/google/apis/cloudiot_v1beta1/classes.rb', line 580 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#device_registries ⇒ Array<Google::Apis::CloudiotV1beta1::DeviceRegistry>
The registries that matched the query.
Corresponds to the JSON property deviceRegistries
      571 572 573  | 
    
      # File 'generated/google/apis/cloudiot_v1beta1/classes.rb', line 571 def device_registries @device_registries end  | 
  
#next_page_token ⇒ String
If not empty, indicates that there may be more registries that match the
request; this value should be passed in a new
ListDeviceRegistriesRequest.
Corresponds to the JSON property nextPageToken
      578 579 580  | 
    
      # File 'generated/google/apis/cloudiot_v1beta1/classes.rb', line 578 def next_page_token @next_page_token end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      585 586 587 588  | 
    
      # File 'generated/google/apis/cloudiot_v1beta1/classes.rb', line 585 def update!(**args) @device_registries = args[:device_registries] if args.key?(:device_registries) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end  |