diff --git a/heat/engine/resources/neutron/firewall.py b/heat/engine/resources/neutron/firewall.py index 8c2b21ce20..f5c07a9745 100644 --- a/heat/engine/resources/neutron/firewall.py +++ b/heat/engine/resources/neutron/firewall.py @@ -43,7 +43,8 @@ class Firewall(neutron.NeutronResource): 'firewall_policy_id': _('Unique identifier of the FirewallPolicy ' 'used to create the Firewall.'), 'status': _('The status of the Firewall.'), - 'tenant_id': _('Id of the tenant owning the Firewall.') + 'tenant_id': _('Id of the tenant owning the Firewall.'), + 'show': _('All attributes.'), } update_allowed_keys = ('Properties',) diff --git a/heat/engine/resources/neutron/loadbalancer.py b/heat/engine/resources/neutron/loadbalancer.py index 8deb8052ae..365b476ffd 100644 --- a/heat/engine/resources/neutron/loadbalancer.py +++ b/heat/engine/resources/neutron/loadbalancer.py @@ -89,6 +89,7 @@ class HealthMonitor(neutron.NeutronResource): 'url_path': _('The HTTP path used in the HTTP request used by the ' 'monitor to test a member health.'), 'tenant_id': _('Tenant owning the health monitor.'), + 'show': _('All attributes.'), } def handle_create(self): diff --git a/heat/engine/resources/neutron/net.py b/heat/engine/resources/neutron/net.py index bb41e692b2..02123c4f00 100644 --- a/heat/engine/resources/neutron/net.py +++ b/heat/engine/resources/neutron/net.py @@ -66,6 +66,7 @@ class Net(neutron.NeutronResource): "subnets": _("Subnets of this network."), "admin_state_up": _("The administrative status of the network."), "tenant_id": _("The tenant owning this network."), + "show": _("All attributes."), } def handle_create(self): diff --git a/heat/engine/resources/neutron/port.py b/heat/engine/resources/neutron/port.py index 4f49c8449c..f86d50827f 100644 --- a/heat/engine/resources/neutron/port.py +++ b/heat/engine/resources/neutron/port.py @@ -52,7 +52,8 @@ class Port(neutron.NeutronResource): "network_id": _("Unique identifier for the network owning the port."), "security_groups": _("A list of security groups for the port."), "status": _("The status of the port."), - "tenant_id": _("Tenant owning the port") + "tenant_id": _("Tenant owning the port"), + "show": _("All attributes."), } def add_dependencies(self, deps): diff --git a/heat/engine/resources/neutron/router.py b/heat/engine/resources/neutron/router.py index 795998b06a..6f04a715d6 100644 --- a/heat/engine/resources/neutron/router.py +++ b/heat/engine/resources/neutron/router.py @@ -38,6 +38,7 @@ class Router(neutron.NeutronResource): "name": _("Friendly name of the router."), "admin_state_up": _("Administrative state of the router."), "tenant_id": _("Tenant owning the router."), + "show": _("All attributes."), } def handle_create(self): diff --git a/heat/engine/resources/neutron/subnet.py b/heat/engine/resources/neutron/subnet.py index 96d552d5bf..b550f02857 100644 --- a/heat/engine/resources/neutron/subnet.py +++ b/heat/engine/resources/neutron/subnet.py @@ -61,7 +61,8 @@ class Subnet(neutron.NeutronResource): # dns_nameservers isn't in the api docs; is it right? "dns_nameservers": _("List of dns nameservers."), "enable_dhcp": _("'true' if DHCP is enabled for this subnet; 'false' " - "otherwise.") + "otherwise."), + "show": _("All attributes."), } @staticmethod diff --git a/heat/engine/resources/neutron/vpnservice.py b/heat/engine/resources/neutron/vpnservice.py index f9a0560a15..43c2e77a8f 100644 --- a/heat/engine/resources/neutron/vpnservice.py +++ b/heat/engine/resources/neutron/vpnservice.py @@ -68,7 +68,8 @@ class VPNService(neutron.NeutronResource): 'subnet_id': _('The unique identifier of the subnet in which the vpn ' 'service was created.'), 'tenant_id': _('The unique identifier of the tenant owning the vpn ' - 'service.') + 'service.'), + 'show': _('All attributes.'), } update_allowed_keys = ('Properties',)