Database Migration v1 API - Class SequenceEntity (2.4.0)

public sealed class SequenceEntity : IMessage<SequenceEntity>, IEquatable<SequenceEntity>, IDeepCloneable<SequenceEntity>, IBufferMessage, IMessage

Reference documentation and code samples for the Database Migration v1 API class SequenceEntity.

Sequence's parent is a schema.

Inheritance

object > SequenceEntity

Namespace

Google.Cloud.CloudDms.V1

Assembly

Google.Cloud.CloudDms.V1.dll

Constructors

SequenceEntity()

public SequenceEntity()

SequenceEntity(SequenceEntity)

public SequenceEntity(SequenceEntity other)
Parameter
NameDescription
otherSequenceEntity

Properties

Cache

public long Cache { get; set; }

Indicates number of entries to cache / precreate.

Property Value
TypeDescription
long

CustomFeatures

public Struct CustomFeatures { get; set; }

Custom engine specific features.

Property Value
TypeDescription
Struct

Cycle

public bool Cycle { get; set; }

Indicates whether the sequence value should cycle through.

Property Value
TypeDescription
bool

Increment

public long Increment { get; set; }

Increment value for the sequence.

Property Value
TypeDescription
long

MaxValue

public ByteString MaxValue { get; set; }

Maximum number for the sequence represented as bytes to accommodate large. numbers

Property Value
TypeDescription
ByteString

MinValue

public ByteString MinValue { get; set; }

Minimum number for the sequence represented as bytes to accommodate large. numbers

Property Value
TypeDescription
ByteString

StartValue

public ByteString StartValue { get; set; }

Start number for the sequence represented as bytes to accommodate large. numbers

Property Value
TypeDescription
ByteString