summaryrefslogtreecommitdiff
path: root/api-ref/source/v1/parameters.yaml
blob: 84a509c9925a529806acce7ce1580d27c6e7acd0 (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
# variables in header
location:
  type: string
  in: header
  required: true
  description: |
    For asynchronous resource operations, the ``location`` header contains a
    URI that can be checked to track resource status changes.

request_id:
  type: UUID
  in: header
  required: true
  description: |
    A unique ID for tracking service request. The request ID associated
    with the request by default appears in the service logs.

# variables in path
config_id_url:
  description: |
    The UUID of the configuration.
  in: path
  required: false
  type: string
deployment_id_url:
  description: |
    The UUID of the deployment.
  in: path
  required: false
  type: string
deployment_server_id_url:
  description: |
    The UUID of the server for which to fetch
    server configuration metadata.
  in: path
  required: true
  type: string
event_id_url:
  description: |
    The UUID of the event that is related to the
    resource in the stack.
  in: path
  required: false
  type: string
output_key_url:
  description: |
    The key of a stack output.
  in: path
  required: false
  type: string
resource_name_url:
  description: |
    The name of a resource in the stack.
  in: path
  required: false
  type: string
snapshot_id_url:
  description: |
    The UUID of the snapshot.
  in: path
  required: false
  type: string
stack_id_url:
  description: |
    The UUID of the stack.
  in: path
  required: true
  type: string
stack_identity:
  description: |
    The UUID or the name of a stack.
  in: path
  required: true
  type: string
stack_name_url:
  description: |
    The name of a stack.
  in: path
  required: false
  type: string
template_version_url:
  description: |
    The version of the heat template.
  in: path
  required: true
  type: string
tenant_id:
  description: |
    The UUID of the tenant. A tenant is also known as
    a project.
  in: path
  required: true
  type: string
type_name:
  description: |
    The name of a resource type.
  in: path
  required: true
  type: string

# variables in query
deployment_server_id_query:
  description: |
    The UUID of the target server.
  in: query
  required: false
  type: string
global_tenant:
  description: |
    Set to ``true`` to include stacks from all tenants (projects) in the stack
    list. Specify policy requirements in the Orchestration ``policy.json``
    file.
  in: query
  required: false
  default: false
  type: boolean
ignore_errors:
  description: |
    List of comma separated error codes to ignore.
# TODO(kanagaraj-manickam) add the cross reference to the API to retrieve the
# list of error code supported, once its made available in heat.
  in: query
  required: false
  type: string
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
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
nested_depth:
  description: |
    Includes resources from nested stacks up to the ``nested_depth`` levels
    of recursion.
  in: query
  required: false
  default: 0
  type: integer
not_tags:
  description: |
    Lists stacks that do not contain one or more simple string tags. To
    specify multiple tags, separate the tags with commas. For example,
    ``tag1,tag2``. The boolean AND expression is used to combine multiple tags.
  in: query
  required: false
  type: string
not_tags_any:
  description: |
    Lists stacks that do not contain one or more simple string tags. To specify
    multiple tags, separate the tags with commas. For example, ``tag1,tag2``.
    The boolean OR expression is used to combine multiple tags.
  in: query
  required: false
  type: string
owner_id_query:
  description: |
    Filters the stack list by an owner ID, which is the ID of the parent stack
    of listed stack. Use this filter multiple times to filter by multiple
    owner IDs.
  in: query
  required: false
  type: string
physical_resource_id_query:
  description: |
    Filters the resource list by the ID of physical resource represented by
    a stack resource. Use this filter multiple times to filter by multiple
    physical resource IDs.
  in: query
  required: false
  type: string
resolve_outputs:
  description: |
    A boolean indicating whether the outputs section of a stack should be
    resolved.
  in: query
  required: false
  default: true
  type: boolean
resource_action_query:
  description: |
    Stack resource action. Valid resource actions are ``ADOPT``, ``CHECK``,
    ``CREATE``, ``DELETE``, ``INIT``, ``RESTORE``, ``RESUME``,
    ``ROLLBACK``, ``SNAPSHOT``, ``SUSPEND``, and ``UPDATE``.
  in: query
  required: false
  type: string
resource_id_query:
  description: |
    Filters the resource list by the logical ID of stack resources. Use this
    filter multiple times to filter by multiple resource IDs.
  in: query
  required: false
  type: string
resource_name_query:
  description: |
    Filters the result list by a resource name. You can use this filter
    multiple times to filter by multiple resource names.
  in: query
  required: false
  type: string
resource_status_query:
  description: |
    Stack resource status. Valid resource statuses are ``COMPLETE``,
    ``FAILED`` and ``IN_PROGRESS``. This can be specified more than once to
    filter the results by multiple resource statuses.
  in: query
  required: false
  type: string
resource_type_query:
  description: |
    Stack resource type. Valid resource types include ``OS::Cinder::Volume``,
    ``OS::Nova::Server``, ``OS::Neutron::Port`` and so on. This parameter
    can be specified more than once to filter results by multiple resource
    types.
  in: query
  required: false
  type: string
show_deleted:
  description: |
    Set to ``true`` to include deleted stacks in the list.
  in: query
  required: false
  default: false
  type: boolean
show_nested:
  description: |
    Set to ``true`` to include nested stacks in the list.
  in: query
  required: false
  default: false
  type: boolean
sort_dir:
  description: |
    The sort direction of the list. A valid value is ``asc`` (ascending) or
    ``desc`` (descending).
  in: query
  required: false
  type: string
sort_keys:
  description: |
    Sorts the result list by keys specified in this parameter.
  in: query
  required: false
  type: string
stack_action_query:
  description: |
    Filters the stack list by an action. Use this filter multiple times to
    filter by multiple actions.
  in: query
  required: false
  type: string
stack_id_query:
  description: |
    Filters the stack list by a stack ID. Use this filter multiple times to
    filter by multiple IDs.
  in: query
  required: false
  type: string
stack_name_query:
  description: |
    Filters the stack list by a name. Use this filter multiple times to filter
    by multiple names.
  in: query
  required: false
  type: string
stack_sort_keys:
  description: |
    Sorts the stack list by ``stack_name``, ``stack_status``,
    ``creation_time``, or ``updated_time`` key.
  in: query
  required: false
  type: string
stack_status_query:
  description: |
    Filters the stack list by a status. Use this filter multiple times to
    filter by multiple statuses.
  in: query
  required: false
  type: string
stack_tenant_query:
  description: |
    Filters the stack list by a tenant. Use this filter multiple times to
    filter by multiple tenants.
  in: query
  required: false
  type: string
stack_user_query:
  description: |
    Filters the stack list by a user name. Use this filter multiple times to
    filter by multiple user names.
  in: query
  required: false
  type: string
support_status_query:
  description: |
    Filters the response by resource types by a support status. Valid support
    status values are ``UNKNOWN``, ``SUPPORTED``, ``DEPRECATED``,
    ``UNSUPPORTED``, and ``HIDDEN``.
  in: query
  required: false
  type: string
tags_any:
  description: |
    Lists stacks that contain one or more simple string tags. To specify
    multiple tags, separate the tags with commas. For example, ``tag1,tag2``.
    The boolean OR expression is used to combine multiple tags.
  in: query
  required: false
  type: string
tags_query:
  description: |
    Lists stacks that contain one or more simple string tags. To specify
    multiple tags, separate the tags with commas. For example, ``tag1,tag2``.
    The boolean AND expression is used to combine multiple tags.
  in: query
  required: false
  type: string
template_type:
  description: |
    Specify the resource template type. The valid types are: ``cfn``, ``hot``.
  in: query
  required: false
  default: cfn
  type: string
type_name_query:
  description: |
    Filters the response by a resource type name. You can set this value to a
    regular expression. Use this filter multiple times to filter by multiple
    names.
  in: query
  required: false
  type: string
type_version_query:
  description: |
    Filters the list of resource types by heat version. For example,
    ``2016.1`` or ``5.0.0``.
  in: query
  required: false
  type: string
with_attr:
  description: |
    Includes detailed resource information for the resource.
  in: query
  required: false
  default: false
  type: boolean
with_count:
  description: |
    Set to ``true`` to include a count key in the response. The ``count`` key
    value is the number of stacks that match the query criteria.
  in: query
  required: false
  default: false
  type: boolean
with_description:
  description: |
    Either display resource type's description or not.
  in: query
  required: false
  default: false
  type: boolean
with_detail:
  description: |
    Enables detailed resource information for each resource in list of
    resources.
  in: query
  required: false
  default: false
  type: boolean

# variables in body
action:
  description: |
    The last action executed on the stack.
  in: body
  required: true
  type: string
adopt_stack_data:
  description: |
    Existing resources data to adopt a stack. Data returned by abandon
    stack could be provided as ``adopt_stack_data``.
  in: body
  required: true
  type: object
attributes:
  description: |
    Key and value pairs that contain resource attributes.
  in: body
  required: true
  type: object
binary:
  description: |
    The name of the binary executable of the heat engine.
  in: body
  required: true
  type: string
build_api:
  description: |
    The orchestration API revsion information.
  in: body
  required: true
  type: object
build_engine:
  description: |
    The orchestration engine revsion information.
  in: body
  required: true
  type: object
cancel_update:
  description: |
    Specify the ``cancel_update`` action in the
    request body.
  in: body
  required: true
  type: string
capabilities:
  description: |
    List of stack capabilities for stack.
  in: body
  required: true
  type: array
capabilities_1:
  description: |
    A list of stack capabilities.
  in: body
  required: true
  type: array
check:
  description: |
    Specify the ``check`` action in the request body.
  in: body
  required: true
  type: string
clear_parameters:
  description: |
    A list of parameters, if specified, to be removed from the set of
    parameters of the current stack. The default values in the template will
    be used.
  in: body
  required: false
  type: array
code:
  description: |
    The response code to a resource find request. e.g. ``302 Found``.
  in: body
  required: True
  type: string
config:
  description: |
    Configuration script or manifest that defines
    which configuration is performed.
  in: body
  required: false
  type: string
config_1:
  description: |
    The configuration code.
  in: body
  required: true
  type: string
config_id:
  description: |
    The UUID of the configuration.
  in: body
  required: true
  type: string
config_id_3:
  description: |
    The UUID of the software configuration resource
    to run when applying to the server. This UUID might not be the
    same configuration UUID with which the deployment was created
    because ephemeral configurations are created throughout the life
    cycle of the deployment.
  in: body
  required: true
  type: string
config_name:
  description: |
    The name of the software configuration.
  in: body
  required: true
  type: string
created_at:
  description: |
    The date and time when the service engine was created.
  in: body
  required: true
  type: string
creation_time:
  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
deleted_at:
  description: |
    The date and time when the service engine was deleted.
  in: body
  required: true
  type: string
deletion_time:
  description: |
    The date and time when the resource was (soft-) 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: body
  required: true
  type: string
deployment_action:
  description: |
    The stack action that triggers this deployment resource.
  in: body
  required: false
  type: string
deployment_config_id:
  description: |
    The UUID of the software configuration resource
    that runs when applying to the server.
  in: body
  required: true
  type: string
deployment_id:
  description: |
    The UUID of the software deployment.
  in: body
  required: true
  type: string
deployment_metadata:
  description: |
    The metadata about a software deployment.
  in: body
  required: true
  type: array
deployment_output_values:
  description: |
    A dict comprised of the output data from a software deployment.
  in: body
  required: true
  type: object
deployment_status:
  description: |
    Current status of the deployment. A valid value
    is ``COMPLETE``, ``IN_PROGRESS``, or ``FAILED``.
  in: body
  required: false
  type: string
deployment_status_reason:
  description: |
    The reason for the current deployment status.
  in: body
  required: false
  type: string

deployment_updated_time:
  description: |
    The date and time when the software deployment 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.

    If the ``updated_at`` date and time stamp is not set, its value is
    ``null``.
  in: body
  required: false
  type: string
Description:
  description: |
    The description specified in the template.
  in: body
  required: true
  type: string
description:
  description: |
    The description of the stack resource.
  in: body
  required: true
  type: string
disable_rollback:
  description: |
    Enables or disables deletion of all stack resources when stack creation
    fails. Set to ``true`` to keep all resources when stack creation fails.
    Set to ``false`` to delete all resources when stack creation fails.
  in: body
  required: false
  default: True
  type: boolean
encrypted_param_names:
  description: |
    A list of parameter names whose values are encrypted.
  in: body
  required: true
  type: array
engine_id:
  description: |
    The UUID of the engine service.
  in: body
  required: true
  type: string
engine_record_id:
  description: |
    The UUID of the heat engine service record. Note that each service engine
    may have multiple records in the service registry.
  in: body
  required: true
  type: string
engine_status:
  description: |
    The status of the heat engine.
  in: body
  required: true
  type: string
environment:
  description: |
    A JSON environment for the stack.
  in: body
  required: false
  type: object
environment_files:
  description: |
    An ordered list of names for environment files found in the ``files`` dict.
  in: body
  required: false
  type: object
event:
  description: |
    An map containing the name and values of event properties.
  in: body
  required: true
  type: object
event_id:
  description: |
    The UUID of the event object.
  in: body
  required: true
  type: string
event_links:
  description: |
    A list of URLs for the event. Each URL is a JSON object with an ``href``
    key indicating the URL and a ``rel`` key indicating its relationship to
    the event in question. There may be multiple links returned. The ``self``
    relationship identifies the URL of the event itself.
  in: body
  required: true
  type: array
event_sinks:
  description: |
    A list of event sinks.
  in: body
  required: true
  type: array
event_time:
  description: |
    The date and time when the event was created. The date and time stamp
    format is `ISO 8601 <https://en.wikipedia.org/wiki/ISO_8601>`_:
    ``CCYY-MM-DDThh:mm:ss``, for example, ``2015-08-27T09:49:58``.
  in: body
  required: true
  type: string
existing:
  description:
    A boolean specifying whether the service is about to reuse the existing
    stack template, parameters and environment. If ``template`` parameter is
    not provided, the existing template is used. If ``template_files`` is not
    provided, the existing environment is used. Parameters specified in the
    ``parameters`` key will patch over the existing values in the current
    stack. Parameters omitted will keep the existing values.
  in: body
  required: false
  default: false
  type: boolean
files:
  description: |
    Supplies the contents of files referenced in the template or the
    environment. Stack templates and resource templates can explicitly
    reference files by using the ``get_file`` intrinsic function. In
    addition, the ``environment`` parameter can contain implicit
    references to files.

    The value is a JSON object, where each key is a relative or
    absolute URI which serves as the name of a file, and the associated
    value provides the contents of the file. The following code shows
    the general structure of this parameter.

    .. code-block:: json

       { ...
           "files": {
               "fileA.yaml": "Contents of the file",
               "file:///usr/fileB.template": "Contents of the file",
               "http://example.com/fileC.template": "Contents of the file"
           }
       ...
       }

    Additionally, some template authors encode their user data in a
    local file. The Orchestration client examines the template for the
    ``get_file`` intrinsic function and adds an entry to the ``files``
    map with the path to the file as the name and the file contents as
    the value. So, a simple example looks like this:

    .. code-block:: json

       {
          "files": {
             "myfile": "#!/bin/bash\necho \"Hello world\" > /root/testfile.txt"
          },
          ...,
          "stack_name": "teststack",
          "template": {
             ...,
             "resources": {
                "my_server": {
                   "type": "OS::Nova::Server",
                   "properties": {
                      ...,
                      "user_data": {
                         "get_file": "myfile"
                      }
                   }
                }
             }
          },
          "timeout_mins": 60
       }

    Do not use this parameter to provide the content of the template
    located at the ``template_url`` address. Instead, use the
    ``template`` parameter to supply the template content as part of
    the request.
  in: body
  required: false
  type: object
function_description:
  description: |
    The textual description about the usage of the template function.
  in: body
  required: true
  type: string
functions:
  description: |
    The name of a function supported by the specified template version.
  in: body
  required: true
  type: string
group:
  description: |
    Namespace that groups this software configuration
    by when it is delivered to a server. This setting might simply
    define which configuration tool performs the configuration.
  in: body
  required: false
  type: string
group_1:
  description: |
    The name of the group in which the software is
    configured.
  in: body
  required: true
  type: string
heat_template_version:
  description: |
    The version of the orchestration HOT template.
  in: body
  required: true
  type: string
HeatTemplateFormatVersion:
  description: |
    The version of the orchestration CFN template.
  in: body
  required: true
  type: string
host:
  description: |
    The host on which the service engine is or was running.
  in: body
  required: true
  type: string
hostname:
  description: |
    The name of the host for the service engine.
  in: body
  required: true
  type: string
input_values:
  description: |
    A dict comprises of input data as key-value pairs.
  in: body
  required: false
  type: object
inputs:
  description: |
    Schema that represents the inputs that this
    software configuration expects.
  in: body
  required: false
  type: array
inputs_1:
  description: |
    A list of inputs to configure the software.
  in: body
  required: true
  type: array
links:
  description: |
    A list of URLs for the stack. Each URL is a JSON object with an ``href``
    key indicating the URL and a ``rel`` key indicating its relationship to
    the stack in question. There may be multiple links returned. The ``self``
    relationship identifies the URL of the stack itself.
  in: body
  required: true
  type: array
logical_resource_id:
  description: |
    The ID of the logical stack resource.
  in: body
  required: true
  type: string
mark_unhealthy:
  description: |
    A boolean indicating whether the target resource should be marked as
    unhealthy.
  in: body
  required: true
  type: boolean
message:
  description: |
    The message in the response to a resource find request.
  in: body
  required: true
  type: string
metadata:
  description: |
    The metadata of a resource.
  in: body
  required: true
  type: object
name_1:
  description: |
    The name of the configuration to create.
  in: body
  required: false
  type: string
notification_topics:
  description: |
    List of notification topics for stack.
  in: body
  required: true
  type: array
notification_topics_1:
  description: |
    A list of stack notifications.
  in: body
  required: true
  type: array
options:
  description: |
    Map that contains options that are specific to
    the configuration management tool that this resource uses.
  in: body
  required: false
  type: string
output:
  description: |
    An output record for the specified key.
  in: body
  required: true
  type: object
output_description:
  description: |
    A textual description of a stack output.
  in: body
  required: true
  type: string
output_error:
  description: |
    The error in a stack output. This key only appears when an output has
    problem in resolving its value.
  in: body
  required: false
  type: string
output_key:
  description: |
    The name of a stack output.
  in: body
  required: true
  type: string
output_value:
  description: |
    The value of a stack output.
  in: body
  required: true
  type: string
Outputs:
  description: |
    Key and value pairs that contain output data for a CFN template.
  in: body
  required: true
  type: object
outputs:
  description: |
    Schema that represents the outputs that this
    software configuration produces.
  in: body
  required: false
  type: array
parameter_defaults:
  description: |
    A map of parameters and their default values defined for the stack.
  in: body
  required: true
  type: object
ParameterGroups:
  description: |
    A list of parameter groups. Each group contains a list of parameter names.
  in: body
  required: false
  type: array
Parameters:
  description: |
    Key and value pairs that contain CFN template parameters.
  in: body
  required: true
  type: object
parameters:
  description: |
    Supplies arguments for parameters defined in the stack template.

    The value is a JSON object, where each key is the name of a
    parameter defined in the template and the associated value is the
    argument to use for that parameter when instantiating the template.
    The following code shows the general structure of this parameter.
    In the example, ``a`` and ``b`` would be the names of two
    parameters defined in the template.

    .. code-block:: json

       { ...
           "parameters": {
               "a": "Value",
               "b": "3"
           }
       ...
       }

    While the service accepts JSON numbers for parameters with the type
    ``number`` and JSON objects for parameters with the type ``json``,
    all parameter values are converted to their string representation
    for storage in the created Stack. Clients are encouraged to send
    all parameter values using their string representation for
    consistency between requests and responses from the Orchestration
    service.

    A value must be provided for each template parameter which does not
    specify a default value. However, this parameter is not allowed to
    contain JSON properties with names that do not match a parameter
    defined in the template.

    The ``files`` parameter maps logical file names to file contents.
    Both the ``get_file`` intrinsic function and provider template
    functionality use this mapping. When you want to use a provider
    template, for example, the Orchestration service adds an entry to
    the ``files`` map by using:

    - The URL of the provider template as the name.

    - The contents of that file as the value.

    Additionally, some template authors encode their user data in a
    local file. The Orchestration client examines the template for the
    ``get_file`` intrinsic function and adds an entry to the ``files``
    map with the path to the file as the name and the file contents as
    the value. So, a simple example looks like this:

    .. code-block:: json

       {
          "files": {
             "myfile": "#!/bin/bash\necho \"Hello world\" > /root/testfile.txt"
          },
          ...,
          "stack_name": "teststack",
          "template": {
             ...,
             "resources": {
                "my_server": {
                   "type": "OS::Nova::Server",
                   "properties": {
                      ...,
                      "user_data": {
                         "get_file": "myfile"
                      }
                   }
                }
             }
          },
          "timeout_mins": 60
       }
  in: body
  required: false
  type: object
parameters_show:
  description: |
    A map of parameters defined for the stack.
  in: body
  required: true
  type: object
parent:
  description: |
    The stack ID of the parent stack, if this is a nested stack.
  in: body
  required: true
  type: string
physical_resource_id:
  description: |
    The ID of the stack physical resource.
  in: body
  required: true
  type: string
preview_added:
  description: |
    A list of resource objects that will be added if a stack update is
    performed.
  in: body
  required: true
  type: array
preview_deleted:
  description: |
    A list of resource objects that will be deleted if a stack update is
    performed.
  in: body
  required: true
  type: array
preview_replaced:
  description: |
    A list of resource objects that will be replaced if a stack update is
    performed.
  in: body
  required: true
  type: array
preview_unchanged:
  description: |
    A list of resource objects that will remain unchanged if a stack update is
    performed.
  in: body
  required: true
  type: array
preview_updated:
  description: |
    A list of resource objects that will have their properties updated in place
    if a stack update is performed.
  in: body
  required: true
  type: array
project_id:
  description: |
    The UUID of the project.
  in: body
  required: true
  type: string
properties:
  description: |
    The properties of the resource. Includes description, type, and so on.
  in: body
  required: true
  type: object
report_interval:
  description: |
    The polling interval, in seconds. The API reports events at this interval
    until heat engine creation completes.
  in: body
  required: true
  type: integer
required:
  description: |
    If set to ``true`` the attribute is required.
  in: body
  required: true
  type: boolean
required_by:
  description: |
    The list of resources that require this stack resource.
  in: body
  required: true
  type: array
resource:
  description: |
    Key and value pairs that contain stack resource properties.
  in: body
  required: true
  type: object
resource_changes:
  description: |
    An map that describes what resources will be added, deleted, replaced,
    updated or remain unchanged.
  in: body
  required: true
  type: object
resource_links:
  description: |
    A list of URLs for the resource. Each URL is a JSON object with an ``href``
    key indicating the URL and a ``rel`` key indicating its relationship to
    the resource in question. There may be multiple links returned. The
    ``self`` relationship identifies the URL of the resource itself.
  in: body
  required: true
  type: array
resource_name:
  description: |
    The name of the resource.
  in: body
  required: true
  type: string
resource_properties:
  description: |
    A map containing the properties of the resource associated with the event.
  in: body
  required: true
  type: object
resource_registry:
  description: |
    A map containing customized resource definitions. This map contains at
    least a dict of ``resources`` registered for the stack.
  in: body
  required: true
  type: object
resource_status:
  description: |
    The status of the resource.
  in: body
  required: true
  type: string
resource_status_reason:
  description: |
    The reason for the current stack resource state.
  in: body
  required: true
  type: string
resource_type:
  description: |
    The type name of the resource.
  in: body
  required: true
  type: string
resource_type_description:
  description: |
    The textual description of the resource type.
  in: body
  required: true
  type: string
resource_types_advanced:
  description: |
    A list of objects each of which provides the resource type name and a
    textual description about the type.
  in: body
  required: true
  type: array
resource_types_simple:
  description: |
    A list of resource type names.
  in: body
  required: true
  type: array
resource_update_status_reason:
  description: |
    The reason for the current stack resource state.
  in: body
  required: false
  default: ''
  type: string
resources:
  description: |
    A map of resource names and their properties.
  in: body
  required: true
  type: array
Resources:
  description: |
    A map containging all resource definitions for the resource template.
  in: body
  required: true
  type: object
resources_2:
  description: |
    The snapshot resources.
  in: body
  required: true
  type: object
resources_abandon:
  description: |
    The required sources for creating the stack template.
  in: body
  required: true
  type: object
resources_list:
  description: |
    A list of resource objects.
  in: body
  required: true
  type: array
restore_code:
  description: |
    HTTP status code for a restore request. Usually ``202 Accepted``.
  in: body
  required: true
  type: string
restore_message:
  description: |
    The message in the response to a stack restore request.
  in: body
  required: true
  type: string
restore_title:
  description: |
    The title of the response to a stack restore request. e.g. ``Accepted``.
  in: body
  required: true
  type: string
resume:
  description: |
    Specify the ``resume`` action in the request
    body.
  in: body
  required: true
  type: string
server_id:
  description: |
    The UUID of the compute server to which the
    configuration applies.
  in: body
  required: true
  type: string
services:
  description: |
    A list of heat engines.
  in: body
  required: true
  type: array
snapshot:
  description: |
    Key and value pairs that contain snapshot properties.
  in: body
  required: true
  type: object
snapshot_data:
  description: |
    The snapshot data.
  in: body
  required: true
  type: object
snapshot_id:
  description: |
    The UUID of the snapshot.
  in: body
  required: true
  type: string
snapshot_name:
  description: |
    The name of the snapshot.
  in: body
  required: true
  type: string
snapshot_status:
  description: |
    The status of the snapshot.
  in: body
  required: true
  type: string
snapshot_status_reason:
  description: |
    The reason for the current snapshot status.
  in: body
  required: true
  type: string
snapshots:
  description: |
    A list of snapshots and their properties.
  in: body
  required: true
  type: array
software_config:
  description: |
    The ``software_config`` object.
  in: body
  required: true
  type: object
software_configs:
  description: |
    A list of ``software_config`` objects.
  in: body
  required: true
  type: array
software_deployment:
  description: |
    The ``software_deployment`` object.
  in: body
  required: true
  type: object
software_deployments:
  description: |
    A list of ``software_deployment`` objects.
  in: body
  required: true
  type: array
stack:
  description: |
    The ``stack`` object.
  in: body
  required: true
  type: object
stack_action:
  description: |
    The current action on the stack.
  in: body
  required: true
  type: string
stack_disable_rollback:
  description: |
    Whether deletion of all stack resources when stack creation fails is
    enabled.
  in: body
  required: true
  type: boolean
stack_environment:
  description: |
    A JSON environment for the stack.
  in: body
  required: true
  type: object
stack_files:
  description: |
    A map containing the name and content of files used by the stack.
  in: body
  required: true
  type: object
stack_id:
  description: |
    The UUID of the stack.
  in: body
  required: true
  type: string
stack_name:
  description: |
    A name for the stack. The value must be unique within a project.
    The name must start with an ASCII letter and can contain ASCII letters,
    digits, underscores, periods, and hyphens. Specifically, the name must
    match the ``^[a-zA-Z][a-zA-Z0-9_.-]*$`` regular expression.

    When you delete or abandon a stack, its name will not become available
    for reuse until the deletion completes successfully.
  in: body
  required: true
  type: string
stack_name_request:
  description: |
    A name for the stack. The value must be unique within a project.
    The name must start with an ASCII letter and can contain ASCII letters,
    digits, underscores, periods, and hyphens. Specifically, the name must
    match the ``^[a-zA-Z][a-zA-Z0-9_.-]*$`` regular expression.

    When you delete or abandon a stack, its name will not become available
    for reuse until the deletion completes successfully.
  in: body
  required: true
  type: string
stack_outputs:
  description: |
    A list of stack outputs.
  in: body
  required: true
  type: array
stack_owner:
  description: |
    The owner of the stack.
  in: body
  required: true
  type: string
stack_parameters:
  description: |
    A group of key-value pairs where each key contains either a user-provided
    parameter name or a built-in parameter name (e.g. ``OS::project_id``).
  in: body
  required: true
  type: object
stack_resources:
  description: |
    List of stack resources.
  in: body
  required: true
  type: array
stack_stack_user_project_id:
  description: |
    The project UUID of the stack user.
  in: body
  required: true
  type: string
stack_status:
  description: |
    The status of the stack.
  in: body
  required: true
  type: string
stack_status_reason:
  description: |
    The reason for the current status of the stack.
  in: body
  required: true
  type: string
stack_tags:
  description: |
    The stack tags.
  in: body
  required: true
  type: string
stack_template:
  description: |
    The template used to create the stack.
  in: body
  required: true
  type: object
stack_timeout_mins:
  description: |
    The timeout for stack creation in minutes.
  in: body
  required: true
  type: integer
stack_user_project_id:
  description: |
    Authentication project ID, which can also perform
    operations on this deployment.
  in: body
  required: false
  type: string
stacks:
  description: |
    A list of ``stack`` object.
  in: body
  required: true
  type: array
support_status:
  description: |
    Information about the current support status of a resource type.
  in: body
  required: true
  type: object
suspend:
  description: |
    Specify the ``suspend`` action in the request body.
  in: body
  required: true
  type: string
tags:
  description: |
    One or more simple string tags to associate with the stack. To associate
    multiple tags with a stack, separate the tags with commas.
    For example, ``tag1,tag2``.
  in: body
  required: false
  type: string
template:
  description: |
    The stack template on which to perform the operation.

    This parameter is always provided as a ``string`` in the JSON request body.
    The content of the string is a JSON- or YAML-formatted Orchestration
    template. For example:

    .. code-block:: json

       "template": {
           "heat_template_version": "2013-05-23",
           ...
       }

    This parameter is required only when you omit the ``template_url``
    parameter. If you specify both parameters, this value overrides the
    ``template_url`` parameter value.
  in: body
  required: False
  type: object
template_description:
  description: |
    The description of the stack template.
  in: body
  required: true
  type: string
template_functions:
  descriptions: |
    A list of template function descriptors.
  in: body
  required: true
  type: array
template_outputs:
  description: |
    Key and value pairs that contain output data.
  in: body
  required: true
  type: object
template_parameters:
  description: |
    Key and value pairs that contain the schemas of parameters acceptable by
    the template.
  in: body
  required: true
  type: object
template_resources:
  description: |
    Key and value pairs that contain definition of resources in the template.
  in: body
  required: true
  type: object
template_type:
  description: |
    The type of the template version which can be ``cfn`` or ``hot``.
  in: body
  required: true
  type: string
template_url:
  description: |
    A URI to the location containing the stack template on which to perform
    the operation.  See the description of the ``template`` parameter for
    information about the expected template content located at the URI.
    This parameter is only required when you omit the ``template`` parameter.
    If you specify both parameters, this parameter is ignored.
  in: body
  required: false
  type: string
template_version:
  description: |
    The version string of the template format.
  in: body
  required: true
  type: string
template_version_alias:
  description: |
    The alias of a template version. For newer template versions supported,
    the orchestration service is moving away from template versioning using
    release date (which is hard to remember). Newer versions are named after
    the OpenStack release code name. For example,
    ``heat_template_version.newton``.
  in: body
  required: true
  type: list
template_versions:
  description: |
    A list of template version object each describes the type name and version
    information for a template version.
  in: body
  required: true
  type: array
timeout_mins:
  description: |
    The timeout for stack creation in minutes.
  in: body
  required: false
  type: integer
title:
  description: |
    The title of the response to a resource find request. e.g. ``Found``.
  in: body
  required: true
  type: string
topic:
  description: |
    The messaging topic of the heat engine.
  in: body
  required: true
  type: string
type:
  description: |
    The property type.
  in: body
  required: true
  type: string
update_allowed:
  description: |
    If set to ``true``, update is allowed.
  in: body
  required: true
  type: boolean
update_show_nested:
  description: |
    Set to ``true`` to include nested stacks in the preview result.
  in: body
  required: false
  default: false
  type: boolean
updated_at:
  description: |
    The date and time when the service engine was updated.
  in: body
  required: true
  type: string
updated_time:
  description: |
    The date and time when the object 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: body
  required: true
  type: string
versions:
  description: |
    A list of all orchestration API versions. Each object in the list provides
    information about a supported API version such as ``id``, ``status`` and
    ``links``, among other fields.
  in: body
  required: true
  type: array