Class: Google::Apis::PubsubliteV1::ComputeMessageStatsRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/pubsublite_v1/classes.rb,
generated/google/apis/pubsublite_v1/representations.rb,
generated/google/apis/pubsublite_v1/representations.rb

Overview

Compute statistics about a range of messages in a given topic and partition.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ComputeMessageStatsRequest

Returns a new instance of ComputeMessageStatsRequest.



69
70
71
# File 'generated/google/apis/pubsublite_v1/classes.rb', line 69

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#end_cursorGoogle::Apis::PubsubliteV1::Cursor

A cursor that describes the position of a message within a topic partition. Corresponds to the JSON property endCursor



57
58
59
# File 'generated/google/apis/pubsublite_v1/classes.rb', line 57

def end_cursor
  @end_cursor
end

#partitionFixnum

Required. The partition for which we should compute message stats. Corresponds to the JSON property partition

Returns:

  • (Fixnum)


62
63
64
# File 'generated/google/apis/pubsublite_v1/classes.rb', line 62

def partition
  @partition
end

#start_cursorGoogle::Apis::PubsubliteV1::Cursor

A cursor that describes the position of a message within a topic partition. Corresponds to the JSON property startCursor



67
68
69
# File 'generated/google/apis/pubsublite_v1/classes.rb', line 67

def start_cursor
  @start_cursor
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



74
75
76
77
78
# File 'generated/google/apis/pubsublite_v1/classes.rb', line 74

def update!(**args)
  @end_cursor = args[:end_cursor] if args.key?(:end_cursor)
  @partition = args[:partition] if args.key?(:partition)
  @start_cursor = args[:start_cursor] if args.key?(:start_cursor)
end