google-apis-cloudfunctions_v2beta 0.55.0 → 0.57.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/cloudfunctions_v2beta/classes.rb +74 -2
- data/lib/google/apis/cloudfunctions_v2beta/gem_version.rb +2 -2
- data/lib/google/apis/cloudfunctions_v2beta/representations.rb +42 -0
- data/lib/google/apis/cloudfunctions_v2beta/service.rb +42 -5
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ffd06138966125e93f5b56caec1f960b6bd50890e58f917fb0184502b12d90e0
|
|
4
|
+
data.tar.gz: dadb5438421b10c83b830321e74dd9849ac543dfad2ec495b213bde32ad2f609
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6ca976f727ac8d9776bbbb31e40c09b807ba0fe9524902938fae9dea9abe60e123f271ae6ff2fb45ccb0ca6c009f08aa5dd53756b78e400a7c1a5fd5db97cbd6
|
|
7
|
+
data.tar.gz: a4a7ee2dcc6bf37a54276b77805affa79f7f46c3490324aa956395f8c47e9340a1ed40cbe6f20a04471be4e6869f077b2bcf32f731364b1a2ff1c22119263e85
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-cloudfunctions_v2beta
|
|
2
2
|
|
|
3
|
+
### v0.57.0 (2026-01-11)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260101
|
|
6
|
+
|
|
7
|
+
### v0.56.0 (2025-12-14)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251204
|
|
10
|
+
|
|
3
11
|
### v0.55.0 (2025-11-02)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251023
|
|
@@ -344,6 +344,44 @@ module Google
|
|
|
344
344
|
end
|
|
345
345
|
end
|
|
346
346
|
|
|
347
|
+
# Contains overrides related to the function's build configuration.
|
|
348
|
+
class BuildConfigOverrides
|
|
349
|
+
include Google::Apis::Core::Hashable
|
|
350
|
+
|
|
351
|
+
# Optional. Specifies the desired runtime for the new Cloud Run function. (e.g.,
|
|
352
|
+
# `"nodejs20"`, `"python312"`). Constraints: 1. This field CANNOT be used to
|
|
353
|
+
# change the runtime language (e.g., from `NODEJS` to `PYTHON`). The backend
|
|
354
|
+
# will enforce this. 2. This field can ONLY be used to upgrade the runtime
|
|
355
|
+
# version (e.g., `nodejs18` to `nodejs20`). Downgrading the version is not
|
|
356
|
+
# permitted. The backend will validate the version change. If provided and valid,
|
|
357
|
+
# this overrides the runtime of the Gen1 function.
|
|
358
|
+
# Corresponds to the JSON property `runtime`
|
|
359
|
+
# @return [String]
|
|
360
|
+
attr_accessor :runtime
|
|
361
|
+
|
|
362
|
+
def initialize(**args)
|
|
363
|
+
update!(**args)
|
|
364
|
+
end
|
|
365
|
+
|
|
366
|
+
# Update properties of this object
|
|
367
|
+
def update!(**args)
|
|
368
|
+
@runtime = args[:runtime] if args.key?(:runtime)
|
|
369
|
+
end
|
|
370
|
+
end
|
|
371
|
+
|
|
372
|
+
# Request for the `CommitFunctionUpgradeAsGen2` method.
|
|
373
|
+
class CommitFunctionUpgradeAsGen2Request
|
|
374
|
+
include Google::Apis::Core::Hashable
|
|
375
|
+
|
|
376
|
+
def initialize(**args)
|
|
377
|
+
update!(**args)
|
|
378
|
+
end
|
|
379
|
+
|
|
380
|
+
# Update properties of this object
|
|
381
|
+
def update!(**args)
|
|
382
|
+
end
|
|
383
|
+
end
|
|
384
|
+
|
|
347
385
|
# Request for the `CommitFunctionUpgrade` method.
|
|
348
386
|
class CommitFunctionUpgradeRequest
|
|
349
387
|
include Google::Apis::Core::Hashable
|
|
@@ -1108,8 +1146,9 @@ module Google
|
|
|
1108
1146
|
attr_accessor :operations
|
|
1109
1147
|
|
|
1110
1148
|
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
1111
|
-
# ListOperationsRequest.return_partial_success` and reads across collections
|
|
1112
|
-
# when attempting to list all resources across all supported
|
|
1149
|
+
# ListOperationsRequest.return_partial_success` and reads across collections.
|
|
1150
|
+
# For example, when attempting to list all resources across all supported
|
|
1151
|
+
# locations.
|
|
1113
1152
|
# Corresponds to the JSON property `unreachable`
|
|
1114
1153
|
# @return [Array<String>]
|
|
1115
1154
|
attr_accessor :unreachable
|
|
@@ -1882,6 +1921,27 @@ module Google
|
|
|
1882
1921
|
end
|
|
1883
1922
|
end
|
|
1884
1923
|
|
|
1924
|
+
# Contains overrides related to the function's service configuration.
|
|
1925
|
+
class ServiceConfigOverrides
|
|
1926
|
+
include Google::Apis::Core::Hashable
|
|
1927
|
+
|
|
1928
|
+
# Optional. Specifies the maximum number of instances for the new Cloud Run
|
|
1929
|
+
# function. If provided, this overrides the max_instance_count setting of the
|
|
1930
|
+
# Gen1 function.
|
|
1931
|
+
# Corresponds to the JSON property `maxInstanceCount`
|
|
1932
|
+
# @return [Fixnum]
|
|
1933
|
+
attr_accessor :max_instance_count
|
|
1934
|
+
|
|
1935
|
+
def initialize(**args)
|
|
1936
|
+
update!(**args)
|
|
1937
|
+
end
|
|
1938
|
+
|
|
1939
|
+
# Update properties of this object
|
|
1940
|
+
def update!(**args)
|
|
1941
|
+
@max_instance_count = args[:max_instance_count] if args.key?(:max_instance_count)
|
|
1942
|
+
end
|
|
1943
|
+
end
|
|
1944
|
+
|
|
1885
1945
|
# Request message for `SetIamPolicy` method.
|
|
1886
1946
|
class SetIamPolicyRequest
|
|
1887
1947
|
include Google::Apis::Core::Hashable
|
|
@@ -1939,6 +1999,16 @@ module Google
|
|
|
1939
1999
|
class SetupFunctionUpgradeConfigRequest
|
|
1940
2000
|
include Google::Apis::Core::Hashable
|
|
1941
2001
|
|
|
2002
|
+
# Contains overrides related to the function's build configuration.
|
|
2003
|
+
# Corresponds to the JSON property `buildConfigOverrides`
|
|
2004
|
+
# @return [Google::Apis::CloudfunctionsV2beta::BuildConfigOverrides]
|
|
2005
|
+
attr_accessor :build_config_overrides
|
|
2006
|
+
|
|
2007
|
+
# Contains overrides related to the function's service configuration.
|
|
2008
|
+
# Corresponds to the JSON property `serviceConfigOverrides`
|
|
2009
|
+
# @return [Google::Apis::CloudfunctionsV2beta::ServiceConfigOverrides]
|
|
2010
|
+
attr_accessor :service_config_overrides
|
|
2011
|
+
|
|
1942
2012
|
# Optional. The trigger's service account. The service account must have
|
|
1943
2013
|
# permission to invoke Cloud Run services, the permission is `run.routes.invoke`.
|
|
1944
2014
|
# If empty, defaults to the Compute Engine default service account: ``
|
|
@@ -1953,6 +2023,8 @@ module Google
|
|
|
1953
2023
|
|
|
1954
2024
|
# Update properties of this object
|
|
1955
2025
|
def update!(**args)
|
|
2026
|
+
@build_config_overrides = args[:build_config_overrides] if args.key?(:build_config_overrides)
|
|
2027
|
+
@service_config_overrides = args[:service_config_overrides] if args.key?(:service_config_overrides)
|
|
1956
2028
|
@trigger_service_account = args[:trigger_service_account] if args.key?(:trigger_service_account)
|
|
1957
2029
|
end
|
|
1958
2030
|
end
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module CloudfunctionsV2beta
|
|
18
18
|
# Version of the google-apis-cloudfunctions_v2beta gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.57.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 = "20260101"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -58,6 +58,18 @@ module Google
|
|
|
58
58
|
include Google::Apis::Core::JsonObjectSupport
|
|
59
59
|
end
|
|
60
60
|
|
|
61
|
+
class BuildConfigOverrides
|
|
62
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
63
|
+
|
|
64
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
65
|
+
end
|
|
66
|
+
|
|
67
|
+
class CommitFunctionUpgradeAsGen2Request
|
|
68
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
69
|
+
|
|
70
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
71
|
+
end
|
|
72
|
+
|
|
61
73
|
class CommitFunctionUpgradeRequest
|
|
62
74
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
63
75
|
|
|
@@ -256,6 +268,12 @@ module Google
|
|
|
256
268
|
include Google::Apis::Core::JsonObjectSupport
|
|
257
269
|
end
|
|
258
270
|
|
|
271
|
+
class ServiceConfigOverrides
|
|
272
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
273
|
+
|
|
274
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
275
|
+
end
|
|
276
|
+
|
|
259
277
|
class SetIamPolicyRequest
|
|
260
278
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
261
279
|
|
|
@@ -372,6 +390,19 @@ module Google
|
|
|
372
390
|
end
|
|
373
391
|
end
|
|
374
392
|
|
|
393
|
+
class BuildConfigOverrides
|
|
394
|
+
# @private
|
|
395
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
396
|
+
property :runtime, as: 'runtime'
|
|
397
|
+
end
|
|
398
|
+
end
|
|
399
|
+
|
|
400
|
+
class CommitFunctionUpgradeAsGen2Request
|
|
401
|
+
# @private
|
|
402
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
403
|
+
end
|
|
404
|
+
end
|
|
405
|
+
|
|
375
406
|
class CommitFunctionUpgradeRequest
|
|
376
407
|
# @private
|
|
377
408
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -734,6 +765,13 @@ module Google
|
|
|
734
765
|
end
|
|
735
766
|
end
|
|
736
767
|
|
|
768
|
+
class ServiceConfigOverrides
|
|
769
|
+
# @private
|
|
770
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
771
|
+
property :max_instance_count, as: 'maxInstanceCount'
|
|
772
|
+
end
|
|
773
|
+
end
|
|
774
|
+
|
|
737
775
|
class SetIamPolicyRequest
|
|
738
776
|
# @private
|
|
739
777
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -746,6 +784,10 @@ module Google
|
|
|
746
784
|
class SetupFunctionUpgradeConfigRequest
|
|
747
785
|
# @private
|
|
748
786
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
787
|
+
property :build_config_overrides, as: 'buildConfigOverrides', class: Google::Apis::CloudfunctionsV2beta::BuildConfigOverrides, decorator: Google::Apis::CloudfunctionsV2beta::BuildConfigOverrides::Representation
|
|
788
|
+
|
|
789
|
+
property :service_config_overrides, as: 'serviceConfigOverrides', class: Google::Apis::CloudfunctionsV2beta::ServiceConfigOverrides, decorator: Google::Apis::CloudfunctionsV2beta::ServiceConfigOverrides::Representation
|
|
790
|
+
|
|
749
791
|
property :trigger_service_account, as: 'triggerServiceAccount'
|
|
750
792
|
end
|
|
751
793
|
end
|
|
@@ -168,6 +168,42 @@ module Google
|
|
|
168
168
|
execute_or_queue_command(command, &block)
|
|
169
169
|
end
|
|
170
170
|
|
|
171
|
+
# Commits a function upgrade from GCF Gen1 to GCF Gen2. This action deletes the
|
|
172
|
+
# Gen1 function, leaving the Gen2 function active and manageable by the GCFv2
|
|
173
|
+
# API.
|
|
174
|
+
# @param [String] name
|
|
175
|
+
# Required. The name of the function for which upgrade should be committed to
|
|
176
|
+
# Gen2.
|
|
177
|
+
# @param [Google::Apis::CloudfunctionsV2beta::CommitFunctionUpgradeAsGen2Request] commit_function_upgrade_as_gen2_request_object
|
|
178
|
+
# @param [String] fields
|
|
179
|
+
# Selector specifying which fields to include in a partial response.
|
|
180
|
+
# @param [String] quota_user
|
|
181
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
182
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
183
|
+
# @param [Google::Apis::RequestOptions] options
|
|
184
|
+
# Request-specific options
|
|
185
|
+
#
|
|
186
|
+
# @yield [result, err] Result & error if block supplied
|
|
187
|
+
# @yieldparam result [Google::Apis::CloudfunctionsV2beta::Operation] parsed result object
|
|
188
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
189
|
+
#
|
|
190
|
+
# @return [Google::Apis::CloudfunctionsV2beta::Operation]
|
|
191
|
+
#
|
|
192
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
193
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
194
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
195
|
+
def commit_function_upgrade_as_gen2(name, commit_function_upgrade_as_gen2_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
196
|
+
command = make_simple_command(:post, 'v2beta/{+name}:commitFunctionUpgradeAsGen2', options)
|
|
197
|
+
command.request_representation = Google::Apis::CloudfunctionsV2beta::CommitFunctionUpgradeAsGen2Request::Representation
|
|
198
|
+
command.request_object = commit_function_upgrade_as_gen2_request_object
|
|
199
|
+
command.response_representation = Google::Apis::CloudfunctionsV2beta::Operation::Representation
|
|
200
|
+
command.response_class = Google::Apis::CloudfunctionsV2beta::Operation
|
|
201
|
+
command.params['name'] = name unless name.nil?
|
|
202
|
+
command.query['fields'] = fields unless fields.nil?
|
|
203
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
204
|
+
execute_or_queue_command(command, &block)
|
|
205
|
+
end
|
|
206
|
+
|
|
171
207
|
# Creates a new function. If a function with the given name already exists in
|
|
172
208
|
# the specified project, the long running operation will return `ALREADY_EXISTS`
|
|
173
209
|
# error.
|
|
@@ -761,11 +797,12 @@ module Google
|
|
|
761
797
|
# The standard list page token.
|
|
762
798
|
# @param [Boolean] return_partial_success
|
|
763
799
|
# When set to `true`, operations that are reachable are returned as normal, and
|
|
764
|
-
# those that are unreachable are returned in the
|
|
765
|
-
# unreachable
|
|
766
|
-
#
|
|
767
|
-
# by default
|
|
768
|
-
# explicitly documented otherwise in service or product specific
|
|
800
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
801
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
802
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
803
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
804
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
805
|
+
# documentation.
|
|
769
806
|
# @param [String] fields
|
|
770
807
|
# Selector specifying which fields to include in a partial response.
|
|
771
808
|
# @param [String] quota_user
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-cloudfunctions_v2beta
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.57.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_v2beta/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v2beta/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v2beta/v0.57.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudfunctions_v2beta
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|