mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 08:05:43 -06:00
28 lines
650 B
CUE
28 lines
650 B
CUE
package kind
|
|
|
|
name: "PublicDashboard"
|
|
maturity: "merged"
|
|
description: "Public dashboard configuration"
|
|
|
|
lineage: seqs: [
|
|
{
|
|
schemas: [
|
|
// 0.0
|
|
{
|
|
// Unique public dashboard identifier
|
|
uid: string
|
|
// Dashboard unique identifier referenced by this public dashboard
|
|
dashboardUid: string
|
|
// Unique public access token
|
|
accessToken?: string
|
|
// Flag that indicates if the public dashboard is enabled
|
|
isEnabled: bool
|
|
// Flag that indicates if annotations are enabled
|
|
annotationsEnabled: bool
|
|
// Flag that indicates if the time range picker is enabled
|
|
timeSelectionEnabled: bool
|
|
},
|
|
]
|
|
},
|
|
]
|