google-apis-retail_v2 0.122.0 → 0.123.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: 607734c0537eb875dbfab65d7fc11fdb1569326b1d4c2a7854e0bc17192d3ff7
|
4
|
+
data.tar.gz: cf8c75af4d78df1362685d1e96765da86533787d0dc9b0cc59d4f464ad212529
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c8a2acf250a7d99f2e39a8b8e3c5991984bd2e1024a8b4daa41513eb08da5df0249800f75d36482cb28c3cd38def35ffd056227914b8dd8d42778b7e08fefe15
|
7
|
+
data.tar.gz: 780a5cbf7c6db7739c9b5c01ec4e7825b8f93a505d6e62c992f7597a017195030c9f0ac9a72cbde24fc30e52ac3b79f24ce4148cc9cb0471c6339311b0e3b8fe
|
data/CHANGELOG.md
CHANGED
@@ -9765,6 +9765,13 @@ 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 e.g.
|
9770
|
+
# when attempting to list all resources across all supported locations.
|
9771
|
+
# Corresponds to the JSON property `unreachable`
|
9772
|
+
# @return [Array<String>]
|
9773
|
+
attr_accessor :unreachable
|
9774
|
+
|
9768
9775
|
def initialize(**args)
|
9769
9776
|
update!(**args)
|
9770
9777
|
end
|
@@ -9773,6 +9780,7 @@ module Google
|
|
9773
9780
|
def update!(**args)
|
9774
9781
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
9775
9782
|
@operations = args[:operations] if args.key?(:operations)
|
9783
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
9776
9784
|
end
|
9777
9785
|
end
|
9778
9786
|
|
@@ -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.123.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 = "20251002"
|
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,13 @@ 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 e.
|
1989
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
1990
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
1991
|
+
# explicitly documented otherwise in service or product specific documentation.
|
1985
1992
|
# @param [String] fields
|
1986
1993
|
# Selector specifying which fields to include in a partial response.
|
1987
1994
|
# @param [String] quota_user
|
@@ -1999,7 +2006,7 @@ module Google
|
|
1999
2006
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2000
2007
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2001
2008
|
# @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)
|
2009
|
+
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
2010
|
command = make_simple_command(:get, 'v2/{+name}/operations', options)
|
2004
2011
|
command.response_representation = Google::Apis::RetailV2::GoogleLongrunningListOperationsResponse::Representation
|
2005
2012
|
command.response_class = Google::Apis::RetailV2::GoogleLongrunningListOperationsResponse
|
@@ -2007,6 +2014,7 @@ module Google
|
|
2007
2014
|
command.query['filter'] = filter unless filter.nil?
|
2008
2015
|
command.query['pageSize'] = page_size unless page_size.nil?
|
2009
2016
|
command.query['pageToken'] = page_token unless page_token.nil?
|
2017
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
2010
2018
|
command.query['fields'] = fields unless fields.nil?
|
2011
2019
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2012
2020
|
execute_or_queue_command(command, &block)
|
@@ -2747,6 +2755,13 @@ module Google
|
|
2747
2755
|
# The standard list page size.
|
2748
2756
|
# @param [String] page_token
|
2749
2757
|
# The standard list page token.
|
2758
|
+
# @param [Boolean] return_partial_success
|
2759
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
2760
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
2761
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
2762
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
2763
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
2764
|
+
# explicitly documented otherwise in service or product specific documentation.
|
2750
2765
|
# @param [String] fields
|
2751
2766
|
# Selector specifying which fields to include in a partial response.
|
2752
2767
|
# @param [String] quota_user
|
@@ -2764,7 +2779,7 @@ module Google
|
|
2764
2779
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2765
2780
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2766
2781
|
# @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)
|
2782
|
+
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
2783
|
command = make_simple_command(:get, 'v2/{+name}/operations', options)
|
2769
2784
|
command.response_representation = Google::Apis::RetailV2::GoogleLongrunningListOperationsResponse::Representation
|
2770
2785
|
command.response_class = Google::Apis::RetailV2::GoogleLongrunningListOperationsResponse
|
@@ -2772,6 +2787,7 @@ module Google
|
|
2772
2787
|
command.query['filter'] = filter unless filter.nil?
|
2773
2788
|
command.query['pageSize'] = page_size unless page_size.nil?
|
2774
2789
|
command.query['pageToken'] = page_token unless page_token.nil?
|
2790
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
2775
2791
|
command.query['fields'] = fields unless fields.nil?
|
2776
2792
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2777
2793
|
execute_or_queue_command(command, &block)
|
@@ -2818,6 +2834,13 @@ module Google
|
|
2818
2834
|
# The standard list page size.
|
2819
2835
|
# @param [String] page_token
|
2820
2836
|
# The standard list page token.
|
2837
|
+
# @param [Boolean] return_partial_success
|
2838
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
2839
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
2840
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
2841
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
2842
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
2843
|
+
# explicitly documented otherwise in service or product specific documentation.
|
2821
2844
|
# @param [String] fields
|
2822
2845
|
# Selector specifying which fields to include in a partial response.
|
2823
2846
|
# @param [String] quota_user
|
@@ -2835,7 +2858,7 @@ module Google
|
|
2835
2858
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2836
2859
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2837
2860
|
# @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)
|
2861
|
+
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
2862
|
command = make_simple_command(:get, 'v2/{+name}/operations', options)
|
2840
2863
|
command.response_representation = Google::Apis::RetailV2::GoogleLongrunningListOperationsResponse::Representation
|
2841
2864
|
command.response_class = Google::Apis::RetailV2::GoogleLongrunningListOperationsResponse
|
@@ -2843,6 +2866,7 @@ module Google
|
|
2843
2866
|
command.query['filter'] = filter unless filter.nil?
|
2844
2867
|
command.query['pageSize'] = page_size unless page_size.nil?
|
2845
2868
|
command.query['pageToken'] = page_token unless page_token.nil?
|
2869
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
2846
2870
|
command.query['fields'] = fields unless fields.nil?
|
2847
2871
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2848
2872
|
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.123.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.123.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:
|