123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971 |
- // Copyright 2019 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.vision.v1p3beta1;
- import "google/api/annotations.proto";
- import "google/api/client.proto";
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- import "google/cloud/vision/v1p3beta1/geometry.proto";
- import "google/longrunning/operations.proto";
- import "google/protobuf/empty.proto";
- import "google/protobuf/field_mask.proto";
- import "google/protobuf/timestamp.proto";
- import "google/rpc/status.proto";
- option cc_enable_arenas = true;
- option go_package = "google.golang.org/genproto/googleapis/cloud/vision/v1p3beta1;vision";
- option java_multiple_files = true;
- option java_outer_classname = "ProductSearchServiceProto";
- option java_package = "com.google.cloud.vision.v1p3beta1";
- // Manages Products and ProductSets of reference images for use in product
- // search. It uses the following resource model:
- //
- // - The API has a collection of [ProductSet][google.cloud.vision.v1p3beta1.ProductSet] resources, named
- // `projects/*/locations/*/productSets/*`, which acts as a way to put different
- // products into groups to limit identification.
- //
- // In parallel,
- //
- // - The API has a collection of [Product][google.cloud.vision.v1p3beta1.Product] resources, named
- // `projects/*/locations/*/products/*`
- //
- // - Each [Product][google.cloud.vision.v1p3beta1.Product] has a collection of [ReferenceImage][google.cloud.vision.v1p3beta1.ReferenceImage] resources, named
- // `projects/*/locations/*/products/*/referenceImages/*`
- service ProductSearch {
- option (google.api.default_host) = "vision.googleapis.com";
- option (google.api.oauth_scopes) =
- "https://www.googleapis.com/auth/cloud-platform,"
- "https://www.googleapis.com/auth/cloud-vision";
- // Creates and returns a new ProductSet resource.
- //
- // Possible errors:
- //
- // * Returns INVALID_ARGUMENT if display_name is missing, or is longer than
- // 4096 characters.
- rpc CreateProductSet(CreateProductSetRequest) returns (ProductSet) {
- option (google.api.http) = {
- post: "/v1p3beta1/{parent=projects/*/locations/*}/productSets"
- body: "product_set"
- };
- option (google.api.method_signature) = "parent,product_set,product_set_id";
- }
- // Lists ProductSets in an unspecified order.
- //
- // Possible errors:
- //
- // * Returns INVALID_ARGUMENT if page_size is greater than 100, or less
- // than 1.
- rpc ListProductSets(ListProductSetsRequest) returns (ListProductSetsResponse) {
- option (google.api.http) = {
- get: "/v1p3beta1/{parent=projects/*/locations/*}/productSets"
- };
- option (google.api.method_signature) = "parent";
- }
- // Gets information associated with a ProductSet.
- //
- // Possible errors:
- //
- // * Returns NOT_FOUND if the ProductSet does not exist.
- rpc GetProductSet(GetProductSetRequest) returns (ProductSet) {
- option (google.api.http) = {
- get: "/v1p3beta1/{name=projects/*/locations/*/productSets/*}"
- };
- option (google.api.method_signature) = "name";
- }
- // Makes changes to a ProductSet resource.
- // Only display_name can be updated currently.
- //
- // Possible errors:
- //
- // * Returns NOT_FOUND if the ProductSet does not exist.
- // * Returns INVALID_ARGUMENT if display_name is present in update_mask but
- // missing from the request or longer than 4096 characters.
- rpc UpdateProductSet(UpdateProductSetRequest) returns (ProductSet) {
- option (google.api.http) = {
- patch: "/v1p3beta1/{product_set.name=projects/*/locations/*/productSets/*}"
- body: "product_set"
- };
- option (google.api.method_signature) = "product_set,update_mask";
- }
- // Permanently deletes a ProductSet. All Products and ReferenceImages in the
- // ProductSet will be deleted.
- //
- // The actual image files are not deleted from Google Cloud Storage.
- //
- // Possible errors:
- //
- // * Returns NOT_FOUND if the ProductSet does not exist.
- rpc DeleteProductSet(DeleteProductSetRequest)
- returns (google.protobuf.Empty) {
- option (google.api.http) = {
- delete: "/v1p3beta1/{name=projects/*/locations/*/productSets/*}"
- };
- option (google.api.method_signature) = "name";
- }
- // Creates and returns a new product resource.
- //
- // Possible errors:
- //
- // * Returns INVALID_ARGUMENT if display_name is missing or longer than 4096
- // characters.
- // * Returns INVALID_ARGUMENT if description is longer than 4096 characters.
- // * Returns INVALID_ARGUMENT if product_category is missing or invalid.
- rpc CreateProduct(CreateProductRequest) returns (Product) {
- option (google.api.http) = {
- post: "/v1p3beta1/{parent=projects/*/locations/*}/products"
- body: "product"
- };
- option (google.api.method_signature) = "parent,product,product_id";
- }
- // Lists products in an unspecified order.
- //
- // Possible errors:
- //
- // * Returns INVALID_ARGUMENT if page_size is greater than 100 or less than 1.
- rpc ListProducts(ListProductsRequest) returns (ListProductsResponse) {
- option (google.api.http) = {
- get: "/v1p3beta1/{parent=projects/*/locations/*}/products"
- };
- option (google.api.method_signature) = "parent";
- }
- // Gets information associated with a Product.
- //
- // Possible errors:
- //
- // * Returns NOT_FOUND if the Product does not exist.
- rpc GetProduct(GetProductRequest) returns (Product) {
- option (google.api.http) = {
- get: "/v1p3beta1/{name=projects/*/locations/*/products/*}"
- };
- option (google.api.method_signature) = "name";
- }
- // Makes changes to a Product resource.
- // Only display_name, description and labels can be updated right now.
- //
- // If labels are updated, the change will not be reflected in queries until
- // the next index time.
- //
- // Possible errors:
- //
- // * Returns NOT_FOUND if the Product does not exist.
- // * Returns INVALID_ARGUMENT if display_name is present in update_mask but is
- // missing from the request or longer than 4096 characters.
- // * Returns INVALID_ARGUMENT if description is present in update_mask but is
- // longer than 4096 characters.
- // * Returns INVALID_ARGUMENT if product_category is present in update_mask.
- rpc UpdateProduct(UpdateProductRequest) returns (Product) {
- option (google.api.http) = {
- patch: "/v1p3beta1/{product.name=projects/*/locations/*/products/*}"
- body: "product"
- };
- option (google.api.method_signature) = "product,update_mask";
- }
- // Permanently deletes a product and its reference images.
- //
- // Metadata of the product and all its images will be deleted right away, but
- // search queries against ProductSets containing the product may still work
- // until all related caches are refreshed.
- //
- // Possible errors:
- //
- // * Returns NOT_FOUND if the product does not exist.
- rpc DeleteProduct(DeleteProductRequest) returns (google.protobuf.Empty) {
- option (google.api.http) = {
- delete: "/v1p3beta1/{name=projects/*/locations/*/products/*}"
- };
- option (google.api.method_signature) = "name";
- }
- // Creates and returns a new ReferenceImage resource.
- //
- // The `bounding_poly` field is optional. If `bounding_poly` is not specified,
- // the system will try to detect regions of interest in the image that are
- // compatible with the product_category on the parent product. If it is
- // specified, detection is ALWAYS skipped. The system converts polygons into
- // non-rotated rectangles.
- //
- // Note that the pipeline will resize the image if the image resolution is too
- // large to process (above 50MP).
- //
- // Possible errors:
- //
- // * Returns INVALID_ARGUMENT if the image_uri is missing or longer than 4096
- // characters.
- // * Returns INVALID_ARGUMENT if the product does not exist.
- // * Returns INVALID_ARGUMENT if bounding_poly is not provided, and nothing
- // compatible with the parent product's product_category is detected.
- // * Returns INVALID_ARGUMENT if bounding_poly contains more than 10 polygons.
- rpc CreateReferenceImage(CreateReferenceImageRequest)
- returns (ReferenceImage) {
- option (google.api.http) = {
- post: "/v1p3beta1/{parent=projects/*/locations/*/products/*}/referenceImages"
- body: "reference_image"
- };
- option (google.api.method_signature) = "parent,reference_image,reference_image_id";
- }
- // Permanently deletes a reference image.
- //
- // The image metadata will be deleted right away, but search queries
- // against ProductSets containing the image may still work until all related
- // caches are refreshed.
- //
- // The actual image files are not deleted from Google Cloud Storage.
- //
- // Possible errors:
- //
- // * Returns NOT_FOUND if the reference image does not exist.
- rpc DeleteReferenceImage(DeleteReferenceImageRequest)
- returns (google.protobuf.Empty) {
- option (google.api.http) = {
- delete: "/v1p3beta1/{name=projects/*/locations/*/products/*/referenceImages/*}"
- };
- option (google.api.method_signature) = "name";
- }
- // Lists reference images.
- //
- // Possible errors:
- //
- // * Returns NOT_FOUND if the parent product does not exist.
- // * Returns INVALID_ARGUMENT if the page_size is greater than 100, or less
- // than 1.
- rpc ListReferenceImages(ListReferenceImagesRequest)
- returns (ListReferenceImagesResponse) {
- option (google.api.http) = {
- get: "/v1p3beta1/{parent=projects/*/locations/*/products/*}/referenceImages"
- };
- option (google.api.method_signature) = "parent";
- }
- // Gets information associated with a ReferenceImage.
- //
- // Possible errors:
- //
- // * Returns NOT_FOUND if the specified image does not exist.
- rpc GetReferenceImage(GetReferenceImageRequest) returns (ReferenceImage) {
- option (google.api.http) = {
- get: "/v1p3beta1/{name=projects/*/locations/*/products/*/referenceImages/*}"
- };
- option (google.api.method_signature) = "name";
- }
- // Adds a Product to the specified ProductSet. If the Product is already
- // present, no change is made.
- //
- // One Product can be added to at most 100 ProductSets.
- //
- // Possible errors:
- //
- // * Returns NOT_FOUND if the Product or the ProductSet doesn't exist.
- rpc AddProductToProductSet(AddProductToProductSetRequest)
- returns (google.protobuf.Empty) {
- option (google.api.http) = {
- post: "/v1p3beta1/{name=projects/*/locations/*/productSets/*}:addProduct"
- body: "*"
- };
- option (google.api.method_signature) = "name,product";
- }
- // Removes a Product from the specified ProductSet.
- //
- // Possible errors:
- //
- // * Returns NOT_FOUND If the Product is not found under the ProductSet.
- rpc RemoveProductFromProductSet(RemoveProductFromProductSetRequest)
- returns (google.protobuf.Empty) {
- option (google.api.http) = {
- post: "/v1p3beta1/{name=projects/*/locations/*/productSets/*}:removeProduct"
- body: "*"
- };
- option (google.api.method_signature) = "name,product";
- }
- // Lists the Products in a ProductSet, in an unspecified order. If the
- // ProductSet does not exist, the products field of the response will be
- // empty.
- //
- // Possible errors:
- //
- // * Returns INVALID_ARGUMENT if page_size is greater than 100 or less than 1.
- rpc ListProductsInProductSet(ListProductsInProductSetRequest)
- returns (ListProductsInProductSetResponse) {
- option (google.api.http) = {
- get: "/v1p3beta1/{name=projects/*/locations/*/productSets/*}/products"
- };
- option (google.api.method_signature) = "name";
- }
- // Asynchronous API that imports a list of reference images to specified
- // product sets based on a list of image information.
- //
- // The [google.longrunning.Operation][google.longrunning.Operation] API can be
- // used to keep track of the progress and results of the request.
- // `Operation.metadata` contains `BatchOperationMetadata`. (progress)
- // `Operation.response` contains `ImportProductSetsResponse`. (results)
- //
- // The input source of this method is a csv file on Google Cloud Storage.
- // For the format of the csv file please see
- // [ImportProductSetsGcsSource.csv_file_uri][google.cloud.vision.v1p3beta1.ImportProductSetsGcsSource.csv_file_uri].
- rpc ImportProductSets(ImportProductSetsRequest)
- returns (google.longrunning.Operation) {
- option (google.api.http) = {
- post: "/v1p3beta1/{parent=projects/*/locations/*}/productSets:import"
- body: "*"
- };
- option (google.api.method_signature) = "parent,input_config";
- option (google.longrunning.operation_info) = {
- response_type: "ImportProductSetsResponse"
- metadata_type: "BatchOperationMetadata"
- };
- }
- }
- // A Product contains ReferenceImages.
- message Product {
- option (google.api.resource) = {
- type: "vision.googleapis.com/Product"
- pattern: "projects/{project}/locations/{location}/products/{product}"
- };
- // A product label represented as a key-value pair.
- message KeyValue {
- // The key of the label attached to the product. Cannot be empty and cannot
- // exceed 128 bytes.
- string key = 1;
- // The value of the label attached to the product. Cannot be empty and
- // cannot exceed 128 bytes.
- string value = 2;
- }
- // The resource name of the product.
- //
- // Format is:
- // `projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID`.
- //
- // This field is ignored when creating a product.
- string name = 1;
- // The user-provided name for this Product. Must not be empty. Must be at most
- // 4096 characters long.
- string display_name = 2;
- // User-provided metadata to be stored with this product. Must be at most 4096
- // characters long.
- string description = 3;
- // Immutable. The category for the product identified by the reference image. This should
- // be either "homegoods-v2", "apparel-v2", or "toys-v2". The legacy categories
- // "homegoods", "apparel", and "toys" are still supported, but these should
- // not be used for new products.
- string product_category = 4 [(google.api.field_behavior) = IMMUTABLE];
- // Key-value pairs that can be attached to a product. At query time,
- // constraints can be specified based on the product_labels.
- //
- // Note that integer values can be provided as strings, e.g. "1199". Only
- // strings with integer values can match a range-based restriction which is
- // to be supported soon.
- //
- // Multiple values can be assigned to the same key. One product may have up to
- // 100 product_labels.
- repeated KeyValue product_labels = 5;
- }
- // A ProductSet contains Products. A ProductSet can contain a maximum of 1
- // million reference images. If the limit is exceeded, periodic indexing will
- // fail.
- message ProductSet {
- option (google.api.resource) = {
- type: "vision.googleapis.com/ProductSet"
- pattern: "projects/{project}/locations/{location}/productSets/{product_set}"
- };
- // The resource name of the ProductSet.
- //
- // Format is:
- // `projects/PROJECT_ID/locations/LOC_ID/productSets/PRODUCT_SET_ID`.
- //
- // This field is ignored when creating a ProductSet.
- string name = 1;
- // The user-provided name for this ProductSet. Must not be empty. Must be at
- // most 4096 characters long.
- string display_name = 2;
- // Output only. The time at which this ProductSet was last indexed. Query
- // results will reflect all updates before this time. If this ProductSet has
- // never been indexed, this field is 0.
- //
- // This field is ignored when creating a ProductSet.
- google.protobuf.Timestamp index_time = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
- // Output only. If there was an error with indexing the product set, the field
- // is populated.
- //
- // This field is ignored when creating a ProductSet.
- google.rpc.Status index_error = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
- // A `ReferenceImage` represents a product image and its associated metadata,
- // such as bounding boxes.
- message ReferenceImage {
- option (google.api.resource) = {
- type: "vision.googleapis.com/ReferenceImage"
- pattern: "projects/{project}/locations/{location}/products/{product}/referenceImages/{reference_image}"
- };
- // The resource name of the reference image.
- //
- // Format is:
- //
- // `projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID/referenceImages/IMAGE_ID`.
- //
- // This field is ignored when creating a reference image.
- string name = 1;
- // Required. The Google Cloud Storage URI of the reference image.
- //
- // The URI must start with `gs://`.
- string uri = 2 [(google.api.field_behavior) = REQUIRED];
- // Optional. Bounding polygons around the areas of interest in the reference image.
- // If this field is empty, the system will try to detect regions of
- // interest. At most 10 bounding polygons will be used.
- //
- // The provided shape is converted into a non-rotated rectangle. Once
- // converted, the small edge of the rectangle must be greater than or equal
- // to 300 pixels. The aspect ratio must be 1:4 or less (i.e. 1:3 is ok; 1:5
- // is not).
- repeated BoundingPoly bounding_polys = 3 [(google.api.field_behavior) = OPTIONAL];
- }
- // Request message for the `CreateProduct` method.
- message CreateProductRequest {
- // Required. The project in which the Product should be created.
- //
- // Format is
- // `projects/PROJECT_ID/locations/LOC_ID`.
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "locations.googleapis.com/Location"
- }
- ];
- // Required. The product to create.
- Product product = 2 [(google.api.field_behavior) = REQUIRED];
- // A user-supplied resource id for this Product. If set, the server will
- // attempt to use this value as the resource id. If it is already in use, an
- // error is returned with code ALREADY_EXISTS. Must be at most 128 characters
- // long. It cannot contain the character `/`.
- string product_id = 3;
- }
- // Request message for the `ListProducts` method.
- message ListProductsRequest {
- // Required. The project OR ProductSet from which Products should be listed.
- //
- // Format:
- // `projects/PROJECT_ID/locations/LOC_ID`
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "locations.googleapis.com/Location"
- }
- ];
- // The maximum number of items to return. Default 10, maximum 100.
- int32 page_size = 2;
- // The next_page_token returned from a previous List request, if any.
- string page_token = 3;
- }
- // Response message for the `ListProducts` method.
- message ListProductsResponse {
- // List of products.
- repeated Product products = 1;
- // Token to retrieve the next page of results, or empty if there are no more
- // results in the list.
- string next_page_token = 2;
- }
- // Request message for the `GetProduct` method.
- message GetProductRequest {
- // Required. Resource name of the Product to get.
- //
- // Format is:
- // `projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID`
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "vision.googleapis.com/Product"
- }
- ];
- }
- // Request message for the `UpdateProduct` method.
- message UpdateProductRequest {
- // Required. The Product resource which replaces the one on the server.
- // product.name is immutable.
- Product product = 1 [(google.api.field_behavior) = REQUIRED];
- // The [FieldMask][google.protobuf.FieldMask] that specifies which fields
- // to update.
- // If update_mask isn't specified, all mutable fields are to be updated.
- // Valid mask paths include `product_labels`, `display_name`, and
- // `description`.
- google.protobuf.FieldMask update_mask = 2;
- }
- // Request message for the `DeleteProduct` method.
- message DeleteProductRequest {
- // Required. Resource name of product to delete.
- //
- // Format is:
- // `projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID`
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "vision.googleapis.com/Product"
- }
- ];
- }
- // Request message for the `CreateProductSet` method.
- message CreateProductSetRequest {
- // Required. The project in which the ProductSet should be created.
- //
- // Format is `projects/PROJECT_ID/locations/LOC_ID`.
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "locations.googleapis.com/Location"
- }
- ];
- // Required. The ProductSet to create.
- ProductSet product_set = 2 [(google.api.field_behavior) = REQUIRED];
- // A user-supplied resource id for this ProductSet. If set, the server will
- // attempt to use this value as the resource id. If it is already in use, an
- // error is returned with code ALREADY_EXISTS. Must be at most 128 characters
- // long. It cannot contain the character `/`.
- string product_set_id = 3;
- }
- // Request message for the `ListProductSets` method.
- message ListProductSetsRequest {
- // Required. The project from which ProductSets should be listed.
- //
- // Format is `projects/PROJECT_ID/locations/LOC_ID`.
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "locations.googleapis.com/Location"
- }
- ];
- // The maximum number of items to return. Default 10, maximum 100.
- int32 page_size = 2;
- // The next_page_token returned from a previous List request, if any.
- string page_token = 3;
- }
- // Response message for the `ListProductSets` method.
- message ListProductSetsResponse {
- // List of ProductSets.
- repeated ProductSet product_sets = 1;
- // Token to retrieve the next page of results, or empty if there are no more
- // results in the list.
- string next_page_token = 2;
- }
- // Request message for the `GetProductSet` method.
- message GetProductSetRequest {
- // Required. Resource name of the ProductSet to get.
- //
- // Format is:
- // `projects/PROJECT_ID/locations/LOC_ID/productSets/PRODUCT_SET_ID`
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "vision.googleapis.com/ProductSet"
- }
- ];
- }
- // Request message for the `UpdateProductSet` method.
- message UpdateProductSetRequest {
- // Required. The ProductSet resource which replaces the one on the server.
- ProductSet product_set = 1 [(google.api.field_behavior) = REQUIRED];
- // The [FieldMask][google.protobuf.FieldMask] that specifies which fields to
- // update.
- // If update_mask isn't specified, all mutable fields are to be updated.
- // Valid mask path is `display_name`.
- google.protobuf.FieldMask update_mask = 2;
- }
- // Request message for the `DeleteProductSet` method.
- message DeleteProductSetRequest {
- // Required. Resource name of the ProductSet to delete.
- //
- // Format is:
- // `projects/PROJECT_ID/locations/LOC_ID/productSets/PRODUCT_SET_ID`
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "vision.googleapis.com/ProductSet"
- }
- ];
- }
- // Request message for the `CreateReferenceImage` method.
- message CreateReferenceImageRequest {
- // Required. Resource name of the product in which to create the reference image.
- //
- // Format is
- // `projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID`.
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "vision.googleapis.com/Product"
- }
- ];
- // Required. The reference image to create.
- // If an image ID is specified, it is ignored.
- ReferenceImage reference_image = 2 [(google.api.field_behavior) = REQUIRED];
- // A user-supplied resource id for the ReferenceImage to be added. If set,
- // the server will attempt to use this value as the resource id. If it is
- // already in use, an error is returned with code ALREADY_EXISTS. Must be at
- // most 128 characters long. It cannot contain the character `/`.
- string reference_image_id = 3;
- }
- // Request message for the `ListReferenceImages` method.
- message ListReferenceImagesRequest {
- // Required. Resource name of the product containing the reference images.
- //
- // Format is
- // `projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID`.
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "vision.googleapis.com/Product"
- }
- ];
- // The maximum number of items to return. Default 10, maximum 100.
- int32 page_size = 2;
- // A token identifying a page of results to be returned. This is the value
- // of `nextPageToken` returned in a previous reference image list request.
- //
- // Defaults to the first page if not specified.
- string page_token = 3;
- }
- // Response message for the `ListReferenceImages` method.
- message ListReferenceImagesResponse {
- // The list of reference images.
- repeated ReferenceImage reference_images = 1;
- // The maximum number of items to return. Default 10, maximum 100.
- int32 page_size = 2;
- // The next_page_token returned from a previous List request, if any.
- string next_page_token = 3;
- }
- // Request message for the `GetReferenceImage` method.
- message GetReferenceImageRequest {
- // Required. The resource name of the ReferenceImage to get.
- //
- // Format is:
- //
- // `projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID/referenceImages/IMAGE_ID`.
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "vision.googleapis.com/ReferenceImage"
- }
- ];
- }
- // Request message for the `DeleteReferenceImage` method.
- message DeleteReferenceImageRequest {
- // Required. The resource name of the reference image to delete.
- //
- // Format is:
- //
- // `projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID/referenceImages/IMAGE_ID`
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "vision.googleapis.com/ReferenceImage"
- }
- ];
- }
- // Request message for the `AddProductToProductSet` method.
- message AddProductToProductSetRequest {
- // Required. The resource name for the ProductSet to modify.
- //
- // Format is:
- // `projects/PROJECT_ID/locations/LOC_ID/productSets/PRODUCT_SET_ID`
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "vision.googleapis.com/ProductSet"
- }
- ];
- // Required. The resource name for the Product to be added to this ProductSet.
- //
- // Format is:
- // `projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID`
- string product = 2 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "vision.googleapis.com/Product"
- }
- ];
- }
- // Request message for the `RemoveProductFromProductSet` method.
- message RemoveProductFromProductSetRequest {
- // Required. The resource name for the ProductSet to modify.
- //
- // Format is:
- // `projects/PROJECT_ID/locations/LOC_ID/productSets/PRODUCT_SET_ID`
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "vision.googleapis.com/ProductSet"
- }
- ];
- // Required. The resource name for the Product to be removed from this ProductSet.
- //
- // Format is:
- // `projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID`
- string product = 2 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "vision.googleapis.com/Product"
- }
- ];
- }
- // Request message for the `ListProductsInProductSet` method.
- message ListProductsInProductSetRequest {
- // Required. The ProductSet resource for which to retrieve Products.
- //
- // Format is:
- // `projects/PROJECT_ID/locations/LOC_ID/productSets/PRODUCT_SET_ID`
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "vision.googleapis.com/ProductSet"
- }
- ];
- // The maximum number of items to return. Default 10, maximum 100.
- int32 page_size = 2;
- // The next_page_token returned from a previous List request, if any.
- string page_token = 3;
- }
- // Response message for the `ListProductsInProductSet` method.
- message ListProductsInProductSetResponse {
- // The list of Products.
- repeated Product products = 1;
- // Token to retrieve the next page of results, or empty if there are no more
- // results in the list.
- string next_page_token = 2;
- }
- // The Google Cloud Storage location for a csv file which preserves a list of
- // ImportProductSetRequests in each line.
- message ImportProductSetsGcsSource {
- // The Google Cloud Storage URI of the input csv file.
- //
- // The URI must start with `gs://`.
- //
- // The format of the input csv file should be one image per line.
- // In each line, there are 6 columns.
- // 1. image_uri
- // 2, image_id
- // 3. product_set_id
- // 4. product_id
- // 5, product_category
- // 6, product_display_name
- // 7, labels
- // 8. bounding_poly
- //
- // Columns 1, 3, 4, and 5 are required, other columns are optional. A new
- // ProductSet/Product with the same id will be created on the fly
- // if the ProductSet/Product specified by product_set_id/product_id does not
- // exist.
- //
- // The image_id field is optional but has to be unique if provided. If it is
- // empty, we will automatically assign an unique id to the image.
- //
- // The product_display_name field is optional. If it is empty, a space (" ")
- // is used as the place holder for the product display_name, which can
- // be updated later through the realtime API.
- //
- // If the Product with product_id already exists, the fields
- // product_display_name, product_category and labels are ignored.
- //
- // If a Product doesn't exist and needs to be created on the fly, the
- // product_display_name field refers to
- // [Product.display_name][google.cloud.vision.v1p3beta1.Product.display_name],
- // the product_category field refers to
- // [Product.product_category][google.cloud.vision.v1p3beta1.Product.product_category],
- // and the labels field refers to [Product.labels][].
- //
- // Labels (optional) should be a line containing a list of comma-separated
- // key-value pairs, with the format
- // "key_1=value_1,key_2=value_2,...,key_n=value_n".
- //
- // The bounding_poly (optional) field is used to identify one region of
- // interest from the image in the same manner as CreateReferenceImage. If no
- // bounding_poly is specified, the system will try to detect regions of
- // interest automatically.
- //
- // Note that the pipeline will resize the image if the image resolution is too
- // large to process (above 20MP).
- //
- // Also note that at most one bounding_poly is allowed per line. If the image
- // contains multiple regions of interest, the csv should contain one line per
- // region of interest.
- //
- // The bounding_poly column should contain an even number of comma-separated
- // numbers, with the format "p1_x,p1_y,p2_x,p2_y,...,pn_x,pn_y". Nonnegative
- // integers should be used for absolute bounding polygons, and float values
- // in [0, 1] should be used for normalized bounding polygons.
- string csv_file_uri = 1;
- }
- // The input content for the `ImportProductSets` method.
- message ImportProductSetsInputConfig {
- // The source of the input.
- oneof source {
- // The Google Cloud Storage location for a csv file which preserves a list
- // of ImportProductSetRequests in each line.
- ImportProductSetsGcsSource gcs_source = 1;
- }
- }
- // Request message for the `ImportProductSets` method.
- message ImportProductSetsRequest {
- // Required. The project in which the ProductSets should be imported.
- //
- // Format is `projects/PROJECT_ID/locations/LOC_ID`.
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "locations.googleapis.com/Location"
- }
- ];
- // Required. The input content for the list of requests.
- ImportProductSetsInputConfig input_config = 2 [(google.api.field_behavior) = REQUIRED];
- }
- // Response message for the `ImportProductSets` method.
- //
- // This message is returned by the
- // [google.longrunning.Operations.GetOperation][google.longrunning.Operations.GetOperation]
- // method in the returned
- // [google.longrunning.Operation.response][google.longrunning.Operation.response]
- // field.
- message ImportProductSetsResponse {
- // The list of reference_images that are imported successfully.
- repeated ReferenceImage reference_images = 1;
- // The rpc status for each ImportProductSet request, including both successes
- // and errors.
- //
- // The number of statuses here matches the number of lines in the csv file,
- // and statuses[i] stores the success or failure status of processing the i-th
- // line of the csv, starting from line 0.
- repeated google.rpc.Status statuses = 2;
- }
- // Metadata for the batch operations such as the current state.
- //
- // This is included in the `metadata` field of the `Operation` returned by the
- // `GetOperation` call of the `google::longrunning::Operations` service.
- message BatchOperationMetadata {
- // Enumerates the possible states that the batch request can be in.
- enum State {
- // Invalid.
- STATE_UNSPECIFIED = 0;
- // Request is actively being processed.
- PROCESSING = 1;
- // The request is done and at least one item has been successfully
- // processed.
- SUCCESSFUL = 2;
- // The request is done and no item has been successfully processed.
- FAILED = 3;
- // The request is done after the longrunning.Operations.CancelOperation has
- // been called by the user. Any records that were processed before the
- // cancel command are output as specified in the request.
- CANCELLED = 4;
- }
- // The current state of the batch operation.
- State state = 1;
- // The time when the batch request was submitted to the server.
- google.protobuf.Timestamp submit_time = 2;
- // The time when the batch request is finished and
- // [google.longrunning.Operation.done][google.longrunning.Operation.done] is
- // set to true.
- google.protobuf.Timestamp end_time = 3;
- }
|