google-apis-cloudfunctions_v1 0.57.0 → 0.58.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: 71356f9473f199f0260acfb015bd02aa6ad8dfedcab04107a67c32563ba2e25c
4
- data.tar.gz: d7ab0f288181b8ba44cbfd7ba83756d591283116a6f7aaf0b0b41856b6cdd487
3
+ metadata.gz: c2a1cdc843b231401ccb05d190a92e133c40ee3c2cea8a12816101bab939c707
4
+ data.tar.gz: 24fa2ffd0177624d0c625c5b4ee665214a6ee807502e2506f750129b4e379ae0
5
5
  SHA512:
6
- metadata.gz: 5eac23585a9aa4ef8f2f1bfd453198699ff20e0eaf168f5277f090c007cc1d0130268e447aa2cbde01312effb3992f203c044414ae04463b00d7f5fc4029d7dd
7
- data.tar.gz: df9f72c47d66aec52916d130e99612987d999dd9932a75c0b477db2fb2a0446ebb9f561277d95191fb35fe7651953e1e6019d79c12d3d06e8ee768ad1af3c493
6
+ metadata.gz: 981847811f2a6e84222938105aeef7a1bf7379fe49768f0230427f560297c1f464d7e808c825fe1eb58489a16b91b5edb39eca1b96065820dbaaa9320222dfd6
7
+ data.tar.gz: 72e3e5782fb14ef2e4c9432c5681cbf54d3b8cabdf0e6a04a83651c38e32c931e6e0dd4165bd81add9b452190e517e3420575883d3d0886425281f793e8a3b6c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-cloudfunctions_v1
2
2
 
3
+ ### v0.58.0 (2024-12-02)
4
+
5
+ * Regenerated from discovery document revision 20240905
6
+ * Regenerated using generator version 0.15.1
7
+
3
8
  ### v0.57.0 (2024-07-25)
4
9
 
5
10
  * Regenerated from discovery document revision 20240711
@@ -293,7 +293,8 @@ module Google
293
293
  # @return [String]
294
294
  attr_accessor :build_name
295
295
 
296
- # Optional. A service account the user provides for use with Cloud Build.
296
+ # A service account the user provides for use with Cloud Build. The format of
297
+ # this field is `projects/`projectId`/serviceAccounts/`serviceAccountEmail``.
297
298
  # Corresponds to the JSON property `buildServiceAccount`
298
299
  # @return [String]
299
300
  attr_accessor :build_service_account
@@ -780,555 +781,6 @@ module Google
780
781
  end
781
782
  end
782
783
 
783
- # Extra GCF specific location information.
784
- class GoogleCloudFunctionsV2LocationMetadata
785
- include Google::Apis::Core::Hashable
786
-
787
- # The Cloud Function environments this location supports.
788
- # Corresponds to the JSON property `environments`
789
- # @return [Array<String>]
790
- attr_accessor :environments
791
-
792
- def initialize(**args)
793
- update!(**args)
794
- end
795
-
796
- # Update properties of this object
797
- def update!(**args)
798
- @environments = args[:environments] if args.key?(:environments)
799
- end
800
- end
801
-
802
- # Represents the metadata of the long-running operation.
803
- class GoogleCloudFunctionsV2OperationMetadata
804
- include Google::Apis::Core::Hashable
805
-
806
- # API version used to start the operation.
807
- # Corresponds to the JSON property `apiVersion`
808
- # @return [String]
809
- attr_accessor :api_version
810
-
811
- # Identifies whether the user has requested cancellation of the operation.
812
- # Operations that have successfully been cancelled have google.longrunning.
813
- # Operation.error value with a google.rpc.Status.code of 1, corresponding to `
814
- # Code.CANCELLED`.
815
- # Corresponds to the JSON property `cancelRequested`
816
- # @return [Boolean]
817
- attr_accessor :cancel_requested
818
- alias_method :cancel_requested?, :cancel_requested
819
-
820
- # The time the operation was created.
821
- # Corresponds to the JSON property `createTime`
822
- # @return [String]
823
- attr_accessor :create_time
824
-
825
- # The time the operation finished running.
826
- # Corresponds to the JSON property `endTime`
827
- # @return [String]
828
- attr_accessor :end_time
829
-
830
- # The operation type.
831
- # Corresponds to the JSON property `operationType`
832
- # @return [String]
833
- attr_accessor :operation_type
834
-
835
- # The original request that started the operation.
836
- # Corresponds to the JSON property `requestResource`
837
- # @return [Hash<String,Object>]
838
- attr_accessor :request_resource
839
-
840
- # An identifier for Firebase function sources. Disclaimer: This field is only
841
- # supported for Firebase function deployments.
842
- # Corresponds to the JSON property `sourceToken`
843
- # @return [String]
844
- attr_accessor :source_token
845
-
846
- # Mechanism for reporting in-progress stages
847
- # Corresponds to the JSON property `stages`
848
- # @return [Array<Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2Stage>]
849
- attr_accessor :stages
850
-
851
- # Human-readable status of the operation, if any.
852
- # Corresponds to the JSON property `statusDetail`
853
- # @return [String]
854
- attr_accessor :status_detail
855
-
856
- # Server-defined resource path for the target of the operation.
857
- # Corresponds to the JSON property `target`
858
- # @return [String]
859
- attr_accessor :target
860
-
861
- # Name of the verb executed by the operation.
862
- # Corresponds to the JSON property `verb`
863
- # @return [String]
864
- attr_accessor :verb
865
-
866
- def initialize(**args)
867
- update!(**args)
868
- end
869
-
870
- # Update properties of this object
871
- def update!(**args)
872
- @api_version = args[:api_version] if args.key?(:api_version)
873
- @cancel_requested = args[:cancel_requested] if args.key?(:cancel_requested)
874
- @create_time = args[:create_time] if args.key?(:create_time)
875
- @end_time = args[:end_time] if args.key?(:end_time)
876
- @operation_type = args[:operation_type] if args.key?(:operation_type)
877
- @request_resource = args[:request_resource] if args.key?(:request_resource)
878
- @source_token = args[:source_token] if args.key?(:source_token)
879
- @stages = args[:stages] if args.key?(:stages)
880
- @status_detail = args[:status_detail] if args.key?(:status_detail)
881
- @target = args[:target] if args.key?(:target)
882
- @verb = args[:verb] if args.key?(:verb)
883
- end
884
- end
885
-
886
- # Each Stage of the deployment process
887
- class GoogleCloudFunctionsV2Stage
888
- include Google::Apis::Core::Hashable
889
-
890
- # Message describing the Stage
891
- # Corresponds to the JSON property `message`
892
- # @return [String]
893
- attr_accessor :message
894
-
895
- # Name of the Stage. This will be unique for each Stage.
896
- # Corresponds to the JSON property `name`
897
- # @return [String]
898
- attr_accessor :name
899
-
900
- # Resource of the Stage
901
- # Corresponds to the JSON property `resource`
902
- # @return [String]
903
- attr_accessor :resource
904
-
905
- # Link to the current Stage resource
906
- # Corresponds to the JSON property `resourceUri`
907
- # @return [String]
908
- attr_accessor :resource_uri
909
-
910
- # Current state of the Stage
911
- # Corresponds to the JSON property `state`
912
- # @return [String]
913
- attr_accessor :state
914
-
915
- # State messages from the current Stage.
916
- # Corresponds to the JSON property `stateMessages`
917
- # @return [Array<Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2StateMessage>]
918
- attr_accessor :state_messages
919
-
920
- def initialize(**args)
921
- update!(**args)
922
- end
923
-
924
- # Update properties of this object
925
- def update!(**args)
926
- @message = args[:message] if args.key?(:message)
927
- @name = args[:name] if args.key?(:name)
928
- @resource = args[:resource] if args.key?(:resource)
929
- @resource_uri = args[:resource_uri] if args.key?(:resource_uri)
930
- @state = args[:state] if args.key?(:state)
931
- @state_messages = args[:state_messages] if args.key?(:state_messages)
932
- end
933
- end
934
-
935
- # Informational messages about the state of the Cloud Function or Operation.
936
- class GoogleCloudFunctionsV2StateMessage
937
- include Google::Apis::Core::Hashable
938
-
939
- # The message.
940
- # Corresponds to the JSON property `message`
941
- # @return [String]
942
- attr_accessor :message
943
-
944
- # Severity of the state message.
945
- # Corresponds to the JSON property `severity`
946
- # @return [String]
947
- attr_accessor :severity
948
-
949
- # One-word CamelCase type of the state message.
950
- # Corresponds to the JSON property `type`
951
- # @return [String]
952
- attr_accessor :type
953
-
954
- def initialize(**args)
955
- update!(**args)
956
- end
957
-
958
- # Update properties of this object
959
- def update!(**args)
960
- @message = args[:message] if args.key?(:message)
961
- @severity = args[:severity] if args.key?(:severity)
962
- @type = args[:type] if args.key?(:type)
963
- end
964
- end
965
-
966
- # Extra GCF specific location information.
967
- class GoogleCloudFunctionsV2alphaLocationMetadata
968
- include Google::Apis::Core::Hashable
969
-
970
- # The Cloud Function environments this location supports.
971
- # Corresponds to the JSON property `environments`
972
- # @return [Array<String>]
973
- attr_accessor :environments
974
-
975
- def initialize(**args)
976
- update!(**args)
977
- end
978
-
979
- # Update properties of this object
980
- def update!(**args)
981
- @environments = args[:environments] if args.key?(:environments)
982
- end
983
- end
984
-
985
- # Represents the metadata of the long-running operation.
986
- class GoogleCloudFunctionsV2alphaOperationMetadata
987
- include Google::Apis::Core::Hashable
988
-
989
- # API version used to start the operation.
990
- # Corresponds to the JSON property `apiVersion`
991
- # @return [String]
992
- attr_accessor :api_version
993
-
994
- # Identifies whether the user has requested cancellation of the operation.
995
- # Operations that have successfully been cancelled have google.longrunning.
996
- # Operation.error value with a google.rpc.Status.code of 1, corresponding to `
997
- # Code.CANCELLED`.
998
- # Corresponds to the JSON property `cancelRequested`
999
- # @return [Boolean]
1000
- attr_accessor :cancel_requested
1001
- alias_method :cancel_requested?, :cancel_requested
1002
-
1003
- # The time the operation was created.
1004
- # Corresponds to the JSON property `createTime`
1005
- # @return [String]
1006
- attr_accessor :create_time
1007
-
1008
- # The time the operation finished running.
1009
- # Corresponds to the JSON property `endTime`
1010
- # @return [String]
1011
- attr_accessor :end_time
1012
-
1013
- # The operation type.
1014
- # Corresponds to the JSON property `operationType`
1015
- # @return [String]
1016
- attr_accessor :operation_type
1017
-
1018
- # The original request that started the operation.
1019
- # Corresponds to the JSON property `requestResource`
1020
- # @return [Hash<String,Object>]
1021
- attr_accessor :request_resource
1022
-
1023
- # An identifier for Firebase function sources. Disclaimer: This field is only
1024
- # supported for Firebase function deployments.
1025
- # Corresponds to the JSON property `sourceToken`
1026
- # @return [String]
1027
- attr_accessor :source_token
1028
-
1029
- # Mechanism for reporting in-progress stages
1030
- # Corresponds to the JSON property `stages`
1031
- # @return [Array<Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2alphaStage>]
1032
- attr_accessor :stages
1033
-
1034
- # Human-readable status of the operation, if any.
1035
- # Corresponds to the JSON property `statusDetail`
1036
- # @return [String]
1037
- attr_accessor :status_detail
1038
-
1039
- # Server-defined resource path for the target of the operation.
1040
- # Corresponds to the JSON property `target`
1041
- # @return [String]
1042
- attr_accessor :target
1043
-
1044
- # Name of the verb executed by the operation.
1045
- # Corresponds to the JSON property `verb`
1046
- # @return [String]
1047
- attr_accessor :verb
1048
-
1049
- def initialize(**args)
1050
- update!(**args)
1051
- end
1052
-
1053
- # Update properties of this object
1054
- def update!(**args)
1055
- @api_version = args[:api_version] if args.key?(:api_version)
1056
- @cancel_requested = args[:cancel_requested] if args.key?(:cancel_requested)
1057
- @create_time = args[:create_time] if args.key?(:create_time)
1058
- @end_time = args[:end_time] if args.key?(:end_time)
1059
- @operation_type = args[:operation_type] if args.key?(:operation_type)
1060
- @request_resource = args[:request_resource] if args.key?(:request_resource)
1061
- @source_token = args[:source_token] if args.key?(:source_token)
1062
- @stages = args[:stages] if args.key?(:stages)
1063
- @status_detail = args[:status_detail] if args.key?(:status_detail)
1064
- @target = args[:target] if args.key?(:target)
1065
- @verb = args[:verb] if args.key?(:verb)
1066
- end
1067
- end
1068
-
1069
- # Each Stage of the deployment process
1070
- class GoogleCloudFunctionsV2alphaStage
1071
- include Google::Apis::Core::Hashable
1072
-
1073
- # Message describing the Stage
1074
- # Corresponds to the JSON property `message`
1075
- # @return [String]
1076
- attr_accessor :message
1077
-
1078
- # Name of the Stage. This will be unique for each Stage.
1079
- # Corresponds to the JSON property `name`
1080
- # @return [String]
1081
- attr_accessor :name
1082
-
1083
- # Resource of the Stage
1084
- # Corresponds to the JSON property `resource`
1085
- # @return [String]
1086
- attr_accessor :resource
1087
-
1088
- # Link to the current Stage resource
1089
- # Corresponds to the JSON property `resourceUri`
1090
- # @return [String]
1091
- attr_accessor :resource_uri
1092
-
1093
- # Current state of the Stage
1094
- # Corresponds to the JSON property `state`
1095
- # @return [String]
1096
- attr_accessor :state
1097
-
1098
- # State messages from the current Stage.
1099
- # Corresponds to the JSON property `stateMessages`
1100
- # @return [Array<Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2alphaStateMessage>]
1101
- attr_accessor :state_messages
1102
-
1103
- def initialize(**args)
1104
- update!(**args)
1105
- end
1106
-
1107
- # Update properties of this object
1108
- def update!(**args)
1109
- @message = args[:message] if args.key?(:message)
1110
- @name = args[:name] if args.key?(:name)
1111
- @resource = args[:resource] if args.key?(:resource)
1112
- @resource_uri = args[:resource_uri] if args.key?(:resource_uri)
1113
- @state = args[:state] if args.key?(:state)
1114
- @state_messages = args[:state_messages] if args.key?(:state_messages)
1115
- end
1116
- end
1117
-
1118
- # Informational messages about the state of the Cloud Function or Operation.
1119
- class GoogleCloudFunctionsV2alphaStateMessage
1120
- include Google::Apis::Core::Hashable
1121
-
1122
- # The message.
1123
- # Corresponds to the JSON property `message`
1124
- # @return [String]
1125
- attr_accessor :message
1126
-
1127
- # Severity of the state message.
1128
- # Corresponds to the JSON property `severity`
1129
- # @return [String]
1130
- attr_accessor :severity
1131
-
1132
- # One-word CamelCase type of the state message.
1133
- # Corresponds to the JSON property `type`
1134
- # @return [String]
1135
- attr_accessor :type
1136
-
1137
- def initialize(**args)
1138
- update!(**args)
1139
- end
1140
-
1141
- # Update properties of this object
1142
- def update!(**args)
1143
- @message = args[:message] if args.key?(:message)
1144
- @severity = args[:severity] if args.key?(:severity)
1145
- @type = args[:type] if args.key?(:type)
1146
- end
1147
- end
1148
-
1149
- # Extra GCF specific location information.
1150
- class GoogleCloudFunctionsV2betaLocationMetadata
1151
- include Google::Apis::Core::Hashable
1152
-
1153
- # The Cloud Function environments this location supports.
1154
- # Corresponds to the JSON property `environments`
1155
- # @return [Array<String>]
1156
- attr_accessor :environments
1157
-
1158
- def initialize(**args)
1159
- update!(**args)
1160
- end
1161
-
1162
- # Update properties of this object
1163
- def update!(**args)
1164
- @environments = args[:environments] if args.key?(:environments)
1165
- end
1166
- end
1167
-
1168
- # Represents the metadata of the long-running operation.
1169
- class GoogleCloudFunctionsV2betaOperationMetadata
1170
- include Google::Apis::Core::Hashable
1171
-
1172
- # API version used to start the operation.
1173
- # Corresponds to the JSON property `apiVersion`
1174
- # @return [String]
1175
- attr_accessor :api_version
1176
-
1177
- # Identifies whether the user has requested cancellation of the operation.
1178
- # Operations that have successfully been cancelled have google.longrunning.
1179
- # Operation.error value with a google.rpc.Status.code of 1, corresponding to `
1180
- # Code.CANCELLED`.
1181
- # Corresponds to the JSON property `cancelRequested`
1182
- # @return [Boolean]
1183
- attr_accessor :cancel_requested
1184
- alias_method :cancel_requested?, :cancel_requested
1185
-
1186
- # The time the operation was created.
1187
- # Corresponds to the JSON property `createTime`
1188
- # @return [String]
1189
- attr_accessor :create_time
1190
-
1191
- # The time the operation finished running.
1192
- # Corresponds to the JSON property `endTime`
1193
- # @return [String]
1194
- attr_accessor :end_time
1195
-
1196
- # The operation type.
1197
- # Corresponds to the JSON property `operationType`
1198
- # @return [String]
1199
- attr_accessor :operation_type
1200
-
1201
- # The original request that started the operation.
1202
- # Corresponds to the JSON property `requestResource`
1203
- # @return [Hash<String,Object>]
1204
- attr_accessor :request_resource
1205
-
1206
- # An identifier for Firebase function sources. Disclaimer: This field is only
1207
- # supported for Firebase function deployments.
1208
- # Corresponds to the JSON property `sourceToken`
1209
- # @return [String]
1210
- attr_accessor :source_token
1211
-
1212
- # Mechanism for reporting in-progress stages
1213
- # Corresponds to the JSON property `stages`
1214
- # @return [Array<Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2betaStage>]
1215
- attr_accessor :stages
1216
-
1217
- # Human-readable status of the operation, if any.
1218
- # Corresponds to the JSON property `statusDetail`
1219
- # @return [String]
1220
- attr_accessor :status_detail
1221
-
1222
- # Server-defined resource path for the target of the operation.
1223
- # Corresponds to the JSON property `target`
1224
- # @return [String]
1225
- attr_accessor :target
1226
-
1227
- # Name of the verb executed by the operation.
1228
- # Corresponds to the JSON property `verb`
1229
- # @return [String]
1230
- attr_accessor :verb
1231
-
1232
- def initialize(**args)
1233
- update!(**args)
1234
- end
1235
-
1236
- # Update properties of this object
1237
- def update!(**args)
1238
- @api_version = args[:api_version] if args.key?(:api_version)
1239
- @cancel_requested = args[:cancel_requested] if args.key?(:cancel_requested)
1240
- @create_time = args[:create_time] if args.key?(:create_time)
1241
- @end_time = args[:end_time] if args.key?(:end_time)
1242
- @operation_type = args[:operation_type] if args.key?(:operation_type)
1243
- @request_resource = args[:request_resource] if args.key?(:request_resource)
1244
- @source_token = args[:source_token] if args.key?(:source_token)
1245
- @stages = args[:stages] if args.key?(:stages)
1246
- @status_detail = args[:status_detail] if args.key?(:status_detail)
1247
- @target = args[:target] if args.key?(:target)
1248
- @verb = args[:verb] if args.key?(:verb)
1249
- end
1250
- end
1251
-
1252
- # Each Stage of the deployment process
1253
- class GoogleCloudFunctionsV2betaStage
1254
- include Google::Apis::Core::Hashable
1255
-
1256
- # Message describing the Stage
1257
- # Corresponds to the JSON property `message`
1258
- # @return [String]
1259
- attr_accessor :message
1260
-
1261
- # Name of the Stage. This will be unique for each Stage.
1262
- # Corresponds to the JSON property `name`
1263
- # @return [String]
1264
- attr_accessor :name
1265
-
1266
- # Resource of the Stage
1267
- # Corresponds to the JSON property `resource`
1268
- # @return [String]
1269
- attr_accessor :resource
1270
-
1271
- # Link to the current Stage resource
1272
- # Corresponds to the JSON property `resourceUri`
1273
- # @return [String]
1274
- attr_accessor :resource_uri
1275
-
1276
- # Current state of the Stage
1277
- # Corresponds to the JSON property `state`
1278
- # @return [String]
1279
- attr_accessor :state
1280
-
1281
- # State messages from the current Stage.
1282
- # Corresponds to the JSON property `stateMessages`
1283
- # @return [Array<Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2betaStateMessage>]
1284
- attr_accessor :state_messages
1285
-
1286
- def initialize(**args)
1287
- update!(**args)
1288
- end
1289
-
1290
- # Update properties of this object
1291
- def update!(**args)
1292
- @message = args[:message] if args.key?(:message)
1293
- @name = args[:name] if args.key?(:name)
1294
- @resource = args[:resource] if args.key?(:resource)
1295
- @resource_uri = args[:resource_uri] if args.key?(:resource_uri)
1296
- @state = args[:state] if args.key?(:state)
1297
- @state_messages = args[:state_messages] if args.key?(:state_messages)
1298
- end
1299
- end
1300
-
1301
- # Informational messages about the state of the Cloud Function or Operation.
1302
- class GoogleCloudFunctionsV2betaStateMessage
1303
- include Google::Apis::Core::Hashable
1304
-
1305
- # The message.
1306
- # Corresponds to the JSON property `message`
1307
- # @return [String]
1308
- attr_accessor :message
1309
-
1310
- # Severity of the state message.
1311
- # Corresponds to the JSON property `severity`
1312
- # @return [String]
1313
- attr_accessor :severity
1314
-
1315
- # One-word CamelCase type of the state message.
1316
- # Corresponds to the JSON property `type`
1317
- # @return [String]
1318
- attr_accessor :type
1319
-
1320
- def initialize(**args)
1321
- update!(**args)
1322
- end
1323
-
1324
- # Update properties of this object
1325
- def update!(**args)
1326
- @message = args[:message] if args.key?(:message)
1327
- @severity = args[:severity] if args.key?(:severity)
1328
- @type = args[:type] if args.key?(:type)
1329
- end
1330
- end
1331
-
1332
784
  # Describes HttpsTrigger, could be used to connect web hooks to function.
1333
785
  class HttpsTrigger
1334
786
  include Google::Apis::Core::Hashable
@@ -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.57.0"
19
+ GEM_VERSION = "0.58.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 = "20240711"
25
+ REVISION = "20240905"
26
26
  end
27
27
  end
28
28
  end
@@ -106,78 +106,6 @@ module Google
106
106
  include Google::Apis::Core::JsonObjectSupport
107
107
  end
108
108
 
109
- class GoogleCloudFunctionsV2LocationMetadata
110
- class Representation < Google::Apis::Core::JsonRepresentation; end
111
-
112
- include Google::Apis::Core::JsonObjectSupport
113
- end
114
-
115
- class GoogleCloudFunctionsV2OperationMetadata
116
- class Representation < Google::Apis::Core::JsonRepresentation; end
117
-
118
- include Google::Apis::Core::JsonObjectSupport
119
- end
120
-
121
- class GoogleCloudFunctionsV2Stage
122
- class Representation < Google::Apis::Core::JsonRepresentation; end
123
-
124
- include Google::Apis::Core::JsonObjectSupport
125
- end
126
-
127
- class GoogleCloudFunctionsV2StateMessage
128
- class Representation < Google::Apis::Core::JsonRepresentation; end
129
-
130
- include Google::Apis::Core::JsonObjectSupport
131
- end
132
-
133
- class GoogleCloudFunctionsV2alphaLocationMetadata
134
- class Representation < Google::Apis::Core::JsonRepresentation; end
135
-
136
- include Google::Apis::Core::JsonObjectSupport
137
- end
138
-
139
- class GoogleCloudFunctionsV2alphaOperationMetadata
140
- class Representation < Google::Apis::Core::JsonRepresentation; end
141
-
142
- include Google::Apis::Core::JsonObjectSupport
143
- end
144
-
145
- class GoogleCloudFunctionsV2alphaStage
146
- class Representation < Google::Apis::Core::JsonRepresentation; end
147
-
148
- include Google::Apis::Core::JsonObjectSupport
149
- end
150
-
151
- class GoogleCloudFunctionsV2alphaStateMessage
152
- class Representation < Google::Apis::Core::JsonRepresentation; end
153
-
154
- include Google::Apis::Core::JsonObjectSupport
155
- end
156
-
157
- class GoogleCloudFunctionsV2betaLocationMetadata
158
- class Representation < Google::Apis::Core::JsonRepresentation; end
159
-
160
- include Google::Apis::Core::JsonObjectSupport
161
- end
162
-
163
- class GoogleCloudFunctionsV2betaOperationMetadata
164
- class Representation < Google::Apis::Core::JsonRepresentation; end
165
-
166
- include Google::Apis::Core::JsonObjectSupport
167
- end
168
-
169
- class GoogleCloudFunctionsV2betaStage
170
- class Representation < Google::Apis::Core::JsonRepresentation; end
171
-
172
- include Google::Apis::Core::JsonObjectSupport
173
- end
174
-
175
- class GoogleCloudFunctionsV2betaStateMessage
176
- class Representation < Google::Apis::Core::JsonRepresentation; end
177
-
178
- include Google::Apis::Core::JsonObjectSupport
179
- end
180
-
181
109
  class HttpsTrigger
182
110
  class Representation < Google::Apis::Core::JsonRepresentation; end
183
111
 
@@ -441,147 +369,6 @@ module Google
441
369
  end
442
370
  end
443
371
 
444
- class GoogleCloudFunctionsV2LocationMetadata
445
- # @private
446
- class Representation < Google::Apis::Core::JsonRepresentation
447
- collection :environments, as: 'environments'
448
- end
449
- end
450
-
451
- class GoogleCloudFunctionsV2OperationMetadata
452
- # @private
453
- class Representation < Google::Apis::Core::JsonRepresentation
454
- property :api_version, as: 'apiVersion'
455
- property :cancel_requested, as: 'cancelRequested'
456
- property :create_time, as: 'createTime'
457
- property :end_time, as: 'endTime'
458
- property :operation_type, as: 'operationType'
459
- hash :request_resource, as: 'requestResource'
460
- property :source_token, as: 'sourceToken'
461
- collection :stages, as: 'stages', class: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2Stage, decorator: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2Stage::Representation
462
-
463
- property :status_detail, as: 'statusDetail'
464
- property :target, as: 'target'
465
- property :verb, as: 'verb'
466
- end
467
- end
468
-
469
- class GoogleCloudFunctionsV2Stage
470
- # @private
471
- class Representation < Google::Apis::Core::JsonRepresentation
472
- property :message, as: 'message'
473
- property :name, as: 'name'
474
- property :resource, as: 'resource'
475
- property :resource_uri, as: 'resourceUri'
476
- property :state, as: 'state'
477
- collection :state_messages, as: 'stateMessages', class: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2StateMessage, decorator: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2StateMessage::Representation
478
-
479
- end
480
- end
481
-
482
- class GoogleCloudFunctionsV2StateMessage
483
- # @private
484
- class Representation < Google::Apis::Core::JsonRepresentation
485
- property :message, as: 'message'
486
- property :severity, as: 'severity'
487
- property :type, as: 'type'
488
- end
489
- end
490
-
491
- class GoogleCloudFunctionsV2alphaLocationMetadata
492
- # @private
493
- class Representation < Google::Apis::Core::JsonRepresentation
494
- collection :environments, as: 'environments'
495
- end
496
- end
497
-
498
- class GoogleCloudFunctionsV2alphaOperationMetadata
499
- # @private
500
- class Representation < Google::Apis::Core::JsonRepresentation
501
- property :api_version, as: 'apiVersion'
502
- property :cancel_requested, as: 'cancelRequested'
503
- property :create_time, as: 'createTime'
504
- property :end_time, as: 'endTime'
505
- property :operation_type, as: 'operationType'
506
- hash :request_resource, as: 'requestResource'
507
- property :source_token, as: 'sourceToken'
508
- collection :stages, as: 'stages', class: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2alphaStage, decorator: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2alphaStage::Representation
509
-
510
- property :status_detail, as: 'statusDetail'
511
- property :target, as: 'target'
512
- property :verb, as: 'verb'
513
- end
514
- end
515
-
516
- class GoogleCloudFunctionsV2alphaStage
517
- # @private
518
- class Representation < Google::Apis::Core::JsonRepresentation
519
- property :message, as: 'message'
520
- property :name, as: 'name'
521
- property :resource, as: 'resource'
522
- property :resource_uri, as: 'resourceUri'
523
- property :state, as: 'state'
524
- collection :state_messages, as: 'stateMessages', class: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2alphaStateMessage, decorator: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2alphaStateMessage::Representation
525
-
526
- end
527
- end
528
-
529
- class GoogleCloudFunctionsV2alphaStateMessage
530
- # @private
531
- class Representation < Google::Apis::Core::JsonRepresentation
532
- property :message, as: 'message'
533
- property :severity, as: 'severity'
534
- property :type, as: 'type'
535
- end
536
- end
537
-
538
- class GoogleCloudFunctionsV2betaLocationMetadata
539
- # @private
540
- class Representation < Google::Apis::Core::JsonRepresentation
541
- collection :environments, as: 'environments'
542
- end
543
- end
544
-
545
- class GoogleCloudFunctionsV2betaOperationMetadata
546
- # @private
547
- class Representation < Google::Apis::Core::JsonRepresentation
548
- property :api_version, as: 'apiVersion'
549
- property :cancel_requested, as: 'cancelRequested'
550
- property :create_time, as: 'createTime'
551
- property :end_time, as: 'endTime'
552
- property :operation_type, as: 'operationType'
553
- hash :request_resource, as: 'requestResource'
554
- property :source_token, as: 'sourceToken'
555
- collection :stages, as: 'stages', class: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2betaStage, decorator: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2betaStage::Representation
556
-
557
- property :status_detail, as: 'statusDetail'
558
- property :target, as: 'target'
559
- property :verb, as: 'verb'
560
- end
561
- end
562
-
563
- class GoogleCloudFunctionsV2betaStage
564
- # @private
565
- class Representation < Google::Apis::Core::JsonRepresentation
566
- property :message, as: 'message'
567
- property :name, as: 'name'
568
- property :resource, as: 'resource'
569
- property :resource_uri, as: 'resourceUri'
570
- property :state, as: 'state'
571
- collection :state_messages, as: 'stateMessages', class: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2betaStateMessage, decorator: Google::Apis::CloudfunctionsV1::GoogleCloudFunctionsV2betaStateMessage::Representation
572
-
573
- end
574
- end
575
-
576
- class GoogleCloudFunctionsV2betaStateMessage
577
- # @private
578
- class Representation < Google::Apis::Core::JsonRepresentation
579
- property :message, as: 'message'
580
- property :severity, as: 'severity'
581
- property :type, as: 'type'
582
- end
583
- end
584
-
585
372
  class HttpsTrigger
586
373
  # @private
587
374
  class Representation < Google::Apis::Core::JsonRepresentation
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.57.0
4
+ version: 0.58.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-07-25 00:00:00.000000000 Z
11
+ date: 2024-12-04 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.57.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v1/v0.58.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.6
78
+ rubygems_version: 3.5.22
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Functions API V1