google-apis-retail_v2 0.89.0 → 0.90.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: b5afe8ba40c38222eed4bca1d27f3ee9c9db1ef56c9c566eabd84b2f6fbe4c77
4
- data.tar.gz: d2c5fb5c82b21f617f30afe3b118db31ad4d44c6cb5f919d19c137c6f04d850b
3
+ metadata.gz: 8c2091dc0aa4da132cfb60b360be9cb7a8f40807b3f29c19b14dea3f23de75b5
4
+ data.tar.gz: cac582b1092581a90279c16dd9e3b7d4c90e07a96ee53e14635289b496e8ec8a
5
5
  SHA512:
6
- metadata.gz: f3dfa09013c2e0b02b8971a2851a88880bd8f982b4e7547250115f523dd6bb36b3a1aae7b9b01d4ba8bd562a77186f4a3fce994886d3ce70c2eb18d9e0266d62
7
- data.tar.gz: 359736fc92f917bc890b36da4cb8958b38dbe1eabc68f2165899724cd2f432c311b9d3e644d5c22265d2c8c9a1e295c498ef81e90d219fea5d9d2a88aca21d58
6
+ metadata.gz: 209f8ad2e17c367889dca09d04742ddc686be9483f0b1bd5fc1b3fae3c3082ecb2795953604908d0d1a4915481e275e4da4639f6019bf8ab48c1e20a32f50b14
7
+ data.tar.gz: c69753f660048b19bb8e61909003dc5b603e7ebf20fc92a9e29d36a1d80cdae0a7f6b3870cbd5b4c3792f1c5d48cb3cd5110510c9b16380c3d86f20160f3d7d6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-retail_v2
2
2
 
3
+ ### v0.90.0 (2024-02-18)
4
+
5
+ * Regenerated from discovery document revision 20240212
6
+
3
7
  ### v0.89.0 (2024-02-11)
4
8
 
5
9
  * Regenerated from discovery document revision 20240205
data/OVERVIEW.md CHANGED
@@ -1,6 +1,6 @@
1
- # Simple REST client for version V2 of the Retail API
1
+ # Simple REST client for version V2 of the Vertex AI Search for Retail API
2
2
 
3
- This is a simple client library for version V2 of the Retail API. It provides:
3
+ This is a simple client library for version V2 of the Vertex AI Search for Retail API. It provides:
4
4
 
5
5
  * A client object that connects to the HTTP/JSON REST endpoint for the service.
6
6
  * Ruby objects for data structures related to the service.
@@ -65,7 +65,7 @@ More detailed descriptions of the Google simple REST clients are available in tw
65
65
 
66
66
  (Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Retail service in particular.)
67
67
 
68
- For reference information on specific calls in the Retail API, see the {Google::Apis::RetailV2::CloudRetailService class reference docs}.
68
+ For reference information on specific calls in the Vertex AI Search for Retail API, see the {Google::Apis::RetailV2::CloudRetailService class reference docs}.
69
69
 
70
70
  ## Which client should I use?
71
71
 
@@ -1664,6 +1664,33 @@ module Google
1664
1664
  end
1665
1665
  end
1666
1666
 
1667
+ # Metadata related to the progress of the Export operation. This is returned by
1668
+ # the google.longrunning.Operation.metadata field.
1669
+ class GoogleCloudRetailV2ExportMetadata
1670
+ include Google::Apis::Core::Hashable
1671
+
1672
+ # Operation create time.
1673
+ # Corresponds to the JSON property `createTime`
1674
+ # @return [String]
1675
+ attr_accessor :create_time
1676
+
1677
+ # Operation last update time. If the operation is done, this is also the finish
1678
+ # time.
1679
+ # Corresponds to the JSON property `updateTime`
1680
+ # @return [String]
1681
+ attr_accessor :update_time
1682
+
1683
+ def initialize(**args)
1684
+ update!(**args)
1685
+ end
1686
+
1687
+ # Update properties of this object
1688
+ def update!(**args)
1689
+ @create_time = args[:create_time] if args.key?(:create_time)
1690
+ @update_time = args[:update_time] if args.key?(:update_time)
1691
+ end
1692
+ end
1693
+
1667
1694
  # Fulfillment information, such as the store IDs for in-store pickup or region
1668
1695
  # IDs for different shipping methods.
1669
1696
  class GoogleCloudRetailV2FulfillmentInfo
@@ -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.89.0"
19
+ GEM_VERSION = "0.90.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.13.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240205"
25
+ REVISION = "20240212"
26
26
  end
27
27
  end
28
28
  end
@@ -286,6 +286,12 @@ module Google
286
286
  include Google::Apis::Core::JsonObjectSupport
287
287
  end
288
288
 
289
+ class GoogleCloudRetailV2ExportMetadata
290
+ class Representation < Google::Apis::Core::JsonRepresentation; end
291
+
292
+ include Google::Apis::Core::JsonObjectSupport
293
+ end
294
+
289
295
  class GoogleCloudRetailV2FulfillmentInfo
290
296
  class Representation < Google::Apis::Core::JsonRepresentation; end
291
297
 
@@ -1850,6 +1856,14 @@ module Google
1850
1856
  end
1851
1857
  end
1852
1858
 
1859
+ class GoogleCloudRetailV2ExportMetadata
1860
+ # @private
1861
+ class Representation < Google::Apis::Core::JsonRepresentation
1862
+ property :create_time, as: 'createTime'
1863
+ property :update_time, as: 'updateTime'
1864
+ end
1865
+ end
1866
+
1853
1867
  class GoogleCloudRetailV2FulfillmentInfo
1854
1868
  # @private
1855
1869
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -20,11 +20,12 @@ require 'google/apis/errors'
20
20
  module Google
21
21
  module Apis
22
22
  module RetailV2
23
- # Retail API
23
+ # Vertex AI Search for Retail API
24
24
  #
25
- # Cloud Retail service enables customers to build end-to-end personalized
26
- # recommendation systems without requiring a high level of expertise in machine
27
- # learning, recommendation system, or Google Cloud.
25
+ # Vertex AI Search for Retail API is made up of Retail Search, Browse and
26
+ # Recommendations. These discovery AI solutions help you implement personalized
27
+ # search, browse and recommendations, based on machine learning models, across
28
+ # your websites and mobile applications.
28
29
  #
29
30
  # @example
30
31
  # require 'google/apis/retail_v2'
@@ -19,15 +19,16 @@ require 'google/apis/retail_v2/gem_version.rb'
19
19
 
20
20
  module Google
21
21
  module Apis
22
- # Retail API
22
+ # Vertex AI Search for Retail API
23
23
  #
24
- # Cloud Retail service enables customers to build end-to-end personalized
25
- # recommendation systems without requiring a high level of expertise in machine
26
- # learning, recommendation system, or Google Cloud.
24
+ # Vertex AI Search for Retail API is made up of Retail Search, Browse and
25
+ # Recommendations. These discovery AI solutions help you implement personalized
26
+ # search, browse and recommendations, based on machine learning models, across
27
+ # your websites and mobile applications.
27
28
  #
28
29
  # @see https://cloud.google.com/recommendations
29
30
  module RetailV2
30
- # Version of the Retail API this client connects to.
31
+ # Version of the Vertex AI Search for Retail API this client connects to.
31
32
  # This is NOT the gem version.
32
33
  VERSION = 'V2'
33
34
 
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.89.0
4
+ version: 0.90.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: 2024-02-11 00:00:00.000000000 Z
11
+ date: 2024-02-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -30,13 +30,13 @@ dependencies:
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
33
- description: This is the simple REST client for Retail API V2. Simple REST clients
34
- are Ruby client libraries that provide access to Google services via their HTTP
35
- REST API endpoints. These libraries are generated and updated automatically based
36
- on the discovery documents published by the service, and they handle most concerns
37
- such as authentication, pagination, retry, timeouts, and logging. You can use this
38
- client to access the Retail API, but note that some services may provide a separate
39
- modern client that is easier to use.
33
+ description: This is the simple REST client for Vertex AI Search for Retail API V2.
34
+ Simple REST clients are Ruby client libraries that provide access to Google services
35
+ via their HTTP REST API endpoints. These libraries are generated and updated automatically
36
+ based on the discovery documents published by the service, and they handle most
37
+ concerns such as authentication, pagination, retry, timeouts, and logging. You can
38
+ use this client to access the Vertex AI Search for Retail API, but note that some
39
+ services may provide a separate modern client that is easier to use.
40
40
  email: googleapis-packages@google.com
41
41
  executables: []
42
42
  extensions: []
@@ -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.89.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2/v0.90.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: []
@@ -78,5 +78,5 @@ requirements: []
78
78
  rubygems_version: 3.5.3
79
79
  signing_key:
80
80
  specification_version: 4
81
- summary: Simple REST client for Retail API V2
81
+ summary: Simple REST client for Vertex AI Search for Retail API V2
82
82
  test_files: []