Versions in this module Expand all Collapse all v0 v0.0.1 Jun 19, 2019 Changes in this version + const NO_ID + type Client struct + func NewClient(address string) *Client + func (client *Client) DeleteAlertNotification(id string) error + func (client *Client) DeleteDashboard(id string) error + func (client *Client) DeleteDataSource(id string) error + func (client *Client) DeleteFolder(id string) error + func (client *Client) GetAllAlertNotificationIds() ([]string, error) + func (client *Client) GetAllDashboardIds() ([]string, error) + func (client *Client) GetAllDataSourceIds() ([]string, error) + func (client *Client) GetAllFolderIds() ([]string, error) + func (client *Client) PostAlertNotification(alertNotificationJson string, id string) (string, error) + func (client *Client) PostDashboard(dashboardJSON string, uid string) (string, error) + func (client *Client) PostDashboardWithFolder(dashboardJSON string, folderId string, uid string) (string, error) + func (client *Client) PostDataSource(dataSourceJson string, id string) (string, error) + func (client *Client) PostFolder(folderJson string, id string) (string, string, error) + type Interface interface + DeleteAlertNotification func(string) error + DeleteDashboard func(string) error + DeleteDataSource func(string) error + DeleteFolder func(string) error + GetAllAlertNotificationIds func() ([]string, error) + GetAllDashboardIds func() ([]string, error) + GetAllDataSourceIds func() ([]string, error) + GetAllFolderIds func() ([]string, error) + PostAlertNotification func(string, string) (string, error) + PostDashboard func(string, string) (string, error) + PostDashboardWithFolder func(string, string, string) (string, error) + PostDataSource func(string, string) (string, error) + PostFolder func(string, string) (string, string, error)