Show / Hide Table of Contents

Class Group

Represents the current state of a consumer group, including partition reservations and committed offsets.

Inheritance
object
Group
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.StreamingService.Models
Assembly: OCI.DotNetSDK.Streaming.dll
Syntax
public class Group

Properties

GroupName

Declaration
[Required(ErrorMessage = "GroupName is required.")]
[JsonProperty(PropertyName = "groupName")]
public string GroupName { get; set; }
Property Value
Type Description
string

The name of the consumer group.

Remarks

Required

Reservations

Declaration
[JsonProperty(PropertyName = "reservations")]
public List<PartitionReservation> Reservations { get; set; }
Property Value
Type Description
List<PartitionReservation>

An array of the partition reservations of a group.

StreamId

Declaration
[Required(ErrorMessage = "StreamId is required.")]
[JsonProperty(PropertyName = "streamId")]
public string StreamId { get; set; }
Property Value
Type Description
string

The streamId for which the group exists.

Remarks

Required

In this article
Back to top