google-apis-retail_v2 0.122.0 → 0.124.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 87b6c9bd2f38f7718d361d3a112ccd032fe486288308bd1ef9419135564eff66
|
|
4
|
+
data.tar.gz: 0aacf4b5fa54c359dafdad401e259cfb02e6191d08d180b2dae5b3a78aa4cd41
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 97cf0abf3716d624206a4aed21c8f35e0fe3a8a0e0d16641806f829b07bd62bf5efc4f5336051c373f35ab59e96ba40a8655c29b41402f342e85119b805843b5
|
|
7
|
+
data.tar.gz: 5415abad7eb503ec542da4a70652061c4055caa07f1e384ed393cc42a7502001627ca776c37291d29131ca14dabdf43ca66ce0795fc3153c07b87e2a72cc0add
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-retail_v2
|
|
2
2
|
|
|
3
|
+
### v0.124.0 (2025-11-23)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251113
|
|
6
|
+
|
|
7
|
+
### v0.123.0 (2025-10-12)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251002
|
|
10
|
+
|
|
3
11
|
### v0.122.0 (2025-09-21)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20250911
|
|
@@ -9765,6 +9765,14 @@ module Google
|
|
|
9765
9765
|
# @return [Array<Google::Apis::RetailV2::GoogleLongrunningOperation>]
|
|
9766
9766
|
attr_accessor :operations
|
|
9767
9767
|
|
|
9768
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
9769
|
+
# ListOperationsRequest.return_partial_success` and reads across collections.
|
|
9770
|
+
# For example, when attempting to list all resources across all supported
|
|
9771
|
+
# locations.
|
|
9772
|
+
# Corresponds to the JSON property `unreachable`
|
|
9773
|
+
# @return [Array<String>]
|
|
9774
|
+
attr_accessor :unreachable
|
|
9775
|
+
|
|
9768
9776
|
def initialize(**args)
|
|
9769
9777
|
update!(**args)
|
|
9770
9778
|
end
|
|
@@ -9773,6 +9781,7 @@ module Google
|
|
|
9773
9781
|
def update!(**args)
|
|
9774
9782
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
9775
9783
|
@operations = args[:operations] if args.key?(:operations)
|
|
9784
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
|
9776
9785
|
end
|
|
9777
9786
|
end
|
|
9778
9787
|
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.124.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251113"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -4242,6 +4242,7 @@ module Google
|
|
|
4242
4242
|
property :next_page_token, as: 'nextPageToken'
|
|
4243
4243
|
collection :operations, as: 'operations', class: Google::Apis::RetailV2::GoogleLongrunningOperation, decorator: Google::Apis::RetailV2::GoogleLongrunningOperation::Representation
|
|
4244
4244
|
|
|
4245
|
+
collection :unreachable, as: 'unreachable'
|
|
4245
4246
|
end
|
|
4246
4247
|
end
|
|
4247
4248
|
|
|
@@ -1982,6 +1982,14 @@ module Google
|
|
|
1982
1982
|
# The standard list page size.
|
|
1983
1983
|
# @param [String] page_token
|
|
1984
1984
|
# The standard list page token.
|
|
1985
|
+
# @param [Boolean] return_partial_success
|
|
1986
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
|
1987
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
1988
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
1989
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
1990
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
1991
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
1992
|
+
# documentation.
|
|
1985
1993
|
# @param [String] fields
|
|
1986
1994
|
# Selector specifying which fields to include in a partial response.
|
|
1987
1995
|
# @param [String] quota_user
|
|
@@ -1999,7 +2007,7 @@ module Google
|
|
|
1999
2007
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
2000
2008
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
2001
2009
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
2002
|
-
def list_project_location_catalog_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
2010
|
+
def list_project_location_catalog_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
2003
2011
|
command = make_simple_command(:get, 'v2/{+name}/operations', options)
|
|
2004
2012
|
command.response_representation = Google::Apis::RetailV2::GoogleLongrunningListOperationsResponse::Representation
|
|
2005
2013
|
command.response_class = Google::Apis::RetailV2::GoogleLongrunningListOperationsResponse
|
|
@@ -2007,6 +2015,7 @@ module Google
|
|
|
2007
2015
|
command.query['filter'] = filter unless filter.nil?
|
|
2008
2016
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
2009
2017
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
2018
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
2010
2019
|
command.query['fields'] = fields unless fields.nil?
|
|
2011
2020
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
2012
2021
|
execute_or_queue_command(command, &block)
|
|
@@ -2747,6 +2756,14 @@ module Google
|
|
|
2747
2756
|
# The standard list page size.
|
|
2748
2757
|
# @param [String] page_token
|
|
2749
2758
|
# The standard list page token.
|
|
2759
|
+
# @param [Boolean] return_partial_success
|
|
2760
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
|
2761
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
2762
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
2763
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
2764
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
2765
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
2766
|
+
# documentation.
|
|
2750
2767
|
# @param [String] fields
|
|
2751
2768
|
# Selector specifying which fields to include in a partial response.
|
|
2752
2769
|
# @param [String] quota_user
|
|
@@ -2764,7 +2781,7 @@ module Google
|
|
|
2764
2781
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
2765
2782
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
2766
2783
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
2767
|
-
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
2784
|
+
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
2768
2785
|
command = make_simple_command(:get, 'v2/{+name}/operations', options)
|
|
2769
2786
|
command.response_representation = Google::Apis::RetailV2::GoogleLongrunningListOperationsResponse::Representation
|
|
2770
2787
|
command.response_class = Google::Apis::RetailV2::GoogleLongrunningListOperationsResponse
|
|
@@ -2772,6 +2789,7 @@ module Google
|
|
|
2772
2789
|
command.query['filter'] = filter unless filter.nil?
|
|
2773
2790
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
2774
2791
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
2792
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
2775
2793
|
command.query['fields'] = fields unless fields.nil?
|
|
2776
2794
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
2777
2795
|
execute_or_queue_command(command, &block)
|
|
@@ -2818,6 +2836,14 @@ module Google
|
|
|
2818
2836
|
# The standard list page size.
|
|
2819
2837
|
# @param [String] page_token
|
|
2820
2838
|
# The standard list page token.
|
|
2839
|
+
# @param [Boolean] return_partial_success
|
|
2840
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
|
2841
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
2842
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
2843
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
2844
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
2845
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
2846
|
+
# documentation.
|
|
2821
2847
|
# @param [String] fields
|
|
2822
2848
|
# Selector specifying which fields to include in a partial response.
|
|
2823
2849
|
# @param [String] quota_user
|
|
@@ -2835,7 +2861,7 @@ module Google
|
|
|
2835
2861
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
2836
2862
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
2837
2863
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
2838
|
-
def list_project_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
2864
|
+
def list_project_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
2839
2865
|
command = make_simple_command(:get, 'v2/{+name}/operations', options)
|
|
2840
2866
|
command.response_representation = Google::Apis::RetailV2::GoogleLongrunningListOperationsResponse::Representation
|
|
2841
2867
|
command.response_class = Google::Apis::RetailV2::GoogleLongrunningListOperationsResponse
|
|
@@ -2843,6 +2869,7 @@ module Google
|
|
|
2843
2869
|
command.query['filter'] = filter unless filter.nil?
|
|
2844
2870
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
2845
2871
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
2872
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
2846
2873
|
command.query['fields'] = fields unless fields.nil?
|
|
2847
2874
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
2848
2875
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-retail_v2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.124.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-retail_v2/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-retail_v2/v0.124.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-retail_v2
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|