The macro unmigrated-inline-wiki-markup from Confluence is no longer available.
Top-level processes
The macro unmigrated-inline-wiki-markup from Confluence is no longer available.
- Create Items
- Delete Items
- Find Items
- Perform Operations
Update Items
The macro unmigrated-inline-wiki-markup from Confluence is no longer available.
SetupValidation directory
The processes in the SetupValidation directory contain sample values for the request elements. These sample values can be quickly changed to reflect the values in your environment. A process is provided to test each supported method of executing operations in VMware Infrastructure.
Utilities directory
The macro unmigrated-inline-wiki-markup from Confluence is no longer available.
The macro unmigrated-inline-wiki-markup from Confluence is no longer available.
Example
For the Power On VM operation, you can use the complex XML generated by the Construct Item for Power On VM constructor process.
The macro unmigrated-inline-wiki-markup from Confluence is no longer available.
The macro unmigrated-inline-wiki-markup from Confluence is no longer available.
Note
You can use the constructor processes to generate complex XML inputs that are consumed by the functional processes. For more information about constructor processes, see Utilities directory.
The macro unmigrated-inline-wiki-markup from Confluence is no longer available.
The following table describes the input elements used by a wrapper process in the adapter module.
The macro unmigrated-inline-wiki-markup from Confluence is no longer available.
The macro unmigrated-inline-wiki-markup from Confluence is no longer available.
Example
For the Create Host wrapper process, you can obtain the Items XML by using the Construct Create Host Item process in the Utilities folder in Project Explorer of the Development Studio.
The macro unmigrated-inline-wiki-markup from Confluence is no longer available.
The macro unmigrated-inline-wiki-markup from Confluence is no longer available.
Click here to expand...
<vmware-infrastructure-request>
<operation-type>Host</operation-type>
<operation-name>Create_Host</operation-name>
<user-name></user-name>
<password></password>
<parameters>
<folder>TestHostFolder</folder>
<datacenter>BMC</datacenter>
<spec>
<force>false</force>
<host-name>abc.bmc.com</host-name>
<password></password>
<port></port>
<user-name>root</user-name>
<vim-account-name></vim-account-name>
<vim-account-password></vim-account-password>
<folder>vm</folder>
</spec>
<add-connected>false</add-connected>
</parameters>
</vmware-infrastructure-request>
The macro unmigrated-inline-wiki-markup from Confluence is no longer available.
- Replacing the <vmware-infrastructure-request> tag with <items><item> tags
- Replacing the </vmware-infrastructure-request> tag with </item></items> tags
Removing the <operation-type>, <operation-name>, <user-name>, and <password> tags
The macro unmigrated-inline-wiki-markup from Confluence is no longer available.
Click here to expand...
<items>
<item>
<parameters>
<folder>TestHostFolder</folder>
<datacenter>BMC</datacenter>
<spec>
<force>false</force>
<host-name>abc.bmc.com</host-name>
<password></password>
<port></port>
<user-name>root</user-name>
<vim-account-name></vim-account-name>
<vim-account-password></vim-account-password>
<folder>vm</folder>
</spec>
<add-connected>false</add-connected>
</parameters>
</item>
<items>