ServerLifeCycleRuntime

Application ServerEnterpriseJava EEMiddlewareOracle

Properties

Name Type Description
identity array
name string Server name
state string Current lifecycle state
type string Runtime type identifier
nodeManagerRestartCount integer
links array
View JSON Schema on GitHub

JSON Schema

oracle-weblogic-serverlifecycleruntime-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ServerLifeCycleRuntime",
  "title": "ServerLifeCycleRuntime",
  "type": "object",
  "properties": {
    "identity": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "name": {
      "type": "string",
      "description": "Server name"
    },
    "state": {
      "type": "string",
      "description": "Current lifecycle state",
      "enum": [
        "RUNNING",
        "SHUTDOWN",
        "STANDBY",
        "ADMIN",
        "FAILED",
        "STARTING",
        "SHUTTING_DOWN",
        "SUSPENDING",
        "FORCE_SHUTTING_DOWN",
        "RESUMING",
        "UNKNOWN"
      ]
    },
    "type": {
      "type": "string",
      "description": "Runtime type identifier",
      "enum": [
        "ServerLifeCycleRuntime"
      ]
    },
    "nodeManagerRestartCount": {
      "type": "integer"
    },
    "links": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Link"
      }
    }
  }
}