Class ConsumerGroup
A Kafka consumer group in a given cluster.
Implements
Inherited Members
Namespace: Google.Apis.ManagedKafka .v1.Data
Assembly: Google.Apis.ManagedKafka.v1.dll
Syntax
public class ConsumerGroup : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Name
Identifier. The name of the consumer group. The consumer_group
segment is used when connecting directly to
the cluster. Structured like:
projects/{project}/locations/{location}/clusters/{cluster}/consumerGroups/{consumer_group}
Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
Topics
Optional. Metadata for this consumer group for all topics it has metadata for. The key of the map is a topic name, structured like: projects/{project}/locations/{location}/clusters/{cluster}/topics/{topic}
Declaration
[JsonProperty("topics")]
public virtual IDictionary<string, ConsumerTopicMetadata> Topics { get; set; }
Property Value
Type | Description |
---|---|
IDictionary<string, Consumer |