@daocloud-proto/mcamel-postgresql 0.0.2-2 → 0.0.2-22
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/postgresql.pb.ts +8 -0
package/package.json
CHANGED
package/postgresql.pb.ts
CHANGED
|
@@ -57,6 +57,12 @@ export enum GetPostgresqlPodListRespPodType {
|
|
|
57
57
|
PgAdmin = "PgAdmin",
|
|
58
58
|
}
|
|
59
59
|
|
|
60
|
+
export enum GetPostgresqlPodListRespHealthStatus {
|
|
61
|
+
HealthStatusUnknown = "HealthStatusUnknown",
|
|
62
|
+
HealthStatusHealthy = "HealthStatusHealthy",
|
|
63
|
+
HealthStatusUnhealthy = "HealthStatusUnhealthy",
|
|
64
|
+
}
|
|
65
|
+
|
|
60
66
|
export enum GetPostgresqlConfRespItemsParamType {
|
|
61
67
|
conf = "conf",
|
|
62
68
|
}
|
|
@@ -269,6 +275,7 @@ export type GetPostgresqlPodListRespData = {
|
|
|
269
275
|
createTimestamp?: string
|
|
270
276
|
podType?: GetPostgresqlPodListRespPodType
|
|
271
277
|
replicationLagInBytes?: string
|
|
278
|
+
healthStatus?: GetPostgresqlPodListRespHealthStatus
|
|
272
279
|
common?: CommonCommon.PodCommon
|
|
273
280
|
}
|
|
274
281
|
|
|
@@ -318,6 +325,7 @@ export type PostgresqlItemStatus = {
|
|
|
318
325
|
status?: Status
|
|
319
326
|
podsAreReadyNum?: number
|
|
320
327
|
clusterIPs?: string[]
|
|
328
|
+
avgReplicationLagInBytes?: string
|
|
321
329
|
common?: CommonCommon.CommonItemStatus
|
|
322
330
|
}
|
|
323
331
|
|