Documentation
¶
Overview ¶
Package vnet provides functions and data structures to interact with Azure VNet resources.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AzureResourceReport ¶
type AzureResourceReport struct { Resources AzureResources `json:"resources" yaml:"resources"` Errors []string `json:"errors" yaml:"errors"` }
AzureResourceReport contains the AzureResources and any non-fatal errors encountered during enumeration.
func EnumerateVNets ¶
func EnumerateVNets(ctx context.Context, cfg config.AzureConfig) (*AzureResourceReport, error)
EnumerateVNets enumerates all VNets in the subscription, returning a report of the VNets and any non-fatal errors encountered.
type AzureResources ¶
type AzureResources struct { SubscriptionID string `json:"subscription_id" yaml:"subscription_id"` TenantID string `json:"tenant_id" yaml:"tenant_id"` VirtualNetworks []Details `json:"virtual_networks" yaml:"virtual_networks"` }
AzureResources contains details about all VNets in the subscription.
type Details ¶
type Details struct { VNetName string `json:"vnet_name" yaml:"vnet_name"` Location string `json:"location" yaml:"location"` ResourceGroup string `json:"resource_group" yaml:"resource_group"` ResourceGroupID string `json:"resource_group_id" yaml:"resource_group_id"` Details armnetwork.VirtualNetwork `json:"details" yaml:"details"` }
Details contains details about a single VNet.
Click to show internal directories.
Click to hide internal directories.