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

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/pubsublite_v1/classes.rb,
lib/google/apis/pubsublite_v1/representations.rb,
lib/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.



146
147
148
# File 'lib/google/apis/pubsublite_v1/classes.rb', line 146

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



134
135
136
# File 'lib/google/apis/pubsublite_v1/classes.rb', line 134

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)


139
140
141
# File 'lib/google/apis/pubsublite_v1/classes.rb', line 139

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



144
145
146
# File 'lib/google/apis/pubsublite_v1/classes.rb', line 144

def start_cursor
  @start_cursor
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



151
152
153
154
155
# File 'lib/google/apis/pubsublite_v1/classes.rb', line 151

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