google-apis-cloudfunctions_v1 0.43.0 → 0.44.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: 1f7e91b58766c1b19fe2e011883af2127f0384643777b6728ac7d8f292fda583
4
- data.tar.gz: b538016953651366185bad9eac0ac9b39c9d893ef9a30e414bb3e3a350af7692
3
+ metadata.gz: d2b1aec5ae0deead58a9b7cb239381b1328f3b14c5742ea48a44053bde5112b5
4
+ data.tar.gz: 927613cb52ff15f0d2d7f74be668c430a34fab962f35e72c67b606d78a64b671
5
5
  SHA512:
6
- metadata.gz: 4f13b4495d38cf116c6ce09d19eaafa4f27be8b93205e470edbb48c716f56a157811121e1243370438087e417f93503acbcf5edc57e7977e224713f82ef84af7
7
- data.tar.gz: b582b026102a711e71d125f061c5f1f1c8021a0c2f25843d6539ec6a6100000f55f0409c4a7b18ade851d6909cb29fa4449cec480e8b5d1ccd264f7338078c49
6
+ metadata.gz: 6dfa665f59e71590e38c3ccb0d40e933d5dec91e132a4c0cd41a82d752c7bb6706c41c74d6db9fabad8cf5994a3aacd0653e364c379e7c87b5b89131857ddd5d
7
+ data.tar.gz: c30208f85a8112e5d68f494f50546c7947f75f58b9f9673aa45722acbb921f5c00ad1c4ddb17094081d176b1ba1f07e190ad3e90c13aca4b7dca28b3b912bc27
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudfunctions_v1
2
2
 
3
+ ### v0.44.0 (2023-10-22)
4
+
5
+ * Regenerated from discovery document revision 20231012
6
+
3
7
  ### v0.43.0 (2023-08-13)
4
8
 
5
9
  * Regenerated from discovery document revision 20230803
@@ -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.43.0"
19
+ GEM_VERSION = "0.44.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 = "20230803"
25
+ REVISION = "20231012"
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.43.0
4
+ version: 0.44.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-08-13 00:00:00.000000000 Z
11
+ date: 2023-10-29 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.43.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v1/v0.44.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.2
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