Class: Google::Apis::MlV1beta1::GoogleCloudMlV1beta1ListJobsResponse

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

Overview

Response message for the ListJobs method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleCloudMlV1beta1ListJobsResponse

Returns a new instance of GoogleCloudMlV1beta1ListJobsResponse



591
592
593
# File 'generated/google/apis/ml_v1beta1/classes.rb', line 591

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

Instance Attribute Details

#jobsArray<Google::Apis::MlV1beta1::GoogleCloudMlV1beta1Job>

The list of jobs. Corresponds to the JSON property jobs



583
584
585
# File 'generated/google/apis/ml_v1beta1/classes.rb', line 583

def jobs
  @jobs
end

#next_page_tokenString

Optional. Pass this token as the page_token field of the request for a subsequent call. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


589
590
591
# File 'generated/google/apis/ml_v1beta1/classes.rb', line 589

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



596
597
598
599
# File 'generated/google/apis/ml_v1beta1/classes.rb', line 596

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