Class: Google::Apis::MlV1::GoogleCloudMlV1ListJobsResponse

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

Overview

Response message for the ListJobs method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudMlV1ListJobsResponse

Returns a new instance of GoogleCloudMlV1ListJobsResponse.



1473
1474
1475
# File 'lib/google/apis/ml_v1/classes.rb', line 1473

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

Instance Attribute Details

#jobsArray<Google::Apis::MlV1::GoogleCloudMlV1Job>

The list of jobs. Corresponds to the JSON property jobs



1465
1466
1467
# File 'lib/google/apis/ml_v1/classes.rb', line 1465

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)


1471
1472
1473
# File 'lib/google/apis/ml_v1/classes.rb', line 1471

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1478
1479
1480
1481
# File 'lib/google/apis/ml_v1/classes.rb', line 1478

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