123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227 |
- // Copyright 2022 Google LLC
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- syntax = "proto3";
- package google.cloud.visionai.v1alpha1;
- import "google/api/annotations.proto";
- import "google/api/client.proto";
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- import "google/cloud/visionai/v1alpha1/lva_resources.proto";
- import "google/longrunning/operations.proto";
- import "google/protobuf/field_mask.proto";
- option csharp_namespace = "Google.Cloud.VisionAI.V1Alpha1";
- option go_package = "google.golang.org/genproto/googleapis/cloud/visionai/v1alpha1;visionai";
- option java_multiple_files = true;
- option java_outer_classname = "LvaServiceProto";
- option java_package = "com.google.cloud.visionai.v1alpha1";
- option php_namespace = "Google\\Cloud\\VisionAI\\V1alpha1";
- option ruby_package = "Google::Cloud::VisionAI::V1alpha1";
- // Service describing handlers for resources. The service enables clients to run
- // Live Video Analytics (LVA) on the streaming inputs.
- service LiveVideoAnalytics {
- option (google.api.default_host) = "visionai.googleapis.com";
- option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform";
- // Lists Analyses in a given project and location.
- rpc ListAnalyses(ListAnalysesRequest) returns (ListAnalysesResponse) {
- option (google.api.http) = {
- get: "/v1alpha1/{parent=projects/*/locations/*/clusters/*}/analyses"
- };
- option (google.api.method_signature) = "parent";
- }
- // Gets details of a single Analysis.
- rpc GetAnalysis(GetAnalysisRequest) returns (Analysis) {
- option (google.api.http) = {
- get: "/v1alpha1/{name=projects/*/locations/*/clusters/*/analyses/*}"
- };
- option (google.api.method_signature) = "name";
- }
- // Creates a new Analysis in a given project and location.
- rpc CreateAnalysis(CreateAnalysisRequest) returns (google.longrunning.Operation) {
- option (google.api.http) = {
- post: "/v1alpha1/{parent=projects/*/locations/*/clusters/*}/analyses"
- body: "analysis"
- };
- option (google.api.method_signature) = "parent,analysis,analysis_id";
- option (google.longrunning.operation_info) = {
- response_type: "Analysis"
- metadata_type: "OperationMetadata"
- };
- }
- // Updates the parameters of a single Analysis.
- rpc UpdateAnalysis(UpdateAnalysisRequest) returns (google.longrunning.Operation) {
- option (google.api.http) = {
- patch: "/v1alpha1/{analysis.name=projects/*/locations/*/clusters/*/analyses/*}"
- body: "analysis"
- };
- option (google.api.method_signature) = "analysis,update_mask";
- option (google.longrunning.operation_info) = {
- response_type: "Analysis"
- metadata_type: "OperationMetadata"
- };
- }
- // Deletes a single Analysis.
- rpc DeleteAnalysis(DeleteAnalysisRequest) returns (google.longrunning.Operation) {
- option (google.api.http) = {
- delete: "/v1alpha1/{name=projects/*/locations/*/clusters/*/analyses/*}"
- };
- option (google.api.method_signature) = "name";
- option (google.longrunning.operation_info) = {
- response_type: "google.protobuf.Empty"
- metadata_type: "OperationMetadata"
- };
- }
- }
- // Message for requesting list of Analyses
- message ListAnalysesRequest {
- // Required. Parent value for ListAnalysesRequest
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "visionai.googleapis.com/Cluster"
- }
- ];
- // Requested page size. Server may return fewer items than requested.
- // If unspecified, server will pick an appropriate default.
- int32 page_size = 2;
- // A token identifying a page of results the server should return.
- string page_token = 3;
- // Filtering results
- string filter = 4;
- // Hint for how to order the results
- string order_by = 5;
- }
- // Message for response to listing Analyses
- message ListAnalysesResponse {
- // The list of Analysis
- repeated Analysis analyses = 1;
- // A token identifying a page of results the server should return.
- string next_page_token = 2;
- // Locations that could not be reached.
- repeated string unreachable = 3;
- }
- // Message for getting an Analysis.
- message GetAnalysisRequest {
- // Required. Name of the resource.
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "visionai.googleapis.com/Analysis"
- }
- ];
- }
- // Message for creating an Analysis.
- message CreateAnalysisRequest {
- // Required. Value for parent.
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "visionai.googleapis.com/Cluster"
- }
- ];
- // Required. Id of the requesting object.
- string analysis_id = 2 [(google.api.field_behavior) = REQUIRED];
- // Required. The resource being created.
- Analysis analysis = 3 [(google.api.field_behavior) = REQUIRED];
- // Optional. An optional request ID to identify requests. Specify a unique request ID
- // so that if you must retry your request, the server will know to ignore
- // the request if it has already been completed. The server will guarantee
- // that for at least 60 minutes since the first request.
- //
- // For example, consider a situation where you make an initial request and the
- // request times out. If you make the request again with the same request ID,
- // the server can check if original operation with the same request ID was
- // received, and if so, will ignore the second request. This prevents clients
- // from accidentally creating duplicate commitments.
- //
- // The request ID must be a valid UUID with the exception that zero UUID is
- // not supported (00000000-0000-0000-0000-000000000000).
- string request_id = 4 [(google.api.field_behavior) = OPTIONAL];
- }
- // Message for updating an Analysis.
- message UpdateAnalysisRequest {
- // Required. Field mask is used to specify the fields to be overwritten in the
- // Analysis resource by the update.
- // The fields specified in the update_mask are relative to the resource, not
- // the full request. A field will be overwritten if it is in the mask. If the
- // user does not provide a mask then all fields will be overwritten.
- google.protobuf.FieldMask update_mask = 1 [(google.api.field_behavior) = REQUIRED];
- // Required. The resource being updated.
- Analysis analysis = 2 [(google.api.field_behavior) = REQUIRED];
- // Optional. An optional request ID to identify requests. Specify a unique request ID
- // so that if you must retry your request, the server will know to ignore
- // the request if it has already been completed. The server will guarantee
- // that for at least 60 minutes since the first request.
- //
- // For example, consider a situation where you make an initial request and the
- // request times out. If you make the request again with the same request ID,
- // the server can check if original operation with the same request ID was
- // received, and if so, will ignore the second request. This prevents clients
- // from accidentally creating duplicate commitments.
- //
- // The request ID must be a valid UUID with the exception that zero UUID is
- // not supported (00000000-0000-0000-0000-000000000000).
- string request_id = 3 [(google.api.field_behavior) = OPTIONAL];
- }
- // Message for deleting an Analysis.
- message DeleteAnalysisRequest {
- // Required. Name of the resource.
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "visionai.googleapis.com/Analysis"
- }
- ];
- // Optional. An optional request ID to identify requests. Specify a unique request ID
- // so that if you must retry your request, the server will know to ignore
- // the request if it has already been completed. The server will guarantee
- // that for at least 60 minutes after the first request.
- //
- // For example, consider a situation where you make an initial request and the
- // request times out. If you make the request again with the same request ID,
- // the server can check if original operation with the same request ID was
- // received, and if so, will ignore the second request. This prevents clients
- // from accidentally creating duplicate commitments.
- //
- // The request ID must be a valid UUID with the exception that zero UUID is
- // not supported (00000000-0000-0000-0000-000000000000).
- string request_id = 2 [(google.api.field_behavior) = OPTIONAL];
- }
|