29 lines
761 B
Go
29 lines
761 B
Go
// Code generated from ace.jar fields *.json files
|
|
// DO NOT EDIT.
|
|
|
|
package unifi
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
func (c *Client) ListDpiGroup(ctx context.Context, site string) ([]DpiGroup, error) {
|
|
return c.listDpiGroup(ctx, site)
|
|
}
|
|
|
|
func (c *Client) GetDpiGroup(ctx context.Context, site, id string) (*DpiGroup, error) {
|
|
return c.getDpiGroup(ctx, site, id)
|
|
}
|
|
|
|
func (c *Client) DeleteDpiGroup(ctx context.Context, site, id string) error {
|
|
return c.deleteDpiGroup(ctx, site, id)
|
|
}
|
|
|
|
func (c *Client) CreateDpiGroup(ctx context.Context, site string, d *DpiGroup) (*DpiGroup, error) {
|
|
return c.createDpiGroup(ctx, site, d)
|
|
}
|
|
|
|
func (c *Client) UpdateDpiGroup(ctx context.Context, site string, d *DpiGroup) (*DpiGroup, error) {
|
|
return c.updateDpiGroup(ctx, site, d)
|
|
}
|