~ubuntu-cloud-archive/ubuntu/precise/cinder/trunk

« back to all changes in this revision

Viewing changes to cinder/api/schemas/v1.1/limits.rng

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2012-11-23 08:39:28 UTC
  • mfrom: (1.1.9)
  • Revision ID: package-import@ubuntu.com-20121123083928-xvzet603cjfj9p1t
Tags: 2013.1~g1-0ubuntu1
* New upstream release.
* debian/patches/avoid_setuptools_git_dependency.patch:
  Avoid git installation. (LP: #1075948) 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<element name="limits" ns="http://docs.openstack.org/common/api/v1.0"
 
2
  xmlns="http://relaxng.org/ns/structure/1.0">
 
3
  <element name="rates">
 
4
    <zeroOrMore>
 
5
      <element name="rate">
 
6
        <attribute name="uri"> <text/> </attribute>
 
7
        <attribute name="regex"> <text/> </attribute>
 
8
        <zeroOrMore>
 
9
          <element name="limit">
 
10
            <attribute name="value"> <text/> </attribute>
 
11
            <attribute name="verb"> <text/> </attribute>
 
12
            <attribute name="remaining"> <text/> </attribute>
 
13
            <attribute name="unit"> <text/> </attribute>
 
14
            <attribute name="next-available"> <text/> </attribute>
 
15
          </element>
 
16
        </zeroOrMore>
 
17
      </element>
 
18
    </zeroOrMore>
 
19
  </element>
 
20
  <element name="absolute">
 
21
    <zeroOrMore>
 
22
      <element name="limit">
 
23
        <attribute name="name"> <text/> </attribute>
 
24
        <attribute name="value"> <text/> </attribute>
 
25
      </element>
 
26
    </zeroOrMore>
 
27
  </element>
 
28
</element>