google-apis-cloudfunctions_v1 0.19.0 → 0.22.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: 8740bf3a26c480445eec5cd2f25c007aa2393465fd861dc7ed8097b31fae5a4f
|
4
|
+
data.tar.gz: adbbca67b12c25860cac9db030b1a967f49612c8fe08d58c6be55e41fa865f03
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cf12707efd98dc714970392fc153637c96dccf6ed9dd44d35a66e6b2cf86c392a95120c6ee09a6c0ea0073bfcdd03e70122d861894c179643dda1ed6f66a1caa
|
7
|
+
data.tar.gz: ea9e7bc19fb42426b18a70bb81f6bfcc2751001d79ca0c1a861606371b9a773841bc6ffd2a63ced6b8f51a135b7a0ed9c34ada564c587d9f43a55b9de4c61c5e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release history for google-apis-cloudfunctions_v1
|
2
2
|
|
3
|
+
### v0.22.0 (2022-04-22)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220413
|
6
|
+
|
7
|
+
### v0.21.0 (2022-04-09)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220331
|
10
|
+
|
11
|
+
### v0.20.0 (2022-02-26)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220218
|
14
|
+
|
3
15
|
### v0.19.0 (2022-02-12)
|
4
16
|
|
5
17
|
* Regenerated from discovery document revision 20220203
|
@@ -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
|
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
|
@@ -217,7 +217,7 @@ module Google
|
|
217
217
|
end
|
218
218
|
|
219
219
|
# Describes a Cloud Function that contains user computation executed in response
|
220
|
-
# to an event. It encapsulate function and triggers configurations.
|
220
|
+
# to an event. It encapsulate function and triggers configurations.
|
221
221
|
class CloudFunction
|
222
222
|
include Google::Apis::Core::Hashable
|
223
223
|
|
@@ -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
|
|
@@ -1410,8 +1427,7 @@ module Google
|
|
1410
1427
|
|
1411
1428
|
# Configuration for a secret environment variable. It has the information
|
1412
1429
|
# necessary to fetch the secret value from secret manager and expose it as an
|
1413
|
-
# environment variable.
|
1414
|
-
# values are only fetched when a new clone starts.
|
1430
|
+
# environment variable.
|
1415
1431
|
class SecretEnvVar
|
1416
1432
|
include Google::Apis::Core::Hashable
|
1417
1433
|
|
@@ -1435,7 +1451,7 @@ module Google
|
|
1435
1451
|
|
1436
1452
|
# Version of the secret (version number or the string 'latest'). It is
|
1437
1453
|
# recommended to use a numeric version for secret environment variables as any
|
1438
|
-
# updates to the secret value is not reflected until new
|
1454
|
+
# updates to the secret value is not reflected until new instances start.
|
1439
1455
|
# Corresponds to the JSON property `version`
|
1440
1456
|
# @return [String]
|
1441
1457
|
attr_accessor :version
|
@@ -1666,7 +1682,7 @@ module Google
|
|
1666
1682
|
include Google::Apis::Core::Hashable
|
1667
1683
|
|
1668
1684
|
# The set of permissions to check for the `resource`. Permissions with wildcards
|
1669
|
-
# (such as
|
1685
|
+
# (such as `*` or `storage.*`) are not allowed. For more information see [IAM
|
1670
1686
|
# Overview](https://cloud.google.com/iam/docs/overview#permissions).
|
1671
1687
|
# Corresponds to the JSON property `permissions`
|
1672
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.
|
19
|
+
GEM_VERSION = "0.22.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 = "
|
25
|
+
REVISION = "20220413"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -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"
|
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.
|
4
|
+
version: 0.22.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-
|
11
|
+
date: 2022-04-25 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.22.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: []
|