Class: Google::Apis::CloudschedulerV1beta1::ListJobsResponse

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/cloudscheduler_v1beta1/classes.rb,
generated/google/apis/cloudscheduler_v1beta1/representations.rb,
generated/google/apis/cloudscheduler_v1beta1/representations.rb

Overview

Response message for listing jobs using ListJobs.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ListJobsResponse

Returns a new instance of ListJobsResponse



507
508
509
# File 'generated/google/apis/cloudscheduler_v1beta1/classes.rb', line 507

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

Instance Attribute Details

#jobsArray<Google::Apis::CloudschedulerV1beta1::Job>

The list of jobs. Corresponds to the JSON property jobs



495
496
497
# File 'generated/google/apis/cloudscheduler_v1beta1/classes.rb', line 495

def jobs
  @jobs
end

#next_page_tokenString

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

Returns:

  • (String)


505
506
507
# File 'generated/google/apis/cloudscheduler_v1beta1/classes.rb', line 505

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



512
513
514
515
# File 'generated/google/apis/cloudscheduler_v1beta1/classes.rb', line 512

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