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