pub struct ActiveActiveRegionDeleteRequest {
pub subscription_id: Option<i32>,
pub regions: Option<Vec<ActiveActiveRegionToDelete>>,
pub dry_run: Option<bool>,
pub command_type: Option<String>,
pub extra: Value,
}
Expand description
Active active region deletion request message
Fields§
§subscription_id: Option<i32>
§regions: Option<Vec<ActiveActiveRegionToDelete>>
The names of the regions to delete.
dry_run: Option<bool>
Optional. When ‘false’: Creates a deployment plan and deploys it, deleting any resources required by the plan. When ‘true’: creates a read-only deployment plan and does not delete or modify any resources. Default: ‘false’
command_type: Option<String>
§extra: Value
Additional fields from the API
Trait Implementations§
Source§impl Clone for ActiveActiveRegionDeleteRequest
impl Clone for ActiveActiveRegionDeleteRequest
Source§fn clone(&self) -> ActiveActiveRegionDeleteRequest
fn clone(&self) -> ActiveActiveRegionDeleteRequest
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<'de> Deserialize<'de> for ActiveActiveRegionDeleteRequest
impl<'de> Deserialize<'de> for ActiveActiveRegionDeleteRequest
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
Auto Trait Implementations§
impl Freeze for ActiveActiveRegionDeleteRequest
impl RefUnwindSafe for ActiveActiveRegionDeleteRequest
impl Send for ActiveActiveRegionDeleteRequest
impl Sync for ActiveActiveRegionDeleteRequest
impl Unpin for ActiveActiveRegionDeleteRequest
impl UnwindSafe for ActiveActiveRegionDeleteRequest
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