Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListContentResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DataplexV1::GoogleCloudDataplexV1ListContentResponse
 
 
- 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 content response.
Instance Attribute Summary collapse
- 
  
    
      #content  ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1Content> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Content under the given parent lake.
 - 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Token to retrieve the next page of results, or empty if there are no more results in the list.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudDataplexV1ListContentResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudDataplexV1ListContentResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1ListContentResponse
Returns a new instance of GoogleCloudDataplexV1ListContentResponse.
      5252 5253 5254  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 5252 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#content ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1Content>
Content under the given parent lake.
Corresponds to the JSON property content
      5244 5245 5246  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 5244 def content @content end  | 
  
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more
results in the list.
Corresponds to the JSON property nextPageToken
      5250 5251 5252  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 5250 def next_page_token @next_page_token end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      5257 5258 5259 5260  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 5257 def update!(**args) @content = args[:content] if args.key?(:content) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end  |