Example of an RSpec request for a generic node.
Much of the time, you may not care which particular node you get at a Component Manager. You just want whatever node is free. Here is an example of a request which asks for any free node.
RSpec V2 Example
<?xml version="1.0" encoding="UTF-8"?>
<rspec xmlns="http://www.protogeni.net/resources/rspec/2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.protogeni.net/resources/rspec/2
http://www.protogeni.net/resources/rspec/2/request.xsd"
type="request" >
<node client_id="my-node"
exclusive="true">
<sliver_type name="raw-pc" />
</node>
</rspec>
RSpec V0.1 Example (Deprecated)
<?xml version="1.0" encoding="UTF-8"?>
<rspec xmlns="http://www.protogeni.net/resources/rspec/0.1"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.protogeni.net/resources/rspec/0.1
http://www.protogeni.net/resources/rspec/0.1/request.xsd"
type="request" >
<node virtual_id="my-node"
virtualization_type="emulab-vnode"
exclusive="1">
<node_type type_name="pc" type_slots="1"/>
<interface virtual_id="control"/>
</node>
</rspec>
