google-apis-cloudfunctions_v2 0.9.0 → 0.11.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: a91d0981ccd47e9123a14e17e080787a0633c28da70d9f20c052623452da0a16
4
- data.tar.gz: b5bbcf7e726e2c80f23a8f9869437ea8f9e1a0afe41bb4b55548d133860762c8
3
+ metadata.gz: f84d3b87c0a9c9dc3ba3b740d2bc21517906f155497f6f5299656bfe299fa4aa
4
+ data.tar.gz: 005b8c7e246a66778b219513bc55a4430c9852760ff06b5ba92ae3fc0cc73c21
5
5
  SHA512:
6
- metadata.gz: 54b4af387ed7192be5534faa094af8de5816d22718d458c2acf0be81da3fd09f384f3ec8ee86f8748c4c2a56a52592476d998bf88eed5f5e44dc330e2b1cec24
7
- data.tar.gz: 874e6d371a8c341ca808885d54fcdc0602d0da4f10600106fe93c6c91a011be0b53e85799cba108026376326aa308925bd53043bcdf48eaef79f7bac979df082
6
+ metadata.gz: c021dc87c08941a669ad428233163c43f39cc1417e0607df319f99c85156e90c7f501e9b8ec49997858a0e7a2a873314b02e7131c7a8b6b90472bf638003d9ee
7
+ data.tar.gz: 90627555005a0093b728e988ee138005304c4b946f9ec0e46aab04a99e5ee85df0bd1919c263027dde06ba191e6f51d7f98f11dc351b71c54c1458668e551d06
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-cloudfunctions_v2
2
2
 
3
+ ### v0.11.0 (2022-11-04)
4
+
5
+ * Regenerated from discovery document revision 20221027
6
+
7
+ ### v0.10.0 (2022-10-28)
8
+
9
+ * Regenerated from discovery document revision 20221020
10
+ * Regenerated using generator version 0.11.0
11
+
3
12
  ### v0.9.0 (2022-10-02)
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::CloudfunctionsV2::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::CloudfunctionsV2::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 CloudfunctionsV2
18
18
  # Version of the google-apis-cloudfunctions_v2 gem
19
- GEM_VERSION = "0.9.0"
19
+ GEM_VERSION = "0.11.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::CloudfunctionsV2::SecretVolume, decorator: Google::Apis::CloudfunctionsV2::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_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.11.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-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_v2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v2/v0.9.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v2/v0.11.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudfunctions_v2
63
63
  post_install_message:
64
64
  rdoc_options: []