mirror of
https://github.com/alibaba/higress.git
synced 2026-02-06 23:21:08 +08:00
91 lines
2.7 KiB
Go
91 lines
2.7 KiB
Go
// Code generated by protoc-gen-deepcopy. DO NOT EDIT.
|
|
package v1alpha1
|
|
|
|
import (
|
|
proto "google.golang.org/protobuf/proto"
|
|
)
|
|
|
|
// DeepCopyInto supports using WasmPlugin within kubernetes types, where deepcopy-gen is used.
|
|
func (in *WasmPlugin) DeepCopyInto(out *WasmPlugin) {
|
|
p := proto.Clone(in).(*WasmPlugin)
|
|
*out = *p
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WasmPlugin. Required by controller-gen.
|
|
func (in *WasmPlugin) DeepCopy() *WasmPlugin {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(WasmPlugin)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new WasmPlugin. Required by controller-gen.
|
|
func (in *WasmPlugin) DeepCopyInterface() interface{} {
|
|
return in.DeepCopy()
|
|
}
|
|
|
|
// DeepCopyInto supports using MatchRule within kubernetes types, where deepcopy-gen is used.
|
|
func (in *MatchRule) DeepCopyInto(out *MatchRule) {
|
|
p := proto.Clone(in).(*MatchRule)
|
|
*out = *p
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MatchRule. Required by controller-gen.
|
|
func (in *MatchRule) DeepCopy() *MatchRule {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(MatchRule)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new MatchRule. Required by controller-gen.
|
|
func (in *MatchRule) DeepCopyInterface() interface{} {
|
|
return in.DeepCopy()
|
|
}
|
|
|
|
// DeepCopyInto supports using VmConfig within kubernetes types, where deepcopy-gen is used.
|
|
func (in *VmConfig) DeepCopyInto(out *VmConfig) {
|
|
p := proto.Clone(in).(*VmConfig)
|
|
*out = *p
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VmConfig. Required by controller-gen.
|
|
func (in *VmConfig) DeepCopy() *VmConfig {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(VmConfig)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new VmConfig. Required by controller-gen.
|
|
func (in *VmConfig) DeepCopyInterface() interface{} {
|
|
return in.DeepCopy()
|
|
}
|
|
|
|
// DeepCopyInto supports using EnvVar within kubernetes types, where deepcopy-gen is used.
|
|
func (in *EnvVar) DeepCopyInto(out *EnvVar) {
|
|
p := proto.Clone(in).(*EnvVar)
|
|
*out = *p
|
|
}
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EnvVar. Required by controller-gen.
|
|
func (in *EnvVar) DeepCopy() *EnvVar {
|
|
if in == nil {
|
|
return nil
|
|
}
|
|
out := new(EnvVar)
|
|
in.DeepCopyInto(out)
|
|
return out
|
|
}
|
|
|
|
// DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new EnvVar. Required by controller-gen.
|
|
func (in *EnvVar) DeepCopyInterface() interface{} {
|
|
return in.DeepCopy()
|
|
}
|