Oracle WebLogic Server · Schema
ServerUpdateRequest
Application ServerEnterpriseJava EEMiddlewareOracle
Properties
| Name | Type | Description |
|---|---|---|
| listenPort | integer | |
| listenAddress | string | |
| administrationPort | integer | |
| machine | array | Machine reference as identity path (set to null to remove) |
| cluster | array | Cluster reference as identity path |
| candidateMachines | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ServerUpdateRequest",
"title": "ServerUpdateRequest",
"type": "object",
"properties": {
"listenPort": {
"type": "integer"
},
"listenAddress": {
"type": "string"
},
"administrationPort": {
"type": "integer"
},
"machine": {
"type": "array",
"items": {
"type": "string"
},
"description": "Machine reference as identity path (set to null to remove)"
},
"cluster": {
"type": "array",
"items": {
"type": "string"
},
"description": "Cluster reference as identity path"
},
"candidateMachines": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Identity"
}
}
}
}