ServerLifecycleRuntime

Application ServerEnterpriseJava EEMiddlewareOracleWebLogic

Properties

Name Type Description
name string Server name
state string Current server lifecycle state
nodeManagerRestartCount integer Number of times node manager has restarted this server
links array
View JSON Schema on GitHub

JSON Schema

weblogic-serverlifecycleruntime-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ServerLifecycleRuntime",
  "title": "ServerLifecycleRuntime",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Server name"
    },
    "state": {
      "type": "string",
      "description": "Current server lifecycle state",
      "enum": [
        "SHUTDOWN",
        "STARTING",
        "STANDBY",
        "ADMIN",
        "RESUMING",
        "RUNNING",
        "SUSPENDING",
        "FORCE_SUSPENDING",
        "SHUTTING_DOWN",
        "FAILED",
        "UNKNOWN"
      ]
    },
    "nodeManagerRestartCount": {
      "type": "integer",
      "description": "Number of times node manager has restarted this server"
    },
    "links": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Link"
      }
    }
  }
}