Class ComputeMessageStatsRequest
Compute statistics about a range of messages in a given topic and partition.
Implements
Inherited Members
Namespace: Google.Apis.PubsubLite.v1.Data
Assembly: Google.Apis.PubsubLite.v1.dll
Syntax
public class ComputeMessageStatsRequest : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
EndCursor
The exclusive end of the range. The range is empty if end_cursor <= start_cursor. Specifying a start_cursor before the first message and an end_cursor after the last message will retrieve all messages.
Declaration
[JsonProperty("endCursor")]
public virtual Cursor EndCursor { get; set; }
Property Value
Type | Description |
---|---|
Cursor |
Partition
Required. The partition for which we should compute message stats.
Declaration
[JsonProperty("partition")]
public virtual long? Partition { get; set; }
Property Value
Type | Description |
---|---|
long? |
StartCursor
The inclusive start of the range.
Declaration
[JsonProperty("startCursor")]
public virtual Cursor StartCursor { get; set; }
Property Value
Type | Description |
---|---|
Cursor |