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