zz_generated.model.go 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. // Licensed under the Apache License, Version 2.0 (the "License");
  2. // you may not use this file except in compliance with the License.
  3. // You may obtain a copy of the License at
  4. //
  5. // http://www.apache.org/licenses/LICENSE-2.0
  6. //
  7. // Unless required by applicable law or agreed to in writing, software
  8. // distributed under the License is distributed on an "AS IS" BASIS,
  9. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. // See the License for the specific language governing permissions and
  11. // limitations under the License.
  12. // Code generated by model-api-gen. DO NOT EDIT.
  13. package baremetal
  14. import (
  15. "yunion.io/x/onecloud/pkg/apis"
  16. )
  17. // SBaremetalProfile is an autogenerated struct via yunion.io/x/onecloud/pkg/compute/models/baremetal.SBaremetalProfile.
  18. type SBaremetalProfile struct {
  19. apis.SStandaloneAnonResourceBase
  20. // 品牌名称(English)
  21. OemName string `json:"oem_name"`
  22. Model string `json:"model"`
  23. LanChannel byte `json:"lan_channel"`
  24. LanChannel2 byte `json:"lan_channel2"`
  25. LanChannel3 byte `json:"lan_channel3"`
  26. // BMC Root账号名称,默认为 root
  27. RootName string `json:"root_name"`
  28. // BMC Root账号ID,默认为 2
  29. RootId int `json:"root_id"`
  30. // 是否要求强密码
  31. StrongPass bool `json:"strong_pass"`
  32. }