Create Pseudo Client
This operation is used to create a Pseudo Client for DB2 Multinode environment
- application/json
Request Body
clientInfo object required
clientType integer requiredPossible values: [
4
]plan object
Pass this object if you want to associate a default plan to pseudoclient created
planName stringplanId integer requiredID of the plan to associate to Pseudo Client
entity object required
clientName string requiredName of the pseudo client
Responses
- 200
- 401
- 409
- 500
OK
- application/json
- Schema
- Example (from schema)
- Example 1
Schema
processinginstructioninfo object
attributes object[]
name stringvalue stringresponse object
errorCode integerentity object
clientId integerID of the Pseudo Client created
clientName stringName of the Pseudo Client created
_type_ integer
{
"processinginstructioninfo": {
"attributes": [
{
"name": "string",
"value": "string"
}
]
},
"response": {
"errorCode": 0,
"entity": {
"clientId": 0,
"clientName": "string",
"_type_": 0
}
}
}
{
"processinginstructioninfo": {
"attributes": [
{
"name": "exitval",
"value": "0"
}
]
},
"response": {
"errorCode": 0,
"entity": {
"clientId": 1483,
"clientName": "vikramdpf",
"_type_": 3
}
}
}
Unauthorized
- application/json
- Schema
- Example (from schema)
- Example 1
Schema
- errorMessage string
- errorCode integer
{
"errorMessage": "string",
"errorCode": 0
}
{
"errorMessage": "Access denied",
"errorCode": 5
}
Conflict
- application/json
- Schema
- Example (from schema)
- Example 1
Schema
- errorMessage string
- errorCode integer
{
"errorMessage": "string",
"errorCode": 0
}
{
"errorMessage": "Duplicate entry.Client [vikrampseudo] already exists. Try with different Client name.",
"errorCode": 3
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
- Example 1
Schema
- errorMessage string
- errorCode integer
{
"errorMessage": "string",
"errorCode": 0
}
{
"errorMessage": "XML error: please refer to logs for more details.",
"errorCode": 1
}
Loading...