Skip to content
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
6 changes: 3 additions & 3 deletions api/baremetal/v1/baremetal_sdk.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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) {
Expand Down Expand Up @@ -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 {
Expand Down