Skip to content

Commit 6e08e6e

Browse files
authored
feat(baremetal): support overriding default SSH keys on rescue (scaleway#2695)
1 parent 2fcd3ee commit 6e08e6e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

api/baremetal/v1/baremetal_sdk.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2051,6 +2051,9 @@ type RebootServerRequest struct {
20512051
// BootType: the type of boot.
20522052
// Default value: unknown_boot_type
20532053
BootType ServerBootType `json:"boot_type"`
2054+
2055+
// SSHKeyIDs: additional SSH public key IDs to configure on rescue image.
2056+
SSHKeyIDs []string `json:"ssh_key_ids"`
20542057
}
20552058

20562059
// SetServerPrivateNetworksResponse: set server private networks response.
@@ -2081,6 +2084,9 @@ type StartServerRequest struct {
20812084
// BootType: the type of boot.
20822085
// Default value: unknown_boot_type
20832086
BootType ServerBootType `json:"boot_type"`
2087+
2088+
// SSHKeyIDs: additional SSH public key IDs to configure on rescue image.
2089+
SSHKeyIDs []string `json:"ssh_key_ids"`
20842090
}
20852091

20862092
// StopBMCAccessRequest: stop bmc access request.

0 commit comments

Comments
 (0)