mirror of https://github.com/status-im/consul.git
49 lines
1.6 KiB
Go
49 lines
1.6 KiB
Go
// Code generated by protoc-gen-deepcopy. DO NOT EDIT.
|
|
package meshv2beta1
|
|
|
|
import (
|
|
proto "google.golang.org/protobuf/proto"
|
|
)
|
|
|
|
// DeepCopyInto supports using GatewayClass within kubernetes types, where deepcopy-gen is used.
|
|
func (in *GatewayClass) DeepCopyInto(out *GatewayClass) {
|
|
proto.Reset(out)
|
|
proto.Merge(out, proto.Clone(in))
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GatewayClass. Required by controller-gen.
|
|
func (in *GatewayClass) DeepCopy() *GatewayClass {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(GatewayClass)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new GatewayClass. Required by controller-gen.
|
|
func (in *GatewayClass) DeepCopyInterface() interface{} {
|
|
return in.DeepCopy()
|
|
}
|
|
|
|
// DeepCopyInto supports using ParametersReference within kubernetes types, where deepcopy-gen is used.
|
|
func (in *ParametersReference) DeepCopyInto(out *ParametersReference) {
|
|
proto.Reset(out)
|
|
proto.Merge(out, proto.Clone(in))
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ParametersReference. Required by controller-gen.
|
|
func (in *ParametersReference) DeepCopy() *ParametersReference {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ParametersReference)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new ParametersReference. Required by controller-gen.
|
|
func (in *ParametersReference) DeepCopyInterface() interface{} {
|
|
return in.DeepCopy()
|
|
}
|