Schema: Create PublicDashboard core kind (#62155)

This commit is contained in:
Ezequiel Victorero
2023-01-26 10:51:00 -03:00
committed by GitHub
parent e8b8a9e276
commit 354f6d9e23
8 changed files with 285 additions and 8 deletions

View File

@@ -0,0 +1,26 @@
package kind
name: "PublicDashboard"
maturity: "merged"
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
},
]
},
]