mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 21:35:52 +00:00
c2a0d4f9ca
* Override Marshal/UnmarshalJSON for proto-public types * Generate Deepcopy() for proto-public types for Kubernetes CRDs.
28 lines
974 B
Go
28 lines
974 B
Go
// Code generated by protoc-gen-deepcopy. DO NOT EDIT.
|
|
package authv2beta1
|
|
|
|
import (
|
|
proto "google.golang.org/protobuf/proto"
|
|
)
|
|
|
|
// DeepCopyInto supports using ComputedTrafficPermissions within kubernetes types, where deepcopy-gen is used.
|
|
func (in *ComputedTrafficPermissions) DeepCopyInto(out *ComputedTrafficPermissions) {
|
|
p := proto.Clone(in).(*ComputedTrafficPermissions)
|
|
*out = *p
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ComputedTrafficPermissions. Required by controller-gen.
|
|
func (in *ComputedTrafficPermissions) DeepCopy() *ComputedTrafficPermissions {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(ComputedTrafficPermissions)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new ComputedTrafficPermissions. Required by controller-gen.
|
|
func (in *ComputedTrafficPermissions) DeepCopyInterface() interface{} {
|
|
return in.DeepCopy()
|
|
}
|