@daocloud-proto/mcamel-postgresql 0.0.2-183 → 0.0.2-185
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 +14 -2
package/package.json
CHANGED
package/postgresql.pb.ts
CHANGED
|
@@ -38,6 +38,16 @@ export enum GetPostgresqlBackupListRespPostgresqlBackupItemStatusStatus {
|
|
|
38
38
|
Succeeded = "Succeeded",
|
|
39
39
|
}
|
|
40
40
|
|
|
41
|
+
export enum GetPostgresqlBackupListRespPostgresqlBackupItemStatusBackupType {
|
|
42
|
+
Full = "Full",
|
|
43
|
+
Incremental = "Incremental",
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
export enum GetPostgresqlBackupListRespPostgresqlBackupItemStatusBackupMethod {
|
|
47
|
+
Manual = "Manual",
|
|
48
|
+
Auto = "Auto",
|
|
49
|
+
}
|
|
50
|
+
|
|
41
51
|
export enum PostgresqlBackupItemStatusStatus {
|
|
42
52
|
Running = "Running",
|
|
43
53
|
Failed = "Failed",
|
|
@@ -200,14 +210,16 @@ export type GetPostgresqlBackupListRespPostgresqlBackupItemStatusJobCondition =
|
|
|
200
210
|
}
|
|
201
211
|
|
|
202
212
|
export type GetPostgresqlBackupListRespPostgresqlBackupItemStatus = {
|
|
203
|
-
|
|
213
|
+
completionTimestamp?: string
|
|
204
214
|
startTime?: string
|
|
205
215
|
active?: number
|
|
206
216
|
succeeded?: number
|
|
207
217
|
failed?: number
|
|
208
218
|
conditions?: GetPostgresqlBackupListRespPostgresqlBackupItemStatusJobCondition[]
|
|
209
|
-
isAutoBackup?: boolean
|
|
210
219
|
status?: GetPostgresqlBackupListRespPostgresqlBackupItemStatusStatus
|
|
220
|
+
backupType?: GetPostgresqlBackupListRespPostgresqlBackupItemStatusBackupType
|
|
221
|
+
backupMethod?: GetPostgresqlBackupListRespPostgresqlBackupItemStatusBackupMethod
|
|
222
|
+
storePath?: string
|
|
211
223
|
}
|
|
212
224
|
|
|
213
225
|
export type GetPostgresqlBackupListRespPostgresqlBackupItem = {
|