Skip to content

docs(lb): change default value for assign_flexible_ip #2105

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions api/lb/v1/lb_sdk.go
Original file line number Diff line number Diff line change
Expand Up @@ -2138,7 +2138,7 @@ type CreateLBRequest struct {
// Deprecated: IPID: ID of an existing flexible IP address to attach to the Load Balancer.
IPID *string `json:"ip_id,omitempty"`

// AssignFlexibleIP: defines whether to automatically assign a flexible public IP to lb. Default value is `false` (do not assign).
// AssignFlexibleIP: defines whether to automatically assign a flexible public IP to the Load Balancer. Default value is `true` (assign).
AssignFlexibleIP *bool `json:"assign_flexible_ip,omitempty"`

// AssignFlexibleIPv6: defines whether to automatically assign a flexible public IPv6 to the Load Balancer. Default value is `false` (do not assign).
Expand Down Expand Up @@ -3664,7 +3664,7 @@ type ZonedAPICreateLBRequest struct {
// Deprecated: IPID: ID of an existing flexible IP address to attach to the Load Balancer.
IPID *string `json:"ip_id,omitempty"`

// AssignFlexibleIP: defines whether to automatically assign a flexible public IP to lb. Default value is `false` (do not assign).
// AssignFlexibleIP: defines whether to automatically assign a flexible public IP to the Load Balancer. Default value is `true` (assign).
AssignFlexibleIP *bool `json:"assign_flexible_ip,omitempty"`

// AssignFlexibleIPv6: defines whether to automatically assign a flexible public IPv6 to the Load Balancer. Default value is `false` (do not assign).
Expand Down
Loading