Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequest
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb
Overview
Request message for JobService.SearchModelDeploymentMonitoringStatsAnomalies.
Instance Attribute Summary collapse
-
#deployed_model_id ⇒ String
Required.
-
#end_time ⇒ String
The latest timestamp of stats being generated.
-
#feature_display_name ⇒ String
The feature display name.
-
#objectives ⇒ Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequestStatsAnomaliesObjective>
Required.
-
#page_size ⇒ Fixnum
The standard list page size.
-
#page_token ⇒ String
A page token received from a previous JobService.
-
#start_time ⇒ String
The earliest timestamp of stats being generated.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequest
constructor
A new instance of GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequest
Returns a new instance of GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequest.
28469 28470 28471 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28469 def initialize(**args) update!(**args) end |
Instance Attribute Details
#deployed_model_id ⇒ String
Required. The DeployedModel ID of the [
ModelDeploymentMonitoringObjectiveConfig.deployed_model_id].
Corresponds to the JSON property deployedModelId
28431 28432 28433 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28431 def deployed_model_id @deployed_model_id end |
#end_time ⇒ String
The latest timestamp of stats being generated. If not set, indicates feching
stats till the latest possible one.
Corresponds to the JSON property endTime
28437 28438 28439 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28437 def end_time @end_time end |
#feature_display_name ⇒ String
The feature display name. If specified, only return the stats belonging to
this feature. Format: ModelMonitoringStatsAnomalies.
FeatureHistoricStatsAnomalies.feature_display_name, example: "user_destination"
.
Corresponds to the JSON property featureDisplayName
28445 28446 28447 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28445 def feature_display_name @feature_display_name end |
#objectives ⇒ Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequestStatsAnomaliesObjective>
Required. Objectives of the stats to retrieve.
Corresponds to the JSON property objectives
28450 28451 28452 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28450 def objectives @objectives end |
#page_size ⇒ Fixnum
The standard list page size.
Corresponds to the JSON property pageSize
28455 28456 28457 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28455 def page_size @page_size end |
#page_token ⇒ String
A page token received from a previous JobService.
SearchModelDeploymentMonitoringStatsAnomalies call.
Corresponds to the JSON property pageToken
28461 28462 28463 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28461 def page_token @page_token end |
#start_time ⇒ String
The earliest timestamp of stats being generated. If not set, indicates
fetching stats till the earliest possible one.
Corresponds to the JSON property startTime
28467 28468 28469 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28467 def start_time @start_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
28474 28475 28476 28477 28478 28479 28480 28481 28482 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28474 def update!(**args) @deployed_model_id = args[:deployed_model_id] if args.key?(:deployed_model_id) @end_time = args[:end_time] if args.key?(:end_time) @feature_display_name = args[:feature_display_name] if args.key?(:feature_display_name) @objectives = args[:objectives] if args.key?(:objectives) @page_size = args[:page_size] if args.key?(:page_size) @page_token = args[:page_token] if args.key?(:page_token) @start_time = args[:start_time] if args.key?(:start_time) end |