Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ConsumerGroup

import type { ConsumerGroup } from "https://googleapis.deno.dev/v1/managedkafka:v1.ts";

A Kafka consumer group in a given cluster.

interface ConsumerGroup {
name?: string;
topics?: {
[key: string]: ConsumerTopicMetadata;
}
;
}

§Properties

§
name?: string
[src]

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}

§
topics?: {
[key: string]: ConsumerTopicMetadata;
}
[src]

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}