File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -343,6 +343,8 @@ type AviConfigCreateSpec struct {
343
343
//
344
344
// See https://developer.vmware.com/apis/vsphere-automation/latest/vcenter/data-structures/NamespaceManagement/LoadBalancers/HAProxyConfigCreateSpec/
345
345
// Since 7.0u1:-
346
+ // Deprecated: HA Proxy is being deprecated in vSphere 9.0. Use
347
+ // Avi with vSphere networking, or NSX-T networking, instead.
346
348
type HAProxyConfigCreateSpec struct {
347
349
CertificateAuthorityChain string `json:"certificate_authority_chain"`
348
350
Password string `json:"password"`
@@ -367,8 +369,10 @@ type LoadBalancerProvider struct {
367
369
368
370
var (
369
371
UndefinedLoadBalancerProvider = LoadBalancerProvider {"" }
370
- HAProxyLoadBalancerProvider = LoadBalancerProvider {"HA_PROXY" }
371
- AviLoadBalancerProvider = LoadBalancerProvider {"AVI" }
372
+ // Deprecated: HA Proxy is being deprecated in vSphere 9.0. Use
373
+ // Avi vSphere networking, or NSX-T networking, instead.
374
+ HAProxyLoadBalancerProvider = LoadBalancerProvider {"HA_PROXY" }
375
+ AviLoadBalancerProvider = LoadBalancerProvider {"AVI" }
372
376
)
373
377
374
378
func (v LoadBalancerProvider ) String () string {
You can’t perform that action at this time.
0 commit comments