...
Code Block |
---|
HTTP/1.1 200 OK Server: Apache-Coyote/1.1 Content-Type: application/json Transfer-Encoding: chunked Date: Sat, 10 Dec 2011 23:47:18 GMT { "status":"DOWN", "currentMessage":"Synapse is currently DOWN for maintenance. It will be back up in few minute." } |
StackStatus JSON Schema
Code Block |
---|
{
"description":"The Status of the stack",
"properties":{
"status":{
"type":"string",
"description":"The status of this stack can be one of the following enumerations",
"name":"StatusEnum",
"id":"org.sagebionetworks.repo.model.status.StatusEnum",
"enum":[
"READ_WRITE",
"READ_ONLY",
"DOWN",
],
},
"currentMessage":{
"type":"string",
"description":"This message applies to the current state of the stack."
},
"pendingMaintenanceMessage":{
"type":"string",
"description":"This message is used to notify users of pending maintenance"
},
}
}
|
Creating a Repository Backup Snapshot
...