1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- // Copyright 2021 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.retail.v2alpha;
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- import "google/cloud/retail/v2alpha/common.proto";
- import "google/cloud/retail/v2alpha/search_service.proto";
- option csharp_namespace = "Google.Cloud.Retail.V2Alpha";
- option go_package = "google.golang.org/genproto/googleapis/cloud/retail/v2alpha;retail";
- option java_multiple_files = true;
- option java_outer_classname = "ControlProto";
- option java_package = "com.google.cloud.retail.v2alpha";
- option objc_class_prefix = "RETAIL";
- option php_namespace = "Google\\Cloud\\Retail\\V2alpha";
- option ruby_package = "Google::Cloud::Retail::V2alpha";
- // Configures dynamic serving time metadata that is used to pre and post
- // process search/recommendation model results.
- message Control {
- option (google.api.resource) = {
- type: "retail.googleapis.com/Control"
- pattern: "projects/{project}/locations/{location}/catalogs/{catalog}/controls/{control}"
- };
- // The behavior/type of the control
- //
- // A behavior/type must be specified on creation. Type cannot be changed once
- // specified (e.g. A Rule control will always be a Rule control.). An
- // INVALID_ARGUMENT will be returned if either condition is violated.
- oneof control {
- // A facet specification to perform faceted search.
- SearchRequest.FacetSpec facet_spec = 3;
- // A rule control - a condition-action pair.
- // Enacts a set action when the condition is triggered.
- // For example: Boost "gShoe" when query full matches "Running Shoes".
- Rule rule = 4;
- }
- // Immutable. Fully qualified name
- // `projects/*/locations/global/catalogs/*/controls/*`
- string name = 1 [(google.api.field_behavior) = IMMUTABLE];
- // Required. The human readable control display name. Used in Retail UI.
- //
- // This field must be a UTF-8 encoded string with a length limit of 128
- // characters. Otherwise, an INVALID_ARGUMENT error is thrown.
- string display_name = 2 [(google.api.field_behavior) = REQUIRED];
- // Output only. List of serving configuration ids that that are associated
- // with this control. Note the association is managed via the ServingConfig,
- // this is an output only denormalizeed view. Assumed to be in the same
- // catalog.
- repeated string associated_serving_config_ids = 5
- [(google.api.field_behavior) = OUTPUT_ONLY];
- // Required. Immutable. The solution types that the serving config is used
- // for. Currently we support setting only one type of solution at creation
- // time.
- //
- // Only `SOLUTION_TYPE_SEARCH` value is supported at the moment.
- // If no solution type is provided at creation time, will default to
- // SOLUTION_TYPE_SEARCH.
- repeated SolutionType solution_types = 6 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.field_behavior) = IMMUTABLE
- ];
- // Required. Specifies the use case for the control.
- // Affects what condition fields can be set.
- // Only settable by search controls.
- // Will default to SEARCH_SOLUTION_USE_CASE_SEARCH if not specified.
- // Currently only allow one search_solution_use_case per control.
- repeated SearchSolutionUseCase search_solution_use_case = 7
- [(google.api.field_behavior) = REQUIRED];
- }
|