# Functions
Connect adds a container to a network.
Create makes a new network configuration.
No description provided by the author
Disconnect removes a container from a given network.
Exists returns true if a given network exists.
Inspect returns information about a network configuration.
List returns a summary of all network configurations.
Prune removes unused networks.
Remove deletes a defined network configuration by name.
Updates an existing netavark network config.
# Structs
CreateOptions are optional options for creating networks
go:generate go run ../generator/generator.go CreateOptions.
DisconnectOptions are optional options for disconnecting containers from a network
go:generate go run ../generator/generator.go DisconnectOptions.
ExistsOptions are optional options for checking if a network exists
go:generate go run ../generator/generator.go ExistsOptions.
ExtraCreateOptions are optional additional configuration flags for creating Networks that are not part of the network configuration
go:generate go run ../generator/generator.go ExtraCreateOptions.
InspectOptions are optional options for inspecting networks
go:generate go run ../generator/generator.go InspectOptions.
ListOptions are optional options for listing networks
go:generate go run ../generator/generator.go ListOptions.
PruneOptions are optional options for removing unused networks
go:generate go run ../generator/generator.go PruneOptions.
RemoveOptions are optional options for inspecting networks
go:generate go run ../generator/generator.go RemoveOptions.
NetworkUpdateOptions describes options to update a network
go:generate go run ../generator/generator.go UpdateOptions.