8272edda96
* Logs Drilldown(app-platform): add LogsDrilldownDefaultColumns api --------- Co-authored-by: L2D2Grafana <liza.detrick@grafana.com> Co-authored-by: Austin Pond <austin.pond@grafana.com>
19 lines
441 B
Go
Generated
19 lines
441 B
Go
Generated
// Code generated - EDITING IS FUTILE. DO NOT EDIT.
|
|
|
|
package v1alpha1
|
|
|
|
// +k8s:openapi-gen=true
|
|
type Spec struct {
|
|
DefaultFields []string `json:"defaultFields"`
|
|
PrettifyJSON bool `json:"prettifyJSON"`
|
|
WrapLogMessage bool `json:"wrapLogMessage"`
|
|
InterceptDismissed bool `json:"interceptDismissed"`
|
|
}
|
|
|
|
// NewSpec creates a new Spec object.
|
|
func NewSpec() *Spec {
|
|
return &Spec{
|
|
DefaultFields: []string{},
|
|
}
|
|
}
|