AppDeploymentUpdate

Application ServerEnterpriseJava EEMiddlewareOracleWebLogic

Properties

Name Type Description
targets array Updated target servers or clusters
planPath string Updated deployment plan path
stagingMode string
securityDDModel string
deploymentOrder integer
notes string
View JSON Schema on GitHub

JSON Schema

weblogic-appdeploymentupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AppDeploymentUpdate",
  "title": "AppDeploymentUpdate",
  "type": "object",
  "properties": {
    "targets": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Updated target servers or clusters"
    },
    "planPath": {
      "type": "string",
      "description": "Updated deployment plan path"
    },
    "stagingMode": {
      "type": "string",
      "enum": [
        "stage",
        "nostage",
        "external_stage"
      ]
    },
    "securityDDModel": {
      "type": "string",
      "enum": [
        "DDOnly",
        "CustomRoles",
        "CustomRolesAndPolicies",
        "Advanced"
      ]
    },
    "deploymentOrder": {
      "type": "integer"
    },
    "notes": {
      "type": "string"
    }
  }
}