catalog_service.proto 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478
  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/catalog.proto";
  21. import "google/protobuf/empty.proto";
  22. import "google/protobuf/field_mask.proto";
  23. import "google/protobuf/timestamp.proto";
  24. option csharp_namespace = "Google.Cloud.Retail.V2Alpha";
  25. option go_package = "google.golang.org/genproto/googleapis/cloud/retail/v2alpha;retail";
  26. option java_multiple_files = true;
  27. option java_outer_classname = "CatalogServiceProto";
  28. option java_package = "com.google.cloud.retail.v2alpha";
  29. option objc_class_prefix = "RETAIL";
  30. option php_namespace = "Google\\Cloud\\Retail\\V2alpha";
  31. option ruby_package = "Google::Cloud::Retail::V2alpha";
  32. // Service for managing catalog configuration.
  33. service CatalogService {
  34. option (google.api.default_host) = "retail.googleapis.com";
  35. option (google.api.oauth_scopes) =
  36. "https://www.googleapis.com/auth/cloud-platform";
  37. // Lists all the [Catalog][google.cloud.retail.v2alpha.Catalog]s associated
  38. // with the project.
  39. rpc ListCatalogs(ListCatalogsRequest) returns (ListCatalogsResponse) {
  40. option (google.api.http) = {
  41. get: "/v2alpha/{parent=projects/*/locations/*}/catalogs"
  42. };
  43. option (google.api.method_signature) = "parent";
  44. }
  45. // Updates the [Catalog][google.cloud.retail.v2alpha.Catalog]s.
  46. rpc UpdateCatalog(UpdateCatalogRequest) returns (Catalog) {
  47. option (google.api.http) = {
  48. patch: "/v2alpha/{catalog.name=projects/*/locations/*/catalogs/*}"
  49. body: "catalog"
  50. };
  51. option (google.api.method_signature) = "catalog,update_mask";
  52. }
  53. // Set a specified branch id as default branch. API methods such as
  54. // [SearchService.Search][google.cloud.retail.v2alpha.SearchService.Search],
  55. // [ProductService.GetProduct][google.cloud.retail.v2alpha.ProductService.GetProduct],
  56. // [ProductService.ListProducts][google.cloud.retail.v2alpha.ProductService.ListProducts]
  57. // will treat requests using "default_branch" to the actual branch id set as
  58. // default.
  59. //
  60. // For example, if `projects/*/locations/*/catalogs/*/branches/1` is set as
  61. // default, setting
  62. // [SearchRequest.branch][google.cloud.retail.v2alpha.SearchRequest.branch] to
  63. // `projects/*/locations/*/catalogs/*/branches/default_branch` is equivalent
  64. // to setting
  65. // [SearchRequest.branch][google.cloud.retail.v2alpha.SearchRequest.branch] to
  66. // `projects/*/locations/*/catalogs/*/branches/1`.
  67. //
  68. // Using multiple branches can be useful when developers would like
  69. // to have a staging branch to test and verify for future usage. When it
  70. // becomes ready, developers switch on the staging branch using this API while
  71. // keeping using `projects/*/locations/*/catalogs/*/branches/default_branch`
  72. // as [SearchRequest.branch][google.cloud.retail.v2alpha.SearchRequest.branch]
  73. // to route the traffic to this staging branch.
  74. //
  75. // CAUTION: If you have live predict/search traffic, switching the default
  76. // branch could potentially cause outages if the ID space of the new branch is
  77. // very different from the old one.
  78. //
  79. // More specifically:
  80. //
  81. // * PredictionService will only return product IDs from branch {newBranch}.
  82. // * SearchService will only return product IDs from branch {newBranch}
  83. // (if branch is not explicitly set).
  84. // * UserEventService will only join events with products from branch
  85. // {newBranch}.
  86. rpc SetDefaultBranch(SetDefaultBranchRequest)
  87. returns (google.protobuf.Empty) {
  88. option (google.api.http) = {
  89. post: "/v2alpha/{catalog=projects/*/locations/*/catalogs/*}:setDefaultBranch"
  90. body: "*"
  91. };
  92. option (google.api.method_signature) = "catalog";
  93. }
  94. // Get which branch is currently default branch set by
  95. // [CatalogService.SetDefaultBranch][google.cloud.retail.v2alpha.CatalogService.SetDefaultBranch]
  96. // method under a specified parent catalog.
  97. rpc GetDefaultBranch(GetDefaultBranchRequest)
  98. returns (GetDefaultBranchResponse) {
  99. option (google.api.http) = {
  100. get: "/v2alpha/{catalog=projects/*/locations/*/catalogs/*}:getDefaultBranch"
  101. };
  102. option (google.api.method_signature) = "catalog";
  103. }
  104. // Gets a [CompletionConfig][google.cloud.retail.v2alpha.CompletionConfig].
  105. rpc GetCompletionConfig(GetCompletionConfigRequest)
  106. returns (CompletionConfig) {
  107. option (google.api.http) = {
  108. get: "/v2alpha/{name=projects/*/locations/*/catalogs/*/completionConfig}"
  109. };
  110. option (google.api.method_signature) = "name";
  111. }
  112. // Updates the
  113. // [CompletionConfig][google.cloud.retail.v2alpha.CompletionConfig]s.
  114. rpc UpdateCompletionConfig(UpdateCompletionConfigRequest)
  115. returns (CompletionConfig) {
  116. option (google.api.http) = {
  117. patch: "/v2alpha/{completion_config.name=projects/*/locations/*/catalogs/*/completionConfig}"
  118. body: "completion_config"
  119. };
  120. option (google.api.method_signature) = "completion_config,update_mask";
  121. }
  122. // Gets an [AttributesConfig][google.cloud.retail.v2alpha.AttributesConfig].
  123. rpc GetAttributesConfig(GetAttributesConfigRequest)
  124. returns (AttributesConfig) {
  125. option (google.api.http) = {
  126. get: "/v2alpha/{name=projects/*/locations/*/catalogs/*/attributesConfig}"
  127. };
  128. option (google.api.method_signature) = "name";
  129. }
  130. // Updates the
  131. // [AttributesConfig][google.cloud.retail.v2alpha.AttributesConfig].
  132. //
  133. // The catalog attributes in the request will be updated in the catalog, or
  134. // inserted if they do not exist. Existing catalog attributes not included in
  135. // the request will remain unchanged. Attributes that are assigned to
  136. // products, but do not exist at the catalog level, are always included in the
  137. // response. The product attribute is assigned default values for missing
  138. // catalog attribute fields, e.g., searchable and dynamic facetable options.
  139. rpc UpdateAttributesConfig(UpdateAttributesConfigRequest)
  140. returns (AttributesConfig) {
  141. option (google.api.http) = {
  142. patch: "/v2alpha/{attributes_config.name=projects/*/locations/*/catalogs/*/attributesConfig}"
  143. body: "attributes_config"
  144. };
  145. option (google.api.method_signature) = "attributes_config,update_mask";
  146. }
  147. // Adds the specified
  148. // [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] to the
  149. // [AttributesConfig][google.cloud.retail.v2alpha.AttributesConfig].
  150. //
  151. // If the [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] to
  152. // add already exists, an ALREADY_EXISTS error is returned.
  153. rpc AddCatalogAttribute(AddCatalogAttributeRequest)
  154. returns (AttributesConfig) {
  155. option (google.api.http) = {
  156. post: "/v2alpha/{attributes_config=projects/*/locations/*/catalogs/*/attributesConfig}:addCatalogAttribute"
  157. body: "*"
  158. };
  159. }
  160. // Removes the specified
  161. // [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] from the
  162. // [AttributesConfig][google.cloud.retail.v2alpha.AttributesConfig].
  163. //
  164. // If the [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] to
  165. // remove does not exist, a NOT_FOUND error is returned.
  166. rpc RemoveCatalogAttribute(RemoveCatalogAttributeRequest)
  167. returns (AttributesConfig) {
  168. option (google.api.http) = {
  169. post: "/v2alpha/{attributes_config=projects/*/locations/*/catalogs/*/attributesConfig}:removeCatalogAttribute"
  170. body: "*"
  171. };
  172. }
  173. // Replaces the specified
  174. // [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] in the
  175. // [AttributesConfig][google.cloud.retail.v2alpha.AttributesConfig] by
  176. // updating the catalog attribute with the same
  177. // [CatalogAttribute.key][google.cloud.retail.v2alpha.CatalogAttribute.key].
  178. //
  179. // If the [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] to
  180. // replace does not exist, a NOT_FOUND error is returned.
  181. rpc ReplaceCatalogAttribute(ReplaceCatalogAttributeRequest)
  182. returns (AttributesConfig) {
  183. option (google.api.http) = {
  184. post: "/v2alpha/{attributes_config=projects/*/locations/*/catalogs/*/attributesConfig}:replaceCatalogAttribute"
  185. body: "*"
  186. };
  187. }
  188. }
  189. // Request for
  190. // [CatalogService.ListCatalogs][google.cloud.retail.v2alpha.CatalogService.ListCatalogs]
  191. // method.
  192. message ListCatalogsRequest {
  193. // Required. The account resource name with an associated location.
  194. //
  195. // If the caller does not have permission to list
  196. // [Catalog][google.cloud.retail.v2alpha.Catalog]s under this location,
  197. // regardless of whether or not this location exists, a PERMISSION_DENIED
  198. // error is returned.
  199. string parent = 1 [
  200. (google.api.field_behavior) = REQUIRED,
  201. (google.api.resource_reference) = {
  202. type: "locations.googleapis.com/Location"
  203. }
  204. ];
  205. // Maximum number of [Catalog][google.cloud.retail.v2alpha.Catalog]s to
  206. // return. If unspecified, defaults to 50. The maximum allowed value is 1000.
  207. // Values above 1000 will be coerced to 1000.
  208. //
  209. // If this field is negative, an INVALID_ARGUMENT is returned.
  210. int32 page_size = 2;
  211. // A page token
  212. // [ListCatalogsResponse.next_page_token][google.cloud.retail.v2alpha.ListCatalogsResponse.next_page_token],
  213. // received from a previous
  214. // [CatalogService.ListCatalogs][google.cloud.retail.v2alpha.CatalogService.ListCatalogs]
  215. // call. Provide this to retrieve the subsequent page.
  216. //
  217. // When paginating, all other parameters provided to
  218. // [CatalogService.ListCatalogs][google.cloud.retail.v2alpha.CatalogService.ListCatalogs]
  219. // must match the call that provided the page token. Otherwise, an
  220. // INVALID_ARGUMENT error is returned.
  221. string page_token = 3;
  222. }
  223. // Response for
  224. // [CatalogService.ListCatalogs][google.cloud.retail.v2alpha.CatalogService.ListCatalogs]
  225. // method.
  226. message ListCatalogsResponse {
  227. // All the customer's [Catalog][google.cloud.retail.v2alpha.Catalog]s.
  228. repeated Catalog catalogs = 1;
  229. // A token that can be sent as
  230. // [ListCatalogsRequest.page_token][google.cloud.retail.v2alpha.ListCatalogsRequest.page_token]
  231. // to retrieve the next page. If this field is omitted, there are no
  232. // subsequent pages.
  233. string next_page_token = 2;
  234. }
  235. // Request for
  236. // [CatalogService.UpdateCatalog][google.cloud.retail.v2alpha.CatalogService.UpdateCatalog]
  237. // method.
  238. message UpdateCatalogRequest {
  239. // Required. The [Catalog][google.cloud.retail.v2alpha.Catalog] to update.
  240. //
  241. // If the caller does not have permission to update the
  242. // [Catalog][google.cloud.retail.v2alpha.Catalog], regardless of whether or
  243. // not it exists, a PERMISSION_DENIED error is returned.
  244. //
  245. // If the [Catalog][google.cloud.retail.v2alpha.Catalog] to update does not
  246. // exist, a NOT_FOUND error is returned.
  247. Catalog catalog = 1 [(google.api.field_behavior) = REQUIRED];
  248. // Indicates which fields in the provided
  249. // [Catalog][google.cloud.retail.v2alpha.Catalog] to update.
  250. //
  251. // If an unsupported or unknown field is provided, an INVALID_ARGUMENT error
  252. // is returned.
  253. google.protobuf.FieldMask update_mask = 2;
  254. }
  255. // Request message to set a specified branch as new default_branch.
  256. message SetDefaultBranchRequest {
  257. // Full resource name of the catalog, such as
  258. // `projects/*/locations/global/catalogs/default_catalog`.
  259. string catalog = 1 [
  260. (google.api.resource_reference) = { type: "retail.googleapis.com/Catalog" }
  261. ];
  262. // The final component of the resource name of a branch.
  263. //
  264. // This field must be one of "0", "1" or "2". Otherwise, an INVALID_ARGUMENT
  265. // error is returned.
  266. //
  267. // If there are no sufficient active products in the targeted branch and
  268. // [force][google.cloud.retail.v2alpha.SetDefaultBranchRequest.force] is not
  269. // set, a FAILED_PRECONDITION error is returned.
  270. string branch_id = 2 [
  271. (google.api.resource_reference) = { type: "retail.googleapis.com/Branch" }
  272. ];
  273. // Some note on this request, this can be retrieved by
  274. // [CatalogService.GetDefaultBranch][google.cloud.retail.v2alpha.CatalogService.GetDefaultBranch]
  275. // before next valid default branch set occurs.
  276. //
  277. // This field must be a UTF-8 encoded string with a length limit of 1,000
  278. // characters. Otherwise, an INVALID_ARGUMENT error is returned.
  279. string note = 3;
  280. // If set to true, it permits switching to a branch with
  281. // [branch_id][google.cloud.retail.v2alpha.SetDefaultBranchRequest.branch_id]
  282. // even if it has no sufficient active products.
  283. bool force = 4;
  284. }
  285. // Request message to show which branch is currently the default branch.
  286. message GetDefaultBranchRequest {
  287. // The parent catalog resource name, such as
  288. // `projects/*/locations/global/catalogs/default_catalog`.
  289. string catalog = 1 [
  290. (google.api.resource_reference) = { type: "retail.googleapis.com/Catalog" }
  291. ];
  292. }
  293. // Response message of
  294. // [CatalogService.GetDefaultBranch][google.cloud.retail.v2alpha.CatalogService.GetDefaultBranch].
  295. message GetDefaultBranchResponse {
  296. // Full resource name of the branch id currently set as default branch.
  297. string branch = 1 [
  298. (google.api.resource_reference) = { type: "retail.googleapis.com/Branch" }
  299. ];
  300. // The time when this branch is set to default.
  301. google.protobuf.Timestamp set_time = 2;
  302. // This corresponds to
  303. // [SetDefaultBranchRequest.note][google.cloud.retail.v2alpha.SetDefaultBranchRequest.note]
  304. // field, when this branch was set as default.
  305. string note = 3;
  306. }
  307. // Request for
  308. // [CatalogService.GetCompletionConfig][google.cloud.retail.v2alpha.CatalogService.GetCompletionConfig]
  309. // method.
  310. message GetCompletionConfigRequest {
  311. // Required. Full CompletionConfig resource name. Format:
  312. // projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/completionConfig
  313. string name = 1 [
  314. (google.api.field_behavior) = REQUIRED,
  315. (google.api.resource_reference) = {
  316. type: "retail.googleapis.com/CompletionConfig"
  317. }
  318. ];
  319. }
  320. // Request for
  321. // [CatalogService.UpdateCompletionConfig][google.cloud.retail.v2alpha.CatalogService.UpdateCompletionConfig]
  322. // method.
  323. message UpdateCompletionConfigRequest {
  324. // Required. The
  325. // [CompletionConfig][google.cloud.retail.v2alpha.CompletionConfig] to update.
  326. //
  327. // If the caller does not have permission to update the
  328. // [CompletionConfig][google.cloud.retail.v2alpha.CompletionConfig], then a
  329. // PERMISSION_DENIED error is returned.
  330. //
  331. // If the [CompletionConfig][google.cloud.retail.v2alpha.CompletionConfig] to
  332. // update does not exist, a NOT_FOUND error is returned.
  333. CompletionConfig completion_config = 1
  334. [(google.api.field_behavior) = REQUIRED];
  335. // Indicates which fields in the provided
  336. // [CompletionConfig][google.cloud.retail.v2alpha.CompletionConfig] to update.
  337. // The following are the only supported fields:
  338. //
  339. // * [CompletionConfig.matching_order][google.cloud.retail.v2alpha.CompletionConfig.matching_order]
  340. // * [CompletionConfig.max_suggestions][google.cloud.retail.v2alpha.CompletionConfig.max_suggestions]
  341. // * [CompletionConfig.min_prefix_length][google.cloud.retail.v2alpha.CompletionConfig.min_prefix_length]
  342. // * [CompletionConfig.auto_learning][google.cloud.retail.v2alpha.CompletionConfig.auto_learning]
  343. //
  344. // If not set, all supported fields are updated.
  345. google.protobuf.FieldMask update_mask = 2;
  346. }
  347. // Request for
  348. // [CatalogService.GetAttributesConfig][google.cloud.retail.v2alpha.CatalogService.GetAttributesConfig]
  349. // method.
  350. message GetAttributesConfigRequest {
  351. // Required. Full AttributesConfig resource name. Format:
  352. // `projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/attributesConfig`
  353. string name = 1 [
  354. (google.api.field_behavior) = REQUIRED,
  355. (google.api.resource_reference) = {
  356. type: "retail.googleapis.com/AttributesConfig"
  357. }
  358. ];
  359. }
  360. // Request for
  361. // [CatalogService.UpdateAttributesConfig][google.cloud.retail.v2alpha.CatalogService.UpdateAttributesConfig]
  362. // method.
  363. message UpdateAttributesConfigRequest {
  364. // Required. The
  365. // [AttributesConfig][google.cloud.retail.v2alpha.AttributesConfig] to update.
  366. AttributesConfig attributes_config = 1
  367. [(google.api.field_behavior) = REQUIRED];
  368. // Indicates which fields in the provided
  369. // [AttributesConfig][google.cloud.retail.v2alpha.AttributesConfig] to update.
  370. // The following is the only supported field:
  371. //
  372. // * [AttributesConfig.catalog_attributes][google.cloud.retail.v2alpha.AttributesConfig.catalog_attributes]
  373. //
  374. // If not set, all supported fields are updated.
  375. google.protobuf.FieldMask update_mask = 2;
  376. }
  377. // Request for
  378. // [CatalogService.AddCatalogAttribute][google.cloud.retail.v2alpha.CatalogService.AddCatalogAttribute]
  379. // method.
  380. message AddCatalogAttributeRequest {
  381. // Required. Full AttributesConfig resource name. Format:
  382. // `projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/attributesConfig`
  383. string attributes_config = 1 [
  384. (google.api.field_behavior) = REQUIRED,
  385. (google.api.resource_reference) = {
  386. type: "retail.googleapis.com/AttributesConfig"
  387. }
  388. ];
  389. // Required. The
  390. // [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] to add.
  391. CatalogAttribute catalog_attribute = 2
  392. [(google.api.field_behavior) = REQUIRED];
  393. }
  394. // Request for
  395. // [CatalogService.RemoveCatalogAttribute][google.cloud.retail.v2alpha.CatalogService.RemoveCatalogAttribute]
  396. // method.
  397. message RemoveCatalogAttributeRequest {
  398. // Required. Full AttributesConfig resource name. Format:
  399. // `projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/attributesConfig`
  400. string attributes_config = 1 [
  401. (google.api.field_behavior) = REQUIRED,
  402. (google.api.resource_reference) = {
  403. type: "retail.googleapis.com/AttributesConfig"
  404. }
  405. ];
  406. // Required. The attribute name key of the
  407. // [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] to remove.
  408. string key = 2 [(google.api.field_behavior) = REQUIRED];
  409. }
  410. // Request for
  411. // [CatalogService.ReplaceCatalogAttribute][google.cloud.retail.v2alpha.CatalogService.ReplaceCatalogAttribute]
  412. // method.
  413. message ReplaceCatalogAttributeRequest {
  414. // Required. Full AttributesConfig resource name. Format:
  415. // `projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/attributesConfig`
  416. string attributes_config = 1 [
  417. (google.api.field_behavior) = REQUIRED,
  418. (google.api.resource_reference) = {
  419. type: "retail.googleapis.com/AttributesConfig"
  420. }
  421. ];
  422. // Required. The updated
  423. // [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute].
  424. CatalogAttribute catalog_attribute = 2
  425. [(google.api.field_behavior) = REQUIRED];
  426. // Indicates which fields in the provided
  427. // [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] to update.
  428. // The following are NOT supported:
  429. //
  430. // * [CatalogAttribute.key][google.cloud.retail.v2alpha.CatalogAttribute.key]
  431. //
  432. // If not set, all supported fields are updated.
  433. google.protobuf.FieldMask update_mask = 3;
  434. }