google-apis-retail_v2alpha 0.69.0 → 0.70.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bd21aacca9c9aa41ff44f2e729d6ed4a6e3fe4cc6e1e4221b628404ad33ce76c
|
4
|
+
data.tar.gz: 3b4ed48a1d12e88d7977fbd9c97b03960a128465892c8e0e7edbdb3ae1abd099
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a69cf81a604e9dff9657e27063134a6a04ae3232ba811cf2fc167db86379b9a76c0182681f8e4f24dbd2907e5b959f7dc477803472416c66fb852776903b0b44
|
7
|
+
data.tar.gz: 5999a9d9a26581fdac638d8f6f830fedb32c30e0abd486d1b747cf7766a4c2abbfdd771afadaf0104040dbc1d7c5783011f0cdee5d5dcdfd887bfa3ed64a394b
|
data/CHANGELOG.md
CHANGED
@@ -3736,10 +3736,9 @@ module Google
|
|
3736
3736
|
# @return [String]
|
3737
3737
|
attr_accessor :language_code
|
3738
3738
|
|
3739
|
-
# Output only. A list of local inventories specific to different places. This
|
3740
|
-
#
|
3741
|
-
#
|
3742
|
-
# RemoveLocalInventories APIs.
|
3739
|
+
# Output only. A list of local inventories specific to different places. This
|
3740
|
+
# field can be managed by ProductService.AddLocalInventories and ProductService.
|
3741
|
+
# RemoveLocalInventories APIs if fine-grained, high-volume updates are necessary.
|
3743
3742
|
# Corresponds to the JSON property `localInventories`
|
3744
3743
|
# @return [Array<Google::Apis::RetailV2alpha::GoogleCloudRetailV2alphaLocalInventory>]
|
3745
3744
|
attr_accessor :local_inventories
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module RetailV2alpha
|
18
18
|
# Version of the google-apis-retail_v2alpha gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.70.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 = "20230223"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -644,16 +644,19 @@ module Google
|
|
644
644
|
execute_or_queue_command(command, &block)
|
645
645
|
end
|
646
646
|
|
647
|
-
#
|
648
|
-
#
|
649
|
-
#
|
650
|
-
#
|
651
|
-
#
|
652
|
-
#
|
653
|
-
#
|
654
|
-
#
|
655
|
-
#
|
656
|
-
# obsolete
|
647
|
+
# It is recommended to use the ProductService.AddLocalInventories method instead
|
648
|
+
# of ProductService.AddFulfillmentPlaces. ProductService.AddLocalInventories
|
649
|
+
# achieves the same results but provides more fine-grained control over
|
650
|
+
# ingesting local inventory data. Incrementally adds place IDs to Product.
|
651
|
+
# fulfillment_info.place_ids. This process is asynchronous and does not require
|
652
|
+
# the Product to exist before updating fulfillment information. If the request
|
653
|
+
# is valid, the update will be enqueued and processed downstream. As a
|
654
|
+
# consequence, when a response is returned, the added place IDs are not
|
655
|
+
# immediately manifested in the Product queried by ProductService.GetProduct or
|
656
|
+
# ProductService.ListProducts. The returned Operations will be obsolete after 1
|
657
|
+
# day, and GetOperation API will return NOT_FOUND afterwards. If conflicting
|
658
|
+
# updates are issued, the Operations associated with the stale updates will not
|
659
|
+
# be marked as done until being obsolete.
|
657
660
|
# @param [String] product
|
658
661
|
# Required. Full resource name of Product, such as `projects/*/locations/global/
|
659
662
|
# catalogs/default_catalog/branches/default_branch/products/some_product_id`. If
|
@@ -1056,14 +1059,18 @@ module Google
|
|
1056
1059
|
execute_or_queue_command(command, &block)
|
1057
1060
|
end
|
1058
1061
|
|
1059
|
-
#
|
1060
|
-
#
|
1061
|
-
#
|
1062
|
-
#
|
1063
|
-
#
|
1064
|
-
#
|
1065
|
-
#
|
1066
|
-
#
|
1062
|
+
# It is recommended to use the ProductService.RemoveLocalInventories method
|
1063
|
+
# instead of ProductService.RemoveFulfillmentPlaces. ProductService.
|
1064
|
+
# RemoveLocalInventories achieves the same results but provides more fine-
|
1065
|
+
# grained control over ingesting local inventory data. Incrementally removes
|
1066
|
+
# place IDs from a Product.fulfillment_info.place_ids. This process is
|
1067
|
+
# asynchronous and does not require the Product to exist before updating
|
1068
|
+
# fulfillment information. If the request is valid, the update will be enqueued
|
1069
|
+
# and processed downstream. As a consequence, when a response is returned, the
|
1070
|
+
# removed place IDs are not immediately manifested in the Product queried by
|
1071
|
+
# ProductService.GetProduct or ProductService.ListProducts. The returned
|
1072
|
+
# Operations will be obsolete after 1 day, and GetOperation API will return
|
1073
|
+
# NOT_FOUND afterwards. If conflicting updates are issued, the Operations
|
1067
1074
|
# associated with the stale updates will not be marked as done until being
|
1068
1075
|
# obsolete.
|
1069
1076
|
# @param [String] product
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-retail_v2alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.70.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-03-05 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_v2alpha/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2alpha/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2alpha/v0.70.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-retail_v2alpha
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|