Show / Hide Table of Contents

Class TrailSequenceSummary

Summary of the TrailSequences.

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

Properties

DisplayName

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

An object's Display Name.

SequenceId

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

Sequence Id

Remarks

Required

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.

In this article
Back to top