Added static DNS record

This commit is contained in:
appkins
2024-07-13 04:52:27 -05:00
parent 85af09f5e0
commit e99c608dec
62 changed files with 1406 additions and 11 deletions

28
unifi/hotspot_2_conf.go Normal file
View File

@@ -0,0 +1,28 @@
// Code generated from ace.jar fields *.json files
// DO NOT EDIT.
package unifi
import (
"context"
)
func (c *Client) ListHotspot2Conf(ctx context.Context, site string) ([]Hotspot2Conf, error) {
return c.listHotspot2Conf(ctx, site)
}
func (c *Client) GetHotspot2Conf(ctx context.Context, site, id string) (*Hotspot2Conf, error) {
return c.getHotspot2Conf(ctx, site, id)
}
func (c *Client) DeleteHotspot2Conf(ctx context.Context, site, id string) error {
return c.deleteHotspot2Conf(ctx, site, id)
}
func (c *Client) CreateHotspot2Conf(ctx context.Context, site string, d *Hotspot2Conf) (*Hotspot2Conf, error) {
return c.createHotspot2Conf(ctx, site, d)
}
func (c *Client) UpdateHotspot2Conf(ctx context.Context, site string, d *Hotspot2Conf) (*Hotspot2Conf, error) {
return c.updateHotspot2Conf(ctx, site, d)
}