Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListEntitiesResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DataplexV1::GoogleCloudDataplexV1ListEntitiesResponse
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/dataplex_v1/classes.rb,
lib/google/apis/dataplex_v1/representations.rb,
lib/google/apis/dataplex_v1/representations.rb 
Overview
List metadata entities response.
Instance Attribute Summary collapse
- 
  
    
      #entities  ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1Entity> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Entities in the specified parent zone.
 - 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Token to retrieve the next page of results, or empty if there are no remaining results in the list.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudDataplexV1ListEntitiesResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudDataplexV1ListEntitiesResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1ListEntitiesResponse
Returns a new instance of GoogleCloudDataplexV1ListEntitiesResponse.
      5432 5433 5434  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 5432 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#entities ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1Entity>
Entities in the specified parent zone.
Corresponds to the JSON property entities
      5424 5425 5426  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 5424 def entities @entities end  | 
  
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no remaining
results in the list.
Corresponds to the JSON property nextPageToken
      5430 5431 5432  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 5430 def next_page_token @next_page_token end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      5437 5438 5439 5440  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 5437 def update!(**args) @entities = args[:entities] if args.key?(:entities) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end  |