Changeset c6f867c
- Timestamp:
- Nov 23, 2011 2:44:40 PM (13 years ago)
- Branches:
- compt_changes, info-ops, master
- Children:
- 45e880d
- Parents:
- f769cb3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
fedd/federation/emulab_access.py
rf769cb3 rc6f867c 1017 1017 """ 1018 1018 i = 0 1019 t = topo.clone() 1019 1020 # Copy the assigned names into the return topology 1020 for e in t opo.elements:1021 for e in t.elements: 1021 1022 if isinstance(e, topdl.Computer): 1022 1023 if not self.create_debug: … … 1043 1044 'allocationLog': logv, 1044 1045 'segmentdescription': { 1045 'topdldescription': t opo.clone().to_dict()1046 'topdldescription': t.clone().to_dict() 1046 1047 }, 1047 1048 'proof': proof.to_dict(), 1048 1049 } 1050 self.allocation[aid]['topo'] = topo.clone() 1049 1051 retval = copy.copy(self.allocation[aid]['started']) 1050 1052 self.write_state() -
wsdl/fedd_types.xsd
rf769cb3 rc6f867c 816 816 <xsd:element name="deallocationLog" type="xsd:string" minOccurs="0" 817 817 maxOccurs="1"/> 818 <xsd:element name="proof" type="tns:proofType" /> 819 </xsd:sequence> 820 </xsd:complexType> 821 822 <xsd:complexType name="infoSegmentRequestType"> 823 <xsd:annotation> 824 <xsd:documentation> 825 Request current status of the segment 826 </xsd:documentation> 827 </xsd:annotation> 828 <xsd:sequence> 829 <xsd:element name="allocID" type="tns:IDType"/> 830 </xsd:sequence> 831 </xsd:complexType> 832 833 834 <xsd:complexType name="startSegmentResponseType"> 835 <xsd:annotation> 836 <xsd:documentation> 837 Current status of the allocation 838 </xsd:documentation> 839 </xsd:annotation> 840 <xsd:sequence> 841 <xsd:element name="allocID" type="tns:IDType"/> 842 <xsd:element name="segmentdescription" 843 type="tns:experimentDescriptionType"/> 844 <xsd:element name="fedAttr" type="tns:fedAttrType" minOccurs="0" 845 maxOccurs="unbounded"/> 818 846 <xsd:element name="proof" type="tns:proofType" /> 819 847 </xsd:sequence>
Note: See TracChangeset
for help on using the changeset viewer.