@daocloud-proto/mcamel-rabbitmq 0.4.0-82 → 0.4.0-85
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.
- package/package.json +1 -1
- package/rabbitmq.pb.ts +101 -2
package/package.json
CHANGED
package/rabbitmq.pb.ts
CHANGED
|
@@ -222,16 +222,115 @@ export type RabbitmqClusterItemExtend = {
|
|
|
222
222
|
export type RabbitmqClusterItemMetadata = {
|
|
223
223
|
annotations?: {[key: string]: string}
|
|
224
224
|
creationTimestamp?: string
|
|
225
|
+
finalizers?: string[]
|
|
226
|
+
generation?: number
|
|
225
227
|
name?: string
|
|
226
228
|
namespace?: string
|
|
229
|
+
resourceVersion?: string
|
|
230
|
+
uid?: string
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
export type RabbitmqClusterItemSpecOverride = {
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
export type RabbitmqClusterItemSpecPersistence = {
|
|
237
|
+
storage?: string
|
|
238
|
+
storageClassName?: string
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
export type RabbitmqClusterItemSpecRabbitmq = {
|
|
242
|
+
additionalConfig?: string
|
|
243
|
+
additionalPlugins?: string[]
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
export type RabbitmqClusterItemSpecResourcesLimits = {
|
|
247
|
+
cpu?: string
|
|
248
|
+
memory?: string
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
export type RabbitmqClusterItemSpecResourcesRequests = {
|
|
252
|
+
cpu?: string
|
|
253
|
+
memory?: string
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
export type RabbitmqClusterItemSpecResources = {
|
|
257
|
+
limits?: RabbitmqClusterItemSpecResourcesLimits
|
|
258
|
+
requests?: RabbitmqClusterItemSpecResourcesRequests
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
export type RabbitmqClusterItemSpecSecretBackend = {
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
export type RabbitmqClusterItemSpecServiceAnnotations = {
|
|
265
|
+
asd?: string
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
export type RabbitmqClusterItemSpecService = {
|
|
269
|
+
annotations?: RabbitmqClusterItemSpecServiceAnnotations
|
|
270
|
+
type?: string
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
export type RabbitmqClusterItemSpecTls = {
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
export type RabbitmqClusterItemSpec = {
|
|
277
|
+
image?: string
|
|
278
|
+
override?: RabbitmqClusterItemSpecOverride
|
|
279
|
+
persistence?: RabbitmqClusterItemSpecPersistence
|
|
280
|
+
rabbitmq?: RabbitmqClusterItemSpecRabbitmq
|
|
281
|
+
replicas?: number
|
|
282
|
+
resources?: RabbitmqClusterItemSpecResources
|
|
283
|
+
secretBackend?: RabbitmqClusterItemSpecSecretBackend
|
|
284
|
+
service?: RabbitmqClusterItemSpecService
|
|
285
|
+
terminationGracePeriodSeconds?: number
|
|
286
|
+
tls?: RabbitmqClusterItemSpecTls
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
export type RabbitmqClusterItemStatusBinding = {
|
|
290
|
+
name?: string
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
export type RabbitmqClusterItemStatusConditions = {
|
|
294
|
+
lastTransitionTime?: string
|
|
295
|
+
reason?: string
|
|
296
|
+
status?: string
|
|
297
|
+
type?: string
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
export type RabbitmqClusterItemStatusDefaultUserSecretReferenceKeys = {
|
|
301
|
+
password?: string
|
|
302
|
+
username?: string
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
export type RabbitmqClusterItemStatusDefaultUserSecretReference = {
|
|
306
|
+
keys?: RabbitmqClusterItemStatusDefaultUserSecretReferenceKeys
|
|
307
|
+
name?: string
|
|
308
|
+
namespace?: string
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
export type RabbitmqClusterItemStatusDefaultUserServiceReference = {
|
|
312
|
+
name?: string
|
|
313
|
+
namespace?: string
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
export type RabbitmqClusterItemStatusDefaultUser = {
|
|
317
|
+
secretReference?: RabbitmqClusterItemStatusDefaultUserSecretReference
|
|
318
|
+
serviceReference?: RabbitmqClusterItemStatusDefaultUserServiceReference
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
export type RabbitmqClusterItemStatus = {
|
|
322
|
+
binding?: RabbitmqClusterItemStatusBinding
|
|
323
|
+
conditions?: RabbitmqClusterItemStatusConditions[]
|
|
324
|
+
defaultUser?: RabbitmqClusterItemStatusDefaultUser
|
|
325
|
+
observedGeneration?: number
|
|
227
326
|
}
|
|
228
327
|
|
|
229
328
|
export type RabbitmqClusterItem = {
|
|
230
329
|
apiVersion?: string
|
|
231
330
|
kind?: string
|
|
232
331
|
metadata?: RabbitmqClusterItemMetadata
|
|
233
|
-
spec?:
|
|
234
|
-
status?:
|
|
332
|
+
spec?: RabbitmqClusterItemSpec
|
|
333
|
+
status?: RabbitmqClusterItemStatus
|
|
235
334
|
extend?: RabbitmqClusterItemExtend
|
|
236
335
|
}
|
|
237
336
|
|