mirror of
https://github.com/status-im/consul.git
synced 2025-01-11 06:16:08 +00:00
d9432f9032
* Add mesh_configuration.proto * Run make proto * Add cluster scope to MeshConfiguration * Run make proto
28 lines
883 B
Go
28 lines
883 B
Go
// Code generated by protoc-gen-deepcopy. DO NOT EDIT.
|
|
package meshv2beta1
|
|
|
|
import (
|
|
proto "google.golang.org/protobuf/proto"
|
|
)
|
|
|
|
// DeepCopyInto supports using MeshConfiguration within kubernetes types, where deepcopy-gen is used.
|
|
func (in *MeshConfiguration) DeepCopyInto(out *MeshConfiguration) {
|
|
proto.Reset(out)
|
|
proto.Merge(out, proto.Clone(in))
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MeshConfiguration. Required by controller-gen.
|
|
func (in *MeshConfiguration) DeepCopy() *MeshConfiguration {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(MeshConfiguration)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new MeshConfiguration. Required by controller-gen.
|
|
func (in *MeshConfiguration) DeepCopyInterface() interface{} {
|
|
return in.DeepCopy()
|
|
}
|