google-apis-retail_v2beta 0.79.0 → 0.81.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: a652c0c4727507a86ca663461e7be0ddfecc5678e12777ab349efbbd7ea4133d
4
- data.tar.gz: 311911be408d344f7ffe94fa83a83df122950e32f23b867acb72cf49bfa82c37
3
+ metadata.gz: 6242ca662595c0c2b3bbd29ed5ad0183dca29ee4b11fc660e075519581f88208
4
+ data.tar.gz: b5e3466276b66009345a68d4adb17a7a1ed6d5780338032050d2876af86fed95
5
5
  SHA512:
6
- metadata.gz: 50dd52ae9031a415d79855d81f175f760e5726e667726ba785ded269fda1bb683c6dd52b7e57175de8dcb34c61761979b8c524e54f5abff928071b2c9633151c
7
- data.tar.gz: 608fe38fa70eb58a0812aaf8a34a6e24a4e8203902d549eccb68a1fbea3ad5a56c989ccab9ddac61c3611ff3c5f58d0b043b885dc3180d39b235706306f0d680
6
+ metadata.gz: ae708806d75037f4098519d96de078dd2d47eae73763eea6bb7b8d8547e3e6e103d6c72ad9958a7798b7fcacd5df48370832f6cec728c7aaf5ee2bac128996be
7
+ data.tar.gz: 30bd19ea4ebb8d8ac58046c3389a25471d481a83e06e3b8082ce9336be6ed5483d5f8a15855c64b99644829c3389b09236cd2e2745c79dad80f0377931a2fae4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-retail_v2beta
2
2
 
3
+ ### v0.81.0 (2023-07-23)
4
+
5
+ * Regenerated from discovery document revision 20230713
6
+
7
+ ### v0.80.0 (2023-07-09)
8
+
9
+ * Regenerated from discovery document revision 20230629
10
+
3
11
  ### v0.79.0 (2023-07-02)
4
12
 
5
13
  * Regenerated from discovery document revision 20230622
@@ -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
@@ -4963,11 +5002,11 @@ module Google
4963
5002
  attr_accessor :available_time
4964
5003
 
4965
5004
  # The brands of the product. A maximum of 30 brands are allowed unless
4966
- # overridden via pantheon UI. Each brand must be a UTF-8 encoded string with a
4967
- # length limit of 1,000 characters. Otherwise, an INVALID_ARGUMENT error is
4968
- # returned. Corresponding properties: Google Merchant Center property [brand](
4969
- # https://support.google.com/merchants/answer/6324351). Schema.org property [
4970
- # Product.brand](https://schema.org/brand).
5005
+ # overridden through the Google Cloud console. Each brand must be a UTF-8
5006
+ # encoded string with a length limit of 1,000 characters. Otherwise, an
5007
+ # INVALID_ARGUMENT error is returned. Corresponding properties: Google Merchant
5008
+ # Center property [brand](https://support.google.com/merchants/answer/6324351).
5009
+ # Schema.org property [Product.brand](https://schema.org/brand).
4971
5010
  # Corresponds to the JSON property `brands`
4972
5011
  # @return [Array<String>]
4973
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.79.0"
19
+ GEM_VERSION = "0.81.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 = "20230622"
25
+ REVISION = "20230713"
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.79.0
4
+ version: 0.81.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-07-02 00:00:00.000000000 Z
11
+ date: 2023-07-23 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.79.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2beta/v0.81.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: []