Font size:
Deployment
Description
The Deployment data type represents an object of a Deployment base type.
Deployment
| Attribute | Description | Required |
|---|---|---|
| name | The object name. | Yes |
| type | The object type name. | Yes |
| maprefuri | The maprefUri | Yes |
| description | The object description. | Yes |
| includeExistingResources | Boolean flag specifying whether to merge included entities with existing child resources. | No, defaults to true. |
| basedir | The base directory. | Yes |
EntityReference
Uses one or more EntityReference elements to represent child resources.
Examples
Shows Deployment data type used in the object-update Ant task.
<object-update depot="${entity.depot}"
resultproperty="result"
comment="Updated myDeployment object.">
<deployment maprefUri="http://www.opendepo.rog/DepOnt#DeploymentSubtype_myDeployment"
name="myDeployment"
type="DeploymentSubtype"
description="my descriptive text."
basedir="/my/base/directory"
includeExistingResources="false">
<entityreference maprefuri="${entity.mapref-uri}"/>
<entityreference maprefuri="http://www.opendepo.org/DepOnt#SomeType_19" />
</deployment>
</object-update>


