Fix output for subnet show

The use_default_subnet_pool column is never returned by the API, it is
only being used in the request to create a subnet. So make sure that we
do not show it when displaying a subnet.

Change-Id: Ie021149cceb8f89b779ad0f3c13ac60420509671
Related-Bug: 1668223
This commit is contained in:
Jens Harbott 2017-09-12 14:21:49 +00:00
parent 50099d3c72
commit 104d6d0e31

@ -135,7 +135,7 @@ def _get_columns(item):
'tenant_id': 'project_id',
}
# Do not show this column when displaying a subnet
invisible_columns = ['use_default_subnetpool']
invisible_columns = ['use_default_subnet_pool']
return sdk_utils.get_osc_show_columns_for_sdk_resource(
item,
column_map,