You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: api/lb/v1/lb_sdk.go
+14-2Lines changed: 14 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1043,6 +1043,8 @@ type Backend struct {
1043
1043
UpdatedAt*time.Time`json:"updated_at"`
1044
1044
1045
1045
FailoverHost*string`json:"failover_host"`
1046
+
1047
+
SslBridging*bool`json:"ssl_bridging"`
1046
1048
}
1047
1049
1048
1050
func (m*Backend) UnmarshalJSON(b []byte) error {
@@ -2285,9 +2287,12 @@ type CreateBackendRequest struct {
2285
2287
ProxyProtocolProxyProtocol`json:"proxy_protocol"`
2286
2288
// FailoverHost: scaleway S3 bucket website to be served in case all backend servers are down
2287
2289
//
2288
-
// Only the host part of the Scaleway S3 bucket website is expected e.g. `failover-website.s3-website.fr-par.scw.cloud` if your bucket website URL is `https://failover-website.s3-website.fr-par.scw.cloud/`.
2290
+
// Only the host part of the Scaleway S3 bucket website is expected.
2291
+
// E.g. `failover-website.s3-website.fr-par.scw.cloud` if your bucket website URL is `https://failover-website.s3-website.fr-par.scw.cloud/`.
2289
2292
//
2290
2293
FailoverHost*string`json:"failover_host"`
2294
+
// SslBridging: enable SSL between load balancer and backend servers
@@ -5278,9 +5285,12 @@ type ZonedAPICreateBackendRequest struct {
5278
5285
ProxyProtocolProxyProtocol`json:"proxy_protocol"`
5279
5286
// FailoverHost: scaleway S3 bucket website to be served in case all backend servers are down
5280
5287
//
5281
-
// Only the host part of the Scaleway S3 bucket website is expected e.g. `failover-website.s3-website.fr-par.scw.cloud` if your bucket website URL is `https://failover-website.s3-website.fr-par.scw.cloud/`.
5288
+
// Only the host part of the Scaleway S3 bucket website is expected.
5289
+
// E.g. `failover-website.s3-website.fr-par.scw.cloud` if your bucket website URL is `https://failover-website.s3-website.fr-par.scw.cloud/`.
5282
5290
//
5283
5291
FailoverHost*string`json:"failover_host"`
5292
+
// SslBridging: enable SSL between load balancer and backend servers
0 commit comments