ConnectionVerificationResult¶
| Field | NULL | Description | Note |
|---|---|---|---|
| serverNotValid boolean |
Is the server not valid | ||
| databaseNotValid boolean |
Is the database not valid | ||
| differentDatabase boolean |
Does the connection string point to a different database | ||
| loginFail boolean |
Did the login succeed | ||
| hasValidLicense boolean |
Has the database already had a valid license |
Inherited fields:
OperationResult¶
| Field | NULL | Description | Note |
|---|---|---|---|
| success boolean |
Is the operation successful | ||
| messages array of objects |
An array of ModelError objects | ||
| data object |
A dynamic object to store additional data |
Sample:
{
"success": true,
"data": "4e2d54c8-20e7-437f-a5ce-43e963c763a2"
}
Sample:
{
"serverNotValid" : false,
"databaseNotValid" : false,
"loginFail" : false,
"hasValidLicense" : false,
"success" : true,
"messages" : []
}