Class RegionalReplicationStatus
This is the regional replication status.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Compute.dll
Syntax
public class RegionalReplicationStatus
Constructors
RegionalReplicationStatus()
Initializes a new instance of the RegionalReplicationStatus class.
Declaration
public RegionalReplicationStatus ();
RegionalReplicationStatus(String, String, String, Nullable<Int32>)
Initializes a new instance of the RegionalReplicationStatus class.
Declaration
public RegionalReplicationStatus (string region = null, string state = null, string details = null, Nullable<int> progress = null);
Parameters
|
String
region
The region to which the gallery Image Version is being replicated to. |
|
String
state
This is the regional replication state. Possible values include: 'Unknown', 'Replicating', 'Completed', 'Failed' |
|
String
details
The details of the replication status. |
|
Nullable<Int32>
progress
It indicates progress of the replication job. |
Properties
Details
Gets the details of the replication status.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="details")]
public string Details { get; }
Property Value
|
String
|
Progress
Gets it indicates progress of the replication job.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="progress")]
public Nullable<int> Progress { get; }
Property Value
|
Nullable<Int32>
|
Region
Gets the region to which the gallery Image Version is being replicated to.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="region")]
public string Region { get; }
Property Value
|
String
|
State
Gets this is the regional replication state. Possible values include: 'Unknown', 'Replicating', 'Completed', 'Failed'
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="state")]
public string State { get; }
Property Value
|
String
|