mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 10:20:29 -06:00
177 lines
5.0 KiB
Go
177 lines
5.0 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 *DataPlaneService) DeepCopyInto(out *DataPlaneService) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
|
|
in.Spec.DeepCopyInto(&out.Spec)
|
|
in.Status.DeepCopyInto(&out.Status)
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataPlaneService.
|
|
func (in *DataPlaneService) DeepCopy() *DataPlaneService {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(DataPlaneService)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *DataPlaneService) 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 *DataPlaneServiceCondition) DeepCopyInto(out *DataPlaneServiceCondition) {
|
|
*out = *in
|
|
in.LastTransitionTime.DeepCopyInto(&out.LastTransitionTime)
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataPlaneServiceCondition.
|
|
func (in *DataPlaneServiceCondition) DeepCopy() *DataPlaneServiceCondition {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(DataPlaneServiceCondition)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *DataPlaneServiceList) DeepCopyInto(out *DataPlaneServiceList) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.ListMeta.DeepCopyInto(&out.ListMeta)
|
|
if in.Items != nil {
|
|
in, out := &in.Items, &out.Items
|
|
*out = make([]DataPlaneService, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataPlaneServiceList.
|
|
func (in *DataPlaneServiceList) DeepCopy() *DataPlaneServiceList {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(DataPlaneServiceList)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
|
|
func (in *DataPlaneServiceList) 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 *DataPlaneServiceSpec) DeepCopyInto(out *DataPlaneServiceSpec) {
|
|
*out = *in
|
|
if in.Services != nil {
|
|
in, out := &in.Services, &out.Services
|
|
*out = make([]Service, len(*in))
|
|
copy(*out, *in)
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataPlaneServiceSpec.
|
|
func (in *DataPlaneServiceSpec) DeepCopy() *DataPlaneServiceSpec {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(DataPlaneServiceSpec)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *DataPlaneServiceStatus) DeepCopyInto(out *DataPlaneServiceStatus) {
|
|
*out = *in
|
|
if in.Conditions != nil {
|
|
in, out := &in.Conditions, &out.Conditions
|
|
*out = make([]DataPlaneServiceCondition, len(*in))
|
|
for i := range *in {
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataPlaneServiceStatus.
|
|
func (in *DataPlaneServiceStatus) DeepCopy() *DataPlaneServiceStatus {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(DataPlaneServiceStatus)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
func (in *QueryDataResponse) DeepCopyInto(out *QueryDataResponse) {
|
|
*out = *in
|
|
out.TypeMeta = in.TypeMeta
|
|
in.QueryDataResponse.DeepCopyInto(&out.QueryDataResponse)
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new QueryDataResponse.
|
|
func (in *QueryDataResponse) DeepCopy() *QueryDataResponse {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(QueryDataResponse)
|
|
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 *Service) DeepCopyInto(out *Service) {
|
|
*out = *in
|
|
return
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Service.
|
|
func (in *Service) DeepCopy() *Service {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(Service)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|