|
6 | 6 |
|
7 | 7 | .. http:get:: /api/keys/(string:id)/ |
8 | 8 |
|
9 | | - Retrieve a :class:`~api.models.Key` by its id. |
| 9 | + Retrieve a :class:`~api.models.Key` by its `id`. |
10 | 10 |
|
11 | 11 | .. http:delete:: /api/keys/(string:id)/ |
12 | 12 |
|
13 | | - Delete a :class:`~api.models.Key` by its id. |
| 13 | + Destroy a :class:`~api.models.Key` by its `id`. |
| 14 | +
|
| 15 | + See also :meth:`KeyViewSet.destroy() <api.views.KeyViewSet.destroy>` |
14 | 16 |
|
15 | 17 | .. http:get:: /api/keys/ |
16 | 18 |
|
|
20 | 22 |
|
21 | 23 | Create a new :class:`~api.models.Key`. |
22 | 24 |
|
| 25 | + See also :meth:`KeyViewSet.post_save() <api.views.KeyViewSet.post_save>` |
| 26 | +
|
23 | 27 |
|
24 | 28 | Providers |
25 | 29 | ========= |
26 | 30 |
|
27 | 31 | .. http:get:: /api/providers/(string:id)/ |
28 | 32 |
|
29 | | - Retrieve a :class:`~api.models.Provider` by its id. |
| 33 | + Retrieve a :class:`~api.models.Provider` by its `id`. |
30 | 34 |
|
31 | 35 | .. http:patch:: /api/providers/(string:id)/ |
32 | 36 |
|
33 | 37 | Update parts of a :class:`~api.models.Provider`. |
34 | 38 |
|
35 | 39 | .. http:delete:: /api/providers/(string:id)/ |
36 | 40 |
|
37 | | - Delete a :class:`~api.models.Provider` by its id. |
| 41 | + Destroy a :class:`~api.models.Provider` by its `id`. |
38 | 42 |
|
39 | 43 | .. http:get:: /api/providers/ |
40 | 44 |
|
|
50 | 54 |
|
51 | 55 | .. http:get:: /api/flavors/(string:id)/ |
52 | 56 |
|
53 | | - Retrieve a :class:`~api.models.Flavor` by its id. |
| 57 | + Retrieve a :class:`~api.models.Flavor` by its `id`. |
54 | 58 |
|
55 | 59 | .. http:patch:: /api/flavors/(string:id)/ |
56 | 60 |
|
57 | 61 | Update parts of a :class:`~api.models.Flavor`. |
58 | 62 |
|
59 | 63 | .. http:delete:: /api/flavors/(string:id)/ |
60 | 64 |
|
61 | | - Delete a :class:`~api.models.Flavor` by its id. |
| 65 | + Destroy a :class:`~api.models.Flavor` by its `id`. |
62 | 66 |
|
63 | 67 | .. http:get:: /api/flavors/ |
64 | 68 |
|
|
68 | 72 |
|
69 | 73 | Create a new :class:`~api.models.Flavor`. |
70 | 74 |
|
| 75 | + See also :meth:`FlavorViewSet.create() <api.views.FlavorViewSet.create>` |
| 76 | +
|
71 | 77 |
|
72 | 78 | Formations |
73 | 79 | ========== |
74 | 80 |
|
75 | 81 | .. http:get:: /api/formations/(string:id)/ |
76 | 82 |
|
77 | | - Retrieve a :class:`~api.models.Formation` by its id. |
| 83 | + Retrieve a :class:`~api.models.Formation` by its `id`. |
78 | 84 |
|
79 | 85 | .. http:delete:: /api/formations/(string:id)/ |
80 | 86 |
|
81 | | - Delete a :class:`~api.models.Formation` by its id. |
| 87 | + Destroy a :class:`~api.models.Formation` by its `id`. |
82 | 88 |
|
83 | 89 | .. http:get:: /api/formations/ |
84 | 90 |
|
|
88 | 94 |
|
89 | 95 | Create a new :class:`~api.models.Formation`. |
90 | 96 |
|
| 97 | + See also |
| 98 | + :meth:`FormationViewSet.create() <api.views.FormationViewSet.create>` and |
| 99 | + :meth:`FormationViewSet.post_save() <api.views.FormationViewSet.post_save>` |
| 100 | +
|
| 101 | +
|
91 | 102 | Infrastructure |
92 | 103 | -------------- |
93 | 104 |
|
94 | 105 | .. http:get:: /api/formations/(string:id)/layers/(string:id)/ |
95 | 106 |
|
96 | | - Retrieve a :class:`~api.models.Layer` by its id. |
| 107 | + Retrieve a :class:`~api.models.Layer` by its `id`. |
97 | 108 |
|
98 | 109 | .. http:patch:: /api/formations/(string:id)/layers/(string:id)/ |
99 | 110 |
|
100 | 111 | Update parts of a :class:`~api.models.Layer`. |
101 | 112 |
|
102 | 113 | .. http:delete:: /api/formations/(string:id)/layers/(string:id)/ |
103 | 114 |
|
104 | | - Delete a :class:`~api.models.Layer` by its id. |
| 115 | + Destroy a :class:`~api.models.Layer` by its `id`. |
105 | 116 |
|
106 | 117 | .. http:get:: /api/formations/(string:id)/layers/ |
107 | 118 |
|
|
113 | 124 |
|
114 | 125 | .. http:get:: /api/formations/(string:id)/nodes/(string:id)/ |
115 | 126 |
|
116 | | - Retrieve a :class:`~api.models.Node` by its id. |
| 127 | + Retrieve a :class:`~api.models.Node` by its `id`. |
117 | 128 |
|
118 | 129 | .. http:delete:: /api/formations/(string:id)/nodes/(string:id)/ |
119 | 130 |
|
120 | | - Delete a :class:`~api.models.Node` by its id. |
| 131 | + Destroy a :class:`~api.models.Node` by its `id`. |
121 | 132 |
|
122 | 133 | .. http:get:: /api/formations/(string:id)/nodes/ |
123 | 134 |
|
|
141 | 152 |
|
142 | 153 | .. http:get:: /api/formations/(string:id)/builds/(string:uuid)/ |
143 | 154 |
|
144 | | - Retrieve a :class:`~api.models.Build` by its uuid. |
| 155 | + Retrieve a :class:`~api.models.Build` by its `uuid`. |
145 | 156 |
|
146 | 157 | .. http:post:: /api/formations/(string:id)/builds/ |
147 | 158 |
|
148 | 159 | Create a new :class:`~api.models.Build`. |
149 | 160 |
|
150 | 161 | .. http:get:: /api/formations/(string:id)/releases/(int:version)/ |
151 | 162 |
|
152 | | - Retrieve a :class:`~api.models.Release` by its version. |
| 163 | + Retrieve a :class:`~api.models.Release` by its `version`. |
153 | 164 |
|
154 | 165 | .. http:get:: /api/formations/(string:id)/releases/ |
155 | 166 |
|
|
160 | 171 |
|
161 | 172 | .. http:post:: /api/formations/(string:id)/scale/layers/ |
162 | 173 |
|
163 | | - scale_layers |
| 174 | + See also |
| 175 | + :meth:`FormationViewSet.scale_layers() <api.views.FormationViewSet.scale_layers>` |
164 | 176 |
|
165 | 177 | .. http:post:: /api/formations/(string:id)/scale/containers/ |
166 | 178 |
|
167 | | - scale_containers |
| 179 | + See also |
| 180 | + :meth:`FormationViewSet.scale_containers() <api.views.FormationViewSet.scale_containers>` |
168 | 181 |
|
169 | 182 | .. http:post:: /api/formations/(string:id)/balance/ |
170 | 183 |
|
171 | | - balance |
| 184 | + See also |
| 185 | + :meth:`FormationViewSet.balance() <api.views.FormationViewSet.balance>` |
172 | 186 |
|
173 | 187 | .. http:post:: /api/formations/(string:id)/calculate/ |
174 | 188 |
|
175 | | - calculate |
| 189 | + See also |
| 190 | + :meth:`FormatinViewSet.calculate() <api.views.FormationViewSet.calculate>` |
176 | 191 |
|
177 | 192 | .. http:post:: /api/formations/(string:id)/converge/ |
178 | 193 |
|
179 | | - converge |
| 194 | + See also |
| 195 | + :meth:`FormationViewSet.converge() <api.views.FormationViewSet.converge>` |
180 | 196 |
|
181 | 197 |
|
182 | 198 | Auth |
|
0 commit comments