diff --git a/api-ref/src/docbkx/ch_orchestration-v1.xml b/api-ref/src/docbkx/ch_orchestration-v1.xml index a36e11480..fcd5560ff 100644 --- a/api-ref/src/docbkx/ch_orchestration-v1.xml +++ b/api-ref/src/docbkx/ch_orchestration-v1.xml @@ -40,6 +40,10 @@ + + + diff --git a/api-ref/src/wadls/orchestration-api/src/v1/orchestration-api.wadl b/api-ref/src/wadls/orchestration-api/src/v1/orchestration-api.wadl index eb46c4b9c..0400e30a7 100644 --- a/api-ref/src/wadls/orchestration-api/src/v1/orchestration-api.wadl +++ b/api-ref/src/wadls/orchestration-api/src/v1/orchestration-api.wadl @@ -68,6 +68,9 @@ + + + @@ -1128,6 +1131,85 @@ ¬Found; &intServerErr; + + + Preview an update for a specified stack + + + + + + + &templateUrlParameter; + &templateParameter; + &environmentParameterOptional; + &filesParameter; + &tagsParameter; + + + + This parameter supplies updated 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 are the names of two parameters defined in + the template. + { ... + "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. + + + You must specify a value for each template parameter that + does not have a default value. However, this parameter + cannot contain JSON properties with names that do not match + a parameter that is defined in the template. + + + + + + + The timeout for stack creation in minutes. + + + + + + + + + + + + + diff --git a/api-ref/src/wadls/orchestration-api/src/v1/samples/stack_update_preview_resp.json b/api-ref/src/wadls/orchestration-api/src/v1/samples/stack_update_preview_resp.json new file mode 100644 index 000000000..9a511a178 --- /dev/null +++ b/api-ref/src/wadls/orchestration-api/src/v1/samples/stack_update_preview_resp.json @@ -0,0 +1,67 @@ +{ + "unchanged": [ + { + "updated_time": "datetime", + "resource_name": "", + "physical_resource_id": "{resource id or ''}", + "resource_action": "CREATE", + "resource_status": "COMPLETE", + "resource_status_reason": "", + "resource_type": "restype", + "stack_identity": "{stack_id}", + "stack_name": "{stack_name}" + } + ], + "updated": [ + { + "updated_time": "datetime", + "resource_name": "", + "physical_resource_id": "{resource id or ''}", + "resource_action": "CREATE", + "resource_status": "COMPLETE", + "resource_status_reason": "", + "resource_type": "restype", + "stack_identity": "{stack_id}", + "stack_name": "{stack_name}" + } + ], + "replaced": [ + { + "updated_time": "datetime", + "resource_name": "", + "physical_resource_id": "{resource id or ''}", + "resource_action": "CREATE", + "resource_status": "COMPLETE", + "resource_status_reason": "", + "resource_type": "restype", + "stack_identity": "{stack_id}", + "stack_name": "{stack_name}" + } + ], + "added": [ + { + "updated_time": "datetime", + "resource_name": "", + "physical_resource_id": "{resource id or ''}", + "resource_action": "CREATE", + "resource_status": "COMPLETE", + "resource_status_reason": "", + "resource_type": "restype", + "stack_identity": "{stack_id}", + "stack_name": "{stack_name}" + } + ], + "deleted": [ + { + "updated_time": "datetime", + "resource_name": "", + "physical_resource_id": "{resource id or ''}", + "resource_action": "CREATE", + "resource_status": "COMPLETE", + "resource_status_reason": "", + "resource_type": "restype", + "stack_identity": "{stack_id}", + "stack_name": "{stack_name}" + } + ] +}