common.proto 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. // Copyright 2022 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.discoveryengine.v1beta;
  16. import "google/api/resource.proto";
  17. option csharp_namespace = "Google.Cloud.DiscoveryEngine.V1Beta";
  18. option go_package = "google.golang.org/genproto/googleapis/cloud/discoveryengine/v1beta;discoveryengine";
  19. option java_multiple_files = true;
  20. option java_outer_classname = "CommonProto";
  21. option java_package = "com.google.cloud.discoveryengine.v1beta";
  22. option objc_class_prefix = "DISCOVERYENGINE";
  23. option php_namespace = "Google\\Cloud\\DiscoveryEngine\\V1beta";
  24. option ruby_package = "Google::Cloud::DiscoveryEngine::V1beta";
  25. option (google.api.resource_definition) = {
  26. type: "discoveryengine.googleapis.com/Branch"
  27. pattern: "projects/{project}/locations/{location}/dataStores/{data_store}/branches/{branch}"
  28. };
  29. option (google.api.resource_definition) = {
  30. type: "discoveryengine.googleapis.com/DataStore"
  31. pattern: "projects/{project}/locations/{location}/dataStores/{data_store}"
  32. };
  33. option (google.api.resource_definition) = {
  34. type: "discoveryengine.googleapis.com/ServingConfig"
  35. pattern: "projects/{project}/locations/{location}/dataStores/{data_store}/servingConfigs/{serving_config}"
  36. };
  37. // A custom attribute that is not explicitly modeled in a resource, e.g.
  38. // [UserEvent][google.cloud.discoveryengine.v1beta.UserEvent].
  39. message CustomAttribute {
  40. // The textual values of this custom attribute. For example, `["yellow",
  41. // "green"]` when the key is "color".
  42. //
  43. // Empty string is not allowed. Otherwise, an INVALID_ARGUMENT error is
  44. // returned.
  45. //
  46. // Exactly one of
  47. // [text][google.cloud.discoveryengine.v1beta.CustomAttribute.text] or
  48. // [numbers][google.cloud.discoveryengine.v1beta.CustomAttribute.numbers]
  49. // should be set. Otherwise, an INVALID_ARGUMENT error is returned.
  50. repeated string text = 1;
  51. // The numerical values of this custom attribute. For example, `[2.3, 15.4]`
  52. // when the key is "lengths_cm".
  53. //
  54. // Exactly one of
  55. // [text][google.cloud.discoveryengine.v1beta.CustomAttribute.text] or
  56. // [numbers][google.cloud.discoveryengine.v1beta.CustomAttribute.numbers]
  57. // should be set. Otherwise, an INVALID_ARGUMENT error is returned.
  58. repeated double numbers = 2;
  59. }
  60. // Information of an end user.
  61. message UserInfo {
  62. // Highly recommended for logged-in users. Unique identifier for logged-in
  63. // user, such as a user name. Don't set for anonymous users.
  64. //
  65. // Always use a hashed value for this ID.
  66. //
  67. // Don't set the field to the same fixed ID for different users. This mixes
  68. // the event history of those users together, which results in degraded
  69. // model quality.
  70. //
  71. // The field must be a UTF-8 encoded string with a length limit of 128
  72. // characters. Otherwise, an INVALID_ARGUMENT error is returned.
  73. string user_id = 1;
  74. // User agent as included in the HTTP header. Required for getting
  75. // [SearchResponse.sponsored_results][].
  76. //
  77. // The field must be a UTF-8 encoded string with a length limit of 1,000
  78. // characters. Otherwise, an INVALID_ARGUMENT error is returned.
  79. //
  80. // This should not be set when using the client side event reporting with
  81. // GTM or JavaScript tag in
  82. // [UserEventService.CollectUserEvent][google.cloud.discoveryengine.v1beta.UserEventService.CollectUserEvent]
  83. // or if [direct_user_request][] is set.
  84. string user_agent = 2;
  85. }