Class: Google::Apis::RetailV2beta::GoogleCloudRetailV2betaCatalogAttribute

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/retail_v2beta/classes.rb,
lib/google/apis/retail_v2beta/representations.rb,
lib/google/apis/retail_v2beta/representations.rb

Overview

Catalog level attribute config for an attribute. For example, if customers want to enable/disable facet for a specific attribute.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudRetailV2betaCatalogAttribute

Returns a new instance of GoogleCloudRetailV2betaCatalogAttribute.



1714
1715
1716
# File 'lib/google/apis/retail_v2beta/classes.rb', line 1714

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#dynamic_facetable_optionString

If DYNAMIC_FACETABLE_ENABLED, attribute values are available for dynamic facet. Could only be DYNAMIC_FACETABLE_DISABLED if CatalogAttribute.indexable_option is INDEXABLE_DISABLED. Otherwise, an INVALID_ARGUMENT error is returned. Corresponds to the JSON property dynamicFacetableOption

Returns:

  • (String)


1658
1659
1660
# File 'lib/google/apis/retail_v2beta/classes.rb', line 1658

def dynamic_facetable_option
  @dynamic_facetable_option
end

#in_useBoolean Also known as: in_use?

Output only. Indicates whether this attribute has been used by any products. True if at least one Product is using this attribute in Product.attributes. Otherwise, this field is False. CatalogAttribute can be pre-loaded by using CatalogService.AddCatalogAttribute, CatalogService.ImportCatalogAttributes, or CatalogService.UpdateAttributesConfig APIs. This field is False for pre- loaded CatalogAttributes. Only CatalogAttributes that are not in use by products can be deleted. CatalogAttributes that are in use by products 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. Corresponds to the JSON property inUse

Returns:

  • (Boolean)


1672
1673
1674
# File 'lib/google/apis/retail_v2beta/classes.rb', line 1672

def in_use
  @in_use
end

#indexable_optionString

When 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. Corresponds to the JSON property indexableOption

Returns:

  • (String)


1680
1681
1682
# File 'lib/google/apis/retail_v2beta/classes.rb', line 1680

def indexable_option
  @indexable_option
end

#keyString

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. Corresponds to the JSON property key

Returns:

  • (String)


1689
1690
1691
# File 'lib/google/apis/retail_v2beta/classes.rb', line 1689

def key
  @key
end

#recommendations_filtering_optionString

When 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. Corresponds to the JSON property recommendationsFilteringOption

Returns:

  • (String)


1697
1698
1699
# File 'lib/google/apis/retail_v2beta/classes.rb', line 1697

def recommendations_filtering_option
  @recommendations_filtering_option
end

#searchable_optionString

When AttributesConfig.attribute_config_level is CATALOG_LEVEL_ATTRIBUTE_CONFIG, if SEARCHABLE_ENABLED, attribute values are searchable by text queries in SearchService.Search. If SEARCHABLE_ENABLED but attribute type is numerical, attribute values will not be searchable by text queries in SearchService. Search, as there are no text values associated to numerical attributes. Corresponds to the JSON property searchableOption

Returns:

  • (String)


1706
1707
1708
# File 'lib/google/apis/retail_v2beta/classes.rb', line 1706

def searchable_option
  @searchable_option
end

#typeString

Output only. The type of this attribute. This is derived from the attribute in Product.attributes. Corresponds to the JSON property type

Returns:

  • (String)


1712
1713
1714
# File 'lib/google/apis/retail_v2beta/classes.rb', line 1712

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1719
1720
1721
1722
1723
1724
1725
1726
1727
# File 'lib/google/apis/retail_v2beta/classes.rb', line 1719

def update!(**args)
  @dynamic_facetable_option = args[:dynamic_facetable_option] if args.key?(:dynamic_facetable_option)
  @in_use = args[:in_use] if args.key?(:in_use)
  @indexable_option = args[:indexable_option] if args.key?(:indexable_option)
  @key = args[:key] if args.key?(:key)
  @recommendations_filtering_option = args[:recommendations_filtering_option] if args.key?(:recommendations_filtering_option)
  @searchable_option = args[:searchable_option] if args.key?(:searchable_option)
  @type = args[:type] if args.key?(:type)
end