Documenting parent property.

Change-Id: Ia5a7f2d2cfeac115511fb5e048c591226d3c5e85
Closes-bug: 1384526
This commit is contained in:
Shaunak Kashyap 2014-10-22 19:54:34 -07:00
parent eafb0a44b7
commit 86a5dc3b7e
2 changed files with 13 additions and 1 deletions

View File

@ -10,6 +10,7 @@
]>
<application xmlns="http://wadl.dev.java.net/2009/02"
xmlns:xsdxt="http://docs.rackspacecloud.com/xsd-ext/v1.0"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:wadl="http://wadl.dev.java.net/2009/02">
<resources base="https://heat.example.com/"
xml:id="orchestration-api-v1.0">
@ -466,6 +467,16 @@
</representation>
</request>
<response status="200">
<param name="parent" style="plain" type="xsd:string"
required="true">
<wadl:doc xmlns="http://docbook.org/ns/docbook"
xml:lang="EN">
<para>
The Stack ID of the parent stack, if this is
a nested stack.
</para>
</wadl:doc>
</param>
<representation mediaType="application/json">
<wadl:doc xmlns="http://docbook.org/ns/docbook"
xml:lang="EN">

View File

@ -1,6 +1,7 @@
{
"stack": {
"id": "None",
"parent": null,
"stack_name": "sample_stack",
"description": "Sample template description.",
"template_description": "Sample template description.",
@ -86,4 +87,4 @@
}
]
}
}
}