google-apis-cloudfunctions_v1 0.63.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: 0e037528c1b2b0d3dae4ba51bfb7a47111fd7802d7a8c6c279c05d0e646dfe40
|
4
|
+
data.tar.gz: d96d61a73389cea0b329dfc3901308ac3e216b90ccfecf50f5cc04a51a616ca8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7bc79428178f65b5f144844a59b934672d5c8308d58d06751e6a78791a33c7d7af4771f36f6ed4e0de6f7f6a5e9ab05e771cc1f54c8fd49a0c7ee4024a928c2d
|
7
|
+
data.tar.gz: 5ea9248e2d1e04531ed3ee198aaec03c1419aa41dba9297de0cf92699d904759f79eff3d0fbc699d9896f8b458b0ffd075dc416eb4a7f6608cf77ecd31ced5a3
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-cloudfunctions_v1
|
2
2
|
|
3
|
+
### v0.65.0 (2025-10-05)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250929
|
6
|
+
|
7
|
+
### v0.64.0 (2025-09-14)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250908
|
10
|
+
|
3
11
|
### v0.63.0 (2025-08-24)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250814
|
@@ -897,6 +897,13 @@ module Google
|
|
897
897
|
# @return [Array<Google::Apis::CloudfunctionsV1::Operation>]
|
898
898
|
attr_accessor :operations
|
899
899
|
|
900
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
901
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
902
|
+
# when attempting to list all resources across all supported locations.
|
903
|
+
# Corresponds to the JSON property `unreachable`
|
904
|
+
# @return [Array<String>]
|
905
|
+
attr_accessor :unreachable
|
906
|
+
|
900
907
|
def initialize(**args)
|
901
908
|
update!(**args)
|
902
909
|
end
|
@@ -905,6 +912,7 @@ module Google
|
|
905
912
|
def update!(**args)
|
906
913
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
907
914
|
@operations = args[:operations] if args.key?(:operations)
|
915
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
908
916
|
end
|
909
917
|
end
|
910
918
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module CloudfunctionsV1
|
18
18
|
# Version of the google-apis-cloudfunctions_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
|
@@ -404,6 +404,7 @@ module Google
|
|
404
404
|
property :next_page_token, as: 'nextPageToken'
|
405
405
|
collection :operations, as: 'operations', class: Google::Apis::CloudfunctionsV1::Operation, decorator: Google::Apis::CloudfunctionsV1::Operation::Representation
|
406
406
|
|
407
|
+
collection :unreachable, as: 'unreachable'
|
407
408
|
end
|
408
409
|
end
|
409
410
|
|
@@ -92,6 +92,13 @@ module Google
|
|
92
92
|
# The standard list page size.
|
93
93
|
# @param [String] page_token
|
94
94
|
# The standard list page token.
|
95
|
+
# @param [Boolean] return_partial_success
|
96
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
97
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
98
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
99
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
100
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
101
|
+
# explicitly documented otherwise in service or product specific documentation.
|
95
102
|
# @param [String] fields
|
96
103
|
# Selector specifying which fields to include in a partial response.
|
97
104
|
# @param [String] quota_user
|
@@ -109,7 +116,7 @@ module Google
|
|
109
116
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
110
117
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
111
118
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
112
|
-
def list_operations(filter: nil, name: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
119
|
+
def list_operations(filter: nil, name: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
113
120
|
command = make_simple_command(:get, 'v1/operations', options)
|
114
121
|
command.response_representation = Google::Apis::CloudfunctionsV1::ListOperationsResponse::Representation
|
115
122
|
command.response_class = Google::Apis::CloudfunctionsV1::ListOperationsResponse
|
@@ -117,6 +124,7 @@ module Google
|
|
117
124
|
command.query['name'] = name unless name.nil?
|
118
125
|
command.query['pageSize'] = page_size unless page_size.nil?
|
119
126
|
command.query['pageToken'] = page_token unless page_token.nil?
|
127
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
120
128
|
command.query['fields'] = fields unless fields.nil?
|
121
129
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
122
130
|
execute_or_queue_command(command, &block)
|
@@ -126,8 +134,8 @@ module Google
|
|
126
134
|
# @param [String] name
|
127
135
|
# The resource that owns the locations collection, if applicable.
|
128
136
|
# @param [Array<String>, String] extra_location_types
|
129
|
-
# Optional.
|
130
|
-
#
|
137
|
+
# Optional. Unless explicitly documented otherwise, don't use this unsupported
|
138
|
+
# field which is primarily intended for internal usage.
|
131
139
|
# @param [String] filter
|
132
140
|
# A filter to narrow down results to a preferred subset. The filtering language
|
133
141
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-cloudfunctions_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-cloudfunctions_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v1/v0.65.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudfunctions_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|