google-apis-cloudfunctions_v2 0.42.0 → 0.44.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: a295f5863ea81ca7d1d28abf1d627cb885c6b8724ac06767a5268f29fbab7dbe
4
- data.tar.gz: c51e08aea42fdb1bc7f846f1c7308a84005adc21b6179791cbe5909fb5f9a7b4
3
+ metadata.gz: c9c955416492684af0f6342c699f18fb064ea53941f5d6e6b642143ca107edee
4
+ data.tar.gz: c76d2f24ba8edf9bbdc40b23f86e4d70ed7b0fafae53df3952edf052a7230f52
5
5
  SHA512:
6
- metadata.gz: d9d254677b85eed4b200356885f98eb61b5e8fa894b6eb5645dfa997948002bcf8d5a87ca8fee342944b3b018dfdf8a4c034cb54e7883bf79e07f337aac21929
7
- data.tar.gz: 1767631814b8e289a871d2d2ffceecb002157f81bae9c7810f1ca0ce98cbb81afa8d508a3abcdf1e836faaef651b6de48c28044274d535332daea99889e1ce1f
6
+ metadata.gz: e97bd19f4665cf938df5dd5f3554ad531a4195bc066683402be656eb9865c533cd380dd525eef66c39694c7aaed0d871ba56421dda16cd7fef7ac519b7bb9e4a
7
+ data.tar.gz: d65c8974e40655902aa87a48987c9cd381f9a4d5296e34e0e35c0eddb7aa019e4b1681ccdf9a24656f8d84cacd8e3682e741b05d7c755e4751744d5540fbf52d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-cloudfunctions_v2
2
2
 
3
+ ### v0.44.0 (2024-09-01)
4
+
5
+ * Regenerated from discovery document revision 20240822
6
+
7
+ ### v0.43.0 (2024-08-04)
8
+
9
+ * Regenerated from discovery document revision 20240725
10
+ * Regenerated using generator version 0.15.1
11
+
3
12
  ### v0.42.0 (2024-06-02)
4
13
 
5
14
  * Regenerated from discovery document revision 20240523
@@ -286,7 +286,8 @@ module Google
286
286
  # @return [String]
287
287
  attr_accessor :runtime
288
288
 
289
- # [Preview] Service account to be used for building the container
289
+ # Service account to be used for building the container. The format of this
290
+ # field is `projects/`projectId`/serviceAccounts/`serviceAccountEmail``.
290
291
  # Corresponds to the JSON property `serviceAccount`
291
292
  # @return [String]
292
293
  attr_accessor :service_account
@@ -602,9 +603,9 @@ module Google
602
603
  # @return [Google::Apis::CloudfunctionsV2::EventTrigger]
603
604
  attr_accessor :event_trigger
604
605
 
605
- # [Preview] Resource name of a KMS crypto key (managed by the user) used to
606
- # encrypt/decrypt function resources. It must match the pattern `projects/`
607
- # project`/locations/`location`/keyRings/`key_ring`/cryptoKeys/`crypto_key``.
606
+ # Resource name of a KMS crypto key (managed by the user) used to encrypt/
607
+ # decrypt function resources. It must match the pattern `projects/`project`/
608
+ # locations/`location`/keyRings/`key_ring`/cryptoKeys/`crypto_key``.
608
609
  # Corresponds to the JSON property `kmsKeyName`
609
610
  # @return [String]
610
611
  attr_accessor :kms_key_name
@@ -726,14 +727,14 @@ module Google
726
727
  # @return [String]
727
728
  attr_accessor :environment
728
729
 
729
- # [Preview] Resource name of a KMS crypto key (managed by the user) used to
730
- # encrypt/decrypt function source code objects in intermediate Cloud Storage
731
- # buckets. When you generate an upload url and upload your source code, it gets
732
- # copied to an intermediate Cloud Storage bucket. The source code is then copied
733
- # to a versioned directory in the sources bucket in the consumer project during
734
- # the function deployment. It must match the pattern `projects/`project`/
735
- # locations/`location`/keyRings/`key_ring`/cryptoKeys/`crypto_key``. The Google
736
- # Cloud Functions service account (service-`project_number`@gcf-admin-robot.iam.
730
+ # Resource name of a KMS crypto key (managed by the user) used to encrypt/
731
+ # decrypt function source code objects in intermediate Cloud Storage buckets.
732
+ # When you generate an upload url and upload your source code, it gets copied to
733
+ # an intermediate Cloud Storage bucket. The source code is then copied to a
734
+ # versioned directory in the sources bucket in the consumer project during the
735
+ # function deployment. It must match the pattern `projects/`project`/locations/`
736
+ # location`/keyRings/`key_ring`/cryptoKeys/`crypto_key``. The Google Cloud
737
+ # Functions service account (service-`project_number`@gcf-admin-robot.iam.
737
738
  # gserviceaccount.com) must be granted the role 'Cloud KMS CryptoKey Encrypter/
738
739
  # Decrypter (roles/cloudkms.cryptoKeyEncrypterDecrypter)' on the Key/KeyRing/
739
740
  # Project/Organization (least access preferred).
@@ -807,6 +808,11 @@ module Google
807
808
  # @return [String]
808
809
  attr_accessor :api_version
809
810
 
811
+ # The build name of the function for create and update operations.
812
+ # Corresponds to the JSON property `buildName`
813
+ # @return [String]
814
+ attr_accessor :build_name
815
+
810
816
  # Identifies whether the user has requested cancellation of the operation.
811
817
  # Operations that have successfully been cancelled have google.longrunning.
812
818
  # Operation.error value with a google.rpc.Status.code of 1, corresponding to `
@@ -869,6 +875,7 @@ module Google
869
875
  # Update properties of this object
870
876
  def update!(**args)
871
877
  @api_version = args[:api_version] if args.key?(:api_version)
878
+ @build_name = args[:build_name] if args.key?(:build_name)
872
879
  @cancel_requested = args[:cancel_requested] if args.key?(:cancel_requested)
873
880
  @create_time = args[:create_time] if args.key?(:create_time)
874
881
  @end_time = args[:end_time] if args.key?(:end_time)
@@ -990,6 +997,11 @@ module Google
990
997
  # @return [String]
991
998
  attr_accessor :api_version
992
999
 
1000
+ # The build name of the function for create and update operations.
1001
+ # Corresponds to the JSON property `buildName`
1002
+ # @return [String]
1003
+ attr_accessor :build_name
1004
+
993
1005
  # Identifies whether the user has requested cancellation of the operation.
994
1006
  # Operations that have successfully been cancelled have google.longrunning.
995
1007
  # Operation.error value with a google.rpc.Status.code of 1, corresponding to `
@@ -1052,6 +1064,7 @@ module Google
1052
1064
  # Update properties of this object
1053
1065
  def update!(**args)
1054
1066
  @api_version = args[:api_version] if args.key?(:api_version)
1067
+ @build_name = args[:build_name] if args.key?(:build_name)
1055
1068
  @cancel_requested = args[:cancel_requested] if args.key?(:cancel_requested)
1056
1069
  @create_time = args[:create_time] if args.key?(:create_time)
1057
1070
  @end_time = args[:end_time] if args.key?(:end_time)
@@ -1173,6 +1186,11 @@ module Google
1173
1186
  # @return [String]
1174
1187
  attr_accessor :api_version
1175
1188
 
1189
+ # The build name of the function for create and update operations.
1190
+ # Corresponds to the JSON property `buildName`
1191
+ # @return [String]
1192
+ attr_accessor :build_name
1193
+
1176
1194
  # Identifies whether the user has requested cancellation of the operation.
1177
1195
  # Operations that have successfully been cancelled have google.longrunning.
1178
1196
  # Operation.error value with a google.rpc.Status.code of 1, corresponding to `
@@ -1235,6 +1253,7 @@ module Google
1235
1253
  # Update properties of this object
1236
1254
  def update!(**args)
1237
1255
  @api_version = args[:api_version] if args.key?(:api_version)
1256
+ @build_name = args[:build_name] if args.key?(:build_name)
1238
1257
  @cancel_requested = args[:cancel_requested] if args.key?(:cancel_requested)
1239
1258
  @create_time = args[:create_time] if args.key?(:create_time)
1240
1259
  @end_time = args[:end_time] if args.key?(:end_time)
@@ -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.42.0"
19
+ GEM_VERSION = "0.44.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240523"
25
+ REVISION = "20240822"
26
26
  end
27
27
  end
28
28
  end
@@ -525,6 +525,7 @@ module Google
525
525
  # @private
526
526
  class Representation < Google::Apis::Core::JsonRepresentation
527
527
  property :api_version, as: 'apiVersion'
528
+ property :build_name, as: 'buildName'
528
529
  property :cancel_requested, as: 'cancelRequested'
529
530
  property :create_time, as: 'createTime'
530
531
  property :end_time, as: 'endTime'
@@ -572,6 +573,7 @@ module Google
572
573
  # @private
573
574
  class Representation < Google::Apis::Core::JsonRepresentation
574
575
  property :api_version, as: 'apiVersion'
576
+ property :build_name, as: 'buildName'
575
577
  property :cancel_requested, as: 'cancelRequested'
576
578
  property :create_time, as: 'createTime'
577
579
  property :end_time, as: 'endTime'
@@ -619,6 +621,7 @@ module Google
619
621
  # @private
620
622
  class Representation < Google::Apis::Core::JsonRepresentation
621
623
  property :api_version, as: 'apiVersion'
624
+ property :build_name, as: 'buildName'
622
625
  property :cancel_requested, as: 'cancelRequested'
623
626
  property :create_time, as: 'createTime'
624
627
  property :end_time, as: 'endTime'
@@ -463,8 +463,8 @@ module Google
463
463
  # and match pattern `projects/*/locations/*/functions/*`
464
464
  # @param [Google::Apis::CloudfunctionsV2::Function] function_object
465
465
  # @param [String] update_mask
466
- # The list of fields to be updated. If no field mask is provided, all provided
467
- # fields in the request will be updated.
466
+ # The list of fields to be updated. If no field mask is provided, all fields
467
+ # will be updated.
468
468
  # @param [String] fields
469
469
  # Selector specifying which fields to include in a partial response.
470
470
  # @param [String] quota_user
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.42.0
4
+ version: 0.44.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: 2024-06-02 00:00:00.000000000 Z
11
+ date: 2024-09-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -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.42.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v2/v0.44.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: []