pub struct DetachLunRequest {
pub lun: Option<String>,
pub skip_reboot: Option<bool>,
}Expand description
Message for detach specific LUN from an Instance.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- locations instances detach lun projects (request)
Fields§
§lun: Option<String>Required. Name of the Lun to detach.
skip_reboot: Option<bool>If true, performs lun unmapping without instance reboot.
Trait Implementations§
Source§impl Clone for DetachLunRequest
impl Clone for DetachLunRequest
Source§fn clone(&self) -> DetachLunRequest
fn clone(&self) -> DetachLunRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DetachLunRequest
impl Debug for DetachLunRequest
Source§impl Default for DetachLunRequest
impl Default for DetachLunRequest
Source§fn default() -> DetachLunRequest
fn default() -> DetachLunRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DetachLunRequest
impl<'de> Deserialize<'de> for DetachLunRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for DetachLunRequest
impl Serialize for DetachLunRequest
impl RequestValue for DetachLunRequest
Auto Trait Implementations§
impl Freeze for DetachLunRequest
impl RefUnwindSafe for DetachLunRequest
impl Send for DetachLunRequest
impl Sync for DetachLunRequest
impl Unpin for DetachLunRequest
impl UnwindSafe for DetachLunRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more