mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
31 lines
549 B
CUE
31 lines
549 B
CUE
package kind
|
|
|
|
name: "Folder"
|
|
maturity: "merged"
|
|
description: "A folder is a collection of resources that are grouped together and can share permissions."
|
|
|
|
lineage: seqs: [
|
|
{
|
|
schemas: [
|
|
//0.0
|
|
{
|
|
|
|
spec: {
|
|
// Unique folder id. (will be k8s name)
|
|
uid: string
|
|
|
|
// Folder title
|
|
title: string
|
|
|
|
// Description of the folder.
|
|
description?: string
|
|
} @cuetsy(kind="interface")
|
|
//
|
|
// TODO:
|
|
// common metadata will soon support setting the parent folder in the metadata
|
|
//
|
|
},
|
|
]
|
|
},
|
|
]
|