pub trait BootOptions {
    // Required methods
    fn get(
        resource_block_id: String,
        computer_system_id: String
    ) -> BootOptionsGetResponse;
    fn post(
        resource_block_id: String,
        computer_system_id: String,
        body: BootOption
    ) -> BootOptionsPostResponse;
}

Required Methods§

source

fn get( resource_block_id: String, computer_system_id: String ) -> BootOptionsGetResponse

source

fn post( resource_block_id: String, computer_system_id: String, body: BootOption ) -> BootOptionsPostResponse

Implementors§