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