google-apis-retail_v2beta 0.86.0 → 0.88.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e374b89042fce1fbccde2391a4863872c8cecebd45f58f550bc11e4ea1e964b0
|
4
|
+
data.tar.gz: 14ddbd48e98aeae1f5d89a89da5b6127e7640f8ac667346f8666901848fafd54
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 19088697531d1ef966139b251bc261891129e131da89354242404010435d39787ccab095cfc68c1c681731373660fcfeead1bbc4ac96a5af678a98a1cb777071
|
7
|
+
data.tar.gz: 9d3c20288cdd815bdbf6c6734f81add847984214e3c8f1e9f9f33e54b4372b77ea46d82c199e611e17039f64bb3f635bb35bec699ba33323d370060d297dd8fb
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-retail_v2beta
|
2
2
|
|
3
|
+
### v0.88.0 (2023-12-10)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20231130
|
6
|
+
|
7
|
+
### v0.87.0 (2023-11-19)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20231109
|
10
|
+
|
3
11
|
### v0.86.0 (2023-11-12)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20231102
|
@@ -1173,6 +1173,40 @@ module Google
|
|
1173
1173
|
end
|
1174
1174
|
end
|
1175
1175
|
|
1176
|
+
# Response of the ExportAnalyticsMetricsRequest. If the long running operation
|
1177
|
+
# was successful, then this message is returned by the google.longrunning.
|
1178
|
+
# Operations.response field if the operation was successful.
|
1179
|
+
class GoogleCloudRetailV2alphaExportAnalyticsMetricsResponse
|
1180
|
+
include Google::Apis::Core::Hashable
|
1181
|
+
|
1182
|
+
# A sample of errors encountered while processing the request.
|
1183
|
+
# Corresponds to the JSON property `errorSamples`
|
1184
|
+
# @return [Array<Google::Apis::RetailV2beta::GoogleRpcStatus>]
|
1185
|
+
attr_accessor :error_samples
|
1186
|
+
|
1187
|
+
# Configuration of destination for Export related errors.
|
1188
|
+
# Corresponds to the JSON property `errorsConfig`
|
1189
|
+
# @return [Google::Apis::RetailV2beta::GoogleCloudRetailV2alphaExportErrorsConfig]
|
1190
|
+
attr_accessor :errors_config
|
1191
|
+
|
1192
|
+
# Output result that stores the information about where the exported data is
|
1193
|
+
# stored.
|
1194
|
+
# Corresponds to the JSON property `outputResult`
|
1195
|
+
# @return [Google::Apis::RetailV2beta::GoogleCloudRetailV2alphaOutputResult]
|
1196
|
+
attr_accessor :output_result
|
1197
|
+
|
1198
|
+
def initialize(**args)
|
1199
|
+
update!(**args)
|
1200
|
+
end
|
1201
|
+
|
1202
|
+
# Update properties of this object
|
1203
|
+
def update!(**args)
|
1204
|
+
@error_samples = args[:error_samples] if args.key?(:error_samples)
|
1205
|
+
@errors_config = args[:errors_config] if args.key?(:errors_config)
|
1206
|
+
@output_result = args[:output_result] if args.key?(:output_result)
|
1207
|
+
end
|
1208
|
+
end
|
1209
|
+
|
1176
1210
|
# Configuration of destination for Export related errors.
|
1177
1211
|
class GoogleCloudRetailV2alphaExportErrorsConfig
|
1178
1212
|
include Google::Apis::Core::Hashable
|
@@ -5144,13 +5178,13 @@ module Google
|
|
5144
5178
|
# Fitness" -> "Athletic Clothing" -> "Shoes"], it could be represented as: "
|
5145
5179
|
# categories": [ "Shoes & Accessories > Shoes", "Sports & Fitness > Athletic
|
5146
5180
|
# Clothing > Shoes" ] Must be set for Type.PRIMARY Product otherwise an
|
5147
|
-
# INVALID_ARGUMENT error is returned. At most 250 values are allowed per Product
|
5148
|
-
# Empty values are not allowed. Each value
|
5149
|
-
# a length limit of 5,000 characters.
|
5150
|
-
# returned. Corresponding properties:
|
5151
|
-
# google_product_category. Schema.org property [
|
5152
|
-
# schema.org/category). [mc_google_product_category]:
|
5153
|
-
# merchants/answer/6324436
|
5181
|
+
# INVALID_ARGUMENT error is returned. At most 250 values are allowed per Product
|
5182
|
+
# unless overridden via pantheon UI. Empty values are not allowed. Each value
|
5183
|
+
# must be a UTF-8 encoded string with a length limit of 5,000 characters.
|
5184
|
+
# Otherwise, an INVALID_ARGUMENT error is returned. Corresponding properties:
|
5185
|
+
# Google Merchant Center property google_product_category. Schema.org property [
|
5186
|
+
# Product.category] (https://schema.org/category). [mc_google_product_category]:
|
5187
|
+
# https://support.google.com/merchants/answer/6324436
|
5154
5188
|
# Corresponds to the JSON property `categories`
|
5155
5189
|
# @return [Array<String>]
|
5156
5190
|
attr_accessor :categories
|
@@ -5189,16 +5223,16 @@ module Google
|
|
5189
5223
|
# @return [String]
|
5190
5224
|
attr_accessor :description
|
5191
5225
|
|
5192
|
-
#
|
5193
|
-
#
|
5194
|
-
#
|
5195
|
-
#
|
5196
|
-
#
|
5197
|
-
#
|
5198
|
-
#
|
5199
|
-
#
|
5200
|
-
#
|
5201
|
-
#
|
5226
|
+
# Note that this field is applied in the following ways: * If the Product is
|
5227
|
+
# already expired when it is uploaded, this product is not indexed for search. *
|
5228
|
+
# If the Product is not expired when it is uploaded, only the Type.PRIMARY's and
|
5229
|
+
# Type.COLLECTION's expireTime is respected, and Type.VARIANT's expireTime is
|
5230
|
+
# not used. In general, we suggest the users to delete the stale products
|
5231
|
+
# explicitly, instead of using this field to determine staleness. expire_time
|
5232
|
+
# must be later than available_time and publish_time, otherwise an
|
5233
|
+
# INVALID_ARGUMENT error is thrown. Corresponding properties: Google Merchant
|
5234
|
+
# Center property [expiration_date](https://support.google.com/merchants/answer/
|
5235
|
+
# 6324499).
|
5202
5236
|
# Corresponds to the JSON property `expireTime`
|
5203
5237
|
# @return [String]
|
5204
5238
|
attr_accessor :expire_time
|
@@ -6626,11 +6660,12 @@ module Google
|
|
6626
6660
|
|
6627
6661
|
# The default filter that is applied when a user performs a search without
|
6628
6662
|
# checking any filters on the search page. The filter applied to every search
|
6629
|
-
# request when quality improvement such as query expansion is needed.
|
6630
|
-
#
|
6631
|
-
#
|
6632
|
-
#
|
6633
|
-
#
|
6663
|
+
# request when quality improvement such as query expansion is needed. In the
|
6664
|
+
# case a query does not have a sufficient amount of results this filter will be
|
6665
|
+
# used to determine whether or not to enable the query expansion flow. The
|
6666
|
+
# original filter will still be used for the query expanded search. This field
|
6667
|
+
# is strongly recommended to achieve high search quality. For more information
|
6668
|
+
# about filter syntax, see SearchRequest.filter.
|
6634
6669
|
# Corresponds to the JSON property `canonicalFilter`
|
6635
6670
|
# @return [String]
|
6636
6671
|
attr_accessor :canonical_filter
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module RetailV2beta
|
18
18
|
# Version of the google-apis-retail_v2beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.88.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20231130"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -292,6 +292,12 @@ module Google
|
|
292
292
|
include Google::Apis::Core::JsonObjectSupport
|
293
293
|
end
|
294
294
|
|
295
|
+
class GoogleCloudRetailV2alphaExportAnalyticsMetricsResponse
|
296
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
|
+
|
298
|
+
include Google::Apis::Core::JsonObjectSupport
|
299
|
+
end
|
300
|
+
|
295
301
|
class GoogleCloudRetailV2alphaExportErrorsConfig
|
296
302
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
303
|
|
@@ -1739,6 +1745,18 @@ module Google
|
|
1739
1745
|
end
|
1740
1746
|
end
|
1741
1747
|
|
1748
|
+
class GoogleCloudRetailV2alphaExportAnalyticsMetricsResponse
|
1749
|
+
# @private
|
1750
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1751
|
+
collection :error_samples, as: 'errorSamples', class: Google::Apis::RetailV2beta::GoogleRpcStatus, decorator: Google::Apis::RetailV2beta::GoogleRpcStatus::Representation
|
1752
|
+
|
1753
|
+
property :errors_config, as: 'errorsConfig', class: Google::Apis::RetailV2beta::GoogleCloudRetailV2alphaExportErrorsConfig, decorator: Google::Apis::RetailV2beta::GoogleCloudRetailV2alphaExportErrorsConfig::Representation
|
1754
|
+
|
1755
|
+
property :output_result, as: 'outputResult', class: Google::Apis::RetailV2beta::GoogleCloudRetailV2alphaOutputResult, decorator: Google::Apis::RetailV2beta::GoogleCloudRetailV2alphaOutputResult::Representation
|
1756
|
+
|
1757
|
+
end
|
1758
|
+
end
|
1759
|
+
|
1742
1760
|
class GoogleCloudRetailV2alphaExportErrorsConfig
|
1743
1761
|
# @private
|
1744
1762
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-retail_v2beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.88.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-12-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-retail_v2beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2beta/v0.88.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-retail_v2beta
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|