1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00
Chris Cummer 3d4059de02 go mod vendor update
Signed-off-by: Chris Cummer <chriscummer@me.com>
2019-12-14 08:52:34 -08:00

88 lines
3.0 KiB
Go

/*
* Datadog API for Go
*
* Please see the included LICENSE file for licensing information.
*
* Copyright 2019 by authors and contributors.
*/
package datadog
import (
"fmt"
)
// Board represents a user created dashboard. This is the full dashboard
// struct when we load a dashboard in detail.
type Board struct {
Title *string `json:"title"`
Widgets []BoardWidget `json:"widgets"`
LayoutType *string `json:"layout_type"`
Id *string `json:"id,omitempty"`
Description *string `json:"description,omitempty"`
TemplateVariables []TemplateVariable `json:"template_variables,omitempty"`
IsReadOnly *bool `json:"is_read_only,omitempty"`
NotifyList []string `json:"notify_list,omitempty"`
AuthorHandle *string `json:"author_handle,omitempty"`
Url *string `json:"url,omitempty"`
CreatedAt *string `json:"created_at,omitempty"`
ModifiedAt *string `json:"modified_at,omitempty"`
}
// BoardLite represents a simplify dashboard (without widgets, notify list, ...)
// It's used when we load all boards.
type BoardLite struct {
Title *string `json:"title,omitempty"`
Description *string `json:"description,omitempty"`
LayoutType *string `json:"layout_type,omitempty"`
Id *string `json:"id,omitempty"`
Url *string `json:"url,omitempty"`
AuthorHandle *string `json:"author_handle,omitempty"`
IsReadOnly *bool `json:"is_read_only,omitempty"`
CreatedAt *string `json:"created_at,omitempty"`
ModifiedAt *string `json:"modified_at,omitempty"`
}
type reqGetBoards struct {
Boards []BoardLite `json:"dashboards,omitempty"`
}
// GetBoard returns a single dashboard created on this account.
func (client *Client) GetBoard(id string) (*Board, error) {
var board Board
if err := client.doJsonRequest("GET", fmt.Sprintf("/v1/dashboard/%s", id), nil, &board); err != nil {
return nil, err
}
return &board, nil
}
// DeleteBoard deletes a dashboard by the identifier.
func (client *Client) DeleteBoard(id string) error {
return client.doJsonRequest("DELETE", fmt.Sprintf("/v1/dashboard/%s", id), nil, nil)
}
// CreateBoard creates a new dashboard when given a Board struct.
func (client *Client) CreateBoard(board *Board) (*Board, error) {
var createdBoard Board
if err := client.doJsonRequest("POST", "/v1/dashboard", board, &createdBoard); err != nil {
return nil, err
}
return &createdBoard, nil
}
// UpdateBoard takes a Board struct and persists it back to the server.
// Use this if you've updated your local and need to push it back.
func (client *Client) UpdateBoard(board *Board) error {
return client.doJsonRequest("PUT", fmt.Sprintf("/v1/dashboard/%s", *board.Id), board, nil)
}
// GetBoards returns all Dashboards.
func (client *Client) GetBoards() ([]BoardLite, error) {
var out reqGetBoards
if err := client.doJsonRequest("GET", "/v1/dashboard", nil, &out); err != nil {
return nil, err
}
return out.Boards, nil
}