google-apis-retail_v2alpha 0.69.0 → 0.70.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: 77a82cdf17575b62d54497a2ea8bac33cdfe5dc4c2dfaef0ae7199367ee9363d
4
- data.tar.gz: 33b2d212bd44ec0587e8177918d677e6bd2bdead6db7f1897d67302bb7761070
3
+ metadata.gz: bd21aacca9c9aa41ff44f2e729d6ed4a6e3fe4cc6e1e4221b628404ad33ce76c
4
+ data.tar.gz: 3b4ed48a1d12e88d7977fbd9c97b03960a128465892c8e0e7edbdb3ae1abd099
5
5
  SHA512:
6
- metadata.gz: 65b0f58bcff47c9af7304e1d1c9f357902692c7b2429a2a03006e1af416cccc7ba609729d86293b173b78947d0075480fd03b45182d9e54d14d2b97c5b07918f
7
- data.tar.gz: c22168727ce2c8d3ce8ff05347dec47f8f1466d3c594e50a9f0201771c97f690f4a1b436b773037a85c0d769c463290e94415abeb285724534b628512c2bbcda
6
+ metadata.gz: a69cf81a604e9dff9657e27063134a6a04ae3232ba811cf2fc167db86379b9a76c0182681f8e4f24dbd2907e5b959f7dc477803472416c66fb852776903b0b44
7
+ data.tar.gz: 5999a9d9a26581fdac638d8f6f830fedb32c30e0abd486d1b747cf7766a4c2abbfdd771afadaf0104040dbc1d7c5783011f0cdee5d5dcdfd887bfa3ed64a394b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-retail_v2alpha
2
2
 
3
+ ### v0.70.0 (2023-03-05)
4
+
5
+ * Regenerated from discovery document revision 20230223
6
+
3
7
  ### v0.69.0 (2023-02-19)
4
8
 
5
9
  * Regenerated using generator version 0.12.0
@@ -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 is
3740
- # only available for users who have Retail Search enabled, and it can be managed
3741
- # by ProductService.AddLocalInventories and ProductService.
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.69.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 = "20230202"
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
- # Incrementally adds place IDs to Product.fulfillment_info.place_ids. This
648
- # process is asynchronous and does not require the Product to exist before
649
- # updating fulfillment information. If the request is valid, the update will be
650
- # enqueued and processed downstream. As a consequence, when a response is
651
- # returned, the added place IDs are not immediately manifested in the Product
652
- # queried by ProductService.GetProduct or ProductService.ListProducts. The
653
- # returned Operations will be obsolete after 1 day, and GetOperation API will
654
- # return NOT_FOUND afterwards. If conflicting updates are issued, the Operations
655
- # associated with the stale updates will not be marked as done until being
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
- # Incrementally removes place IDs from a Product.fulfillment_info.place_ids.
1060
- # This process is asynchronous and does not require the Product to exist before
1061
- # updating fulfillment information. If the request is valid, the update will be
1062
- # enqueued and processed downstream. As a consequence, when a response is
1063
- # returned, the removed place IDs are not immediately manifested in the Product
1064
- # queried by ProductService.GetProduct or ProductService.ListProducts. The
1065
- # returned Operations will be obsolete after 1 day, and GetOperation API will
1066
- # return NOT_FOUND afterwards. If conflicting updates are issued, the Operations
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.69.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-02-19 00:00:00.000000000 Z
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.69.0
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: []