google-apis-cloudfunctions_v1 0.20.0 → 0.23.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: 4e474154b0aa8856783f30b6bbd1a7cc1064a4036df2731e3a5a09bb2b34ed5d
4
+ data.tar.gz: de6dfebb9c98e0cda56783c66e6ecc93b0e5792676241858a3d99afc8b83f0c2
5
5
  SHA512:
6
- metadata.gz: 2a6e063050d0ac99fc10d21ed6005adfd0bcb61e197ea6346daa30e6f47760e80c5698f169807d14cd03f7dd5fbbcae4f4944d66046edd9ddc871f65935ad5fd
7
- data.tar.gz: e347235bd0e025d6713bba72cab8ddafc7f4e28523b229f8b8a4b5e06449aa79ea6b4b1fc10aaa26e51bbf87ee464dce0953895b75c38ebb6ccd8a2c34ece7ca
6
+ metadata.gz: 3d4f447760a6ce97a686c5e213d48144ff170a16706bd269dcf6b6e1531de80f570f96b433bef665893f9ab52b8fd150cdb1c8dbb32a338bc62ce692761579e6
7
+ data.tar.gz: ff54854bff521e04c616ba2ee3f48ffe97aa08c80f17df43c8140b44693a80b6696b772043e5b979a47022f05df28d51e88766f42089a52574e287a12111b822
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-cloudfunctions_v1
2
2
 
3
+ ### v0.23.0 (2022-05-07)
4
+
5
+ * Regenerated from discovery document revision 20220428
6
+
7
+ ### v0.22.0 (2022-04-22)
8
+
9
+ * Regenerated from discovery document revision 20220413
10
+
11
+ ### v0.21.0 (2022-04-09)
12
+
13
+ * Regenerated from discovery document revision 20220331
14
+
3
15
  ### v0.20.0 (2022-02-26)
4
16
 
5
17
  * Regenerated from discovery document revision 20220218
@@ -35,8 +35,8 @@ module Google
35
35
  # "audit_log_configs": [ ` "log_type": "DATA_READ" `, ` "log_type": "DATA_WRITE"
36
36
  # , "exempted_members": [ "user:aliya@example.com" ] ` ] ` ] ` For sampleservice,
37
37
  # this policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also
38
- # exempts jose@example.com from DATA_READ logging, and aliya@example.com from
39
- # DATA_WRITE logging.
38
+ # exempts `jose@example.com` from DATA_READ logging, and `aliya@example.com`
39
+ # from DATA_WRITE logging.
40
40
  class AuditConfig
41
41
  include Google::Apis::Core::Hashable
42
42
 
@@ -116,7 +116,7 @@ module Google
116
116
  # @return [Google::Apis::CloudfunctionsV1::Expr]
117
117
  attr_accessor :condition
118
118
 
119
- # Specifies the principals requesting access for a Cloud Platform resource. `
119
+ # Specifies the principals requesting access for a Google Cloud resource. `
120
120
  # members` can have the following values: * `allUsers`: A special identifier
121
121
  # that represents anyone who is on the internet; with or without a Google
122
122
  # account. * `allAuthenticatedUsers`: A special identifier that represents
@@ -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
 
@@ -1665,7 +1682,7 @@ module Google
1665
1682
  include Google::Apis::Core::Hashable
1666
1683
 
1667
1684
  # The set of permissions to check for the `resource`. Permissions with wildcards
1668
- # (such as '*' or 'storage.*') are not allowed. For more information see [IAM
1685
+ # (such as `*` or `storage.*`) are not allowed. For more information see [IAM
1669
1686
  # Overview](https://cloud.google.com/iam/docs/overview#permissions).
1670
1687
  # Corresponds to the JSON property `permissions`
1671
1688
  # @return [Array<String>]
@@ -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.23.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 = "20220428"
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.23.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-05-09 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.23.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: []