chore: initialize repository with deployment baseline
This commit is contained in:
80
entities/AuditLog.json
Normal file
80
entities/AuditLog.json
Normal file
@@ -0,0 +1,80 @@
|
||||
{
|
||||
"name": "Backup",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"vm_id": {
|
||||
"type": "string",
|
||||
"title": "VM ID"
|
||||
},
|
||||
"vm_name": {
|
||||
"type": "string",
|
||||
"title": "VM Name"
|
||||
},
|
||||
"node": {
|
||||
"type": "string",
|
||||
"title": "Node"
|
||||
},
|
||||
"status": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"pending",
|
||||
"running",
|
||||
"completed",
|
||||
"failed",
|
||||
"expired"
|
||||
],
|
||||
"title": "Status"
|
||||
},
|
||||
"type": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"full",
|
||||
"incremental",
|
||||
"snapshot"
|
||||
],
|
||||
"title": "Backup Type"
|
||||
},
|
||||
"size_mb": {
|
||||
"type": "number",
|
||||
"title": "Size (MB)"
|
||||
},
|
||||
"storage": {
|
||||
"type": "string",
|
||||
"title": "Storage Location"
|
||||
},
|
||||
"schedule": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"manual",
|
||||
"daily",
|
||||
"weekly",
|
||||
"monthly"
|
||||
],
|
||||
"title": "Schedule"
|
||||
},
|
||||
"retention_days": {
|
||||
"type": "number",
|
||||
"title": "Retention Days"
|
||||
},
|
||||
"started_at": {
|
||||
"type": "string",
|
||||
"format": "date-time",
|
||||
"title": "Started At"
|
||||
},
|
||||
"completed_at": {
|
||||
"type": "string",
|
||||
"format": "date-time",
|
||||
"title": "Completed At"
|
||||
},
|
||||
"notes": {
|
||||
"type": "string",
|
||||
"title": "Notes"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"vm_id",
|
||||
"vm_name",
|
||||
"status",
|
||||
"type"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user