Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListJobsResponse

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 jobs response.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1ListJobsResponse

Returns a new instance of GoogleCloudDataplexV1ListJobsResponse.



5574
5575
5576
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5574

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

Instance Attribute Details

#jobsArray<Google::Apis::DataplexV1::GoogleCloudDataplexV1Job>

Jobs under a given task. Corresponds to the JSON property jobs



5566
5567
5568
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5566

def jobs
  @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)


5572
5573
5574
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5572

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5579
5580
5581
5582
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5579

def update!(**args)
  @jobs = args[:jobs] if args.key?(:jobs)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end