Skip to content

Commit beec70f

Browse files
committed
remove HardRaidConfiguration bool in dedicated_server
1 parent b781e8a commit beec70f

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

ovh/types_installation_template.go

-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ type InstallationTemplate struct {
1818
EndOfInstall string `json:"endOfInstall,omitempty"`
1919
Family string `json:"family,omitempty"`
2020
Filesystems []string `json:"filesystems"`
21-
HardRaidConfiguration bool `json:"hardRaidConfiguration,omitempty"`
2221
Inputs []InstallationTemplateInputs `json:"inputs,omitempty"`
2322
License *InstallationTemplateLicense `json:"license,omitempty"`
2423
LvmReady *bool `json:"lvmReady,omitempty"`
@@ -48,8 +47,6 @@ func (v InstallationTemplate) ToMap() map[string]interface{} {
4847
obj["family"] = v.Family
4948
obj["filesystems"] = v.Filesystems
5049

51-
obj["hard_raid_configuration"] = v.HardRaidConfiguration
52-
5350
if v.Inputs != nil {
5451
inputs := make([]interface{}, len(v.Inputs))
5552
for i, input := range v.Inputs {

0 commit comments

Comments
 (0)