mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-06-30 02:31:10 +00:00
* wip * experimenting with terraform plugin framework * cleaning up poc and adding tests * adding read / update / delete * update bridge_vlan_aware and MTU * add ipv6 and simplify IP support * fix provider's schema * add docs * run linter from cmdline * disable TF acceptance tests * add VLAN * update docs * add examole * cleanup
126 lines
3.3 KiB
Go
126 lines
3.3 KiB
Go
/*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
package nodes
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net/http"
|
|
"net/url"
|
|
"sort"
|
|
|
|
"github.com/bpg/terraform-provider-proxmox/proxmox/api"
|
|
)
|
|
|
|
const (
|
|
networkReloadTimeoutSec = 5
|
|
)
|
|
|
|
// ListNetworkInterfaces retrieves a list of network interfaces for a specific nodes.
|
|
func (c *Client) ListNetworkInterfaces(ctx context.Context) ([]*NetworkInterfaceListResponseData, error) {
|
|
resBody := &NetworkInterfaceListResponseBody{}
|
|
|
|
err := c.DoRequest(ctx, http.MethodGet, c.ExpandPath("network"), nil, resBody)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to get network interfaces for node \"%s\": %w", c.NodeName, err)
|
|
}
|
|
|
|
if resBody.Data == nil {
|
|
return nil, api.ErrNoDataObjectInResponse
|
|
}
|
|
|
|
sort.Slice(resBody.Data, func(i, j int) bool {
|
|
return resBody.Data[i].Priority < resBody.Data[j].Priority
|
|
})
|
|
|
|
return resBody.Data, nil
|
|
}
|
|
|
|
// CreateNetworkInterface creates a network interface for a specific node.
|
|
func (c *Client) CreateNetworkInterface(ctx context.Context, d *NetworkInterfaceCreateUpdateRequestBody) error {
|
|
err := c.DoRequest(ctx, http.MethodPost, c.ExpandPath("network"), d, nil)
|
|
if err != nil {
|
|
return fmt.Errorf(
|
|
"failed to create network interface \"%s\" for node \"%s\": %w",
|
|
d.Iface, c.NodeName, err,
|
|
)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// ReloadNetworkConfiguration reloads the network configuration for a specific node.
|
|
func (c *Client) ReloadNetworkConfiguration(ctx context.Context) error {
|
|
resBody := &ReloadNetworkResponseBody{}
|
|
|
|
err := c.DoRequest(ctx, http.MethodPut, c.ExpandPath("network"), nil, resBody)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to reload network configuration for node \"%s\": %w", c.NodeName, err)
|
|
}
|
|
|
|
if resBody.Data == nil {
|
|
return api.ErrNoDataObjectInResponse
|
|
}
|
|
|
|
err = c.Tasks().WaitForTask(ctx, *resBody.Data, networkReloadTimeoutSec, 1)
|
|
if err == nil {
|
|
return nil
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// RevertNetworkConfiguration reverts the network configuration changes for a specific node.
|
|
func (c *Client) RevertNetworkConfiguration(ctx context.Context) error {
|
|
err := c.DoRequest(ctx, http.MethodDelete, c.ExpandPath("network"), nil, nil)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to revert network configuration for node \"%s\": %w", c.NodeName, err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// UpdateNetworkInterface updates a network interface for a specific node.
|
|
func (c *Client) UpdateNetworkInterface(
|
|
ctx context.Context,
|
|
iface string,
|
|
d *NetworkInterfaceCreateUpdateRequestBody,
|
|
) error {
|
|
err := c.DoRequest(
|
|
ctx,
|
|
http.MethodPut,
|
|
c.ExpandPath(fmt.Sprintf("network/%s", url.PathEscape(iface))),
|
|
d,
|
|
nil,
|
|
)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to update network interface \"%s\" for node \"%s\": %w",
|
|
d.Iface, c.NodeName, err,
|
|
)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// DeleteNetworkInterface deletes a network interface configuration for a specific node.
|
|
func (c *Client) DeleteNetworkInterface(ctx context.Context, iface string) error {
|
|
err := c.DoRequest(
|
|
ctx,
|
|
http.MethodDelete,
|
|
c.ExpandPath(fmt.Sprintf("network/%s", url.PathEscape(iface))),
|
|
nil,
|
|
nil,
|
|
)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to delete network interface \"%s\" for node \"%s\": %w",
|
|
iface, c.NodeName, err,
|
|
)
|
|
}
|
|
|
|
return nil
|
|
}
|