2023-05-03 15:07:39 -05:00
|
|
|
// 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 folder
|
|
|
|
|
2023-05-24 03:47:25 -05:00
|
|
|
// TODO:
|
|
|
|
// common metadata will soon support setting the parent folder in the metadata
|
2023-05-03 15:07:39 -05:00
|
|
|
type Spec struct {
|
|
|
|
// Description of the folder.
|
|
|
|
Description *string `json:"description,omitempty"`
|
|
|
|
|
|
|
|
// Folder title
|
|
|
|
Title string `json:"title"`
|
|
|
|
|
|
|
|
// Unique folder id. (will be k8s name)
|
|
|
|
Uid string `json:"uid"`
|
|
|
|
}
|