google-apis-cloudfunctions_v2beta 0.13.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: 13b06cfe5bb0a8eec82995b975020156c9afd9094b2dc120129864f282249762
4
- data.tar.gz: 52191e7a7821a0ec4c75d24dcfd8a438bfde064a74bbf25734061535ee9e5ace
3
+ metadata.gz: 1b955982992f9971c017725f08684e3b2cd6b0a3ace637a8f12b4e20f6f32e97
4
+ data.tar.gz: 3aa76540e32168a12b48320e71f369f09579af7f8d33d06e62ecdb06247faf66
5
5
  SHA512:
6
- metadata.gz: c807ff38a09bc0666d6927d1b52d8b1436379bdaabb165e55af9bf6b1cf80fb6022fbd78a377c403fe93682c7c52a142057648bbc104f7df9f37e1b43f2406f3
7
- data.tar.gz: 55ffbb3f7d986a834942d9f819595842775620560e7561ce3e532bd5abef6d52febb88865219515948e50fdf0721b8e98a139b419919527317ca63a5ace0d463
6
+ metadata.gz: eabeb0694119b55d48f58fef5cb646ef77868c76d6cab2b268bdcec86a1e775cc9741cf3ed20ba020d7ac1ef32259957a26f2d4bafa42876163376be0b990910
7
+ data.tar.gz: 87f55d77124ac6179490a28b20cb9e0a2b50b8dcd3180604875dc10aa55e44655b689a1bb742a86c6525d96d9076e46d9b8b368331263c94eba6f454a62a4740
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-cloudfunctions_v2beta
2
2
 
3
+ ### v0.15.0 (2022-11-01)
4
+
5
+ * Regenerated from discovery document revision 20221027
6
+
7
+ ### v0.14.0 (2022-10-27)
8
+
9
+ * Regenerated from discovery document revision 20221020
10
+ * Regenerated using generator version 0.11.0
11
+
3
12
  ### v0.13.0 (2022-09-21)
4
13
 
5
14
  * 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)
@@ -456,7 +473,7 @@ module Google
456
473
  attr_accessor :name
457
474
 
458
475
  # Describes the Service being deployed. Currently Supported : Cloud Run (fully
459
- # managed).
476
+ # managed). Next tag: 23
460
477
  # Corresponds to the JSON property `serviceConfig`
461
478
  # @return [Google::Apis::CloudfunctionsV2beta::ServiceConfig]
462
479
  attr_accessor :service_config
@@ -1618,7 +1635,7 @@ module Google
1618
1635
  end
1619
1636
 
1620
1637
  # Describes the Service being deployed. Currently Supported : Cloud Run (fully
1621
- # managed).
1638
+ # managed). Next tag: 23
1622
1639
  class ServiceConfig
1623
1640
  include Google::Apis::Core::Hashable
1624
1641
 
@@ -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.13.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 = "20221027"
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.13.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-09-26 00:00:00.000000000 Z
11
+ date: 2022-11-07 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_v2beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v2beta/v0.13.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v2beta/v0.15.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: []