@daocloud-proto/skoala 0.7.0 → 0.7.1-2
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.
|
@@ -57,6 +57,19 @@ export enum AlertSeverity {
|
|
|
57
57
|
Info = "Info",
|
|
58
58
|
}
|
|
59
59
|
|
|
60
|
+
export enum GatewayConditionType {
|
|
61
|
+
TYPE_UNSPECIFIED = "TYPE_UNSPECIFIED",
|
|
62
|
+
Scheduled = "Scheduled",
|
|
63
|
+
Ready = "Ready",
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
export enum GatewayConditionStatus {
|
|
67
|
+
STATUS_UNSPECIFIED = "STATUS_UNSPECIFIED",
|
|
68
|
+
True = "True",
|
|
69
|
+
False = "False",
|
|
70
|
+
Unknown = "Unknown",
|
|
71
|
+
}
|
|
72
|
+
|
|
60
73
|
export enum LogLogLevel {
|
|
61
74
|
STATUS_UNSPECIFIED = "STATUS_UNSPECIFIED",
|
|
62
75
|
Trace = "Trace",
|
|
@@ -73,6 +86,12 @@ export type Node = {
|
|
|
73
86
|
online?: number
|
|
74
87
|
}
|
|
75
88
|
|
|
89
|
+
export type GatewayCondition = {
|
|
90
|
+
type?: GatewayConditionType
|
|
91
|
+
status?: GatewayConditionStatus
|
|
92
|
+
message?: string
|
|
93
|
+
}
|
|
94
|
+
|
|
76
95
|
export type Gateway = {
|
|
77
96
|
workspaceId?: string
|
|
78
97
|
clusterName?: string
|
|
@@ -80,7 +99,7 @@ export type Gateway = {
|
|
|
80
99
|
gatewayName?: string
|
|
81
100
|
createdAt?: string
|
|
82
101
|
updatedAt?: string
|
|
83
|
-
|
|
102
|
+
condition?: GatewayCondition
|
|
84
103
|
endpoints?: string[]
|
|
85
104
|
contour?: Node
|
|
86
105
|
envoy?: Node
|