google-apis-cloudchannel_v1 0.64.0 → 0.65.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: 67b7eece2ad9752cef4f7f469f4b7cc5b5d2f23922dcb129287f1954a3582dc9
|
4
|
+
data.tar.gz: 02d65ac8e313f90482058e8afdd7705b4353f85acbb5bd1c04dfaa959c277d83
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7edbb4c917bfeed6271d1899da96515985c8aa08a871382c5512d2b374dd5277fe4723b45734e1c96cbac34631c57fb2691764a2428d246d3326ac0fc41c3ae6
|
7
|
+
data.tar.gz: 7174d018de2b438e5f5c67b516a628a5d07fda6335248a8426f4841937dce5e994974e78d4ee53fa0b102f44912cfd9e16ae592a4814467902eeabe9fdd0f402
|
data/CHANGELOG.md
CHANGED
@@ -4756,6 +4756,13 @@ module Google
|
|
4756
4756
|
# @return [Array<Google::Apis::CloudchannelV1::GoogleLongrunningOperation>]
|
4757
4757
|
attr_accessor :operations
|
4758
4758
|
|
4759
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
4760
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
4761
|
+
# when attempting to list all resources across all supported locations.
|
4762
|
+
# Corresponds to the JSON property `unreachable`
|
4763
|
+
# @return [Array<String>]
|
4764
|
+
attr_accessor :unreachable
|
4765
|
+
|
4759
4766
|
def initialize(**args)
|
4760
4767
|
update!(**args)
|
4761
4768
|
end
|
@@ -4764,6 +4771,7 @@ module Google
|
|
4764
4771
|
def update!(**args)
|
4765
4772
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
4766
4773
|
@operations = args[:operations] if args.key?(:operations)
|
4774
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
4767
4775
|
end
|
4768
4776
|
end
|
4769
4777
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module CloudchannelV1
|
18
18
|
# Version of the google-apis-cloudchannel_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.65.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 = "20250929"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2214,6 +2214,7 @@ module Google
|
|
2214
2214
|
property :next_page_token, as: 'nextPageToken'
|
2215
2215
|
collection :operations, as: 'operations', class: Google::Apis::CloudchannelV1::GoogleLongrunningOperation, decorator: Google::Apis::CloudchannelV1::GoogleLongrunningOperation::Representation
|
2216
2216
|
|
2217
|
+
collection :unreachable, as: 'unreachable'
|
2217
2218
|
end
|
2218
2219
|
end
|
2219
2220
|
|
@@ -2898,6 +2898,13 @@ module Google
|
|
2898
2898
|
# The standard list page size.
|
2899
2899
|
# @param [String] page_token
|
2900
2900
|
# The standard list page token.
|
2901
|
+
# @param [Boolean] return_partial_success
|
2902
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
2903
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
2904
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
2905
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
2906
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
2907
|
+
# explicitly documented otherwise in service or product specific documentation.
|
2901
2908
|
# @param [String] fields
|
2902
2909
|
# Selector specifying which fields to include in a partial response.
|
2903
2910
|
# @param [String] quota_user
|
@@ -2915,7 +2922,7 @@ module Google
|
|
2915
2922
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2916
2923
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2917
2924
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2918
|
-
def list_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2925
|
+
def list_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2919
2926
|
command = make_simple_command(:get, 'v1/{+name}', options)
|
2920
2927
|
command.response_representation = Google::Apis::CloudchannelV1::GoogleLongrunningListOperationsResponse::Representation
|
2921
2928
|
command.response_class = Google::Apis::CloudchannelV1::GoogleLongrunningListOperationsResponse
|
@@ -2923,6 +2930,7 @@ module Google
|
|
2923
2930
|
command.query['filter'] = filter unless filter.nil?
|
2924
2931
|
command.query['pageSize'] = page_size unless page_size.nil?
|
2925
2932
|
command.query['pageToken'] = page_token unless page_token.nil?
|
2933
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
2926
2934
|
command.query['fields'] = fields unless fields.nil?
|
2927
2935
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2928
2936
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-cloudchannel_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.65.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-cloudchannel_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudchannel_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudchannel_v1/v0.65.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudchannel_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|