FlinkSavepointList
A list of Flink savepoints.
Syntax
{
"pending": [
{
"location": "string",
"triggerType": "MANUAL | PERIODIC | UNKNOWN | UPGRADE",
"triggerNonce": "string",
"triggeredAt": "YYYY-MM-DDTHH:mm:ss.sssZ"
}
],
"completed": [
{
"location": "string",
"triggerType": "MANUAL | PERIODIC | UNKNOWN | UPGRADE",
"triggerNonce": "string",
"triggeredAt": "YYYY-MM-DDTHH:mm:ss.sssZ"
}
]
}
Type Definition
- Type
object
- Properties
pending
requiredA list of pending savepoints. The list will have zero or one item, depending on whether a pending savepoint is present.
- Type
array
- Items
A Flink savepoint.
- Schema
FlinkSavepoint
- Schema
- Type
completed
requiredA list of completed savepoints. Old savepoints may be removed depending on how savepoint clean-up is configured for the job.
- Type
array
- Items
A Flink savepoint.
- Schema
FlinkSavepoint
- Schema
- Type