Skip to content

Commit

Permalink
fix(instance): add missing 'enable_routed_ip' action (#1821)
Browse files Browse the repository at this point in the history
  • Loading branch information
scaleway-bot committed Sep 4, 2023
1 parent 153b05c commit 15e9c42
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions api/instance/v1/instance_sdk.go
Original file line number Diff line number Diff line change
Expand Up @@ -488,12 +488,13 @@ func (enum *SecurityGroupState) UnmarshalJSON(data []byte) error {
type ServerAction string

const (
ServerActionPoweron = ServerAction("poweron")
ServerActionBackup = ServerAction("backup")
ServerActionStopInPlace = ServerAction("stop_in_place")
ServerActionPoweroff = ServerAction("poweroff")
ServerActionTerminate = ServerAction("terminate")
ServerActionReboot = ServerAction("reboot")
ServerActionPoweron = ServerAction("poweron")
ServerActionBackup = ServerAction("backup")
ServerActionStopInPlace = ServerAction("stop_in_place")
ServerActionPoweroff = ServerAction("poweroff")
ServerActionTerminate = ServerAction("terminate")
ServerActionReboot = ServerAction("reboot")
ServerActionEnableRoutedIP = ServerAction("enable_routed_ip")
)

func (enum ServerAction) String() string {
Expand Down

0 comments on commit 15e9c42

Please sign in to comment.