Request the metadata (ie, parameters and values) for a cloud template (eg, cloudformation, terraform, azure ARM template)
POST /api
Path Parameters
idstring (required)
The id of a supported cloud template type, egCloudFormation,Terraform,AzureAppService,Kubernetes, etc.
Request Body
FeedIdstring
Id of the feed from which to load the package. Obsolete.Idstring (required)
The id of a supported cloud template type, egCloudFormation,Terraform,AzureAppService,Kubernetes, etc.PackageIdstring
Id of the package to load and parse. Obsolete.Templatestring (required)
The cloud template to evaluate and extract parameters and values from. Minimum length 1.
Response
200 — The metadata (ie, parameters and values) for a cloud template (eg, cloudformation, terraform, azure ARM template)
MetadataobjectDescriptionstringTypesarray of object
Valuesstring
Example Request
JSON
{
"FeedId": "string",
"Id": "string",
"PackageId": "string",
"Template": "string"
}Example Response
JSON
{
"Metadata": {
"Description": "string",
"Types": [
{
"Name": "string",
"Properties": [
{}
]
}
]
},
"Values": "string"
}