Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions packages_generated/baremetal/src/v1/marshalling.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -935,6 +935,7 @@ export const marshalRebootServerRequest = (
defaults: DefaultValues,
): Record<string, unknown> => ({
boot_type: request.bootType,
ssh_key_ids: request.sshKeyIds,
})

export const marshalStartBMCAccessRequest = (
Expand All @@ -949,6 +950,7 @@ export const marshalStartServerRequest = (
defaults: DefaultValues,
): Record<string, unknown> => ({
boot_type: request.bootType,
ssh_key_ids: request.sshKeyIds,
})

export const marshalUpdateIPRequest = (
Expand Down
8 changes: 8 additions & 0 deletions packages_generated/baremetal/src/v1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1410,6 +1410,10 @@ export type RebootServerRequest = {
* The type of boot.
*/
bootType?: ServerBootType
/**
* Additional SSH public key IDs to configure on rescue image.
*/
sshKeyIds?: string[]
}

export interface SetServerPrivateNetworksResponse {
Expand Down Expand Up @@ -1444,6 +1448,10 @@ export type StartServerRequest = {
* The type of boot.
*/
bootType?: ServerBootType
/**
* Additional SSH public key IDs to configure on rescue image.
*/
sshKeyIds?: string[]
}

export type StopBMCAccessRequest = {
Expand Down
Loading