ControlTier Inc. > Open.ControlTier
 
Font size:      

Deployment

Description

The Deployment data type represents an object of a Deployment base type.

Deployment

AttributeDescriptionRequired
nameThe object name.Yes
typeThe object type name.Yes
maprefuriThe maprefUriYes
descriptionThe object description.Yes
includeExistingResourcesBoolean flag specifying whether to merge included entities with existing child resources. No, defaults to true.
basedirThe 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>