PartitionRuntime

Application ServerEnterpriseJava EEMiddlewareOracle

Properties

Name Type Description
identity array
name string
state string
restartRequired boolean
links array
View JSON Schema on GitHub

JSON Schema

oracle-weblogic-partitionruntime-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PartitionRuntime",
  "title": "PartitionRuntime",
  "type": "object",
  "properties": {
    "identity": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "name": {
      "type": "string"
    },
    "state": {
      "type": "string",
      "enum": [
        "RUNNING",
        "SHUTDOWN",
        "BOOTING",
        "SHUTTING_DOWN"
      ]
    },
    "restartRequired": {
      "type": "boolean"
    },
    "links": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Link"
      }
    }
  }
}