google-apis-cloudfunctions_v2 0.44.0 → 0.45.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d7ea25076c452b6f7475af2bc4ceec55f4cb0ec0564e55dfb087301c915f1e49
|
4
|
+
data.tar.gz: bff74cf907531df9a9c10f9b6e9c8bbab05742bbbf100e63687a748f01019d32
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ab2d40915fd01abbc00bf7e66e0367deb1ccb153513060e27c91ebd61695a49b87c0fd0cb095c61d510745239500b89755ae6c33edda5fe840c520685ac0296c
|
7
|
+
data.tar.gz: 18b60238f3cac96fe1aac531def75eaf5acd591a6c84c5e47e51b25bf161b35f965e8b50bc799c9d1c87573fb791ca1b452615e27cee24fcc3cbce5d87445c4d
|
data/CHANGELOG.md
CHANGED
@@ -969,384 +969,6 @@ module Google
|
|
969
969
|
end
|
970
970
|
end
|
971
971
|
|
972
|
-
# Extra GCF specific location information.
|
973
|
-
class GoogleCloudFunctionsV2alphaLocationMetadata
|
974
|
-
include Google::Apis::Core::Hashable
|
975
|
-
|
976
|
-
# The Cloud Function environments this location supports.
|
977
|
-
# Corresponds to the JSON property `environments`
|
978
|
-
# @return [Array<String>]
|
979
|
-
attr_accessor :environments
|
980
|
-
|
981
|
-
def initialize(**args)
|
982
|
-
update!(**args)
|
983
|
-
end
|
984
|
-
|
985
|
-
# Update properties of this object
|
986
|
-
def update!(**args)
|
987
|
-
@environments = args[:environments] if args.key?(:environments)
|
988
|
-
end
|
989
|
-
end
|
990
|
-
|
991
|
-
# Represents the metadata of the long-running operation.
|
992
|
-
class GoogleCloudFunctionsV2alphaOperationMetadata
|
993
|
-
include Google::Apis::Core::Hashable
|
994
|
-
|
995
|
-
# API version used to start the operation.
|
996
|
-
# Corresponds to the JSON property `apiVersion`
|
997
|
-
# @return [String]
|
998
|
-
attr_accessor :api_version
|
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
|
-
|
1005
|
-
# Identifies whether the user has requested cancellation of the operation.
|
1006
|
-
# Operations that have successfully been cancelled have google.longrunning.
|
1007
|
-
# Operation.error value with a google.rpc.Status.code of 1, corresponding to `
|
1008
|
-
# Code.CANCELLED`.
|
1009
|
-
# Corresponds to the JSON property `cancelRequested`
|
1010
|
-
# @return [Boolean]
|
1011
|
-
attr_accessor :cancel_requested
|
1012
|
-
alias_method :cancel_requested?, :cancel_requested
|
1013
|
-
|
1014
|
-
# The time the operation was created.
|
1015
|
-
# Corresponds to the JSON property `createTime`
|
1016
|
-
# @return [String]
|
1017
|
-
attr_accessor :create_time
|
1018
|
-
|
1019
|
-
# The time the operation finished running.
|
1020
|
-
# Corresponds to the JSON property `endTime`
|
1021
|
-
# @return [String]
|
1022
|
-
attr_accessor :end_time
|
1023
|
-
|
1024
|
-
# The operation type.
|
1025
|
-
# Corresponds to the JSON property `operationType`
|
1026
|
-
# @return [String]
|
1027
|
-
attr_accessor :operation_type
|
1028
|
-
|
1029
|
-
# The original request that started the operation.
|
1030
|
-
# Corresponds to the JSON property `requestResource`
|
1031
|
-
# @return [Hash<String,Object>]
|
1032
|
-
attr_accessor :request_resource
|
1033
|
-
|
1034
|
-
# An identifier for Firebase function sources. Disclaimer: This field is only
|
1035
|
-
# supported for Firebase function deployments.
|
1036
|
-
# Corresponds to the JSON property `sourceToken`
|
1037
|
-
# @return [String]
|
1038
|
-
attr_accessor :source_token
|
1039
|
-
|
1040
|
-
# Mechanism for reporting in-progress stages
|
1041
|
-
# Corresponds to the JSON property `stages`
|
1042
|
-
# @return [Array<Google::Apis::CloudfunctionsV2::GoogleCloudFunctionsV2alphaStage>]
|
1043
|
-
attr_accessor :stages
|
1044
|
-
|
1045
|
-
# Human-readable status of the operation, if any.
|
1046
|
-
# Corresponds to the JSON property `statusDetail`
|
1047
|
-
# @return [String]
|
1048
|
-
attr_accessor :status_detail
|
1049
|
-
|
1050
|
-
# Server-defined resource path for the target of the operation.
|
1051
|
-
# Corresponds to the JSON property `target`
|
1052
|
-
# @return [String]
|
1053
|
-
attr_accessor :target
|
1054
|
-
|
1055
|
-
# Name of the verb executed by the operation.
|
1056
|
-
# Corresponds to the JSON property `verb`
|
1057
|
-
# @return [String]
|
1058
|
-
attr_accessor :verb
|
1059
|
-
|
1060
|
-
def initialize(**args)
|
1061
|
-
update!(**args)
|
1062
|
-
end
|
1063
|
-
|
1064
|
-
# Update properties of this object
|
1065
|
-
def update!(**args)
|
1066
|
-
@api_version = args[:api_version] if args.key?(:api_version)
|
1067
|
-
@build_name = args[:build_name] if args.key?(:build_name)
|
1068
|
-
@cancel_requested = args[:cancel_requested] if args.key?(:cancel_requested)
|
1069
|
-
@create_time = args[:create_time] if args.key?(:create_time)
|
1070
|
-
@end_time = args[:end_time] if args.key?(:end_time)
|
1071
|
-
@operation_type = args[:operation_type] if args.key?(:operation_type)
|
1072
|
-
@request_resource = args[:request_resource] if args.key?(:request_resource)
|
1073
|
-
@source_token = args[:source_token] if args.key?(:source_token)
|
1074
|
-
@stages = args[:stages] if args.key?(:stages)
|
1075
|
-
@status_detail = args[:status_detail] if args.key?(:status_detail)
|
1076
|
-
@target = args[:target] if args.key?(:target)
|
1077
|
-
@verb = args[:verb] if args.key?(:verb)
|
1078
|
-
end
|
1079
|
-
end
|
1080
|
-
|
1081
|
-
# Each Stage of the deployment process
|
1082
|
-
class GoogleCloudFunctionsV2alphaStage
|
1083
|
-
include Google::Apis::Core::Hashable
|
1084
|
-
|
1085
|
-
# Message describing the Stage
|
1086
|
-
# Corresponds to the JSON property `message`
|
1087
|
-
# @return [String]
|
1088
|
-
attr_accessor :message
|
1089
|
-
|
1090
|
-
# Name of the Stage. This will be unique for each Stage.
|
1091
|
-
# Corresponds to the JSON property `name`
|
1092
|
-
# @return [String]
|
1093
|
-
attr_accessor :name
|
1094
|
-
|
1095
|
-
# Resource of the Stage
|
1096
|
-
# Corresponds to the JSON property `resource`
|
1097
|
-
# @return [String]
|
1098
|
-
attr_accessor :resource
|
1099
|
-
|
1100
|
-
# Link to the current Stage resource
|
1101
|
-
# Corresponds to the JSON property `resourceUri`
|
1102
|
-
# @return [String]
|
1103
|
-
attr_accessor :resource_uri
|
1104
|
-
|
1105
|
-
# Current state of the Stage
|
1106
|
-
# Corresponds to the JSON property `state`
|
1107
|
-
# @return [String]
|
1108
|
-
attr_accessor :state
|
1109
|
-
|
1110
|
-
# State messages from the current Stage.
|
1111
|
-
# Corresponds to the JSON property `stateMessages`
|
1112
|
-
# @return [Array<Google::Apis::CloudfunctionsV2::GoogleCloudFunctionsV2alphaStateMessage>]
|
1113
|
-
attr_accessor :state_messages
|
1114
|
-
|
1115
|
-
def initialize(**args)
|
1116
|
-
update!(**args)
|
1117
|
-
end
|
1118
|
-
|
1119
|
-
# Update properties of this object
|
1120
|
-
def update!(**args)
|
1121
|
-
@message = args[:message] if args.key?(:message)
|
1122
|
-
@name = args[:name] if args.key?(:name)
|
1123
|
-
@resource = args[:resource] if args.key?(:resource)
|
1124
|
-
@resource_uri = args[:resource_uri] if args.key?(:resource_uri)
|
1125
|
-
@state = args[:state] if args.key?(:state)
|
1126
|
-
@state_messages = args[:state_messages] if args.key?(:state_messages)
|
1127
|
-
end
|
1128
|
-
end
|
1129
|
-
|
1130
|
-
# Informational messages about the state of the Cloud Function or Operation.
|
1131
|
-
class GoogleCloudFunctionsV2alphaStateMessage
|
1132
|
-
include Google::Apis::Core::Hashable
|
1133
|
-
|
1134
|
-
# The message.
|
1135
|
-
# Corresponds to the JSON property `message`
|
1136
|
-
# @return [String]
|
1137
|
-
attr_accessor :message
|
1138
|
-
|
1139
|
-
# Severity of the state message.
|
1140
|
-
# Corresponds to the JSON property `severity`
|
1141
|
-
# @return [String]
|
1142
|
-
attr_accessor :severity
|
1143
|
-
|
1144
|
-
# One-word CamelCase type of the state message.
|
1145
|
-
# Corresponds to the JSON property `type`
|
1146
|
-
# @return [String]
|
1147
|
-
attr_accessor :type
|
1148
|
-
|
1149
|
-
def initialize(**args)
|
1150
|
-
update!(**args)
|
1151
|
-
end
|
1152
|
-
|
1153
|
-
# Update properties of this object
|
1154
|
-
def update!(**args)
|
1155
|
-
@message = args[:message] if args.key?(:message)
|
1156
|
-
@severity = args[:severity] if args.key?(:severity)
|
1157
|
-
@type = args[:type] if args.key?(:type)
|
1158
|
-
end
|
1159
|
-
end
|
1160
|
-
|
1161
|
-
# Extra GCF specific location information.
|
1162
|
-
class GoogleCloudFunctionsV2betaLocationMetadata
|
1163
|
-
include Google::Apis::Core::Hashable
|
1164
|
-
|
1165
|
-
# The Cloud Function environments this location supports.
|
1166
|
-
# Corresponds to the JSON property `environments`
|
1167
|
-
# @return [Array<String>]
|
1168
|
-
attr_accessor :environments
|
1169
|
-
|
1170
|
-
def initialize(**args)
|
1171
|
-
update!(**args)
|
1172
|
-
end
|
1173
|
-
|
1174
|
-
# Update properties of this object
|
1175
|
-
def update!(**args)
|
1176
|
-
@environments = args[:environments] if args.key?(:environments)
|
1177
|
-
end
|
1178
|
-
end
|
1179
|
-
|
1180
|
-
# Represents the metadata of the long-running operation.
|
1181
|
-
class GoogleCloudFunctionsV2betaOperationMetadata
|
1182
|
-
include Google::Apis::Core::Hashable
|
1183
|
-
|
1184
|
-
# API version used to start the operation.
|
1185
|
-
# Corresponds to the JSON property `apiVersion`
|
1186
|
-
# @return [String]
|
1187
|
-
attr_accessor :api_version
|
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
|
-
|
1194
|
-
# Identifies whether the user has requested cancellation of the operation.
|
1195
|
-
# Operations that have successfully been cancelled have google.longrunning.
|
1196
|
-
# Operation.error value with a google.rpc.Status.code of 1, corresponding to `
|
1197
|
-
# Code.CANCELLED`.
|
1198
|
-
# Corresponds to the JSON property `cancelRequested`
|
1199
|
-
# @return [Boolean]
|
1200
|
-
attr_accessor :cancel_requested
|
1201
|
-
alias_method :cancel_requested?, :cancel_requested
|
1202
|
-
|
1203
|
-
# The time the operation was created.
|
1204
|
-
# Corresponds to the JSON property `createTime`
|
1205
|
-
# @return [String]
|
1206
|
-
attr_accessor :create_time
|
1207
|
-
|
1208
|
-
# The time the operation finished running.
|
1209
|
-
# Corresponds to the JSON property `endTime`
|
1210
|
-
# @return [String]
|
1211
|
-
attr_accessor :end_time
|
1212
|
-
|
1213
|
-
# The operation type.
|
1214
|
-
# Corresponds to the JSON property `operationType`
|
1215
|
-
# @return [String]
|
1216
|
-
attr_accessor :operation_type
|
1217
|
-
|
1218
|
-
# The original request that started the operation.
|
1219
|
-
# Corresponds to the JSON property `requestResource`
|
1220
|
-
# @return [Hash<String,Object>]
|
1221
|
-
attr_accessor :request_resource
|
1222
|
-
|
1223
|
-
# An identifier for Firebase function sources. Disclaimer: This field is only
|
1224
|
-
# supported for Firebase function deployments.
|
1225
|
-
# Corresponds to the JSON property `sourceToken`
|
1226
|
-
# @return [String]
|
1227
|
-
attr_accessor :source_token
|
1228
|
-
|
1229
|
-
# Mechanism for reporting in-progress stages
|
1230
|
-
# Corresponds to the JSON property `stages`
|
1231
|
-
# @return [Array<Google::Apis::CloudfunctionsV2::GoogleCloudFunctionsV2betaStage>]
|
1232
|
-
attr_accessor :stages
|
1233
|
-
|
1234
|
-
# Human-readable status of the operation, if any.
|
1235
|
-
# Corresponds to the JSON property `statusDetail`
|
1236
|
-
# @return [String]
|
1237
|
-
attr_accessor :status_detail
|
1238
|
-
|
1239
|
-
# Server-defined resource path for the target of the operation.
|
1240
|
-
# Corresponds to the JSON property `target`
|
1241
|
-
# @return [String]
|
1242
|
-
attr_accessor :target
|
1243
|
-
|
1244
|
-
# Name of the verb executed by the operation.
|
1245
|
-
# Corresponds to the JSON property `verb`
|
1246
|
-
# @return [String]
|
1247
|
-
attr_accessor :verb
|
1248
|
-
|
1249
|
-
def initialize(**args)
|
1250
|
-
update!(**args)
|
1251
|
-
end
|
1252
|
-
|
1253
|
-
# Update properties of this object
|
1254
|
-
def update!(**args)
|
1255
|
-
@api_version = args[:api_version] if args.key?(:api_version)
|
1256
|
-
@build_name = args[:build_name] if args.key?(:build_name)
|
1257
|
-
@cancel_requested = args[:cancel_requested] if args.key?(:cancel_requested)
|
1258
|
-
@create_time = args[:create_time] if args.key?(:create_time)
|
1259
|
-
@end_time = args[:end_time] if args.key?(:end_time)
|
1260
|
-
@operation_type = args[:operation_type] if args.key?(:operation_type)
|
1261
|
-
@request_resource = args[:request_resource] if args.key?(:request_resource)
|
1262
|
-
@source_token = args[:source_token] if args.key?(:source_token)
|
1263
|
-
@stages = args[:stages] if args.key?(:stages)
|
1264
|
-
@status_detail = args[:status_detail] if args.key?(:status_detail)
|
1265
|
-
@target = args[:target] if args.key?(:target)
|
1266
|
-
@verb = args[:verb] if args.key?(:verb)
|
1267
|
-
end
|
1268
|
-
end
|
1269
|
-
|
1270
|
-
# Each Stage of the deployment process
|
1271
|
-
class GoogleCloudFunctionsV2betaStage
|
1272
|
-
include Google::Apis::Core::Hashable
|
1273
|
-
|
1274
|
-
# Message describing the Stage
|
1275
|
-
# Corresponds to the JSON property `message`
|
1276
|
-
# @return [String]
|
1277
|
-
attr_accessor :message
|
1278
|
-
|
1279
|
-
# Name of the Stage. This will be unique for each Stage.
|
1280
|
-
# Corresponds to the JSON property `name`
|
1281
|
-
# @return [String]
|
1282
|
-
attr_accessor :name
|
1283
|
-
|
1284
|
-
# Resource of the Stage
|
1285
|
-
# Corresponds to the JSON property `resource`
|
1286
|
-
# @return [String]
|
1287
|
-
attr_accessor :resource
|
1288
|
-
|
1289
|
-
# Link to the current Stage resource
|
1290
|
-
# Corresponds to the JSON property `resourceUri`
|
1291
|
-
# @return [String]
|
1292
|
-
attr_accessor :resource_uri
|
1293
|
-
|
1294
|
-
# Current state of the Stage
|
1295
|
-
# Corresponds to the JSON property `state`
|
1296
|
-
# @return [String]
|
1297
|
-
attr_accessor :state
|
1298
|
-
|
1299
|
-
# State messages from the current Stage.
|
1300
|
-
# Corresponds to the JSON property `stateMessages`
|
1301
|
-
# @return [Array<Google::Apis::CloudfunctionsV2::GoogleCloudFunctionsV2betaStateMessage>]
|
1302
|
-
attr_accessor :state_messages
|
1303
|
-
|
1304
|
-
def initialize(**args)
|
1305
|
-
update!(**args)
|
1306
|
-
end
|
1307
|
-
|
1308
|
-
# Update properties of this object
|
1309
|
-
def update!(**args)
|
1310
|
-
@message = args[:message] if args.key?(:message)
|
1311
|
-
@name = args[:name] if args.key?(:name)
|
1312
|
-
@resource = args[:resource] if args.key?(:resource)
|
1313
|
-
@resource_uri = args[:resource_uri] if args.key?(:resource_uri)
|
1314
|
-
@state = args[:state] if args.key?(:state)
|
1315
|
-
@state_messages = args[:state_messages] if args.key?(:state_messages)
|
1316
|
-
end
|
1317
|
-
end
|
1318
|
-
|
1319
|
-
# Informational messages about the state of the Cloud Function or Operation.
|
1320
|
-
class GoogleCloudFunctionsV2betaStateMessage
|
1321
|
-
include Google::Apis::Core::Hashable
|
1322
|
-
|
1323
|
-
# The message.
|
1324
|
-
# Corresponds to the JSON property `message`
|
1325
|
-
# @return [String]
|
1326
|
-
attr_accessor :message
|
1327
|
-
|
1328
|
-
# Severity of the state message.
|
1329
|
-
# Corresponds to the JSON property `severity`
|
1330
|
-
# @return [String]
|
1331
|
-
attr_accessor :severity
|
1332
|
-
|
1333
|
-
# One-word CamelCase type of the state message.
|
1334
|
-
# Corresponds to the JSON property `type`
|
1335
|
-
# @return [String]
|
1336
|
-
attr_accessor :type
|
1337
|
-
|
1338
|
-
def initialize(**args)
|
1339
|
-
update!(**args)
|
1340
|
-
end
|
1341
|
-
|
1342
|
-
# Update properties of this object
|
1343
|
-
def update!(**args)
|
1344
|
-
@message = args[:message] if args.key?(:message)
|
1345
|
-
@severity = args[:severity] if args.key?(:severity)
|
1346
|
-
@type = args[:type] if args.key?(:type)
|
1347
|
-
end
|
1348
|
-
end
|
1349
|
-
|
1350
972
|
# Response for the `ListFunctions` method.
|
1351
973
|
class ListFunctionsResponse
|
1352
974
|
include Google::Apis::Core::Hashable
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.45.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240905"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -142,54 +142,6 @@ module Google
|
|
142
142
|
include Google::Apis::Core::JsonObjectSupport
|
143
143
|
end
|
144
144
|
|
145
|
-
class GoogleCloudFunctionsV2alphaLocationMetadata
|
146
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
147
|
-
|
148
|
-
include Google::Apis::Core::JsonObjectSupport
|
149
|
-
end
|
150
|
-
|
151
|
-
class GoogleCloudFunctionsV2alphaOperationMetadata
|
152
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
153
|
-
|
154
|
-
include Google::Apis::Core::JsonObjectSupport
|
155
|
-
end
|
156
|
-
|
157
|
-
class GoogleCloudFunctionsV2alphaStage
|
158
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
159
|
-
|
160
|
-
include Google::Apis::Core::JsonObjectSupport
|
161
|
-
end
|
162
|
-
|
163
|
-
class GoogleCloudFunctionsV2alphaStateMessage
|
164
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
165
|
-
|
166
|
-
include Google::Apis::Core::JsonObjectSupport
|
167
|
-
end
|
168
|
-
|
169
|
-
class GoogleCloudFunctionsV2betaLocationMetadata
|
170
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
|
-
|
172
|
-
include Google::Apis::Core::JsonObjectSupport
|
173
|
-
end
|
174
|
-
|
175
|
-
class GoogleCloudFunctionsV2betaOperationMetadata
|
176
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
|
-
|
178
|
-
include Google::Apis::Core::JsonObjectSupport
|
179
|
-
end
|
180
|
-
|
181
|
-
class GoogleCloudFunctionsV2betaStage
|
182
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
|
-
|
184
|
-
include Google::Apis::Core::JsonObjectSupport
|
185
|
-
end
|
186
|
-
|
187
|
-
class GoogleCloudFunctionsV2betaStateMessage
|
188
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
|
-
|
190
|
-
include Google::Apis::Core::JsonObjectSupport
|
191
|
-
end
|
192
|
-
|
193
145
|
class ListFunctionsResponse
|
194
146
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
147
|
|
@@ -562,102 +514,6 @@ module Google
|
|
562
514
|
end
|
563
515
|
end
|
564
516
|
|
565
|
-
class GoogleCloudFunctionsV2alphaLocationMetadata
|
566
|
-
# @private
|
567
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
568
|
-
collection :environments, as: 'environments'
|
569
|
-
end
|
570
|
-
end
|
571
|
-
|
572
|
-
class GoogleCloudFunctionsV2alphaOperationMetadata
|
573
|
-
# @private
|
574
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
575
|
-
property :api_version, as: 'apiVersion'
|
576
|
-
property :build_name, as: 'buildName'
|
577
|
-
property :cancel_requested, as: 'cancelRequested'
|
578
|
-
property :create_time, as: 'createTime'
|
579
|
-
property :end_time, as: 'endTime'
|
580
|
-
property :operation_type, as: 'operationType'
|
581
|
-
hash :request_resource, as: 'requestResource'
|
582
|
-
property :source_token, as: 'sourceToken'
|
583
|
-
collection :stages, as: 'stages', class: Google::Apis::CloudfunctionsV2::GoogleCloudFunctionsV2alphaStage, decorator: Google::Apis::CloudfunctionsV2::GoogleCloudFunctionsV2alphaStage::Representation
|
584
|
-
|
585
|
-
property :status_detail, as: 'statusDetail'
|
586
|
-
property :target, as: 'target'
|
587
|
-
property :verb, as: 'verb'
|
588
|
-
end
|
589
|
-
end
|
590
|
-
|
591
|
-
class GoogleCloudFunctionsV2alphaStage
|
592
|
-
# @private
|
593
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
594
|
-
property :message, as: 'message'
|
595
|
-
property :name, as: 'name'
|
596
|
-
property :resource, as: 'resource'
|
597
|
-
property :resource_uri, as: 'resourceUri'
|
598
|
-
property :state, as: 'state'
|
599
|
-
collection :state_messages, as: 'stateMessages', class: Google::Apis::CloudfunctionsV2::GoogleCloudFunctionsV2alphaStateMessage, decorator: Google::Apis::CloudfunctionsV2::GoogleCloudFunctionsV2alphaStateMessage::Representation
|
600
|
-
|
601
|
-
end
|
602
|
-
end
|
603
|
-
|
604
|
-
class GoogleCloudFunctionsV2alphaStateMessage
|
605
|
-
# @private
|
606
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
607
|
-
property :message, as: 'message'
|
608
|
-
property :severity, as: 'severity'
|
609
|
-
property :type, as: 'type'
|
610
|
-
end
|
611
|
-
end
|
612
|
-
|
613
|
-
class GoogleCloudFunctionsV2betaLocationMetadata
|
614
|
-
# @private
|
615
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
616
|
-
collection :environments, as: 'environments'
|
617
|
-
end
|
618
|
-
end
|
619
|
-
|
620
|
-
class GoogleCloudFunctionsV2betaOperationMetadata
|
621
|
-
# @private
|
622
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
623
|
-
property :api_version, as: 'apiVersion'
|
624
|
-
property :build_name, as: 'buildName'
|
625
|
-
property :cancel_requested, as: 'cancelRequested'
|
626
|
-
property :create_time, as: 'createTime'
|
627
|
-
property :end_time, as: 'endTime'
|
628
|
-
property :operation_type, as: 'operationType'
|
629
|
-
hash :request_resource, as: 'requestResource'
|
630
|
-
property :source_token, as: 'sourceToken'
|
631
|
-
collection :stages, as: 'stages', class: Google::Apis::CloudfunctionsV2::GoogleCloudFunctionsV2betaStage, decorator: Google::Apis::CloudfunctionsV2::GoogleCloudFunctionsV2betaStage::Representation
|
632
|
-
|
633
|
-
property :status_detail, as: 'statusDetail'
|
634
|
-
property :target, as: 'target'
|
635
|
-
property :verb, as: 'verb'
|
636
|
-
end
|
637
|
-
end
|
638
|
-
|
639
|
-
class GoogleCloudFunctionsV2betaStage
|
640
|
-
# @private
|
641
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
642
|
-
property :message, as: 'message'
|
643
|
-
property :name, as: 'name'
|
644
|
-
property :resource, as: 'resource'
|
645
|
-
property :resource_uri, as: 'resourceUri'
|
646
|
-
property :state, as: 'state'
|
647
|
-
collection :state_messages, as: 'stateMessages', class: Google::Apis::CloudfunctionsV2::GoogleCloudFunctionsV2betaStateMessage, decorator: Google::Apis::CloudfunctionsV2::GoogleCloudFunctionsV2betaStateMessage::Representation
|
648
|
-
|
649
|
-
end
|
650
|
-
end
|
651
|
-
|
652
|
-
class GoogleCloudFunctionsV2betaStateMessage
|
653
|
-
# @private
|
654
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
655
|
-
property :message, as: 'message'
|
656
|
-
property :severity, as: 'severity'
|
657
|
-
property :type, as: 'type'
|
658
|
-
end
|
659
|
-
end
|
660
|
-
|
661
517
|
class ListFunctionsResponse
|
662
518
|
# @private
|
663
519
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.
|
4
|
+
version: 0.45.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-09-
|
11
|
+
date: 2024-09-15 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v2/v0.45.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: []
|