Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListMetadataJobsResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DataplexV1::GoogleCloudDataplexV1ListMetadataJobsResponse
 
 
- 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 jobs response.
Instance Attribute Summary collapse
- 
  
    
      #metadata_jobs  ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJob> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Metadata jobs under the specified parent location.
 - 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A token to retrieve the next page of results.
 - 
  
    
      #unreachable_locations  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Locations that the service couldn't reach.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudDataplexV1ListMetadataJobsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudDataplexV1ListMetadataJobsResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1ListMetadataJobsResponse
Returns a new instance of GoogleCloudDataplexV1ListMetadataJobsResponse.
      5637 5638 5639  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 5637 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#metadata_jobs ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJob>
Metadata jobs under the specified parent location.
Corresponds to the JSON property metadataJobs
      5624 5625 5626  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 5624 def @metadata_jobs end  | 
  
#next_page_token ⇒ String
A token to retrieve the next page of results. If there are no more results in
the list, the value is empty.
Corresponds to the JSON property nextPageToken
      5630 5631 5632  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 5630 def next_page_token @next_page_token end  | 
  
#unreachable_locations ⇒ Array<String>
Locations that the service couldn't reach.
Corresponds to the JSON property unreachableLocations
      5635 5636 5637  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 5635 def unreachable_locations @unreachable_locations end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      5642 5643 5644 5645 5646  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 5642 def update!(**args) @metadata_jobs = args[:metadata_jobs] if args.key?(:metadata_jobs) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable_locations = args[:unreachable_locations] if args.key?(:unreachable_locations) end  |