File tree 1 file changed +4
-3
lines changed 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ type ClientSettingsPolicySpec struct {
88
88
type ClientSettingsPolicyStatus struct {
89
89
// Conditions describe the current conditions of the ClientSettingsPolicy
90
90
// +optional
91
- Conditions []metav1.Condition
91
+ Conditions []metav1.Condition ` json:"conditions,omitempty" `
92
92
}
93
93
94
94
type ClientSettingsPolicyConfig struct {
@@ -128,15 +128,16 @@ type KeepAlive struct {
128
128
Disable *DisableType ` json:"disable"`
129
129
}
130
130
131
+ // KeepAliveTimeout defines the timeouts related to keep-alive client connections.
131
132
type KeepAliveTimeout struct {
132
133
// ServerTimeout sets the timeout during which a keep-alive client connection will stay open on the server side.
133
134
// The zero value disables keep-alive client connections.
134
135
// +optional
135
- ServerTimeout *Duration
136
+ ServerTimeout *Duration ` json:"serverTimeout,omitempty" `
136
137
137
138
// HeaderTimeout sets the timeout in the "Keep-Alive: timeout=time" response header field.
138
139
// +optional
139
- HeaderTimeout *Duration
140
+ HeaderTimeout *Duration ` json:"headerTimeout,omitempty" `
140
141
}
141
142
142
143
// DisableType is the type of browsers to disable keep-alive connections on.
You can’t perform that action at this time.
0 commit comments