Class KeyRangeDataDiskAssignment (1.0.0-beta03)

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

Data disk assignment information for a specific key-range of a sharded computation. Currently we only support UTF-8 character splits to simplify encoding into JSON.

Inheritance

Object > KeyRangeDataDiskAssignment

Namespace

Google.Cloud.Dataflow.V1Beta3

Assembly

Google.Cloud.Dataflow.V1Beta3.dll

Constructors

KeyRangeDataDiskAssignment()

public KeyRangeDataDiskAssignment()

KeyRangeDataDiskAssignment(KeyRangeDataDiskAssignment)

public KeyRangeDataDiskAssignment(KeyRangeDataDiskAssignment other)
Parameter
NameDescription
otherKeyRangeDataDiskAssignment

Properties

DataDisk

public string DataDisk { get; set; }

The name of the data disk where data for this range is stored. This name is local to the Google Cloud Platform project and uniquely identifies the disk within that project, for example "myproject-1014-104817-4c2-harness-0-disk-1".

Property Value
TypeDescription
String

End

public string End { get; set; }

The end (exclusive) of the key range.

Property Value
TypeDescription
String

Start

public string Start { get; set; }

The start (inclusive) of the key range.

Property Value
TypeDescription
String