summaryrefslogtreecommitdiffstats
path: root/schemas/augeas.xsd
blob: df27f91ccea9a7f4e3ecb24e14c1e8d438edeee8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
<?xml version="1.0" encoding="utf-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
            xmlns:py="http://genshi.edgewall.org/" xml:lang="en">

  <xsd:annotation>
    <xsd:documentation>
      Augeas commands
    </xsd:documentation>
  </xsd:annotation>

  <xsd:import namespace="http://genshi.edgewall.org/"
              schemaLocation="genshi.xsd"/>

  <xsd:complexType name="AugeasRemoveCommand">
    <xsd:annotation>
      <xsd:documentation>
        Implementation of the Augeas ``rm`` command.
      </xsd:documentation>
    </xsd:annotation>
    <xsd:attribute type="xsd:string" name="path" use="required">
      <xsd:annotation>
        <xsd:documentation>
          Delete nodes (and all children) matching the given Augeas
          path expression.
        </xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attributeGroup ref="py:genshiAttrs"/>
  </xsd:complexType>

  <xsd:complexType name="AugeasMoveCommand">
    <xsd:annotation>
      <xsd:documentation>
        Implementation of the Augeas ``mv`` command.
      </xsd:documentation>
    </xsd:annotation>
    <xsd:attribute type="xsd:string" name="source" use="required">
      <xsd:annotation>
        <xsd:documentation>
          Move the node matching this path expression.  ``source``
          must match exactly one node.
        </xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute type="xsd:string" name="destination" use="required">
      <xsd:annotation>
        <xsd:documentation>
          Move the node to this location.  ``destination`` must match
          either zero or one nodes.
        </xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attributeGroup ref="py:genshiAttrs"/>
  </xsd:complexType>

  <xsd:complexType name="AugeasSetCommand">
    <xsd:annotation>
      <xsd:documentation>
        Implementation of the Augeas ``set`` command.
      </xsd:documentation>
    </xsd:annotation>
    <xsd:attribute type="xsd:string" name="path" use="required">
      <xsd:annotation>
        <xsd:documentation>
          Path to set the value for.  If the path does not exist, it
          and all of its ancestors will be created.
        </xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute type="xsd:string" name="value" use="required">
      <xsd:annotation>
        <xsd:documentation>
          Value to set.
        </xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attributeGroup ref="py:genshiAttrs"/>
  </xsd:complexType>

  <xsd:complexType name="AugeasClearCommand">
    <xsd:annotation>
      <xsd:documentation>
        Implementation of the Augeas ``clear`` command.
      </xsd:documentation>
    </xsd:annotation>
    <xsd:attribute type="xsd:string" name="path" use="required">
      <xsd:annotation>
        <xsd:documentation>
          Path whose value will be set to ``NULL``.  If the path does
          not exist, it and all of its ancestors will be created.
        </xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attributeGroup ref="py:genshiAttrs"/>
  </xsd:complexType>

  <xsd:complexType name="AugeasSetMultiCommand">
    <xsd:annotation>
      <xsd:documentation>
        Set multiple node values at once.
      </xsd:documentation>
    </xsd:annotation>
    <xsd:attribute type="xsd:string" name="base" use="required">
      <xsd:annotation>
        <xsd:documentation>
          The base path.
        </xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute type="xsd:string" name="sub" use="required">
      <xsd:annotation>
        <xsd:documentation>
          ``sub`` will be used as an expression relative to each node
          that matches the :xml:attribute:`AugeasSetMultiCommand:base`
          expression.
        </xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute type="xsd:string" name="value" use="required">
      <xsd:annotation>
        <xsd:documentation>
          The value to set on all nodes that match
          :xml:attribute:`AugeasSetMultiCommand:sub` relative to each
          node matching :xml:attribute:`AugeasSetMultiCommand:base`.
        </xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attributeGroup ref="py:genshiAttrs"/>
  </xsd:complexType>

  <xsd:simpleType name="AugeasWhenEnum">
    <xsd:restriction base="xsd:string">
      <xsd:enumeration value="before"/>
      <xsd:enumeration value="after"/>
    </xsd:restriction>
  </xsd:simpleType>

  <xsd:complexType name="AugeasInsertCommand">
    <xsd:annotation>
      <xsd:documentation>
        Implementation of the Augeas ``ins`` command.
      </xsd:documentation>
    </xsd:annotation>
    <xsd:attribute type="xsd:string" name="path" use="required">
      <xsd:annotation>
        <xsd:documentation>
          The path to a node that will be the sibling of the new node.
        </xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute type="xsd:string" name="label" use="required">
      <xsd:annotation>
        <xsd:documentation>
          The label of the new node to be created.
        </xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute type="AugeasWhenEnum" name="where" default="before">
      <xsd:annotation>
        <xsd:documentation>
          Where to create the node: ``before`` or ``after`` the
          sibling given in :xml:attribute:`AugeasInsertCommand:path`.
        </xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attributeGroup ref="py:genshiAttrs"/>
  </xsd:complexType>

  <xsd:group name="augeasCommands">
    <xsd:annotation>
      <xsd:documentation>
        All available Augeas commands.
      </xsd:documentation>
    </xsd:annotation>
    <xsd:choice>
      <xsd:element name="Initial" type="xsd:string">
        <xsd:annotation>
          <xsd:documentation>
            Specify initial content for a file, which will be created
            before Augeas commands are applied if a file doesn't
            exist.
          </xsd:documentation>
        </xsd:annotation>
      </xsd:element>
      <xsd:element name="Remove" type="AugeasRemoveCommand">
        <xsd:annotation>
          <xsd:documentation>
            Implementation of the Augeas ``rm`` command.
          </xsd:documentation>
        </xsd:annotation>
      </xsd:element>
      <xsd:element name="Move" type="AugeasMoveCommand">
        <xsd:annotation>
          <xsd:documentation>
            Implementation of the Augeas ``mv`` command.
          </xsd:documentation>
        </xsd:annotation>
      </xsd:element>
      <xsd:element name="Set" type="AugeasSetCommand">
        <xsd:annotation>
          <xsd:documentation>
            Implementation of the Augeas ``set`` command.
          </xsd:documentation>
        </xsd:annotation>
      </xsd:element>
      <xsd:element name="Clear" type="AugeasClearCommand">
        <xsd:annotation>
          <xsd:documentation>
            Implementation of the Augeas ``clear`` command.
          </xsd:documentation>
        </xsd:annotation>
      </xsd:element>
      <xsd:element name="SetMulti" type="AugeasSetMultiCommand">
        <xsd:annotation>
          <xsd:documentation>
            Set multiple node values at once.
          </xsd:documentation>
        </xsd:annotation>
      </xsd:element>
      <xsd:element name="Insert" type="AugeasInsertCommand">
        <xsd:annotation>
          <xsd:documentation>
            Implementation of the Augeas ``ins`` command.
          </xsd:documentation>
        </xsd:annotation>
      </xsd:element>
    </xsd:choice>
  </xsd:group>
</xsd:schema>