Class PipelineRunningProcessSummary
Each replication process and their summary details.
Inherited Members
Namespace: Oci.GoldengateService.Models
Assembly: OCI.DotNetSDK.Goldengate.dll
Syntax
public class PipelineRunningProcessSummaryProperties
LastRecordLagInSeconds
Declaration
[Required(ErrorMessage = "LastRecordLagInSeconds is required.")]
[JsonProperty(PropertyName = "lastRecordLagInSeconds")]
public float? LastRecordLagInSeconds { get; set; }Property Value
| Type | Description | 
|---|---|
| float? | The latency, in seconds, of a process running in a replication. This option applies when retrieving running processes. | 
Remarks
Required
Name
Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }Property Value
| Type | Description | 
|---|---|
| string | An object's Display Name. | 
Remarks
Required
ProcessType
Declaration
[Required(ErrorMessage = "ProcessType is required.")]
[JsonProperty(PropertyName = "processType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ProcessType? ProcessType { get; set; }Property Value
| Type | Description | 
|---|---|
| ProcessType? | The type of process running in a replication. For example, Extract or Replicat. This option applies when retrieving running processes. | 
Remarks
Required
Status
Declaration
[Required(ErrorMessage = "Status is required.")]
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ProcessStatusType? Status { get; set; }Property Value
| Type | Description | 
|---|---|
| ProcessStatusType? | The status of the Extract or Replicat process. This option applies when retrieving running processes. | 
Remarks
Required
TimeLastProcessed
Declaration
[Required(ErrorMessage = "TimeLastProcessed is required.")]
[JsonProperty(PropertyName = "timeLastProcessed")]
public DateTime? TimeLastProcessed { get; set; }Property Value
| Type | Description | 
|---|---|
| DateTime? | The date and time the last record was processed by an Extract or Replicat. This option applies when retrieving running processes.
The format is defined by RFC3339, such as  | 
Remarks
Required