Skip to content

Commit 68e0879

Browse files
authored
docs(b‎aremetal): elastic metal servers (#1662)
1 parent 116699e commit 68e0879

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

api/baremetal/v1/baremetal_sdk.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -945,7 +945,7 @@ type Setting struct {
945945
// Type: type of the setting.
946946
// Default value: unknown
947947
Type SettingType `json:"type"`
948-
// ProjectID: ID of the project ID.
948+
// ProjectID: ID of the Project ID.
949949
ProjectID string `json:"project_id"`
950950
// Enabled: defines whether the setting is enabled.
951951
Enabled bool `json:"enabled"`
@@ -982,8 +982,8 @@ type ListServersRequest struct {
982982
OptionID *string `json:"-"`
983983
}
984984

985-
// ListServers: list Elastic Metal servers for an organization.
986-
// List Elastic Metal servers for a specific organization.
985+
// ListServers: list Elastic Metal servers for an Organization.
986+
// List Elastic Metal servers for a specific Organization.
987987
func (s *API) ListServers(req *ListServersRequest, opts ...scw.RequestOption) (*ListServersResponse, error) {
988988
var err error
989989

@@ -2000,12 +2000,12 @@ type ListSettingsRequest struct {
20002000
// OrderBy: sort order for items in the response.
20012001
// Default value: created_at_asc
20022002
OrderBy ListSettingsRequestOrderBy `json:"-"`
2003-
// ProjectID: ID of the project.
2003+
// ProjectID: ID of the Project.
20042004
ProjectID *string `json:"-"`
20052005
}
20062006

20072007
// ListSettings: list all settings.
2008-
// Return all settings for a project ID.
2008+
// Return all settings for a Project ID.
20092009
func (s *API) ListSettings(req *ListSettingsRequest, opts ...scw.RequestOption) (*ListSettingsResponse, error) {
20102010
var err error
20112011

@@ -2055,7 +2055,7 @@ type UpdateSettingRequest struct {
20552055
}
20562056

20572057
// UpdateSetting: update setting.
2058-
// Update a setting for a project ID (enable or disable).
2058+
// Update a setting for a Project ID (enable or disable).
20592059
func (s *API) UpdateSetting(req *UpdateSettingRequest, opts ...scw.RequestOption) (*Setting, error) {
20602060
var err error
20612061

@@ -2150,8 +2150,8 @@ type GetOSRequest struct {
21502150
OsID string `json:"-"`
21512151
}
21522152

2153-
// GetOS: get an OS with an ID.
2154-
// Return specific OS for the ID.
2153+
// GetOS: get OS with an ID.
2154+
// Return the specific OS for the ID.
21552155
func (s *API) GetOS(req *GetOSRequest, opts ...scw.RequestOption) (*OS, error) {
21562156
var err error
21572157

0 commit comments

Comments
 (0)