Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListDataScanJobsResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DataplexV1::GoogleCloudDataplexV1ListDataScanJobsResponse
 
 
- 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 DataScanJobs response.
Instance Attribute Summary collapse
- 
  
    
      #data_scan_jobs  ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanJob> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
DataScanJobs (BASIC view only) under a given dataScan.
 - 
  
    
      #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)  ⇒ GoogleCloudDataplexV1ListDataScanJobsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudDataplexV1ListDataScanJobsResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1ListDataScanJobsResponse
Returns a new instance of GoogleCloudDataplexV1ListDataScanJobsResponse.
      5342 5343 5344  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 5342 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#data_scan_jobs ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanJob>
DataScanJobs (BASIC view only) under a given dataScan.
Corresponds to the JSON property dataScanJobs
      5334 5335 5336  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 5334 def data_scan_jobs @data_scan_jobs 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
      5340 5341 5342  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 5340 def next_page_token @next_page_token end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      5347 5348 5349 5350  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 5347 def update!(**args) @data_scan_jobs = args[:data_scan_jobs] if args.key?(:data_scan_jobs) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end  |