google-apis-cloudfunctions_v1 0.43.0 → 0.45.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bd6243147a4e93e6eec6f43f4c63ec200dd937f2e7e9d71a477934760d721664
|
4
|
+
data.tar.gz: 86f9bddf48e5a9ce14f3a7a878db53f833c102c5a15631eeec88d371b20d7cf3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed01bfa410a865bdff75a3024ccca077021f13b505b67637537c83c0f44a6745b16d8f9469229e70205e2d2475cc6d50b7602e4406726ebed13629496531f456
|
7
|
+
data.tar.gz: '048854963b1274e1a91f0128d27ce97c4556da34c17e113a108a21ad4d06c9f6aa2b04fd6699014c6776df73c261c0a5215d61b57293d8fcc5653be2176feb71'
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-cloudfunctions_v1
|
2
2
|
|
3
|
+
### v0.45.0 (2023-11-19)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20231109
|
6
|
+
|
7
|
+
### v0.44.0 (2023-10-22)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20231012
|
10
|
+
|
3
11
|
### v0.43.0 (2023-08-13)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230803
|
@@ -362,16 +362,7 @@ module Google
|
|
362
362
|
# @return [String]
|
363
363
|
attr_accessor :name
|
364
364
|
|
365
|
-
#
|
366
|
-
# fully-qualified URI, or the short name of the network resource. If the short
|
367
|
-
# network name is used, the network must belong to the same project. Otherwise,
|
368
|
-
# it must belong to a project within the same organization. The format of this
|
369
|
-
# field is either `projects/`project`/global/networks/`network`` or ``network``,
|
370
|
-
# where ``project`` is a project id where the network is defined, and ``network``
|
371
|
-
# is the short name of the network. This field is mutually exclusive with `
|
372
|
-
# vpc_connector` and will be replaced by it. See [the VPC documentation](https://
|
373
|
-
# cloud.google.com/compute/docs/vpc) for more information on connecting Cloud
|
374
|
-
# projects.
|
365
|
+
# Deprecated: use vpc_connector
|
375
366
|
# Corresponds to the JSON property `network`
|
376
367
|
# @return [String]
|
377
368
|
attr_accessor :network
|
@@ -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.45.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20231109"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -361,6 +361,13 @@ module Google
|
|
361
361
|
# Returns a function with the given name from the requested project.
|
362
362
|
# @param [String] name
|
363
363
|
# Required. The name of the function which details should be obtained.
|
364
|
+
# @param [Fixnum] version_id
|
365
|
+
# Optional. The optional version of the function whose details should be
|
366
|
+
# obtained. The version of a 1st Gen function is an integer that starts from 1
|
367
|
+
# and gets incremented on redeployments. Each deployment creates a config
|
368
|
+
# version of the underlying function. GCF may keep historical configs for old
|
369
|
+
# versions. This field can be specified to fetch the historical configs. Leave
|
370
|
+
# it blank or set to 0 to get the latest version of the function.
|
364
371
|
# @param [String] fields
|
365
372
|
# Selector specifying which fields to include in a partial response.
|
366
373
|
# @param [String] quota_user
|
@@ -378,11 +385,12 @@ module Google
|
|
378
385
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
379
386
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
380
387
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
381
|
-
def get_project_location_function(name, fields: nil, quota_user: nil, options: nil, &block)
|
388
|
+
def get_project_location_function(name, version_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
382
389
|
command = make_simple_command(:get, 'v1/{+name}', options)
|
383
390
|
command.response_representation = Google::Apis::CloudfunctionsV1::CloudFunction::Representation
|
384
391
|
command.response_class = Google::Apis::CloudfunctionsV1::CloudFunction
|
385
392
|
command.params['name'] = name unless name.nil?
|
393
|
+
command.query['versionId'] = version_id unless version_id.nil?
|
386
394
|
command.query['fields'] = fields unless fields.nil?
|
387
395
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
388
396
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.45.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-11-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudfunctions_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v1/v0.45.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudfunctions_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.4.
|
78
|
+
rubygems_version: 3.4.19
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Functions API V1
|