summaryrefslogtreecommitdiff
path: root/heatclient/osc
diff options
context:
space:
mode:
Diffstat (limited to 'heatclient/osc')
-rw-r--r--heatclient/osc/v1/template.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/heatclient/osc/v1/template.py b/heatclient/osc/v1/template.py
index 1b089dd..c4ed124 100644
--- a/heatclient/osc/v1/template.py
+++ b/heatclient/osc/v1/template.py
@@ -57,6 +57,12 @@ class FunctionList(command.Lister):
metavar='<template-version>',
help=_('Template version to get the functions for')
)
+ parser.add_argument(
+ '--with_conditions',
+ default=False,
+ action='store_true',
+ help=_('Show condition functions for template.')
+ )
return parser
@@ -67,7 +73,8 @@ class FunctionList(command.Lister):
version = parsed_args.template_version
try:
- functions = client.template_versions.get(version)
+ functions = client.template_versions.get(
+ version, with_condition_func=parsed_args.with_conditions)
except exc.HTTPNotFound:
msg = _('Template version not found: %s') % version
raise exc.CommandError(msg)