summaryrefslogtreecommitdiff
path: root/api-ref/source/v3/parameters.yaml
blob: c521e0b0630bbd36385a084f57e8616e166a6cbc (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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
# variables in header
x-openstack-request-id:
  description: >
    foo
  in: header
  required: false
  type: string

# variables in path
admin_project_id:
  description: |
    The UUID of the administrative project.
  in: path
  required: true
  type: string
attachment_id_path:
  description: |
    The ID of the attachment.
  in: path
  required: true
  type: string
backup_id_required:
  description: |
    The UUID for a backup.
  in: path
  required: true
  type: string
cgsnapshot_id_path:
  description: |
    The ID of the consistency group snapshot.
  in: path
  required: true
  type: string
consistencygroup_id_path:
  description: |
    The ID of the consistency group.
  in: path
  required: true
  type: string
encryption_id:
  description: |
    The ID of the encryption type.
  in: path
  required: true
  type: string
group_id_path:
  description: |
    The ID of the group.
  in: path
  required: true
  type: string
group_snapshot_id_path:
  description: |
    The ID of the group snapshot.
  in: path
  required: true
  type: string
group_type_id_path:
  description: |
    The UUID for an existing group type.
  in: path
  required: true
  type: string
hostname:
  description: |
    The name of the host that hosts the storage back
    end.
  in: path
  required: true
  type: string
key_encrypt_spec:
  description: |
    The key name of the encryption spec for a volume type.
  in: path
  required: true
  type: string
key_extra_spec:
  description: |
    The key name of the extra spec for a volume type.
  in: path
  required: true
  type: string
key_path:
  description: |
    The metadata key name for the metadata that you
    want to remove.
  in: path
  required: true
  type: string
key_update:
  description: |
    The metadata key name for the metadata that you
    want to update.
  in: path
  required: true
  type: string
key_view:
  description: |
    The metadata key name for the metadata that you
    want to see.
  in: path
  required: true
  type: string
list_volume:
  description: |
    Show volume ids in this group. Default is False.
  in: path
  required: false
  type: string
  min_version: 3.25
message_id:
  description: |
    The UUID of the message.
  in: path
  required: true
  type: string
project_id_path:
  description: |
    The UUID of the project in a multi-tenancy cloud.
  in: path
  required: true
  type: string
qos_id:
  description: |
    The ID of the QoS specification.
  in: path
  required: true
  type: string
quota_class_name:
  description:
    The name of the quota class for which to set quotas.
  in: path
  required: true
  type: string
quotas_project_id:
  description: |
    The UUID of the project in a multi-tenancy cloud.
  in: path
  required: true
  type: string
snapshot_id_path:
  description: |
    The UUID of the snapshot.
  in: path
  required: true
  type: string
spec_id:
  description: |
    The id (key) of the group specification.
  in: path
  required: true
  type: string
transfer_id:
  description: |
    The unique identifier for a volume transfer.
  in: path
  required: true
  type: string
volume_id_path:
  description: |
    The UUID of the volume.
  in: path
  required: true
  type: string
volume_type_id:
  description: |
    The UUID for an existing volume type.
  in: path
  required: true
  type: string
volume_type_name_or_id:
  description: |
    The name or UUID for an existing volume type.
  in: path
  required: true
  type: string

# variables in query
action:
  description: |
    The action. Valid values are "set" or "unset."
  in: query
  required: true
  type: string
all-tenants:
  description: |
    Shows details for all project. Admin only.
  in: query
  required: false
  type: string
binary_query:
  description: |
    Filter the service list result by binary name of the service.
  in: query
  required: false
  type: string
bootable_query:
  description: |
    Filters results by bootable status. Default=None.
  in: query
  required: false
  type: boolean
cascade:
  description: |
    Remove any snapshots along with the volume. Default=False.
  in: query
  required: false
  type: boolean
detail:
  description: |
    Indicates whether to show pool details or only
    pool names in the response.  Set to ``true`` to show pool details.
    Set to ``false`` to show only pool names. Default is ``false``.
  in: query
  required: false
  type: boolean
filter_created_at:
  description: |
    Filters reuslts by a time that resources are created at with time
    comparison operators: gt/gte/eq/neq/lt/lte.
    The date and time stamp format is ISO 8601: CCYY-MM-DDThh:mm:ss±hh:mm.
    The ±hh:mm value, if included, returns the time zone as an offset from UTC.
  in: query
  required: false
  type: string
  min_version: 3.60
filter_updated_at:
  description: |
    Filters reuslts by a time that resources are updated at with time
    comaprison operators: gt/gte/eq/neq/lt/lte.
    The date and time stamp format is ISO 8601: CCYY-MM-DDThh:mm:ss±hh:mm.
    The ±hh:mm value, if included, returns the time zone as an offset from UTC.
  in: query
  required: false
  type: string
  min_version: 3.60
fix_allocated_quotas:
  description: |
    Whether to fix all the non-leaf projects' ``allocation``
    attribute or raise 400 error if ``allocation`` doesn't match
    the current quota usage information. Default is ``false``.
  in: query
  required: false
  type: boolean
force_del_qos:
  description: |
    To delete a QoS specification even if it is in-
    use, set to ``true``. Default is ``false``.
  in: query
  required: false
  type: boolean
force_vol_del:
  description: |
    Indicates whether to force delete a volume even if
    the volume is in deleting or error_deleting. Default is ``false``.
  in: query
  required: false
  type: boolean
  min_version: 3.23
host_query:
  description: |
    Filter the service list result by host name of the service.
  in: query
  required: false
  type: string
image-id:
  description: |
    Creates volume from image ID. Default=None.
  in: query
  required: false
  type: string
is_public_volume_type_query:
  description: |
    Filter the volume type by public visibility.
    See :ref:`valid boolean values <valid-boolean-values>`.
  in: query
  required: false
  type: boolean
limit:
  description: |
    Requests a page size of items. Returns a number
    of items up to a limit value. Use the ``limit`` parameter to make
    an initial limited request and use the ID of the last-seen item
    from the response as the ``marker`` parameter value in a
    subsequent limited request.
  in: query
  required: false
  type: integer
limit_group_snapshot:
  description: |
    Requests a page size of items. Returns a number
    of items up to a limit value. Use the ``limit`` parameter to make
    an initial limited request and use the ID of the last-seen item
    from the response as the ``marker`` parameter value in a
    subsequent limited request.
  in: query
  required: false
  type: integer
  min_version: 3.29
limit_transfer:
  description: |
    Requests a page size of items. Returns a number
    of items up to a limit value. Use the ``limit`` parameter to make
    an initial limited request and use the ID of the last-seen item
    from the response as the ``marker`` parameter value in a
    subsequent limited request.
  in: query
  required: false
  type: integer
  min_version: 3.59
marker:
  description: |
    The ID of the last-seen item. Use the ``limit``
    parameter to make an initial limited request and use the ID of the
    last-seen item from the response as the ``marker`` parameter value
    in a subsequent limited request.
  in: query
  required: false
  type: string
marker_group_snapshot:
  description: |
    The ID of the last-seen item. Use the ``limit``
    parameter to make an initial limited request and use the ID of the
    last-seen item from the response as the ``marker`` parameter value
    in a subsequent limited request.
  in: query
  required: false
  type: string
  min_version: 3.29
marker_transfer:
  description: |
    The ID of the last-seen item. Use the ``limit``
    parameter to make an initial limited request and use the ID of the
    last-seen item from the response as the ``marker`` parameter value
    in a subsequent limited request.
  in: query
  required: false
  type: string
  min_version: 3.59
metadata_query:
  description: |
    Filters results by a metadata key and value pair.
    Default=None.
  in: query
  required: true
  type: object
migration_status_query:
  description: |
    Filters results by a migration status. Default=None.
    Admin only.
  in: query
  required: false
name_volume:
  description: |
    Filters results by a name. Default=None.
  in: query
  required: false
  type: string
offset:
  description: |
    Used in conjunction with ``limit`` to return a slice of items. ``offset``
    is where to start in the list.
  in: query
  required: false
  type: integer
offset_group_snapshot:
  description: |
    Used in conjunction with ``limit`` to return a slice of items. ``offset``
    is where to start in the list.
  in: query
  required: false
  type: integer
  min_version: 3.29
offset_transfer:
  description: |
    Used in conjunction with ``limit`` to return a slice of items. ``offset``
    is where to start in the list.
  in: query
  required: false
  type: integer
  min_version: 3.59
resource:
  description: |
    Filter for resource name.
  in: query
  required: false
  type: string
sort:
  description: |
    Comma-separated list of sort keys and optional
    sort directions in the form of < key > [: < direction > ]. A valid
    direction is ``asc`` (ascending) or ``desc`` (descending).
  in: query
  required: false
  type: string
sort_dir:
  description: |
    Sorts by one or more sets of attribute and sort
    direction combinations. If you omit the sort direction in a set,
    default is ``desc``.
  in: query
  required: false
  type: string
sort_dir_group_snapshot:
  description: |
    Sorts by one or more sets of attribute and sort
    direction combinations. If you omit the sort direction in a set,
    default is ``desc``.
  in: query
  required: false
  type: string
  min_version: 3.29
sort_dir_transfer:
  description: |
    Sorts by one or more sets of attribute and sort
    direction combinations. If you omit the sort direction in a set,
    default is ``desc``.
  in: query
  required: false
  type: string
  min_version: 3.59
sort_key:
  description: |
    Sorts by an attribute. A valid value is ``name``,
    ``status``, ``container_format``, ``disk_format``, ``size``,
    ``id``, ``created_at``, or ``updated_at``. Default is
    ``created_at``. The API uses the natural sorting direction of the
    ``sort_key`` attribute value.
  in: query
  required: false
  type: string
sort_key_group_snapshot:
  description: |
    Sorts by an attribute. A valid value is ``name``,
    ``status``, ``group_id``, ``group_type_id``, ``size``,
    ``id``, ``created_at``, or ``updated_at``. Default is
    ``created_at``. The API uses the natural sorting direction of the
    ``sort_key`` attribute value.
  in: query
  required: false
  type: string
  min_version: 3.29
sort_key_transfer:
  description: |
    Sorts by an attribute. Default is
    ``created_at``. The API uses the natural sorting direction of the
    ``sort_key`` attribute value.
  in: query
  required: false
  type: string
  min_version: 3.59
status_query:
  description: |
    Filters results by a status. Default=None.
  in: query
  required: false
  type: boolean
usage:
  description: |
    Show project's quota usage information.
    Default is ``false``.
  in: query
  required: false
  type: boolean
vol_type_id_query:
  description: |
    A volume type ID.
  in: query
  required: true
  type: string
with_count:
  description: |
    Whether to show ``count`` in API response or not, default is ``False``.
  in: query
  required: false
  type: boolean
  min_version: 3.45

# variables in body
absolute:
  description: |
    An ``absolute`` limits object.
  in: body
  required: true
  type: object
accepted:
  description: |
    Records if this transfer was accepted or not.
  in: body
  required: false
  type: boolean
  min_version: 3.57
active_backend_id:
  description: |
    The ID of active storage backend. Only in ``cinder-volume`` service.
  in: body
  required: false
  type: string
add_project_access:
  description: |
    Adds volume type access to a project.
  in: body
  required: true
  type: object
add_volumes:
  description: |
    One or more volume UUIDs, separated by commas, to
    add to the volume group or consistency group.
  in: body
  required: false
  type: string
alias:
  description: |
    The alias for the extension. For example,
    "FOXNSOX", "os- availability-zone", "os-extended-quotas", "os-
    share-unmanage" or "os-used-limits."
  in: body
  required: true
  type: string
allow_attached_volume:
  description: |
    Whether to allow failover if any volumes are 'in-use'.
    See :ref:`valid boolean values <valid-boolean-values>`
  in: body
  required: true
  type: boolean
attach_mode:
  description: |
    The attach mode of attachment, acceptable values are
    read-only ('ro') and read-and-write ('rw').
  in: body
  required: false
  type: string
  min_version: 3.54
attach_mode_required:
  description: |
    The attach mode of attachment, read-only ('ro') or
    read-and-write ('rw'), default is 'rw'.
  in: body
  required: true
  type: string
attach_status:
  description: |
    The volume attach status.
  in: body
  required: false
  type: string
attached_at:
  description: |
    The time when attachment is attached.
  in: body
  required: true
  type: string
attachment:
  description: |
    An attachment object.
  in: body
  required: true
  type: object
attachment_id:
  description: |
    The ID of the attachment.
  in: body
  required: false
  type: string
attachment_id_required:
  description: |
    The ID of attachment.
  in: body
  required: true
  type: string
attachments:
  description: |
    Instance attachment information.  If this volume
    is attached to a server instance, the attachments list includes
    the UUID of the attached server, an attachment UUID, the name of
    the attached host, if any, the volume UUID, the device, and the
    device UUID.  Otherwise, this list is empty. For example::

      [
        {
          'server_id': '6c8cf6e0-4c8f-442f-9196-9679737feec6',
          'attachment_id': '3dafcac4-1cb9-4b60-a227-d729baa10cf6',
          'attached_at': '2019-09-30T19:30:34.000000',
          'host_name': null,
          'volume_id': '5d95d5ee-4bdd-4452-b9d7-d44ca10d3d53',
          'device': '/dev/vda',
          'id': '5d95d5ee-4bdd-4452-b9d7-d44ca10d3d53'
        }
      ]
  in: body
  required: true
  type: array
auth_key:
  description: |
    The authentication key for the volume transfer.
  in: body
  required: true
  type: string
availability_zone:
  description: |
    The name of the availability zone.
  in: body
  required: false
  type: string
availability_zone_backup:
  description: |
    The backup availability zone key value pair.
  in: body
  required: false
  type: string
  min_version: 3.51
availability_zone_required:
  description: |
    The availability zone name.
  in: body
  required: true
  type: string
backend_id:
  description: |
    ID of backend to failover to. Default is ``None``.
  in: body
  required: false
  type: string
backend_id_target:
  description: |
    ID of failover target backend.
  in: body
  required: true
  type: string
backend_state:
  description: |
    The state of storage backend. Only in ``cinder-volume`` service.
  in: body
  required: false
  type: string
backup:
  description: |
    A ``backup`` object.
  in: body
  required: true
  type: object
backup_gigabytes:
  description: |
    The size (GB) of backups that are allowed for each project.
  in: body
  required: true
  type: integer
backup_gigabytes_usage:
  description: |
    The size (GB) usage information of backup for this project, including ``in_use``,
    ``limit``, ``reserved`` and ``allocated`` attributes.
    Note: ``allocated`` attribute is available only when nested quota is enabled.
  in: body
  required: true
  type: object
backup_id:
  description: |
    The UUID of the backup.
  in: body
  required: false
  type: string
  min_version: 3.47
backup_record:
  description: |
    An object recording volume backup metadata, including ``backup_service``
    and ``backup_url``.
  in: body
  required: true
  type: object
backup_service:
  description: |
    The service used to perform the backup.
  in: body
  required: true
  type: string
backup_url:
  description: |
    An identifier string to locate the backup.
  in: body
  required: true
  type: string
backups:
  description: |
    A list of ``backup`` objects.
  in: body
  required: true
  type: array
backups_number:
  description: |
    The number of backups that are allowed for each project.
  in: body
  required: true
  type: integer
backups_number_usage:
  description: |
    The backup usage information for this project, including ``in_use``,
    ``limit``, ``reserved`` and ``allocated`` attributes.
    Note: ``allocated`` attribute is available only when nested quota is enabled.
  in: body
  required: true
  type: object
binary:
  description: |
    The binary name of the service.
  in: body
  required: false
  type: string
binary_required:
  description: |
    The binary name of the service.
  in: body
  required: true
  type: string
bootable:
  description: |
    Enables or disables the bootable attribute. You
    can boot an instance from a bootable volume.
    See :ref:`valid boolean values <valid-boolean-values>`
  in: body
  required: false
  type: boolean
bootable_required:
  description: |
    Enables or disables the bootable attribute. You
    can boot an instance from a bootable volume.
    See :ref:`valid boolean values <valid-boolean-values>`
  in: body
  required: true
  type: boolean
bootable_response:
  description: |
    Enables or disables the bootable attribute. You
    can boot an instance from a bootable volume.
  in: body
  required: true
  type: string
capabilities:
  description: |
    The capabilities for the back end.  The value is
    either ``null`` or a string value that indicates the capabilities
    for each pool. For example, ``total_capacity_gb`` or ``QoS_support``.
  in: body
  required: true
  type: object
cgsnapshot:
  description: |
    A consistency group snapshot object.
  in: body
  required: true
  type: object
cgsnapshot_id:
  description: |
    The UUID of the consistency group snapshot.
  in: body
  required: false
  type: string
cgsnapshots:
  description: |
    A collection of ``cgsnapshot`` objects.
  in: body
  required: true
  type: object
cinder_id:
  description: |
    The UUID of the resource in Cinder.
  in: body
  required: true
  type: string
cipher:
  description: |
    The encryption algorithm or mode. For example, aes-xts-plain64. The default
    value is None.
  in: body
  required: false
  type: string
cluster_cvol:
  description: |
    The cluster name. Only in ``cinder-volume`` service.
  in: body
  required: false
  type: string
  min_version: 3.7
cluster_mutex:
  description: |
    The OpenStack Block Storage cluster where the resource resides.  Optional
    only if host field is provided.
  in: body
  required: false
  type: string
cluster_name:
  description: |
    The cluster name of volume backend.
  in: body
  required: false
  type: string
  min_version: 3.61
connection_info:
  description: |
    The connection info used for server to connect the volume.
  in: body
  required: true
  type: object
connector:
  description: |
    The ``connector`` object.
  in: body
  required: false
  type: object
connector_required:
  description: |
    The ``connector`` object. The internal structure of connector depends on
    the volume driver implementation. For details about the required elements
    in the structure, see the documentation for the volume driver.
  in: body
  required: true
  type: object
consistencygroup:
  description: |
    A consistency group.
  in: body
  required: true
  type: object
consistencygroup-from-src:
  description: |
    The consistency group from source object.
  in: body
  required: true
  type: object
consistencygroup_id:
  description: |
    The UUID of the consistency group.
  in: body
  required: false
  type: string
consistencygroup_id_required:
  description: |
    The UUID of the consistency group.
  in: body
  required: true
  type: string
consistencygroups:
  description: |
    A list of consistency groups.
  in: body
  required: true
  type: array
consumer:
  description: |
    The consumer type.
  in: body
  required: false
  type: string
container:
  description: |
    The container name or null.
  in: body
  required: false
  type: string
container_format:
  description: |
    Container format for the new image. Default is bare.
  in: body
  required: false
  type: string
control_location:
  description: |
    Notional service where encryption is performed. Valid values are
    "front-end" or "back-end". The default value is "front-end".
  in: body
  required: false
  type: string
count:
  description: |
    The total count of requested resource before pagination is applied.
  in: body
  required: false
  type: integer
  min_version: 3.45
create-from-src:
  description: |
    The create from source action.
  in: body
  required: true
  type: object
created_at:
  description: |
    The date and time when the resource was created.

    The date and time stamp format is `ISO 8601
    <https://en.wikipedia.org/wiki/ISO_8601>`_:

    ::

       CCYY-MM-DDThh:mm:ss±hh:mm

    For example, ``2015-08-27T09:49:58-05:00``.

    The ``±hh:mm`` value, if included, is the time zone as an offset
    from UTC.
  in: body
  required: true
  type: string
data_timestamp:
  description: |
    The time when the data on the volume was first saved. If it is
    a backup from volume, it will be the same as ``created_at``
    for a backup. If it is a backup from a snapshot, it will be the
    same as ``created_at`` for the snapshot.
  in: body
  required: true
  type: string
delete:
  description: |
    The delete action.
  in: body
  required: true
  type: object
delete-volumes:
  description: |
    If set to ``true``, allows deletion of a
    group as well as all volumes in the group.
    See :ref:`valid boolean values <valid-boolean-values>`
  in: body
  required: false
  type: boolean
deleted:
  description: |
    The resource is deleted or not.
  in: body
  required: true
  type: boolean
deleted_at:
  description: |
    The date and time when the resource was deleted.

    The date and time stamp format is `ISO 8601
    <https://en.wikipedia.org/wiki/ISO_8601>`_:

    ::

       CCYY-MM-DDThh:mm:ss±hh:mm

    For example, ``2015-08-27T09:49:58-05:00``.

    The ``±hh:mm`` value, if included, is the time zone as an offset
    from UTC. In the previous example, the offset value is ``-05:00``.

    If the ``deleted_at`` date and time stamp is not set, its value is
    ``null``.
  in: body
  required: true
  type: string
description:
  description: |
    The backup description or null.
  in: body
  required: false
  type: string
description_cap:
  description: |
    The capabilities description.
  in: body
  required: true
  type: string
description_cg:
  description: |
    The consistency group description.
  in: body
  required: true
  type: string
description_cg_snapshot_false:
  description: |
    The consistency group snapshot description.
  in: body
  required: false
  type: string
description_cg_snapshot_true:
  description: |
    The consistency group snapshot description.
  in: body
  required: true
  type: string
description_consis:
  description: |
    The consistency group description.
  in: body
  required: false
  type: string
description_extn:
  description: |
    The extension description.
  in: body
  required: true
  type: string
description_group_false:
  description: |
    The group description.
  in: body
  required: false
  type: string
description_group_snap:
  description: |
    The group snapshot description.
  in: body
  required: false
  type: string
description_group_snap_req:
  description: |
    The group snapshot description.
  in: body
  required: true
  type: string
description_group_true:
  description: |
    The group description.
  in: body
  required: true
  type: string
description_group_type_optional:
  description: |
    The group type description.
  in: body
  required: false
  type: string
description_group_type_required:
  description: |
    The group type description.
  in: body
  required: true
  type: string
description_snap:
  description: |
    A description for the snapshot. Default is
    ``None``.
  in: body
  required: false
  type: string
description_snap_req:
  description: |
    A description for the snapshot.
  in: body
  required: true
  type: string
description_vol:
  description: |
    The volume description.
  in: body
  required: false
  type: string
description_vol_req:
  description: |
    The volume description.
  in: body
  required: true
  type: string
description_volume_type_optional:
  description: |
    The volume type description.
  in: body
  required: false
  type: string
description_volume_type_required:
  description: |
    The volume type description.
  in: body
  required: true
  type: string
destination_project_id:
  description: |
    Records the destination project_id after volume transfer.
  in: body
  required: false
  type: string
  min_version: 3.57
detached_at:
  description: |
    The time when attachment is detached.
  in: body
  required: true
  type: string
disabled:
  description: |
    Filter by disabled status.
    See :ref:`valid boolean values <valid-boolean-values>`
  in: body
  required: false
  type: boolean
disabled_reason_body:
  description: |
    The reason for disabling a service.
  in: body
  required: false
  type: string
disabled_reason_body_req:
  description: |
    The reason for disabling a service.
  in: body
  required: true
  type: string
disabled_required:
  description: |
    The service is disabled or not.
  in: body
  required: true
  type: boolean
disk_format:
  description: |
    Disk format for the new image. Default is raw.
  in: body
  required: false
  type: string
display_name:
  description: |
    The name of volume backend capabilities.
  in: body
  required: true
  type: string
driver_version:
  description: |
    The driver version.
  in: body
  required: true
  type: string
encrypted:
  description: |
    If true, this volume is encrypted.
  in: body
  required: true
  type: boolean
encryption:
  description: |
    The encryption information.
  in: body
  required: true
  type: object
encryption_id_body:
  description: |
    The UUID of the encryption.
  in: body
  required: true
  type: string
event_id:
  description: |
    The id of the event to this message, this id could
    eventually be translated into ``user_message``.
  in: body
  required: true
  type: string
extra_info:
  description: |
    More information about the resource.
  in: body
  required: true
  type: string
extra_specs_volume_type_optional:
  description: |
    A key and value pair that contains additional
    specifications that are associated with the volume type. Examples
    include capabilities, capacity, compression, and so on, depending
    on the storage driver in use.
  in: body
  required: false
  type: object
extra_specs_volume_type_required:
  description: |
    A set of key and value pairs that contains the
    specifications for a volume type.
  in: body
  required: true
  type: object
fail_reason:
  description: |
    If the backup failed, the reason for the failure.
    Otherwise, null.
  in: body
  required: true
  type: string
force:
  description: |
    Indicates whether to backup, even if the volume
    is attached. Default is ``false``.
    See :ref:`valid boolean values <valid-boolean-values>`
  in: body
  required: false
  type: boolean
force_upload_vol:
  description: |
    Enables or disables upload of a volume that is
    attached to an instance. Default=False.
    See :ref:`valid boolean values <valid-boolean-values>`
  in: body
  required: false
  type: boolean
free_capacity:
  description: |
    The amount of free capacity for the back-end
    volume, in GBs. A valid value is a string, such as ``unknown``, or
    a number (integer or floating point).
  in: body
  required: true
  type: string
frozen:
  description: |
    The host is frozen or not. Only in ``cinder-volume`` service.
  in: body
  required: false
  type: boolean
gigabytes:
  description: |
    The size (GB) of volumes and snapshots that are allowed for each project.
  in: body
  required: true
  type: integer
gigabytes_for_type:
  description: |
    The size (GB) of volumes and snapshots that are allowed for each project
    and the specified volume type.
  in: body
  required: true
  type: integer
gigabytes_for_type_usage:
  description: |
    The size (GB) usage information of volumes and snapshots for this project
    and this volume type, including ``in_use``, ``limit``, ``reserved`` and
    ``allocated`` attributes. Note: ``allocated`` attribute is available only
    when nested quota is enabled.
  in: body
  required: true
  type: object
gigabytes_usage:
  description: |
    The size (GB) usage information of volumes and snapshots for this project,
    including ``in_use``, ``limit``, ``reserved`` and ``allocated`` attributes.
    Note: ``allocated`` attribute is available only when nested quota is enabled.
  in: body
  required: true
  type: object
group:
  description: |
    A group object.
  in: body
  required: true
  type: object
group_id:
  description: |
    The ID of the group.
  in: body
  required: true
  type: string
group_id_optional:
  description: |
    The ID of the group.
  in: body
  required: false
  type: string
group_name:
  description: |
    The group name.
  in: body
  required: true
  type: string
group_replication_status:
  description: |
    The group replication status. Introduced with API microversion 3.38.
  in: body
  required: false
  type: string
group_snapshot:
  description: |
    The group snapshot.
  in: body
  required: true
  type: object
group_snapshot_id:
  description: |
    The ID of the group snapshot.
  in: body
  required: false
  type: string
group_snapshot_id_req:
  description: |
    The ID of the group snapshot.
  in: body
  required: true
  type: string
group_snapshots:
  description: |
    A collection of group snapshots.
  in: body
  required: true
  type: array
group_specs:
  description: |
    A set of key and value pairs that contains the
    specifications for a group type.
  in: body
  required: false
  type: object
group_specs_req:
  description: |
    A set of key and value pairs that contains the
    specifications for a group type.
  in: body
  required: true
  type: object
group_type:
  description: |
    A ``group_type`` object.
  in: body
  required: true
  type: object
group_type_id:
  description: |
    The group type ID.
  in: body
  required: true
  type: string
group_types:
  description: |
    The list of group types.
  in: body
  required: true
  type: array
groups:
  description: |
    A collections of groups.
  in: body
  required: true
  type: array
groups_number:
  description: |
    The number of groups that are allowed for each project.
  in: body
  required: true
  type: integer
groups_number_usage:
  description: |
    The group usage information for this project, including ``in_use``,
    ``limit``, ``reserved`` and ``allocated`` attributes.
    Note: ``allocated`` attribute is available only when nested quota is enabled.
  in: body
  required: true
  type: object
guaranteed_until:
  description: |
    The expire time of the message, this message could be
    deleted after this time.
  in: body
  required: false
  type: string
has_dependent_backups:
  description: |
    If this value is ``true``, there are other backups depending on
    this backup.
  in: body
  required: false
  type: boolean
host:
  description: |
    The OpenStack Block Storage host where the
    existing volume resides.
  in: body
  required: true
  type: object
host_mutex:
  description: |
    The OpenStack Block Storage host where the existing resource resides.
    Optional only if cluster field is provided.
  in: body
  required: false
  type: string
host_name:
  description: |
    The name of the attaching host.
  in: body
  required: false
  type: string
host_name_backend:
  description: |
    The name of the host that hosts the storage backend,
    may take the format of ``host@backend``.
  in: body
  required: true
  type: string
host_name_body:
  description: |
    The name of the host.
  in: body
  required: false
  type: string
host_name_body_req:
  description: |
    The name of the host.
  in: body
  required: true
  type: string
host_service:
  description: |
    The name of the service which is running on the host.
  in: body
  required: true
  type: string
host_service_status:
  description: |
    The status of the service. One of ``available`` or ``unavailable``.
  in: body
  required: true
  type: string
hosts:
  description: |
    A OpenStack Block Storage host.
  in: body
  required: true
  type: object
id:
  description: |
    The UUID of the volume transfer.
  in: body
  required: true
  type: string
id_backup:
  description: |
    The UUID of the backup.
  in: body
  required: true
  type: string
id_message:
  description: |
    The UUID for the message.
  in: body
  required: true
  type: string
id_qos_spec:
  description: |
    The generated ID for the QoS specification.
  in: body
  required: true
  type: string
id_snap:
  description: |
    The snapshot UUID.
  in: body
  required: true
  type: string
id_vol:
  description: |
    The UUID of the volume.
  in: body
  required: true
  type: string
image_id:
  description: |
    The uuid for the new image.
  in: body
  required: true
  type: string
image_name:
  description: |
    The name for the new image.
  in: body
  required: true
  type: string
imageRef:
  description: |
    The UUID of the image from which you want to
    create the volume. Required to create a bootable volume.
  in: body
  required: false
  type: string
incremental:
  description: |
    The backup mode. A valid value is ``true`` for
    incremental backup mode or ``false`` for full backup mode. Default
    is ``false``. See :ref:`valid boolean values <valid-boolean-values>`
  in: body
  required: false
  type: boolean
instance_uuid:
  description: |
    The UUID of the attaching instance.
  in: body
  required: false
  type: string
instance_uuid_req:
  description: |
    The UUID of the attaching instance.
  in: body
  required: true
  type: string
is_incremental:
  description: |
    Indicates whether the backup mode is incremental.
    If this value is ``true``, the backup mode is incremental. If this
    value is ``false``, the backup mode is full.
  in: body
  required: false
  type: boolean
is_public_group_type_optional:
  description: |
    Whether the group type is publicly visible.
    See :ref:`valid boolean values <valid-boolean-values>`
  in: body
  required: false
  type: boolean
is_public_group_type_required:
  description: |
    Whether the group type is publicly visible.
  in: body
  required: true
  type: boolean
is_public_volume_type_optional:
  description: |
    Whether the volume type is publicly visible.
    See :ref:`valid boolean values <valid-boolean-values>`
  in: body
  required: false
  type: boolean
is_public_volume_type_required:
  description: |
    Whether the volume type is publicly visible.
  in: body
  required: true
  type: boolean
is_up:
  description: |
    Filter by up/down status.
    See :ref:`valid boolean values <valid-boolean-values>`
  in: body
  required: false
  type: boolean
key:
  description: |
    The metadata key name for the metadata that you
    want to remove.
  in: body
  required: true
  type: string
key_size:
  description: |
    Size of encryption key, in bits. This is usually 256. The default value
    is None.
  in: body
  required: false
  type: integer
keys:
  description: |
    List of Keys.
  in: body
  required: true
  type: array
levels:
  description: |
    The current log level that queried.
  in: body
  required: true
  type: object
levels_set:
  description: |
    The log level to set, case insensitive, accepted values are ``INFO``,
    ``WARNING``, ``ERROR`` and ``DEBUG``.
  in: body
  required: true
  type: string
limit_usage:
  description: |
    The limit data size. Visible only if you set the
    ``usage=true`` query parameter.
  in: body
  required: false
  type: integer
limits:
  description: |
    A list of ``limit`` objects.
  in: body
  required: true
  type: object
links:
  description: |
    Links for the volume transfer.
  in: body
  required: true
  type: array
links_backup:
  description: |
    Links for the backup.
  in: body
  required: true
  type: array
links_message:
  description: |
    Links for the message.
  in: body
  required: false
  type: array
links_qos:
  description: |
    The QoS specification links.
  in: body
  required: true
  type: array
links_res:
  description: |
    Links to the resources in question.
  in: body
  required: true
  type: array
links_snap:
  description: |
    Links for the snapshot.
  in: body
  required: false
  type: array
links_vol:
  description: |
    The volume links.
  in: body
  required: true
  type: array
links_vol_optional:
  description: |
    The volume links.
  in: body
  required: false
  type: array
location:
  description: |
    Full URL to a service or server.
  format: uri
  in: body
  required: true
  type: string
log_levels:
  description: |
    The list of log levels.
  in: body
  required: true
  type: array
manageable-snapshots:
  description: |
    A list of manageable snapshots.
  in: body
  required: true
  type: list
manageable-volumes:
  description: |
    A list of manageable volumes.
  in: body
  required: true
  type: list
maxTotalBackupGigabytes:
  description: |
    The maximum total amount of backups, in gibibytes
    (GiB).
  in: body
  required: true
  type: integer
maxTotalBackups:
  description: |
    The maximum number of backups.
  in: body
  required: true
  type: integer
maxTotalGroups:
  description: |
    The maximum number of groups.
  in: body
  required: true
  type: integer
maxTotalSnapshots:
  description: |
    The maximum number of snapshots.
  in: body
  required: true
  type: integer
maxTotalSnapshotsOptional:
  description: |
    The maximum number of snapshots.
  in: body
  required: false
  type: integer
maxTotalVolumeGigabytes:
  description: |
    The maximum total amount of volumes, in gibibytes
    (GiB).
  in: body
  required: true
  type: integer
maxTotalVolumeGigabytesOptional:
  description: |
    The maximum total amount of volumes, in gibibytes (GiB).
  in: body
  required: true
  type: integer
maxTotalVolumes:
  description: |
    The maximum number of volumes.
  in: body
  required: true
  type: integer
maxTotalVolumesOptional:
  description: |
    The maximum number of volumes.
  in: body
  required: false
  type: integer
media_types:
  description: |
    The `media types
    <https://www.iana.org/assignments/media-types/media-types.xhtml>`_.
    It is an array of a fixed dict.

    .. note::
      It is vestigial and provide no useful information.
      It will be deprecated and removed in the future.
  in: body
  required: true
  type: array
message_level:
  description: |
    The level of the message, possible value is
    only 'ERROR' now.
  in: body
  required: true
  type: string
meta:
  description: |
    The metadata key and value pair for the volume.
  in: body
  required: true
  type: object
meta_snap:
  description: |
    The metadata key and value pair for the snapshot.
  in: body
  required: true
  type: object
metadata:
  description: |
    One or more metadata key and value pairs for the
    snapshot, if any.
  in: body
  required: true
  type: object
metadata_backup:
  description: |
    The backup metadata key value pairs.
  in: body
  required: false
  type: object
  min_version: 3.43
metadata_image:
  description: |
    The image metadata to add to the volume as a set
    of metadata key and value pairs.
  in: body
  required: true
  type: object
metadata_snap:
  description: |
    One or more metadata key and value pairs for the
    snapshot.
  in: body
  required: false
  type: object
metadata_vol:
  description: |
    One or more metadata key and value pairs to be associated
    with the new volume.
  in: body
  required: false
  type: object
metadata_vol_assoc:
  description: |
    One or more metadata key and value pairs that are
    associated with the volume.
  in: body
  required: false
  type: object
metadata_vol_assoc_req:
  description: |
    One or more metadata key and value pairs that are
    associated with the volume.
  in: body
  required: true
  type: object
metadata_vol_obj:
  description: |
    A ``metadata`` object. Contains one or more
    metadata key and value pairs that are associated with the volume.
  in: body
  required: true
  type: object
migrate_cluster:
  description: |
    The target cluster for the volume migration. Cluster format is
    ``cluster@backend``. Starting with microversion 3.16, either ``cluster``
    or ``host`` must be specified. If ``host`` is specified and is part of a
    cluster, the cluster is used as the target for the migration.
  in: body
  required: false
  type: string
  min_version: 3.16
migrate_force_host_copy:
  description: |
    If false (the default), rely on the volume backend driver to perform
    the migration, which might be optimized. If true, or the volume driver
    fails to migrate the volume itself, a generic host-based migration is
    performed.
  in: body
  required: false
  type: boolean
migrate_host:
  description: |
    The target host for the volume migration. Host format is ``host@backend``.
    Required before microversion 3.16.
  in: body
  required: false
  type: string
migrate_lock_volume:
  description: |
    If true, migrating an ``available`` volume will change its status to
    ``maintenance`` preventing other operations from being performed on the
    volume such as attach, detach, retype, etc.
  in: body
  required: false
  type: boolean
migration_completion_error:
  description: |
    Used to indicate if an error has occured elsewhere that requires clean up.
  in: body
  required: false
  type: boolean
# NOTE(mriedem): We can update the migration_policy retype note about encrypted
# in-use volumes not being supported once
# https://bugzilla.redhat.com/show_bug.cgi?id=760547 is fixed.
migration_policy:
  description: |
    Specify if the volume should be migrated when it is re-typed.
    Possible values are ``on-demand`` or ``never``. If not specified, the
    default is ``never``.

    .. note:: If the volume is attached to a server instance and will be
      migrated, then by default policy only users with the administrative role
      should attempt the retype operation. A retype which involves a migration
      to a new host for an *in-use* encrypted volume is not supported.
  in: body
  required: false
  type: string
migration_status:
  description: |
    The volume migration status. Admin only.
  in: body
  required: false
  type: string
mountpoint:
  description: |
    The attaching mount point.
  in: body
  required: true
  type: string
multiattach_req:
  description: |
    To enable this volume to attach to more than one
    server, set this value to ``true``. Default is ``false``.
    Note that support for multiattach volumes depends on the volume
    type being used. See :ref:`valid boolean values <valid-boolean-values>`
  in: body
  required: false
  type: boolean
multiattach_resp:
  description: |
    If true, this volume can attach to more than one
    instance.
  in: body
  required: true
  type: boolean
name:
  description: |
    The name of the Volume Transfer.
  in: body
  required: true
  type: string
name_backend_pool:
  description: |
    The name of the backend pool.
  in: body
  required: true
  type: string
name_backup:
  description: |
    The backup name.
  in: body
  required: true
  type: string
name_cgsnap:
  description: |
    The consistency group snapshot name.
  in: body
  required: true
  type: string
name_consis:
  description: |
    The consistency group name.
  in: body
  required: false
  type: string
name_group:
  description: |
    The group name.
  in: body
  required: false
  type: string
name_group_snap:
  description: |
    The group snapshot name.
  in: body
  required: false
  type: string
name_group_snap_req:
  description: |
    The group snapshot name.
  in: body
  required: true
  type: string
name_group_type:
  description: |
    The group type name.
  in: body
  required: true
  type: string
name_optional:
  description: |
    The name of the Volume Backup.
  in: body
  required: false
  type: string
name_qos_spec:
  description: |
    The name of the QoS specification.
  in: body
  required: true
  type: string
name_snap:
  description: |
    The name of the snapshot. Default is ``None``.
  in: body
  required: false
  type: string
name_snap_req:
  description: |
    The name of the snapshot.
  in: body
  required: true
  type: string
name_vol:
  description: |
    The volume name.
  in: body
  required: true
  type: string
name_volume_type_optional:
  description: |
    The name of the volume type.
  in: body
  required: false
  type: string
name_volume_type_required:
  description: |
    The name of the volume type.
  in: body
  required: true
  type: string
namespace:
  description: |
    Link associated to the extension.
  in: body
  required: false
  type: string
namespace_storage:
  description: |
    The storage namespace, such as
    ``OS::Storage::Capabilities::foo``.
  in: body
  required: true
  type: string
new_size:
  description: |
    The new size of the volume, in gibibytes (GiB).
  in: body
  required: true
  type: integer
new_type:
  description: |
    The new volume type that volume is changed with.
  in: body
  required: true
  type: string
new_volume:
  description: |
    The UUID of the new volume.
  in: body
  required: true
  type: string
no_snapshots:
  description: |
    Transfer volume without snapshots. Defaults to False if not specified.
  in: body
  required: false
  min_version: 3.55
  type: boolean
object_count:
  description: |
    The number of objects in the backup.
  in: body
  required: true
  type: integer
os-attach:
  description: |
    The ``os-attach`` action.
  in: body
  required: true
  type: object
os-backup-project-attr:project_id:
  description: |
    The UUID of the owning project.
  in: body
  required: true
  type: string
  min_version: 3.18
os-begin_detaching:
  description: |
    The ``os-begin_detaching`` action.
  in: body
  required: true
  type: object
os-detach:
  description: |
    The ``os-detach`` action.
  in: body
  required: true
  type: object
os-ext-snap-attr:progress:
  description: |
    A percentage value for the build progress.
  in: body
  required: true
  type: string
os-ext-snap-attr:project_id:
  description: |
    The UUID of the owning project.
  in: body
  required: true
  type: string
os-extend:
  description: |
    The ``os-extend`` action.
  in: body
  required: true
  type: object
os-force_delete:
  description: |
    The ``os-force_delete`` action.
  in: body
  required: true
  type: string
os-force_detach:
  description: |
    The ``os-force_detach`` action.
  in: body
  required: true
  type: object
os-initialize_connection:
  description: |
    The ``os-initialize_connection`` action.
  in: body
  required: true
  type: object
os-migrate_volume:
  description: |
    The ``os-migrate_volume`` action.
  in: body
  required: true
  type: object
os-migrate_volume_completion:
  description: |
    The ``os-migrate_volume_completion`` action.
  in: body
  required: true
  type: object
os-reserve:
  description: |
    The ``os-reserve`` action.
  in: body
  required: true
  type: object
os-reset_status:
  description: |
    The ``os-reset_status`` action.
  in: body
  required: true
  type: object
os-retype:
  description: |
    The ``os-retype`` action.
  in: body
  required: true
  type: object
os-roll_detaching:
  description: |
    The ``os-roll_detaching`` action.
  in: body
  required: true
  type: object
OS-SCH-HNT:scheduler_hints:
  description: |
    The dictionary of data to send to the scheduler.
  in: body
  required: false
  type: object
os-set_bootable:
  description: |
    The ``os-set_bootable`` action.
  in: body
  required: true
  type: object
os-set_image_metadata:
  description: |
    The ``os-set_image_metadata`` action.
  in: body
  required: true
  type: object
os-show_image_metadata:
  description: |
    The ``os-show_image_metadata`` action.
  in: body
  require: true
  type: object
os-terminate_connection:
  description: |
    The ``os-terminate_connection`` action.
  in: body
  require: true
  type: object
os-unmanage:
  description: |
    The ``os-unmanage`` action. This action removes
    the specified volume from Cinder management.
  in: body
  required: true
  type: object
os-unreserve:
  description: |
    The ``os-unreserve`` action.
  in: body
  required: true
  type: object
os-unset_image_metadata:
  description: |
    The ``os-unset_image_metadata`` action. This
    action removes the key-value pairs from the image metadata.
  in: body
  required: true
  type: object
os-update_readonly_flag:
  description: |
    The ``os-update_readonly_flag`` action. This action
    enables or disables update of volume to read-only access mode.
  in: body
  required: true
  type: object
os-update_snapshot_status:
  description: |
    The ``os-update_snapshot_status`` action.
  in: body
  required: true
  type: object
os-vol-host-attr:host:
  description: |
    Current back-end of the volume.
    Host format is ``host@backend#pool``.
  in: body
  required: false
  type: string
os-vol-mig-status-attr:migstat:
  description: |
    The status of this volume migration (None means
    that a migration is not currently in progress).
  in: body
  required: false
  type: string
os-vol-mig-status-attr:name_id:
  description: |
    The volume ID that this volume name on the back-
    end is based on.
  in: body
  required: false
  type: string
os-vol-tenant-attr:tenant_id:
  description: |
    The project ID which the volume belongs to.
  in: body
  required: true
  type: string
os-volume_upload_image:
  description: |
    The ``os-volume_upload_image`` action. This
    action uploads the specified volume to image service.
  in: body
  required: true
  type: object
per_volume_gigabytes:
  description: |
    The size (GB) of volumes that are allowed for each volume.
  in: body
  required: true
  type: integer
per_volume_gigabytes_usage:
  description: |
    The size (GB) usage information for each volume, including ``in_use``,
    ``limit``, ``reserved`` and ``allocated`` attributes.
    Note: ``allocated`` attribute is available only when nested quota
    is enabled and only ``limit`` is meaningful here.
  in: body
  required: true
  type: object
pool_name:
  description: |
    The name of the storage pool.
  in: body
  required: true
  type: string
pools:
  description: |
    List of storage pools.
  in: body
  required: true
  type: array
prefix:
  description: |
    The prefix for the log path we are querying,
    for example ``cinder.`` or ``sqlalchemy.engine``.
    When not present or the empty string is passed all
    log levels will be retrieved.
  in: body
  required: false
  type: string
project:
  description: |
    The ID of the project. Volume Type access to be
    added to this project ID.
  in: body
  required: true
  type: string
project_id:
  description: |
    The UUID of the project.
  in: body
  required: true
  type: string
project_id_group:
  description: |
    The UUID of the volume group project.
  in: body
  required: false
  type: string
  min_version: 3.58
project_id_group_snapshot:
  description: |
    The UUID of the volume group snapshot project.
  in: body
  required: false
  type: string
  min_version: 3.58
project_id_host:
  description: |
    The Project ID which the host resource belongs to.
    In the summary resource, the value is ``(total)``.
  in: body
  required: true
  type: string
properties:
  description: |
    The backend volume capabilities list, which is
    consisted of cinder standard capabilities and vendor unique
    properties.
  in: body
  required: true
  type: object
protected:
  description: |
    Whether the new image is protected. Default=False.
    See :ref:`valid boolean values <valid-boolean-values>`
  in: body
  required: false
  type: boolean
  min_version: 3.1
provider:  # required response parameter (get/create)
  description: |
    The class that provides encryption support.
  in: body
  required: true
  type: string
provider_optional:  # optional response parameter (update)
  description: |
    The class that provides encryption support.
  in: body
  required: false
  type: string
provider_req:  # required request parameter (create)
  description: |
    The class that provides encryption support. Choices are:

    * luks - relies on Linux Unified Key Setup (recommended)
    * plain - relies on dm-crypt
  in: body
  required: true
  type: string
provider_req_optional:  # optional request parameter (update)
  description: |
    The class that provides encryption support. Choices are:

    * luks - relies on Linux Unified Key Setup (recommended)
    * plain - relies on dm-crypt
  in: body
  required: false
  type: string
qos_association_id:
  description: |
    The Qos association ID.
  in: body
  required: true
  type: string
qos_association_name:
  description: |
    The QoS association name.
  in: body
  required: true
  type: string
qos_association_type:
  description: |
    The QoS association type.
  in: body
  required: true
  type: string
qos_associations:
  description: |
    A collection of ``QoS associations``.
  in: body
  required: true
  type: array
qos_set_id:
  description: |
    The QoS set ID.
  in: body
  required: true
  type: string
qos_specs:
  description: |
    A ``qos_specs`` object.
  in: body
  required: true
  type: object
qos_specs_id:
  description: |
    The QoS specifications ID.
  in: body
  required: false
  type: string
QoS_support:
  description: |
    The quality of service (QoS) support.
  in: body
  required: true
  type: boolean
quota_class_id:
  description:
    The name of the quota class set.
  in: body
  required: true
  type: string
quota_class_set:
  description: |
    A ``quota_class_set`` object.
  in: body
  required: true
  type: object
quota_set:
  description: |
    A ``quota_set`` object.
  in: body
  required: true
  type: object
rate:
  description: |
    Rate-limit volume copy bandwidth, used to
    mitigate slow down of data access from the instances.
  in: body
  required: true
  type: array
readonly:
  description: |
    Enables or disables read-only access mode.
    This value can be True, true, False, false.
  in: body
  required: true
  type: boolean
reason_not_safe:
  description: |
    The reason why the resource can't be managed.
  in: body
  required: true
  type: string
ref:
  description: |
    A reference to the existing volume. The internal
    structure of this reference depends on the volume driver
    implementation. For details about the required elements in the
    structure, see the documentation for the volume driver.
  in: body
  required: true
  type: object
reference:
  description: |
    Some information for the resource.
  in: body
  required: true
  type: object
remove_project_access:
  description: |
    Removes volume type access from a project.
  in: body
  required: true
  type: object
remove_volumes:
  description: |
    One or more volume UUIDs, separated by commas, to
    remove from the volume group or consistency group.
  in: body
  required: false
  type: string
replication_status:
  description: |
    The volume replication status.
  in: body
  required: true
  type: string
replication_status_cvol:
  description: |
    The volume service replication status. Only in ``cinder-volume`` service.
  in: body
  required: false
  type: string
replication_targets:
  description: |
    A list of volume backends used to replicate volumes
    on this backend.
  in: body
  required: true
  type: list
replication_targets_unique_key:
  description: |
    Vendor specific key-values. Only returned if administrator.
  in: body
  type: string
request_id:
  description: |
    The id of the request during which the message was created.
  in: body
  required: true
  type: string
reserved_percentage:
  description: |
    The percentage of the total capacity that is
    reserved for the internal use by the back end.
  in: body
  required: true
  type: integer
reset_status:
  description: |
    The ``reset_status`` action.
  in: body
  required: true
  type: object
resource_fil:
  description: |
    Resource which the filters will be applied to.
  in: body
  required: true
  type: string
resource_filters:
  description: |
    The resource filter array.
  in: body
  required: true
  type: array
resource_filters_coll:
  description: |
    A collection of resource filters.
  in: body
  required: true
  type: array
resource_id:
  description: |
    The UUID of a resource to cleanup.
  in: body
  required: false
  type: string
resource_type:
  description: |
    The resource type corresponding to ``resource_uuid``.
  in: body
  required: false
  type: string
resource_uuid:
  description: |
    The UUID of the resource during whose operation the
    message was created.
  in: body
  required: false
  type: string
restore:
  description: |
    A ``restore`` object.
  in: body
  required: true
  type: object
revert:
  description: |
    The ``revert`` action.
  in: body
  required: true
  type: object
safe_to_manage:
  description: |
    If the resource can be managed or not.
  in: body
  required: true
  type: boolean
security_group_rules:
  description: |
    The number of rules that are allowed for each
    security group.
  in: body
  required: false
  type: integer
security_groups:
  description: |
    The number of security groups that are allowed
    for each project.
  in: body
  required: true
  type: integer
service_id:
  description: |
    UUID for the cleanup service.
  in: body
  required: false
  type: integer
service_key:
  description: |
    The service name. Deprecated. Keeping service key
    for API compatibility.
  in: body
  required: true
  type: string
service_state:
  description: |
    The state of the service. One of ``enabled`` or ``disabled``.
  in: body
  required: true
  type: string
service_state_up_down:
  description: |
    The state of the service. One of ``up`` or ``down``.
  in: body
  required: true
  type: string
service_status:
  description: |
    The status of the service. One of ``enabled`` or ``disabled``.
  in: body
  required: true
  type: string
service_uuid:
  description: |
    A unique identifier that's used to indicate what node the volume-service
    for a particular volume is being serviced by.
  in: body
  required: true
  type: string
  min_version: 3.48
services:
  description: |
    A list of service objects.
  in: body
  required: true
  type: array
shared_targets:
  description: |
    An indicator whether the back-end hosting the volume utilizes
    shared_targets or not. Default=True.
  in: body
  required: true
  type: boolean
  min_version: 3.48
size:
  description: |
    The size of the volume, in gibibytes (GiB).
  in: body
  required: true
  type: integer
snapshot:
  description: |
    A partial representation of a snapshot used in
    the creation process.
  in: body
  required: true
  type: string
snapshot_id:
  description: |
    To create a volume from an existing snapshot,
    specify the UUID of the volume snapshot. The volume is created in
    same availability zone and with same size as the snapshot.
  in: body
  required: false
  type: string
snapshot_id_backup:
  description: |
    The UUID of the source snapshot that you want to back up.
  in: body
  required: false
  type: string
snapshot_id_revert:
  description: |
    The UUID of the snapshot. The API
    reverts the volume with this snapshot.
  in: body
  required: true
  type: string
snapshot_id_source_vol:
  description: |
    The UUID of the source volume snapshot.
  in: body
  required: false
  type: string
snapshot_obj:
  description: |
    A ``snapshot`` object.
  in: body
  required: true
  type: object
snapshot_progress:
  description: |
    A percentage value for snapshot build progress.
  in: body
  required: false
  type: string
snapshots_number:
  description: |
    The number of snapshots that are allowed for each project.
  in: body
  required: true
  type: integer
snapshots_number_for_type:
  description: |
    The number of snapshots that are allowed for each project and
    the specified volume type.
  in: body
  required: true
  type: integer
snapshots_number_for_type_usage:
  description: |
    The snapshot usage information for this project and this volume type,
    including ``in_use``, ``limit``, ``reserved`` and ``allocated`` attributes.
    Note: ``allocated`` attribute is available only when nested quota is enabled.
  in: body
  required: true
  type: object
snapshots_number_usage:
  description: |
    The snapshot usage information for this project, including ``in_use``,
    ``limit``, ``reserved`` and ``allocated`` attributes.
    Note: ``allocated`` attribute is available only when nested quota is enabled.
  in: body
  required: true
  type: object
source-name:
  description: |
    The resource's name.
  in: body
  required: true
  type: string
source_cgid:
  description: |
    The UUID of the source consistency group.
  in: body
  required: false
  type: string
source_group_id:
  description: |
    The UUID of the source group.
  in: body
  required: false
  type: string
source_group_id_req:
  description: |
    The UUID of the source group.
  in: body
  required: true
  type: string
source_project_id:
  description: |
    Records the source project_id before volume transfer.
  in: body
  required: false
  type: string
  min_version: 3.57
source_reference:
  description: |
    The snapshot's origin volume information.
  in: body
  required: true
  type: object
source_volid:
  description: |
    The UUID of the source volume. The API creates a new volume with the same
    size as the source volume unless a larger size is requested.
  in: body
  required: false
  type: string
spec_value:
  description: |
    The value of the group specification corresponding to the specified key.
  in: body
  required: true
  type: string
specs:
  description: |
    A ``specs`` object.
  in: body
  required: true
  type: object
status:
  description: |
    The ``status`` of the consistency group snapshot.
  in: body
  required: false
  type: string
status_attachment:
  description: |
    The status of the attachment.
  in: body
  required: true
  type: string
status_backup:
  description: |
    The backup status. Refer to Backup statuses table
    for the possible status value.
  in: body
  required: true
  type: string
status_backup_action:
  description: |
    The status for the backup.
  in: body
  required: true
  type: string
status_consis:
  description: |
    The status of the consistency group.
  in: body
  required: true
  type: string
status_group:
  description: |
    The status of the generic group.
  in: body
  required: true
  type: string
status_group_snap:
  description: |
    The ``status`` of the generic group snapshot.
  in: body
  required: true
  type: string
status_snap:
  description: |
    The status for the snapshot.
  in: body
  required: true
  type: string
status_vol:
  description: |
    The volume status.
  in: body
  required: true
  type: string
storage_protocol:
  description: |
    The storage back end for the back-end volume. For
    example, ``iSCSI`` or ``FC``.
  in: body
  required: true
  type: string
summary_metadata:
  description: |
    The dictionary of lists contains all the volumes' metadata,
    classified by metadata key.
  in: body
  required: true
  type: object
  min_version: 3.36
total_capacity:
  description: |
    The total capacity for the back-end volume, in
    GBs. A valid value is a string, such as ``unknown``, or a
    number (integer or floating point).
  in: body
  required: true
  type: string
total_count:
  description: |
    Total number of volumes.
  in: body
  required: true
  type: string
total_count_int:
  description: |
    Total number of volumes.
  in: body
  required: true
  type: integer
total_size:
  description: |
    Total size of volumes in GB.
  in: body
  required: true
  type: integer
totalBackupGigabytesUsed:
  description: |
    The total number of backups gibibytes (GiB) used.
  in: body
  required: true
  type: integer
totalBackupsUsed:
  description: |
    The total number of backups used.
  in: body
  required: true
  type: integer
totalGigabytesUsed:
  description: |
    The total number of gibibytes (GiB) used.
  in: body
  required: true
  type: integer
totalGigabytesUsedStr:
  description: |
    The total number of gibibytes (GiB) used.
  in: body
  required: true
  type: string
totalSnapGigabytesUsed:
  description: |
    The total number of gibibytes (GiB) used by snapshots.
  in: body
  required: true
  type: string
totalSnapshotsUsed:
  description: |
    The total number of snapshots used.
  in: body
  required: true
  type: string
totalSnapshotsUsed_int:
  description: |
    The total number of snapshots used.
  in: body
  required: true
  type: integer
totalVolumesUsed:
  description: |
    The total number of volumes used.
  in: body
  required: true
  type: integer
transfer:
  description: |
    The volume transfer object.
  in: body
  required: true
  type: object
transfers:
  description: |
    List of transfer details.
  in: body
  required: true
  type: array
updated:
  description: |
    The date and time stamp when the extension was
    last updated.
  in: body
  required: true
  type: string
updated_at:
  description: |
    The date and time when the resource was updated.

    The date and time stamp format is `ISO 8601
    <https://en.wikipedia.org/wiki/ISO_8601>`_:

    ::

       CCYY-MM-DDThh:mm:ss±hh:mm

    For example, ``2015-08-27T09:49:58-05:00``.

    The ``±hh:mm`` value, if included, is the time zone as an offset
    from UTC. In the previous example, the offset value is ``-05:00``.

    If the ``updated_at`` date and time stamp is not set, its value is
    ``null``.
  in: body
  required: true
  type: string
user_id:
  description: |
    The UUID of the user.
  in: body
  required: true
  type: string
user_id_backup:
  description: |
    The UUID of the project owner.
  in: body
  required: true
  type: string
  min_version: 3.56
user_id_min:
  description: |
    The UUID of the user.
  in: body
  required: true
  type: string
  min_version: 3.41
user_message:
  description: |
    The translated readable message corresponding to ``event_id``.
  in: body
  required: true
  type: string
user_messages:
  description: |
    A collection of user messages.
  in: body
  required: true
  type: string
vendor_name:
  description: |
    The name of the vendor.
  in: body
  required: true
  type: string
version_id:
  in: body
  required: true
  description: |
    A common name for the version in question. Informative only, it
    has no real semantic meaning.
  type: string
version_max:
  in: body
  required: true
  description: |
    If this version of the API supports microversions, the maximum
    microversion that is supported. This will be the empty string if
    microversions are not supported.
  type: string
version_min:
  in: body
  required: true
  description: |
    If this version of the API supports microversions, the minimum
    microversion that is supported. This will be the empty string if
    microversions are not supported.
  type: string
version_status:
  in: body
  required: true
  description: |
    The status of this API version. This can be one of:

    - ``CURRENT``: this is the preferred version of the API to use
    - ``DEPRECATED``: a deprecated version of the API that is slated for removal
  type: string
version_updated:
  description: |
    This is a fixed string that API version updates.
  in: body
  required: true
  type: string
visibility:
  description: |
    The volume type access.
  in: body
  required: true
  type: string
visibility_min:
  description: |
    The visibility property of the new image. Default is private.
  in: body
  required: false
  type: string
  min_version: 3.1
volume:
  description: |
    A ``volume`` object.
  in: body
  required: true
  type: object
volume-summary:
  description: |
    Dictionary of ``volume-summary`` objects.
  in: body
  required: true
  type: object
volume_backend_name:
  description: |
    The name of the back-end volume.
  in: body
  required: true
  type: string
volume_id:
  description: |
    The UUID of the volume.
  in: body
  required: true
  type: string
volume_id_attachment:
  description: |
    The UUID of the volume which the attachment belongs
    to.
  in: body
  required: true
  type: string
volume_id_backup:
  description: |
    The UUID of the volume that you want to back up.
  in: body
  required: true
  type: string
volume_id_restore:
  description: |
    The UUID of the volume to which you want to
    restore a backup.
  in: body
  required: false
  type: string
volume_id_snap:
  description: |
    If the snapshot was created from a volume, the
    volume ID.
  in: body
  required: true
  type: string
volume_ids:
  description: |
    A list of ``volume`` ids, available only when ``list_volume`` set true.
  in: body
  required: false
  type: array
  min_version: 3.25
volume_image_metadata:
  description: |
    List of image metadata entries.  Only included for volumes that were
    created from an image, or from a snapshot of a volume originally created
    from an image.
  in: body
  required: false
  type: object
volume_name:
  description: |
    The volume name.
  in: body
  required: true
  type: string
volume_name_optional:
  description: |
    The volume name.
  in: body
  required: false
  type: string
volume_type:
  description: |
    A ``volume_type`` object.
  in: body
  required: true
  type: object
volume_type_access:
  description: |
    List of objects containing volume type to be accessed by project.
  in: body
  required: true
  type: array
volume_type_detail:
  description: |
    The volume type (either name or ID). To create an environment with
    multiple-storage back ends, you must specify a volume type. Block
    Storage volume back ends are spawned as children to ``cinder-
    volume``, and they are keyed from a unique queue. They are named
    ``cinder- volume.HOST.BACKEND``. For example, ``cinder-
    volume.ubuntu.lvmdriver``. When a volume is created, the scheduler
    chooses an appropriate back end to handle the request based on the
    volume type.  Default is ``None``.  For information about how to
    use volume types to create multiple- storage back ends, see
    `Configure multiple-storage back ends
    <https://docs.openstack.org/cinder/latest
    /admin/blockstorage-multi-backend.html>`_.
  in: body
  required: false
  type: string
volume_type_id_363:
  description: |
    The associated volume type ID for the volume.
  in: body
  required: true
  type: object
  min_version: 3.63
volume_type_id_body:
  description: |
    The UUID of the volume type.
  in: body
  required: true
  type: string
volume_type_vol:
  description: |
    The associated volume type name for the volume.
  in: body
  required: true
  type: string
volume_types:
  description: |
    The list of volume types.  In an environment with
    multiple-storage back ends, the scheduler determines where to send
    the volume based on the volume type.  For information about how to
    use volume types to create multiple- storage back ends, see
    `Configure multiple-storage back ends
    <https://docs.openstack.org/cinder/latest
    /admin/blockstorage-multi-backend.html>`_.
  in: body
  required: true
  type: array
volume_types_commas:
  description: |
    The list of volume types separated by commas.  In an environment with
    multiple-storage back ends, the scheduler determines where to send
    the volume based on the volume type.  For information about how to
    use volume types to create multiple-storage back ends, see
    `Configure multiple-storage back ends
    <https://docs.openstack.org/cinder/latest
    /admin/blockstorage-multi-backend.html>`_.
  in: body
  required: true
  type: string
volumes:
  description: |
    A list of ``volume`` objects.
  in: body
  required: true
  type: array
volumes_number:
  description: |
    The number of volumes that are allowed for each project.
  in: body
  required: true
  type: integer
volumes_number_for_type:
  description: |
    The number of volumes that are allowed for each project and
    the specified volume type.
  in: body
  required: true
  type: integer
volumes_number_for_type_usage:
  description: |
    The volume usage information for this project and this volume type,
    including ``in_use``, ``limit``, ``reserved`` and ``allocated`` attributes.
    Note: ``allocated`` attribute is available only when nested quota is enabled.
  in: body
  required: true
  type: object
volumes_number_usage:
  description: |
    The volume usage information for this project, including ``in_use``,
    ``limit``, ``reserved`` and ``allocated`` attributes.
    Note: ``allocated`` attribute is available only when nested quota is enabled.
  in: body
  required: true
  type: object