Skip to content

Commit

Permalink
chore: remove unused proto imports (#347)
Browse files Browse the repository at this point in the history
- [ ] Regenerate this pull request now.

PiperOrigin-RevId: 468735472

Source-Link: googleapis/googleapis@cfa1b37

Source-Link: googleapis/googleapis-gen@09b7666
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMDliNzY2NjY1NjUxMGY1YjAwYjg5M2YwMDNhMGJhNTc2NmY5ZTI1MCJ9

feat: add WriteFeatureValues in aiplatform v1beta1 featurestore_online_service.proto
PiperOrigin-RevId: 467107520

Source-Link: googleapis/googleapis@0dd9815

Source-Link: googleapis/googleapis-gen@03d96fd
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMDNkOTZmZDI5NjU4MjRlMGZlNTBiMTM2YzFiYWJlMGU1YzNjNWY1NyJ9

feat: making network arg optional in aiplatform v1 custom_job.proto
feat: added SHARED_RESOURCES enum to aiplatform v1 model.proto
docs: doc edits to aiplatform v1 dataset_service.proto, job_service.proto, model_service.proto, pipeline_service.proto, saved_query.proto, study.proto, types.proto

PiperOrigin-RevId: 463932566

Source-Link: googleapis/googleapis@37aaa1e

Source-Link: googleapis/googleapis-gen@081281c
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMDgxMjgxY2UxZjhkYmYwYTcyODJhZTNlY2M2MDFmZWE1ODM1NWRiNCJ9

feat: making network arg optional in aiplatform v1beta1 custom_job.proto
feat: DeploymentResourcePool and DeployementResourcePoolService added to aiplatform v1beta1 model.proto (cl/463147866)
docs: doc edits to aiplatform v1beta1 job_service.proto, model_service.proto, pipeline_service.proto, saved_query.proto, study.proto, types.proto

PiperOrigin-RevId: 463932106

Source-Link: googleapis/googleapis@efbe03d

Source-Link: googleapis/googleapis-gen@e012128
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiZTAxMjEyOGI3ZDNmYzk5YTk5NmQ1YTk1ZDM3NjVkNDA2YmYyNzk3ZSJ9

feat: add DeploymentResourcePool in aiplatform v1beta1 deployment_resource_pool.proto
feat: add DeploymentResourcePoolService in aiplatform v1beta1 deployment_resource_pool_service.proto
feat: add SHARED_RESOURCES to DeploymentResourcesType in aiplatform v1beta1 model.proto

PiperOrigin-RevId: 463147866

Source-Link: googleapis/googleapis@6276461

Source-Link: googleapis/googleapis-gen@57665f4
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNTc2NjVmNGI0OTFkN2MwZjFlNDY2ZTQzMDcwMWRiYWUwNDcyZjY0ZSJ9

feat: add a DeploymentResourcePool API resource_definition
feat: add shared_resources for supported prediction_resources

PiperOrigin-RevId: 461971827

Source-Link: googleapis/googleapis@0b24d03

Source-Link: googleapis/googleapis-gen@d3298e7
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiZDMyOThlNzc2MmUyZTA3MWNmNDg1MDI3NzMyNWJiZmViOTRlZGU5YiJ9
  • Loading branch information
gcf-owl-bot[bot] authored Aug 19, 2022
1 parent c931318 commit a6f7d4d
Show file tree
Hide file tree
Showing 182 changed files with 19,623 additions and 639 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ message CustomJob {
}

// Represents the spec of a CustomJob.
// Next Id: 14
// Next Id: 15
message CustomJobSpec {
// Required. The spec of the worker pools including machine type and Docker image.
// All worker pools except the first one are optional and can be skipped by
Expand All @@ -123,7 +123,7 @@ message CustomJobSpec {
// for the CustomJob's project is used.
string service_account = 4;

// The full name of the Compute Engine
// Optional. The full name of the Compute Engine
// [network](/compute/docs/networks-and-firewalls#networks) to which the Job
// should be peered. For example, `projects/12345/global/networks/myVPC`.
// [Format](/compute/docs/reference/rest/v1/networks/insert)
Expand All @@ -136,9 +136,12 @@ message CustomJobSpec {
// AI](https://cloud.google.com/vertex-ai/docs/general/vpc-peering).
//
// If this field is left unspecified, the job is not peered with any network.
string network = 5 [(google.api.resource_reference) = {
type: "compute.googleapis.com/Network"
}];
string network = 5 [
(google.api.field_behavior) = OPTIONAL,
(google.api.resource_reference) = {
type: "compute.googleapis.com/Network"
}
];

// Optional. A list of names for the reserved ip ranges under the VPC network
// that can be used for this job.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@ message ListDatasetsRequest {
// * A key including a space must be quoted. `labels."a key"`.
//
// Some examples:
//
// * `displayName="myDisplayName"`
// * `labels.myKey="myValue"`
string filter = 2;
Expand All @@ -240,6 +241,7 @@ message ListDatasetsRequest {
// A comma-separated list of fields to order by, sorted in ascending order.
// Use "desc" after a field name for descending.
// Supported fields:
//
// * `display_name`
// * `create_time`
// * `update_time`
Expand Down Expand Up @@ -397,7 +399,8 @@ message ListSavedQueriesRequest {

// Response message for [DatasetService.ListSavedQueries][google.cloud.aiplatform.v1.DatasetService.ListSavedQueries].
message ListSavedQueriesResponse {
// A list of SavedQueries that match the specified filter in the request.
// A list of SavedQueries that matches the specified filter in the
// request.
repeated SavedQuery saved_queries = 1;

// The standard List next-page token.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -384,19 +384,17 @@ message ListCustomJobsRequest {
//
// Supported fields:
//
// * `display_name` supports = and !=.
//
// * `state` supports = and !=.
// * `display_name` supports `=`, `!=` comparisons, and `:` wildcard.
// * `state` supports `=`, `!=` comparisons.
// * `create_time` supports `=`, `!=`,`<`, `<=`,`>`, `>=` comparisons.
// `create_time` must be in RFC 3339 format.
//
// Some examples of using the filter are:
//
// * `state="JOB_STATE_SUCCEEDED" AND display_name="my_job"`
//
// * `state="JOB_STATE_RUNNING" OR display_name="my_job"`
//
// * `NOT display_name="my_job"`
//
// * `state="JOB_STATE_FAILED"`
// * `state="JOB_STATE_SUCCEEDED" AND display_name:"my_job_*"`
// * `state!="JOB_STATE_FAILED" OR display_name="my_job"`
// * `NOT display_name="my_job"`
// * `create_time>"2021-05-18T00:00:00Z"`
string filter = 2;

// The standard list page size.
Expand Down Expand Up @@ -491,19 +489,17 @@ message ListDataLabelingJobsRequest {
//
// Supported fields:
//
// * `display_name` supports = and !=.
//
// * `state` supports = and !=.
// * `display_name` supports `=`, `!=` comparisons, and `:` wildcard.
// * `state` supports `=`, `!=` comparisons.
// * `create_time` supports `=`, `!=`,`<`, `<=`,`>`, `>=` comparisons.
// `create_time` must be in RFC 3339 format.
//
// Some examples of using the filter are:
//
// * `state="JOB_STATE_SUCCEEDED" AND display_name="my_job"`
//
// * `state="JOB_STATE_RUNNING" OR display_name="my_job"`
//
// * `NOT display_name="my_job"`
//
// * `state="JOB_STATE_FAILED"`
// * `state="JOB_STATE_SUCCEEDED" AND display_name:"my_job_*"`
// * `state!="JOB_STATE_FAILED" OR display_name="my_job"`
// * `NOT display_name="my_job"`
// * `create_time>"2021-05-18T00:00:00Z"`
string filter = 2;

// The standard list page size.
Expand Down Expand Up @@ -603,19 +599,17 @@ message ListHyperparameterTuningJobsRequest {
//
// Supported fields:
//
// * `display_name` supports = and !=.
//
// * `state` supports = and !=.
// * `display_name` supports `=`, `!=` comparisons, and `:` wildcard.
// * `state` supports `=`, `!=` comparisons.
// * `create_time` supports `=`, `!=`,`<`, `<=`,`>`, `>=` comparisons.
// `create_time` must be in RFC 3339 format.
//
// Some examples of using the filter are:
//
// * `state="JOB_STATE_SUCCEEDED" AND display_name="my_job"`
//
// * `state="JOB_STATE_RUNNING" OR display_name="my_job"`
//
// * `NOT display_name="my_job"`
//
// * `state="JOB_STATE_FAILED"`
// * `state="JOB_STATE_SUCCEEDED" AND display_name:"my_job_*"`
// * `state!="JOB_STATE_FAILED" OR display_name="my_job"`
// * `NOT display_name="my_job"`
// * `create_time>"2021-05-18T00:00:00Z"`
string filter = 2;

// The standard list page size.
Expand Down Expand Up @@ -712,21 +706,18 @@ message ListBatchPredictionJobsRequest {
//
// Supported fields:
//
// * `display_name` supports = and !=.
//
// * `state` supports = and !=.
//
// * `model_display_name` supports = and !=
// * `display_name` supports `=`, `!=` comparisons, and `:` wildcard.
// * `model_display_name` supports `=`, `!=` comparisons.
// * `state` supports `=`, `!=` comparisons.
// * `create_time` supports `=`, `!=`,`<`, `<=`,`>`, `>=` comparisons.
// `create_time` must be in RFC 3339 format.
//
// Some examples of using the filter are:
//
// * `state="JOB_STATE_SUCCEEDED" AND display_name="my_job"`
//
// * `state="JOB_STATE_RUNNING" OR display_name="my_job"`
//
// * `NOT display_name="my_job"`
//
// * `state="JOB_STATE_FAILED"`
// * `state="JOB_STATE_SUCCEEDED" AND display_name:"my_job_*"`
// * `state!="JOB_STATE_FAILED" OR display_name="my_job"`
// * `NOT display_name="my_job"`
// * `create_time>"2021-05-18T00:00:00Z"`
string filter = 2;

// The standard list page size.
Expand Down Expand Up @@ -893,6 +884,20 @@ message ListModelDeploymentMonitoringJobsRequest {
];

// The standard list filter.
//
// Supported fields:
//
// * `display_name` supports `=`, `!=` comparisons, and `:` wildcard.
// * `state` supports `=`, `!=` comparisons.
// * `create_time` supports `=`, `!=`,`<`, `<=`,`>`, `>=` comparisons.
// `create_time` must be in RFC 3339 format.
//
// Some examples of using the filter are:
//
// * `state="JOB_STATE_SUCCEEDED" AND display_name:"my_job_*"`
// * `state!="JOB_STATE_FAILED" OR display_name="my_job"`
// * `NOT display_name="my_job"`
// * `create_time>"2021-05-18T00:00:00Z"`
string filter = 2;

// The standard list page size.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,10 @@ message Model {
// Resources that to large degree are decided by Vertex AI, and require
// only a modest additional configuration.
AUTOMATIC_RESOURCES = 2;

// Resources that can be shared by multiple [DeployedModels][google.cloud.aiplatform.v1.DeployedModel].
// A pre-configured [DeploymentResourcePool][] is required.
SHARED_RESOURCES = 3;
}

// The resource name of the Model.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@ message ListModelsRequest {
// * A key including a space must be quoted. `labels."a key"`.
//
// Some examples:
//
// * `model=1234`
// * `displayName="myDisplayName"`
// * `labels.myKey="myValue"`
Expand All @@ -303,6 +304,7 @@ message ListModelsRequest {
// A comma-separated list of fields to order by, sorted in ascending order.
// Use "desc" after a field name for descending.
// Supported fields:
//
// * `display_name`
// * `create_time`
// * `update_time`
Expand Down Expand Up @@ -349,6 +351,7 @@ message ListModelVersionsRequest {
// * A key including a space must be quoted. `labels."a key"`.
//
// Some examples:
//
// * `labels.myKey="myValue"`
string filter = 4;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,21 +193,22 @@ message ListTrainingPipelinesRequest {
];

// The standard list filter.
// Supported fields:
//
// * `display_name` supports = and !=.
// Supported fields:
//
// * `state` supports = and !=.
// * `display_name` supports `=`, `!=` comparisons, and `:` wildcard.
// * `state` supports `=`, `!=` comparisons.
// * `training_task_definition` `=`, `!=` comparisons, and `:` wildcard.
// * `create_time` supports `=`, `!=`,`<`, `<=`,`>`, `>=` comparisons.
// `create_time` must be in RFC 3339 format.
//
// Some examples of using the filter are:
//
// * `state="PIPELINE_STATE_SUCCEEDED" AND display_name="my_pipeline"`
//
// * `state="PIPELINE_STATE_RUNNING" OR display_name="my_pipeline"`
//
// * `NOT display_name="my_pipeline"`
//
// * `state="PIPELINE_STATE_FAILED"`
// * `state="PIPELINE_STATE_SUCCEEDED" AND display_name:"my_pipeline_*"`
// * `state!="PIPELINE_STATE_FAILED" OR display_name="my_pipeline"`
// * `NOT display_name="my_pipeline"`
// * `create_time>"2021-05-18T00:00:00Z"`
// * `training_task_definition:"*automl_text_classification*"`
string filter = 2;

// The standard list page size.
Expand Down Expand Up @@ -312,8 +313,8 @@ message ListPipelineJobsRequest {
// * `pipeline_name`: Supports `=` and `!=` comparisons.
// * `display_name`: Supports `=`, `!=` comparisons, and `:` wildcard.
// * `pipeline_job_user_id`: Supports `=`, `!=` comparisons, and `:` wildcard.
// for example, can check if pipeline's display_name contains *step* by doing
// display_name:\"*step*\"
// for example, can check if pipeline's display_name contains *step* by
// doing display_name:\"*step*\"
// * `state`: Supports `=` and `!=` comparisons.
// * `create_time`: Supports `=`, `!=`, `<`, `>`, `<=`, and `>=` comparisons.
// Values must be in RFC 3339 format.
Expand All @@ -324,7 +325,7 @@ message ListPipelineJobsRequest {
// * `labels`: Supports key-value equality and key presence.
// * `template_uri`: Supports `=`, `!=` comparisons, and `:` wildcard.
// * `template_metadata.version`: Supports `=`, `!=` comparisons, and `:`
// wildcard.
// wildcard.
//
// Filter expressions can be combined together using logical operators
// (`AND` & `OR`).
Expand Down Expand Up @@ -359,6 +360,7 @@ message ListPipelineJobsRequest {
// there are multiple jobs having the same create time, order them by the end
// time in ascending order. if order_by is not specified, it will order by
// default order is create time in descending order. Supported fields:
//
// * `create_time`
// * `update_time`
// * `end_time`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ message SavedQuery {
// Output only. Number of AnnotationSpecs in the context of the SavedQuery.
int32 annotation_spec_count = 10 [(google.api.field_behavior) = OUTPUT_ONLY];

// Used to perform a consistent read-modify-write update. If not set, a blind
// Used to perform consistent read-modify-write updates. If not set, a blind
// "overwrite" update happens.
string etag = 8;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ syntax = "proto3";

package google.cloud.aiplatform.v1.schema.predict.instance;

import "google/api/annotations.proto";

option csharp_namespace = "Google.Cloud.AIPlatform.V1.Schema.Predict.Instance";
option go_package = "google.golang.org/genproto/googleapis/cloud/aiplatform/v1/schema/predict/instance;instance";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ syntax = "proto3";

package google.cloud.aiplatform.v1.schema.predict.instance;

import "google/api/annotations.proto";

option csharp_namespace = "Google.Cloud.AIPlatform.V1.Schema.Predict.Instance";
option go_package = "google.golang.org/genproto/googleapis/cloud/aiplatform/v1/schema/predict/instance;instance";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ syntax = "proto3";

package google.cloud.aiplatform.v1.schema.predict.instance;

import "google/api/annotations.proto";

option csharp_namespace = "Google.Cloud.AIPlatform.V1.Schema.Predict.Instance";
option go_package = "google.golang.org/genproto/googleapis/cloud/aiplatform/v1/schema/predict/instance;instance";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ syntax = "proto3";

package google.cloud.aiplatform.v1.schema.predict.instance;

import "google/api/annotations.proto";

option csharp_namespace = "Google.Cloud.AIPlatform.V1.Schema.Predict.Instance";
option go_package = "google.golang.org/genproto/googleapis/cloud/aiplatform/v1/schema/predict/instance;instance";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ syntax = "proto3";

package google.cloud.aiplatform.v1.schema.predict.instance;

import "google/api/annotations.proto";

option csharp_namespace = "Google.Cloud.AIPlatform.V1.Schema.Predict.Instance";
option go_package = "google.golang.org/genproto/googleapis/cloud/aiplatform/v1/schema/predict/instance;instance";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ syntax = "proto3";

package google.cloud.aiplatform.v1.schema.predict.instance;

import "google/api/annotations.proto";

option csharp_namespace = "Google.Cloud.AIPlatform.V1.Schema.Predict.Instance";
option go_package = "google.golang.org/genproto/googleapis/cloud/aiplatform/v1/schema/predict/instance;instance";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ syntax = "proto3";

package google.cloud.aiplatform.v1.schema.predict.instance;

import "google/api/annotations.proto";

option csharp_namespace = "Google.Cloud.AIPlatform.V1.Schema.Predict.Instance";
option go_package = "google.golang.org/genproto/googleapis/cloud/aiplatform/v1/schema/predict/instance;instance";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ syntax = "proto3";

package google.cloud.aiplatform.v1.schema.predict.instance;

import "google/api/annotations.proto";

option csharp_namespace = "Google.Cloud.AIPlatform.V1.Schema.Predict.Instance";
option go_package = "google.golang.org/genproto/googleapis/cloud/aiplatform/v1/schema/predict/instance;instance";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ syntax = "proto3";

package google.cloud.aiplatform.v1.schema.predict.instance;

import "google/api/annotations.proto";

option csharp_namespace = "Google.Cloud.AIPlatform.V1.Schema.Predict.Instance";
option go_package = "google.golang.org/genproto/googleapis/cloud/aiplatform/v1/schema/predict/instance;instance";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ syntax = "proto3";

package google.cloud.aiplatform.v1.schema.predict.params;

import "google/api/annotations.proto";

option csharp_namespace = "Google.Cloud.AIPlatform.V1.Schema.Predict.Params";
option go_package = "google.golang.org/genproto/googleapis/cloud/aiplatform/v1/schema/predict/params;params";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ syntax = "proto3";

package google.cloud.aiplatform.v1.schema.predict.params;

import "google/api/annotations.proto";

option csharp_namespace = "Google.Cloud.AIPlatform.V1.Schema.Predict.Params";
option go_package = "google.golang.org/genproto/googleapis/cloud/aiplatform/v1/schema/predict/params;params";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ syntax = "proto3";

package google.cloud.aiplatform.v1.schema.predict.params;

import "google/api/annotations.proto";

option csharp_namespace = "Google.Cloud.AIPlatform.V1.Schema.Predict.Params";
option go_package = "google.golang.org/genproto/googleapis/cloud/aiplatform/v1/schema/predict/params;params";
Expand Down
Loading

0 comments on commit a6f7d4d

Please sign in to comment.