Skip to content

Commit 67c780b

Browse files
Google APIscopybara-github
authored andcommitted
feat: add Vizier service to aiplatform v1
Committer: @dizcology PiperOrigin-RevId: 394116440
1 parent aa15f32 commit 67c780b

3 files changed

Lines changed: 543 additions & 1 deletion

File tree

google/cloud/aiplatform/v1/aiplatform_v1.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,13 @@ apis:
1414
- name: google.cloud.aiplatform.v1.PipelineService
1515
- name: google.cloud.aiplatform.v1.PredictionService
1616
- name: google.cloud.aiplatform.v1.SpecialistPoolService
17+
- name: google.cloud.aiplatform.v1.VizierService
1718

1819
types:
1920
- name: google.cloud.aiplatform.v1.BatchMigrateResourcesOperationMetadata
2021
- name: google.cloud.aiplatform.v1.BatchMigrateResourcesResponse
22+
- name: google.cloud.aiplatform.v1.CheckTrialEarlyStoppingStateMetatdata
23+
- name: google.cloud.aiplatform.v1.CheckTrialEarlyStoppingStateResponse
2124
- name: google.cloud.aiplatform.v1.CreateDatasetOperationMetadata
2225
- name: google.cloud.aiplatform.v1.CreateEndpointOperationMetadata
2326
- name: google.cloud.aiplatform.v1.CreateIndexEndpointOperationMetadata
@@ -35,6 +38,8 @@ types:
3538
- name: google.cloud.aiplatform.v1.ImportDataOperationMetadata
3639
- name: google.cloud.aiplatform.v1.ImportDataResponse
3740
- name: google.cloud.aiplatform.v1.SpecialistPool
41+
- name: google.cloud.aiplatform.v1.SuggestTrialsMetadata
42+
- name: google.cloud.aiplatform.v1.SuggestTrialsResponse
3843
- name: google.cloud.aiplatform.v1.UndeployIndexOperationMetadata
3944
- name: google.cloud.aiplatform.v1.UndeployIndexResponse
4045
- name: google.cloud.aiplatform.v1.UndeployModelOperationMetadata
@@ -97,6 +102,8 @@ backend:
97102
deadline: 600.0
98103
- selector: 'google.cloud.aiplatform.v1.SpecialistPoolService.*'
99104
deadline: 60.0
105+
- selector: 'google.cloud.aiplatform.v1.VizierService.*'
106+
deadline: 60.0
100107
- selector: google.cloud.location.Locations.GetLocation
101108
deadline: 30.0
102109
- selector: google.cloud.location.Locations.ListLocations
@@ -457,6 +464,10 @@ authentication:
457464
oauth:
458465
canonical_scopes: |-
459466
https://www.googleapis.com/auth/cloud-platform
467+
- selector: 'google.cloud.aiplatform.v1.VizierService.*'
468+
oauth:
469+
canonical_scopes: |-
470+
https://www.googleapis.com/auth/cloud-platform
460471
- selector: google.cloud.location.Locations.GetLocation
461472
oauth:
462473
canonical_scopes: |-

google/cloud/aiplatform/v1/job_service.proto

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -923,7 +923,33 @@ message UpdateModelDeploymentMonitoringJobRequest {
923923
// server.
924924
ModelDeploymentMonitoringJob model_deployment_monitoring_job = 1 [(google.api.field_behavior) = REQUIRED];
925925

926-
// Required. The update mask applies to the resource.
926+
// Required. The update mask is used to specify the fields to be overwritten in the
927+
// ModelDeploymentMonitoringJob resource by the update.
928+
// The fields specified in the update_mask are relative to the resource, not
929+
// the full request. A field will be overwritten if it is in the mask. If the
930+
// user does not provide a mask then only the non-empty fields present in the
931+
// request will be overwritten. Set the update_mask to `*` to override all
932+
// fields.
933+
// For the objective config, the user can either provide the update mask for
934+
// model_deployment_monitoring_objective_configs or any combination of its
935+
// nested fields, such as:
936+
// model_deployment_monitoring_objective_configs.objective_config.training_dataset.
937+
//
938+
// Updatable fields:
939+
//
940+
// * `display_name`
941+
// * `model_deployment_monitoring_schedule_config`
942+
// * `model_monitoring_alert_config`
943+
// * `logging_sampling_strategy`
944+
// * `labels`
945+
// * `log_ttl`
946+
// * `enable_monitoring_pipeline_logs`
947+
// . and
948+
// * `model_deployment_monitoring_objective_configs`
949+
// . or
950+
// * `model_deployment_monitoring_objective_configs.objective_config.training_dataset`
951+
// * `model_deployment_monitoring_objective_configs.objective_config.training_prediction_skew_detection_config`
952+
// * `model_deployment_monitoring_objective_configs.objective_config.prediction_drift_detection_config`
927953
google.protobuf.FieldMask update_mask = 2 [(google.api.field_behavior) = REQUIRED];
928954
}
929955

0 commit comments

Comments
 (0)