mirror of https://github.com/hashicorp/consul
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
2.6 KiB
70 lines
2.6 KiB
1 year ago
|
// Code generated by protoc-gen-deepcopy. DO NOT EDIT.
|
||
10 months ago
|
package multiclusterv2
|
||
1 year ago
|
|
||
|
import (
|
||
|
proto "google.golang.org/protobuf/proto"
|
||
|
)
|
||
|
|
||
|
// DeepCopyInto supports using ComputedExportedServices within kubernetes types, where deepcopy-gen is used.
|
||
|
func (in *ComputedExportedServices) DeepCopyInto(out *ComputedExportedServices) {
|
||
|
proto.Reset(out)
|
||
|
proto.Merge(out, proto.Clone(in))
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ComputedExportedServices. Required by controller-gen.
|
||
|
func (in *ComputedExportedServices) DeepCopy() *ComputedExportedServices {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(ComputedExportedServices)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new ComputedExportedServices. Required by controller-gen.
|
||
|
func (in *ComputedExportedServices) DeepCopyInterface() interface{} {
|
||
|
return in.DeepCopy()
|
||
|
}
|
||
|
|
||
|
// DeepCopyInto supports using ComputedExportedService within kubernetes types, where deepcopy-gen is used.
|
||
|
func (in *ComputedExportedService) DeepCopyInto(out *ComputedExportedService) {
|
||
|
proto.Reset(out)
|
||
|
proto.Merge(out, proto.Clone(in))
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ComputedExportedService. Required by controller-gen.
|
||
|
func (in *ComputedExportedService) DeepCopy() *ComputedExportedService {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(ComputedExportedService)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new ComputedExportedService. Required by controller-gen.
|
||
|
func (in *ComputedExportedService) DeepCopyInterface() interface{} {
|
||
|
return in.DeepCopy()
|
||
|
}
|
||
|
|
||
11 months ago
|
// DeepCopyInto supports using ComputedExportedServiceConsumer within kubernetes types, where deepcopy-gen is used.
|
||
|
func (in *ComputedExportedServiceConsumer) DeepCopyInto(out *ComputedExportedServiceConsumer) {
|
||
1 year ago
|
proto.Reset(out)
|
||
|
proto.Merge(out, proto.Clone(in))
|
||
|
}
|
||
|
|
||
11 months ago
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ComputedExportedServiceConsumer. Required by controller-gen.
|
||
|
func (in *ComputedExportedServiceConsumer) DeepCopy() *ComputedExportedServiceConsumer {
|
||
1 year ago
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
11 months ago
|
out := new(ComputedExportedServiceConsumer)
|
||
1 year ago
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
11 months ago
|
// DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new ComputedExportedServiceConsumer. Required by controller-gen.
|
||
|
func (in *ComputedExportedServiceConsumer) DeepCopyInterface() interface{} {
|
||
1 year ago
|
return in.DeepCopy()
|
||
|
}
|