Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListDataScanJobsResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1ListDataScanJobsResponse

Returns a new instance of GoogleCloudDataplexV1ListDataScanJobsResponse.



5595
5596
5597
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5595

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#data_scan_jobsArray<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataScanJob>

DataScanJobs (BASIC view only) under a given dataScan. Corresponds to the JSON property dataScanJobs



5587
5588
5589
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5587

def data_scan_jobs
  @data_scan_jobs
end

#next_page_tokenString

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

Returns:

  • (String)


5593
5594
5595
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5593

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5600
5601
5602
5603
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5600

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