google-apis-cloudfunctions_v2alpha 0.14.0 → 0.15.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: 213ff14fdffda67e64244ede7414385443b8b03aaf2920f0f0bb52c21c3602bc
4
- data.tar.gz: a1445341e7b6511ab66b9c073d221e0e913a19d8aa2f00ee8ec1aa718b1a2426
3
+ metadata.gz: f169c3d15b52f7fc202faf7ea74ec0ffcf099fca9d5f0ddcc956cc3b8e47ff7c
4
+ data.tar.gz: b8260bf2e985967a1c7fbbc5390b36a98478e7ad54713c180ade8c328c10883e
5
5
  SHA512:
6
- metadata.gz: c24cb316d32236202dc76d9986d9342e98d706d7b8d31ae57d8d9b91c1997c69da3c1d426ab029665fa021d626c4a0a612be900ba8fd33d9449fa8a7bcd20b72
7
- data.tar.gz: 0a922ee63555a9f709b16157dbe948fff7db2c1e446d1e064358f1a66e3c07d2011f07cbc9c8f202d77dd4eea78f9f8f1f57705da37b02d882af795508dd4c42
6
+ metadata.gz: 36827b317684a55779f3b9684a9840d6f7002483c6f284a53b99c37f8b421a8d146c4d9a3bd911ff9cfc81ea304f4c8409e4fff99ff9458a7c98457a5fe416e4
7
+ data.tar.gz: 5e639a45d6ed8260c576a188eb845e4f0387ef5fa80104064fecc39aa991049d12110f26b8ce1eeb23f91b9fa5664c5c63f1eb8961f0f7d4937baa2e75cb6bef
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-cloudfunctions_v2alpha
2
2
 
3
+ ### v0.15.0 (2022-10-27)
4
+
5
+ * Regenerated from discovery document revision 20221020
6
+ * Regenerated using generator version 0.11.0
7
+
3
8
  ### v0.14.0 (2022-09-26)
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
- # Optional. User managed repository created in Artifact Registry optionally with
184
- # a customer managed encryption key. This is the repository to which the
185
- # function docker image will be pushed after it is built by Cloud Build. If
186
- # unspecified, GCF will create and use a repository named 'gcf-artifacts' for
187
- # every deployed region. It must match the pattern `projects/`project`/locations/
188
- # `location`/repositories/`repository``. Cross-project repositories are not
189
- # supported. Cross-location repositories are not supported. Repository format
190
- # must be 'DOCKER'.
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::CloudfunctionsV2alpha::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 CloudfunctionsV2alpha
18
18
  # Version of the google-apis-cloudfunctions_v2alpha gem
19
- GEM_VERSION = "0.14.0"
19
+ GEM_VERSION = "0.15.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.10.0"
22
+ GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220824"
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::CloudfunctionsV2alpha::SecretVolume, decorator: Google::Apis::CloudfunctionsV2alpha::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_v2alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.0
4
+ version: 0.15.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-10-03 00:00:00.000000000 Z
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.0
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.0
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_v2alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v2alpha/v0.14.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v2alpha/v0.15.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudfunctions_v2alpha
63
63
  post_install_message:
64
64
  rdoc_options: []