We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06c9190 commit f783234Copy full SHA for f783234
incapsula/client_site_ssl_settings.go
@@ -17,7 +17,7 @@ type HSTSConfiguration struct {
17
18
type InboundTLSSettingsConfiguration struct {
19
ConfigurationProfile string `json:"configurationProfile"`
20
- TLSConfigurations []TLSConfiguration `json:"tlsConfiguration"`
+ TLSConfigurations []TLSConfiguration `json:"tlsConfiguration,omitempty"`
21
}
22
23
type TLSConfiguration struct {
@@ -26,7 +26,7 @@ type TLSConfiguration struct {
26
27
28
type SSLSettingsDTO struct {
29
- HstsConfiguration *HSTSConfiguration `json:"hstsConfiguration"`
+ HstsConfiguration *HSTSConfiguration `json:"hstsConfiguration,omitempty"`
30
InboundTLSSettingsConfiguration *InboundTLSSettingsConfiguration `json:"inboundTlsSettings,omitempty"`
31
32
0 commit comments