pub struct PrivateLinkConnectionsDisassociateRequest {
pub subscription_id: Option<i32>,
pub connections: Vec<PrivateLinkConnectionDisassociate>,
pub command_type: Option<String>,
}Expand description
Request to disassociate connections from a PrivateLink.
Matches the PrivateLinkConnectionsDisassociateRequest schema.
Fields§
§subscription_id: Option<i32>Subscription that owns the PrivateLink. 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 PrivateLinkConnectionsDisassociateRequest
impl Clone for PrivateLinkConnectionsDisassociateRequest
Source§fn clone(&self) -> PrivateLinkConnectionsDisassociateRequest
fn clone(&self) -> PrivateLinkConnectionsDisassociateRequest
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 PrivateLinkConnectionsDisassociateRequest
impl<'de> Deserialize<'de> for PrivateLinkConnectionsDisassociateRequest
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 PrivateLinkConnectionsDisassociateRequest
impl RefUnwindSafe for PrivateLinkConnectionsDisassociateRequest
impl Send for PrivateLinkConnectionsDisassociateRequest
impl Sync for PrivateLinkConnectionsDisassociateRequest
impl Unpin for PrivateLinkConnectionsDisassociateRequest
impl UnsafeUnpin for PrivateLinkConnectionsDisassociateRequest
impl UnwindSafe for PrivateLinkConnectionsDisassociateRequest
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