google-apis-retail_v2 0.53.0 → 0.54.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/retail_v2/classes.rb +18 -8
- data/lib/google/apis/retail_v2/gem_version.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dc3b7a875c27a4f4b8319222fd560f91ebefdbde2d6edd0cb29580691c865681
|
4
|
+
data.tar.gz: e7e608e604ba650f5fa32e91e5a3d1298b45679c9a45509ba738472bd7b92819
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 04b09be611330904e106fe72dd1085fa29db71f581697e189f8d484011be3f2c7108653f6ffb2d8d9e1f1b9ccc484e45d79d8469052a50578c0f7565a6b7d7d9
|
7
|
+
data.tar.gz: 0c6fa6b2baaf685e2a54820403b1c428442abaa2bb6da032b9061467643bfc588edfbbed5544378f4a7a694ca9a766200c2444b5006c42ba2bc9567310955275
|
data/CHANGELOG.md
CHANGED
@@ -684,11 +684,12 @@ module Google
|
|
684
684
|
# Otherwise, this field is `False`. CatalogAttribute can be pre-loaded by using
|
685
685
|
# CatalogService.AddCatalogAttribute, CatalogService.ImportCatalogAttributes, or
|
686
686
|
# CatalogService.UpdateAttributesConfig APIs. This field is `False` for pre-
|
687
|
-
# loaded CatalogAttributes. Only pre-loaded
|
688
|
-
# in use by products nor predefined can be deleted.
|
689
|
-
# either in use by products or are predefined cannot be deleted;
|
690
|
-
# configuration properties will reset to default values upon
|
691
|
-
# After catalog changes, it takes about 10 minutes for this
|
687
|
+
# loaded CatalogAttributes. Only pre-loaded catalog attributes that are neither
|
688
|
+
# in use by products nor predefined can be deleted. Catalog attributes that are
|
689
|
+
# either in use by products or are predefined attributes cannot be deleted;
|
690
|
+
# however, their configuration properties will reset to default values upon
|
691
|
+
# removal request. After catalog changes, it takes about 10 minutes for this
|
692
|
+
# field to update.
|
692
693
|
# Corresponds to the JSON property `inUse`
|
693
694
|
# @return [Boolean]
|
694
695
|
attr_accessor :in_use
|
@@ -2159,6 +2160,8 @@ module Google
|
|
2159
2160
|
attr_accessor :available_quantity
|
2160
2161
|
|
2161
2162
|
# The timestamp when this Product becomes available for SearchService.Search.
|
2163
|
+
# Note that this is only applicable to Type.PRIMARY and Type.COLLECTION, and
|
2164
|
+
# ignored for Type.VARIANT.
|
2162
2165
|
# Corresponds to the JSON property `availableTime`
|
2163
2166
|
# @return [String]
|
2164
2167
|
attr_accessor :available_time
|
@@ -2227,7 +2230,10 @@ module Google
|
|
2227
2230
|
attr_accessor :description
|
2228
2231
|
|
2229
2232
|
# The timestamp when this product becomes unavailable for SearchService.Search.
|
2230
|
-
#
|
2233
|
+
# Note that this is only applicable to Type.PRIMARY and Type.COLLECTION, and
|
2234
|
+
# ignored for Type.VARIANT. In general, we suggest the users to delete the stale
|
2235
|
+
# products explicitly, instead of using this field to determine staleness. If it
|
2236
|
+
# is set, the Product is not available for SearchService.Search after
|
2231
2237
|
# expire_time. However, the product can still be retrieved by ProductService.
|
2232
2238
|
# GetProduct and ProductService.ListProducts. expire_time must be later than
|
2233
2239
|
# available_time and publish_time, otherwise an INVALID_ARGUMENT error is thrown.
|
@@ -2290,7 +2296,8 @@ module Google
|
|
2290
2296
|
|
2291
2297
|
# Output only. A list of local inventories specific to different places. This is
|
2292
2298
|
# only available for users who have Retail Search enabled, and it can be managed
|
2293
|
-
# by AddLocalInventories and
|
2299
|
+
# by ProductService.AddLocalInventories and ProductService.
|
2300
|
+
# RemoveLocalInventories APIs.
|
2294
2301
|
# Corresponds to the JSON property `localInventories`
|
2295
2302
|
# @return [Array<Google::Apis::RetailV2::GoogleCloudRetailV2LocalInventory>]
|
2296
2303
|
attr_accessor :local_inventories
|
@@ -2413,7 +2420,10 @@ module Google
|
|
2413
2420
|
# @return [String]
|
2414
2421
|
attr_accessor :title
|
2415
2422
|
|
2416
|
-
# Input only. The TTL (time to live) of the product.
|
2423
|
+
# Input only. The TTL (time to live) of the product. Note that this is only
|
2424
|
+
# applicable to Type.PRIMARY and Type.COLLECTION, and ignored for Type.VARIANT.
|
2425
|
+
# In general, we suggest the users to delete the stale products explicitly,
|
2426
|
+
# instead of using this field to determine staleness. If it is set, it must be a
|
2417
2427
|
# non-negative value, and expire_time is set as current timestamp plus ttl. The
|
2418
2428
|
# derived expire_time is returned in the output and ttl is left blank when
|
2419
2429
|
# retrieving the Product. If it is set, the product is not available for
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module RetailV2
|
18
18
|
# Version of the google-apis-retail_v2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.54.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.9.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220901"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-retail_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.54.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: 2022-09-
|
11
|
+
date: 2022-09-12 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_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2/v0.54.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-retail_v2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|