pub struct SyncResult {
pub incoming_traffic_policy: Output<Option<String>>,
pub location: Output<String>,
pub name: Output<String>,
pub registered_servers: Output<Vec<String>>,
pub resource_group_name: Output<String>,
pub tags: Output<Option<HashMap<String, String>>>,
}
Fields§
§incoming_traffic_policy: Output<Option<String>>
Incoming traffic policy. Possible values are AllowAllTraffic
and AllowVirtualNetworksOnly
. Defaults to AllowAllTraffic
.
location: Output<String>
The Azure Region where the Storage Sync should exist. Changing this forces a new Storage Sync to be created.
name: Output<String>
The name which should be used for this Storage Sync. Changing this forces a new Storage Sync to be created.
registered_servers: Output<Vec<String>>
A list of registered servers owned by this Storage Sync.
resource_group_name: Output<String>
The name of the Resource Group where the Storage Sync should exist. Changing this forces a new Storage Sync to be created.
A mapping of tags which should be assigned to the Storage Sync.
Auto Trait Implementations§
impl Freeze for SyncResult
impl RefUnwindSafe for SyncResult
impl Send for SyncResult
impl Sync for SyncResult
impl Unpin for SyncResult
impl UnwindSafe for SyncResult
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