Skip to content

Commit

Permalink
feat: add Content
Browse files Browse the repository at this point in the history
feat: add ExportUse and ExportFilterSplit to Dataset
feat: add data_stats to ExportDataResponse
feat: add display_name to DeployedIndex
feat: add DeploymentResourcePool
feat: add DeploymentResourcePoolService
feat: add shared_resources to DeployedModel
docs: changes name from OUTPUT_ONLY to IDENTIFIER in FeatureGroup
feat: add DataStats to Model
feat: add model and contents to PredictionService
feat: add Tool

PiperOrigin-RevId: 589254081
  • Loading branch information
Google APIs authored and Copybara-Service committed Dec 8, 2023
1 parent 1ec8612 commit 00931e0
Show file tree
Hide file tree
Showing 20 changed files with 957 additions and 16 deletions.
7 changes: 7 additions & 0 deletions google/cloud/aiplatform/v1/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ proto_library(
"artifact.proto",
"batch_prediction_job.proto",
"completion_stats.proto",
"content.proto",
"context.proto",
"custom_job.proto",
"data_item.proto",
Expand All @@ -43,6 +44,8 @@ proto_library(
"dataset_version.proto",
"deployed_index_ref.proto",
"deployed_model_ref.proto",
"deployment_resource_pool.proto",
"deployment_resource_pool_service.proto",
"encryption_spec.proto",
"endpoint.proto",
"endpoint_service.proto",
Expand Down Expand Up @@ -93,6 +96,7 @@ proto_library(
"model_service.proto",
"model_garden_service.proto",
"nas_job.proto",
"openapi.proto",
"operation.proto",
"pipeline_failure_policy.proto",
"pipeline_job.proto",
Expand All @@ -113,6 +117,7 @@ proto_library(
"tensorboard_run.proto",
"tensorboard_service.proto",
"tensorboard_time_series.proto",
"tool.proto",
"training_pipeline.proto",
"types.proto",
"unmanaged_container_model.proto",
Expand All @@ -130,6 +135,7 @@ proto_library(
"//google/rpc:status_proto",
"//google/type:interval_proto",
"//google/type:money_proto",
"//google/type:date_proto",
"@com_google_protobuf//:duration_proto",
"@com_google_protobuf//:empty_proto",
"@com_google_protobuf//:field_mask_proto",
Expand Down Expand Up @@ -265,6 +271,7 @@ go_proto_library(
"//google/rpc:status_go_proto",
"//google/type:interval_go_proto",
"//google/type:money_go_proto",
"//google/type:date_go_proto",
],
)

Expand Down
8 changes: 8 additions & 0 deletions google/cloud/aiplatform/v1/aiplatform_v1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ title: Vertex AI API

apis:
- name: google.cloud.aiplatform.v1.DatasetService
- name: google.cloud.aiplatform.v1.DeploymentResourcePoolService
- name: google.cloud.aiplatform.v1.EndpointService
- name: google.cloud.aiplatform.v1.FeatureOnlineStoreAdminService
- name: google.cloud.aiplatform.v1.FeatureOnlineStoreService
Expand Down Expand Up @@ -43,6 +44,7 @@ types:
- name: google.cloud.aiplatform.v1.CopyModelResponse
- name: google.cloud.aiplatform.v1.CreateDatasetOperationMetadata
- name: google.cloud.aiplatform.v1.CreateDatasetVersionOperationMetadata
- name: google.cloud.aiplatform.v1.CreateDeploymentResourcePoolOperationMetadata
- name: google.cloud.aiplatform.v1.CreateEndpointOperationMetadata
- name: google.cloud.aiplatform.v1.CreateEntityTypeOperationMetadata
- name: google.cloud.aiplatform.v1.CreateFeatureGroupOperationMetadata
Expand Down Expand Up @@ -92,6 +94,7 @@ types:
- name: google.cloud.aiplatform.v1.UndeployIndexResponse
- name: google.cloud.aiplatform.v1.UndeployModelOperationMetadata
- name: google.cloud.aiplatform.v1.UndeployModelResponse
- name: google.cloud.aiplatform.v1.UpdateDeploymentResourcePoolOperationMetadata
- name: google.cloud.aiplatform.v1.UpdateExplanationDatasetOperationMetadata
- name: google.cloud.aiplatform.v1.UpdateExplanationDatasetResponse
- name: google.cloud.aiplatform.v1.UpdateFeatureGroupOperationMetadata
Expand Down Expand Up @@ -172,6 +175,7 @@ http:
- post: '/ui/{resource=projects/*/locations/*/models/*}:getIamPolicy'
- post: '/ui/{resource=projects/*/locations/*/endpoints/*}:getIamPolicy'
- post: '/ui/{resource=projects/*/locations/*/notebookRuntimeTemplates/*}:getIamPolicy'
- post: '/ui/{resource=projects/*/locations/*/publishers/*/models/*}:getIamPolicy'
- selector: google.iam.v1.IAMPolicy.SetIamPolicy
post: '/v1/{resource=projects/*/locations/*/featurestores/*}:setIamPolicy'
body: '*'
Expand Down Expand Up @@ -570,6 +574,10 @@ authentication:
oauth:
canonical_scopes: |-
https://www.googleapis.com/auth/cloud-platform
- selector: 'google.cloud.aiplatform.v1.DeploymentResourcePoolService.*'
oauth:
canonical_scopes: |-
https://www.googleapis.com/auth/cloud-platform
- selector: 'google.cloud.aiplatform.v1.EndpointService.*'
oauth:
canonical_scopes: |-
Expand Down
4 changes: 2 additions & 2 deletions google/cloud/aiplatform/v1/batch_prediction_job.proto
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ message BatchPredictionJob {
// [excluded_fields][google.cloud.aiplatform.v1.BatchPredictionJob.InstanceConfig.excluded_fields]
// must be empty.
//
// The input must be JSONL with objects at each line, CSV, BigQuery
// The input must be JSONL with objects at each line, BigQuery
// or TfRecord.
repeated string included_fields = 3;

Expand All @@ -168,7 +168,7 @@ message BatchPredictionJob {
// [included_fields][google.cloud.aiplatform.v1.BatchPredictionJob.InstanceConfig.included_fields]
// must be empty.
//
// The input must be JSONL with objects at each line, CSV, BigQuery
// The input must be JSONL with objects at each line, BigQuery
// or TfRecord.
repeated string excluded_fields = 4;
}
Expand Down

0 comments on commit 00931e0

Please sign in to comment.