control_service.proto 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  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/control.proto";
  21. import "google/protobuf/empty.proto";
  22. import "google/protobuf/field_mask.proto";
  23. option csharp_namespace = "Google.Cloud.Retail.V2Alpha";
  24. option go_package = "google.golang.org/genproto/googleapis/cloud/retail/v2alpha;retail";
  25. option java_multiple_files = true;
  26. option java_outer_classname = "ControlServiceProto";
  27. option java_package = "com.google.cloud.retail.v2alpha";
  28. option objc_class_prefix = "RETAIL";
  29. option php_namespace = "Google\\Cloud\\Retail\\V2alpha";
  30. option ruby_package = "Google::Cloud::Retail::V2alpha";
  31. // Service for modifying Control.
  32. service ControlService {
  33. option (google.api.default_host) = "retail.googleapis.com";
  34. option (google.api.oauth_scopes) =
  35. "https://www.googleapis.com/auth/cloud-platform";
  36. // Creates a Control.
  37. //
  38. // If the [Control][google.cloud.retail.v2alpha.Control] to create already
  39. // exists, an ALREADY_EXISTS error is returned.
  40. rpc CreateControl(CreateControlRequest) returns (Control) {
  41. option (google.api.http) = {
  42. post: "/v2alpha/{parent=projects/*/locations/*/catalogs/*}/controls"
  43. body: "control"
  44. };
  45. option (google.api.method_signature) = "parent,control,control_id";
  46. }
  47. // Deletes a Control.
  48. //
  49. // If the [Control][google.cloud.retail.v2alpha.Control] to delete does not
  50. // exist, a NOT_FOUND error is returned.
  51. rpc DeleteControl(DeleteControlRequest) returns (google.protobuf.Empty) {
  52. option (google.api.http) = {
  53. delete: "/v2alpha/{name=projects/*/locations/*/catalogs/*/controls/*}"
  54. };
  55. option (google.api.method_signature) = "name";
  56. }
  57. // Updates a Control.
  58. //
  59. // [Control][google.cloud.retail.v2alpha.Control] cannot be set to a different
  60. // oneof field, if so an INVALID_ARGUMENT is returned. If the
  61. // [Control][google.cloud.retail.v2alpha.Control] to delete does not exist, a
  62. // NOT_FOUND error is returned.
  63. rpc UpdateControl(UpdateControlRequest) returns (Control) {
  64. option (google.api.http) = {
  65. patch: "/v2alpha/{control.name=projects/*/locations/*/catalogs/*/controls/*}"
  66. body: "control"
  67. };
  68. option (google.api.method_signature) = "control,update_mask";
  69. }
  70. // Gets a Control.
  71. rpc GetControl(GetControlRequest) returns (Control) {
  72. option (google.api.http) = {
  73. get: "/v2alpha/{name=projects/*/locations/*/catalogs/*/controls/*}"
  74. };
  75. option (google.api.method_signature) = "name";
  76. }
  77. // Lists all Controls linked to this catalog.
  78. rpc ListControls(ListControlsRequest) returns (ListControlsResponse) {
  79. option (google.api.http) = {
  80. get: "/v2alpha/{parent=projects/*/locations/*/catalogs/*}/controls"
  81. };
  82. option (google.api.method_signature) = "parent";
  83. }
  84. }
  85. // Request for CreateControl method.
  86. message CreateControlRequest {
  87. // Required. Full resource name of parent catalog. Format:
  88. // `projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}`
  89. string parent = 1 [
  90. (google.api.field_behavior) = REQUIRED,
  91. (google.api.resource_reference) = { type: "retail.googleapis.com/Catalog" }
  92. ];
  93. // Required. The Control to create.
  94. Control control = 2 [(google.api.field_behavior) = REQUIRED];
  95. // Required. The ID to use for the Control, which will become the final
  96. // component of the Control's resource name.
  97. //
  98. // This value should be 4-63 characters, and valid characters
  99. // are /[a-z][0-9]-_/.
  100. string control_id = 3 [(google.api.field_behavior) = REQUIRED];
  101. }
  102. // Request for UpdateControl method.
  103. message UpdateControlRequest {
  104. // Required. The Control to update.
  105. Control control = 1 [(google.api.field_behavior) = REQUIRED];
  106. // Indicates which fields in the provided
  107. // [Control][google.cloud.retail.v2alpha.Control] to update. The following are
  108. // NOT supported:
  109. //
  110. // * [Control.name][google.cloud.retail.v2alpha.Control.name]
  111. //
  112. // If not set or empty, all supported fields are updated.
  113. google.protobuf.FieldMask update_mask = 2;
  114. }
  115. // Request for DeleteControl method.
  116. message DeleteControlRequest {
  117. // Required. The resource name of the Control to delete. Format:
  118. // `projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/controls/{control_id}`
  119. string name = 1 [
  120. (google.api.field_behavior) = REQUIRED,
  121. (google.api.resource_reference) = { type: "retail.googleapis.com/Control" }
  122. ];
  123. }
  124. // Request for GetControl method.
  125. message GetControlRequest {
  126. // Required. The resource name of the Control to delete. Format:
  127. // `projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/controls/{control_id}`
  128. string name = 1 [
  129. (google.api.field_behavior) = REQUIRED,
  130. (google.api.resource_reference) = { type: "retail.googleapis.com/Control" }
  131. ];
  132. }
  133. // Request for ListControls method.
  134. message ListControlsRequest {
  135. // Required. The catalog resource name. Format:
  136. // `projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}`
  137. string parent = 1 [
  138. (google.api.field_behavior) = REQUIRED,
  139. (google.api.resource_reference) = { type: "retail.googleapis.com/Catalog" }
  140. ];
  141. // Optional. Maximum number of results to return. If unspecified, defaults
  142. // to 50. Max allowed value is 1000.
  143. int32 page_size = 2 [(google.api.field_behavior) = OPTIONAL];
  144. // Optional. A page token, received from a previous `ListControls` call.
  145. // Provide this to retrieve the subsequent page.
  146. string page_token = 3 [(google.api.field_behavior) = OPTIONAL];
  147. // Optional. A filter to apply on the list results. Supported features:
  148. //
  149. // * List all the products under the parent branch if
  150. // [filter][google.cloud.retail.v2alpha.ListControlsRequest.filter] is unset.
  151. // * List controls that are used in a single ServingConfig:
  152. // 'serving_config = "boosted_home_page_cvr"'
  153. string filter = 4 [(google.api.field_behavior) = OPTIONAL];
  154. }
  155. // Response for ListControls method.
  156. message ListControlsResponse {
  157. // All the Controls for a given catalog.
  158. repeated Control controls = 1;
  159. // Pagination token, if not returned indicates the last page.
  160. string next_page_token = 2;
  161. }