google-apis-cloudfunctions_v1 0.61.0 → 0.62.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: c73d166f586095e901b5f424014780c85af8ce1d96285be492cc97ad67fcaae3
4
- data.tar.gz: 7ad7f2123839301cb72cf425a4a90a28ab7fa1b454bbbcea8e24976bf0189783
3
+ metadata.gz: 207d863ed8ccc105ee763036eeea3bac136da45d6d4700acb4d16639f5b132ba
4
+ data.tar.gz: c68241cd78e4ec89165784598e0d2c1c5ec3f8447caec7129a45b9c39c90e575
5
5
  SHA512:
6
- metadata.gz: b442bd4d9a3c29d5887a96e375f0181fa3364298872c919af3552f43dd48df19991d37514d4111190cdffb38951dcc84155b476c4f1b570ba809f74d657d41a4
7
- data.tar.gz: 17e09bec22c723e382904c59b09b8f636921bfb3e40c8f5817dda4c691febd0edbe21d881d90e4703f2859aa9c9ba265895f7918f94f11c3e6cf693a16a560f5
6
+ metadata.gz: 2978b1484d52a3c957341eb6d5dc8a1d22e49d1d18e660f0c537d299a019424e902629dc4f37b6a29e16fff588237003e7dcaa3cc19136d22d038ddcc43eecbf
7
+ data.tar.gz: b9974ac85ea4f28cebd944f75956e650174b3431ec8b33c561ae299b458812bae4ed54458e2feed8b3a884537472533c522082fb6c4e500c61121e1ec3e778cc
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-cloudfunctions_v1
2
2
 
3
+ ### v0.62.0 (2025-05-11)
4
+
5
+ * Regenerated from discovery document revision 20250430
6
+ * Regenerated using generator version 0.17.0
7
+
3
8
  ### v0.61.0 (2025-03-30)
4
9
 
5
10
  * Regenerated from discovery document revision 20250320
data/OVERVIEW.md CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/functions) may provide guid
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 2.7+.
86
+ This library is supported on Ruby 3.1+.
87
87
 
88
88
  Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
@@ -316,12 +316,13 @@ module Google
316
316
  # @return [String]
317
317
  attr_accessor :description
318
318
 
319
- # Docker Registry to use for this deployment. Deprecated: Container Registry
320
- # option will no longer be available after March 2025: https://cloud.google.com/
321
- # artifact-registry/docs/transition/transition-from-gcr Please use Artifact
322
- # Registry instead, which is the default choice. If unspecified, it defaults to `
323
- # ARTIFACT_REGISTRY`. If `docker_repository` field is specified, this field
324
- # should either be left unspecified or set to `ARTIFACT_REGISTRY`.
319
+ # Docker Registry to use for this deployment. Deprecated: as of March 2025, `
320
+ # CONTAINER_REGISTRY` option is no longer available in response to Container
321
+ # Registry's deprecation: https://cloud.google.com/artifact-registry/docs/
322
+ # transition/transition-from-gcr Please use Artifact Registry instead, which is
323
+ # the default choice. If unspecified, it defaults to `ARTIFACT_REGISTRY`. If `
324
+ # docker_repository` field is specified, this field should either be left
325
+ # unspecified or set to `ARTIFACT_REGISTRY`.
325
326
  # Corresponds to the JSON property `dockerRegistry`
326
327
  # @return [String]
327
328
  attr_accessor :docker_registry
@@ -433,6 +434,18 @@ module Google
433
434
  # @return [String]
434
435
  attr_accessor :runtime
435
436
 
437
+ # Output only.
438
+ # Corresponds to the JSON property `satisfiesPzi`
439
+ # @return [Boolean]
440
+ attr_accessor :satisfies_pzi
441
+ alias_method :satisfies_pzi?, :satisfies_pzi
442
+
443
+ # Output only.
444
+ # Corresponds to the JSON property `satisfiesPzs`
445
+ # @return [Boolean]
446
+ attr_accessor :satisfies_pzs
447
+ alias_method :satisfies_pzs?, :satisfies_pzs
448
+
436
449
  # Secret environment variables configuration.
437
450
  # Corresponds to the JSON property `secretEnvironmentVariables`
438
451
  # @return [Array<Google::Apis::CloudfunctionsV1::SecretEnvVar>]
@@ -543,6 +556,8 @@ module Google
543
556
  @network = args[:network] if args.key?(:network)
544
557
  @on_deploy_update_policy = args[:on_deploy_update_policy] if args.key?(:on_deploy_update_policy)
545
558
  @runtime = args[:runtime] if args.key?(:runtime)
559
+ @satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
560
+ @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
546
561
  @secret_environment_variables = args[:secret_environment_variables] if args.key?(:secret_environment_variables)
547
562
  @secret_volumes = args[:secret_volumes] if args.key?(:secret_volumes)
548
563
  @service_account_email = args[:service_account_email] if args.key?(:service_account_email)
@@ -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.61.0"
19
+ GEM_VERSION = "0.62.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.16.0"
22
+ GENERATOR_VERSION = "0.17.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250320"
25
+ REVISION = "20250430"
26
26
  end
27
27
  end
28
28
  end
@@ -293,6 +293,8 @@ module Google
293
293
  property :on_deploy_update_policy, as: 'onDeployUpdatePolicy', class: Google::Apis::CloudfunctionsV1::OnDeployUpdatePolicy, decorator: Google::Apis::CloudfunctionsV1::OnDeployUpdatePolicy::Representation
294
294
 
295
295
  property :runtime, as: 'runtime'
296
+ property :satisfies_pzi, as: 'satisfiesPzi'
297
+ property :satisfies_pzs, as: 'satisfiesPzs'
296
298
  collection :secret_environment_variables, as: 'secretEnvironmentVariables', class: Google::Apis::CloudfunctionsV1::SecretEnvVar, decorator: Google::Apis::CloudfunctionsV1::SecretEnvVar::Representation
297
299
 
298
300
  collection :secret_volumes, as: 'secretVolumes', class: Google::Apis::CloudfunctionsV1::SecretVolume, decorator: Google::Apis::CloudfunctionsV1::SecretVolume::Representation
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudfunctions_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.61.0
4
+ version: 0.62.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-30 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudfunctions_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v1/v0.61.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v1/v0.62.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudfunctions_v1
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -66,14 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
66
66
  requirements:
67
67
  - - ">="
68
68
  - !ruby/object:Gem::Version
69
- version: '2.7'
69
+ version: '3.1'
70
70
  required_rubygems_version: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - ">="
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.5
76
+ rubygems_version: 3.6.8
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Cloud Functions API V1
79
79
  test_files: []