google-apis-retail_v2beta 0.91.0 → 0.92.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/OVERVIEW.md +3 -3
- data/lib/google/apis/retail_v2beta/classes.rb +27 -0
- data/lib/google/apis/retail_v2beta/gem_version.rb +2 -2
- data/lib/google/apis/retail_v2beta/representations.rb +14 -0
- data/lib/google/apis/retail_v2beta/service.rb +5 -4
- data/lib/google/apis/retail_v2beta.rb +6 -5
- metadata +11 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5f989d7106f20371414f6ec8b008d07dbb8ebc8a3dcc36b34343d8f7c6e3c65e
|
4
|
+
data.tar.gz: d899fd2123f350af32fa810effb6921f5db8b73faa18533b022e6bd9ef9a9d07
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 953b22989edcce7e3624817fa393b72e8495cf77d6eece88c1d47667ad92c98f121fa8e6b72e6fe455c4a7e30fcaa3ec7e22ff8a9ff71448bbd8e68b88a59e7a
|
7
|
+
data.tar.gz: 23550ffa8434401befc3ae1bb2365bebc08e21fb5f07f86062c98cee800de4786fceb88df96e044c7391e62a77ed492c54c7d2c94a80d467381ec7dde49cee4c
|
data/CHANGELOG.md
CHANGED
data/OVERVIEW.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
# Simple REST client for version V2beta of the Retail API
|
1
|
+
# Simple REST client for version V2beta of the Vertex AI Search for Retail API
|
2
2
|
|
3
|
-
This is a simple client library for version V2beta of the Retail API. It provides:
|
3
|
+
This is a simple client library for version V2beta 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::RetailV2beta::CloudRetailService class reference docs}.
|
68
|
+
For reference information on specific calls in the Vertex AI Search for Retail API, see the {Google::Apis::RetailV2beta::CloudRetailService class reference docs}.
|
69
69
|
|
70
70
|
## Which client should I use?
|
71
71
|
|
@@ -440,6 +440,33 @@ module Google
|
|
440
440
|
end
|
441
441
|
end
|
442
442
|
|
443
|
+
# Metadata related to the progress of the Export operation. This is returned by
|
444
|
+
# the google.longrunning.Operation.metadata field.
|
445
|
+
class GoogleCloudRetailV2ExportMetadata
|
446
|
+
include Google::Apis::Core::Hashable
|
447
|
+
|
448
|
+
# Operation create time.
|
449
|
+
# Corresponds to the JSON property `createTime`
|
450
|
+
# @return [String]
|
451
|
+
attr_accessor :create_time
|
452
|
+
|
453
|
+
# Operation last update time. If the operation is done, this is also the finish
|
454
|
+
# time.
|
455
|
+
# Corresponds to the JSON property `updateTime`
|
456
|
+
# @return [String]
|
457
|
+
attr_accessor :update_time
|
458
|
+
|
459
|
+
def initialize(**args)
|
460
|
+
update!(**args)
|
461
|
+
end
|
462
|
+
|
463
|
+
# Update properties of this object
|
464
|
+
def update!(**args)
|
465
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
466
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
467
|
+
end
|
468
|
+
end
|
469
|
+
|
443
470
|
# A Gcs output result.
|
444
471
|
class GoogleCloudRetailV2GcsOutputResult
|
445
472
|
include Google::Apis::Core::Hashable
|
@@ -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.92.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 = "
|
25
|
+
REVISION = "20240212"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -112,6 +112,12 @@ module Google
|
|
112
112
|
include Google::Apis::Core::JsonObjectSupport
|
113
113
|
end
|
114
114
|
|
115
|
+
class GoogleCloudRetailV2ExportMetadata
|
116
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
117
|
+
|
118
|
+
include Google::Apis::Core::JsonObjectSupport
|
119
|
+
end
|
120
|
+
|
115
121
|
class GoogleCloudRetailV2GcsOutputResult
|
116
122
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
117
123
|
|
@@ -1589,6 +1595,14 @@ module Google
|
|
1589
1595
|
end
|
1590
1596
|
end
|
1591
1597
|
|
1598
|
+
class GoogleCloudRetailV2ExportMetadata
|
1599
|
+
# @private
|
1600
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1601
|
+
property :create_time, as: 'createTime'
|
1602
|
+
property :update_time, as: 'updateTime'
|
1603
|
+
end
|
1604
|
+
end
|
1605
|
+
|
1592
1606
|
class GoogleCloudRetailV2GcsOutputResult
|
1593
1607
|
# @private
|
1594
1608
|
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 RetailV2beta
|
23
|
-
# Retail API
|
23
|
+
# Vertex AI Search for Retail API
|
24
24
|
#
|
25
|
-
#
|
26
|
-
#
|
27
|
-
#
|
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_v2beta'
|
@@ -19,15 +19,16 @@ require 'google/apis/retail_v2beta/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
|
-
#
|
25
|
-
#
|
26
|
-
#
|
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 RetailV2beta
|
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 = 'V2beta'
|
33
34
|
|
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.92.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
|
+
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 V2beta.
|
34
|
-
are Ruby client libraries that provide access to Google services
|
35
|
-
REST API endpoints. These libraries are generated and updated automatically
|
36
|
-
on the discovery documents published by the service, and they handle most
|
37
|
-
such as authentication, pagination, retry, timeouts, and logging. You can
|
38
|
-
client to access the Retail API, but note that some
|
39
|
-
modern client that is easier to use.
|
33
|
+
description: This is the simple REST client for Vertex AI Search for Retail API V2beta.
|
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_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.92.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: []
|
@@ -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 V2beta
|
81
|
+
summary: Simple REST client for Vertex AI Search for Retail API V2beta
|
82
82
|
test_files: []
|