We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13d6966 commit 1e7fa7eCopy full SHA for 1e7fa7e
api/lb/v1/lb_sdk.go
@@ -1594,7 +1594,13 @@ type RouteMatch struct {
1594
// Sni: server Name Indication TLS extension (SNI)
1595
//
1596
// Server Name Indication TLS extension (SNI) field from an incoming connection made via an SSL/TLS transport layer
1597
- Sni *string `json:"sni"`
+ // Precisely one of HostHeader, Sni must be set.
1598
+ Sni *string `json:"sni,omitempty"`
1599
+ // HostHeader: HTTP host header to match
1600
+ //
1601
+ // The Host request header specifies the host of the server to which the request is being sent
1602
1603
+ HostHeader *string `json:"host_header,omitempty"`
1604
}
1605
1606
// SetACLsResponse: set acls response
0 commit comments