@daocloud-proto/mcamel-postgresql 0.0.2-516 → 0.0.2-518
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
|
@@ -142,6 +142,13 @@ export enum GetPostgresqlConfRespItemsParamType {
|
|
|
142
142
|
conf = "conf",
|
|
143
143
|
}
|
|
144
144
|
|
|
145
|
+
export enum PostgresqlItemStatusRestoreInitialStatus {
|
|
146
|
+
Unknown = "Unknown",
|
|
147
|
+
Running = "Running",
|
|
148
|
+
Failed = "Failed",
|
|
149
|
+
Succeeded = "Succeeded",
|
|
150
|
+
}
|
|
151
|
+
|
|
145
152
|
export type GetPostgresqlTopologyReq = {
|
|
146
153
|
cluster?: string
|
|
147
154
|
namespace?: string
|
|
@@ -601,6 +608,7 @@ export type PostgresqlItemStatus = {
|
|
|
601
608
|
avgReplicationLagInBytes?: string
|
|
602
609
|
common?: CommonCommon.CommonItemStatus
|
|
603
610
|
isControl?: boolean
|
|
611
|
+
restoreInitialStatus?: PostgresqlItemStatusRestoreInitialStatus
|
|
604
612
|
}
|
|
605
613
|
|
|
606
614
|
export type PostgresqlItemMetadata = {
|