google-apis-cloudfunctions_v1 0.20.0 → 0.21.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: 15ddccbc63642f17170b0d7c7cdca56a32eb1191a083f4a9aac0463e17692b48
4
- data.tar.gz: 98088f2664e6f7d1ff543af96017bb1511c05933d53d1e6046e149977415321c
3
+ metadata.gz: cd955c6566370295487022dc7b47777a303b89b369c08ac572b6d4c99f7ad264
4
+ data.tar.gz: 26d9125470911731c7b06f1b3d720980f01e5d0f6a4d8bff29fffd417b7f52a2
5
5
  SHA512:
6
- metadata.gz: 2a6e063050d0ac99fc10d21ed6005adfd0bcb61e197ea6346daa30e6f47760e80c5698f169807d14cd03f7dd5fbbcae4f4944d66046edd9ddc871f65935ad5fd
7
- data.tar.gz: e347235bd0e025d6713bba72cab8ddafc7f4e28523b229f8b8a4b5e06449aa79ea6b4b1fc10aaa26e51bbf87ee464dce0953895b75c38ebb6ccd8a2c34ece7ca
6
+ metadata.gz: 3a9dac3bdd37df84bb42fdaef767f268f3c6a46ab7748a6331f239aceb37763fd7d48b980851e4d3e32e34cd167f658d533d65ca75035b7ec4691c53e368a6a6
7
+ data.tar.gz: fadbed4b5dc1ed0d0c25f92e9af377e92a5667ab756858811ccc3caf6c36d0871df8c81a35b2ae40003be99531ad2164de4943b3cc5568853e6efe8ef39e294e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudfunctions_v1
2
2
 
3
+ ### v0.21.0 (2022-04-09)
4
+
5
+ * Regenerated from discovery document revision 20220331
6
+
3
7
  ### v0.20.0 (2022-02-26)
4
8
 
5
9
  * Regenerated from discovery document revision 20220218
@@ -683,12 +683,29 @@ module Google
683
683
  class GenerateUploadUrlRequest
684
684
  include Google::Apis::Core::Hashable
685
685
 
686
+ # Resource name of a KMS crypto key (managed by the user) used to encrypt/
687
+ # decrypt function source code objects in staging Cloud Storage buckets. When
688
+ # you generate an upload url and upload your source code, it gets copied to a
689
+ # staging Cloud Storage bucket in an internal regional project. The source code
690
+ # is then copied to a versioned directory in the sources bucket in the consumer
691
+ # project during the function deployment. It must match the pattern `projects/`
692
+ # project`/locations/`location`/keyRings/`key_ring`/cryptoKeys/`crypto_key``.
693
+ # The Google Cloud Functions service account (service-`project_number`@gcf-admin-
694
+ # robot.iam.gserviceaccount.com) must be granted the role 'Cloud KMS CryptoKey
695
+ # Encrypter/Decrypter (roles/cloudkms.cryptoKeyEncrypterDecrypter)' on the Key/
696
+ # KeyRing/Project/Organization (least access preferred). GCF will delegate
697
+ # access to the Google Storage service account in the internal project.
698
+ # Corresponds to the JSON property `kmsKeyName`
699
+ # @return [String]
700
+ attr_accessor :kms_key_name
701
+
686
702
  def initialize(**args)
687
703
  update!(**args)
688
704
  end
689
705
 
690
706
  # Update properties of this object
691
707
  def update!(**args)
708
+ @kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name)
692
709
  end
693
710
  end
694
711
 
@@ -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.20.0"
19
+ GEM_VERSION = "0.21.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220218"
25
+ REVISION = "20220331"
26
26
  end
27
27
  end
28
28
  end
@@ -371,6 +371,7 @@ module Google
371
371
  class GenerateUploadUrlRequest
372
372
  # @private
373
373
  class Representation < Google::Apis::Core::JsonRepresentation
374
+ property :kms_key_name, as: 'kmsKeyName'
374
375
  end
375
376
  end
376
377
 
@@ -137,8 +137,8 @@ module Google
137
137
  # The resource that owns the locations collection, if applicable.
138
138
  # @param [String] filter
139
139
  # A filter to narrow down results to a preferred subset. The filtering language
140
- # accepts strings like "displayName=tokyo", and is documented in more detail in [
141
- # AIP-160](https://google.aip.dev/160).
140
+ # accepts strings like `"displayName=tokyo"`, and is documented in more detail
141
+ # in [AIP-160](https://google.aip.dev/160).
142
142
  # @param [Fixnum] page_size
143
143
  # The maximum number of results to return. If not set, the service selects a
144
144
  # default.
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.20.0
4
+ version: 0.21.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: 2022-02-28 00:00:00.000000000 Z
11
+ date: 2022-04-11 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.20.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v1/v0.21.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: []