mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
35 lines
939 B
Go
35 lines
939 B
Go
// Code generated - EDITING IS FUTILE. DO NOT EDIT.
|
|
//
|
|
// Generated by:
|
|
// kinds/gen.go
|
|
// Using jennies:
|
|
// CRDTypesJenny
|
|
//
|
|
// Run 'make gen-cue' from repository root to regenerate.
|
|
|
|
package crd
|
|
|
|
import (
|
|
_ "embed"
|
|
|
|
"github.com/grafana/grafana/pkg/kinds/publicdashboard"
|
|
"github.com/grafana/grafana/pkg/kindsys/k8ssys"
|
|
)
|
|
|
|
// The CRD YAML representation of the PublicDashboard kind.
|
|
//
|
|
//go:embed publicdashboard.crd.yml
|
|
var CRDYaml []byte
|
|
|
|
// PublicDashboard is the Go CRD representation of a single PublicDashboard object.
|
|
// It implements [runtime.Object], and is used in k8s scheme construction.
|
|
type PublicDashboard struct {
|
|
k8ssys.Base[publicdashboard.PublicDashboard]
|
|
}
|
|
|
|
// PublicDashboardList is the Go CRD representation of a list PublicDashboard objects.
|
|
// It implements [runtime.Object], and is used in k8s scheme construction.
|
|
type PublicDashboardList struct {
|
|
k8ssys.ListBase[publicdashboard.PublicDashboard]
|
|
}
|