google-apis-cloudfunctions_v1 0.41.0 → 0.42.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: 93108f0e9d81e60e2876f4d480947861c0b0dececdf9914db64b9978cef94c91
4
- data.tar.gz: 9c18b435fa71a659d000189b7195e6f409155fa95c20a9f878ad3c667e3802a9
3
+ metadata.gz: b3b4f5edf0e09ae46c86f5582984bffac1997c6de4dbe6dc3ffdaea1cde3ef36
4
+ data.tar.gz: a952859c690c3f16882278c6c9ea3807b5713759d3922a44964d023f0e116302
5
5
  SHA512:
6
- metadata.gz: 6a2b16d1004f1bc1934b457b81c3891c9657573d4aa5af7a01943cce6c0e09c3bc8997ef58162818f21c446fd165f02fa989d3f6afc626f14737cb1e07a59903
7
- data.tar.gz: 70c95c5d1e999d5b3a64da857923267705ca736ddd17544d4f4dfc9afbc6dcf6acdc94dfd1c812dbf07d8270328b14678ba6e05a88b2863f663a664e71ae3e8b
6
+ metadata.gz: 9b7affe1c2e09ec268567f4f0ced89e6e96a2320eb02c865155a4ba85ba63f6b36f3592586221ab6cd7d9f87b6dac0ccae8aee7b3fffd6583137cab8d2111a07
7
+ data.tar.gz: a53dba3fe9a531d531e875c131011bbc610a44b71fc8be9bf90de0c663b82a99e20dc0cdf48bed045141615166ff600caf34a5b44a4a54629b324e2af9432fe7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudfunctions_v1
2
2
 
3
+ ### v0.42.0 (2023-07-23)
4
+
5
+ * Regenerated from discovery document revision 20230713
6
+
3
7
  ### v0.41.0 (2023-06-18)
4
8
 
5
9
  * Regenerated from discovery document revision 20230608
@@ -784,6 +784,12 @@ module Google
784
784
  # @return [Hash<String,Object>]
785
785
  attr_accessor :request_resource
786
786
 
787
+ # An identifier for Firebase function sources. Disclaimer: This field is only
788
+ # supported for Firebase function deployments.
789
+ # Corresponds to the JSON property `sourceToken`
790
+ # @return [String]
791
+ attr_accessor :source_token
792
+
787
793
  # Mechanism for reporting in-progress stages
788
794
  # Corresponds to the JSON property `stages`
789
795
  # @return [Array<Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2Stage>]
@@ -815,6 +821,7 @@ module Google
815
821
  @create_time = args[:create_time] if args.key?(:create_time)
816
822
  @end_time = args[:end_time] if args.key?(:end_time)
817
823
  @request_resource = args[:request_resource] if args.key?(:request_resource)
824
+ @source_token = args[:source_token] if args.key?(:source_token)
818
825
  @stages = args[:stages] if args.key?(:stages)
819
826
  @status_detail = args[:status_detail] if args.key?(:status_detail)
820
827
  @target = args[:target] if args.key?(:target)
@@ -954,6 +961,12 @@ module Google
954
961
  # @return [Hash<String,Object>]
955
962
  attr_accessor :request_resource
956
963
 
964
+ # An identifier for Firebase function sources. Disclaimer: This field is only
965
+ # supported for Firebase function deployments.
966
+ # Corresponds to the JSON property `sourceToken`
967
+ # @return [String]
968
+ attr_accessor :source_token
969
+
957
970
  # Mechanism for reporting in-progress stages
958
971
  # Corresponds to the JSON property `stages`
959
972
  # @return [Array<Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2alphaStage>]
@@ -985,6 +998,7 @@ module Google
985
998
  @create_time = args[:create_time] if args.key?(:create_time)
986
999
  @end_time = args[:end_time] if args.key?(:end_time)
987
1000
  @request_resource = args[:request_resource] if args.key?(:request_resource)
1001
+ @source_token = args[:source_token] if args.key?(:source_token)
988
1002
  @stages = args[:stages] if args.key?(:stages)
989
1003
  @status_detail = args[:status_detail] if args.key?(:status_detail)
990
1004
  @target = args[:target] if args.key?(:target)
@@ -1124,6 +1138,12 @@ module Google
1124
1138
  # @return [Hash<String,Object>]
1125
1139
  attr_accessor :request_resource
1126
1140
 
1141
+ # An identifier for Firebase function sources. Disclaimer: This field is only
1142
+ # supported for Firebase function deployments.
1143
+ # Corresponds to the JSON property `sourceToken`
1144
+ # @return [String]
1145
+ attr_accessor :source_token
1146
+
1127
1147
  # Mechanism for reporting in-progress stages
1128
1148
  # Corresponds to the JSON property `stages`
1129
1149
  # @return [Array<Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2betaStage>]
@@ -1155,6 +1175,7 @@ module Google
1155
1175
  @create_time = args[:create_time] if args.key?(:create_time)
1156
1176
  @end_time = args[:end_time] if args.key?(:end_time)
1157
1177
  @request_resource = args[:request_resource] if args.key?(:request_resource)
1178
+ @source_token = args[:source_token] if args.key?(:source_token)
1158
1179
  @stages = args[:stages] if args.key?(:stages)
1159
1180
  @status_detail = args[:status_detail] if args.key?(:status_detail)
1160
1181
  @target = args[:target] if args.key?(:target)
@@ -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.41.0"
19
+ GEM_VERSION = "0.42.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230608"
25
+ REVISION = "20230713"
26
26
  end
27
27
  end
28
28
  end
@@ -433,6 +433,7 @@ module Google
433
433
  property :create_time, as: 'createTime'
434
434
  property :end_time, as: 'endTime'
435
435
  hash :request_resource, as: 'requestResource'
436
+ property :source_token, as: 'sourceToken'
436
437
  collection :stages, as: 'stages', class: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2Stage, decorator: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2Stage::Representation
437
438
 
438
439
  property :status_detail, as: 'statusDetail'
@@ -478,6 +479,7 @@ module Google
478
479
  property :create_time, as: 'createTime'
479
480
  property :end_time, as: 'endTime'
480
481
  hash :request_resource, as: 'requestResource'
482
+ property :source_token, as: 'sourceToken'
481
483
  collection :stages, as: 'stages', class: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2alphaStage, decorator: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2alphaStage::Representation
482
484
 
483
485
  property :status_detail, as: 'statusDetail'
@@ -523,6 +525,7 @@ module Google
523
525
  property :create_time, as: 'createTime'
524
526
  property :end_time, as: 'endTime'
525
527
  hash :request_resource, as: 'requestResource'
528
+ property :source_token, as: 'sourceToken'
526
529
  collection :stages, as: 'stages', class: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2betaStage, decorator: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2betaStage::Representation
527
530
 
528
531
  property :status_detail, as: 'statusDetail'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudfunctions_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.41.0
4
+ version: 0.42.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: 2023-06-18 00:00:00.000000000 Z
11
+ date: 2023-07-23 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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v1/v0.41.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v1/v0.42.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudfunctions_v1
63
63
  post_install_message:
64
64
  rdoc_options: []