mirror of
https://github.com/grafana/grafana.git
synced 2025-01-27 16:57:14 -06:00
ca1f79b9ba
Co-authored-by: sam boyer <sdboyer@grafana.com>
32 lines
851 B
Go
32 lines
851 B
Go
// Code generated - EDITING IS FUTILE. DO NOT EDIT.
|
|
//
|
|
// Generated by:
|
|
// kinds/gen.go
|
|
// Using jennies:
|
|
// GoResourceTypes
|
|
//
|
|
// Run 'make gen-cue' from repository root to regenerate.
|
|
|
|
package publicdashboard
|
|
|
|
// Spec defines model for Spec.
|
|
type Spec struct {
|
|
// Unique public access token
|
|
AccessToken *string `json:"accessToken,omitempty"`
|
|
|
|
// Flag that indicates if annotations are enabled
|
|
AnnotationsEnabled bool `json:"annotationsEnabled"`
|
|
|
|
// Dashboard unique identifier referenced by this public dashboard
|
|
DashboardUid string `json:"dashboardUid"`
|
|
|
|
// Flag that indicates if the public dashboard is enabled
|
|
IsEnabled bool `json:"isEnabled"`
|
|
|
|
// Flag that indicates if the time range picker is enabled
|
|
TimeSelectionEnabled bool `json:"timeSelectionEnabled"`
|
|
|
|
// Unique public dashboard identifier
|
|
Uid string `json:"uid"`
|
|
}
|