Merge "Update profile types APIs doc"

This commit is contained in:
Jenkins 2017-07-17 06:56:32 +00:00 committed by Gerrit Code Review
commit 7d07038754
5 changed files with 45 additions and 19 deletions

View File

@ -1,11 +1,20 @@
{
"operations": {
"reboot": {
"description": "reboot the specified VM instance",
"description": "Reboot the nova server.",
"parameters": {
"type": {
"constraints": [
{
"constraint": [
"SOFT",
"HARD"
],
"type": "AllowedValues"
}
],
"default": "SOFT",
"description": "Type of reboot requested",
"description": "Type of reboot which can be 'SOFT' or 'HARD'.",
"required": false,
"type": "String"
}

View File

@ -5,7 +5,6 @@
"context": {
"default": {},
"description": "A dictionary for specifying the customized context for stack operations",
"readonly": false,
"required": false,
"type": "Map",
"updatable": false
@ -13,7 +12,6 @@
"disable_rollback": {
"default": true,
"description": "A boolean specifying whether a stack operation can be rolled back.",
"readonly": false,
"required": false,
"type": "Boolean",
"updatable": true
@ -21,7 +19,6 @@
"environment": {
"default": {},
"description": "A map that specifies the environment used for stack operations.",
"readonly": false,
"required": false,
"type": "Map",
"updatable": true
@ -29,7 +26,6 @@
"files": {
"default": {},
"description": "Contents of files referenced by the template, if any.",
"readonly": false,
"required": false,
"type": "Map",
"updatable": true
@ -37,26 +33,31 @@
"parameters": {
"default": {},
"description": "Parameters to be passed to Heat for stack operations.",
"readonly": false,
"required": false,
"type": "Map",
"updatable": true
},
"template": {
"default": {},
"description": "Heat stack template.",
"readonly": false,
"required": true,
"required": false,
"type": "Map",
"updatable": true
},
"template_url": {
"default": "",
"description": "Heat stack template url.",
"required": false,
"type": "String",
"updatable": true
},
"timeout": {
"description": "A integer that specifies the number of minutes that a stack operation times out.",
"readonly": false,
"required": false,
"type": "Integer",
"updatable": true
}
}
},
"support_status": {
"1.0": [
{

View File

@ -5,7 +5,6 @@
"context": {
"default": {},
"description": "A dictionary for specifying the customized context for stack operations",
"readonly": false,
"required": false,
"type": "Map",
"updatable": false
@ -13,7 +12,6 @@
"disable_rollback": {
"default": true,
"description": "A boolean specifying whether a stack operation can be rolled back.",
"readonly": false,
"required": false,
"type": "Boolean",
"updatable": true
@ -21,7 +19,6 @@
"environment": {
"default": {},
"description": "A map that specifies the environment used for stack operations.",
"readonly": false,
"required": false,
"type": "Map",
"updatable": true
@ -29,7 +26,6 @@
"files": {
"default": {},
"description": "Contents of files referenced by the template, if any.",
"readonly": false,
"required": false,
"type": "Map",
"updatable": true
@ -37,21 +33,26 @@
"parameters": {
"default": {},
"description": "Parameters to be passed to Heat for stack operations.",
"readonly": false,
"required": false,
"type": "Map",
"updatable": true
},
"template": {
"default": {},
"description": "Heat stack template.",
"readonly": false,
"required": true,
"required": false,
"type": "Map",
"updatable": true
},
"template_url": {
"default": "",
"description": "Heat stack template url.",
"required": false,
"type": "String",
"updatable": true
},
"timeout": {
"description": "A integer that specifies the number of minutes that a stack operation times out.",
"readonly": false,
"required": false,
"type": "Integer",
"updatable": true

View File

@ -1,5 +1,17 @@
{
"profile_types": [
{
"name": "container.dockerinc.docker",
"version": "1.0",
"support_status": {
"1.0": [
{
"status": "EXPERIMENTAL",
"since": "2017.02"
}
]
}
},
{
"name": "os.heat.stack",
"version": "1.0",

View File

@ -1,5 +1,8 @@
{
"profile_types": [
{
"name": "container.dockerinc.docker-1.0"
},
{
"name": "os.heat.stack-1.0"
},