pub trait ComputerSystemDetail {
    // Required methods
    fn get(computer_system_id: String) -> ComputerSystemDetailGetResponse;
    fn put(
        computer_system_id: String,
        body: ComputerSystem
    ) -> ComputerSystemDetailPutResponse;
    fn delete(computer_system_id: String) -> ComputerSystemDetailDeleteResponse;
    fn patch(
        computer_system_id: String,
        body: Value
    ) -> ComputerSystemDetailPatchResponse;
}

Required Methods§

Implementors§