Show / Hide Table of Contents

Class PipelineRunningProcessSummary

Each replication process and their summary details.

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

Properties

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 2024-07-25T21:10:29.600Z.

Remarks

Required

In this article
Back to top