Show / Hide Table of Contents

Class TrailFileSummary

Summary of the TrailFiles.

Inheritance
object
TrailFileSummary
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 TrailFileSummary

Properties

Consumers

Declaration
[JsonProperty(PropertyName = "consumers")]
public List<string> Consumers { get; set; }
Property Value
Type Description
List<string>

array of consumer process names

DisplayName

Declaration
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

An object's Display Name.

MaxSequenceNumber

Declaration
[JsonProperty(PropertyName = "maxSequenceNumber")]
public string MaxSequenceNumber { get; set; }
Property Value
Type Description
string

Maximum sequence number

MinSequenceNumber

Declaration
[JsonProperty(PropertyName = "minSequenceNumber")]
public string MinSequenceNumber { get; set; }
Property Value
Type Description
string

Minimum sequence number

NumberOfSequences

Declaration
[JsonProperty(PropertyName = "numberOfSequences")]
public int? NumberOfSequences { get; set; }
Property Value
Type Description
int?

Number of sequences for a specific trail file

Producer

Declaration
[JsonProperty(PropertyName = "producer")]
public string Producer { get; set; }
Property Value
Type Description
string

Producer Process Name if any.

SizeInBytes

Declaration
[JsonProperty(PropertyName = "sizeInBytes")]
public long? SizeInBytes { get; set; }
Property Value
Type Description
long?

The size of the backup stored in object storage (in bytes)

TimeLastUpdated

Declaration
[JsonProperty(PropertyName = "timeLastUpdated")]
public DateTime? TimeLastUpdated { get; set; }
Property Value
Type Description
DateTime?

The time the resource was last updated. The format is defined by RFC3339, such as 2016-08-25T21:10:29.600Z.

TrailFileId

Declaration
[Required(ErrorMessage = "TrailFileId is required.")]
[JsonProperty(PropertyName = "trailFileId")]
public string TrailFileId { get; set; }
Property Value
Type Description
string

The TrailFile Id.

Remarks

Required

In this article
Back to top