pub struct EndpointsRedirectionResponse {
pub redirection_id: Option<String>,
pub status: Option<EndpointRedirectionStatus>,
pub source_database_id: Option<i32>,
pub target_database_id: Option<i32>,
pub is_revert: Option<bool>,
pub duplicate_acls: Option<bool>,
pub started_at: Option<String>,
pub completed_at: Option<String>,
pub reverted_at: Option<String>,
pub error_message: Option<String>,
pub endpoints: Option<Vec<EndpointRedirection>>,
}Expand description
Dynamic endpoint redirection status response.
Fields§
§redirection_id: Option<String>Redirection identifier used for polling and reversion.
status: Option<EndpointRedirectionStatus>Current redirection state.
source_database_id: Option<i32>Source database ID.
target_database_id: Option<i32>Target database ID.
is_revert: Option<bool>Whether this operation is reverting a prior redirection.
duplicate_acls: Option<bool>Whether source ACLs were duplicated to the target.
started_at: Option<String>Timestamp when the operation started.
completed_at: Option<String>Timestamp when the operation completed.
reverted_at: Option<String>Timestamp when the operation was reverted.
error_message: Option<String>Operation-level failure detail, when present.
endpoints: Option<Vec<EndpointRedirection>>Individual endpoint movements performed by the operation.
Trait Implementations§
Source§impl Clone for EndpointsRedirectionResponse
impl Clone for EndpointsRedirectionResponse
Source§fn clone(&self) -> EndpointsRedirectionResponse
fn clone(&self) -> EndpointsRedirectionResponse
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 Debug for EndpointsRedirectionResponse
impl Debug for EndpointsRedirectionResponse
Source§impl<'de> Deserialize<'de> for EndpointsRedirectionResponse
impl<'de> Deserialize<'de> for EndpointsRedirectionResponse
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 EndpointsRedirectionResponse
impl RefUnwindSafe for EndpointsRedirectionResponse
impl Send for EndpointsRedirectionResponse
impl Sync for EndpointsRedirectionResponse
impl Unpin for EndpointsRedirectionResponse
impl UnsafeUnpin for EndpointsRedirectionResponse
impl UnwindSafe for EndpointsRedirectionResponse
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