Class MirrorSyncStatus
Status summary of the mirror sync.
Inherited Members
Namespace: Oci.OsmanagementhubService.Models
Assembly: OCI.DotNetSDK.Osmanagementhub.dll
Syntax
public class MirrorSyncStatus
Properties
Failed
Declaration
[Required(ErrorMessage = "Failed is required.")]
[JsonProperty(PropertyName = "failed")]
public int? Failed { get; set; }
Property Value
Type | Description |
---|---|
int? | Total number of software sources that failed to sync. |
Remarks
Required
Queued
Declaration
[Required(ErrorMessage = "Queued is required.")]
[JsonProperty(PropertyName = "queued")]
public int? Queued { get; set; }
Property Value
Type | Description |
---|---|
int? | Total number of software sources that are queued for sync. |
Remarks
Required
Synced
Declaration
[Required(ErrorMessage = "Synced is required.")]
[JsonProperty(PropertyName = "synced")]
public int? Synced { get; set; }
Property Value
Type | Description |
---|---|
int? | Total number of software sources that successfully synced. |
Remarks
Required
Syncing
Declaration
[Required(ErrorMessage = "Syncing is required.")]
[JsonProperty(PropertyName = "syncing")]
public int? Syncing { get; set; }
Property Value
Type | Description |
---|---|
int? | Total number of software sources currently syncing. |
Remarks
Required
Unsynced
Declaration
[Required(ErrorMessage = "Unsynced is required.")]
[JsonProperty(PropertyName = "unsynced")]
public int? Unsynced { get; set; }
Property Value
Type | Description |
---|---|
int? | Total number of software sources that have not yet been synced. |
Remarks
Required