diff --git a/packages_generated/baremetal/src/v1/marshalling.gen.ts b/packages_generated/baremetal/src/v1/marshalling.gen.ts index 1e950a142..e6853688b 100644 --- a/packages_generated/baremetal/src/v1/marshalling.gen.ts +++ b/packages_generated/baremetal/src/v1/marshalling.gen.ts @@ -935,6 +935,7 @@ export const marshalRebootServerRequest = ( defaults: DefaultValues, ): Record => ({ boot_type: request.bootType, + ssh_key_ids: request.sshKeyIds, }) export const marshalStartBMCAccessRequest = ( @@ -949,6 +950,7 @@ export const marshalStartServerRequest = ( defaults: DefaultValues, ): Record => ({ boot_type: request.bootType, + ssh_key_ids: request.sshKeyIds, }) export const marshalUpdateIPRequest = ( diff --git a/packages_generated/baremetal/src/v1/types.gen.ts b/packages_generated/baremetal/src/v1/types.gen.ts index b403e9c6b..8d10e6277 100644 --- a/packages_generated/baremetal/src/v1/types.gen.ts +++ b/packages_generated/baremetal/src/v1/types.gen.ts @@ -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 { @@ -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 = {