google-apis-cloudfunctions_v2beta 0.13.0 → 0.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1bc83a45221a0a2764080eaef2a6eb7b0968dda4883cd05b44bd88c98d5e4447
|
4
|
+
data.tar.gz: ed8c8e39e0577b8309bdf2b31054c3d84406ba777619fd0073207950b4b62918
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3fdf899b0cd5c804043a571ca14a0416b47fc84481b9d9b0c636e4cb8b3d08e46bdfb939352d1636918775f1aac86b994b427d75ecf87c6f39f437d94249e133
|
7
|
+
data.tar.gz: 3ebfbd9ed5708ffbd14b1851778d8deb1c51ec865bddda76f158da34093f603ee5ea5c4b26b5f6868bd18cdd080f9c1ece3795e0657f1d710e2843956c9c573e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-cloudfunctions_v2beta
|
2
2
|
|
3
|
+
### v0.14.0 (2022-10-27)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20221020
|
6
|
+
* Regenerated using generator version 0.11.0
|
7
|
+
|
3
8
|
### v0.13.0 (2022-09-21)
|
4
9
|
|
5
10
|
* Regenerated using generator version 0.10.0
|
@@ -180,14 +180,29 @@ module Google
|
|
180
180
|
# @return [String]
|
181
181
|
attr_accessor :build
|
182
182
|
|
183
|
-
#
|
184
|
-
#
|
185
|
-
#
|
186
|
-
|
187
|
-
|
188
|
-
#
|
189
|
-
#
|
190
|
-
#
|
183
|
+
# Specifies one of the Google provided buildpack stacks.
|
184
|
+
# Corresponds to the JSON property `buildpackStack`
|
185
|
+
# @return [String]
|
186
|
+
attr_accessor :buildpack_stack
|
187
|
+
|
188
|
+
# Optional. Docker Registry to use for this deployment. This configuration is
|
189
|
+
# only applicable to 1st Gen functions, 2nd Gen functions can only use Artifact
|
190
|
+
# Registry. If `docker_repository` field is specified, this field will be
|
191
|
+
# automatically set as `ARTIFACT_REGISTRY`. If unspecified, it currently
|
192
|
+
# defaults to `CONTAINER_REGISTRY`. This field may be overridden by the backend
|
193
|
+
# for eligible deployments.
|
194
|
+
# Corresponds to the JSON property `dockerRegistry`
|
195
|
+
# @return [String]
|
196
|
+
attr_accessor :docker_registry
|
197
|
+
|
198
|
+
# User managed repository created in Artifact Registry optionally with a
|
199
|
+
# customer managed encryption key. This is the repository to which the function
|
200
|
+
# docker image will be pushed after it is built by Cloud Build. If unspecified,
|
201
|
+
# GCF will create and use a repository named 'gcf-artifacts' for every deployed
|
202
|
+
# region. It must match the pattern `projects/`project`/locations/`location`/
|
203
|
+
# repositories/`repository``. Cross-project repositories are not supported.
|
204
|
+
# Cross-location repositories are not supported. Repository format must be '
|
205
|
+
# DOCKER'.
|
191
206
|
# Corresponds to the JSON property `dockerRepository`
|
192
207
|
# @return [String]
|
193
208
|
attr_accessor :docker_repository
|
@@ -244,6 +259,8 @@ module Google
|
|
244
259
|
# Update properties of this object
|
245
260
|
def update!(**args)
|
246
261
|
@build = args[:build] if args.key?(:build)
|
262
|
+
@buildpack_stack = args[:buildpack_stack] if args.key?(:buildpack_stack)
|
263
|
+
@docker_registry = args[:docker_registry] if args.key?(:docker_registry)
|
247
264
|
@docker_repository = args[:docker_repository] if args.key?(:docker_repository)
|
248
265
|
@entry_point = args[:entry_point] if args.key?(:entry_point)
|
249
266
|
@environment_variables = args[:environment_variables] if args.key?(:environment_variables)
|
@@ -1686,6 +1703,14 @@ module Google
|
|
1686
1703
|
# @return [Array<Google::Apis::CloudfunctionsV2beta::SecretVolume>]
|
1687
1704
|
attr_accessor :secret_volumes
|
1688
1705
|
|
1706
|
+
# Optional. Security level configure whether the function only accepts https.
|
1707
|
+
# This configuration is only applicable to 1st Gen functions with Http trigger.
|
1708
|
+
# By default https is optional for 1st Gen functions; 2nd Gen functions are
|
1709
|
+
# https ONLY.
|
1710
|
+
# Corresponds to the JSON property `securityLevel`
|
1711
|
+
# @return [String]
|
1712
|
+
attr_accessor :security_level
|
1713
|
+
|
1689
1714
|
# Output only. Name of the service associated with a Function. The format of
|
1690
1715
|
# this field is `projects/`project`/locations/`region`/services/`service``
|
1691
1716
|
# Corresponds to the JSON property `service`
|
@@ -1737,6 +1762,7 @@ module Google
|
|
1737
1762
|
@revision = args[:revision] if args.key?(:revision)
|
1738
1763
|
@secret_environment_variables = args[:secret_environment_variables] if args.key?(:secret_environment_variables)
|
1739
1764
|
@secret_volumes = args[:secret_volumes] if args.key?(:secret_volumes)
|
1765
|
+
@security_level = args[:security_level] if args.key?(:security_level)
|
1740
1766
|
@service = args[:service] if args.key?(:service)
|
1741
1767
|
@service_account_email = args[:service_account_email] if args.key?(:service_account_email)
|
1742
1768
|
@timeout_seconds = args[:timeout_seconds] if args.key?(:timeout_seconds)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module CloudfunctionsV2beta
|
18
18
|
# Version of the google-apis-cloudfunctions_v2beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.14.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.11.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20221020"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -305,6 +305,8 @@ module Google
|
|
305
305
|
# @private
|
306
306
|
class Representation < Google::Apis::Core::JsonRepresentation
|
307
307
|
property :build, as: 'build'
|
308
|
+
property :buildpack_stack, as: 'buildpackStack'
|
309
|
+
property :docker_registry, as: 'dockerRegistry'
|
308
310
|
property :docker_repository, as: 'dockerRepository'
|
309
311
|
property :entry_point, as: 'entryPoint'
|
310
312
|
hash :environment_variables, as: 'environmentVariables'
|
@@ -665,6 +667,7 @@ module Google
|
|
665
667
|
|
666
668
|
collection :secret_volumes, as: 'secretVolumes', class: Google::Apis::CloudfunctionsV2beta::SecretVolume, decorator: Google::Apis::CloudfunctionsV2beta::SecretVolume::Representation
|
667
669
|
|
670
|
+
property :security_level, as: 'securityLevel'
|
668
671
|
property :service, as: 'service'
|
669
672
|
property :service_account_email, as: 'serviceAccountEmail'
|
670
673
|
property :timeout_seconds, as: 'timeoutSeconds'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-cloudfunctions_v2beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.14.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-10-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.9.
|
19
|
+
version: 0.9.1
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.9.
|
29
|
+
version: 0.9.1
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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_v2beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v2beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v2beta/v0.14.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudfunctions_v2beta
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|