Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListJobsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1ListJobsResponse
- 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
-
#jobs ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1Job>
Jobs under a given task.
-
#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) ⇒ GoogleCloudDataplexV1ListJobsResponse
constructor
A new instance of GoogleCloudDataplexV1ListJobsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1ListJobsResponse
Returns a new instance of GoogleCloudDataplexV1ListJobsResponse.
5444 5445 5446 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5444 def initialize(**args) update!(**args) end |
Instance Attribute Details
#jobs ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1Job>
Jobs under a given task.
Corresponds to the JSON property jobs
5436 5437 5438 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5436 def jobs @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
5442 5443 5444 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5442 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5449 5450 5451 5452 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5449 def update!(**args) @jobs = args[:jobs] if args.key?(:jobs) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |