google-apis-cloudchannel_v1 0.64.0 → 0.66.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: 127f0687cd43f708d3d6b2788b5ea9b32f459180d1a50e8c5dd7642ba759ac2a
|
|
4
|
+
data.tar.gz: b15e2025bb132cbb399c445a752fedab0e21641b2400f82e0952652b9d60cdc1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6dec6dddf8363195bb5b15e85faadf67ecea0d18f5650169a10e1af70833230820ba3f9fd6c679919e1e61918ffafea11ce07bd6d5e55fed2233b1dd7dc5d38b
|
|
7
|
+
data.tar.gz: 7e79a1ae326d03d86c2f209bc4beafa7f4c6f6b9ee37fc6ee5e6eb076c23cd7cf7121eaf663063d434498d31648b220e6ca2861ba6471d34aa3a210bfdce5b38
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-cloudchannel_v1
|
|
2
2
|
|
|
3
|
+
### v0.66.0 (2025-11-23)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251115
|
|
6
|
+
|
|
7
|
+
### v0.65.0 (2025-10-05)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20250929
|
|
10
|
+
|
|
3
11
|
### v0.64.0 (2025-08-17)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20250809
|
|
@@ -4756,6 +4756,14 @@ 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.
|
|
4761
|
+
# For example, when attempting to list all resources across all supported
|
|
4762
|
+
# locations.
|
|
4763
|
+
# Corresponds to the JSON property `unreachable`
|
|
4764
|
+
# @return [Array<String>]
|
|
4765
|
+
attr_accessor :unreachable
|
|
4766
|
+
|
|
4759
4767
|
def initialize(**args)
|
|
4760
4768
|
update!(**args)
|
|
4761
4769
|
end
|
|
@@ -4764,6 +4772,7 @@ module Google
|
|
|
4764
4772
|
def update!(**args)
|
|
4765
4773
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
4766
4774
|
@operations = args[:operations] if args.key?(:operations)
|
|
4775
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
|
4767
4776
|
end
|
|
4768
4777
|
end
|
|
4769
4778
|
|
|
@@ -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.66.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 = "20251115"
|
|
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,14 @@ 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.
|
|
2905
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
2906
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
2907
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
2908
|
+
# documentation.
|
|
2901
2909
|
# @param [String] fields
|
|
2902
2910
|
# Selector specifying which fields to include in a partial response.
|
|
2903
2911
|
# @param [String] quota_user
|
|
@@ -2915,7 +2923,7 @@ module Google
|
|
|
2915
2923
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
2916
2924
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
2917
2925
|
# @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)
|
|
2926
|
+
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
2927
|
command = make_simple_command(:get, 'v1/{+name}', options)
|
|
2920
2928
|
command.response_representation = Google::Apis::CloudchannelV1::GoogleLongrunningListOperationsResponse::Representation
|
|
2921
2929
|
command.response_class = Google::Apis::CloudchannelV1::GoogleLongrunningListOperationsResponse
|
|
@@ -2923,6 +2931,7 @@ module Google
|
|
|
2923
2931
|
command.query['filter'] = filter unless filter.nil?
|
|
2924
2932
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
2925
2933
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
2934
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
2926
2935
|
command.query['fields'] = fields unless fields.nil?
|
|
2927
2936
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
2928
2937
|
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.66.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.66.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:
|