Source code for saltext.vcf.modules.vcf_vcenter_network
"""Execution module for vCenter networks."""
from saltext.vcf.clients import vcenter_network as c
__virtualname__ = "vcf_vcenter_network"
def __virtual__():
return __virtualname__
[docs]
def list_(profile=None):
"""List .
CLI Example:
.. code-block:: bash
salt '*' vcf_vcenter_network.list_
"""
return c.list_(__opts__, profile=profile)