pub struct SyncGroupProperties {
pub interval: Option<i32>,
pub last_sync_time: Option<OffsetDateTime>,
pub conflict_resolution_policy: Option<ConflictResolutionPolicy>,
pub sync_database_id: Option<String>,
pub hub_database_user_name: Option<String>,
pub hub_database_password: Option<String>,
pub sync_state: Option<SyncState>,
pub schema: Option<SyncGroupSchema>,
pub enable_conflict_logging: Option<bool>,
pub conflict_logging_retention_in_days: Option<i32>,
pub use_private_link_connection: Option<bool>,
pub private_endpoint_name: Option<String>,
}Expand description
Properties of a sync group.
Fields§
§interval: Option<i32>Sync interval of the sync group.
last_sync_time: Option<OffsetDateTime>Last sync time of the sync group.
conflict_resolution_policy: Option<ConflictResolutionPolicy>Conflict resolution policy of the sync group.
sync_database_id: Option<String>ARM resource id of the sync database in the sync group.
hub_database_user_name: Option<String>User name for the sync group hub database credential.
hub_database_password: Option<String>Password for the sync group hub database credential.
sync_state: Option<SyncState>Sync state of the sync group.
schema: Option<SyncGroupSchema>Properties of sync group schema.
enable_conflict_logging: Option<bool>If conflict logging is enabled.
conflict_logging_retention_in_days: Option<i32>Conflict logging retention period.
use_private_link_connection: Option<bool>If use private link connection is enabled.
private_endpoint_name: Option<String>Private endpoint name of the sync group if use private link connection is enabled.
Implementations§
Trait Implementations§
Source§impl Clone for SyncGroupProperties
impl Clone for SyncGroupProperties
Source§fn clone(&self) -> SyncGroupProperties
fn clone(&self) -> SyncGroupProperties
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 SyncGroupProperties
impl Debug for SyncGroupProperties
Source§impl Default for SyncGroupProperties
impl Default for SyncGroupProperties
Source§fn default() -> SyncGroupProperties
fn default() -> SyncGroupProperties
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SyncGroupProperties
impl<'de> Deserialize<'de> for SyncGroupProperties
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 PartialEq for SyncGroupProperties
impl PartialEq for SyncGroupProperties
Source§impl Serialize for SyncGroupProperties
impl Serialize for SyncGroupProperties
impl StructuralPartialEq for SyncGroupProperties
Auto Trait Implementations§
impl Freeze for SyncGroupProperties
impl RefUnwindSafe for SyncGroupProperties
impl Send for SyncGroupProperties
impl Sync for SyncGroupProperties
impl Unpin for SyncGroupProperties
impl UnwindSafe for SyncGroupProperties
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