From 24825abc4222df1fb30fcd3d64494360208f2e0a Mon Sep 17 00:00:00 2001 From: scaleway-bot Date: Wed, 29 Jul 2020 08:22:59 +0000 Subject: [PATCH] feat(baremetal): add support for bmc in the CLI --- api/baremetal/v1/baremetal_sdk.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api/baremetal/v1/baremetal_sdk.go b/api/baremetal/v1/baremetal_sdk.go index 71d317f27..80ee4c531 100644 --- a/api/baremetal/v1/baremetal_sdk.go +++ b/api/baremetal/v1/baremetal_sdk.go @@ -1193,7 +1193,7 @@ type StartBMCAccessRequest struct { IP net.IP `json:"ip"` } -// StartBMCAccess: start BMC (Baseboard Management Controller) access +// StartBMCAccess: start BMC (Baseboard Management Controller) access for a given baremetal server // // Start BMC (Baseboard Management Controller) access associated with the given ID. // The BMC (Baseboard Management Controller) access is available one hour after the installation of the server. @@ -1240,7 +1240,7 @@ type GetBMCAccessRequest struct { ServerID string `json:"-"` } -// GetBMCAccess: get BMC (Baseboard Management Controller) access +// GetBMCAccess: get BMC (Baseboard Management Controller) access for a given baremetal server // // Get the BMC (Baseboard Management Controller) access associated with the given ID. func (s *API) GetBMCAccess(req *GetBMCAccessRequest, opts ...scw.RequestOption) (*BMCAccess, error) { @@ -1280,7 +1280,7 @@ type StopBMCAccessRequest struct { ServerID string `json:"-"` } -// StopBMCAccess: stop BMC (Baseboard Management Controller) access +// StopBMCAccess: stop BMC (Baseboard Management Controller) access for a given baremetal server // // Stop BMC (Baseboard Management Controller) access associated with the given ID. func (s *API) StopBMCAccess(req *StopBMCAccessRequest, opts ...scw.RequestOption) error {