mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-07-05 13:33:58 +00:00
* chore(deps): update golangci/golangci-lint (v2.1.6 → v2.2.1) | datasource | package | from | to | | --------------- | ---------------------- | ------ | ------ | | github-releases | golangci/golangci-lint | v2.1.6 | v2.2.1 | * chore: update rules & run linter Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com> --------- Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com>
52 lines
1.2 KiB
Go
52 lines
1.2 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 vms
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/bpg/terraform-provider-proxmox/proxmox/api"
|
|
"github.com/bpg/terraform-provider-proxmox/proxmox/firewall"
|
|
"github.com/bpg/terraform-provider-proxmox/proxmox/nodes/tasks"
|
|
vmfirewall "github.com/bpg/terraform-provider-proxmox/proxmox/nodes/vms/firewall"
|
|
)
|
|
|
|
// Client is an interface for accessing the Proxmox VM API.
|
|
type Client struct {
|
|
api.Client
|
|
|
|
VMID int
|
|
}
|
|
|
|
func (c *Client) basePath() string {
|
|
return c.Client.ExpandPath("qemu")
|
|
}
|
|
|
|
// ExpandPath expands a relative path to a full VM API path.
|
|
func (c *Client) ExpandPath(path string) string {
|
|
ep := fmt.Sprintf("%s/%d", c.basePath(), c.VMID)
|
|
if path != "" {
|
|
ep = fmt.Sprintf("%s/%s", ep, path)
|
|
}
|
|
|
|
return ep
|
|
}
|
|
|
|
// Tasks returns a client for managing VM tasks.
|
|
func (c *Client) Tasks() *tasks.Client {
|
|
return &tasks.Client{
|
|
Client: c.Client,
|
|
}
|
|
}
|
|
|
|
// Firewall returns a client for managing the VM firewall.
|
|
func (c *Client) Firewall() firewall.API {
|
|
return &vmfirewall.Client{
|
|
Client: firewall.Client{Client: c},
|
|
}
|
|
}
|