Class: Google::Apis::CloudschedulerV1beta1::ListJobsResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudschedulerV1beta1::ListJobsResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudscheduler_v1beta1/classes.rb,
lib/google/apis/cloudscheduler_v1beta1/representations.rb,
lib/google/apis/cloudscheduler_v1beta1/representations.rb more...
Overview
Response message for listing jobs using ListJobs.
Instance Attribute Summary collapse
-
#jobs ⇒ Array<Google::Apis::CloudschedulerV1beta1::Job>
The list of jobs.
-
#next_page_token ⇒ String
A token to retrieve next page of results.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListJobsResponse
constructor
A new instance of ListJobsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListJobsResponse
Returns a new instance of ListJobsResponse.
465 466 467 |
# File 'lib/google/apis/cloudscheduler_v1beta1/classes.rb', line 465 def initialize(**args) update!(**args) end |
Instance Attribute Details
#jobs ⇒ Array<Google::Apis::CloudschedulerV1beta1::Job>
The list of jobs.
Corresponds to the JSON property jobs
455 456 457 |
# File 'lib/google/apis/cloudscheduler_v1beta1/classes.rb', line 455 def jobs @jobs end |
#next_page_token ⇒ String
A token to retrieve next page of results. Pass this value in the page_token
field in the subsequent call to ListJobs to retrieve the next page of results.
If this is empty it indicates that there are no more results through which to
paginate. The page token is valid for only 2 hours.
Corresponds to the JSON property nextPageToken
463 464 465 |
# File 'lib/google/apis/cloudscheduler_v1beta1/classes.rb', line 463 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
470 471 472 473 |
# File 'lib/google/apis/cloudscheduler_v1beta1/classes.rb', line 470 def update!(**args) @jobs = args[:jobs] if args.key?(:jobs) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |