[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 | |
---|
[c122b0c] | 25 | <!-- begin deprecated --> |
---|
| 26 | |
---|
| 27 | <xsd:complexType name="projectType"> |
---|
| 28 | <xsd:annotation> |
---|
| 29 | <xsd:documentation> |
---|
| 30 | A description of the project used to access a testbed. Includes |
---|
| 31 | the testbed being accessed, the project name (often a local |
---|
| 32 | name, scoped by the testbed), and any users who have been |
---|
| 33 | granted access or for whom access is being requested. |
---|
| 34 | </xsd:documentation> |
---|
| 35 | </xsd:annotation> |
---|
| 36 | <xsd:sequence> |
---|
| 37 | <xsd:element name="testbed" type="tns:IDType" minOccurs="0" |
---|
| 38 | maxOccurs="1"/> |
---|
| 39 | <xsd:element name="name" type="tns:IDType" minOccurs="0" maxOccurs="1"/> |
---|
| 40 | <xsd:element name="user" type="tns:userType" minOccurs="0" |
---|
| 41 | maxOccurs="unbounded"/> |
---|
| 42 | </xsd:sequence> |
---|
| 43 | </xsd:complexType> |
---|
| 44 | |
---|
[6ff0b91] | 45 | <xsd:complexType name="nodeType"> |
---|
| 46 | <xsd:annotation> |
---|
| 47 | <xsd:documentation> |
---|
[2dafa0c] | 48 | A node from an Emulab. It may have 0 or more images or hardware |
---|
| 49 | types associated with it. As this description is used for |
---|
| 50 | acquiring access to the testbed in question, multiple images or |
---|
| 51 | types are considered options. Specifying multiple image names |
---|
| 52 | indicates that the requester is looking for support for any of |
---|
| 53 | them. |
---|
[6ff0b91] | 54 | </xsd:documentation> |
---|
| 55 | </xsd:annotation> |
---|
| 56 | <xsd:sequence> |
---|
| 57 | <xsd:element name="image" type="xsd:string" minOccurs="0" |
---|
| 58 | maxOccurs="unbounded"/> |
---|
| 59 | <xsd:element name="hardware" type="xsd:string" minOccurs="0" |
---|
| 60 | maxOccurs="unbounded"/> |
---|
| 61 | </xsd:sequence> |
---|
| 62 | <xsd:attribute name="count" type="xsd:int" use="optional"/> |
---|
| 63 | </xsd:complexType> |
---|
| 64 | |
---|
[c122b0c] | 65 | <xsd:complexType name="capacityType"> |
---|
| 66 | <xsd:annotation> |
---|
| 67 | <xsd:documentation> |
---|
| 68 | A strawman network capacity description for access negotiation. |
---|
| 69 | This will come to include more and more interesting parameters. |
---|
| 70 | </xsd:documentation> |
---|
| 71 | </xsd:annotation> |
---|
| 72 | <xsd:sequence> |
---|
| 73 | <xsd:element name="rate" type="xsd:double"/> |
---|
| 74 | <xsd:element name="kind" type="tns:kindType"/> |
---|
| 75 | </xsd:sequence> |
---|
| 76 | </xsd:complexType> |
---|
| 77 | |
---|
| 78 | |
---|
| 79 | <xsd:simpleType name="userRole"> |
---|
| 80 | <xsd:annotation> |
---|
| 81 | <xsd:documentation> |
---|
| 82 | This defines the role the user/account is playing in the |
---|
| 83 | federated experiment. An account being accessed by the |
---|
| 84 | federation system to create the experiment is in the |
---|
| 85 | experimentCreation role and the accounts that experimenters will |
---|
| 86 | use to access local testbed services (e.g., rebooting a local |
---|
| 87 | node) are serviceAccess roles. |
---|
| 88 | </xsd:documentation> |
---|
| 89 | </xsd:annotation> |
---|
| 90 | <xsd:restriction base="xsd:string"> |
---|
| 91 | <xsd:enumeration value="serviceAccess"/> |
---|
| 92 | <xsd:enumeration value="experimentCreation"/> |
---|
| 93 | </xsd:restriction> |
---|
| 94 | </xsd:simpleType> |
---|
| 95 | |
---|
[6ff0b91] | 96 | <xsd:simpleType name="kindType"> |
---|
[2dafa0c] | 97 | <xsd:annotation> |
---|
| 98 | <xsd:documentation> |
---|
| 99 | An indication of how requested networking capacity is measured. |
---|
| 100 | This will undoubtably expand. |
---|
| 101 | </xsd:documentation> |
---|
| 102 | </xsd:annotation> |
---|
[6ff0b91] | 103 | <xsd:restriction base="xsd:string"> |
---|
| 104 | <xsd:enumeration value="max"/> |
---|
| 105 | <xsd:enumeration value="average"/> |
---|
| 106 | </xsd:restriction> |
---|
| 107 | </xsd:simpleType> |
---|
| 108 | |
---|
[eda00e1] | 109 | <xsd:complexType name="userType"> |
---|
| 110 | <xsd:annotation> |
---|
| 111 | <xsd:documentation> |
---|
| 112 | The definition of a user principal. It includes the |
---|
| 113 | identification of the user as an ID type, the access credential(s) |
---|
| 114 | that the user will use, and the role of the user, if any. |
---|
| 115 | Multiple access keys may be used, and it is also possible for |
---|
| 116 | the user to be anonymous. Though it is possible to specify a |
---|
| 117 | user without ID, access, or role, it is difficult to imagine |
---|
| 118 | such a user being useful. |
---|
| 119 | </xsd:documentation> |
---|
| 120 | </xsd:annotation> |
---|
| 121 | <xsd:sequence> |
---|
| 122 | <xsd:element name="userID" type="tns:IDType" minOccurs="0" |
---|
| 123 | maxOccurs="1"/> |
---|
| 124 | <xsd:element name="access" type="tns:accessType" minOccurs="0" |
---|
| 125 | maxOccurs="unbounded"/> |
---|
| 126 | <!-- begin deprecated --> |
---|
| 127 | <xsd:element name="role" type="tns:userRole" minOccurs="0" maxOccurs="1"/> |
---|
| 128 | <!-- end deprecated --> |
---|
| 129 | </xsd:sequence> |
---|
| 130 | </xsd:complexType> |
---|
| 131 | |
---|
[c122b0c] | 132 | <!-- end deprecated --> |
---|
| 133 | |
---|
[bd3e314] | 134 | <xsd:simpleType name="statusType"> |
---|
| 135 | <xsd:annotation> |
---|
| 136 | <xsd:documentation> |
---|
| 137 | The current state of the experiment. |
---|
| 138 | </xsd:documentation> |
---|
| 139 | </xsd:annotation> |
---|
| 140 | <xsd:restriction base="xsd:string"> |
---|
[a3ad8bd] | 141 | <xsd:enumeration value="empty"/> |
---|
[bd3e314] | 142 | <xsd:enumeration value="active"/> |
---|
| 143 | <xsd:enumeration value="starting"/> |
---|
| 144 | <xsd:enumeration value="terminating"/> |
---|
| 145 | <xsd:enumeration value="failed"/> |
---|
| 146 | </xsd:restriction> |
---|
| 147 | </xsd:simpleType> |
---|
| 148 | |
---|
[6ff0b91] | 149 | <xsd:complexType name="accessType"> |
---|
| 150 | <xsd:annotation> |
---|
| 151 | <xsd:documentation> |
---|
[2dafa0c] | 152 | This captures an access credential that will be used to access |
---|
| 153 | resources. These are certificates or public keys. The type is |
---|
| 154 | used to designate the key to which access should be bound, or on |
---|
| 155 | a reply has been bound. Dynamic credentials where new keys have |
---|
| 156 | been created may also be passed in this kind of field. |
---|
[6ff0b91] | 157 | </xsd:documentation> |
---|
| 158 | </xsd:annotation> |
---|
| 159 | <xsd:choice> |
---|
| 160 | <xsd:element name="X509" type="xsd:base64Binary"/> |
---|
| 161 | <xsd:element name="sshPubkey" type="xsd:base64Binary"/> |
---|
| 162 | <xsd:element name="pgpPubkey" type="xsd:base64Binary"/> |
---|
[c122b0c] | 163 | <xsd:element name="passwordHash" type="xsd:string"/> |
---|
[6ff0b91] | 164 | </xsd:choice> |
---|
| 165 | </xsd:complexType> |
---|
| 166 | |
---|
| 167 | <xsd:complexType name="fedAttrType"> |
---|
| 168 | <xsd:annotation> |
---|
| 169 | <xsd:documentation> |
---|
[2dafa0c] | 170 | A general attribute/value pair for passing federation parameters and |
---|
| 171 | preferences. Anything encodable in XML is allowed. This is a |
---|
| 172 | point for customization and extension. |
---|
[6ff0b91] | 173 | </xsd:documentation> |
---|
| 174 | </xsd:annotation> |
---|
| 175 | <xsd:sequence> |
---|
| 176 | <xsd:element name="attribute" type="xsd:string"/> |
---|
| 177 | <xsd:element name="value" type="xsd:string"/> |
---|
| 178 | </xsd:sequence> |
---|
| 179 | </xsd:complexType> |
---|
| 180 | |
---|
| 181 | |
---|
| 182 | <xsd:complexType name="resourcesType"> |
---|
| 183 | <xsd:annotation> |
---|
| 184 | <xsd:documentation> |
---|
[2dafa0c] | 185 | The estimate of resources a requester is looking for, or the |
---|
| 186 | response of a testbed indicating what it can provide. This is |
---|
| 187 | something of a placeholder for a full resource specification, |
---|
| 188 | and alternative encodings are likely to be imported. |
---|
[6ff0b91] | 189 | </xsd:documentation> |
---|
| 190 | </xsd:annotation> |
---|
| 191 | <xsd:sequence> |
---|
[c122b0c] | 192 | <!-- replace with topdl --> |
---|
[6ff0b91] | 193 | <xsd:element name="node" type="tns:nodeType" minOccurs="0" |
---|
| 194 | maxOccurs="unbounded" /> |
---|
| 195 | <xsd:element name="capacity" type="tns:capacityType" minOccurs="0" |
---|
| 196 | maxOccurs="unbounded"/> |
---|
[c122b0c] | 197 | <!-- replace with topdl --> |
---|
[6ff0b91] | 198 | </xsd:sequence> |
---|
| 199 | </xsd:complexType> |
---|
| 200 | |
---|
[6679c122] | 201 | <xsd:complexType name="mapType"> |
---|
| 202 | <xsd:annotation> |
---|
| 203 | <xsd:documentation> |
---|
| 204 | Explicit translation of testbed attribute in a federated experiment |
---|
[2dafa0c] | 205 | description to the URI at which the controlling federation |
---|
| 206 | system can be reached. Used in a creation request. |
---|
| 207 | |
---|
| 208 | This type allows tools to encode experiments in familiar local |
---|
| 209 | names for experimenters while providing remote federation |
---|
| 210 | systems the information to map the local name into a service |
---|
| 211 | location. |
---|
[6679c122] | 212 | </xsd:documentation> |
---|
| 213 | </xsd:annotation> |
---|
| 214 | <xsd:sequence> |
---|
| 215 | <xsd:element name="testbed" type="tns:IDType"/> |
---|
| 216 | <xsd:element name="uri" type="xsd:string"/> |
---|
| 217 | </xsd:sequence> |
---|
| 218 | </xsd:complexType> |
---|
[c122b0c] | 219 | |
---|
[b234bb9] | 220 | <xsd:complexType name="vtoponodeType"> |
---|
| 221 | <xsd:annotation> |
---|
| 222 | <xsd:documentation> |
---|
[2dafa0c] | 223 | Node in the virtual topology of a federated experiment (Emulab |
---|
| 224 | legacy). The fields are the local hostname and the IP addresses |
---|
| 225 | of the experimental interfaces(colon-separated). |
---|
[b234bb9] | 226 | </xsd:documentation> |
---|
| 227 | </xsd:annotation> |
---|
| 228 | <xsd:sequence> |
---|
| 229 | <xsd:element name="vname" type="xsd:string"/> |
---|
| 230 | <xsd:element name="ips" type="xsd:string"/> |
---|
| 231 | </xsd:sequence> |
---|
| 232 | </xsd:complexType> |
---|
| 233 | |
---|
| 234 | <xsd:complexType name="vtopolanType"> |
---|
| 235 | <xsd:annotation> |
---|
| 236 | <xsd:documentation> |
---|
[2dafa0c] | 237 | LAN in the virtual topology of a federated experiment (Emulab legacy). |
---|
| 238 | The fields are the name of the LAN/link (vname) the node that |
---|
| 239 | this description applies to (vnode), the IP of the connection, |
---|
| 240 | and performance information. |
---|
[b234bb9] | 241 | </xsd:documentation> |
---|
| 242 | </xsd:annotation> |
---|
| 243 | <xsd:sequence> |
---|
| 244 | <xsd:element name="vname" type="xsd:string"/> |
---|
| 245 | <xsd:element name="vnode" type="xsd:string"/> |
---|
| 246 | <xsd:element name="ip" type="xsd:string"/> |
---|
| 247 | <xsd:element name="bandwidth" type="xsd:int"/> |
---|
| 248 | <xsd:element name="delay" type="xsd:float"/> |
---|
| 249 | <xsd:element name="member" type="xsd:string"/> |
---|
| 250 | </xsd:sequence> |
---|
| 251 | </xsd:complexType> |
---|
| 252 | |
---|
| 253 | <xsd:complexType name="vtopoType"> |
---|
| 254 | <xsd:annotation> |
---|
| 255 | <xsd:documentation> |
---|
[2dafa0c] | 256 | The virtual topology of a federated experiment (Emulab legacy). |
---|
[b234bb9] | 257 | </xsd:documentation> |
---|
| 258 | </xsd:annotation> |
---|
| 259 | <xsd:sequence> |
---|
[bcbf543] | 260 | <xsd:element name="node" type="tns:vtoponodeType" minOccurs="0" |
---|
| 261 | maxOccurs="unbounded" /> |
---|
| 262 | <xsd:element name="lan" type="tns:vtopolanType" minOccurs="0" |
---|
| 263 | maxOccurs="unbounded"/> |
---|
[b234bb9] | 264 | </xsd:sequence> |
---|
| 265 | </xsd:complexType> |
---|
| 266 | |
---|
| 267 | <xsd:complexType name="visnodeType"> |
---|
| 268 | <xsd:annotation> |
---|
| 269 | <xsd:documentation> |
---|
[2dafa0c] | 270 | Node in the visualization of a federated experiment (Emulab |
---|
| 271 | legacy). Fields include the local hostname of the node, x,y |
---|
| 272 | coordinates in a 2-dimensional representation, and whether the |
---|
| 273 | node in the visualization is a host or a LAN. |
---|
[b234bb9] | 274 | </xsd:documentation> |
---|
| 275 | </xsd:annotation> |
---|
| 276 | <xsd:sequence> |
---|
| 277 | <xsd:element name="name" type="xsd:string"/> |
---|
| 278 | <xsd:element name="x" type="xsd:int"/> |
---|
| 279 | <xsd:element name="y" type="xsd:int"/> |
---|
| 280 | <xsd:element name="type" type="xsd:string"/> |
---|
| 281 | </xsd:sequence> |
---|
| 282 | </xsd:complexType> |
---|
| 283 | |
---|
| 284 | <xsd:complexType name="visType"> |
---|
| 285 | <xsd:annotation> |
---|
| 286 | <xsd:documentation> |
---|
[2dafa0c] | 287 | The visualization of a federated experiment (Emulab legacy) |
---|
[b234bb9] | 288 | </xsd:documentation> |
---|
| 289 | </xsd:annotation> |
---|
| 290 | <xsd:sequence> |
---|
| 291 | <xsd:element name="node" type="tns:visnodeType" minOccurs="0" |
---|
| 292 | maxOccurs="unbounded"/> |
---|
| 293 | </xsd:sequence> |
---|
| 294 | </xsd:complexType> |
---|
| 295 | |
---|
[7da9da6] | 296 | <xsd:complexType name="projectAllocType"> |
---|
| 297 | <xsd:annotation> |
---|
| 298 | <xsd:documentation> |
---|
[2dafa0c] | 299 | The information needed to create a dynamic project, specifically |
---|
| 300 | a project description and the resources in needs access to. |
---|
| 301 | This is used by an internal fedd interface. |
---|
[7da9da6] | 302 | </xsd:documentation> |
---|
| 303 | </xsd:annotation> |
---|
| 304 | <xsd:sequence> |
---|
| 305 | <xsd:element name="project" type="tns:projectType"/> |
---|
| 306 | <xsd:element name="resources" type="tns:resourcesType" |
---|
| 307 | minOccurs="0" maxOccurs="1"/> |
---|
| 308 | </xsd:sequence> |
---|
| 309 | </xsd:complexType> |
---|
[ef36c1e] | 310 | |
---|
[3925b50] | 311 | <xsd:complexType name="experimentDescriptionType"> |
---|
| 312 | <xsd:annotation> |
---|
| 313 | <xsd:documentation> |
---|
[2dafa0c] | 314 | The description of the federated experiment, in extended ns2. |
---|
[3925b50] | 315 | </xsd:documentation> |
---|
| 316 | </xsd:annotation> |
---|
| 317 | <xsd:choice> |
---|
| 318 | <xsd:element name="ns2description" type="xsd:base64Binary"/> |
---|
[eec716b] | 319 | <xsd:element name="topdldescription" type="topdl:topologyType"/> |
---|
[3925b50] | 320 | </xsd:choice> |
---|
| 321 | </xsd:complexType> |
---|
| 322 | |
---|
[c122b0c] | 323 | <xsd:simpleType name="connectionType"> |
---|
| 324 | <xsd:annotation> |
---|
| 325 | <xsd:documentation> |
---|
| 326 | Known subexperiment interconnection mechanisms |
---|
| 327 | </xsd:documentation> |
---|
| 328 | </xsd:annotation> |
---|
| 329 | <xsd:restriction base="xsd:string"> |
---|
| 330 | <xsd:enumeration value="ssh"/> |
---|
| 331 | <xsd:enumeration value="transit"/> |
---|
| 332 | </xsd:restriction> |
---|
| 333 | </xsd:simpleType> |
---|
| 334 | |
---|
[5b74b63] | 335 | <xsd:complexType name="memberType"> |
---|
| 336 | <xsd:annotation> |
---|
| 337 | <xsd:documentation> |
---|
| 338 | A member of a set of nodes for which transit is being provided |
---|
| 339 | </xsd:documentation> |
---|
| 340 | </xsd:annotation> |
---|
| 341 | <xsd:sequence> |
---|
| 342 | <xsd:element name="element" type="xsd:string"/> |
---|
| 343 | <xsd:element name="interface" type="xsd:string" minOccurs="0" |
---|
| 344 | maxOccurs="1"/> |
---|
| 345 | </xsd:sequence> |
---|
| 346 | </xsd:complexType> |
---|
| 347 | |
---|
[2761484] | 348 | <xsd:simpleType name="connectionParameterIOType"> |
---|
| 349 | <xsd:annotation> |
---|
| 350 | <xsd:documentation> |
---|
| 351 | Connection parameter types: input or output |
---|
| 352 | </xsd:documentation> |
---|
| 353 | </xsd:annotation> |
---|
| 354 | <xsd:restriction base="xsd:string"> |
---|
| 355 | <xsd:enumeration value="input"/> |
---|
| 356 | <xsd:enumeration value="output"/> |
---|
| 357 | </xsd:restriction> |
---|
| 358 | </xsd:simpleType> |
---|
| 359 | |
---|
| 360 | <xsd:complexType name="connectionParameterType"> |
---|
| 361 | <xsd:annotation> |
---|
| 362 | <xsd:documentation> |
---|
| 363 | This is a parameter on which two or more access controllers have to |
---|
| 364 | agree in order to complete the stitching. This gives the name of the |
---|
| 365 | parameter, the key under which to store it (or it has been stored) and |
---|
| 366 | whether it is to be input or output. |
---|
| 367 | </xsd:documentation> |
---|
| 368 | </xsd:annotation> |
---|
| 369 | <xsd:sequence> |
---|
| 370 | <xsd:element name="name" type="xsd:string"/> |
---|
| 371 | <xsd:element name="key" type="xsd:string"/> |
---|
| 372 | <xsd:element name="store" type="xsd:string"/> |
---|
| 373 | <xsd:element name="type" type="tns:connectionParameterIOType"/> |
---|
| 374 | </xsd:sequence> |
---|
| 375 | </xsd:complexType> |
---|
| 376 | |
---|
| 377 | |
---|
[c122b0c] | 378 | <xsd:complexType name="connectionInfoType"> |
---|
| 379 | <xsd:annotation> |
---|
| 380 | <xsd:documentation> |
---|
| 381 | The information needed to stitch together two segments. It is both |
---|
| 382 | exported from the nmaster and reported by the experiment controller to |
---|
| 383 | the access controller and by the access controller into the world. |
---|
| 384 | </xsd:documentation> |
---|
| 385 | </xsd:annotation> |
---|
| 386 | <xsd:sequence> |
---|
| 387 | <xsd:element name="type" type="tns:connectionType"/> |
---|
[8139a48] | 388 | <xsd:element name="portal" type="xsd:string" minOccurs="0" maxOccurs="1"/> |
---|
[c122b0c] | 389 | <xsd:element name="peer" type="xsd:string" minOccurs="0" maxOccurs="1"/> |
---|
[5b74b63] | 390 | <xsd:element name="member" type="tns:memberType" minOccurs="0" |
---|
| 391 | maxOccurs="unbounded" /> |
---|
[c122b0c] | 392 | <xsd:element name="fedAttr" type="tns:fedAttrType" minOccurs="0" |
---|
| 393 | maxOccurs="unbounded"/> |
---|
[2761484] | 394 | <xsd:element name="parameter" type="tns:connectionParameterType" |
---|
| 395 | minOccurs="0" maxOccurs="unbounded"/> |
---|
[c122b0c] | 396 | </xsd:sequence> |
---|
| 397 | </xsd:complexType> |
---|
| 398 | |
---|
| 399 | <xsd:complexType name="serviceInfoType"> |
---|
| 400 | <xsd:annotation> |
---|
| 401 | <xsd:documentation> |
---|
| 402 | A generic service entry, basically a name and server |
---|
| 403 | </xsd:documentation> |
---|
| 404 | </xsd:annotation> |
---|
| 405 | <xsd:sequence> |
---|
[43197eb] | 406 | <xsd:element name="id" type="xsd:string" minOccurs="0" maxOccurs="1" /> |
---|
[c122b0c] | 407 | <xsd:element name="name" type="xsd:string"/> |
---|
| 408 | <xsd:element name="server" type="xsd:string" minOccurs="0" |
---|
| 409 | maxOccurs="1"/> |
---|
| 410 | <xsd:element name="fedAttr" type="tns:fedAttrType" minOccurs="0" |
---|
| 411 | maxOccurs="unbounded"/> |
---|
| 412 | <xsd:element name="visibility" type="xsd:string"> |
---|
| 413 | <xsd:restriction> |
---|
| 414 | <xsd:enumeration value="export"/> <!-- server --> |
---|
| 415 | <xsd:enumeration value="import"/> <!-- client --> |
---|
| 416 | <xsd:enumeration value="composition"/><!-- both --> |
---|
| 417 | </xsd:restriction> |
---|
| 418 | </xsd:element> |
---|
| 419 | </xsd:sequence> |
---|
| 420 | </xsd:complexType> |
---|
| 421 | |
---|
[43197eb] | 422 | <xsd:complexType name="createServiceInfoType"> |
---|
| 423 | <xsd:annotation> |
---|
| 424 | <xsd:documentation> |
---|
| 425 | The global descriptions of services in the creation request. These |
---|
| 426 | indicate which services are being provided at a testbed level. They |
---|
| 427 | become service info requests in segment creation. |
---|
| 428 | </xsd:documentation> |
---|
| 429 | </xsd:annotation> |
---|
| 430 | <xsd:sequence> |
---|
| 431 | <xsd:element name="id" type="xsd:string" minOccurs="0" maxOccurs="1" /> |
---|
| 432 | <xsd:element name="name" type="xsd:string"/> |
---|
| 433 | <xsd:element name="export" type="xsd:string" |
---|
| 434 | minOccurs="0" maxOccurs="unbounded"/> |
---|
| 435 | <xsd:element name="import" type="xsd:string" |
---|
| 436 | minOccurs="0" maxOccurs="unbounded"/> |
---|
| 437 | <xsd:element name="fedAttr" type="tns:fedAttrType" minOccurs="0" |
---|
| 438 | maxOccurs="unbounded"/> |
---|
| 439 | </xsd:sequence> |
---|
| 440 | </xsd:complexType> |
---|
[c122b0c] | 441 | |
---|
[a3ad8bd] | 442 | <xsd:complexType name="newRequestType"> |
---|
| 443 | <xsd:annotation> |
---|
| 444 | <xsd:documentation> |
---|
| 445 | Request for an experiment to which credentials can be delegated and |
---|
| 446 | resources attached. A local name may be included as a human readable |
---|
| 447 | accessor, local to this experiment controller. It is a suggestion and |
---|
| 448 | may be modified. experimentID can only be a local name. |
---|
| 449 | |
---|
| 450 | Credentials are seed credentials to begin the proof. |
---|
| 451 | </xsd:documentation> |
---|
| 452 | </xsd:annotation> |
---|
| 453 | <xsd:sequence> |
---|
| 454 | <xsd:element name="experimentID" type="tns:IDType" minOccurs="0" |
---|
| 455 | maxOccurs="1"/> |
---|
| 456 | <xsd:element name="credential" type="xsd:base64Binary" minOccurs="0" |
---|
| 457 | maxOccurs="unbounded"/> |
---|
| 458 | </xsd:sequence> |
---|
| 459 | </xsd:complexType> |
---|
| 460 | |
---|
| 461 | <xsd:complexType name="newResponseType"> |
---|
| 462 | <xsd:annotation> |
---|
| 463 | <xsd:documentation> |
---|
| 464 | Result of a new experiment creation. A successful sreation will have |
---|
| 465 | an experimentState of "empty", 2 experimentIDs, one a fedid and one a |
---|
| 466 | local name, and an experimentAccess that allows the creator to act as |
---|
| 467 | the experiment. |
---|
| 468 | </xsd:documentation> |
---|
| 469 | </xsd:annotation> |
---|
| 470 | <xsd:sequence> |
---|
| 471 | <xsd:element name="experimentID" type="tns:IDType" minOccurs="0" |
---|
| 472 | maxOccurs="unbounded"/> |
---|
| 473 | <xsd:element name="experimentStatus" type="tns:statusType"/> |
---|
| 474 | <xsd:element name="experimentAccess" type="tns:accessType"/> |
---|
| 475 | </xsd:sequence> |
---|
| 476 | </xsd:complexType> |
---|
| 477 | |
---|
[bde2217] | 478 | <xsd:complexType name="accessRequestType"> |
---|
[6ff0b91] | 479 | <xsd:annotation> |
---|
| 480 | <xsd:documentation> |
---|
[2dafa0c] | 481 | Request for access to a testbed. It includes the testbed from |
---|
| 482 | which resources are being requested (a single service may |
---|
| 483 | provide access to many), the user or project requesting access |
---|
| 484 | (a testbed making the request will leave both empty), the |
---|
| 485 | resources needed, the access keys to be used in the subsequent |
---|
| 486 | instantiation and service use, an allocation ID to identify this |
---|
| 487 | access in later requests, and scheduling information. |
---|
[6ff0b91] | 488 | </xsd:documentation> |
---|
| 489 | </xsd:annotation> |
---|
| 490 | <xsd:sequence> |
---|
| 491 | <xsd:element name="destinationTestbed" type="tns:IDType" |
---|
| 492 | minOccurs="0" maxOccurs="1" /> |
---|
[3bddd24] | 493 | <xsd:element name="credential" type="xsd:string" minOccurs="0" |
---|
| 494 | maxOccurs="unbounded"/> |
---|
[6ff0b91] | 495 | <xsd:element name="resources" type="tns:resourcesType" minOccurs="0" |
---|
| 496 | maxOccurs="1"/> |
---|
[c122b0c] | 497 | <xsd:element name="service" type="tns:serviceInfoType" minOccurs="0" |
---|
| 498 | maxOccurs="unbounded" /> |
---|
[6ff0b91] | 499 | <xsd:element name="allocID" type="tns:IDType"/> |
---|
| 500 | <xsd:element name="when" type="xsd:dateTime" minOccurs="0" maxOccurs="1"/> |
---|
| 501 | <xsd:element name="until" type="xsd:dateTime" minOccurs="0" |
---|
| 502 | maxOccurs="1"/> |
---|
| 503 | </xsd:sequence> |
---|
| 504 | </xsd:complexType> |
---|
| 505 | |
---|
[bde2217] | 506 | <xsd:complexType name="accessResponseType"> |
---|
[6ff0b91] | 507 | <xsd:annotation> |
---|
| 508 | <xsd:documentation> |
---|
[2dafa0c] | 509 | Response to an access request. Includes the allocation, the |
---|
| 510 | information needed to access creation and experiment services |
---|
| 511 | and scheduling information. |
---|
[6ff0b91] | 512 | </xsd:documentation> |
---|
| 513 | </xsd:annotation> |
---|
| 514 | <xsd:sequence> |
---|
| 515 | <xsd:element name="allocID" type="tns:IDType"/> |
---|
[c122b0c] | 516 | <xsd:element name="service" type="tns:serviceInfoType" minOccurs="0" |
---|
| 517 | maxOccurs="unbounded" /> |
---|
[6ff0b91] | 518 | <xsd:element name="when" type="xsd:dateTime" minOccurs="0" maxOccurs="1"/> |
---|
| 519 | <xsd:element name="until" type="xsd:dateTime" minOccurs="0" |
---|
| 520 | maxOccurs="1"/> |
---|
[c122b0c] | 521 | <xsd:element name="fedAttr" type="tns:fedAttrType" minOccurs="0" |
---|
| 522 | maxOccurs="unbounded"/> |
---|
[6ff0b91] | 523 | </xsd:sequence> |
---|
| 524 | </xsd:complexType> |
---|
| 525 | |
---|
[d81971a] | 526 | <xsd:complexType name="releaseRequestType"> |
---|
| 527 | <xsd:annotation> |
---|
| 528 | <xsd:documentation> |
---|
| 529 | A request to release the access rights allocated by an earlier |
---|
| 530 | RequestAccess call. |
---|
| 531 | </xsd:documentation> |
---|
| 532 | </xsd:annotation> |
---|
| 533 | <xsd:sequence> |
---|
| 534 | <xsd:element name="allocID" type="tns:IDType"/> |
---|
| 535 | </xsd:sequence> |
---|
| 536 | </xsd:complexType> |
---|
| 537 | |
---|
| 538 | <xsd:complexType name="releaseResponseType"> |
---|
| 539 | <xsd:annotation> |
---|
| 540 | <xsd:documentation> |
---|
| 541 | Indication that the access has been terminated. |
---|
| 542 | </xsd:documentation> |
---|
| 543 | </xsd:annotation> |
---|
| 544 | <xsd:sequence> |
---|
| 545 | <xsd:element name="allocID" type="tns:IDType"/> |
---|
| 546 | </xsd:sequence> |
---|
| 547 | </xsd:complexType> |
---|
| 548 | |
---|
[6679c122] | 549 | <xsd:complexType name="createRequestType"> |
---|
| 550 | <xsd:annotation> |
---|
| 551 | <xsd:documentation> |
---|
[2dafa0c] | 552 | A request to embed a federated experiment across testbeds. Non- |
---|
| 553 | standard local names for testbeds are included in the |
---|
| 554 | testbedmap, the user making the request, the experiment |
---|
| 555 | description, master testbed, and a suggested experiment name are |
---|
| 556 | included. More than one name can be suggested, either as |
---|
| 557 | synonyms (a fedid and a localname) or as choices (multiple |
---|
| 558 | localnames). |
---|
[6679c122] | 559 | </xsd:documentation> |
---|
| 560 | </xsd:annotation> |
---|
| 561 | <xsd:sequence> |
---|
| 562 | <xsd:element name="testbedmap" type="tns:mapType" minOccurs="0" |
---|
| 563 | maxOccurs="unbounded"/> |
---|
[3925b50] | 564 | <xsd:element name="experimentdescription" |
---|
| 565 | type="tns:experimentDescriptionType"/> |
---|
[43197eb] | 566 | <xsd:element name="service" type="tns:createServiceInfoType" minOccurs="0" |
---|
[5f6929a] | 567 | maxOccurs="unbounded" /> |
---|
[7b26c39] | 568 | <xsd:element name="experimentID" type="tns:IDType"/> |
---|
[6679c122] | 569 | </xsd:sequence> |
---|
| 570 | </xsd:complexType> |
---|
| 571 | |
---|
| 572 | <xsd:complexType name="createResponseType"> |
---|
| 573 | <xsd:annotation> |
---|
| 574 | <xsd:documentation> |
---|
[c122b0c] | 575 | Returned to let the caller know that the request is underway. |
---|
[6679c122] | 576 | </xsd:documentation> |
---|
| 577 | </xsd:annotation> |
---|
| 578 | <xsd:sequence> |
---|
[e40c7ee] | 579 | <xsd:element name="experimentID" type="tns:IDType" minOccurs="1" |
---|
| 580 | maxOccurs="unbounded"/> |
---|
[bd3e314] | 581 | <xsd:element name="experimentStatus" type="tns:statusType"/> |
---|
[6679c122] | 582 | </xsd:sequence> |
---|
| 583 | </xsd:complexType> |
---|
| 584 | |
---|
[987aaa1] | 585 | <xsd:complexType name="vtopoRequestType"> |
---|
| 586 | <xsd:annotation> |
---|
| 587 | <xsd:documentation> |
---|
[2dafa0c] | 588 | Request for an existing experiment's virtual topology. |
---|
| 589 | Different information may be returned based on the user's rights |
---|
| 590 | to see the topology. |
---|
[987aaa1] | 591 | </xsd:documentation> |
---|
| 592 | </xsd:annotation> |
---|
| 593 | <xsd:sequence> |
---|
| 594 | <xsd:element name="experiment" type="tns:IDType"/> |
---|
| 595 | </xsd:sequence> |
---|
| 596 | </xsd:complexType> |
---|
| 597 | |
---|
| 598 | <xsd:complexType name="vtopoResponseType"> |
---|
| 599 | <xsd:annotation> |
---|
| 600 | <xsd:documentation> |
---|
[2dafa0c] | 601 | The response to a topology request. Different information may |
---|
| 602 | be returned based on the user's rights to see the topology. |
---|
[987aaa1] | 603 | </xsd:documentation> |
---|
| 604 | </xsd:annotation> |
---|
| 605 | <xsd:sequence> |
---|
| 606 | <xsd:element name="experiment" type="tns:IDType"/> |
---|
| 607 | <xsd:element name="vtopo" type="tns:vtopoType"/> |
---|
| 608 | </xsd:sequence> |
---|
| 609 | </xsd:complexType> |
---|
| 610 | |
---|
| 611 | |
---|
| 612 | <xsd:complexType name="visRequestType"> |
---|
| 613 | <xsd:annotation> |
---|
| 614 | <xsd:documentation> |
---|
[2dafa0c] | 615 | Request for an existing experiment's visualization. This is |
---|
| 616 | largely a compatibility service. Different information may be |
---|
| 617 | returned based on the user's rights to see the topology. |
---|
[987aaa1] | 618 | </xsd:documentation> |
---|
| 619 | </xsd:annotation> |
---|
| 620 | <xsd:sequence> |
---|
| 621 | <xsd:element name="experiment" type="tns:IDType"/> |
---|
| 622 | </xsd:sequence> |
---|
| 623 | </xsd:complexType> |
---|
| 624 | |
---|
| 625 | <xsd:complexType name="visResponseType"> |
---|
| 626 | <xsd:annotation> |
---|
| 627 | <xsd:documentation> |
---|
[2dafa0c] | 628 | An existing experiment's visualization. This is largely a |
---|
| 629 | compatibility service. Different information may be returned |
---|
| 630 | based on the user's rights to see the topology. |
---|
[987aaa1] | 631 | </xsd:documentation> |
---|
| 632 | </xsd:annotation> |
---|
| 633 | <xsd:sequence> |
---|
| 634 | <xsd:element name="experiment" type="tns:IDType"/> |
---|
| 635 | <xsd:element name="vis" type="tns:visType"/> |
---|
| 636 | </xsd:sequence> |
---|
| 637 | </xsd:complexType> |
---|
| 638 | |
---|
[c52c48d] | 639 | <xsd:complexType name="infoRequestType"> |
---|
| 640 | <xsd:annotation> |
---|
| 641 | <xsd:documentation> |
---|
[2dafa0c] | 642 | A combined topology, visualalization, and federant request. |
---|
| 643 | Different information may be returned based on the user's rights |
---|
[bd3e314] | 644 | to see the topology. |
---|
| 645 | </xsd:documentation> |
---|
[c52c48d] | 646 | </xsd:annotation> |
---|
| 647 | <xsd:sequence> |
---|
| 648 | <xsd:element name="experiment" type="tns:IDType"/> |
---|
| 649 | </xsd:sequence> |
---|
| 650 | </xsd:complexType> |
---|
| 651 | |
---|
[c122b0c] | 652 | <!-- This needs to go away as well. It's only part of an infoResponseType, |
---|
| 653 | which needs to be reworked overall --> |
---|
| 654 | <xsd:complexType name="federatedExperimentType"> |
---|
| 655 | <xsd:annotation> |
---|
| 656 | <xsd:documentation> |
---|
| 657 | Naming and Emulab instantiation information about a federant. |
---|
| 658 | This is returned by various informational requests and as part |
---|
| 659 | of a successful creation message. |
---|
| 660 | </xsd:documentation> |
---|
| 661 | </xsd:annotation> |
---|
| 662 | <xsd:sequence> |
---|
| 663 | <xsd:element name="name" type="tns:IDType" minOccurs="1" |
---|
| 664 | maxOccurs="unbounded"/> |
---|
| 665 | </xsd:sequence> |
---|
| 666 | </xsd:complexType> |
---|
| 667 | |
---|
| 668 | <!-- end go away --> |
---|
| 669 | |
---|
[c52c48d] | 670 | <xsd:complexType name="infoResponseType"> |
---|
| 671 | <xsd:annotation> |
---|
| 672 | <xsd:documentation> |
---|
[bd3e314] | 673 | Information on an instantiated experiment. Different information may |
---|
| 674 | be returned based on the user's rights to see the topology. Includes |
---|
| 675 | the information about federants hosting sub-experiments for service |
---|
| 676 | access as well as virtual topology and visualization information. All |
---|
| 677 | that information is relative to the requester. ExperimentAccess |
---|
| 678 | includes credentials with which one can access the experiment. These |
---|
| 679 | may include a public key necessary to prove possession of the |
---|
| 680 | credential and should be treated with care. |
---|
[c52c48d] | 681 | </xsd:documentation> |
---|
| 682 | </xsd:annotation> |
---|
| 683 | <xsd:sequence> |
---|
| 684 | <xsd:element name="federant" type="tns:federatedExperimentType" |
---|
[bd3e314] | 685 | minOccurs="0" maxOccurs="unbounded"/> |
---|
[c52c48d] | 686 | <xsd:element name="vtopo" type="tns:vtopoType" minOccurs="0" |
---|
| 687 | maxOccurs="1"/> |
---|
| 688 | <xsd:element name="vis" type="tns:visType" minOccurs="0" |
---|
| 689 | maxOccurs="1"/> |
---|
| 690 | <xsd:element name="experimentID" type="tns:IDType" minOccurs="1" |
---|
| 691 | maxOccurs="unbounded"/> |
---|
[bd3e314] | 692 | <xsd:element name="allocationLog" type="xsd:string" minOccurs="0" |
---|
| 693 | maxOccurs="1"/> |
---|
| 694 | <xsd:element name="experimentStatus" type="tns:statusType"/> |
---|
| 695 | <xsd:element name="experimentAccess" type="tns:accessType" minOccurs="0" |
---|
| 696 | maxOccurs="1"/> |
---|
[76bcab2] | 697 | <xsd:element name="experimentdescription" |
---|
| 698 | type="tns:experimentDescriptionType" minOccurs="0" maxOccurs="1"/> |
---|
[c52c48d] | 699 | </xsd:sequence> |
---|
| 700 | </xsd:complexType> |
---|
| 701 | |
---|
[65f3f29] | 702 | |
---|
| 703 | <xsd:complexType name="multiInfoRequestType"> |
---|
| 704 | <xsd:annotation> |
---|
| 705 | <xsd:documentation> |
---|
| 706 | Gets all information that this user can access on this fedd. |
---|
| 707 | </xsd:documentation> |
---|
| 708 | </xsd:annotation> |
---|
| 709 | <xsd:sequence> |
---|
| 710 | </xsd:sequence> |
---|
| 711 | </xsd:complexType> |
---|
| 712 | |
---|
| 713 | <xsd:complexType name="multiInfoResponseType"> |
---|
| 714 | <xsd:annotation> |
---|
| 715 | <xsd:documentation> |
---|
| 716 | Multi info response. A list of infoResponses |
---|
| 717 | </xsd:documentation> |
---|
| 718 | </xsd:annotation> |
---|
| 719 | <xsd:sequence> |
---|
| 720 | <xsd:element name="info" type="tns:infoResponseType" minOccurs="0" |
---|
| 721 | maxOccurs="unbounded"/> |
---|
| 722 | </xsd:sequence> |
---|
| 723 | </xsd:complexType> |
---|
| 724 | |
---|
[7a8d667] | 725 | <xsd:complexType name="terminateRequestType"> |
---|
| 726 | <xsd:annotation> |
---|
| 727 | <xsd:documentation> |
---|
[2dafa0c] | 728 | Request to terminate an experiment. |
---|
[7a8d667] | 729 | </xsd:documentation> |
---|
| 730 | </xsd:annotation> |
---|
| 731 | <xsd:sequence> |
---|
| 732 | <xsd:element name="experiment" type="tns:IDType"/> |
---|
[ca489e8] | 733 | <xsd:element name="force" type="xsd:boolean" minOccurs="0" maxOccurs="1"/> |
---|
[7a8d667] | 734 | </xsd:sequence> |
---|
| 735 | </xsd:complexType> |
---|
| 736 | |
---|
| 737 | <xsd:complexType name="terminateResponseType"> |
---|
| 738 | <xsd:annotation> |
---|
| 739 | <xsd:documentation> |
---|
[2dafa0c] | 740 | Indication that the experiment has been terminated. |
---|
[7a8d667] | 741 | </xsd:documentation> |
---|
| 742 | </xsd:annotation> |
---|
| 743 | <xsd:sequence> |
---|
| 744 | <xsd:element name="experiment" type="tns:IDType"/> |
---|
[46e4682] | 745 | <xsd:element name="deallocationLog" type="xsd:string" minOccurs="0" |
---|
| 746 | maxOccurs="1"/> |
---|
[7a8d667] | 747 | </xsd:sequence> |
---|
| 748 | </xsd:complexType> |
---|
| 749 | |
---|
[66861a2] | 750 | <xsd:complexType name="startSegmentRequestType"> |
---|
| 751 | <xsd:annotation> |
---|
| 752 | <xsd:documentation> |
---|
| 753 | Request a testbed to create a segment in the given allocation |
---|
| 754 | </xsd:documentation> |
---|
| 755 | </xsd:annotation> |
---|
| 756 | <xsd:sequence> |
---|
| 757 | <xsd:element name="allocID" type="tns:IDType"/> |
---|
| 758 | <xsd:element name="segmentdescription" |
---|
| 759 | type="tns:experimentDescriptionType"/> |
---|
[c122b0c] | 760 | <xsd:element name="service" type="tns:serviceInfoType" minOccurs="0" |
---|
| 761 | maxOccurs="unbounded" /> |
---|
[8d85187] | 762 | <xsd:element name="connection" type="tns:connectionInfoType" |
---|
[c122b0c] | 763 | minOccurs="0" maxOccurs="unbounded"/> |
---|
[66861a2] | 764 | <xsd:element name="fedAttr" type="tns:fedAttrType" minOccurs="0" |
---|
| 765 | maxOccurs="unbounded"/> |
---|
| 766 | </xsd:sequence> |
---|
| 767 | </xsd:complexType> |
---|
| 768 | |
---|
| 769 | <xsd:complexType name="startSegmentResponseType"> |
---|
| 770 | <xsd:annotation> |
---|
| 771 | <xsd:documentation> |
---|
| 772 | Indication that the segment started successfully |
---|
| 773 | </xsd:documentation> |
---|
| 774 | </xsd:annotation> |
---|
| 775 | <xsd:sequence> |
---|
| 776 | <xsd:element name="allocID" type="tns:IDType"/> |
---|
| 777 | <xsd:element name="allocationLog" type="xsd:string" minOccurs="0" |
---|
| 778 | maxOccurs="1"/> |
---|
[76bcab2] | 779 | <xsd:element name="segmentdescription" |
---|
| 780 | type="tns:experimentDescriptionType"/> |
---|
[ae0f69a] | 781 | <xsd:element name="fedAttr" type="tns:fedAttrType" minOccurs="0" |
---|
| 782 | maxOccurs="unbounded"/> |
---|
[66861a2] | 783 | </xsd:sequence> |
---|
| 784 | </xsd:complexType> |
---|
| 785 | |
---|
[2b7d768] | 786 | <xsd:complexType name="terminateSegmentRequestType"> |
---|
| 787 | <xsd:annotation> |
---|
| 788 | <xsd:documentation> |
---|
| 789 | Request to terminate an experiment. |
---|
| 790 | </xsd:documentation> |
---|
| 791 | </xsd:annotation> |
---|
| 792 | <xsd:sequence> |
---|
| 793 | <xsd:element name="allocID" type="tns:IDType"/> |
---|
| 794 | <xsd:element name="force" type="xsd:boolean" minOccurs="0" maxOccurs="1"/> |
---|
| 795 | </xsd:sequence> |
---|
| 796 | </xsd:complexType> |
---|
| 797 | |
---|
| 798 | <xsd:complexType name="terminateSegmentResponseType"> |
---|
| 799 | <xsd:annotation> |
---|
| 800 | <xsd:documentation> |
---|
| 801 | Indication that the experiment has been terminated. |
---|
| 802 | </xsd:documentation> |
---|
| 803 | </xsd:annotation> |
---|
| 804 | <xsd:sequence> |
---|
| 805 | <xsd:element name="allocID" type="tns:IDType"/> |
---|
| 806 | <xsd:element name="deallocationLog" type="xsd:string" minOccurs="0" |
---|
| 807 | maxOccurs="1"/> |
---|
| 808 | </xsd:sequence> |
---|
| 809 | </xsd:complexType> |
---|
| 810 | |
---|
[5f6929a] | 811 | <xsd:complexType name="ns2TopdlRequestType"> |
---|
[4700b3b] | 812 | <xsd:annotation> |
---|
| 813 | <xsd:documentation> |
---|
[5f6929a] | 814 | Request to run the CEDL to topdl translator remotely. This is |
---|
| 815 | primarily an internal interface. |
---|
[4700b3b] | 816 | </xsd:documentation> |
---|
| 817 | </xsd:annotation> |
---|
| 818 | <xsd:sequence> |
---|
| 819 | <xsd:element name="description" type="tns:experimentDescriptionType"/> |
---|
| 820 | </xsd:sequence> |
---|
| 821 | </xsd:complexType> |
---|
| 822 | |
---|
[5f6929a] | 823 | <xsd:complexType name="ns2TopdlResponseType"> |
---|
[4700b3b] | 824 | <xsd:annotation> |
---|
| 825 | <xsd:documentation> |
---|
[5f6929a] | 826 | Translator splitter output. Also an internal interface |
---|
[4700b3b] | 827 | </xsd:documentation> |
---|
| 828 | </xsd:annotation> |
---|
| 829 | <xsd:sequence> |
---|
[66861a2] | 830 | <xsd:element name="experimentdescription" |
---|
| 831 | type="tns:experimentDescriptionType"/> |
---|
[4700b3b] | 832 | </xsd:sequence> |
---|
| 833 | </xsd:complexType> |
---|
| 834 | |
---|
[2761484] | 835 | <xsd:complexType name="setValueRequestType"> |
---|
| 836 | <xsd:annotation> |
---|
| 837 | <xsd:documentation> |
---|
| 838 | Request to set a shared value. |
---|
| 839 | </xsd:documentation> |
---|
| 840 | </xsd:annotation> |
---|
| 841 | <xsd:sequence> |
---|
| 842 | <xsd:element name="name" type="xsd:string"/> |
---|
| 843 | <xsd:element name="value" type="xsd:string"/> |
---|
| 844 | </xsd:sequence> |
---|
| 845 | </xsd:complexType> |
---|
| 846 | |
---|
| 847 | <xsd:complexType name="setValueResponseType"> |
---|
| 848 | <xsd:annotation> |
---|
| 849 | <xsd:documentation> |
---|
| 850 | Request to set a shared value. |
---|
| 851 | </xsd:documentation> |
---|
| 852 | </xsd:annotation> |
---|
| 853 | <xsd:sequence> |
---|
| 854 | <xsd:element name="name" type="xsd:string"/> |
---|
| 855 | <xsd:element name="value" type="xsd:string"/> |
---|
| 856 | </xsd:sequence> |
---|
| 857 | </xsd:complexType> |
---|
| 858 | |
---|
| 859 | <xsd:complexType name="getValueRequestType"> |
---|
| 860 | <xsd:annotation> |
---|
| 861 | <xsd:documentation> |
---|
| 862 | Request to set a shared value. |
---|
| 863 | </xsd:documentation> |
---|
| 864 | </xsd:annotation> |
---|
| 865 | <xsd:sequence> |
---|
| 866 | <xsd:element name="name" type="xsd:string"/> |
---|
| 867 | <xsd:element name="wait" type="xsd:boolean"/> |
---|
| 868 | </xsd:sequence> |
---|
| 869 | </xsd:complexType> |
---|
| 870 | |
---|
| 871 | <xsd:complexType name="getValueResponseType"> |
---|
| 872 | <xsd:annotation> |
---|
| 873 | <xsd:documentation> |
---|
| 874 | Request to set a shared value. |
---|
| 875 | </xsd:documentation> |
---|
| 876 | </xsd:annotation> |
---|
| 877 | <xsd:sequence> |
---|
| 878 | <xsd:element name="name" type="xsd:string"/> |
---|
| 879 | <xsd:element name="value" type="xsd:string" minOccurs="0" maxOccurs="1"/> |
---|
| 880 | </xsd:sequence> |
---|
| 881 | </xsd:complexType> |
---|
[7a8d667] | 882 | |
---|
[bb3769a] | 883 | <xsd:complexType name="faultType"> |
---|
[2dafa0c] | 884 | <xsd:annotation> |
---|
| 885 | <xsd:documentation> |
---|
| 886 | Indication that a service has failed. The code values are |
---|
| 887 | |
---|
| 888 | 1 access denied |
---|
| 889 | 2 proxy error |
---|
| 890 | 3 badly formed request |
---|
| 891 | 4 server configuration error |
---|
| 892 | 5 internal error |
---|
| 893 | 6 partial instantiation |
---|
| 894 | 7 federant error |
---|
| 895 | |
---|
| 896 | Errstr contains the text above corresponding to the code. Code |
---|
| 897 | is always present. Desc provides additional human-readable data |
---|
| 898 | about the error. |
---|
| 899 | </xsd:documentation> |
---|
| 900 | </xsd:annotation> |
---|
[bb3769a] | 901 | <xsd:sequence> |
---|
[0c0b13c] | 902 | <xsd:element name="code" type="xsd:int"> |
---|
| 903 | <xsd:restriction> |
---|
| 904 | <xsd:enumeration value="1"/> <!-- access denied --> |
---|
[058f58e] | 905 | <xsd:enumeration value="2"/> <!-- protocol error --> |
---|
[0c0b13c] | 906 | <xsd:enumeration value="3"/> <!-- badly formed request --> |
---|
[3441fe3] | 907 | <xsd:enumeration value="4"/> <!-- server configuration error --> |
---|
| 908 | <xsd:enumeration value="5"/> <!-- internal error --> |
---|
| 909 | <xsd:enumeration value="6"/> <!-- partial instantiation --> |
---|
| 910 | <xsd:enumeration value="7"/> <!-- federant error --> |
---|
[9d3e646] | 911 | <xsd:enumeration value="8"/> <!-- connect error --> |
---|
[0c0b13c] | 912 | </xsd:restriction> |
---|
| 913 | </xsd:element> |
---|
| 914 | <xsd:element name="errstr" minOccurs="0" maxOccurs="1" type="xsd:string"> |
---|
| 915 | </xsd:element> |
---|
[bb3769a] | 916 | <xsd:element name="desc" type="xsd:string"/> |
---|
| 917 | </xsd:sequence> |
---|
| 918 | </xsd:complexType> |
---|
[6ff0b91] | 919 | </xsd:schema> |
---|