Show / Hide Table of Contents

Class ReplicationEstimate

Details for response from replication estimation.

Inheritance
object
ReplicationEstimate
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.FilestorageService.Models
Assembly: OCI.DotNetSDK.Filestorage.dll
Syntax
public class ReplicationEstimate

Properties

AllowedTargetRegions

Declaration
[Required(ErrorMessage = "AllowedTargetRegions is required.")]
[JsonProperty(PropertyName = "allowedTargetRegions")]
public List<string> AllowedTargetRegions { get; set; }
Property Value
Type Description
List<string>

Array of allowed target region names which can be paired with source file system.

Remarks

Required

ChangeRateInMBps

Declaration
[Required(ErrorMessage = "ChangeRateInMBps is required.")]
[JsonProperty(PropertyName = "changeRateInMBps")]
public int? ChangeRateInMBps { get; set; }
Property Value
Type Description
int?

The rate of change on source filesystem which was used to provide the estimate in MegaBytes per second.

Remarks

Required

EstimatedBaseCopyTimeInMinutes

Declaration
[Required(ErrorMessage = "EstimatedBaseCopyTimeInMinutes is required.")]
[JsonProperty(PropertyName = "estimatedBaseCopyTimeInMinutes")]
public int? EstimatedBaseCopyTimeInMinutes { get; set; }
Property Value
Type Description
int?

The approximate time required for the base sync between source and target to finish.

Remarks

Required

IsReplicationSupported

Declaration
[Required(ErrorMessage = "IsReplicationSupported is required.")]
[JsonProperty(PropertyName = "isReplicationSupported")]
public bool? IsReplicationSupported { get; set; }
Property Value
Type Description
bool?

Specifies whether replication can be enabled on the file system.

Remarks

Required

MinimumSupportedIntervalInMinutes

Declaration
[Required(ErrorMessage = "MinimumSupportedIntervalInMinutes is required.")]
[JsonProperty(PropertyName = "minimumSupportedIntervalInMinutes")]
public int? MinimumSupportedIntervalInMinutes { get; set; }
Property Value
Type Description
int?

The minimum supported replication interval for specified file system in minutes.

Remarks

Required

In this article
Back to top