google-apis-retail_v2 0.77.0 → 0.79.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: ce77742f21242376de1522ac6ba974cb01c5f57d788bf4332f60585696c1ca7d
4
- data.tar.gz: a43d3c9ecb8383fd5460dbe78f031665b7267441c562e8aa3a8979fb63a92714
3
+ metadata.gz: b620f4af93915ae0a907fb19e0fec85f3641ad4c1306107971860e322c35c144
4
+ data.tar.gz: 42f17a13a861acd043e85b997fbe1c6357b4b70deb7e83d1243dc2a4cf150c72
5
5
  SHA512:
6
- metadata.gz: 348cbe7902600859e5680a534102177cc15daa090bb043e18af9745cbe089c826b3fcc31e5b97144d52c03f9ff9f461a5d93865b8653c9c32c2fc82c3d35a2d1
7
- data.tar.gz: 4e36fd2ca41300db13a03aae64180be4bc0def90ff32ace9cdb2c187ffd1dec9e4d981d6ae5d357d9cea57e541fdb2fae8b8d68ae0d84a731efa0c72a45bee56
6
+ metadata.gz: a68d2318f754d9661d9d28470396e51ed2d0f0d8ee2fe6d288ee22fd1d612c76237d2197bc32cd94ffdfc682f0785bfadad314fa5666987670e374f4ed279357
7
+ data.tar.gz: b2d2e12b2f4ec58b30267cbbdc799cbd7dbe6cb0d56339127e81eba2f624b1f1b71688f60861edf662e9cb660d636f0c1ee9d007c4e2b78627a685282aaef007
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-retail_v2
2
2
 
3
+ ### v0.79.0 (2023-07-23)
4
+
5
+ * Regenerated from discovery document revision 20230713
6
+
7
+ ### v0.78.0 (2023-07-09)
8
+
9
+ * Regenerated from discovery document revision 20230629
10
+
3
11
  ### v0.77.0 (2023-07-02)
4
12
 
5
13
  * Regenerated from discovery document revision 20230622
@@ -2514,11 +2514,11 @@ module Google
2514
2514
  attr_accessor :available_time
2515
2515
 
2516
2516
  # The brands of the product. A maximum of 30 brands are allowed unless
2517
- # overridden via pantheon UI. Each brand must be a UTF-8 encoded string with a
2518
- # length limit of 1,000 characters. Otherwise, an INVALID_ARGUMENT error is
2519
- # returned. Corresponding properties: Google Merchant Center property [brand](
2520
- # https://support.google.com/merchants/answer/6324351). Schema.org property [
2521
- # Product.brand](https://schema.org/brand).
2517
+ # overridden through the Google Cloud console. Each brand must be a UTF-8
2518
+ # encoded string with a length limit of 1,000 characters. Otherwise, an
2519
+ # INVALID_ARGUMENT error is returned. Corresponding properties: Google Merchant
2520
+ # Center property [brand](https://support.google.com/merchants/answer/6324351).
2521
+ # Schema.org property [Product.brand](https://schema.org/brand).
2522
2522
  # Corresponds to the JSON property `brands`
2523
2523
  # @return [Array<String>]
2524
2524
  attr_accessor :brands
@@ -5565,6 +5565,45 @@ module Google
5565
5565
  end
5566
5566
  end
5567
5567
 
5568
+ # Metadata related to the EnrollSolution method. This will be returned by the
5569
+ # google.longrunning.Operation.metadata field.
5570
+ class GoogleCloudRetailV2alphaEnrollSolutionMetadata
5571
+ include Google::Apis::Core::Hashable
5572
+
5573
+ def initialize(**args)
5574
+ update!(**args)
5575
+ end
5576
+
5577
+ # Update properties of this object
5578
+ def update!(**args)
5579
+ end
5580
+ end
5581
+
5582
+ # Response for EnrollSolution method.
5583
+ class GoogleCloudRetailV2alphaEnrollSolutionResponse
5584
+ include Google::Apis::Core::Hashable
5585
+
5586
+ # Retail API solution that the project has enrolled.
5587
+ # Corresponds to the JSON property `enrolledSolution`
5588
+ # @return [String]
5589
+ attr_accessor :enrolled_solution
5590
+
5591
+ # Search solution use case that the project has enrolled.
5592
+ # Corresponds to the JSON property `searchSolutionUseCase`
5593
+ # @return [String]
5594
+ attr_accessor :search_solution_use_case
5595
+
5596
+ def initialize(**args)
5597
+ update!(**args)
5598
+ end
5599
+
5600
+ # Update properties of this object
5601
+ def update!(**args)
5602
+ @enrolled_solution = args[:enrolled_solution] if args.key?(:enrolled_solution)
5603
+ @search_solution_use_case = args[:search_solution_use_case] if args.key?(:search_solution_use_case)
5604
+ end
5605
+ end
5606
+
5568
5607
  # Configuration of destination for Export related errors.
5569
5608
  class GoogleCloudRetailV2alphaExportErrorsConfig
5570
5609
  include Google::Apis::Core::Hashable
@@ -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.77.0"
19
+ GEM_VERSION = "0.79.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
@@ -826,6 +826,18 @@ module Google
826
826
  include Google::Apis::Core::JsonObjectSupport
827
827
  end
828
828
 
829
+ class GoogleCloudRetailV2alphaEnrollSolutionMetadata
830
+ class Representation < Google::Apis::Core::JsonRepresentation; end
831
+
832
+ include Google::Apis::Core::JsonObjectSupport
833
+ end
834
+
835
+ class GoogleCloudRetailV2alphaEnrollSolutionResponse
836
+ class Representation < Google::Apis::Core::JsonRepresentation; end
837
+
838
+ include Google::Apis::Core::JsonObjectSupport
839
+ end
840
+
829
841
  class GoogleCloudRetailV2alphaExportErrorsConfig
830
842
  class Representation < Google::Apis::Core::JsonRepresentation; end
831
843
 
@@ -2633,6 +2645,20 @@ module Google
2633
2645
  end
2634
2646
  end
2635
2647
 
2648
+ class GoogleCloudRetailV2alphaEnrollSolutionMetadata
2649
+ # @private
2650
+ class Representation < Google::Apis::Core::JsonRepresentation
2651
+ end
2652
+ end
2653
+
2654
+ class GoogleCloudRetailV2alphaEnrollSolutionResponse
2655
+ # @private
2656
+ class Representation < Google::Apis::Core::JsonRepresentation
2657
+ property :enrolled_solution, as: 'enrolledSolution'
2658
+ property :search_solution_use_case, as: 'searchSolutionUseCase'
2659
+ end
2660
+ end
2661
+
2636
2662
  class GoogleCloudRetailV2alphaExportErrorsConfig
2637
2663
  # @private
2638
2664
  class Representation < Google::Apis::Core::JsonRepresentation
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.77.0
4
+ version: 0.79.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_v2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2/v0.77.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2/v0.79.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: []