15 lines
493 B
Go
15 lines
493 B
Go
package dynamic
|
|
|
|
// +k8s:deepcopy-gen=true
|
|
|
|
// TCPMiddleware holds the TCPMiddleware configuration.
|
|
type TCPMiddleware struct {
|
|
IPWhiteList *TCPIPWhiteList `json:"ipWhiteList,omitempty" toml:"ipWhiteList,omitempty" yaml:"ipWhiteList,omitempty" export:"true"`
|
|
}
|
|
|
|
// +k8s:deepcopy-gen=true
|
|
|
|
// TCPIPWhiteList holds the TCP ip white list configuration.
|
|
type TCPIPWhiteList struct {
|
|
SourceRange []string `json:"sourceRange,omitempty" toml:"sourceRange,omitempty" yaml:"sourceRange,omitempty"`
|
|
}
|