The "manager" property contains operations that can be used to interact with the replication manager options and information.
Examples
"list_engines" example
{
"memphis": {
"name": "MEMPHIS",
"host": "localhost",
"port": "7597",
"uid": "admin",
"pwd": "ADMIN"
},
"manager":{
"actions": [ "list_engines" ]
}
}
"list_plans" example
{
"memphis": {
"name": "MEMPHIS",
"host": "localhost",
"port": "7597",
"uid": "admin",
"pwd": "ADMIN"
},
"manager":{
"actions": [ "list_plans" ]
}
}
"list_groups" example
{
"memphis": {
"name": "MEMPHIS",
"host": "localhost",
"port": "7597",
"uid": "admin",
"pwd": "ADMIN"
},
"manager":{
"actions": [ "list_groups" ]
}
}Actions run together example
{
"memphis": {
"name": "MEMPHIS",
"host": "localhost",
"port": "7597",
"uid": "admin",
"pwd": "ADMIN"
},
"manager":{
"actions": [ "list_engines",list_plans","list_groups" ],
"options": ["replace"]
}
}
"active_engine" example
{
"memphis": {
"name": "MEMPHIS",
"host": "localhost",
"port": "7597",
"uid": "admin",
"pwd": "ADMIN"
},
"manager":{
"actions": [ "active_engine" ],
"name": "FAIRCOMS@HOST001"
}
}
"active_plan" example
{
"memphis": {
"name": "MEMPHIS",
"host": "localhost",
"port": "7597",
"uid": "admin",
"pwd": "ADMIN"
},
"manager":{
"actions": [ "active_plan" ],
"name": "planFiles"
}
}
"active_group" example
{
"memphis": {
"name": "MEMPHIS",
"host": "localhost",
"port": "7597",
"uid": "admin",
"pwd": "ADMIN"
},
"manager":{
"actions": [ "active_group" ],
"name": "group1"
}
}Properties summary
"manager" actions summary
| Property | Description |
|---|---|
| active_engine |
checks whether the specified database engine is active NoteThe |
| active_group |
checks whether the specified replication plan is active NoteThe |
| active_plan |
checks whether the specified replication plan is active NoteThe |
| list_engines |
lists the engines currently managed by the specified replication manage NoteThis operation can be run together with |
| list_groups |
lists the availability groups managed by the replication manager indicating whether the group is active or not NoteThis operation can be run together with |
| list_plans |
lists the replication plans managed by the replication manager indicating whether the plan is active or not NoteThis operation can be run together with |