Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ListFeatureMonitorJobsResponse

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

Overview

Response message for FeatureRegistryService.ListFeatureMonitorJobs.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ListFeatureMonitorJobsResponse

Returns a new instance of GoogleCloudAiplatformV1beta1ListFeatureMonitorJobsResponse.



30288
30289
30290
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 30288

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

Instance Attribute Details

#feature_monitor_jobsArray<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeatureMonitorJob>

The FeatureMonitorJobs matching the request. Corresponds to the JSON property featureMonitorJobs



30279
30280
30281
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 30279

def feature_monitor_jobs
  @feature_monitor_jobs
end

#next_page_tokenString

A token, which can be sent as ListFeatureMonitorJobsRequest.page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


30286
30287
30288
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 30286

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



30293
30294
30295
30296
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 30293

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