Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SearchModelMonitoringAlertsResponse
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SearchModelMonitoringAlertsResponse
- 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 ModelMonitoringService.SearchModelMonitoringAlerts.
Instance Attribute Summary collapse
-
#model_monitoring_alerts ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringAlert>
Alerts retrieved for the requested objectives.
-
#next_page_token ⇒ String
The page token that can be used by the next ModelMonitoringService.
-
#total_number_alerts ⇒ Fixnum
The total number of alerts retrieved by the requested objectives.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1SearchModelMonitoringAlertsResponse
constructor
A new instance of GoogleCloudAiplatformV1beta1SearchModelMonitoringAlertsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1SearchModelMonitoringAlertsResponse
Returns a new instance of GoogleCloudAiplatformV1beta1SearchModelMonitoringAlertsResponse.
31317 31318 31319 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 31317 def initialize(**args) update!(**args) end |
Instance Attribute Details
#model_monitoring_alerts ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringAlert>
Alerts retrieved for the requested objectives. Sorted by alert time
descendingly.
Corresponds to the JSON property modelMonitoringAlerts
31304 31305 31306 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 31304 def model_monitoring_alerts @model_monitoring_alerts end |
#next_page_token ⇒ String
The page token that can be used by the next ModelMonitoringService.
SearchModelMonitoringAlerts call.
Corresponds to the JSON property nextPageToken
31310 31311 31312 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 31310 def next_page_token @next_page_token end |
#total_number_alerts ⇒ Fixnum
The total number of alerts retrieved by the requested objectives.
Corresponds to the JSON property totalNumberAlerts
31315 31316 31317 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 31315 def total_number_alerts @total_number_alerts end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
31322 31323 31324 31325 31326 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 31322 def update!(**args) @model_monitoring_alerts = args[:model_monitoring_alerts] if args.key?(:model_monitoring_alerts) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @total_number_alerts = args[:total_number_alerts] if args.key?(:total_number_alerts) end |