google-apis-retail_v2beta 0.65.0 → 0.67.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: 2460709586247d7ca92b1d46bd39902434aaea2fe448939f5cd1c3abada5acfc
4
- data.tar.gz: 4dc35233fa0120aed6f112edc7b4eb5dec79227ec704f9938504d3c2f562e56a
3
+ metadata.gz: 95ff730b1518e7aaacd414b718abde9b6a6ca2a0915a3e817a7706a9a55e5643
4
+ data.tar.gz: 03b8e49adc71c535e31f7415d23e43f7c6e6e508c15d73ca14decbefb7fc6834
5
5
  SHA512:
6
- metadata.gz: fae7b9e082ce73b2a485183efb3e40bcbc0c9de6f9e7243c8147c6e5825c686f0e27c6af475a5ebb2a260faa30dd2b673ed9b1bedd5556a6e703ba2fef8a7de6
7
- data.tar.gz: ad7b1f8b8204ed0dd8e0437ad4ebad2363d256dd42ccf36c041a269325dc49218309cf3686eeb22bd4e19e65cbf6d43d3962ad86b93bfa579995c88155d3700e
6
+ metadata.gz: bbfb3727e6c23cea3a03dd2755fc8a850950ae6c288e107511418cc5c8337ea723f6380ebe6b3e7dbd34116df25a39c95fa61a57ba218e44da986f65b06f65e7
7
+ data.tar.gz: a46bf2af5f16afb91b55191b2b34d1a63f20e16d47a35b1d4c541af12012ddd2ae7fccce8339177a7ed7260a37f3de2522740b87742e1fdb7611e7b52ccd8620
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-retail_v2beta
2
2
 
3
+ ### v0.67.0 (2023-02-15)
4
+
5
+ * Regenerated using generator version 0.12.0
6
+
7
+ ### v0.66.0 (2023-02-12)
8
+
9
+ * Regenerated from discovery document revision 20230202
10
+
3
11
  ### v0.65.0 (2023-02-05)
4
12
 
5
13
  * Regenerated from discovery document revision 20230126
@@ -4150,8 +4150,9 @@ module Google
4150
4150
  # filterSyntaxV2` is set to true under the `params` field, then attribute-based
4151
4151
  # expressions are expected instead of the above described tag-based syntax.
4152
4152
  # Examples: * (colors: ANY("Red", "Blue")) AND NOT (categories: ANY("Phones")) *
4153
- # (availability: ANY("IN_STOCK")) AND (colors: ANY("Red") OR categories: ANY("
4154
- # Phones"))
4153
+ # (brands: ANY("Pixel")) AND (colors: ANY("Red") OR categories: ANY("Phones"))
4154
+ # For more information, see [Filter recommendations](https://cloud.google.com/
4155
+ # retail/docs/filter-recs).
4155
4156
  # Corresponds to the JSON property `filter`
4156
4157
  # @return [String]
4157
4158
  attr_accessor :filter
@@ -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.65.0"
19
+ GEM_VERSION = "0.67.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.1"
22
+ GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230126"
25
+ REVISION = "20230202"
26
26
  end
27
27
  end
28
28
  end
@@ -1412,6 +1412,37 @@ module Google
1412
1412
  execute_or_queue_command(command, &block)
1413
1413
  end
1414
1414
 
1415
+ # Gets a model.
1416
+ # @param [String] name
1417
+ # Required. The resource name of the Model to get. Format: `projects/`
1418
+ # project_number`/locations/`location_id`/catalogs/`catalog`/models/`model_id``
1419
+ # @param [String] fields
1420
+ # Selector specifying which fields to include in a partial response.
1421
+ # @param [String] quota_user
1422
+ # Available to use for quota purposes for server-side applications. Can be any
1423
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1424
+ # @param [Google::Apis::RequestOptions] options
1425
+ # Request-specific options
1426
+ #
1427
+ # @yield [result, err] Result & error if block supplied
1428
+ # @yieldparam result [Google::Apis::RetailV2beta::GoogleCloudRetailV2betaModel] parsed result object
1429
+ # @yieldparam err [StandardError] error object if request failed
1430
+ #
1431
+ # @return [Google::Apis::RetailV2beta::GoogleCloudRetailV2betaModel]
1432
+ #
1433
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1434
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1435
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1436
+ def get_project_location_catalog_model(name, fields: nil, quota_user: nil, options: nil, &block)
1437
+ command = make_simple_command(:get, 'v2beta/{+name}', options)
1438
+ command.response_representation = Google::Apis::RetailV2beta::GoogleCloudRetailV2betaModel::Representation
1439
+ command.response_class = Google::Apis::RetailV2beta::GoogleCloudRetailV2betaModel
1440
+ command.params['name'] = name unless name.nil?
1441
+ command.query['fields'] = fields unless fields.nil?
1442
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1443
+ execute_or_queue_command(command, &block)
1444
+ end
1445
+
1415
1446
  # Lists all the models linked to this event store.
1416
1447
  # @param [String] parent
1417
1448
  # Required. The parent for which to list models. Format: `projects/`
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.65.0
4
+ version: 0.67.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-02-05 00:00:00.000000000 Z
11
+ date: 2023-02-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.9.1
19
+ version: 0.11.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.9.1
29
+ version: 0.11.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.65.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2beta/v0.67.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: []