Oracle WebLogic Server APIs · Schema
LibraryDeploymentCreate
Application ServerEnterpriseJava EEMiddlewareOracleWebLogic
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Library name |
| sourcePath | string | Path to the library archive |
| targets | array | Target servers or clusters |
| moduleType | string | |
| stagingMode | string | |
| deploymentOrder | integer |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/LibraryDeploymentCreate",
"title": "LibraryDeploymentCreate",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Library name"
},
"sourcePath": {
"type": "string",
"description": "Path to the library archive"
},
"targets": {
"type": "array",
"items": {
"type": "string"
},
"description": "Target servers or clusters"
},
"moduleType": {
"type": "string",
"enum": [
"ear",
"war",
"jar"
]
},
"stagingMode": {
"type": "string",
"enum": [
"stage",
"nostage",
"external_stage"
]
},
"deploymentOrder": {
"type": "integer",
"default": 100
}
},
"required": [
"name",
"sourcePath",
"targets"
]
}