Files
go-unifi/unifi/dpi_app.go
2024-07-13 04:52:27 -05:00

29 lines
729 B
Go

// Code generated from ace.jar fields *.json files
// DO NOT EDIT.
package unifi
import (
"context"
)
func (c *Client) ListDpiApp(ctx context.Context, site string) ([]DpiApp, error) {
return c.listDpiApp(ctx, site)
}
func (c *Client) GetDpiApp(ctx context.Context, site, id string) (*DpiApp, error) {
return c.getDpiApp(ctx, site, id)
}
func (c *Client) DeleteDpiApp(ctx context.Context, site, id string) error {
return c.deleteDpiApp(ctx, site, id)
}
func (c *Client) CreateDpiApp(ctx context.Context, site string, d *DpiApp) (*DpiApp, error) {
return c.createDpiApp(ctx, site, d)
}
func (c *Client) UpdateDpiApp(ctx context.Context, site string, d *DpiApp) (*DpiApp, error) {
return c.updateDpiApp(ctx, site, d)
}