Table: vsphere_network
A network is an isolated virtual network that vms can use to communicate between each other or to the internet.
The vsphere_network
table can be used to query networks and availability.
Examples
List networks
select *from vsphere_network;
Select all accessible networks
select *from vsphere_networkwhere accessible = true;
Select networks with test in their name
select *from vsphere_networkwhere name ILIKE '%test%';
Schema for vsphere_network
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
accessible | boolean | At least one host is configured to provide this network | |
ip_pool_id | bigint | Identifier of the associated IP pool. Zero if the network is not associated with an IP pool | |
ip_pool_name | text | Name of the associated IP pool. Empty if the network is not associated with an IP pool | |
moref | text | Managed object reference of the network | |
name | text | The name of the network | |
type | text | The type of the network |