ServerTemplateCreateRequest

Application ServerEnterpriseJava EEMiddlewareOracle

Properties

Name Type Description
name string Server template name
listenPort integer
listenAddress string
machine array Machine reference as identity path
cluster array Cluster reference as identity path
View JSON Schema on GitHub

JSON Schema

oracle-weblogic-servertemplatecreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ServerTemplateCreateRequest",
  "title": "ServerTemplateCreateRequest",
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Server template name"
    },
    "listenPort": {
      "type": "integer"
    },
    "listenAddress": {
      "type": "string"
    },
    "machine": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Machine reference as identity path"
    },
    "cluster": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Cluster reference as identity path"
    }
  }
}