github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/loadbalancer/lb_ssl_protocol_info.go (about) 1 /* 2 * NSX API 3 * 4 * VMware NSX REST API 5 * 6 * API version: 1.0.0 7 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) 8 */ 9 10 package loadbalancer 11 12 // SSL protocol 13 type LbSslProtocolInfo struct { 14 15 // Default SSL protocol flag 16 IsDefault bool `json:"is_default"` 17 18 // Secure/insecure SSL protocol flag 19 IsSecure bool `json:"is_secure"` 20 21 // SSL protocol 22 Protocol string `json:"protocol"` 23 }