[6ff0b91] | 1 | <?xml version="1.0"?> |
---|
| 2 | <xsd:schema targetNamespace="http://www.isi.edu/faber/fedd_types" |
---|
| 3 | xmlns:tns="http://www.isi.edu/faber/fedd_types" |
---|
[eec716b] | 4 | xmlns:topdl="http://www.isi.edu/faber/topdl" |
---|
[f4cc4b7] | 5 | xmlns:xsd="http://www.w3.org/2001/XMLSchema" |
---|
[6ff0b91] | 6 | xmlns="http://www.w3.org/2000/10/XMLSchema"> |
---|
| 7 | |
---|
| 8 | <xsd:complexType name="IDType"> |
---|
| 9 | <xsd:annotation> |
---|
| 10 | <xsd:documentation> |
---|
[2dafa0c] | 11 | An ID is an identifier for a principal, service, or object. This type |
---|
| 12 | is currently polymorphic o allow different implementations of type, |
---|
| 13 | though running code primarily uses localnames and fedids. |
---|
[6ff0b91] | 14 | </xsd:documentation> |
---|
| 15 | </xsd:annotation> |
---|
| 16 | <xsd:choice> |
---|
| 17 | <xsd:element name="uuid" type="xsd:base64Binary"/> |
---|
| 18 | <xsd:element name="fedid" type="xsd:base64Binary"/> |
---|
| 19 | <xsd:element name="uri" type="xsd:string"/> |
---|
[e40c7ee] | 20 | <xsd:element name="localname" type="xsd:string"/> |
---|
[6ff0b91] | 21 | <xsd:element name="kerberosUsername" type="xsd:string"/> |
---|
| 22 | </xsd:choice> |
---|
| 23 | </xsd:complexType> |
---|
| 24 | |
---|
| 25 | <xsd:complexType name="nodeType"> |
---|
| 26 | <xsd:annotation> |
---|
| 27 | <xsd:documentation> |
---|
[2dafa0c] | 28 | A node from an Emulab. It may have 0 or more images or hardware |
---|
| 29 | types associated with it. As this description is used for |
---|
| 30 | acquiring access to the testbed in question, multiple images or |
---|
| 31 | types are considered options. Specifying multiple image names |
---|
| 32 | indicates that the requester is looking for support for any of |
---|
| 33 | them. |
---|
[6ff0b91] | 34 | </xsd:documentation> |
---|
| 35 | </xsd:annotation> |
---|
| 36 | <xsd:sequence> |
---|
| 37 | <xsd:element name="image" type="xsd:string" minOccurs="0" |
---|
| 38 | maxOccurs="unbounded"/> |
---|
| 39 | <xsd:element name="hardware" type="xsd:string" minOccurs="0" |
---|
| 40 | maxOccurs="unbounded"/> |
---|
| 41 | </xsd:sequence> |
---|
| 42 | <xsd:attribute name="count" type="xsd:int" use="optional"/> |
---|
| 43 | </xsd:complexType> |
---|
| 44 | |
---|
| 45 | <xsd:simpleType name="kindType"> |
---|
[2dafa0c] | 46 | <xsd:annotation> |
---|
| 47 | <xsd:documentation> |
---|
| 48 | An indication of how requested networking capacity is measured. |
---|
| 49 | This will undoubtably expand. |
---|
| 50 | </xsd:documentation> |
---|
| 51 | </xsd:annotation> |
---|
[6ff0b91] | 52 | <xsd:restriction base="xsd:string"> |
---|
| 53 | <xsd:enumeration value="max"/> |
---|
| 54 | <xsd:enumeration value="average"/> |
---|
| 55 | </xsd:restriction> |
---|
| 56 | </xsd:simpleType> |
---|
| 57 | |
---|
[bd3e314] | 58 | <xsd:simpleType name="statusType"> |
---|
| 59 | <xsd:annotation> |
---|
| 60 | <xsd:documentation> |
---|
| 61 | The current state of the experiment. |
---|
| 62 | </xsd:documentation> |
---|
| 63 | </xsd:annotation> |
---|
| 64 | <xsd:restriction base="xsd:string"> |
---|
| 65 | <xsd:enumeration value="active"/> |
---|
| 66 | <xsd:enumeration value="starting"/> |
---|
| 67 | <xsd:enumeration value="terminating"/> |
---|
| 68 | <xsd:enumeration value="failed"/> |
---|
| 69 | </xsd:restriction> |
---|
| 70 | </xsd:simpleType> |
---|
| 71 | |
---|
[6ff0b91] | 72 | <xsd:complexType name="capacityType"> |
---|
| 73 | <xsd:annotation> |
---|
| 74 | <xsd:documentation> |
---|
[2dafa0c] | 75 | A strawman network capacity description for access negotiation. |
---|
| 76 | This will come to include more and more interesting parameters. |
---|
[6ff0b91] | 77 | </xsd:documentation> |
---|
| 78 | </xsd:annotation> |
---|
| 79 | <xsd:sequence> |
---|
| 80 | <xsd:element name="rate" type="xsd:double"/> |
---|
| 81 | <xsd:element name="kind" type="tns:kindType"/> |
---|
| 82 | </xsd:sequence> |
---|
| 83 | </xsd:complexType> |
---|
| 84 | |
---|
| 85 | <xsd:complexType name="accessType"> |
---|
| 86 | <xsd:annotation> |
---|
| 87 | <xsd:documentation> |
---|
[2dafa0c] | 88 | This captures an access credential that will be used to access |
---|
| 89 | resources. These are certificates or public keys. The type is |
---|
| 90 | used to designate the key to which access should be bound, or on |
---|
| 91 | a reply has been bound. Dynamic credentials where new keys have |
---|
| 92 | been created may also be passed in this kind of field. |
---|
[6ff0b91] | 93 | </xsd:documentation> |
---|
| 94 | </xsd:annotation> |
---|
| 95 | <xsd:choice> |
---|
| 96 | <xsd:element name="X509" type="xsd:base64Binary"/> |
---|
| 97 | <xsd:element name="sshPubkey" type="xsd:base64Binary"/> |
---|
| 98 | <xsd:element name="pgpPubkey" type="xsd:base64Binary"/> |
---|
| 99 | </xsd:choice> |
---|
| 100 | </xsd:complexType> |
---|
| 101 | |
---|
[abb87eb] | 102 | <xsd:simpleType name="userRole"> |
---|
| 103 | <xsd:annotation> |
---|
| 104 | <xsd:documentation> |
---|
[2dafa0c] | 105 | This defines the role the user/account is playing in the |
---|
| 106 | federated experiment. An account being accessed by the |
---|
| 107 | federation system to create the experiment is in the |
---|
| 108 | experimentCreation role and the accounts that experimenters will |
---|
| 109 | use to access local testbed services (e.g., rebooting a local |
---|
| 110 | node) are serviceAccess roles. |
---|
[abb87eb] | 111 | </xsd:documentation> |
---|
| 112 | </xsd:annotation> |
---|
| 113 | <xsd:restriction base="xsd:string"> |
---|
| 114 | <xsd:enumeration value="serviceAccess"/> |
---|
| 115 | <xsd:enumeration value="experimentCreation"/> |
---|
| 116 | </xsd:restriction> |
---|
| 117 | </xsd:simpleType> |
---|
| 118 | |
---|
| 119 | |
---|
[6ff0b91] | 120 | <xsd:complexType name="userType"> |
---|
| 121 | <xsd:annotation> |
---|
| 122 | <xsd:documentation> |
---|
[2dafa0c] | 123 | The definition of a user principal. It includes the |
---|
| 124 | identification of the user as an ID type, the access credential(s) |
---|
| 125 | that the user will use, and the role of the user, if any. |
---|
| 126 | Multiple access keys may be used, and it is also possible for |
---|
| 127 | the user to be anonymous. Though it is possible to specify a |
---|
| 128 | user without ID, access, or role, it is difficult to imagine |
---|
| 129 | such a user being useful. |
---|
[6ff0b91] | 130 | </xsd:documentation> |
---|
| 131 | </xsd:annotation> |
---|
| 132 | <xsd:sequence> |
---|
| 133 | <xsd:element name="userID" type="tns:IDType" minOccurs="0" |
---|
| 134 | maxOccurs="1"/> |
---|
| 135 | <xsd:element name="access" type="tns:accessType" minOccurs="0" |
---|
| 136 | maxOccurs="unbounded"/> |
---|
[abb87eb] | 137 | <xsd:element name="role" type="tns:userRole" minOccurs="0" maxOccurs="1"/> |
---|
[6ff0b91] | 138 | </xsd:sequence> |
---|
| 139 | </xsd:complexType> |
---|
| 140 | |
---|
| 141 | <xsd:complexType name="fedAttrType"> |
---|
| 142 | <xsd:annotation> |
---|
| 143 | <xsd:documentation> |
---|
[2dafa0c] | 144 | A general attribute/value pair for passing federation parameters and |
---|
| 145 | preferences. Anything encodable in XML is allowed. This is a |
---|
| 146 | point for customization and extension. |
---|
[6ff0b91] | 147 | </xsd:documentation> |
---|
| 148 | </xsd:annotation> |
---|
| 149 | <xsd:sequence> |
---|
| 150 | <xsd:element name="attribute" type="xsd:string"/> |
---|
| 151 | <xsd:element name="value" type="xsd:string"/> |
---|
| 152 | </xsd:sequence> |
---|
| 153 | </xsd:complexType> |
---|
| 154 | |
---|
| 155 | |
---|
| 156 | <xsd:complexType name="resourcesType"> |
---|
| 157 | <xsd:annotation> |
---|
| 158 | <xsd:documentation> |
---|
[2dafa0c] | 159 | The estimate of resources a requester is looking for, or the |
---|
| 160 | response of a testbed indicating what it can provide. This is |
---|
| 161 | something of a placeholder for a full resource specification, |
---|
| 162 | and alternative encodings are likely to be imported. |
---|
[6ff0b91] | 163 | </xsd:documentation> |
---|
| 164 | </xsd:annotation> |
---|
| 165 | <xsd:sequence> |
---|
| 166 | <xsd:element name="node" type="tns:nodeType" minOccurs="0" |
---|
| 167 | maxOccurs="unbounded" /> |
---|
| 168 | <xsd:element name="capacity" type="tns:capacityType" minOccurs="0" |
---|
| 169 | maxOccurs="unbounded"/> |
---|
| 170 | </xsd:sequence> |
---|
| 171 | </xsd:complexType> |
---|
| 172 | |
---|
[6679c122] | 173 | <xsd:complexType name="mapType"> |
---|
| 174 | <xsd:annotation> |
---|
| 175 | <xsd:documentation> |
---|
| 176 | Explicit translation of testbed attribute in a federated experiment |
---|
[2dafa0c] | 177 | description to the URI at which the controlling federation |
---|
| 178 | system can be reached. Used in a creation request. |
---|
| 179 | |
---|
| 180 | This type allows tools to encode experiments in familiar local |
---|
| 181 | names for experimenters while providing remote federation |
---|
| 182 | systems the information to map the local name into a service |
---|
| 183 | location. |
---|
[6679c122] | 184 | </xsd:documentation> |
---|
| 185 | </xsd:annotation> |
---|
| 186 | <xsd:sequence> |
---|
| 187 | <xsd:element name="testbed" type="tns:IDType"/> |
---|
| 188 | <xsd:element name="uri" type="xsd:string"/> |
---|
| 189 | </xsd:sequence> |
---|
| 190 | </xsd:complexType> |
---|
| 191 | |
---|
| 192 | |
---|
[6ff0b91] | 193 | <xsd:complexType name="projectType"> |
---|
| 194 | <xsd:annotation> |
---|
| 195 | <xsd:documentation> |
---|
[2dafa0c] | 196 | A description of the project used to access a testbed. Includes |
---|
| 197 | the testbed being accessed, the project name (often a local |
---|
| 198 | name, scoped by the testbed), and any users who have been |
---|
| 199 | granted access or for whom access is being requested. |
---|
[6ff0b91] | 200 | </xsd:documentation> |
---|
| 201 | </xsd:annotation> |
---|
| 202 | <xsd:sequence> |
---|
[6679c122] | 203 | <xsd:element name="testbed" type="tns:IDType" minOccurs="0" |
---|
| 204 | maxOccurs="1"/> |
---|
[ef36c1e] | 205 | <xsd:element name="name" type="tns:IDType" minOccurs="0" maxOccurs="1"/> |
---|
[6ff0b91] | 206 | <xsd:element name="user" type="tns:userType" minOccurs="0" |
---|
| 207 | maxOccurs="unbounded"/> |
---|
| 208 | </xsd:sequence> |
---|
| 209 | </xsd:complexType> |
---|
| 210 | |
---|
| 211 | <xsd:complexType name="emulabType"> |
---|
| 212 | <xsd:annotation> |
---|
| 213 | <xsd:documentation> |
---|
[2dafa0c] | 214 | A description of an Emulab sufficient for the federation system |
---|
| 215 | to create a sub experiment on it. Note that fedAttrs provide an |
---|
| 216 | extension mechanism by which testbeds may communicate additional |
---|
| 217 | information and preferences to federation systems that |
---|
| 218 | understand it. |
---|
[6ff0b91] | 219 | </xsd:documentation> |
---|
| 220 | </xsd:annotation> |
---|
| 221 | <xsd:sequence> |
---|
| 222 | <xsd:element name="project" type="tns:projectType"/> |
---|
| 223 | <xsd:element name="domain" type="xsd:string"/> |
---|
| 224 | <xsd:element name="boss" type="xsd:string"/> |
---|
| 225 | <xsd:element name="ops" type="xsd:string"/> |
---|
| 226 | <xsd:element name="fileServer" type="xsd:string"/> |
---|
| 227 | <xsd:element name="eventServer" type="xsd:string"/> |
---|
| 228 | <xsd:element name="fedAttr" type="tns:fedAttrType" minOccurs="0" |
---|
| 229 | maxOccurs="unbounded"/> |
---|
| 230 | </xsd:sequence> |
---|
| 231 | </xsd:complexType> |
---|
[7da9da6] | 232 | |
---|
[e40c7ee] | 233 | <xsd:complexType name="federatedExperimentType"> |
---|
| 234 | <xsd:annotation> |
---|
| 235 | <xsd:documentation> |
---|
[2dafa0c] | 236 | Naming and Emulab instantiation information about a federant. |
---|
| 237 | This is returned by various informational requests and as part |
---|
| 238 | of a successful creation message. |
---|
[e40c7ee] | 239 | </xsd:documentation> |
---|
| 240 | </xsd:annotation> |
---|
| 241 | <xsd:sequence> |
---|
| 242 | <xsd:element name="name" type="tns:IDType" minOccurs="1" |
---|
| 243 | maxOccurs="unbounded"/> |
---|
| 244 | <xsd:element name="emulab" type="tns:emulabType"/> |
---|
| 245 | <xsd:element name="master" type="xsd:boolean"/> |
---|
| 246 | </xsd:sequence> |
---|
| 247 | </xsd:complexType> |
---|
| 248 | |
---|
| 249 | |
---|
[b234bb9] | 250 | <xsd:complexType name="vtoponodeType"> |
---|
| 251 | <xsd:annotation> |
---|
| 252 | <xsd:documentation> |
---|
[2dafa0c] | 253 | Node in the virtual topology of a federated experiment (Emulab |
---|
| 254 | legacy). The fields are the local hostname and the IP addresses |
---|
| 255 | of the experimental interfaces(colon-separated). |
---|
[b234bb9] | 256 | </xsd:documentation> |
---|
| 257 | </xsd:annotation> |
---|
| 258 | <xsd:sequence> |
---|
| 259 | <xsd:element name="vname" type="xsd:string"/> |
---|
| 260 | <xsd:element name="ips" type="xsd:string"/> |
---|
| 261 | </xsd:sequence> |
---|
| 262 | </xsd:complexType> |
---|
| 263 | |
---|
| 264 | <xsd:complexType name="vtopolanType"> |
---|
| 265 | <xsd:annotation> |
---|
| 266 | <xsd:documentation> |
---|
[2dafa0c] | 267 | LAN in the virtual topology of a federated experiment (Emulab legacy). |
---|
| 268 | The fields are the name of the LAN/link (vname) the node that |
---|
| 269 | this description applies to (vnode), the IP of the connection, |
---|
| 270 | and performance information. |
---|
[b234bb9] | 271 | </xsd:documentation> |
---|
| 272 | </xsd:annotation> |
---|
| 273 | <xsd:sequence> |
---|
| 274 | <xsd:element name="vname" type="xsd:string"/> |
---|
| 275 | <xsd:element name="vnode" type="xsd:string"/> |
---|
| 276 | <xsd:element name="ip" type="xsd:string"/> |
---|
| 277 | <xsd:element name="bandwidth" type="xsd:int"/> |
---|
| 278 | <xsd:element name="delay" type="xsd:float"/> |
---|
| 279 | <xsd:element name="member" type="xsd:string"/> |
---|
| 280 | </xsd:sequence> |
---|
| 281 | </xsd:complexType> |
---|
| 282 | |
---|
| 283 | <xsd:complexType name="vtopoType"> |
---|
| 284 | <xsd:annotation> |
---|
| 285 | <xsd:documentation> |
---|
[2dafa0c] | 286 | The virtual topology of a federated experiment (Emulab legacy). |
---|
[b234bb9] | 287 | </xsd:documentation> |
---|
| 288 | </xsd:annotation> |
---|
| 289 | <xsd:sequence> |
---|
[bcbf543] | 290 | <xsd:element name="node" type="tns:vtoponodeType" minOccurs="0" |
---|
| 291 | maxOccurs="unbounded" /> |
---|
| 292 | <xsd:element name="lan" type="tns:vtopolanType" minOccurs="0" |
---|
| 293 | maxOccurs="unbounded"/> |
---|
[b234bb9] | 294 | </xsd:sequence> |
---|
| 295 | </xsd:complexType> |
---|
| 296 | |
---|
| 297 | <xsd:complexType name="visnodeType"> |
---|
| 298 | <xsd:annotation> |
---|
| 299 | <xsd:documentation> |
---|
[2dafa0c] | 300 | Node in the visualization of a federated experiment (Emulab |
---|
| 301 | legacy). Fields include the local hostname of the node, x,y |
---|
| 302 | coordinates in a 2-dimensional representation, and whether the |
---|
| 303 | node in the visualization is a host or a LAN. |
---|
[b234bb9] | 304 | </xsd:documentation> |
---|
| 305 | </xsd:annotation> |
---|
| 306 | <xsd:sequence> |
---|
| 307 | <xsd:element name="name" type="xsd:string"/> |
---|
| 308 | <xsd:element name="x" type="xsd:int"/> |
---|
| 309 | <xsd:element name="y" type="xsd:int"/> |
---|
| 310 | <xsd:element name="type" type="xsd:string"/> |
---|
| 311 | </xsd:sequence> |
---|
| 312 | </xsd:complexType> |
---|
| 313 | |
---|
| 314 | <xsd:complexType name="visType"> |
---|
| 315 | <xsd:annotation> |
---|
| 316 | <xsd:documentation> |
---|
[2dafa0c] | 317 | The visualization of a federated experiment (Emulab legacy) |
---|
[b234bb9] | 318 | </xsd:documentation> |
---|
| 319 | </xsd:annotation> |
---|
| 320 | <xsd:sequence> |
---|
| 321 | <xsd:element name="node" type="tns:visnodeType" minOccurs="0" |
---|
| 322 | maxOccurs="unbounded"/> |
---|
| 323 | </xsd:sequence> |
---|
| 324 | </xsd:complexType> |
---|
| 325 | |
---|
[7da9da6] | 326 | <xsd:complexType name="projectAllocType"> |
---|
| 327 | <xsd:annotation> |
---|
| 328 | <xsd:documentation> |
---|
[2dafa0c] | 329 | The information needed to create a dynamic project, specifically |
---|
| 330 | a project description and the resources in needs access to. |
---|
| 331 | This is used by an internal fedd interface. |
---|
[7da9da6] | 332 | </xsd:documentation> |
---|
| 333 | </xsd:annotation> |
---|
| 334 | <xsd:sequence> |
---|
| 335 | <xsd:element name="project" type="tns:projectType"/> |
---|
| 336 | <xsd:element name="resources" type="tns:resourcesType" |
---|
| 337 | minOccurs="0" maxOccurs="1"/> |
---|
| 338 | </xsd:sequence> |
---|
| 339 | </xsd:complexType> |
---|
[ef36c1e] | 340 | |
---|
[3925b50] | 341 | <xsd:complexType name="experimentDescriptionType"> |
---|
| 342 | <xsd:annotation> |
---|
| 343 | <xsd:documentation> |
---|
[2dafa0c] | 344 | The description of the federated experiment, in extended ns2. |
---|
[3925b50] | 345 | </xsd:documentation> |
---|
| 346 | </xsd:annotation> |
---|
| 347 | <xsd:choice> |
---|
| 348 | <xsd:element name="ns2description" type="xsd:base64Binary"/> |
---|
[eec716b] | 349 | <xsd:element name="topdldescription" type="topdl:topologyType"/> |
---|
[3925b50] | 350 | </xsd:choice> |
---|
| 351 | </xsd:complexType> |
---|
| 352 | |
---|
[6ff0b91] | 353 | <xsd:complexType name="requestType"> |
---|
| 354 | <xsd:annotation> |
---|
| 355 | <xsd:documentation> |
---|
[2dafa0c] | 356 | Request for access to a testbed. It includes the testbed from |
---|
| 357 | which resources are being requested (a single service may |
---|
| 358 | provide access to many), the user or project requesting access |
---|
| 359 | (a testbed making the request will leave both empty), the |
---|
| 360 | resources needed, the access keys to be used in the subsequent |
---|
| 361 | instantiation and service use, an allocation ID to identify this |
---|
| 362 | access in later requests, and scheduling information. |
---|
[6ff0b91] | 363 | </xsd:documentation> |
---|
| 364 | </xsd:annotation> |
---|
| 365 | <xsd:sequence> |
---|
| 366 | <xsd:element name="destinationTestbed" type="tns:IDType" |
---|
| 367 | minOccurs="0" maxOccurs="1" /> |
---|
| 368 | <xsd:choice> |
---|
| 369 | <xsd:element name="project" type="tns:projectType" minOccurs="0" |
---|
| 370 | maxOccurs="1"/> |
---|
| 371 | <xsd:element name="user" type="tns:userType" minOccurs="0" |
---|
| 372 | maxOccurs="unbounded"/> |
---|
| 373 | </xsd:choice> |
---|
| 374 | <xsd:element name="resources" type="tns:resourcesType" minOccurs="0" |
---|
| 375 | maxOccurs="1"/> |
---|
[abb87eb] | 376 | <xsd:element name="createAccess" type="tns:accessType" minOccurs="1" |
---|
| 377 | maxOccurs="unbounded"/> |
---|
| 378 | <xsd:element name="serviceAccess" type="tns:accessType" minOccurs="1" |
---|
[6ff0b91] | 379 | maxOccurs="unbounded"/> |
---|
[5576a47] | 380 | <xsd:element name="exportProject" type="tns:IDType" |
---|
| 381 | minOccurs="0" maxOccurs="1"/> |
---|
[6ff0b91] | 382 | <xsd:element name="allocID" type="tns:IDType"/> |
---|
| 383 | <xsd:element name="when" type="xsd:dateTime" minOccurs="0" maxOccurs="1"/> |
---|
| 384 | <xsd:element name="until" type="xsd:dateTime" minOccurs="0" |
---|
| 385 | maxOccurs="1"/> |
---|
| 386 | </xsd:sequence> |
---|
| 387 | </xsd:complexType> |
---|
| 388 | |
---|
| 389 | <xsd:complexType name="responseType"> |
---|
| 390 | <xsd:annotation> |
---|
| 391 | <xsd:documentation> |
---|
[2dafa0c] | 392 | Response to an access request. Includes the allocation, the |
---|
| 393 | information needed to access creation and experiment services |
---|
| 394 | and scheduling information. |
---|
[6ff0b91] | 395 | </xsd:documentation> |
---|
| 396 | </xsd:annotation> |
---|
| 397 | <xsd:sequence> |
---|
| 398 | <xsd:element name="allocID" type="tns:IDType"/> |
---|
| 399 | <xsd:element name="emulab" type="tns:emulabType"/> |
---|
| 400 | <xsd:element name="when" type="xsd:dateTime" minOccurs="0" maxOccurs="1"/> |
---|
| 401 | <xsd:element name="until" type="xsd:dateTime" minOccurs="0" |
---|
| 402 | maxOccurs="1"/> |
---|
| 403 | </xsd:sequence> |
---|
| 404 | </xsd:complexType> |
---|
| 405 | |
---|
[d81971a] | 406 | <xsd:complexType name="releaseRequestType"> |
---|
| 407 | <xsd:annotation> |
---|
| 408 | <xsd:documentation> |
---|
| 409 | A request to release the access rights allocated by an earlier |
---|
| 410 | RequestAccess call. |
---|
| 411 | </xsd:documentation> |
---|
| 412 | </xsd:annotation> |
---|
| 413 | <xsd:sequence> |
---|
| 414 | <xsd:element name="allocID" type="tns:IDType"/> |
---|
| 415 | </xsd:sequence> |
---|
| 416 | </xsd:complexType> |
---|
| 417 | |
---|
| 418 | <xsd:complexType name="releaseResponseType"> |
---|
| 419 | <xsd:annotation> |
---|
| 420 | <xsd:documentation> |
---|
| 421 | Indication that the access has been terminated. |
---|
| 422 | </xsd:documentation> |
---|
| 423 | </xsd:annotation> |
---|
| 424 | <xsd:sequence> |
---|
| 425 | <xsd:element name="allocID" type="tns:IDType"/> |
---|
| 426 | </xsd:sequence> |
---|
| 427 | </xsd:complexType> |
---|
| 428 | |
---|
[6679c122] | 429 | <xsd:complexType name="createRequestType"> |
---|
| 430 | <xsd:annotation> |
---|
| 431 | <xsd:documentation> |
---|
[2dafa0c] | 432 | A request to embed a federated experiment across testbeds. Non- |
---|
| 433 | standard local names for testbeds are included in the |
---|
| 434 | testbedmap, the user making the request, the experiment |
---|
| 435 | description, master testbed, and a suggested experiment name are |
---|
| 436 | included. More than one name can be suggested, either as |
---|
| 437 | synonyms (a fedid and a localname) or as choices (multiple |
---|
| 438 | localnames). |
---|
[6679c122] | 439 | </xsd:documentation> |
---|
| 440 | </xsd:annotation> |
---|
| 441 | <xsd:sequence> |
---|
| 442 | <xsd:element name="testbedmap" type="tns:mapType" minOccurs="0" |
---|
| 443 | maxOccurs="unbounded"/> |
---|
| 444 | <xsd:element name="user" type="tns:userType" minOccurs="1" |
---|
| 445 | maxOccurs="unbounded"/> |
---|
[3925b50] | 446 | <xsd:element name="experimentdescription" |
---|
| 447 | type="tns:experimentDescriptionType"/> |
---|
[3441fe3] | 448 | <xsd:element name="master" type="xsd:string"/> |
---|
[5576a47] | 449 | <xsd:element name='exportProject' type="tns:IDType"/> |
---|
[e40c7ee] | 450 | <xsd:element name="experimentID" type="tns:IDType" minOccurs="0" |
---|
| 451 | maxOccurs="1"/> |
---|
[6679c122] | 452 | </xsd:sequence> |
---|
| 453 | </xsd:complexType> |
---|
| 454 | |
---|
| 455 | <xsd:complexType name="createResponseType"> |
---|
| 456 | <xsd:annotation> |
---|
| 457 | <xsd:documentation> |
---|
[bd3e314] | 458 | Returned to let the caller know that the request is underway and what |
---|
| 459 | credentials will eventauly be able to be used to access them. |
---|
[6679c122] | 460 | </xsd:documentation> |
---|
| 461 | </xsd:annotation> |
---|
| 462 | <xsd:sequence> |
---|
[e40c7ee] | 463 | <xsd:element name="experimentID" type="tns:IDType" minOccurs="1" |
---|
| 464 | maxOccurs="unbounded"/> |
---|
[bd3e314] | 465 | <xsd:element name="experimentStatus" type="tns:statusType"/> |
---|
[4fc2250] | 466 | <xsd:element name="experimentAccess" type="tns:accessType" minOccurs="0" |
---|
| 467 | maxOccurs="1"/> |
---|
[6679c122] | 468 | </xsd:sequence> |
---|
| 469 | </xsd:complexType> |
---|
| 470 | |
---|
[987aaa1] | 471 | <xsd:complexType name="vtopoRequestType"> |
---|
| 472 | <xsd:annotation> |
---|
| 473 | <xsd:documentation> |
---|
[2dafa0c] | 474 | Request for an existing experiment's virtual topology. |
---|
| 475 | Different information may be returned based on the user's rights |
---|
| 476 | to see the topology. |
---|
[987aaa1] | 477 | </xsd:documentation> |
---|
| 478 | </xsd:annotation> |
---|
| 479 | <xsd:sequence> |
---|
| 480 | <xsd:element name="experiment" type="tns:IDType"/> |
---|
| 481 | </xsd:sequence> |
---|
| 482 | </xsd:complexType> |
---|
| 483 | |
---|
| 484 | <xsd:complexType name="vtopoResponseType"> |
---|
| 485 | <xsd:annotation> |
---|
| 486 | <xsd:documentation> |
---|
[2dafa0c] | 487 | The response to a topology request. Different information may |
---|
| 488 | be returned based on the user's rights to see the topology. |
---|
[987aaa1] | 489 | </xsd:documentation> |
---|
| 490 | </xsd:annotation> |
---|
| 491 | <xsd:sequence> |
---|
| 492 | <xsd:element name="experiment" type="tns:IDType"/> |
---|
| 493 | <xsd:element name="vtopo" type="tns:vtopoType"/> |
---|
| 494 | </xsd:sequence> |
---|
| 495 | </xsd:complexType> |
---|
| 496 | |
---|
| 497 | |
---|
| 498 | <xsd:complexType name="visRequestType"> |
---|
| 499 | <xsd:annotation> |
---|
| 500 | <xsd:documentation> |
---|
[2dafa0c] | 501 | Request for an existing experiment's visualization. This is |
---|
| 502 | largely a compatibility service. Different information may be |
---|
| 503 | returned based on the user's rights to see the topology. |
---|
[987aaa1] | 504 | </xsd:documentation> |
---|
| 505 | </xsd:annotation> |
---|
| 506 | <xsd:sequence> |
---|
| 507 | <xsd:element name="experiment" type="tns:IDType"/> |
---|
| 508 | </xsd:sequence> |
---|
| 509 | </xsd:complexType> |
---|
| 510 | |
---|
| 511 | <xsd:complexType name="visResponseType"> |
---|
| 512 | <xsd:annotation> |
---|
| 513 | <xsd:documentation> |
---|
[2dafa0c] | 514 | An existing experiment's visualization. This is largely a |
---|
| 515 | compatibility service. Different information may be returned |
---|
| 516 | based on the user's rights to see the topology. |
---|
[987aaa1] | 517 | </xsd:documentation> |
---|
| 518 | </xsd:annotation> |
---|
| 519 | <xsd:sequence> |
---|
| 520 | <xsd:element name="experiment" type="tns:IDType"/> |
---|
| 521 | <xsd:element name="vis" type="tns:visType"/> |
---|
| 522 | </xsd:sequence> |
---|
| 523 | </xsd:complexType> |
---|
| 524 | |
---|
[c52c48d] | 525 | <xsd:complexType name="infoRequestType"> |
---|
| 526 | <xsd:annotation> |
---|
| 527 | <xsd:documentation> |
---|
[2dafa0c] | 528 | A combined topology, visualalization, and federant request. |
---|
| 529 | Different information may be returned based on the user's rights |
---|
[bd3e314] | 530 | to see the topology. |
---|
| 531 | </xsd:documentation> |
---|
[c52c48d] | 532 | </xsd:annotation> |
---|
| 533 | <xsd:sequence> |
---|
| 534 | <xsd:element name="experiment" type="tns:IDType"/> |
---|
| 535 | </xsd:sequence> |
---|
| 536 | </xsd:complexType> |
---|
| 537 | |
---|
| 538 | <xsd:complexType name="infoResponseType"> |
---|
| 539 | <xsd:annotation> |
---|
| 540 | <xsd:documentation> |
---|
[bd3e314] | 541 | Information on an instantiated experiment. Different information may |
---|
| 542 | be returned based on the user's rights to see the topology. Includes |
---|
| 543 | the information about federants hosting sub-experiments for service |
---|
| 544 | access as well as virtual topology and visualization information. All |
---|
| 545 | that information is relative to the requester. ExperimentAccess |
---|
| 546 | includes credentials with which one can access the experiment. These |
---|
| 547 | may include a public key necessary to prove possession of the |
---|
| 548 | credential and should be treated with care. |
---|
[c52c48d] | 549 | </xsd:documentation> |
---|
| 550 | </xsd:annotation> |
---|
| 551 | <xsd:sequence> |
---|
| 552 | <xsd:element name="federant" type="tns:federatedExperimentType" |
---|
[bd3e314] | 553 | minOccurs="0" maxOccurs="unbounded"/> |
---|
[c52c48d] | 554 | <xsd:element name="vtopo" type="tns:vtopoType" minOccurs="0" |
---|
| 555 | maxOccurs="1"/> |
---|
| 556 | <xsd:element name="vis" type="tns:visType" minOccurs="0" |
---|
| 557 | maxOccurs="1"/> |
---|
| 558 | <xsd:element name="experimentID" type="tns:IDType" minOccurs="1" |
---|
| 559 | maxOccurs="unbounded"/> |
---|
[bd3e314] | 560 | <xsd:element name="allocationLog" type="xsd:string" minOccurs="0" |
---|
| 561 | maxOccurs="1"/> |
---|
| 562 | <xsd:element name="experimentStatus" type="tns:statusType"/> |
---|
| 563 | <xsd:element name="experimentAccess" type="tns:accessType" minOccurs="0" |
---|
| 564 | maxOccurs="1"/> |
---|
[c52c48d] | 565 | </xsd:sequence> |
---|
| 566 | </xsd:complexType> |
---|
| 567 | |
---|
[65f3f29] | 568 | |
---|
| 569 | <xsd:complexType name="multiInfoRequestType"> |
---|
| 570 | <xsd:annotation> |
---|
| 571 | <xsd:documentation> |
---|
| 572 | Gets all information that this user can access on this fedd. |
---|
| 573 | </xsd:documentation> |
---|
| 574 | </xsd:annotation> |
---|
| 575 | <xsd:sequence> |
---|
| 576 | </xsd:sequence> |
---|
| 577 | </xsd:complexType> |
---|
| 578 | |
---|
| 579 | <xsd:complexType name="multiInfoResponseType"> |
---|
| 580 | <xsd:annotation> |
---|
| 581 | <xsd:documentation> |
---|
| 582 | Multi info response. A list of infoResponses |
---|
| 583 | </xsd:documentation> |
---|
| 584 | </xsd:annotation> |
---|
| 585 | <xsd:sequence> |
---|
| 586 | <xsd:element name="info" type="tns:infoResponseType" minOccurs="0" |
---|
| 587 | maxOccurs="unbounded"/> |
---|
| 588 | </xsd:sequence> |
---|
| 589 | </xsd:complexType> |
---|
| 590 | |
---|
[7a8d667] | 591 | <xsd:complexType name="terminateRequestType"> |
---|
| 592 | <xsd:annotation> |
---|
| 593 | <xsd:documentation> |
---|
[2dafa0c] | 594 | Request to terminate an experiment. |
---|
[7a8d667] | 595 | </xsd:documentation> |
---|
| 596 | </xsd:annotation> |
---|
| 597 | <xsd:sequence> |
---|
| 598 | <xsd:element name="experiment" type="tns:IDType"/> |
---|
[ca489e8] | 599 | <xsd:element name="force" type="xsd:boolean" minOccurs="0" maxOccurs="1"/> |
---|
[7a8d667] | 600 | </xsd:sequence> |
---|
| 601 | </xsd:complexType> |
---|
| 602 | |
---|
| 603 | <xsd:complexType name="terminateResponseType"> |
---|
| 604 | <xsd:annotation> |
---|
| 605 | <xsd:documentation> |
---|
[2dafa0c] | 606 | Indication that the experiment has been terminated. |
---|
[7a8d667] | 607 | </xsd:documentation> |
---|
| 608 | </xsd:annotation> |
---|
| 609 | <xsd:sequence> |
---|
| 610 | <xsd:element name="experiment" type="tns:IDType"/> |
---|
[46e4682] | 611 | <xsd:element name="deallocationLog" type="xsd:string" minOccurs="0" |
---|
| 612 | maxOccurs="1"/> |
---|
[7a8d667] | 613 | </xsd:sequence> |
---|
| 614 | </xsd:complexType> |
---|
| 615 | |
---|
[66861a2] | 616 | <xsd:complexType name="startSegmentRequestType"> |
---|
| 617 | <xsd:annotation> |
---|
| 618 | <xsd:documentation> |
---|
| 619 | Request a testbed to create a segment in the given allocation |
---|
| 620 | </xsd:documentation> |
---|
| 621 | </xsd:annotation> |
---|
| 622 | <xsd:sequence> |
---|
| 623 | <xsd:element name="allocID" type="tns:IDType"/> |
---|
| 624 | <xsd:element name="segmentdescription" |
---|
| 625 | type="tns:experimentDescriptionType"/> |
---|
[f5ae004] | 626 | <xsd:element name="master" type="xsd:boolean"/> |
---|
[66861a2] | 627 | <xsd:element name="fedAttr" type="tns:fedAttrType" minOccurs="0" |
---|
| 628 | maxOccurs="unbounded"/> |
---|
| 629 | </xsd:sequence> |
---|
| 630 | </xsd:complexType> |
---|
| 631 | |
---|
| 632 | <xsd:complexType name="startSegmentResponseType"> |
---|
| 633 | <xsd:annotation> |
---|
| 634 | <xsd:documentation> |
---|
| 635 | Indication that the segment started successfully |
---|
| 636 | </xsd:documentation> |
---|
| 637 | </xsd:annotation> |
---|
| 638 | <xsd:sequence> |
---|
| 639 | <xsd:element name="allocID" type="tns:IDType"/> |
---|
| 640 | <xsd:element name="allocationLog" type="xsd:string" minOccurs="0" |
---|
| 641 | maxOccurs="1"/> |
---|
| 642 | </xsd:sequence> |
---|
| 643 | </xsd:complexType> |
---|
| 644 | |
---|
[2b7d768] | 645 | <xsd:complexType name="terminateSegmentRequestType"> |
---|
| 646 | <xsd:annotation> |
---|
| 647 | <xsd:documentation> |
---|
| 648 | Request to terminate an experiment. |
---|
| 649 | </xsd:documentation> |
---|
| 650 | </xsd:annotation> |
---|
| 651 | <xsd:sequence> |
---|
| 652 | <xsd:element name="allocID" type="tns:IDType"/> |
---|
| 653 | <xsd:element name="force" type="xsd:boolean" minOccurs="0" maxOccurs="1"/> |
---|
| 654 | </xsd:sequence> |
---|
| 655 | </xsd:complexType> |
---|
| 656 | |
---|
| 657 | <xsd:complexType name="terminateSegmentResponseType"> |
---|
| 658 | <xsd:annotation> |
---|
| 659 | <xsd:documentation> |
---|
| 660 | Indication that the experiment has been terminated. |
---|
| 661 | </xsd:documentation> |
---|
| 662 | </xsd:annotation> |
---|
| 663 | <xsd:sequence> |
---|
| 664 | <xsd:element name="allocID" type="tns:IDType"/> |
---|
| 665 | <xsd:element name="deallocationLog" type="xsd:string" minOccurs="0" |
---|
| 666 | maxOccurs="1"/> |
---|
| 667 | </xsd:sequence> |
---|
| 668 | </xsd:complexType> |
---|
| 669 | |
---|
[4700b3b] | 670 | <xsd:complexType name="ns2SplitRequestType"> |
---|
| 671 | <xsd:annotation> |
---|
| 672 | <xsd:documentation> |
---|
[2dafa0c] | 673 | Request to run the CEDL splitter remotely. This is primarily an |
---|
| 674 | internal interface. |
---|
[4700b3b] | 675 | </xsd:documentation> |
---|
| 676 | </xsd:annotation> |
---|
| 677 | <xsd:sequence> |
---|
| 678 | <xsd:element name="description" type="tns:experimentDescriptionType"/> |
---|
| 679 | <xsd:element name="master" type="xsd:string"/> |
---|
[f4cc4b7] | 680 | <xsd:element name="include_fedkit" type="xsd:boolean"/> |
---|
| 681 | <xsd:element name="include_gatewaykit" type="xsd:boolean"/> |
---|
[4700b3b] | 682 | </xsd:sequence> |
---|
| 683 | </xsd:complexType> |
---|
| 684 | |
---|
| 685 | <xsd:complexType name="ns2SplitResponseType"> |
---|
| 686 | <xsd:annotation> |
---|
| 687 | <xsd:documentation> |
---|
[2dafa0c] | 688 | Remote splitter output. Also an internal interface |
---|
[4700b3b] | 689 | </xsd:documentation> |
---|
| 690 | </xsd:annotation> |
---|
| 691 | <xsd:sequence> |
---|
| 692 | <xsd:element name="output" type="xsd:base64Binary"/> |
---|
[66861a2] | 693 | <xsd:element name="experimentdescription" |
---|
| 694 | type="tns:experimentDescriptionType"/> |
---|
[4700b3b] | 695 | </xsd:sequence> |
---|
| 696 | </xsd:complexType> |
---|
| 697 | |
---|
[7a8d667] | 698 | |
---|
[bb3769a] | 699 | <xsd:complexType name="faultType"> |
---|
[2dafa0c] | 700 | <xsd:annotation> |
---|
| 701 | <xsd:documentation> |
---|
| 702 | Indication that a service has failed. The code values are |
---|
| 703 | |
---|
| 704 | 1 access denied |
---|
| 705 | 2 proxy error |
---|
| 706 | 3 badly formed request |
---|
| 707 | 4 server configuration error |
---|
| 708 | 5 internal error |
---|
| 709 | 6 partial instantiation |
---|
| 710 | 7 federant error |
---|
| 711 | |
---|
| 712 | Errstr contains the text above corresponding to the code. Code |
---|
| 713 | is always present. Desc provides additional human-readable data |
---|
| 714 | about the error. |
---|
| 715 | </xsd:documentation> |
---|
| 716 | </xsd:annotation> |
---|
[bb3769a] | 717 | <xsd:sequence> |
---|
[0c0b13c] | 718 | <xsd:element name="code" type="xsd:int"> |
---|
| 719 | <xsd:restriction> |
---|
| 720 | <xsd:enumeration value="1"/> <!-- access denied --> |
---|
[058f58e] | 721 | <xsd:enumeration value="2"/> <!-- protocol error --> |
---|
[0c0b13c] | 722 | <xsd:enumeration value="3"/> <!-- badly formed request --> |
---|
[3441fe3] | 723 | <xsd:enumeration value="4"/> <!-- server configuration error --> |
---|
| 724 | <xsd:enumeration value="5"/> <!-- internal error --> |
---|
| 725 | <xsd:enumeration value="6"/> <!-- partial instantiation --> |
---|
| 726 | <xsd:enumeration value="7"/> <!-- federant error --> |
---|
[9d3e646] | 727 | <xsd:enumeration value="8"/> <!-- connect error --> |
---|
[0c0b13c] | 728 | </xsd:restriction> |
---|
| 729 | </xsd:element> |
---|
| 730 | <xsd:element name="errstr" minOccurs="0" maxOccurs="1" type="xsd:string"> |
---|
| 731 | </xsd:element> |
---|
[bb3769a] | 732 | <xsd:element name="desc" type="xsd:string"/> |
---|
| 733 | </xsd:sequence> |
---|
| 734 | </xsd:complexType> |
---|
[6ff0b91] | 735 | </xsd:schema> |
---|