google-apis-retail_v2beta 0.78.0 → 0.80.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: bb2ed814cf6027670e0793167fcf0a804c35a03f3917f1939a429a492e692b0a
4
- data.tar.gz: 6e5c3004481f153a8cc409a6394e562515a12a7928cf3f34b2ab45da994b4198
3
+ metadata.gz: 3dd4163b32df380b8a5f5c981fed42de0536af795326dcc0b572095baf1ca209
4
+ data.tar.gz: b55080cf26b37ccf7827fe61e3a61980c437476f3eb003fdc098aef2e15e6cd4
5
5
  SHA512:
6
- metadata.gz: f6e60dced5fdcb130bc761d98431c12c7370090138acf697e5eb785d9664795ab961025d478f3ab21a601db69e9b50d4f7952f03cbaecec50330754cc645fcce
7
- data.tar.gz: 935288b89147b882d11b677d7a7cf526647dd6fcb2afe1d32a5602d561151b2fe53b5dfea5a0ade7ff5be7007e2eec4ace320de850c8d6a8d8e16c3106d24089
6
+ metadata.gz: 8c88196f9861b2e6561cea784fb395e6c29bd0420b8858c6fe90ffc34ebfab50da9f8ff013cf4f10e453938a32136effd670e544ac3fddc50cb083443668ef06
7
+ data.tar.gz: 0b14df351258f0e65191cfd7170f4085a4bee0c1e28413f71b56307039d0bafc398537eae9ab7c7ac585d63b31af1b9bb58ccbeb71b6726dbf20fcbb9f7df866
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-retail_v2beta
2
2
 
3
+ ### v0.80.0 (2023-07-09)
4
+
5
+ * Regenerated from discovery document revision 20230629
6
+
7
+ ### v0.79.0 (2023-07-02)
8
+
9
+ * Regenerated from discovery document revision 20230622
10
+
3
11
  ### v0.78.0 (2023-06-18)
4
12
 
5
13
  * Regenerated from discovery document revision 20230609
@@ -1140,6 +1140,45 @@ module Google
1140
1140
  end
1141
1141
  end
1142
1142
 
1143
+ # Metadata related to the EnrollSolution method. This will be returned by the
1144
+ # google.longrunning.Operation.metadata field.
1145
+ class GoogleCloudRetailV2alphaEnrollSolutionMetadata
1146
+ include Google::Apis::Core::Hashable
1147
+
1148
+ def initialize(**args)
1149
+ update!(**args)
1150
+ end
1151
+
1152
+ # Update properties of this object
1153
+ def update!(**args)
1154
+ end
1155
+ end
1156
+
1157
+ # Response for EnrollSolution method.
1158
+ class GoogleCloudRetailV2alphaEnrollSolutionResponse
1159
+ include Google::Apis::Core::Hashable
1160
+
1161
+ # Retail API solution that the project has enrolled.
1162
+ # Corresponds to the JSON property `enrolledSolution`
1163
+ # @return [String]
1164
+ attr_accessor :enrolled_solution
1165
+
1166
+ # Search solution use case that the project has enrolled.
1167
+ # Corresponds to the JSON property `searchSolutionUseCase`
1168
+ # @return [String]
1169
+ attr_accessor :search_solution_use_case
1170
+
1171
+ def initialize(**args)
1172
+ update!(**args)
1173
+ end
1174
+
1175
+ # Update properties of this object
1176
+ def update!(**args)
1177
+ @enrolled_solution = args[:enrolled_solution] if args.key?(:enrolled_solution)
1178
+ @search_solution_use_case = args[:search_solution_use_case] if args.key?(:search_solution_use_case)
1179
+ end
1180
+ end
1181
+
1143
1182
  # Configuration of destination for Export related errors.
1144
1183
  class GoogleCloudRetailV2alphaExportErrorsConfig
1145
1184
  include Google::Apis::Core::Hashable
@@ -4962,11 +5001,12 @@ module Google
4962
5001
  # @return [String]
4963
5002
  attr_accessor :available_time
4964
5003
 
4965
- # The brands of the product. A maximum of 30 brands are allowed. Each brand must
4966
- # be a UTF-8 encoded string with a length limit of 1,000 characters. Otherwise,
4967
- # an INVALID_ARGUMENT error is returned. Corresponding properties: Google
4968
- # Merchant Center property [brand](https://support.google.com/merchants/answer/
4969
- # 6324351). Schema.org property [Product.brand](https://schema.org/brand).
5004
+ # The brands of the product. A maximum of 30 brands are allowed unless
5005
+ # overridden via pantheon UI. Each brand must be a UTF-8 encoded string with a
5006
+ # length limit of 1,000 characters. Otherwise, an INVALID_ARGUMENT error is
5007
+ # returned. Corresponding properties: Google Merchant Center property [brand](
5008
+ # https://support.google.com/merchants/answer/6324351). Schema.org property [
5009
+ # Product.brand](https://schema.org/brand).
4970
5010
  # Corresponds to the JSON property `brands`
4971
5011
  # @return [Array<String>]
4972
5012
  attr_accessor :brands
@@ -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.78.0"
19
+ GEM_VERSION = "0.80.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 = "20230609"
25
+ REVISION = "20230629"
26
26
  end
27
27
  end
28
28
  end
@@ -280,6 +280,18 @@ module Google
280
280
  include Google::Apis::Core::JsonObjectSupport
281
281
  end
282
282
 
283
+ class GoogleCloudRetailV2alphaEnrollSolutionMetadata
284
+ class Representation < Google::Apis::Core::JsonRepresentation; end
285
+
286
+ include Google::Apis::Core::JsonObjectSupport
287
+ end
288
+
289
+ class GoogleCloudRetailV2alphaEnrollSolutionResponse
290
+ class Representation < Google::Apis::Core::JsonRepresentation; end
291
+
292
+ include Google::Apis::Core::JsonObjectSupport
293
+ end
294
+
283
295
  class GoogleCloudRetailV2alphaExportErrorsConfig
284
296
  class Representation < Google::Apis::Core::JsonRepresentation; end
285
297
 
@@ -1678,6 +1690,20 @@ module Google
1678
1690
  end
1679
1691
  end
1680
1692
 
1693
+ class GoogleCloudRetailV2alphaEnrollSolutionMetadata
1694
+ # @private
1695
+ class Representation < Google::Apis::Core::JsonRepresentation
1696
+ end
1697
+ end
1698
+
1699
+ class GoogleCloudRetailV2alphaEnrollSolutionResponse
1700
+ # @private
1701
+ class Representation < Google::Apis::Core::JsonRepresentation
1702
+ property :enrolled_solution, as: 'enrolledSolution'
1703
+ property :search_solution_use_case, as: 'searchSolutionUseCase'
1704
+ end
1705
+ end
1706
+
1681
1707
  class GoogleCloudRetailV2alphaExportErrorsConfig
1682
1708
  # @private
1683
1709
  class Representation < Google::Apis::Core::JsonRepresentation
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.78.0
4
+ version: 0.80.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-06-18 00:00:00.000000000 Z
11
+ date: 2023-07-09 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_v2beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2beta/v0.78.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2beta/v0.80.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: []