13.1. import
¶
import
is the main task for updating DataPower configuration. It imports previously exported configuration and files into a DataPower domain. The input for import can be created using WebGUI or DPBuddy’s export task. The functionality supported by import
is similar to “Import Configuration” available from WebGUI. import
can handle a stand-alone XML configuration file or a zip file containing both configuration and files to be uploaded to the DataPower file system.
Upon completion, import
prints a report with the list of all updated configuration objects and files.
buddyImport
is the alias of “import”. Eclipse Ant editor gives warning when dp:import
is used as it confuses it with the Ant’s built-in import
task. dp:buddyImport
can be used to avoid this.
import
allows for specifying Ant/Groovy/Gradle variables in any text node or an attribute of the deployment policy file. Any XML file used in transformation can also utilize references to Ant/Groovy/Gradle variables.
import
supports transformation actions described in Using DPBuddy to Transform DataPower Configuration and XML Files. Transformations can be applied to XML import files or to the files inside a ZIP archive.
13.1.1. Attributes/Options¶
Attribute | Description | Required |
---|---|---|
file | File to import. This could be a zip or an xml/xcfg file. | Yes |
deploymentPolicyFile | Path to the deployment policy XML file on the local filesystem. The deployment policy is automatically uploaded/configured on the device before import is executed. This file could be a direct export of the deployment policy object. Note that DPBuddy will attempt to resolve “${}” variables inside the deployment policy file. If this is undesirable (e.g, if the variables are going to be resolved by DataPower using deployment policy variables), import the deployment policy using a separate “import” command. The deployment policy XML file must contain a single deployment policy; no other configuration objects are allowed. | No |
deploymentPolicyName | Name of the existing deployment policy to use for the import operation. The policy should already exist on the device. | No |
deploymentPolicyVars | Name of the deployment policy variables to use with the deployment policy. The variables object should already exist on the device. Note: this requires Version 7 of DataPower firmware. | No |
overwriteFiles | If set to true, overwrite existing files with the files included with the import. Defaults to |
No |
overwriteObjects | If set to true, overwrite existing objects with the objects defined as part of this import. Defaults to |
No |
rewriteLocalIp | If set to Defaults to |
No |
dryRun | If set to true , run import in “dry run” mode. |
No |
workDir | Path to the directory used to hold temporary files. DPBuddy will unzip the content of the zip file into this directory. This is needed when Note that DPBuddy cleans this directory every time the import task is executed. If Defaults to |
No |
transformOnly | If set to This is convenient for developing/troubleshooting Defaults to |
No |
assertObjectsUp | If set to Defaults to |
No |
assertPorts | A comma-delimited list of ports to check after the import is done. DPBuddy will invoke assertOpenPorts task to verify that all ports in this list are assigned to active services. If this is not the case, DPBuddy will raise an exception. | No |
resolveVars | If set to Defaults to |
No |
checkpoint | Creates checkpoint with this name before the import. | No |
rollbackOnError | If set to Defaults to |
No |
reset | If set to Defaults to |
No |
quiesce | If set to Defaults to |
No |
unquiesce | If set to Defaults to |
No |
domainComments | Sets the comment field of the target application domain to this value. You can use this attribute to specify the build date, version number and other tracking information. You can view this value from DataPower WebGUI by navigating to the “Application Domains” screen from the “default” domain. | No |
13.1.2. Examples¶
This is a simple example of the import task. See samples/ant-tasks/import-export.xml
file located in your DPBuddy distribution or online.
dpbuddy import -file dpconfigs/WSProxy.zip
<dp:import file="${wsproxy.zip.file}" />
13.1.3. transformFiles
Nested Element¶
transformFiles
defines what files to transform by the transformation actions contained in the nested transform
element. transformFiles
can only be used if the imported file is “zip”. For XML import file transformation actions will be applied to the file referenced in the file
attribute of the task.
transformFiles
inherits all the attributes and elements of the Ant patternset. You have to define your include/exclude patterns in such a way that only XML files will be selected by the patternset. DPBuddy will attempt to apply all transformation actions to all matched files.
Usually, transformations are applied to the DataPower configuration file typically named “export.xml” in the zip file. In this case, you just need to specify “export.xml” in the includes
of the transformFiles
:
<transformFiles includes="export.xml">
transformFiles
has to contain at least one transform
element, as explained earlier in this document.
If transformFiles
is omitted and the imported file is “zip”, transformation actions will be applied to “export.xml” inside the zip file. If “export.xml” does not exist, an error will be thrown.
You can specify multiple transformFiles
, thus applying different transformation actions to different files.
13.1.4. transform
Nested Element¶
transform
contains the transformation actions documented in the section Using DPBuddy to Transform XML Files Using DPBuddy to Transform DataPower Configuration and XML Files.