2023-01-26 07:51:00 -06:00
|
|
|
package kind
|
|
|
|
|
2023-01-31 16:54:22 -06:00
|
|
|
name: "PublicDashboard"
|
|
|
|
maturity: "merged"
|
|
|
|
description: "Public dashboard configuration"
|
2023-01-26 07:51:00 -06:00
|
|
|
|
2023-05-24 03:47:25 -05:00
|
|
|
lineage: schemas: [{
|
|
|
|
version: [0, 0]
|
|
|
|
schema: {
|
|
|
|
spec: {
|
|
|
|
// 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
|
|
|
|
} @cuetsy(kind="interface")
|
|
|
|
}
|
|
|
|
}]
|