product_service.proto 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932
  1. // Copyright 2021 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.cloud.retail.v2alpha;
  16. import "google/api/annotations.proto";
  17. import "google/api/client.proto";
  18. import "google/api/field_behavior.proto";
  19. import "google/api/resource.proto";
  20. import "google/cloud/retail/v2alpha/common.proto";
  21. import "google/cloud/retail/v2alpha/import_config.proto";
  22. import "google/cloud/retail/v2alpha/product.proto";
  23. import "google/cloud/retail/v2alpha/purge_config.proto";
  24. import "google/longrunning/operations.proto";
  25. import "google/protobuf/empty.proto";
  26. import "google/protobuf/field_mask.proto";
  27. import "google/protobuf/timestamp.proto";
  28. option csharp_namespace = "Google.Cloud.Retail.V2Alpha";
  29. option go_package = "google.golang.org/genproto/googleapis/cloud/retail/v2alpha;retail";
  30. option java_multiple_files = true;
  31. option java_outer_classname = "ProductServiceProto";
  32. option java_package = "com.google.cloud.retail.v2alpha";
  33. option objc_class_prefix = "RETAIL";
  34. option php_namespace = "Google\\Cloud\\Retail\\V2alpha";
  35. option ruby_package = "Google::Cloud::Retail::V2alpha";
  36. // Service for ingesting [Product][google.cloud.retail.v2alpha.Product]
  37. // information of the customer's website.
  38. service ProductService {
  39. option (google.api.default_host) = "retail.googleapis.com";
  40. option (google.api.oauth_scopes) =
  41. "https://www.googleapis.com/auth/cloud-platform";
  42. // Creates a [Product][google.cloud.retail.v2alpha.Product].
  43. rpc CreateProduct(CreateProductRequest) returns (Product) {
  44. option (google.api.http) = {
  45. post: "/v2alpha/{parent=projects/*/locations/*/catalogs/*/branches/*}/products"
  46. body: "product"
  47. };
  48. option (google.api.method_signature) = "parent,product,product_id";
  49. }
  50. // Gets a [Product][google.cloud.retail.v2alpha.Product].
  51. rpc GetProduct(GetProductRequest) returns (Product) {
  52. option (google.api.http) = {
  53. get: "/v2alpha/{name=projects/*/locations/*/catalogs/*/branches/*/products/**}"
  54. };
  55. option (google.api.method_signature) = "name";
  56. }
  57. // Gets a list of [Product][google.cloud.retail.v2alpha.Product]s.
  58. rpc ListProducts(ListProductsRequest) returns (ListProductsResponse) {
  59. option (google.api.http) = {
  60. get: "/v2alpha/{parent=projects/*/locations/*/catalogs/*/branches/*}/products"
  61. };
  62. option (google.api.method_signature) = "parent";
  63. }
  64. // Updates a [Product][google.cloud.retail.v2alpha.Product].
  65. rpc UpdateProduct(UpdateProductRequest) returns (Product) {
  66. option (google.api.http) = {
  67. patch: "/v2alpha/{product.name=projects/*/locations/*/catalogs/*/branches/*/products/**}"
  68. body: "product"
  69. };
  70. option (google.api.method_signature) = "product,update_mask";
  71. }
  72. // Deletes a [Product][google.cloud.retail.v2alpha.Product].
  73. rpc DeleteProduct(DeleteProductRequest) returns (google.protobuf.Empty) {
  74. option (google.api.http) = {
  75. delete: "/v2alpha/{name=projects/*/locations/*/catalogs/*/branches/*/products/**}"
  76. };
  77. option (google.api.method_signature) = "name";
  78. }
  79. // Permanently deletes all selected
  80. // [Product][google.cloud.retail.v2alpha.Product]s under a branch.
  81. //
  82. // This process is asynchronous. If the request is valid, the removal will be
  83. // enqueued and processed offline. Depending on the number of
  84. // [Product][google.cloud.retail.v2alpha.Product]s, this operation could take
  85. // hours to complete. Before the operation completes, some
  86. // [Product][google.cloud.retail.v2alpha.Product]s may still be returned by
  87. // [ProductService.GetProduct][google.cloud.retail.v2alpha.ProductService.GetProduct]
  88. // or
  89. // [ProductService.ListProducts][google.cloud.retail.v2alpha.ProductService.ListProducts].
  90. //
  91. // Depending on the number of [Product][google.cloud.retail.v2alpha.Product]s,
  92. // this operation could take hours to complete. To get a sample of
  93. // [Product][google.cloud.retail.v2alpha.Product]s that would be deleted, set
  94. // [PurgeProductsRequest.force][google.cloud.retail.v2alpha.PurgeProductsRequest.force]
  95. // to false.
  96. rpc PurgeProducts(PurgeProductsRequest)
  97. returns (google.longrunning.Operation) {
  98. option (google.api.http) = {
  99. post: "/v2alpha/{parent=projects/*/locations/*/catalogs/*/branches/*}/products:purge"
  100. body: "*"
  101. };
  102. option (google.longrunning.operation_info) = {
  103. response_type: "google.cloud.retail.v2alpha.PurgeProductsResponse"
  104. metadata_type: "google.cloud.retail.v2alpha.PurgeProductsMetadata"
  105. };
  106. }
  107. // Bulk import of multiple [Product][google.cloud.retail.v2alpha.Product]s.
  108. //
  109. // Request processing may be synchronous.
  110. // Non-existing items are created.
  111. //
  112. // Note that it is possible for a subset of the
  113. // [Product][google.cloud.retail.v2alpha.Product]s to be successfully updated.
  114. rpc ImportProducts(ImportProductsRequest)
  115. returns (google.longrunning.Operation) {
  116. option (google.api.http) = {
  117. post: "/v2alpha/{parent=projects/*/locations/*/catalogs/*/branches/*}/products:import"
  118. body: "*"
  119. };
  120. option (google.longrunning.operation_info) = {
  121. response_type: "google.cloud.retail.v2alpha.ImportProductsResponse"
  122. metadata_type: "google.cloud.retail.v2alpha.ImportMetadata"
  123. };
  124. }
  125. // Updates inventory information for a
  126. // [Product][google.cloud.retail.v2alpha.Product] while respecting the last
  127. // update timestamps of each inventory field.
  128. //
  129. // This process is asynchronous and does not require the
  130. // [Product][google.cloud.retail.v2alpha.Product] to exist before updating
  131. // fulfillment information. If the request is valid, the update will be
  132. // enqueued and processed downstream. As a consequence, when a response is
  133. // returned, updates are not immediately manifested in the
  134. // [Product][google.cloud.retail.v2alpha.Product] queried by
  135. // [ProductService.GetProduct][google.cloud.retail.v2alpha.ProductService.GetProduct]
  136. // or
  137. // [ProductService.ListProducts][google.cloud.retail.v2alpha.ProductService.ListProducts].
  138. //
  139. // When inventory is updated with
  140. // [ProductService.CreateProduct][google.cloud.retail.v2alpha.ProductService.CreateProduct]
  141. // and
  142. // [ProductService.UpdateProduct][google.cloud.retail.v2alpha.ProductService.UpdateProduct],
  143. // the specified inventory field value(s) will overwrite any existing value(s)
  144. // while ignoring the last update time for this field. Furthermore, the last
  145. // update time for the specified inventory fields will be overwritten to the
  146. // time of the
  147. // [ProductService.CreateProduct][google.cloud.retail.v2alpha.ProductService.CreateProduct]
  148. // or
  149. // [ProductService.UpdateProduct][google.cloud.retail.v2alpha.ProductService.UpdateProduct]
  150. // request.
  151. //
  152. // If no inventory fields are set in
  153. // [CreateProductRequest.product][google.cloud.retail.v2alpha.CreateProductRequest.product],
  154. // then any pre-existing inventory information for this product will be used.
  155. //
  156. // If no inventory fields are set in
  157. // [SetInventoryRequest.set_mask][google.cloud.retail.v2alpha.SetInventoryRequest.set_mask],
  158. // then any existing inventory information will be preserved.
  159. //
  160. // Pre-existing inventory information can only be updated with
  161. // [ProductService.SetInventory][google.cloud.retail.v2alpha.ProductService.SetInventory],
  162. // [ProductService.AddFulfillmentPlaces][google.cloud.retail.v2alpha.ProductService.AddFulfillmentPlaces],
  163. // and
  164. // [ProductService.RemoveFulfillmentPlaces][google.cloud.retail.v2alpha.ProductService.RemoveFulfillmentPlaces].
  165. //
  166. // This feature is only available for users who have Retail Search enabled.
  167. // Please enable Retail Search on Cloud Console before using this feature.
  168. rpc SetInventory(SetInventoryRequest) returns (google.longrunning.Operation) {
  169. option (google.api.http) = {
  170. post: "/v2alpha/{inventory.name=projects/*/locations/*/catalogs/*/branches/*/products/**}:setInventory"
  171. body: "*"
  172. };
  173. option (google.api.method_signature) = "inventory,set_mask";
  174. option (google.longrunning.operation_info) = {
  175. response_type: "google.cloud.retail.v2alpha.SetInventoryResponse"
  176. metadata_type: "google.cloud.retail.v2alpha.SetInventoryMetadata"
  177. };
  178. }
  179. // Incrementally adds place IDs to
  180. // [Product.fulfillment_info.place_ids][google.cloud.retail.v2alpha.FulfillmentInfo.place_ids].
  181. //
  182. // This process is asynchronous and does not require the
  183. // [Product][google.cloud.retail.v2alpha.Product] to exist before updating
  184. // fulfillment information. If the request is valid, the update will be
  185. // enqueued and processed downstream. As a consequence, when a response is
  186. // returned, the added place IDs are not immediately manifested in the
  187. // [Product][google.cloud.retail.v2alpha.Product] queried by
  188. // [ProductService.GetProduct][google.cloud.retail.v2alpha.ProductService.GetProduct]
  189. // or
  190. // [ProductService.ListProducts][google.cloud.retail.v2alpha.ProductService.ListProducts].
  191. //
  192. // This feature is only available for users who have Retail Search enabled.
  193. // Please enable Retail Search on Cloud Console before using this feature.
  194. rpc AddFulfillmentPlaces(AddFulfillmentPlacesRequest)
  195. returns (google.longrunning.Operation) {
  196. option (google.api.http) = {
  197. post: "/v2alpha/{product=projects/*/locations/*/catalogs/*/branches/*/products/**}:addFulfillmentPlaces"
  198. body: "*"
  199. };
  200. option (google.api.method_signature) = "product";
  201. option (google.longrunning.operation_info) = {
  202. response_type: "google.cloud.retail.v2alpha.AddFulfillmentPlacesResponse"
  203. metadata_type: "google.cloud.retail.v2alpha.AddFulfillmentPlacesMetadata"
  204. };
  205. }
  206. // Incrementally removes place IDs from a
  207. // [Product.fulfillment_info.place_ids][google.cloud.retail.v2alpha.FulfillmentInfo.place_ids].
  208. //
  209. // This process is asynchronous and does not require the
  210. // [Product][google.cloud.retail.v2alpha.Product] to exist before updating
  211. // fulfillment information. If the request is valid, the update will be
  212. // enqueued and processed downstream. As a consequence, when a response is
  213. // returned, the removed place IDs are not immediately manifested in the
  214. // [Product][google.cloud.retail.v2alpha.Product] queried by
  215. // [ProductService.GetProduct][google.cloud.retail.v2alpha.ProductService.GetProduct]
  216. // or
  217. // [ProductService.ListProducts][google.cloud.retail.v2alpha.ProductService.ListProducts].
  218. //
  219. // This feature is only available for users who have Retail Search enabled.
  220. // Please enable Retail Search on Cloud Console before using this feature.
  221. rpc RemoveFulfillmentPlaces(RemoveFulfillmentPlacesRequest)
  222. returns (google.longrunning.Operation) {
  223. option (google.api.http) = {
  224. post: "/v2alpha/{product=projects/*/locations/*/catalogs/*/branches/*/products/**}:removeFulfillmentPlaces"
  225. body: "*"
  226. };
  227. option (google.api.method_signature) = "product";
  228. option (google.longrunning.operation_info) = {
  229. response_type: "google.cloud.retail.v2alpha.RemoveFulfillmentPlacesResponse"
  230. metadata_type: "google.cloud.retail.v2alpha.RemoveFulfillmentPlacesMetadata"
  231. };
  232. }
  233. // Updates local inventory information for a
  234. // [Product][google.cloud.retail.v2alpha.Product] at a list of places, while
  235. // respecting the last update timestamps of each inventory field.
  236. //
  237. // This process is asynchronous and does not require the
  238. // [Product][google.cloud.retail.v2alpha.Product] to exist before updating
  239. // inventory information. If the request is valid, the update will be enqueued
  240. // and processed downstream. As a consequence, when a response is returned,
  241. // updates are not immediately manifested in the
  242. // [Product][google.cloud.retail.v2alpha.Product] queried by
  243. // [ProductService.GetProduct][google.cloud.retail.v2alpha.ProductService.GetProduct]
  244. // or
  245. // [ProductService.ListProducts][google.cloud.retail.v2alpha.ProductService.ListProducts].
  246. //
  247. // Local inventory information can only be modified using this method.
  248. // [ProductService.CreateProduct][google.cloud.retail.v2alpha.ProductService.CreateProduct]
  249. // and
  250. // [ProductService.UpdateProduct][google.cloud.retail.v2alpha.ProductService.UpdateProduct]
  251. // has no effect on local inventories.
  252. //
  253. // This feature is only available for users who have Retail Search enabled.
  254. // Please enable Retail Search on Cloud Console before using this feature.
  255. rpc AddLocalInventories(AddLocalInventoriesRequest)
  256. returns (google.longrunning.Operation) {
  257. option (google.api.http) = {
  258. post: "/v2alpha/{product=projects/*/locations/*/catalogs/*/branches/*/products/**}:addLocalInventories"
  259. body: "*"
  260. };
  261. option (google.api.method_signature) = "product";
  262. option (google.longrunning.operation_info) = {
  263. response_type: "google.cloud.retail.v2alpha.AddLocalInventoriesResponse"
  264. metadata_type: "google.cloud.retail.v2alpha.AddLocalInventoriesMetadata"
  265. };
  266. }
  267. // Remove local inventory information for a
  268. // [Product][google.cloud.retail.v2alpha.Product] at a list of places at a
  269. // removal timestamp.
  270. //
  271. // This process is asynchronous. If the request is valid, the removal will be
  272. // enqueued and processed downstream. As a consequence, when a response is
  273. // returned, removals are not immediately manifested in the
  274. // [Product][google.cloud.retail.v2alpha.Product] queried by
  275. // [ProductService.GetProduct][google.cloud.retail.v2alpha.ProductService.GetProduct]
  276. // or
  277. // [ProductService.ListProducts][google.cloud.retail.v2alpha.ProductService.ListProducts].
  278. //
  279. // Local inventory information can only be removed using this method.
  280. // [ProductService.CreateProduct][google.cloud.retail.v2alpha.ProductService.CreateProduct]
  281. // and
  282. // [ProductService.UpdateProduct][google.cloud.retail.v2alpha.ProductService.UpdateProduct]
  283. // has no effect on local inventories.
  284. //
  285. // This feature is only available for users who have Retail Search enabled.
  286. // Please enable Retail Search on Cloud Console before using this feature.
  287. rpc RemoveLocalInventories(RemoveLocalInventoriesRequest)
  288. returns (google.longrunning.Operation) {
  289. option (google.api.http) = {
  290. post: "/v2alpha/{product=projects/*/locations/*/catalogs/*/branches/*/products/**}:removeLocalInventories"
  291. body: "*"
  292. };
  293. option (google.api.method_signature) = "product";
  294. option (google.longrunning.operation_info) = {
  295. response_type: "google.cloud.retail.v2alpha.RemoveLocalInventoriesResponse"
  296. metadata_type: "google.cloud.retail.v2alpha.RemoveLocalInventoriesMetadata"
  297. };
  298. }
  299. }
  300. // Request message for
  301. // [ProductService.CreateProduct][google.cloud.retail.v2alpha.ProductService.CreateProduct]
  302. // method.
  303. message CreateProductRequest {
  304. // Required. The parent catalog resource name, such as
  305. // `projects/*/locations/global/catalogs/default_catalog/branches/default_branch`.
  306. string parent = 1 [
  307. (google.api.field_behavior) = REQUIRED,
  308. (google.api.resource_reference) = { type: "retail.googleapis.com/Branch" }
  309. ];
  310. // Required. The [Product][google.cloud.retail.v2alpha.Product] to create.
  311. Product product = 2 [(google.api.field_behavior) = REQUIRED];
  312. // Required. The ID to use for the
  313. // [Product][google.cloud.retail.v2alpha.Product], which will become the final
  314. // component of the [Product.name][google.cloud.retail.v2alpha.Product.name].
  315. //
  316. // If the caller does not have permission to create the
  317. // [Product][google.cloud.retail.v2alpha.Product], regardless of whether or
  318. // not it exists, a PERMISSION_DENIED error is returned.
  319. //
  320. // This field must be unique among all
  321. // [Product][google.cloud.retail.v2alpha.Product]s with the same
  322. // [parent][google.cloud.retail.v2alpha.CreateProductRequest.parent].
  323. // Otherwise, an ALREADY_EXISTS error is returned.
  324. //
  325. // This field must be a UTF-8 encoded string with a length limit of 128
  326. // characters. Otherwise, an INVALID_ARGUMENT error is returned.
  327. string product_id = 3 [(google.api.field_behavior) = REQUIRED];
  328. }
  329. // Request message for
  330. // [ProductService.GetProduct][google.cloud.retail.v2alpha.ProductService.GetProduct]
  331. // method.
  332. message GetProductRequest {
  333. // Required. Full resource name of
  334. // [Product][google.cloud.retail.v2alpha.Product], such as
  335. // `projects/*/locations/global/catalogs/default_catalog/branches/default_branch/products/some_product_id`.
  336. //
  337. // If the caller does not have permission to access the
  338. // [Product][google.cloud.retail.v2alpha.Product], regardless of whether or
  339. // not it exists, a PERMISSION_DENIED error is returned.
  340. //
  341. // If the requested [Product][google.cloud.retail.v2alpha.Product] does not
  342. // exist, a NOT_FOUND error is returned.
  343. string name = 1 [
  344. (google.api.field_behavior) = REQUIRED,
  345. (google.api.resource_reference) = { type: "retail.googleapis.com/Product" }
  346. ];
  347. }
  348. // Request message for
  349. // [ProductService.UpdateProduct][google.cloud.retail.v2alpha.ProductService.UpdateProduct]
  350. // method.
  351. message UpdateProductRequest {
  352. // Required. The product to update/create.
  353. //
  354. // If the caller does not have permission to update the
  355. // [Product][google.cloud.retail.v2alpha.Product], regardless of whether or
  356. // not it exists, a PERMISSION_DENIED error is returned.
  357. //
  358. // If the [Product][google.cloud.retail.v2alpha.Product] to update does not
  359. // exist and
  360. // [allow_missing][google.cloud.retail.v2alpha.UpdateProductRequest.allow_missing]
  361. // is not set, a NOT_FOUND error is returned.
  362. Product product = 1 [(google.api.field_behavior) = REQUIRED];
  363. // Indicates which fields in the provided
  364. // [Product][google.cloud.retail.v2alpha.Product] to update. The immutable and
  365. // output only fields are NOT supported. If not set, all supported fields (the
  366. // fields that are neither immutable nor output only) are updated.
  367. //
  368. // If an unsupported or unknown field is provided, an INVALID_ARGUMENT error
  369. // is returned.
  370. //
  371. // The attribute key can be updated by setting the mask path as
  372. // "attributes.${key_name}". If a key name is present in the mask but not in
  373. // the patching product from the request, this key will be deleted after the
  374. // update.
  375. google.protobuf.FieldMask update_mask = 2;
  376. // If set to true, and the [Product][google.cloud.retail.v2alpha.Product] is
  377. // not found, a new [Product][google.cloud.retail.v2alpha.Product] will be
  378. // created. In this situation, `update_mask` is ignored.
  379. bool allow_missing = 3;
  380. }
  381. // Request message for
  382. // [ProductService.DeleteProduct][google.cloud.retail.v2alpha.ProductService.DeleteProduct]
  383. // method.
  384. message DeleteProductRequest {
  385. // Required. Full resource name of
  386. // [Product][google.cloud.retail.v2alpha.Product], such as
  387. // `projects/*/locations/global/catalogs/default_catalog/branches/default_branch/products/some_product_id`.
  388. //
  389. // If the caller does not have permission to delete the
  390. // [Product][google.cloud.retail.v2alpha.Product], regardless of whether or
  391. // not it exists, a PERMISSION_DENIED error is returned.
  392. //
  393. // If the [Product][google.cloud.retail.v2alpha.Product] to delete does not
  394. // exist, a NOT_FOUND error is returned.
  395. //
  396. // The [Product][google.cloud.retail.v2alpha.Product] to delete can neither be
  397. // a
  398. // [Product.Type.COLLECTION][google.cloud.retail.v2alpha.Product.Type.COLLECTION]
  399. // [Product][google.cloud.retail.v2alpha.Product] member nor a
  400. // [Product.Type.PRIMARY][google.cloud.retail.v2alpha.Product.Type.PRIMARY]
  401. // [Product][google.cloud.retail.v2alpha.Product] with more than one
  402. // [variants][google.cloud.retail.v2alpha.Product.Type.VARIANT]. Otherwise, an
  403. // INVALID_ARGUMENT error is returned.
  404. //
  405. // All inventory information for the named
  406. // [Product][google.cloud.retail.v2alpha.Product] will be deleted.
  407. string name = 1 [
  408. (google.api.field_behavior) = REQUIRED,
  409. (google.api.resource_reference) = { type: "retail.googleapis.com/Product" }
  410. ];
  411. }
  412. // Request message for
  413. // [ProductService.ListProducts][google.cloud.retail.v2alpha.ProductService.ListProducts]
  414. // method.
  415. message ListProductsRequest {
  416. // Required. The parent branch resource name, such as
  417. // `projects/*/locations/global/catalogs/default_catalog/branches/0`. Use
  418. // `default_branch` as the branch ID, to list products under the default
  419. // branch.
  420. //
  421. // If the caller does not have permission to list
  422. // [Product][google.cloud.retail.v2alpha.Product]s under this branch,
  423. // regardless of whether or not this branch exists, a PERMISSION_DENIED error
  424. // is returned.
  425. string parent = 1 [
  426. (google.api.field_behavior) = REQUIRED,
  427. (google.api.resource_reference) = { type: "retail.googleapis.com/Branch" }
  428. ];
  429. // Maximum number of [Product][google.cloud.retail.v2alpha.Product]s to
  430. // return. If unspecified, defaults to 100. The maximum allowed value is 1000.
  431. // Values above 1000 will be coerced to 1000.
  432. //
  433. // If this field is negative, an INVALID_ARGUMENT error is returned.
  434. int32 page_size = 2;
  435. // A page token
  436. // [ListProductsResponse.next_page_token][google.cloud.retail.v2alpha.ListProductsResponse.next_page_token],
  437. // received from a previous
  438. // [ProductService.ListProducts][google.cloud.retail.v2alpha.ProductService.ListProducts]
  439. // call. Provide this to retrieve the subsequent page.
  440. //
  441. // When paginating, all other parameters provided to
  442. // [ProductService.ListProducts][google.cloud.retail.v2alpha.ProductService.ListProducts]
  443. // must match the call that provided the page token. Otherwise, an
  444. // INVALID_ARGUMENT error is returned.
  445. string page_token = 3;
  446. // A filter to apply on the list results. Supported features:
  447. //
  448. // * List all the products under the parent branch if
  449. // [filter][google.cloud.retail.v2alpha.ListProductsRequest.filter] is unset.
  450. // * List
  451. // [Product.Type.VARIANT][google.cloud.retail.v2alpha.Product.Type.VARIANT]
  452. // [Product][google.cloud.retail.v2alpha.Product]s sharing the same
  453. // [Product.Type.PRIMARY][google.cloud.retail.v2alpha.Product.Type.PRIMARY]
  454. // [Product][google.cloud.retail.v2alpha.Product]. For example:
  455. // `primary_product_id = "some_product_id"`
  456. // * List [Product][google.cloud.retail.v2alpha.Product]s bundled in a
  457. // [Product.Type.COLLECTION][google.cloud.retail.v2alpha.Product.Type.COLLECTION]
  458. // [Product][google.cloud.retail.v2alpha.Product].
  459. // For example:
  460. // `collection_product_id = "some_product_id"`
  461. // * List [Product][google.cloud.retail.v2alpha.Product]s with a partibular
  462. // type. For example:
  463. // `type = "PRIMARY"`
  464. // `type = "VARIANT"`
  465. // `type = "COLLECTION"`
  466. //
  467. // If the field is unrecognizable, an INVALID_ARGUMENT error is returned.
  468. //
  469. // If the specified
  470. // [Product.Type.PRIMARY][google.cloud.retail.v2alpha.Product.Type.PRIMARY]
  471. // [Product][google.cloud.retail.v2alpha.Product] or
  472. // [Product.Type.COLLECTION][google.cloud.retail.v2alpha.Product.Type.COLLECTION]
  473. // [Product][google.cloud.retail.v2alpha.Product] does not exist, a NOT_FOUND
  474. // error is returned.
  475. string filter = 4;
  476. // The fields of [Product][google.cloud.retail.v2alpha.Product] to return in
  477. // the responses. If not set or empty, the following fields are returned:
  478. //
  479. // * [Product.name][google.cloud.retail.v2alpha.Product.name]
  480. // * [Product.id][google.cloud.retail.v2alpha.Product.id]
  481. // * [Product.title][google.cloud.retail.v2alpha.Product.title]
  482. // * [Product.uri][google.cloud.retail.v2alpha.Product.uri]
  483. // * [Product.images][google.cloud.retail.v2alpha.Product.images]
  484. // * [Product.price_info][google.cloud.retail.v2alpha.Product.price_info]
  485. // * [Product.brands][google.cloud.retail.v2alpha.Product.brands]
  486. //
  487. // If "*" is provided, all fields are returned.
  488. // [Product.name][google.cloud.retail.v2alpha.Product.name] is always returned
  489. // no matter what mask is set.
  490. //
  491. // If an unsupported or unknown field is provided, an INVALID_ARGUMENT error
  492. // is returned.
  493. google.protobuf.FieldMask read_mask = 5;
  494. // If true and
  495. // [page_token][google.cloud.retail.v2alpha.ListProductsRequest.page_token] is
  496. // empty,
  497. // [ListProductsResponse.total_size][google.cloud.retail.v2alpha.ListProductsResponse.total_size]
  498. // is set to the total count of matched items irrespective of pagination.
  499. //
  500. // Notice that setting this field to true affects the performance.
  501. bool require_total_size = 6;
  502. }
  503. // Response message for
  504. // [ProductService.ListProducts][google.cloud.retail.v2alpha.ProductService.ListProducts]
  505. // method.
  506. message ListProductsResponse {
  507. // The [Product][google.cloud.retail.v2alpha.Product]s.
  508. repeated Product products = 1;
  509. // A token that can be sent as
  510. // [ListProductsRequest.page_token][google.cloud.retail.v2alpha.ListProductsRequest.page_token]
  511. // to retrieve the next page. If this field is omitted, there are no
  512. // subsequent pages.
  513. string next_page_token = 2;
  514. // The total count of matched [Product][google.cloud.retail.v2alpha.Product]s
  515. // irrespective of pagination. The total number of
  516. // [Product][google.cloud.retail.v2alpha.Product]s returned by pagination may
  517. // be less than the
  518. // [total_size][google.cloud.retail.v2alpha.ListProductsResponse.total_size]
  519. // that matches.
  520. //
  521. // This field is ignored if
  522. // [ListProductsRequest.require_total_size][google.cloud.retail.v2alpha.ListProductsRequest.require_total_size]
  523. // is not set or
  524. // [ListProductsRequest.page_token][google.cloud.retail.v2alpha.ListProductsRequest.page_token]
  525. // is not empty.
  526. int32 total_size = 3;
  527. }
  528. // Request message for
  529. // [ProductService.SetInventory][google.cloud.retail.v2alpha.ProductService.SetInventory]
  530. // method.
  531. message SetInventoryRequest {
  532. // Required. The inventory information to update. The allowable fields to
  533. // update are:
  534. //
  535. // * [Product.price_info][google.cloud.retail.v2alpha.Product.price_info]
  536. // * [Product.availability][google.cloud.retail.v2alpha.Product.availability]
  537. // * [Product.available_quantity][google.cloud.retail.v2alpha.Product.available_quantity]
  538. // * [Product.fulfillment_info][google.cloud.retail.v2alpha.Product.fulfillment_info]
  539. // The updated inventory fields must be specified in
  540. // [SetInventoryRequest.set_mask][google.cloud.retail.v2alpha.SetInventoryRequest.set_mask].
  541. //
  542. // If
  543. // [SetInventoryRequest.inventory.name][google.cloud.retail.v2alpha.Product.name]
  544. // is empty or invalid, an INVALID_ARGUMENT error is returned.
  545. //
  546. // If the caller does not have permission to update the
  547. // [Product][google.cloud.retail.v2alpha.Product] named in
  548. // [Product.name][google.cloud.retail.v2alpha.Product.name], regardless of
  549. // whether or not it exists, a PERMISSION_DENIED error is returned.
  550. //
  551. // If the [Product][google.cloud.retail.v2alpha.Product] to update does not
  552. // have existing inventory information, the provided inventory information
  553. // will be inserted.
  554. //
  555. // If the [Product][google.cloud.retail.v2alpha.Product] to update has
  556. // existing inventory information, the provided inventory information will be
  557. // merged while respecting the last update time for each inventory field,
  558. // using the provided or default value for
  559. // [SetInventoryRequest.set_time][google.cloud.retail.v2alpha.SetInventoryRequest.set_time].
  560. //
  561. // The caller can replace place IDs for a subset of fulfillment types in the
  562. // following ways:
  563. //
  564. // * Adds "fulfillment_info" in
  565. // [SetInventoryRequest.set_mask][google.cloud.retail.v2alpha.SetInventoryRequest.set_mask]
  566. // * Specifies only the desired fulfillment types and corresponding place IDs
  567. // to update in
  568. // [SetInventoryRequest.inventory.fulfillment_info][google.cloud.retail.v2alpha.Product.fulfillment_info]
  569. //
  570. // The caller can clear all place IDs from a subset of fulfillment types in
  571. // the following ways:
  572. //
  573. // * Adds "fulfillment_info" in
  574. // [SetInventoryRequest.set_mask][google.cloud.retail.v2alpha.SetInventoryRequest.set_mask]
  575. // * Specifies only the desired fulfillment types to clear in
  576. // [SetInventoryRequest.inventory.fulfillment_info][google.cloud.retail.v2alpha.Product.fulfillment_info]
  577. // * Checks that only the desired fulfillment info types have empty
  578. // [SetInventoryRequest.inventory.fulfillment_info.place_ids][google.cloud.retail.v2alpha.FulfillmentInfo.place_ids]
  579. //
  580. // The last update time is recorded for the following inventory fields:
  581. // * [Product.price_info][google.cloud.retail.v2alpha.Product.price_info]
  582. // * [Product.availability][google.cloud.retail.v2alpha.Product.availability]
  583. // * [Product.available_quantity][google.cloud.retail.v2alpha.Product.available_quantity]
  584. // * [Product.fulfillment_info][google.cloud.retail.v2alpha.Product.fulfillment_info]
  585. //
  586. // If a full overwrite of inventory information while ignoring timestamps is
  587. // needed,
  588. // [ProductService.UpdateProduct][google.cloud.retail.v2alpha.ProductService.UpdateProduct]
  589. // should be invoked instead.
  590. Product inventory = 1 [(google.api.field_behavior) = REQUIRED];
  591. // Indicates which inventory fields in the provided
  592. // [Product][google.cloud.retail.v2alpha.Product] to update.
  593. //
  594. // At least one field must be provided.
  595. //
  596. // If an unsupported or unknown field is provided, an INVALID_ARGUMENT error
  597. // is returned and the entire update will be ignored.
  598. google.protobuf.FieldMask set_mask = 2;
  599. // The time when the request is issued, used to prevent
  600. // out-of-order updates on inventory fields with the last update time
  601. // recorded. If not provided, the internal system time will be used.
  602. google.protobuf.Timestamp set_time = 3;
  603. // If set to true, and the [Product][google.cloud.retail.v2alpha.Product] with
  604. // name [Product.name][google.cloud.retail.v2alpha.Product.name] is not found,
  605. // the inventory update will still be processed and retained for at most 1 day
  606. // until the [Product][google.cloud.retail.v2alpha.Product] is created. If set
  607. // to false, a NOT_FOUND error is returned if the
  608. // [Product][google.cloud.retail.v2alpha.Product] is not found.
  609. bool allow_missing = 4;
  610. }
  611. // Metadata related to the progress of the SetInventory operation.
  612. // Currently empty because there is no meaningful metadata populated from the
  613. // [ProductService.SetInventory][google.cloud.retail.v2alpha.ProductService.SetInventory]
  614. // method.
  615. message SetInventoryMetadata {}
  616. // Response of the SetInventoryRequest. Currently empty because
  617. // there is no meaningful response populated from the
  618. // [ProductService.SetInventory][google.cloud.retail.v2alpha.ProductService.SetInventory]
  619. // method.
  620. message SetInventoryResponse {}
  621. // Request message for
  622. // [ProductService.AddFulfillmentPlaces][google.cloud.retail.v2alpha.ProductService.AddFulfillmentPlaces]
  623. // method.
  624. message AddFulfillmentPlacesRequest {
  625. // Required. Full resource name of
  626. // [Product][google.cloud.retail.v2alpha.Product], such as
  627. // `projects/*/locations/global/catalogs/default_catalog/branches/default_branch/products/some_product_id`.
  628. //
  629. // If the caller does not have permission to access the
  630. // [Product][google.cloud.retail.v2alpha.Product], regardless of whether or
  631. // not it exists, a PERMISSION_DENIED error is returned.
  632. string product = 1 [
  633. (google.api.field_behavior) = REQUIRED,
  634. (google.api.resource_reference) = { type: "retail.googleapis.com/Product" }
  635. ];
  636. // Required. The fulfillment type, including commonly used types (such as
  637. // pickup in store and same day delivery), and custom types.
  638. //
  639. // Supported values:
  640. //
  641. // * "pickup-in-store"
  642. // * "ship-to-store"
  643. // * "same-day-delivery"
  644. // * "next-day-delivery"
  645. // * "custom-type-1"
  646. // * "custom-type-2"
  647. // * "custom-type-3"
  648. // * "custom-type-4"
  649. // * "custom-type-5"
  650. //
  651. // If this field is set to an invalid value other than these, an
  652. // INVALID_ARGUMENT error is returned.
  653. //
  654. // This field directly corresponds to
  655. // [Product.fulfillment_info.type][google.cloud.retail.v2alpha.FulfillmentInfo.type].
  656. string type = 2 [(google.api.field_behavior) = REQUIRED];
  657. // Required. The IDs for this
  658. // [type][google.cloud.retail.v2alpha.AddFulfillmentPlacesRequest.type], such
  659. // as the store IDs for "pickup-in-store" or the region IDs for
  660. // "same-day-delivery" to be added for this
  661. // [type][google.cloud.retail.v2alpha.AddFulfillmentPlacesRequest.type].
  662. // Duplicate IDs will be automatically ignored.
  663. //
  664. // At least 1 value is required, and a maximum of 2000 values are allowed.
  665. // Each value must be a string with a length limit of 10 characters, matching
  666. // the pattern `[a-zA-Z0-9_-]+`, such as "store1" or "REGION-2". Otherwise, an
  667. // INVALID_ARGUMENT error is returned.
  668. //
  669. // If the total number of place IDs exceeds 2000 for this
  670. // [type][google.cloud.retail.v2alpha.AddFulfillmentPlacesRequest.type] after
  671. // adding, then the update will be rejected.
  672. repeated string place_ids = 3 [(google.api.field_behavior) = REQUIRED];
  673. // The time when the fulfillment updates are issued, used to prevent
  674. // out-of-order updates on fulfillment information. If not provided, the
  675. // internal system time will be used.
  676. google.protobuf.Timestamp add_time = 4;
  677. // If set to true, and the [Product][google.cloud.retail.v2alpha.Product] is
  678. // not found, the fulfillment information will still be processed and retained
  679. // for at most 1 day and processed once the
  680. // [Product][google.cloud.retail.v2alpha.Product] is created. If set to false,
  681. // a NOT_FOUND error is returned if the
  682. // [Product][google.cloud.retail.v2alpha.Product] is not found.
  683. bool allow_missing = 5;
  684. }
  685. // Metadata related to the progress of the AddFulfillmentPlaces operation.
  686. // Currently empty because there is no meaningful metadata populated from the
  687. // [ProductService.AddFulfillmentPlaces][google.cloud.retail.v2alpha.ProductService.AddFulfillmentPlaces]
  688. // method.
  689. message AddFulfillmentPlacesMetadata {}
  690. // Response of the AddFulfillmentPlacesRequest. Currently empty because
  691. // there is no meaningful response populated from the
  692. // [ProductService.AddFulfillmentPlaces][google.cloud.retail.v2alpha.ProductService.AddFulfillmentPlaces]
  693. // method.
  694. message AddFulfillmentPlacesResponse {}
  695. // Request message for
  696. // [ProductService.AddLocalInventories][google.cloud.retail.v2alpha.ProductService.AddLocalInventories]
  697. // method.
  698. message AddLocalInventoriesRequest {
  699. // Required. Full resource name of
  700. // [Product][google.cloud.retail.v2alpha.Product], such as
  701. // `projects/*/locations/global/catalogs/default_catalog/branches/default_branch/products/some_product_id`.
  702. //
  703. // If the caller does not have permission to access the
  704. // [Product][google.cloud.retail.v2alpha.Product], regardless of whether or
  705. // not it exists, a PERMISSION_DENIED error is returned.
  706. string product = 1 [
  707. (google.api.field_behavior) = REQUIRED,
  708. (google.api.resource_reference) = { type: "retail.googleapis.com/Product" }
  709. ];
  710. // Required. A list of inventory information at difference places. Each place
  711. // is identified by its place ID. At most 3000 inventories are allowed per
  712. // request.
  713. repeated LocalInventory local_inventories = 2
  714. [(google.api.field_behavior) = REQUIRED];
  715. // Indicates which inventory fields in the provided list of
  716. // [LocalInventory][google.cloud.retail.v2alpha.LocalInventory] to update. The
  717. // field is updated to the provided value.
  718. //
  719. // If a field is set while the place does not have a previous local inventory,
  720. // the local inventory at that store is created.
  721. //
  722. // If a field is set while the value of that field is not provided, the
  723. // original field value, if it exists, is deleted.
  724. //
  725. // If the mask is not set or set with empty paths, all inventory fields will
  726. // be updated.
  727. //
  728. // If an unsupported or unknown field is provided, an INVALID_ARGUMENT error
  729. // is returned and the entire update will be ignored.
  730. google.protobuf.FieldMask add_mask = 4;
  731. // The time when the inventory updates are issued. Used to prevent
  732. // out-of-order updates on local inventory fields. If not provided, the
  733. // internal system time will be used.
  734. google.protobuf.Timestamp add_time = 5;
  735. // If set to true, and the [Product][google.cloud.retail.v2alpha.Product] is
  736. // not found, the local inventory will still be processed and retained for at
  737. // most 1 day and processed once the
  738. // [Product][google.cloud.retail.v2alpha.Product] is created. If set to false,
  739. // a NOT_FOUND error is returned if the
  740. // [Product][google.cloud.retail.v2alpha.Product] is not found.
  741. bool allow_missing = 6;
  742. }
  743. // Metadata related to the progress of the AddLocalInventories operation.
  744. // Currently empty because there is no meaningful metadata populated from the
  745. // [ProductService.AddLocalInventories][google.cloud.retail.v2alpha.ProductService.AddLocalInventories]
  746. // method.
  747. message AddLocalInventoriesMetadata {}
  748. // Response of the
  749. // [ProductService.AddLocalInventories][google.cloud.retail.v2alpha.ProductService.AddLocalInventories]
  750. // API. Currently empty because there is no meaningful response populated from
  751. // the
  752. // [ProductService.AddLocalInventories][google.cloud.retail.v2alpha.ProductService.AddLocalInventories]
  753. // method.
  754. message AddLocalInventoriesResponse {}
  755. // Request message for
  756. // [ProductService.RemoveLocalInventories][google.cloud.retail.v2alpha.ProductService.RemoveLocalInventories]
  757. // method.
  758. message RemoveLocalInventoriesRequest {
  759. // Required. Full resource name of
  760. // [Product][google.cloud.retail.v2alpha.Product], such as
  761. // `projects/*/locations/global/catalogs/default_catalog/branches/default_branch/products/some_product_id`.
  762. //
  763. // If the caller does not have permission to access the
  764. // [Product][google.cloud.retail.v2alpha.Product], regardless of whether or
  765. // not it exists, a PERMISSION_DENIED error is returned.
  766. string product = 1 [
  767. (google.api.field_behavior) = REQUIRED,
  768. (google.api.resource_reference) = { type: "retail.googleapis.com/Product" }
  769. ];
  770. // Required. A list of place IDs to have their inventory deleted.
  771. // At most 3000 place IDs are allowed per request.
  772. repeated string place_ids = 2 [(google.api.field_behavior) = REQUIRED];
  773. // The time when the inventory deletions are issued. Used to prevent
  774. // out-of-order updates and deletions on local inventory fields. If not
  775. // provided, the internal system time will be used.
  776. google.protobuf.Timestamp remove_time = 5;
  777. // If set to true, and the [Product][google.cloud.retail.v2alpha.Product] is
  778. // not found, the local inventory removal request will still be processed and
  779. // retained for at most 1 day and processed once the
  780. // [Product][google.cloud.retail.v2alpha.Product] is created. If set to false,
  781. // a NOT_FOUND error is returned if the
  782. // [Product][google.cloud.retail.v2alpha.Product] is not found.
  783. bool allow_missing = 3;
  784. }
  785. // Metadata related to the progress of the RemoveLocalInventories operation.
  786. // Currently empty because there is no meaningful metadata populated from the
  787. // [ProductService.RemoveLocalInventories][google.cloud.retail.v2alpha.ProductService.RemoveLocalInventories]
  788. // method.
  789. message RemoveLocalInventoriesMetadata {}
  790. // Response of the
  791. // [ProductService.RemoveLocalInventories][google.cloud.retail.v2alpha.ProductService.RemoveLocalInventories]
  792. // API. Currently empty because there is no meaningful response populated from
  793. // the
  794. // [ProductService.RemoveLocalInventories][google.cloud.retail.v2alpha.ProductService.RemoveLocalInventories]
  795. // method.
  796. message RemoveLocalInventoriesResponse {}
  797. // Request message for
  798. // [ProductService.RemoveFulfillmentPlaces][google.cloud.retail.v2alpha.ProductService.RemoveFulfillmentPlaces]
  799. // method.
  800. message RemoveFulfillmentPlacesRequest {
  801. // Required. Full resource name of
  802. // [Product][google.cloud.retail.v2alpha.Product], such as
  803. // `projects/*/locations/global/catalogs/default_catalog/branches/default_branch/products/some_product_id`.
  804. //
  805. // If the caller does not have permission to access the
  806. // [Product][google.cloud.retail.v2alpha.Product], regardless of whether or
  807. // not it exists, a PERMISSION_DENIED error is returned.
  808. string product = 1 [
  809. (google.api.field_behavior) = REQUIRED,
  810. (google.api.resource_reference) = { type: "retail.googleapis.com/Product" }
  811. ];
  812. // Required. The fulfillment type, including commonly used types (such as
  813. // pickup in store and same day delivery), and custom types.
  814. //
  815. // Supported values:
  816. //
  817. // * "pickup-in-store"
  818. // * "ship-to-store"
  819. // * "same-day-delivery"
  820. // * "next-day-delivery"
  821. // * "custom-type-1"
  822. // * "custom-type-2"
  823. // * "custom-type-3"
  824. // * "custom-type-4"
  825. // * "custom-type-5"
  826. //
  827. // If this field is set to an invalid value other than these, an
  828. // INVALID_ARGUMENT error is returned.
  829. //
  830. // This field directly corresponds to
  831. // [Product.fulfillment_info.type][google.cloud.retail.v2alpha.FulfillmentInfo.type].
  832. string type = 2 [(google.api.field_behavior) = REQUIRED];
  833. // Required. The IDs for this
  834. // [type][google.cloud.retail.v2alpha.RemoveFulfillmentPlacesRequest.type],
  835. // such as the store IDs for "pickup-in-store" or the region IDs for
  836. // "same-day-delivery", to be removed for this
  837. // [type][google.cloud.retail.v2alpha.RemoveFulfillmentPlacesRequest.type].
  838. //
  839. // At least 1 value is required, and a maximum of 2000 values are allowed.
  840. // Each value must be a string with a length limit of 10 characters, matching
  841. // the pattern `[a-zA-Z0-9_-]+`, such as "store1" or "REGION-2". Otherwise, an
  842. // INVALID_ARGUMENT error is returned.
  843. repeated string place_ids = 3 [(google.api.field_behavior) = REQUIRED];
  844. // The time when the fulfillment updates are issued, used to prevent
  845. // out-of-order updates on fulfillment information. If not provided, the
  846. // internal system time will be used.
  847. google.protobuf.Timestamp remove_time = 4;
  848. // If set to true, and the [Product][google.cloud.retail.v2alpha.Product] is
  849. // not found, the fulfillment information will still be processed and retained
  850. // for at most 1 day and processed once the
  851. // [Product][google.cloud.retail.v2alpha.Product] is created. If set to false,
  852. // a NOT_FOUND error is returned if the
  853. // [Product][google.cloud.retail.v2alpha.Product] is not found.
  854. bool allow_missing = 5;
  855. }
  856. // Metadata related to the progress of the RemoveFulfillmentPlaces operation.
  857. // Currently empty because there is no meaningful metadata populated from the
  858. // [ProductService.RemoveFulfillmentPlaces][google.cloud.retail.v2alpha.ProductService.RemoveFulfillmentPlaces]
  859. // method.
  860. message RemoveFulfillmentPlacesMetadata {}
  861. // Response of the RemoveFulfillmentPlacesRequest. Currently empty because there
  862. // is no meaningful response populated from the
  863. // [ProductService.RemoveFulfillmentPlaces][google.cloud.retail.v2alpha.ProductService.RemoveFulfillmentPlaces]
  864. // method.
  865. message RemoveFulfillmentPlacesResponse {}