diff --git a/api-ref/src/wadls/orchestration-api/src/v1/common.ent b/api-ref/src/wadls/orchestration-api/src/v1/common.ent
index b1934d853..ec85a6d7a 100644
--- a/api-ref/src/wadls/orchestration-api/src/v1/common.ent
+++ b/api-ref/src/wadls/orchestration-api/src/v1/common.ent
@@ -125,12 +125,12 @@
The stack template on which to perform the specified operation.
- This parameter is always provided as a string in the
- JSON request body. The content of the string is an Orchestration
- template in YAML or JSON format.
+ This parameter is always provided as a string in the JSON
+ request body. The content of the string is a YAML- or JSON-formatted
+ Orchestration template.
- This parameter is only required when you omit the
+ 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.
@@ -158,3 +158,15 @@
'>
+
+
+
+ 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.
+
+
+ '>
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 eed2d789c..e85359c7f 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
@@ -337,6 +337,46 @@
+
+
+
+ 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.
+
+
+
+
+
+
+ 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.
+
+
+
+
+
+
+ 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.
+
+
+
+
+
+
+ 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.
+
+
+
&sortDirection;
@@ -369,12 +409,11 @@
A name for the new 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.
+ 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 might
@@ -387,6 +426,7 @@
&templateParameter;
&filesParameter;
¶metersParameter;
+ &tagsParameter;
@@ -961,6 +1001,7 @@
&templateParameter;
&environmentParameter;
&filesParameter;
+ &tagsParameter;
diff --git a/api-ref/src/wadls/orchestration-api/src/v1/samples/stack_list_resp.json b/api-ref/src/wadls/orchestration-api/src/v1/samples/stack_list_resp.json
index d0cc1b7d5..b758c840c 100644
--- a/api-ref/src/wadls/orchestration-api/src/v1/samples/stack_list_resp.json
+++ b/api-ref/src/wadls/orchestration-api/src/v1/samples/stack_list_resp.json
@@ -13,7 +13,8 @@
"stack_name": "simple_stack",
"stack_status": "CREATE_COMPLETE",
"stack_status_reason": "Stack CREATE completed successfully",
- "updated_time": ""
+ "updated_time": "",
+ "tags": ""
}
]
-}
\ No newline at end of file
+}
diff --git a/api-ref/src/wadls/orchestration-api/src/v1/samples/stack_show_resp.json b/api-ref/src/wadls/orchestration-api/src/v1/samples/stack_show_resp.json
index c2b555075..ca2cfa0e3 100644
--- a/api-ref/src/wadls/orchestration-api/src/v1/samples/stack_show_resp.json
+++ b/api-ref/src/wadls/orchestration-api/src/v1/samples/stack_show_resp.json
@@ -22,6 +22,7 @@
"stack_status_reason": "Stack CREATE completed successfully",
"template_description": "sample stack",
"timeout_mins": "",
- "updated_time": ""
+ "updated_time": "",
+ "tags": ""
}
-}
\ No newline at end of file
+}