2021-09-02 12:40:08 +00:00
|
|
|
//go:build !ignore_autogenerated
|
2019-03-14 14:56:06 +00:00
|
|
|
// +build !ignore_autogenerated
|
|
|
|
|
|
|
|
/*
|
|
|
|
The MIT License (MIT)
|
|
|
|
|
2022-01-06 10:34:05 +00:00
|
|
|
Copyright (c) 2016-2020 Containous SAS; 2020-2022 Traefik Labs
|
2019-03-14 14:56:06 +00:00
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Code generated by deepcopy-gen. DO NOT EDIT.
|
|
|
|
|
2019-07-10 07:26:04 +00:00
|
|
|
package dynamic
|
2019-03-14 14:56:06 +00:00
|
|
|
|
2019-07-09 13:18:04 +00:00
|
|
|
import (
|
2020-09-16 13:46:04 +00:00
|
|
|
tls "github.com/traefik/traefik/v2/pkg/tls"
|
|
|
|
types "github.com/traefik/traefik/v2/pkg/types"
|
2019-07-09 13:18:04 +00:00
|
|
|
)
|
|
|
|
|
2019-03-14 14:56:06 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *AddPrefix) DeepCopyInto(out *AddPrefix) {
|
|
|
|
*out = *in
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AddPrefix.
|
|
|
|
func (in *AddPrefix) DeepCopy() *AddPrefix {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(AddPrefix)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *BasicAuth) DeepCopyInto(out *BasicAuth) {
|
|
|
|
*out = *in
|
|
|
|
if in.Users != nil {
|
|
|
|
in, out := &in.Users, &out.Users
|
|
|
|
*out = make(Users, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BasicAuth.
|
|
|
|
func (in *BasicAuth) DeepCopy() *BasicAuth {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(BasicAuth)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *Buffering) DeepCopyInto(out *Buffering) {
|
|
|
|
*out = *in
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Buffering.
|
|
|
|
func (in *Buffering) DeepCopy() *Buffering {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(Buffering)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *Chain) DeepCopyInto(out *Chain) {
|
|
|
|
*out = *in
|
|
|
|
if in.Middlewares != nil {
|
|
|
|
in, out := &in.Middlewares, &out.Middlewares
|
|
|
|
*out = make([]string, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Chain.
|
|
|
|
func (in *Chain) DeepCopy() *Chain {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(Chain)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *CircuitBreaker) DeepCopyInto(out *CircuitBreaker) {
|
|
|
|
*out = *in
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CircuitBreaker.
|
|
|
|
func (in *CircuitBreaker) DeepCopy() *CircuitBreaker {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(CircuitBreaker)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *Compress) DeepCopyInto(out *Compress) {
|
|
|
|
*out = *in
|
2019-10-31 10:36:05 +00:00
|
|
|
if in.ExcludedContentTypes != nil {
|
|
|
|
in, out := &in.ExcludedContentTypes, &out.ExcludedContentTypes
|
|
|
|
*out = make([]string, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
2019-03-14 14:56:06 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Compress.
|
|
|
|
func (in *Compress) DeepCopy() *Compress {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(Compress)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2019-07-09 13:18:04 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *Configuration) DeepCopyInto(out *Configuration) {
|
|
|
|
*out = *in
|
|
|
|
if in.HTTP != nil {
|
|
|
|
in, out := &in.HTTP, &out.HTTP
|
|
|
|
*out = new(HTTPConfiguration)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
|
|
|
if in.TCP != nil {
|
|
|
|
in, out := &in.TCP, &out.TCP
|
|
|
|
*out = new(TCPConfiguration)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
2020-02-12 14:40:06 +00:00
|
|
|
if in.UDP != nil {
|
|
|
|
in, out := &in.UDP, &out.UDP
|
|
|
|
*out = new(UDPConfiguration)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
2019-07-09 13:18:04 +00:00
|
|
|
if in.TLS != nil {
|
|
|
|
in, out := &in.TLS, &out.TLS
|
|
|
|
*out = new(TLSConfiguration)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Configuration.
|
|
|
|
func (in *Configuration) DeepCopy() *Configuration {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(Configuration)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in Configurations) DeepCopyInto(out *Configurations) {
|
|
|
|
{
|
|
|
|
in := &in
|
|
|
|
*out = make(Configurations, len(*in))
|
|
|
|
for key, val := range *in {
|
|
|
|
var outVal *Configuration
|
|
|
|
if val == nil {
|
|
|
|
(*out)[key] = nil
|
|
|
|
} else {
|
|
|
|
in, out := &val, &outVal
|
|
|
|
*out = new(Configuration)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
|
|
|
(*out)[key] = outVal
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Configurations.
|
|
|
|
func (in Configurations) DeepCopy() Configurations {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(Configurations)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return *out
|
|
|
|
}
|
|
|
|
|
2020-01-21 17:06:03 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *ContentType) DeepCopyInto(out *ContentType) {
|
|
|
|
*out = *in
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ContentType.
|
|
|
|
func (in *ContentType) DeepCopy() *ContentType {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(ContentType)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2019-08-26 08:30:05 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *Cookie) DeepCopyInto(out *Cookie) {
|
|
|
|
*out = *in
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Cookie.
|
|
|
|
func (in *Cookie) DeepCopy() *Cookie {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(Cookie)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2019-03-14 14:56:06 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *DigestAuth) DeepCopyInto(out *DigestAuth) {
|
|
|
|
*out = *in
|
|
|
|
if in.Users != nil {
|
|
|
|
in, out := &in.Users, &out.Users
|
|
|
|
*out = make(Users, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DigestAuth.
|
|
|
|
func (in *DigestAuth) DeepCopy() *DigestAuth {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(DigestAuth)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *ErrorPage) DeepCopyInto(out *ErrorPage) {
|
|
|
|
*out = *in
|
|
|
|
if in.Status != nil {
|
|
|
|
in, out := &in.Status, &out.Status
|
|
|
|
*out = make([]string, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ErrorPage.
|
|
|
|
func (in *ErrorPage) DeepCopy() *ErrorPage {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(ErrorPage)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2022-03-17 11:02:09 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *Failover) DeepCopyInto(out *Failover) {
|
|
|
|
*out = *in
|
|
|
|
if in.HealthCheck != nil {
|
|
|
|
in, out := &in.HealthCheck, &out.HealthCheck
|
|
|
|
*out = new(HealthCheck)
|
|
|
|
**out = **in
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Failover.
|
|
|
|
func (in *Failover) DeepCopy() *Failover {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(Failover)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2019-03-14 14:56:06 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *ForwardAuth) DeepCopyInto(out *ForwardAuth) {
|
|
|
|
*out = *in
|
|
|
|
if in.TLS != nil {
|
|
|
|
in, out := &in.TLS, &out.TLS
|
2021-10-26 08:54:11 +00:00
|
|
|
*out = new(types.ClientTLS)
|
2019-03-14 14:56:06 +00:00
|
|
|
**out = **in
|
|
|
|
}
|
|
|
|
if in.AuthResponseHeaders != nil {
|
|
|
|
in, out := &in.AuthResponseHeaders, &out.AuthResponseHeaders
|
|
|
|
*out = make([]string, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
2020-10-07 14:36:04 +00:00
|
|
|
if in.AuthRequestHeaders != nil {
|
|
|
|
in, out := &in.AuthRequestHeaders, &out.AuthRequestHeaders
|
|
|
|
*out = make([]string, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
2019-03-14 14:56:06 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ForwardAuth.
|
|
|
|
func (in *ForwardAuth) DeepCopy() *ForwardAuth {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(ForwardAuth)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2020-09-11 13:40:03 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *ForwardingTimeouts) DeepCopyInto(out *ForwardingTimeouts) {
|
|
|
|
*out = *in
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ForwardingTimeouts.
|
|
|
|
func (in *ForwardingTimeouts) DeepCopy() *ForwardingTimeouts {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(ForwardingTimeouts)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2022-10-27 15:34:06 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *GrpcWeb) DeepCopyInto(out *GrpcWeb) {
|
|
|
|
*out = *in
|
|
|
|
if in.AllowOrigins != nil {
|
|
|
|
in, out := &in.AllowOrigins, &out.AllowOrigins
|
|
|
|
*out = make([]string, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GrpcWeb.
|
|
|
|
func (in *GrpcWeb) DeepCopy() *GrpcWeb {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(GrpcWeb)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2019-07-09 13:18:04 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *HTTPConfiguration) DeepCopyInto(out *HTTPConfiguration) {
|
|
|
|
*out = *in
|
|
|
|
if in.Routers != nil {
|
|
|
|
in, out := &in.Routers, &out.Routers
|
|
|
|
*out = make(map[string]*Router, len(*in))
|
|
|
|
for key, val := range *in {
|
|
|
|
var outVal *Router
|
|
|
|
if val == nil {
|
|
|
|
(*out)[key] = nil
|
|
|
|
} else {
|
|
|
|
in, out := &val, &outVal
|
|
|
|
*out = new(Router)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
|
|
|
(*out)[key] = outVal
|
|
|
|
}
|
|
|
|
}
|
2020-03-05 11:46:05 +00:00
|
|
|
if in.Services != nil {
|
|
|
|
in, out := &in.Services, &out.Services
|
|
|
|
*out = make(map[string]*Service, len(*in))
|
|
|
|
for key, val := range *in {
|
|
|
|
var outVal *Service
|
|
|
|
if val == nil {
|
|
|
|
(*out)[key] = nil
|
|
|
|
} else {
|
|
|
|
in, out := &val, &outVal
|
|
|
|
*out = new(Service)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
|
|
|
(*out)[key] = outVal
|
|
|
|
}
|
|
|
|
}
|
2019-07-09 13:18:04 +00:00
|
|
|
if in.Middlewares != nil {
|
|
|
|
in, out := &in.Middlewares, &out.Middlewares
|
|
|
|
*out = make(map[string]*Middleware, len(*in))
|
|
|
|
for key, val := range *in {
|
|
|
|
var outVal *Middleware
|
|
|
|
if val == nil {
|
|
|
|
(*out)[key] = nil
|
|
|
|
} else {
|
|
|
|
in, out := &val, &outVal
|
|
|
|
*out = new(Middleware)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
|
|
|
(*out)[key] = outVal
|
|
|
|
}
|
|
|
|
}
|
2020-03-05 11:46:05 +00:00
|
|
|
if in.Models != nil {
|
|
|
|
in, out := &in.Models, &out.Models
|
|
|
|
*out = make(map[string]*Model, len(*in))
|
2019-07-09 13:18:04 +00:00
|
|
|
for key, val := range *in {
|
2020-03-05 11:46:05 +00:00
|
|
|
var outVal *Model
|
2019-07-09 13:18:04 +00:00
|
|
|
if val == nil {
|
|
|
|
(*out)[key] = nil
|
|
|
|
} else {
|
|
|
|
in, out := &val, &outVal
|
2020-03-05 11:46:05 +00:00
|
|
|
*out = new(Model)
|
2019-07-09 13:18:04 +00:00
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
|
|
|
(*out)[key] = outVal
|
|
|
|
}
|
|
|
|
}
|
2020-09-11 13:40:03 +00:00
|
|
|
if in.ServersTransports != nil {
|
|
|
|
in, out := &in.ServersTransports, &out.ServersTransports
|
|
|
|
*out = make(map[string]*ServersTransport, len(*in))
|
|
|
|
for key, val := range *in {
|
|
|
|
var outVal *ServersTransport
|
|
|
|
if val == nil {
|
|
|
|
(*out)[key] = nil
|
|
|
|
} else {
|
|
|
|
in, out := &val, &outVal
|
|
|
|
*out = new(ServersTransport)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
|
|
|
(*out)[key] = outVal
|
|
|
|
}
|
|
|
|
}
|
2019-07-09 13:18:04 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPConfiguration.
|
|
|
|
func (in *HTTPConfiguration) DeepCopy() *HTTPConfiguration {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(HTTPConfiguration)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2019-03-14 14:56:06 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *Headers) DeepCopyInto(out *Headers) {
|
|
|
|
*out = *in
|
|
|
|
if in.CustomRequestHeaders != nil {
|
|
|
|
in, out := &in.CustomRequestHeaders, &out.CustomRequestHeaders
|
|
|
|
*out = make(map[string]string, len(*in))
|
|
|
|
for key, val := range *in {
|
|
|
|
(*out)[key] = val
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if in.CustomResponseHeaders != nil {
|
|
|
|
in, out := &in.CustomResponseHeaders, &out.CustomResponseHeaders
|
|
|
|
*out = make(map[string]string, len(*in))
|
|
|
|
for key, val := range *in {
|
|
|
|
(*out)[key] = val
|
|
|
|
}
|
|
|
|
}
|
2019-06-11 13:12:04 +00:00
|
|
|
if in.AccessControlAllowHeaders != nil {
|
|
|
|
in, out := &in.AccessControlAllowHeaders, &out.AccessControlAllowHeaders
|
|
|
|
*out = make([]string, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
|
|
|
if in.AccessControlAllowMethods != nil {
|
|
|
|
in, out := &in.AccessControlAllowMethods, &out.AccessControlAllowMethods
|
|
|
|
*out = make([]string, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
2020-03-05 15:07:04 +00:00
|
|
|
if in.AccessControlAllowOriginList != nil {
|
|
|
|
in, out := &in.AccessControlAllowOriginList, &out.AccessControlAllowOriginList
|
|
|
|
*out = make([]string, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
2020-11-05 10:24:03 +00:00
|
|
|
if in.AccessControlAllowOriginListRegex != nil {
|
|
|
|
in, out := &in.AccessControlAllowOriginListRegex, &out.AccessControlAllowOriginListRegex
|
|
|
|
*out = make([]string, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
2019-06-11 13:12:04 +00:00
|
|
|
if in.AccessControlExposeHeaders != nil {
|
|
|
|
in, out := &in.AccessControlExposeHeaders, &out.AccessControlExposeHeaders
|
|
|
|
*out = make([]string, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
2019-03-14 14:56:06 +00:00
|
|
|
if in.AllowedHosts != nil {
|
|
|
|
in, out := &in.AllowedHosts, &out.AllowedHosts
|
|
|
|
*out = make([]string, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
|
|
|
if in.HostsProxyHeaders != nil {
|
|
|
|
in, out := &in.HostsProxyHeaders, &out.HostsProxyHeaders
|
|
|
|
*out = make([]string, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
|
|
|
if in.SSLProxyHeaders != nil {
|
|
|
|
in, out := &in.SSLProxyHeaders, &out.SSLProxyHeaders
|
|
|
|
*out = make(map[string]string, len(*in))
|
|
|
|
for key, val := range *in {
|
|
|
|
(*out)[key] = val
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Headers.
|
|
|
|
func (in *Headers) DeepCopy() *Headers {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(Headers)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2019-07-09 13:18:04 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *HealthCheck) DeepCopyInto(out *HealthCheck) {
|
|
|
|
*out = *in
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HealthCheck.
|
|
|
|
func (in *HealthCheck) DeepCopy() *HealthCheck {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(HealthCheck)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2019-03-14 14:56:06 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
2022-10-26 15:16:05 +00:00
|
|
|
func (in *IPAllowList) DeepCopyInto(out *IPAllowList) {
|
2019-03-14 14:56:06 +00:00
|
|
|
*out = *in
|
2022-10-26 15:16:05 +00:00
|
|
|
if in.SourceRange != nil {
|
|
|
|
in, out := &in.SourceRange, &out.SourceRange
|
2019-03-14 14:56:06 +00:00
|
|
|
*out = make([]string, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
2022-10-26 15:16:05 +00:00
|
|
|
if in.IPStrategy != nil {
|
|
|
|
in, out := &in.IPStrategy, &out.IPStrategy
|
|
|
|
*out = new(IPStrategy)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
2019-03-14 14:56:06 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-10-26 15:16:05 +00:00
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IPAllowList.
|
|
|
|
func (in *IPAllowList) DeepCopy() *IPAllowList {
|
2019-03-14 14:56:06 +00:00
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2022-10-26 15:16:05 +00:00
|
|
|
out := new(IPAllowList)
|
2019-03-14 14:56:06 +00:00
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
2022-10-26 15:16:05 +00:00
|
|
|
func (in *IPStrategy) DeepCopyInto(out *IPStrategy) {
|
2019-03-14 14:56:06 +00:00
|
|
|
*out = *in
|
2022-10-26 15:16:05 +00:00
|
|
|
if in.ExcludedIPs != nil {
|
|
|
|
in, out := &in.ExcludedIPs, &out.ExcludedIPs
|
2019-03-14 14:56:06 +00:00
|
|
|
*out = make([]string, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-10-26 15:16:05 +00:00
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IPStrategy.
|
|
|
|
func (in *IPStrategy) DeepCopy() *IPStrategy {
|
2019-03-14 14:56:06 +00:00
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2022-10-26 15:16:05 +00:00
|
|
|
out := new(IPStrategy)
|
2019-03-14 14:56:06 +00:00
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
2019-08-26 10:20:06 +00:00
|
|
|
func (in *InFlightReq) DeepCopyInto(out *InFlightReq) {
|
2019-03-14 14:56:06 +00:00
|
|
|
*out = *in
|
2019-08-26 10:20:06 +00:00
|
|
|
if in.SourceCriterion != nil {
|
|
|
|
in, out := &in.SourceCriterion, &out.SourceCriterion
|
|
|
|
*out = new(SourceCriterion)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
2019-03-14 14:56:06 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-08-26 10:20:06 +00:00
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InFlightReq.
|
|
|
|
func (in *InFlightReq) DeepCopy() *InFlightReq {
|
2019-03-14 14:56:06 +00:00
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2019-08-26 10:20:06 +00:00
|
|
|
out := new(InFlightReq)
|
2019-03-14 14:56:06 +00:00
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2019-07-09 13:18:04 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *Message) DeepCopyInto(out *Message) {
|
|
|
|
*out = *in
|
|
|
|
if in.Configuration != nil {
|
|
|
|
in, out := &in.Configuration, &out.Configuration
|
|
|
|
*out = new(Configuration)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Message.
|
|
|
|
func (in *Message) DeepCopy() *Message {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(Message)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2019-03-14 14:56:06 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *Middleware) DeepCopyInto(out *Middleware) {
|
|
|
|
*out = *in
|
|
|
|
if in.AddPrefix != nil {
|
|
|
|
in, out := &in.AddPrefix, &out.AddPrefix
|
|
|
|
*out = new(AddPrefix)
|
|
|
|
**out = **in
|
|
|
|
}
|
|
|
|
if in.StripPrefix != nil {
|
|
|
|
in, out := &in.StripPrefix, &out.StripPrefix
|
|
|
|
*out = new(StripPrefix)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
|
|
|
if in.StripPrefixRegex != nil {
|
|
|
|
in, out := &in.StripPrefixRegex, &out.StripPrefixRegex
|
|
|
|
*out = new(StripPrefixRegex)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
|
|
|
if in.ReplacePath != nil {
|
|
|
|
in, out := &in.ReplacePath, &out.ReplacePath
|
|
|
|
*out = new(ReplacePath)
|
|
|
|
**out = **in
|
|
|
|
}
|
|
|
|
if in.ReplacePathRegex != nil {
|
|
|
|
in, out := &in.ReplacePathRegex, &out.ReplacePathRegex
|
|
|
|
*out = new(ReplacePathRegex)
|
|
|
|
**out = **in
|
|
|
|
}
|
|
|
|
if in.Chain != nil {
|
|
|
|
in, out := &in.Chain, &out.Chain
|
|
|
|
*out = new(Chain)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
2022-10-26 15:16:05 +00:00
|
|
|
if in.IPAllowList != nil {
|
|
|
|
in, out := &in.IPAllowList, &out.IPAllowList
|
|
|
|
*out = new(IPAllowList)
|
2019-03-14 14:56:06 +00:00
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
|
|
|
if in.Headers != nil {
|
|
|
|
in, out := &in.Headers, &out.Headers
|
|
|
|
*out = new(Headers)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
|
|
|
if in.Errors != nil {
|
|
|
|
in, out := &in.Errors, &out.Errors
|
|
|
|
*out = new(ErrorPage)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
2019-08-26 10:20:06 +00:00
|
|
|
if in.RateLimit != nil {
|
|
|
|
in, out := &in.RateLimit, &out.RateLimit
|
|
|
|
*out = new(RateLimit)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
2019-03-14 14:56:06 +00:00
|
|
|
if in.RedirectRegex != nil {
|
|
|
|
in, out := &in.RedirectRegex, &out.RedirectRegex
|
|
|
|
*out = new(RedirectRegex)
|
|
|
|
**out = **in
|
|
|
|
}
|
|
|
|
if in.RedirectScheme != nil {
|
|
|
|
in, out := &in.RedirectScheme, &out.RedirectScheme
|
|
|
|
*out = new(RedirectScheme)
|
|
|
|
**out = **in
|
|
|
|
}
|
|
|
|
if in.BasicAuth != nil {
|
|
|
|
in, out := &in.BasicAuth, &out.BasicAuth
|
|
|
|
*out = new(BasicAuth)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
|
|
|
if in.DigestAuth != nil {
|
|
|
|
in, out := &in.DigestAuth, &out.DigestAuth
|
|
|
|
*out = new(DigestAuth)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
|
|
|
if in.ForwardAuth != nil {
|
|
|
|
in, out := &in.ForwardAuth, &out.ForwardAuth
|
|
|
|
*out = new(ForwardAuth)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
2019-08-26 10:20:06 +00:00
|
|
|
if in.InFlightReq != nil {
|
|
|
|
in, out := &in.InFlightReq, &out.InFlightReq
|
|
|
|
*out = new(InFlightReq)
|
|
|
|
(*in).DeepCopyInto(*out)
|
2019-03-14 14:56:06 +00:00
|
|
|
}
|
|
|
|
if in.Buffering != nil {
|
|
|
|
in, out := &in.Buffering, &out.Buffering
|
|
|
|
*out = new(Buffering)
|
|
|
|
**out = **in
|
|
|
|
}
|
|
|
|
if in.CircuitBreaker != nil {
|
|
|
|
in, out := &in.CircuitBreaker, &out.CircuitBreaker
|
|
|
|
*out = new(CircuitBreaker)
|
|
|
|
**out = **in
|
|
|
|
}
|
|
|
|
if in.Compress != nil {
|
|
|
|
in, out := &in.Compress, &out.Compress
|
|
|
|
*out = new(Compress)
|
2019-10-31 10:36:05 +00:00
|
|
|
(*in).DeepCopyInto(*out)
|
2019-03-14 14:56:06 +00:00
|
|
|
}
|
|
|
|
if in.PassTLSClientCert != nil {
|
|
|
|
in, out := &in.PassTLSClientCert, &out.PassTLSClientCert
|
|
|
|
*out = new(PassTLSClientCert)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
|
|
|
if in.Retry != nil {
|
|
|
|
in, out := &in.Retry, &out.Retry
|
|
|
|
*out = new(Retry)
|
|
|
|
**out = **in
|
|
|
|
}
|
2020-01-21 17:06:03 +00:00
|
|
|
if in.ContentType != nil {
|
|
|
|
in, out := &in.ContentType, &out.ContentType
|
|
|
|
*out = new(ContentType)
|
|
|
|
**out = **in
|
|
|
|
}
|
2022-10-27 15:34:06 +00:00
|
|
|
if in.GrpcWeb != nil {
|
|
|
|
in, out := &in.GrpcWeb, &out.GrpcWeb
|
|
|
|
*out = new(GrpcWeb)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
2020-04-20 16:36:34 +00:00
|
|
|
if in.Plugin != nil {
|
|
|
|
in, out := &in.Plugin, &out.Plugin
|
|
|
|
*out = make(map[string]PluginConf, len(*in))
|
|
|
|
for key, val := range *in {
|
|
|
|
(*out)[key] = *val.DeepCopy()
|
|
|
|
}
|
|
|
|
}
|
2019-03-14 14:56:06 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Middleware.
|
|
|
|
func (in *Middleware) DeepCopy() *Middleware {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(Middleware)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2019-09-02 09:54:04 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *MirrorService) DeepCopyInto(out *MirrorService) {
|
|
|
|
*out = *in
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MirrorService.
|
|
|
|
func (in *MirrorService) DeepCopy() *MirrorService {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(MirrorService)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *Mirroring) DeepCopyInto(out *Mirroring) {
|
|
|
|
*out = *in
|
2020-03-05 17:03:08 +00:00
|
|
|
if in.MaxBodySize != nil {
|
|
|
|
in, out := &in.MaxBodySize, &out.MaxBodySize
|
|
|
|
*out = new(int64)
|
|
|
|
**out = **in
|
|
|
|
}
|
2019-09-02 09:54:04 +00:00
|
|
|
if in.Mirrors != nil {
|
|
|
|
in, out := &in.Mirrors, &out.Mirrors
|
|
|
|
*out = make([]MirrorService, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
2021-06-25 19:08:11 +00:00
|
|
|
if in.HealthCheck != nil {
|
|
|
|
in, out := &in.HealthCheck, &out.HealthCheck
|
|
|
|
*out = new(HealthCheck)
|
|
|
|
**out = **in
|
|
|
|
}
|
2019-09-02 09:54:04 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Mirroring.
|
|
|
|
func (in *Mirroring) DeepCopy() *Mirroring {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(Mirroring)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2020-03-05 11:46:05 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *Model) DeepCopyInto(out *Model) {
|
|
|
|
*out = *in
|
|
|
|
if in.Middlewares != nil {
|
|
|
|
in, out := &in.Middlewares, &out.Middlewares
|
|
|
|
*out = make([]string, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
|
|
|
if in.TLS != nil {
|
|
|
|
in, out := &in.TLS, &out.TLS
|
|
|
|
*out = new(RouterTLSConfig)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Model.
|
|
|
|
func (in *Model) DeepCopy() *Model {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(Model)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2019-03-14 14:56:06 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *PassTLSClientCert) DeepCopyInto(out *PassTLSClientCert) {
|
|
|
|
*out = *in
|
|
|
|
if in.Info != nil {
|
|
|
|
in, out := &in.Info, &out.Info
|
|
|
|
*out = new(TLSClientCertificateInfo)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PassTLSClientCert.
|
|
|
|
func (in *PassTLSClientCert) DeepCopy() *PassTLSClientCert {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(PassTLSClientCert)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2020-11-17 12:04:04 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *ProxyProtocol) DeepCopyInto(out *ProxyProtocol) {
|
|
|
|
*out = *in
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProxyProtocol.
|
|
|
|
func (in *ProxyProtocol) DeepCopy() *ProxyProtocol {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(ProxyProtocol)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2019-03-14 14:56:06 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *RateLimit) DeepCopyInto(out *RateLimit) {
|
|
|
|
*out = *in
|
2019-08-26 10:20:06 +00:00
|
|
|
if in.SourceCriterion != nil {
|
|
|
|
in, out := &in.SourceCriterion, &out.SourceCriterion
|
|
|
|
*out = new(SourceCriterion)
|
|
|
|
(*in).DeepCopyInto(*out)
|
2019-03-14 14:56:06 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RateLimit.
|
|
|
|
func (in *RateLimit) DeepCopy() *RateLimit {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(RateLimit)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *RedirectRegex) DeepCopyInto(out *RedirectRegex) {
|
|
|
|
*out = *in
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RedirectRegex.
|
|
|
|
func (in *RedirectRegex) DeepCopy() *RedirectRegex {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(RedirectRegex)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *RedirectScheme) DeepCopyInto(out *RedirectScheme) {
|
|
|
|
*out = *in
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RedirectScheme.
|
|
|
|
func (in *RedirectScheme) DeepCopy() *RedirectScheme {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(RedirectScheme)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *ReplacePath) DeepCopyInto(out *ReplacePath) {
|
|
|
|
*out = *in
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ReplacePath.
|
|
|
|
func (in *ReplacePath) DeepCopy() *ReplacePath {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(ReplacePath)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *ReplacePathRegex) DeepCopyInto(out *ReplacePathRegex) {
|
|
|
|
*out = *in
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ReplacePathRegex.
|
|
|
|
func (in *ReplacePathRegex) DeepCopy() *ReplacePathRegex {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(ReplacePathRegex)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2019-07-09 13:18:04 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *ResponseForwarding) DeepCopyInto(out *ResponseForwarding) {
|
|
|
|
*out = *in
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResponseForwarding.
|
|
|
|
func (in *ResponseForwarding) DeepCopy() *ResponseForwarding {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(ResponseForwarding)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2019-03-14 14:56:06 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *Retry) DeepCopyInto(out *Retry) {
|
|
|
|
*out = *in
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Retry.
|
|
|
|
func (in *Retry) DeepCopy() *Retry {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(Retry)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2019-07-09 13:18:04 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *Router) DeepCopyInto(out *Router) {
|
|
|
|
*out = *in
|
|
|
|
if in.EntryPoints != nil {
|
|
|
|
in, out := &in.EntryPoints, &out.EntryPoints
|
|
|
|
*out = make([]string, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
|
|
|
if in.Middlewares != nil {
|
|
|
|
in, out := &in.Middlewares, &out.Middlewares
|
|
|
|
*out = make([]string, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
|
|
|
if in.TLS != nil {
|
|
|
|
in, out := &in.TLS, &out.TLS
|
|
|
|
*out = new(RouterTLSConfig)
|
2019-07-19 09:52:04 +00:00
|
|
|
(*in).DeepCopyInto(*out)
|
2019-07-09 13:18:04 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Router.
|
|
|
|
func (in *Router) DeepCopy() *Router {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(Router)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *RouterTCPTLSConfig) DeepCopyInto(out *RouterTCPTLSConfig) {
|
|
|
|
*out = *in
|
2019-07-19 09:52:04 +00:00
|
|
|
if in.Domains != nil {
|
|
|
|
in, out := &in.Domains, &out.Domains
|
|
|
|
*out = make([]types.Domain, len(*in))
|
|
|
|
for i := range *in {
|
|
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
|
|
}
|
|
|
|
}
|
2019-07-09 13:18:04 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RouterTCPTLSConfig.
|
|
|
|
func (in *RouterTCPTLSConfig) DeepCopy() *RouterTCPTLSConfig {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(RouterTCPTLSConfig)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *RouterTLSConfig) DeepCopyInto(out *RouterTLSConfig) {
|
|
|
|
*out = *in
|
2019-07-19 09:52:04 +00:00
|
|
|
if in.Domains != nil {
|
|
|
|
in, out := &in.Domains, &out.Domains
|
|
|
|
*out = make([]types.Domain, len(*in))
|
|
|
|
for i := range *in {
|
|
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
|
|
}
|
|
|
|
}
|
2019-07-09 13:18:04 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RouterTLSConfig.
|
|
|
|
func (in *RouterTLSConfig) DeepCopy() *RouterTLSConfig {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(RouterTLSConfig)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *Server) DeepCopyInto(out *Server) {
|
|
|
|
*out = *in
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Server.
|
|
|
|
func (in *Server) DeepCopy() *Server {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(Server)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2021-06-25 19:08:11 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *ServerHealthCheck) DeepCopyInto(out *ServerHealthCheck) {
|
|
|
|
*out = *in
|
|
|
|
if in.FollowRedirects != nil {
|
|
|
|
in, out := &in.FollowRedirects, &out.FollowRedirects
|
|
|
|
*out = new(bool)
|
|
|
|
**out = **in
|
|
|
|
}
|
|
|
|
if in.Headers != nil {
|
|
|
|
in, out := &in.Headers, &out.Headers
|
|
|
|
*out = make(map[string]string, len(*in))
|
|
|
|
for key, val := range *in {
|
|
|
|
(*out)[key] = val
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServerHealthCheck.
|
|
|
|
func (in *ServerHealthCheck) DeepCopy() *ServerHealthCheck {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(ServerHealthCheck)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2019-08-26 08:30:05 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *ServersLoadBalancer) DeepCopyInto(out *ServersLoadBalancer) {
|
|
|
|
*out = *in
|
|
|
|
if in.Sticky != nil {
|
|
|
|
in, out := &in.Sticky, &out.Sticky
|
|
|
|
*out = new(Sticky)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
|
|
|
if in.Servers != nil {
|
|
|
|
in, out := &in.Servers, &out.Servers
|
|
|
|
*out = make([]Server, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
|
|
|
if in.HealthCheck != nil {
|
|
|
|
in, out := &in.HealthCheck, &out.HealthCheck
|
2021-06-25 19:08:11 +00:00
|
|
|
*out = new(ServerHealthCheck)
|
2019-08-26 08:30:05 +00:00
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
2019-10-25 12:40:05 +00:00
|
|
|
if in.PassHostHeader != nil {
|
|
|
|
in, out := &in.PassHostHeader, &out.PassHostHeader
|
|
|
|
*out = new(bool)
|
|
|
|
**out = **in
|
|
|
|
}
|
2019-08-26 08:30:05 +00:00
|
|
|
if in.ResponseForwarding != nil {
|
|
|
|
in, out := &in.ResponseForwarding, &out.ResponseForwarding
|
|
|
|
*out = new(ResponseForwarding)
|
|
|
|
**out = **in
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServersLoadBalancer.
|
|
|
|
func (in *ServersLoadBalancer) DeepCopy() *ServersLoadBalancer {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(ServersLoadBalancer)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2020-09-11 13:40:03 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *ServersTransport) DeepCopyInto(out *ServersTransport) {
|
|
|
|
*out = *in
|
|
|
|
if in.RootCAs != nil {
|
|
|
|
in, out := &in.RootCAs, &out.RootCAs
|
|
|
|
*out = make([]tls.FileOrContent, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
|
|
|
if in.Certificates != nil {
|
|
|
|
in, out := &in.Certificates, &out.Certificates
|
|
|
|
*out = make(tls.Certificates, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
|
|
|
if in.ForwardingTimeouts != nil {
|
|
|
|
in, out := &in.ForwardingTimeouts, &out.ForwardingTimeouts
|
|
|
|
*out = new(ForwardingTimeouts)
|
|
|
|
**out = **in
|
|
|
|
}
|
2022-10-14 15:16:08 +00:00
|
|
|
if in.Spiffe != nil {
|
|
|
|
in, out := &in.Spiffe, &out.Spiffe
|
|
|
|
*out = new(Spiffe)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
2020-09-11 13:40:03 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServersTransport.
|
|
|
|
func (in *ServersTransport) DeepCopy() *ServersTransport {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(ServersTransport)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2019-07-09 13:18:04 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *Service) DeepCopyInto(out *Service) {
|
|
|
|
*out = *in
|
|
|
|
if in.LoadBalancer != nil {
|
|
|
|
in, out := &in.LoadBalancer, &out.LoadBalancer
|
2019-08-26 08:30:05 +00:00
|
|
|
*out = new(ServersLoadBalancer)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
|
|
|
if in.Weighted != nil {
|
|
|
|
in, out := &in.Weighted, &out.Weighted
|
|
|
|
*out = new(WeightedRoundRobin)
|
2019-07-09 13:18:04 +00:00
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
2019-09-02 09:54:04 +00:00
|
|
|
if in.Mirroring != nil {
|
|
|
|
in, out := &in.Mirroring, &out.Mirroring
|
|
|
|
*out = new(Mirroring)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
2022-03-17 11:02:09 +00:00
|
|
|
if in.Failover != nil {
|
|
|
|
in, out := &in.Failover, &out.Failover
|
|
|
|
*out = new(Failover)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
2019-07-09 13:18:04 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Service.
|
|
|
|
func (in *Service) DeepCopy() *Service {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(Service)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2019-08-26 10:20:06 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *SourceCriterion) DeepCopyInto(out *SourceCriterion) {
|
|
|
|
*out = *in
|
|
|
|
if in.IPStrategy != nil {
|
|
|
|
in, out := &in.IPStrategy, &out.IPStrategy
|
|
|
|
*out = new(IPStrategy)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SourceCriterion.
|
|
|
|
func (in *SourceCriterion) DeepCopy() *SourceCriterion {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(SourceCriterion)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2019-07-09 13:18:04 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
2022-10-14 15:16:08 +00:00
|
|
|
func (in *Spiffe) DeepCopyInto(out *Spiffe) {
|
|
|
|
*out = *in
|
|
|
|
if in.IDs != nil {
|
|
|
|
in, out := &in.IDs, &out.IDs
|
|
|
|
*out = make([]string, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Spiffe.
|
|
|
|
func (in *Spiffe) DeepCopy() *Spiffe {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(Spiffe)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
2019-08-26 08:30:05 +00:00
|
|
|
func (in *Sticky) DeepCopyInto(out *Sticky) {
|
2019-07-09 13:18:04 +00:00
|
|
|
*out = *in
|
2019-08-26 08:30:05 +00:00
|
|
|
if in.Cookie != nil {
|
|
|
|
in, out := &in.Cookie, &out.Cookie
|
|
|
|
*out = new(Cookie)
|
|
|
|
**out = **in
|
|
|
|
}
|
2019-07-09 13:18:04 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-08-26 08:30:05 +00:00
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Sticky.
|
|
|
|
func (in *Sticky) DeepCopy() *Sticky {
|
2019-07-09 13:18:04 +00:00
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2019-08-26 08:30:05 +00:00
|
|
|
out := new(Sticky)
|
2019-07-09 13:18:04 +00:00
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2019-03-14 14:56:06 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *StripPrefix) DeepCopyInto(out *StripPrefix) {
|
|
|
|
*out = *in
|
|
|
|
if in.Prefixes != nil {
|
|
|
|
in, out := &in.Prefixes, &out.Prefixes
|
|
|
|
*out = make([]string, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StripPrefix.
|
|
|
|
func (in *StripPrefix) DeepCopy() *StripPrefix {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(StripPrefix)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *StripPrefixRegex) DeepCopyInto(out *StripPrefixRegex) {
|
|
|
|
*out = *in
|
|
|
|
if in.Regex != nil {
|
|
|
|
in, out := &in.Regex, &out.Regex
|
|
|
|
*out = make([]string, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StripPrefixRegex.
|
|
|
|
func (in *StripPrefixRegex) DeepCopy() *StripPrefixRegex {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(StripPrefixRegex)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2019-07-09 13:18:04 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *TCPConfiguration) DeepCopyInto(out *TCPConfiguration) {
|
|
|
|
*out = *in
|
|
|
|
if in.Routers != nil {
|
|
|
|
in, out := &in.Routers, &out.Routers
|
|
|
|
*out = make(map[string]*TCPRouter, len(*in))
|
|
|
|
for key, val := range *in {
|
|
|
|
var outVal *TCPRouter
|
|
|
|
if val == nil {
|
|
|
|
(*out)[key] = nil
|
|
|
|
} else {
|
|
|
|
in, out := &val, &outVal
|
|
|
|
*out = new(TCPRouter)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
|
|
|
(*out)[key] = outVal
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if in.Services != nil {
|
|
|
|
in, out := &in.Services, &out.Services
|
|
|
|
*out = make(map[string]*TCPService, len(*in))
|
|
|
|
for key, val := range *in {
|
|
|
|
var outVal *TCPService
|
|
|
|
if val == nil {
|
|
|
|
(*out)[key] = nil
|
|
|
|
} else {
|
|
|
|
in, out := &val, &outVal
|
|
|
|
*out = new(TCPService)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
|
|
|
(*out)[key] = outVal
|
|
|
|
}
|
|
|
|
}
|
2021-06-11 13:30:05 +00:00
|
|
|
if in.Middlewares != nil {
|
|
|
|
in, out := &in.Middlewares, &out.Middlewares
|
|
|
|
*out = make(map[string]*TCPMiddleware, len(*in))
|
|
|
|
for key, val := range *in {
|
|
|
|
var outVal *TCPMiddleware
|
|
|
|
if val == nil {
|
|
|
|
(*out)[key] = nil
|
|
|
|
} else {
|
|
|
|
in, out := &val, &outVal
|
|
|
|
*out = new(TCPMiddleware)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
|
|
|
(*out)[key] = outVal
|
|
|
|
}
|
|
|
|
}
|
2019-07-09 13:18:04 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TCPConfiguration.
|
|
|
|
func (in *TCPConfiguration) DeepCopy() *TCPConfiguration {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(TCPConfiguration)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2021-06-11 13:30:05 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
2022-10-26 15:16:05 +00:00
|
|
|
func (in *TCPIPAllowList) DeepCopyInto(out *TCPIPAllowList) {
|
2021-06-11 13:30:05 +00:00
|
|
|
*out = *in
|
|
|
|
if in.SourceRange != nil {
|
|
|
|
in, out := &in.SourceRange, &out.SourceRange
|
|
|
|
*out = make([]string, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-10-26 15:16:05 +00:00
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TCPIPAllowList.
|
|
|
|
func (in *TCPIPAllowList) DeepCopy() *TCPIPAllowList {
|
2021-06-11 13:30:05 +00:00
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2022-10-26 15:16:05 +00:00
|
|
|
out := new(TCPIPAllowList)
|
2021-06-11 13:30:05 +00:00
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2021-11-29 16:12:06 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *TCPInFlightConn) DeepCopyInto(out *TCPInFlightConn) {
|
|
|
|
*out = *in
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TCPInFlightConn.
|
|
|
|
func (in *TCPInFlightConn) DeepCopy() *TCPInFlightConn {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(TCPInFlightConn)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2021-06-11 13:30:05 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *TCPMiddleware) DeepCopyInto(out *TCPMiddleware) {
|
|
|
|
*out = *in
|
2021-11-29 16:12:06 +00:00
|
|
|
if in.InFlightConn != nil {
|
|
|
|
in, out := &in.InFlightConn, &out.InFlightConn
|
|
|
|
*out = new(TCPInFlightConn)
|
|
|
|
**out = **in
|
|
|
|
}
|
2022-10-26 15:16:05 +00:00
|
|
|
if in.IPAllowList != nil {
|
|
|
|
in, out := &in.IPAllowList, &out.IPAllowList
|
|
|
|
*out = new(TCPIPAllowList)
|
2021-06-11 13:30:05 +00:00
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TCPMiddleware.
|
|
|
|
func (in *TCPMiddleware) DeepCopy() *TCPMiddleware {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(TCPMiddleware)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2019-07-09 13:18:04 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *TCPRouter) DeepCopyInto(out *TCPRouter) {
|
|
|
|
*out = *in
|
|
|
|
if in.EntryPoints != nil {
|
|
|
|
in, out := &in.EntryPoints, &out.EntryPoints
|
|
|
|
*out = make([]string, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
2021-06-11 13:30:05 +00:00
|
|
|
if in.Middlewares != nil {
|
|
|
|
in, out := &in.Middlewares, &out.Middlewares
|
|
|
|
*out = make([]string, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
2019-07-09 13:18:04 +00:00
|
|
|
if in.TLS != nil {
|
|
|
|
in, out := &in.TLS, &out.TLS
|
|
|
|
*out = new(RouterTCPTLSConfig)
|
2019-07-19 09:52:04 +00:00
|
|
|
(*in).DeepCopyInto(*out)
|
2019-07-09 13:18:04 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TCPRouter.
|
|
|
|
func (in *TCPRouter) DeepCopy() *TCPRouter {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(TCPRouter)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *TCPServer) DeepCopyInto(out *TCPServer) {
|
|
|
|
*out = *in
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TCPServer.
|
|
|
|
func (in *TCPServer) DeepCopy() *TCPServer {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(TCPServer)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2019-09-13 18:00:06 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *TCPServersLoadBalancer) DeepCopyInto(out *TCPServersLoadBalancer) {
|
|
|
|
*out = *in
|
|
|
|
if in.TerminationDelay != nil {
|
|
|
|
in, out := &in.TerminationDelay, &out.TerminationDelay
|
|
|
|
*out = new(int)
|
|
|
|
**out = **in
|
|
|
|
}
|
2020-11-17 12:04:04 +00:00
|
|
|
if in.ProxyProtocol != nil {
|
|
|
|
in, out := &in.ProxyProtocol, &out.ProxyProtocol
|
|
|
|
*out = new(ProxyProtocol)
|
|
|
|
**out = **in
|
|
|
|
}
|
2019-09-13 18:00:06 +00:00
|
|
|
if in.Servers != nil {
|
|
|
|
in, out := &in.Servers, &out.Servers
|
|
|
|
*out = make([]TCPServer, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TCPServersLoadBalancer.
|
|
|
|
func (in *TCPServersLoadBalancer) DeepCopy() *TCPServersLoadBalancer {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(TCPServersLoadBalancer)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2019-07-09 13:18:04 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *TCPService) DeepCopyInto(out *TCPService) {
|
|
|
|
*out = *in
|
|
|
|
if in.LoadBalancer != nil {
|
|
|
|
in, out := &in.LoadBalancer, &out.LoadBalancer
|
2019-09-13 18:00:06 +00:00
|
|
|
*out = new(TCPServersLoadBalancer)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
|
|
|
if in.Weighted != nil {
|
|
|
|
in, out := &in.Weighted, &out.Weighted
|
|
|
|
*out = new(TCPWeightedRoundRobin)
|
2019-07-09 13:18:04 +00:00
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TCPService.
|
|
|
|
func (in *TCPService) DeepCopy() *TCPService {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(TCPService)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2019-03-14 14:56:06 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
2019-09-13 18:00:06 +00:00
|
|
|
func (in *TCPWRRService) DeepCopyInto(out *TCPWRRService) {
|
|
|
|
*out = *in
|
|
|
|
if in.Weight != nil {
|
|
|
|
in, out := &in.Weight, &out.Weight
|
|
|
|
*out = new(int)
|
|
|
|
**out = **in
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TCPWRRService.
|
|
|
|
func (in *TCPWRRService) DeepCopy() *TCPWRRService {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(TCPWRRService)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *TCPWeightedRoundRobin) DeepCopyInto(out *TCPWeightedRoundRobin) {
|
|
|
|
*out = *in
|
|
|
|
if in.Services != nil {
|
|
|
|
in, out := &in.Services, &out.Services
|
|
|
|
*out = make([]TCPWRRService, len(*in))
|
|
|
|
for i := range *in {
|
|
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TCPWeightedRoundRobin.
|
|
|
|
func (in *TCPWeightedRoundRobin) DeepCopy() *TCPWeightedRoundRobin {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(TCPWeightedRoundRobin)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
2021-11-08 21:41:43 +00:00
|
|
|
func (in *TLSClientCertificateInfo) DeepCopyInto(out *TLSClientCertificateInfo) {
|
2019-03-14 14:56:06 +00:00
|
|
|
*out = *in
|
2021-11-08 21:41:43 +00:00
|
|
|
if in.Subject != nil {
|
|
|
|
in, out := &in.Subject, &out.Subject
|
|
|
|
*out = new(TLSClientCertificateSubjectDNInfo)
|
|
|
|
**out = **in
|
|
|
|
}
|
|
|
|
if in.Issuer != nil {
|
|
|
|
in, out := &in.Issuer, &out.Issuer
|
|
|
|
*out = new(TLSClientCertificateIssuerDNInfo)
|
|
|
|
**out = **in
|
|
|
|
}
|
2019-03-14 14:56:06 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-11-08 21:41:43 +00:00
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TLSClientCertificateInfo.
|
|
|
|
func (in *TLSClientCertificateInfo) DeepCopy() *TLSClientCertificateInfo {
|
2019-03-14 14:56:06 +00:00
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2021-11-08 21:41:43 +00:00
|
|
|
out := new(TLSClientCertificateInfo)
|
2021-07-28 15:42:09 +00:00
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
2021-11-08 21:41:43 +00:00
|
|
|
func (in *TLSClientCertificateIssuerDNInfo) DeepCopyInto(out *TLSClientCertificateIssuerDNInfo) {
|
2021-07-28 15:42:09 +00:00
|
|
|
*out = *in
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-11-08 21:41:43 +00:00
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TLSClientCertificateIssuerDNInfo.
|
|
|
|
func (in *TLSClientCertificateIssuerDNInfo) DeepCopy() *TLSClientCertificateIssuerDNInfo {
|
2021-07-28 15:42:09 +00:00
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2021-11-08 21:41:43 +00:00
|
|
|
out := new(TLSClientCertificateIssuerDNInfo)
|
2019-03-14 14:56:06 +00:00
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
2021-11-08 21:41:43 +00:00
|
|
|
func (in *TLSClientCertificateSubjectDNInfo) DeepCopyInto(out *TLSClientCertificateSubjectDNInfo) {
|
2019-03-14 14:56:06 +00:00
|
|
|
*out = *in
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-11-08 21:41:43 +00:00
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TLSClientCertificateSubjectDNInfo.
|
|
|
|
func (in *TLSClientCertificateSubjectDNInfo) DeepCopy() *TLSClientCertificateSubjectDNInfo {
|
2019-03-14 14:56:06 +00:00
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2021-11-08 21:41:43 +00:00
|
|
|
out := new(TLSClientCertificateSubjectDNInfo)
|
2019-03-14 14:56:06 +00:00
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2019-07-09 13:18:04 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *TLSConfiguration) DeepCopyInto(out *TLSConfiguration) {
|
|
|
|
*out = *in
|
|
|
|
if in.Certificates != nil {
|
|
|
|
in, out := &in.Certificates, &out.Certificates
|
|
|
|
*out = make([]*tls.CertAndStores, len(*in))
|
|
|
|
for i := range *in {
|
|
|
|
if (*in)[i] != nil {
|
|
|
|
in, out := &(*in)[i], &(*out)[i]
|
|
|
|
*out = new(tls.CertAndStores)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if in.Options != nil {
|
|
|
|
in, out := &in.Options, &out.Options
|
|
|
|
*out = make(map[string]tls.Options, len(*in))
|
|
|
|
for key, val := range *in {
|
|
|
|
(*out)[key] = *val.DeepCopy()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if in.Stores != nil {
|
|
|
|
in, out := &in.Stores, &out.Stores
|
|
|
|
*out = make(map[string]tls.Store, len(*in))
|
|
|
|
for key, val := range *in {
|
|
|
|
(*out)[key] = *val.DeepCopy()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TLSConfiguration.
|
|
|
|
func (in *TLSConfiguration) DeepCopy() *TLSConfiguration {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(TLSConfiguration)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2020-02-12 14:40:06 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *UDPConfiguration) DeepCopyInto(out *UDPConfiguration) {
|
|
|
|
*out = *in
|
|
|
|
if in.Routers != nil {
|
|
|
|
in, out := &in.Routers, &out.Routers
|
|
|
|
*out = make(map[string]*UDPRouter, len(*in))
|
|
|
|
for key, val := range *in {
|
|
|
|
var outVal *UDPRouter
|
|
|
|
if val == nil {
|
|
|
|
(*out)[key] = nil
|
|
|
|
} else {
|
|
|
|
in, out := &val, &outVal
|
|
|
|
*out = new(UDPRouter)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
|
|
|
(*out)[key] = outVal
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if in.Services != nil {
|
|
|
|
in, out := &in.Services, &out.Services
|
|
|
|
*out = make(map[string]*UDPService, len(*in))
|
|
|
|
for key, val := range *in {
|
|
|
|
var outVal *UDPService
|
|
|
|
if val == nil {
|
|
|
|
(*out)[key] = nil
|
|
|
|
} else {
|
|
|
|
in, out := &val, &outVal
|
|
|
|
*out = new(UDPService)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
|
|
|
(*out)[key] = outVal
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UDPConfiguration.
|
|
|
|
func (in *UDPConfiguration) DeepCopy() *UDPConfiguration {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(UDPConfiguration)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *UDPRouter) DeepCopyInto(out *UDPRouter) {
|
|
|
|
*out = *in
|
|
|
|
if in.EntryPoints != nil {
|
|
|
|
in, out := &in.EntryPoints, &out.EntryPoints
|
|
|
|
*out = make([]string, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UDPRouter.
|
|
|
|
func (in *UDPRouter) DeepCopy() *UDPRouter {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(UDPRouter)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *UDPServer) DeepCopyInto(out *UDPServer) {
|
|
|
|
*out = *in
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UDPServer.
|
|
|
|
func (in *UDPServer) DeepCopy() *UDPServer {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(UDPServer)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *UDPServersLoadBalancer) DeepCopyInto(out *UDPServersLoadBalancer) {
|
|
|
|
*out = *in
|
|
|
|
if in.Servers != nil {
|
|
|
|
in, out := &in.Servers, &out.Servers
|
|
|
|
*out = make([]UDPServer, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UDPServersLoadBalancer.
|
|
|
|
func (in *UDPServersLoadBalancer) DeepCopy() *UDPServersLoadBalancer {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(UDPServersLoadBalancer)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *UDPService) DeepCopyInto(out *UDPService) {
|
|
|
|
*out = *in
|
|
|
|
if in.LoadBalancer != nil {
|
|
|
|
in, out := &in.LoadBalancer, &out.LoadBalancer
|
|
|
|
*out = new(UDPServersLoadBalancer)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
|
|
|
if in.Weighted != nil {
|
|
|
|
in, out := &in.Weighted, &out.Weighted
|
|
|
|
*out = new(UDPWeightedRoundRobin)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UDPService.
|
|
|
|
func (in *UDPService) DeepCopy() *UDPService {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(UDPService)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *UDPWRRService) DeepCopyInto(out *UDPWRRService) {
|
|
|
|
*out = *in
|
|
|
|
if in.Weight != nil {
|
|
|
|
in, out := &in.Weight, &out.Weight
|
|
|
|
*out = new(int)
|
|
|
|
**out = **in
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UDPWRRService.
|
|
|
|
func (in *UDPWRRService) DeepCopy() *UDPWRRService {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(UDPWRRService)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *UDPWeightedRoundRobin) DeepCopyInto(out *UDPWeightedRoundRobin) {
|
|
|
|
*out = *in
|
|
|
|
if in.Services != nil {
|
|
|
|
in, out := &in.Services, &out.Services
|
|
|
|
*out = make([]UDPWRRService, len(*in))
|
|
|
|
for i := range *in {
|
|
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UDPWeightedRoundRobin.
|
|
|
|
func (in *UDPWeightedRoundRobin) DeepCopy() *UDPWeightedRoundRobin {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(UDPWeightedRoundRobin)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2019-03-14 14:56:06 +00:00
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in Users) DeepCopyInto(out *Users) {
|
|
|
|
{
|
|
|
|
in := &in
|
|
|
|
*out = make(Users, len(*in))
|
|
|
|
copy(*out, *in)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Users.
|
|
|
|
func (in Users) DeepCopy() Users {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(Users)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return *out
|
|
|
|
}
|
2019-08-26 08:30:05 +00:00
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *WRRService) DeepCopyInto(out *WRRService) {
|
|
|
|
*out = *in
|
2019-08-26 10:20:06 +00:00
|
|
|
if in.Weight != nil {
|
|
|
|
in, out := &in.Weight, &out.Weight
|
|
|
|
*out = new(int)
|
|
|
|
**out = **in
|
|
|
|
}
|
2019-08-26 08:30:05 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WRRService.
|
|
|
|
func (in *WRRService) DeepCopy() *WRRService {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(WRRService)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
|
|
|
func (in *WeightedRoundRobin) DeepCopyInto(out *WeightedRoundRobin) {
|
|
|
|
*out = *in
|
|
|
|
if in.Services != nil {
|
|
|
|
in, out := &in.Services, &out.Services
|
|
|
|
*out = make([]WRRService, len(*in))
|
2019-08-26 10:20:06 +00:00
|
|
|
for i := range *in {
|
|
|
|
(*in)[i].DeepCopyInto(&(*out)[i])
|
|
|
|
}
|
2019-08-26 08:30:05 +00:00
|
|
|
}
|
|
|
|
if in.Sticky != nil {
|
|
|
|
in, out := &in.Sticky, &out.Sticky
|
|
|
|
*out = new(Sticky)
|
|
|
|
(*in).DeepCopyInto(*out)
|
|
|
|
}
|
2021-06-25 19:08:11 +00:00
|
|
|
if in.HealthCheck != nil {
|
|
|
|
in, out := &in.HealthCheck, &out.HealthCheck
|
|
|
|
*out = new(HealthCheck)
|
|
|
|
**out = **in
|
|
|
|
}
|
2019-08-26 08:30:05 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WeightedRoundRobin.
|
|
|
|
func (in *WeightedRoundRobin) DeepCopy() *WeightedRoundRobin {
|
|
|
|
if in == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
out := new(WeightedRoundRobin)
|
|
|
|
in.DeepCopyInto(out)
|
|
|
|
return out
|
|
|
|
}
|