mirror of
https://github.com/grafana/grafana.git
synced 2025-08-02 17:52:24 +08:00
141 lines
3.9 KiB
Go
141 lines
3.9 KiB
Go
//go:build !ignore_autogenerated
|
|
// +build !ignore_autogenerated
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
// Code generated by deepcopy-gen. DO NOT EDIT.
|
|
|
|
package v0alpha1
|
|
|
|
import (
|
|
runtime "k8s.io/apimachinery/pkg/runtime"
|
|
)
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *DataSourceApiServer) DeepCopyInto(out *DataSourceApiServer) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
if in.AliasIDs != nil {
|
|
in, out := &in.AliasIDs, &out.AliasIDs
|
|
*out = make([]string, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataSourceApiServer.
|
|
func (in *DataSourceApiServer) DeepCopy() *DataSourceApiServer {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(DataSourceApiServer)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *DataSourceApiServer) DeepCopyObject() runtime.Object {
|
|
if c := in.DeepCopy(); c != nil {
|
|
return c
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *DataSourceApiServerList) DeepCopyInto(out *DataSourceApiServerList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]DataSourceApiServer, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataSourceApiServerList.
|
|
func (in *DataSourceApiServerList) DeepCopy() *DataSourceApiServerList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(DataSourceApiServerList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *DataSourceApiServerList) DeepCopyObject() runtime.Object {
|
|
if c := in.DeepCopy(); c != nil {
|
|
return c
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *DataSourceRef) DeepCopyInto(out *DataSourceRef) {
|
|
*out = *in
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataSourceRef.
|
|
func (in *DataSourceRef) DeepCopy() *DataSourceRef {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(DataSourceRef)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *GenericQueryRequest) DeepCopyInto(out *GenericQueryRequest) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
if in.Queries != nil {
|
|
in, out := &in.Queries, &out.Queries
|
|
*out = make([]GenericDataQuery, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GenericQueryRequest.
|
|
func (in *GenericQueryRequest) DeepCopy() *GenericQueryRequest {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(GenericQueryRequest)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *QueryDataResponse) DeepCopyObject() runtime.Object {
|
|
if c := in.DeepCopy(); c != nil {
|
|
return c
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *TimeRange) DeepCopyInto(out *TimeRange) {
|
|
*out = *in
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TimeRange.
|
|
func (in *TimeRange) DeepCopy() *TimeRange {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(TimeRange)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|