pub struct PrivateLinkActiveActiveConnectionsDisassociateRequest {
pub subscription_id: Option<i32>,
pub region_id: Option<i32>,
pub connections: Vec<PrivateLinkConnectionDisassociate>,
pub command_type: Option<String>,
}Expand description
Request to disassociate connections from an Active-Active PrivateLink.
Matches the PrivateLinkActiveActiveConnectionsDisassociateRequest schema.
Fields§
§subscription_id: Option<i32>Subscription that owns the PrivateLink. Server-populated from the path.
region_id: Option<i32>Deployment region ID as defined by the cloud provider. Server-populated from the path.
connections: Vec<PrivateLinkConnectionDisassociate>Connections to disassociate from the PrivateLink.
command_type: Option<String>Read-only on the response; populated by the server with the operation type.
Trait Implementations§
Source§impl Clone for PrivateLinkActiveActiveConnectionsDisassociateRequest
impl Clone for PrivateLinkActiveActiveConnectionsDisassociateRequest
Source§fn clone(&self) -> PrivateLinkActiveActiveConnectionsDisassociateRequest
fn clone(&self) -> PrivateLinkActiveActiveConnectionsDisassociateRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PrivateLinkActiveActiveConnectionsDisassociateRequest
impl<'de> Deserialize<'de> for PrivateLinkActiveActiveConnectionsDisassociateRequest
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 PrivateLinkActiveActiveConnectionsDisassociateRequest
impl RefUnwindSafe for PrivateLinkActiveActiveConnectionsDisassociateRequest
impl Send for PrivateLinkActiveActiveConnectionsDisassociateRequest
impl Sync for PrivateLinkActiveActiveConnectionsDisassociateRequest
impl Unpin for PrivateLinkActiveActiveConnectionsDisassociateRequest
impl UnsafeUnpin for PrivateLinkActiveActiveConnectionsDisassociateRequest
impl UnwindSafe for PrivateLinkActiveActiveConnectionsDisassociateRequest
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