123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419 |
- // 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/import_config.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 = "CatalogProto";
- 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 what level the product should be uploaded with regards to
- // how users will be send events and how predictions will be made.
- message ProductLevelConfig {
- // The type of [Product][google.cloud.retail.v2alpha.Product]s allowed to be
- // ingested into the catalog. Acceptable values are:
- //
- // * `primary` (default): You can ingest
- // [Product][google.cloud.retail.v2alpha.Product]s of all types. When
- // ingesting a [Product][google.cloud.retail.v2alpha.Product], its type will
- // default to
- // [Product.Type.PRIMARY][google.cloud.retail.v2alpha.Product.Type.PRIMARY]
- // if unset.
- // * `variant` (incompatible with Retail Search): You can only
- // ingest
- // [Product.Type.VARIANT][google.cloud.retail.v2alpha.Product.Type.VARIANT]
- // [Product][google.cloud.retail.v2alpha.Product]s. This means
- // [Product.primary_product_id][google.cloud.retail.v2alpha.Product.primary_product_id]
- // cannot be empty.
- //
- // If this field is set to an invalid value other than these, an
- // INVALID_ARGUMENT error is returned.
- //
- // If this field is `variant` and
- // [merchant_center_product_id_field][google.cloud.retail.v2alpha.ProductLevelConfig.merchant_center_product_id_field]
- // is `itemGroupId`, an INVALID_ARGUMENT error is returned.
- //
- // See [Product
- // levels](https://cloud.google.com/retail/docs/catalog#product-levels)
- // for more details.
- string ingestion_product_type = 1;
- // Which field of [Merchant Center
- // Product](/bigquery-transfer/docs/merchant-center-products-schema) should be
- // imported as [Product.id][google.cloud.retail.v2alpha.Product.id].
- // Acceptable values are:
- //
- // * `offerId` (default): Import `offerId` as the product ID.
- // * `itemGroupId`: Import `itemGroupId` as the product ID. Notice that Retail
- // API will choose one item from the ones with the same `itemGroupId`, and
- // use it to represent the item group.
- //
- // If this field is set to an invalid value other than these, an
- // INVALID_ARGUMENT error is returned.
- //
- // If this field is `itemGroupId` and
- // [ingestion_product_type][google.cloud.retail.v2alpha.ProductLevelConfig.ingestion_product_type]
- // is `variant`, an INVALID_ARGUMENT error is returned.
- //
- // See [Product
- // levels](https://cloud.google.com/retail/docs/catalog#product-levels)
- // for more details.
- string merchant_center_product_id_field = 2;
- }
- // Catalog level attribute config for an attribute. For example, if customers
- // want to enable/disable facet for a specific attribute.
- message CatalogAttribute {
- // The type of an attribute.
- enum AttributeType {
- // The type of the attribute is unknown.
- //
- // Used when type cannot be derived from attribute that is not
- // [in_use][google.cloud.retail.v2alpha.CatalogAttribute.in_use].
- UNKNOWN = 0;
- // Textual attribute.
- TEXTUAL = 1;
- // Numerical attribute.
- NUMERICAL = 2;
- }
- // The status of the indexable option of a catalog attribute.
- enum IndexableOption {
- // Value used when unset. Defaults to
- // [INDEXABLE_ENABLED][google.cloud.retail.v2alpha.CatalogAttribute.IndexableOption.INDEXABLE_ENABLED].
- INDEXABLE_OPTION_UNSPECIFIED = 0;
- // Indexable option enabled for an attribute.
- INDEXABLE_ENABLED = 1;
- // Indexable option disabled for an attribute.
- INDEXABLE_DISABLED = 2;
- }
- // The status of the dynamic facetable option of a catalog attribute.
- enum DynamicFacetableOption {
- // Value used when unset. Defaults to
- // [DYNAMIC_FACETABLE_ENABLED][google.cloud.retail.v2alpha.CatalogAttribute.DynamicFacetableOption.DYNAMIC_FACETABLE_ENABLED].
- DYNAMIC_FACETABLE_OPTION_UNSPECIFIED = 0;
- // Dynamic facetable option enabled for an attribute.
- DYNAMIC_FACETABLE_ENABLED = 1;
- // Dynamic facetable option disabled for an attribute.
- DYNAMIC_FACETABLE_DISABLED = 2;
- }
- // The status of the searchable option of a catalog attribute.
- enum SearchableOption {
- // Value used when unset. Defaults to
- // [SEARCHABLE_DISABLED][google.cloud.retail.v2alpha.CatalogAttribute.SearchableOption.SEARCHABLE_DISABLED].
- SEARCHABLE_OPTION_UNSPECIFIED = 0;
- // Searchable option enabled for an attribute.
- SEARCHABLE_ENABLED = 1;
- // Searchable option disabled for an attribute.
- SEARCHABLE_DISABLED = 2;
- }
- // Required. Attribute name.
- // For example: `color`, `brands`, `attributes.custom_attribute`, such as
- // `attributes.xyz`.
- // To be indexable, the attribute name can contain only alpha-numeric
- // characters and underscores. For example, an attribute named
- // `attributes.abc_xyz` can be indexed, but an attribute named
- // `attributes.abc-xyz` cannot be indexed.
- string key = 1 [(google.api.field_behavior) = REQUIRED];
- // Output only. Indicates whether this attribute has been used by any
- // products. `True` if at least one
- // [Product][google.cloud.retail.v2alpha.Product] is using this attribute in
- // [Product.attributes][google.cloud.retail.v2alpha.Product.attributes].
- // Otherwise, this field is `False`.
- //
- // [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute] can be
- // pre-loaded by using
- // [CatalogService.AddCatalogAttribute][google.cloud.retail.v2alpha.CatalogService.AddCatalogAttribute],
- // [CatalogService.ImportCatalogAttributes][google.cloud.retail.v2alpha.CatalogService.ImportCatalogAttributes],
- // or
- // [CatalogService.UpdateAttributesConfig][google.cloud.retail.v2alpha.CatalogService.UpdateAttributesConfig]
- // APIs. This field is `False` for pre-loaded
- // [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute]s.
- //
- // Only pre-loaded
- // [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute]s that are
- // neither in use by products nor predefined can be deleted.
- // [CatalogAttribute][google.cloud.retail.v2alpha.CatalogAttribute]s that are
- // either in use by products or are predefined cannot be deleted; however,
- // their configuration properties will reset to default values upon removal
- // request.
- //
- // After catalog changes, it takes about 10 minutes for this field to update.
- bool in_use = 9 [(google.api.field_behavior) = OUTPUT_ONLY];
- // Output only. The type of this attribute. This is derived from the attribute
- // in [Product.attributes][google.cloud.retail.v2alpha.Product.attributes].
- AttributeType type = 10 [(google.api.field_behavior) = OUTPUT_ONLY];
- // When
- // [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
- // is CATALOG_LEVEL_ATTRIBUTE_CONFIG, if INDEXABLE_ENABLED attribute values
- // are indexed so that it can be filtered, faceted, or boosted in
- // [SearchService.Search][google.cloud.retail.v2alpha.SearchService.Search].
- IndexableOption indexable_option = 5;
- // If DYNAMIC_FACETABLE_ENABLED, attribute values are available for dynamic
- // facet. Could only be DYNAMIC_FACETABLE_DISABLED if
- // [CatalogAttribute.indexable_option][google.cloud.retail.v2alpha.CatalogAttribute.indexable_option]
- // is INDEXABLE_DISABLED. Otherwise, an INVALID_ARGUMENT error is returned.
- DynamicFacetableOption dynamic_facetable_option = 6;
- // When
- // [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
- // is CATALOG_LEVEL_ATTRIBUTE_CONFIG, if SEARCHABLE_ENABLED, attribute values
- // are searchable by text queries in
- // [SearchService.Search][google.cloud.retail.v2alpha.SearchService.Search].
- //
- // If SEARCHABLE_ENABLED but attribute type is numerical, attribute values
- // will not be searchable by text queries in
- // [SearchService.Search][google.cloud.retail.v2alpha.SearchService.Search],
- // as there are no text values associated to numerical attributes.
- SearchableOption searchable_option = 7;
- // When
- // [AttributesConfig.attribute_config_level][google.cloud.retail.v2alpha.AttributesConfig.attribute_config_level]
- // is CATALOG_LEVEL_ATTRIBUTE_CONFIG, if RECOMMENDATIONS_FILTERING_ENABLED,
- // attribute values are filterable for recommendations.
- // This option works for categorical features only,
- // does not work for numerical features, inventory filtering.
- RecommendationsFilteringOption recommendations_filtering_option = 8;
- }
- // Catalog level attribute config.
- message AttributesConfig {
- option (google.api.resource) = {
- type: "retail.googleapis.com/AttributesConfig"
- pattern: "projects/{project}/locations/{location}/catalogs/{catalog}/attributesConfig"
- };
- // Required. Immutable. The fully qualified resource name of the attribute
- // config. Format: `projects/*/locations/*/catalogs/*/attributesConfig`
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.field_behavior) = IMMUTABLE
- ];
- // Enable attribute(s) config at catalog level.
- // For example, indexable, dynamic_facetable, or searchable for each
- // attribute.
- //
- // The key is catalog attribute's name.
- // For example: `color`, `brands`, `attributes.custom_attribute`, such as
- // `attributes.xyz`.
- //
- // The maximum number of catalog attributes allowed in a request is 1000.
- map<string, CatalogAttribute> catalog_attributes = 2;
- // Output only. The
- // [AttributeConfigLevel][google.cloud.retail.v2alpha.AttributeConfigLevel]
- // used for this catalog.
- AttributeConfigLevel attribute_config_level = 3
- [(google.api.field_behavior) = OUTPUT_ONLY];
- }
- // Catalog level autocomplete config for customers to customize autocomplete
- // feature's settings.
- message CompletionConfig {
- option (google.api.resource) = {
- type: "retail.googleapis.com/CompletionConfig"
- pattern: "projects/{project}/locations/{location}/catalogs/{catalog}/completionConfig"
- };
- // Required. Immutable. Fully qualified name
- // `projects/*/locations/*/catalogs/*/completionConfig`
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.field_behavior) = IMMUTABLE
- ];
- // Specifies the matching order for autocomplete suggestions, e.g., a query
- // consisting of 'sh' with 'out-of-order' specified would suggest "women's
- // shoes", whereas a query of 'red s' with 'exact-prefix' specified would
- // suggest "red shoes". Currently supported values:
- //
- // * 'out-of-order'
- // * 'exact-prefix'
- //
- // Default value: 'exact-prefix'.
- string matching_order = 2;
- // The maximum number of autocomplete suggestions returned per term. Default
- // value is 20. If left unset or set to 0, then will fallback to default
- // value.
- //
- // Value range is 1 to 20.
- int32 max_suggestions = 3;
- // The minimum number of characters needed to be typed in order to get
- // suggestions. Default value is 2. If left unset or set to 0, then will
- // fallback to default value.
- //
- // Value range is 1 to 20.
- int32 min_prefix_length = 4;
- // If set to true, the auto learning function is enabled. Auto learning uses
- // user data to generate suggestions using ML techniques. Default value is
- // false. Only after enabling auto learning can users use `cloud-retail`
- // data in
- // [CompleteQueryRequest][google.cloud.retail.v2alpha.CompleteQueryRequest].
- bool auto_learning = 11;
- // Output only. The source data for the latest import of the autocomplete
- // suggestion phrases.
- CompletionDataInputConfig suggestions_input_config = 5
- [(google.api.field_behavior) = OUTPUT_ONLY];
- // Output only. Name of the LRO corresponding to the latest suggestion terms
- // list import.
- //
- // Can use [GetOperation][google.longrunning.Operations.GetOperation] API to
- // retrieve the latest state of the Long Running Operation.
- string last_suggestions_import_operation = 6
- [(google.api.field_behavior) = OUTPUT_ONLY];
- // Output only. The source data for the latest import of the autocomplete
- // denylist phrases.
- CompletionDataInputConfig denylist_input_config = 7
- [(google.api.field_behavior) = OUTPUT_ONLY];
- // Output only. Name of the LRO corresponding to the latest denylist import.
- //
- // Can use [GetOperation][google.longrunning.Operations.GetOperation] API to
- // retrieve the latest state of the Long Running Operation.
- string last_denylist_import_operation = 8
- [(google.api.field_behavior) = OUTPUT_ONLY];
- // Output only. The source data for the latest import of the autocomplete
- // allowlist phrases.
- CompletionDataInputConfig allowlist_input_config = 9
- [(google.api.field_behavior) = OUTPUT_ONLY];
- // Output only. Name of the LRO corresponding to the latest allowlist import.
- //
- // Can use [GetOperation][google.longrunning.Operations.GetOperation] API to
- // retrieve the latest state of the Long Running Operation.
- string last_allowlist_import_operation = 10
- [(google.api.field_behavior) = OUTPUT_ONLY];
- }
- // Represents a link between a Merchant Center account and a branch.
- // Once a link is established, products from the linked merchant center account
- // will be streamed to the linked branch.
- message MerchantCenterLink {
- // Required. The linked [Merchant center account
- // id](https://developers.google.com/shopping-content/guides/accountstatuses).
- // The account must be a standalone account or a sub-account of a MCA.
- int64 merchant_center_account_id = 1 [(google.api.field_behavior) = REQUIRED];
- // The branch id (e.g. 0/1/2) within this catalog that products from
- // merchant_center_account_id are streamed to. When updating this field, an
- // empty value will use the currently configured default branch. However,
- // changing the default branch later on won't change the linked branch here.
- //
- // A single branch id can only have one linked merchant center account id.
- string branch_id = 2;
- // String representing the destination to import for, all if left empty.
- // List of possible values can be found here.
- // [https://support.google.com/merchants/answer/7501026]
- // List of allowed string values:
- // "Shopping_ads", "Buy_on_google_listings", "Display_ads", "Local_inventory
- // _ads", "Free_listings", "Free_local_listings"
- // NOTE: The string values are case sensitive.
- repeated string destinations = 3;
- // Region code of offers to accept. 2-letter Uppercase ISO 3166-1 alpha-2
- // code. List of values can be found
- // [here](https://www.iana.org/assignments/language-subtag-registry/language-subtag-registry)
- // under the `region` tag. If left blank no region filtering will be
- // performed.
- //
- // Example value: `US`.
- string region_code = 4;
- // Language of the title/description and other string attributes. Use language
- // tags defined by [BCP 47](https://www.rfc-editor.org/rfc/bcp/bcp47.txt).
- // ISO 639-1.
- //
- // This specifies the language of offers in Merchant Center that will be
- // accepted. If empty no language filtering will be performed.
- //
- // Example value: `en`.
- string language_code = 5;
- }
- // Configures Merchant Center linking.
- // Links contained in the config will be used to sync data from a Merchant
- // Center account to a Cloud Retail branch.
- message MerchantCenterLinkingConfig {
- // Links between Merchant Center accounts and branches.
- repeated MerchantCenterLink links = 1;
- }
- // The catalog configuration.
- message Catalog {
- option (google.api.resource) = {
- type: "retail.googleapis.com/Catalog"
- pattern: "projects/{project}/locations/{location}/catalogs/{catalog}"
- };
- // Required. Immutable. The fully qualified resource name of the catalog.
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.field_behavior) = IMMUTABLE
- ];
- // Required. Immutable. The catalog display name.
- //
- // This field must be a UTF-8 encoded string with a length limit of 128
- // characters. Otherwise, an INVALID_ARGUMENT error is returned.
- string display_name = 2 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.field_behavior) = IMMUTABLE
- ];
- // Required. The product level configuration.
- ProductLevelConfig product_level_config = 4
- [(google.api.field_behavior) = REQUIRED];
- // The Merchant Center linking configuration.
- // Once a link is added, the data stream from Merchant Center to Cloud Retail
- // will be enabled automatically. The requester must have access to the
- // merchant center account in order to make changes to this field.
- MerchantCenterLinkingConfig merchant_center_linking_config = 6;
- }
|