PartitionCreateRequest

Application ServerEnterpriseJava EEMiddlewareOracle

Properties

Name Type Description
name string
realm array
primaryIdentityDomain string
availableTargets array
defaultTargets array
resourceManagerRef array
View JSON Schema on GitHub

JSON Schema

oracle-weblogic-partitioncreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PartitionCreateRequest",
  "title": "PartitionCreateRequest",
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "realm": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "primaryIdentityDomain": {
      "type": "string"
    },
    "availableTargets": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Identity"
      }
    },
    "defaultTargets": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Identity"
      }
    },
    "resourceManagerRef": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}