@daocloud-proto/mcamel-rabbitmq 0.6.2-6 → 0.6.2-60
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/common.pb.ts +5 -0
- package/insight.pb.ts +46 -0
- package/metric.pb.ts +25 -0
- package/package.json +1 -1
- package/rabbitmq.pb.ts +7 -1
package/common.pb.ts
CHANGED
package/insight.pb.ts
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// @ts-nocheck
|
|
3
|
+
/*
|
|
4
|
+
* This file is a generated Typescript file for GRPC Gateway, DO NOT MODIFY
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
export enum Severity {
|
|
8
|
+
SEVERITY_UNSPECIFIED = "SEVERITY_UNSPECIFIED",
|
|
9
|
+
CRITICAL = "CRITICAL",
|
|
10
|
+
WARNING = "WARNING",
|
|
11
|
+
INFO = "INFO",
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export enum TargetType {
|
|
15
|
+
TARGET_TYPE_UNSPECIFIED = "TARGET_TYPE_UNSPECIFIED",
|
|
16
|
+
GLOBAL = "GLOBAL",
|
|
17
|
+
CLUSTER = "CLUSTER",
|
|
18
|
+
NAMESPACE = "NAMESPACE",
|
|
19
|
+
NODE = "NODE",
|
|
20
|
+
DEPLOYMENT = "DEPLOYMENT",
|
|
21
|
+
STATEFULSET = "STATEFULSET",
|
|
22
|
+
DAEMONSET = "DAEMONSET",
|
|
23
|
+
CRONJOB = "CRONJOB",
|
|
24
|
+
POD = "POD",
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export enum AlertStatus {
|
|
28
|
+
ALERT_STATUS_UNSPECIFIED = "ALERT_STATUS_UNSPECIFIED",
|
|
29
|
+
ALERT_STATUS_FIRING = "ALERT_STATUS_FIRING",
|
|
30
|
+
ALERT_STATUS_RESOLVED = "ALERT_STATUS_RESOLVED",
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export type AlertSummary = {
|
|
34
|
+
alertId?: string
|
|
35
|
+
ruleName?: string
|
|
36
|
+
severity?: Severity
|
|
37
|
+
clusterName?: string
|
|
38
|
+
namespace?: string
|
|
39
|
+
targetType?: TargetType
|
|
40
|
+
targetName?: string
|
|
41
|
+
status?: AlertStatus
|
|
42
|
+
description?: string
|
|
43
|
+
startAt?: string
|
|
44
|
+
updateAt?: string
|
|
45
|
+
notifyResponse?: string
|
|
46
|
+
}
|
package/metric.pb.ts
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// @ts-nocheck
|
|
3
|
+
/*
|
|
4
|
+
* This file is a generated Typescript file for GRPC Gateway, DO NOT MODIFY
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import * as CommonCommon from "./common.pb"
|
|
8
|
+
import * as fm from "./fetch.pb"
|
|
9
|
+
import * as InsightIoApiInsightV1alpha1Insight from "./insight.pb"
|
|
10
|
+
export type GetAlertsListReq = {
|
|
11
|
+
cluster?: string
|
|
12
|
+
namespace?: string
|
|
13
|
+
name?: string
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export type GetAlertsListResp = {
|
|
17
|
+
items?: InsightIoApiInsightV1alpha1Insight.AlertSummary[]
|
|
18
|
+
pagination?: CommonCommon.Pagination
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export class Metric {
|
|
22
|
+
static GetAlertsList(req: GetAlertsListReq, initReq?: fm.InitReq): Promise<GetAlertsListResp> {
|
|
23
|
+
return fm.fetchReq<GetAlertsListReq, GetAlertsListResp>(`/apis/mcamel.io/rabbitmq/v1alpha1/${req["cluster"]}/${req["namespace"]}/${req["name"]}/alerts?${fm.renderURLSearchParams(req, ["cluster", "namespace", "name"])}`, {...initReq, method: "GET"})
|
|
24
|
+
}
|
|
25
|
+
}
|
package/package.json
CHANGED
package/rabbitmq.pb.ts
CHANGED
|
@@ -177,12 +177,17 @@ export type GetRabbitMqParamRespSelectDataIntValue = {
|
|
|
177
177
|
value?: number
|
|
178
178
|
}
|
|
179
179
|
|
|
180
|
+
export type GetRabbitMqParamRespSelectDataStorageClassValue = {
|
|
181
|
+
name?: string
|
|
182
|
+
allowVolumeExpansion?: boolean
|
|
183
|
+
}
|
|
184
|
+
|
|
180
185
|
|
|
181
186
|
type BaseGetRabbitMqParamRespSelectData = {
|
|
182
187
|
}
|
|
183
188
|
|
|
184
189
|
export type GetRabbitMqParamRespSelectData = BaseGetRabbitMqParamRespSelectData
|
|
185
|
-
& OneOf<{ sValue: GetRabbitMqParamRespSelectDataStringValue; rValue: GetRabbitMqParamRespSelectDataResourceValue; iValue: GetRabbitMqParamRespSelectDataIntValue }>
|
|
190
|
+
& OneOf<{ sValue: GetRabbitMqParamRespSelectDataStringValue; rValue: GetRabbitMqParamRespSelectDataResourceValue; iValue: GetRabbitMqParamRespSelectDataIntValue; scValue: GetRabbitMqParamRespSelectDataStorageClassValue }>
|
|
186
191
|
|
|
187
192
|
export type GetRabbitMqParamRespSelect = {
|
|
188
193
|
selectType?: GetRabbitMqParamRespSelectSelectType
|
|
@@ -304,6 +309,7 @@ export type RabbitmqClusterItemStatus = {
|
|
|
304
309
|
webManagerAddr?: string
|
|
305
310
|
clusterIPs?: string[]
|
|
306
311
|
serviceAddr?: string
|
|
312
|
+
common?: CommonCommon.CommonItemStatus
|
|
307
313
|
}
|
|
308
314
|
|
|
309
315
|
export type RabbitmqClusterItemMetadata = {
|