1. Packages
  2. Bytepluscc Provider
  3. API Docs
  4. bmq
  5. Group
bytepluscc v0.0.11 published on Wednesday, Jan 21, 2026 by Byteplus
bytepluscc logo
bytepluscc v0.0.11 published on Wednesday, Jan 21, 2026 by Byteplus

    一组具有相同 Group ID 的消费端。当一个 Topic 被同一个 Group 的多个 Consumer 消费时,每一条消息都只会被投递到一个 Consumer,实现消费的负载均衡。通过 Group,您可以确保一个 Topic 的消息被并行消费。

    Example Usage

    Example coming soon!
    
    Example coming soon!
    
    Example coming soon!
    
    Example coming soon!
    
    Example coming soon!
    
    resources:
      bMQGroupDemo:
        type: bytepluscc:bmq:Group
        name: BMQGroupDemo
        properties:
          description: this is test group
          groupName: cBMQGroupDemo
          instanceId: bmq-4ld4vpjzd32tq1gxxxxx
          resetInfo:
            topic_id: 5f81fcab96cb46c7955659fdxxxxx
            reset_by: OFFSET
            offset_type: LATEST
            reset_value: 4
            partition_id: 1
    

    Create Group Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Group(name: string, args?: GroupArgs, opts?: CustomResourceOptions);
    @overload
    def Group(resource_name: str,
              args: Optional[GroupArgs] = None,
              opts: Optional[ResourceOptions] = None)
    
    @overload
    def Group(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              description: Optional[str] = None,
              group_name: Optional[str] = None,
              instance_id: Optional[str] = None,
              reset_info: Optional[GroupResetInfoArgs] = None)
    func NewGroup(ctx *Context, name string, args *GroupArgs, opts ...ResourceOption) (*Group, error)
    public Group(string name, GroupArgs? args = null, CustomResourceOptions? opts = null)
    public Group(String name, GroupArgs args)
    public Group(String name, GroupArgs args, CustomResourceOptions options)
    
    type: bytepluscc:bmq:Group
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args GroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args GroupArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args GroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GroupArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var groupResource = new Bytepluscc.Bmq.Group("groupResource", new()
    {
        Description = "string",
        GroupName = "string",
        InstanceId = "string",
        ResetInfo = new Bytepluscc.Bmq.Inputs.GroupResetInfoArgs
        {
            OffsetType = "string",
            PartitionId = 0,
            ResetBy = "string",
            ResetValue = 0,
            TopicId = "string",
        },
    });
    
    example, err := bmq.NewGroup(ctx, "groupResource", &bmq.GroupArgs{
    	Description: pulumi.String("string"),
    	GroupName:   pulumi.String("string"),
    	InstanceId:  pulumi.String("string"),
    	ResetInfo: &bmq.GroupResetInfoArgs{
    		OffsetType:  pulumi.String("string"),
    		PartitionId: pulumi.Int(0),
    		ResetBy:     pulumi.String("string"),
    		ResetValue:  pulumi.Int(0),
    		TopicId:     pulumi.String("string"),
    	},
    })
    
    var groupResource = new com.byteplus.bytepluscc.bmq.Group("groupResource", com.byteplus.bytepluscc.bmq.GroupArgs.builder()
        .description("string")
        .groupName("string")
        .instanceId("string")
        .resetInfo(GroupResetInfoArgs.builder()
            .offsetType("string")
            .partitionId(0)
            .resetBy("string")
            .resetValue(0)
            .topicId("string")
            .build())
        .build());
    
    group_resource = bytepluscc.bmq.Group("groupResource",
        description="string",
        group_name="string",
        instance_id="string",
        reset_info={
            "offset_type": "string",
            "partition_id": 0,
            "reset_by": "string",
            "reset_value": 0,
            "topic_id": "string",
        })
    
    const groupResource = new bytepluscc.bmq.Group("groupResource", {
        description: "string",
        groupName: "string",
        instanceId: "string",
        resetInfo: {
            offsetType: "string",
            partitionId: 0,
            resetBy: "string",
            resetValue: 0,
            topicId: "string",
        },
    });
    
    type: bytepluscc:bmq:Group
    properties:
        description: string
        groupName: string
        instanceId: string
        resetInfo:
            offsetType: string
            partitionId: 0
            resetBy: string
            resetValue: 0
            topicId: string
    

    Group Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The Group resource accepts the following input properties:

    Description string
    Consumer Group 描述。
    GroupName string
    自定义设置Consumer Group 的名称,约束限制如下:只能由小写英文字符、数字、下划线和中划线(-)组成。长度为 3~64 字符。
    InstanceId string
    所属 BMQ 实例 ID。
    ResetInfo Byteplus.GroupResetInfo
    重置消费位点信息。
    Description string
    Consumer Group 描述。
    GroupName string
    自定义设置Consumer Group 的名称,约束限制如下:只能由小写英文字符、数字、下划线和中划线(-)组成。长度为 3~64 字符。
    InstanceId string
    所属 BMQ 实例 ID。
    ResetInfo GroupResetInfoArgs
    重置消费位点信息。
    description String
    Consumer Group 描述。
    groupName String
    自定义设置Consumer Group 的名称,约束限制如下:只能由小写英文字符、数字、下划线和中划线(-)组成。长度为 3~64 字符。
    instanceId String
    所属 BMQ 实例 ID。
    resetInfo GroupResetInfo
    重置消费位点信息。
    description string
    Consumer Group 描述。
    groupName string
    自定义设置Consumer Group 的名称,约束限制如下:只能由小写英文字符、数字、下划线和中划线(-)组成。长度为 3~64 字符。
    instanceId string
    所属 BMQ 实例 ID。
    resetInfo GroupResetInfo
    重置消费位点信息。
    description str
    Consumer Group 描述。
    group_name str
    自定义设置Consumer Group 的名称,约束限制如下:只能由小写英文字符、数字、下划线和中划线(-)组成。长度为 3~64 字符。
    instance_id str
    所属 BMQ 实例 ID。
    reset_info GroupResetInfoArgs
    重置消费位点信息。
    description String
    Consumer Group 描述。
    groupName String
    自定义设置Consumer Group 的名称,约束限制如下:只能由小写英文字符、数字、下划线和中划线(-)组成。长度为 3~64 字符。
    instanceId String
    所属 BMQ 实例 ID。
    resetInfo Property Map
    重置消费位点信息。

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Group resource produces the following output properties:

    CreatedTime string
    Consumer Group 创建时间。
    GroupId string
    Consumer Group 的 ID。
    Id string
    The provider-assigned unique ID for this managed resource.
    OwnerId string
    Consumer Group 所属用户的 ID。
    OwnerName string
    Consumer Group 所属用户的名称。
    Status string
    Consumer Group 的状态。
    TopicInfos List<Byteplus.GroupTopicInfo>
    CreatedTime string
    Consumer Group 创建时间。
    GroupId string
    Consumer Group 的 ID。
    Id string
    The provider-assigned unique ID for this managed resource.
    OwnerId string
    Consumer Group 所属用户的 ID。
    OwnerName string
    Consumer Group 所属用户的名称。
    Status string
    Consumer Group 的状态。
    TopicInfos []GroupTopicInfo
    createdTime String
    Consumer Group 创建时间。
    groupId String
    Consumer Group 的 ID。
    id String
    The provider-assigned unique ID for this managed resource.
    ownerId String
    Consumer Group 所属用户的 ID。
    ownerName String
    Consumer Group 所属用户的名称。
    status String
    Consumer Group 的状态。
    topicInfos List<GroupTopicInfo>
    createdTime string
    Consumer Group 创建时间。
    groupId string
    Consumer Group 的 ID。
    id string
    The provider-assigned unique ID for this managed resource.
    ownerId string
    Consumer Group 所属用户的 ID。
    ownerName string
    Consumer Group 所属用户的名称。
    status string
    Consumer Group 的状态。
    topicInfos GroupTopicInfo[]
    created_time str
    Consumer Group 创建时间。
    group_id str
    Consumer Group 的 ID。
    id str
    The provider-assigned unique ID for this managed resource.
    owner_id str
    Consumer Group 所属用户的 ID。
    owner_name str
    Consumer Group 所属用户的名称。
    status str
    Consumer Group 的状态。
    topic_infos Sequence[GroupTopicInfo]
    createdTime String
    Consumer Group 创建时间。
    groupId String
    Consumer Group 的 ID。
    id String
    The provider-assigned unique ID for this managed resource.
    ownerId String
    Consumer Group 所属用户的 ID。
    ownerName String
    Consumer Group 所属用户的名称。
    status String
    Consumer Group 的状态。
    topicInfos List<Property Map>

    Look up Existing Group Resource

    Get an existing Group resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: GroupState, opts?: CustomResourceOptions): Group
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            created_time: Optional[str] = None,
            description: Optional[str] = None,
            group_id: Optional[str] = None,
            group_name: Optional[str] = None,
            instance_id: Optional[str] = None,
            owner_id: Optional[str] = None,
            owner_name: Optional[str] = None,
            reset_info: Optional[GroupResetInfoArgs] = None,
            status: Optional[str] = None,
            topic_infos: Optional[Sequence[GroupTopicInfoArgs]] = None) -> Group
    func GetGroup(ctx *Context, name string, id IDInput, state *GroupState, opts ...ResourceOption) (*Group, error)
    public static Group Get(string name, Input<string> id, GroupState? state, CustomResourceOptions? opts = null)
    public static Group get(String name, Output<String> id, GroupState state, CustomResourceOptions options)
    resources:  _:    type: bytepluscc:bmq:Group    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CreatedTime string
    Consumer Group 创建时间。
    Description string
    Consumer Group 描述。
    GroupId string
    Consumer Group 的 ID。
    GroupName string
    自定义设置Consumer Group 的名称,约束限制如下:只能由小写英文字符、数字、下划线和中划线(-)组成。长度为 3~64 字符。
    InstanceId string
    所属 BMQ 实例 ID。
    OwnerId string
    Consumer Group 所属用户的 ID。
    OwnerName string
    Consumer Group 所属用户的名称。
    ResetInfo Byteplus.GroupResetInfo
    重置消费位点信息。
    Status string
    Consumer Group 的状态。
    TopicInfos List<Byteplus.GroupTopicInfo>
    CreatedTime string
    Consumer Group 创建时间。
    Description string
    Consumer Group 描述。
    GroupId string
    Consumer Group 的 ID。
    GroupName string
    自定义设置Consumer Group 的名称,约束限制如下:只能由小写英文字符、数字、下划线和中划线(-)组成。长度为 3~64 字符。
    InstanceId string
    所属 BMQ 实例 ID。
    OwnerId string
    Consumer Group 所属用户的 ID。
    OwnerName string
    Consumer Group 所属用户的名称。
    ResetInfo GroupResetInfoArgs
    重置消费位点信息。
    Status string
    Consumer Group 的状态。
    TopicInfos []GroupTopicInfoArgs
    createdTime String
    Consumer Group 创建时间。
    description String
    Consumer Group 描述。
    groupId String
    Consumer Group 的 ID。
    groupName String
    自定义设置Consumer Group 的名称,约束限制如下:只能由小写英文字符、数字、下划线和中划线(-)组成。长度为 3~64 字符。
    instanceId String
    所属 BMQ 实例 ID。
    ownerId String
    Consumer Group 所属用户的 ID。
    ownerName String
    Consumer Group 所属用户的名称。
    resetInfo GroupResetInfo
    重置消费位点信息。
    status String
    Consumer Group 的状态。
    topicInfos List<GroupTopicInfo>
    createdTime string
    Consumer Group 创建时间。
    description string
    Consumer Group 描述。
    groupId string
    Consumer Group 的 ID。
    groupName string
    自定义设置Consumer Group 的名称,约束限制如下:只能由小写英文字符、数字、下划线和中划线(-)组成。长度为 3~64 字符。
    instanceId string
    所属 BMQ 实例 ID。
    ownerId string
    Consumer Group 所属用户的 ID。
    ownerName string
    Consumer Group 所属用户的名称。
    resetInfo GroupResetInfo
    重置消费位点信息。
    status string
    Consumer Group 的状态。
    topicInfos GroupTopicInfo[]
    created_time str
    Consumer Group 创建时间。
    description str
    Consumer Group 描述。
    group_id str
    Consumer Group 的 ID。
    group_name str
    自定义设置Consumer Group 的名称,约束限制如下:只能由小写英文字符、数字、下划线和中划线(-)组成。长度为 3~64 字符。
    instance_id str
    所属 BMQ 实例 ID。
    owner_id str
    Consumer Group 所属用户的 ID。
    owner_name str
    Consumer Group 所属用户的名称。
    reset_info GroupResetInfoArgs
    重置消费位点信息。
    status str
    Consumer Group 的状态。
    topic_infos Sequence[GroupTopicInfoArgs]
    createdTime String
    Consumer Group 创建时间。
    description String
    Consumer Group 描述。
    groupId String
    Consumer Group 的 ID。
    groupName String
    自定义设置Consumer Group 的名称,约束限制如下:只能由小写英文字符、数字、下划线和中划线(-)组成。长度为 3~64 字符。
    instanceId String
    所属 BMQ 实例 ID。
    ownerId String
    Consumer Group 所属用户的 ID。
    ownerName String
    Consumer Group 所属用户的名称。
    resetInfo Property Map
    重置消费位点信息。
    status String
    Consumer Group 的状态。
    topicInfos List<Property Map>

    Supporting Types

    GroupResetInfo, GroupResetInfoArgs

    OffsetType string
    重置方式为 OFFSET 时,该参数必传,指定重新消费的基准消费位置,取值如下:EARLIEST:基准消费位置为最早消费位点。CURRENT:基准消费位置为当前消费位点。LATEST:基准消费位置为最近消费位点。
    PartitionId int
    分区序号。
    ResetBy string
    重置方式,取值如下:TIMESTAMP:根据时间点重置消费位点,指定过去或将来的时间点,直接跳转到该时间点的位点开始消费。OFFSET:根据指定的 offset 重置消费位点,即从指定的位点开始消费,可以通过 offsetType 参数指定 offset。
    ResetValue int
    重置值。选择重置方式为 TIMESTAMP 时,该值为重新消费的时间点。例如 1722224612000。选择重置方式为 OFFSET 时,该值为相对于 OffsetType 中基准位点的 相对偏移量。例如 100。
    TopicId string
    Topic ID。
    OffsetType string
    重置方式为 OFFSET 时,该参数必传,指定重新消费的基准消费位置,取值如下:EARLIEST:基准消费位置为最早消费位点。CURRENT:基准消费位置为当前消费位点。LATEST:基准消费位置为最近消费位点。
    PartitionId int
    分区序号。
    ResetBy string
    重置方式,取值如下:TIMESTAMP:根据时间点重置消费位点,指定过去或将来的时间点,直接跳转到该时间点的位点开始消费。OFFSET:根据指定的 offset 重置消费位点,即从指定的位点开始消费,可以通过 offsetType 参数指定 offset。
    ResetValue int
    重置值。选择重置方式为 TIMESTAMP 时,该值为重新消费的时间点。例如 1722224612000。选择重置方式为 OFFSET 时,该值为相对于 OffsetType 中基准位点的 相对偏移量。例如 100。
    TopicId string
    Topic ID。
    offsetType String
    重置方式为 OFFSET 时,该参数必传,指定重新消费的基准消费位置,取值如下:EARLIEST:基准消费位置为最早消费位点。CURRENT:基准消费位置为当前消费位点。LATEST:基准消费位置为最近消费位点。
    partitionId Integer
    分区序号。
    resetBy String
    重置方式,取值如下:TIMESTAMP:根据时间点重置消费位点,指定过去或将来的时间点,直接跳转到该时间点的位点开始消费。OFFSET:根据指定的 offset 重置消费位点,即从指定的位点开始消费,可以通过 offsetType 参数指定 offset。
    resetValue Integer
    重置值。选择重置方式为 TIMESTAMP 时,该值为重新消费的时间点。例如 1722224612000。选择重置方式为 OFFSET 时,该值为相对于 OffsetType 中基准位点的 相对偏移量。例如 100。
    topicId String
    Topic ID。
    offsetType string
    重置方式为 OFFSET 时,该参数必传,指定重新消费的基准消费位置,取值如下:EARLIEST:基准消费位置为最早消费位点。CURRENT:基准消费位置为当前消费位点。LATEST:基准消费位置为最近消费位点。
    partitionId number
    分区序号。
    resetBy string
    重置方式,取值如下:TIMESTAMP:根据时间点重置消费位点,指定过去或将来的时间点,直接跳转到该时间点的位点开始消费。OFFSET:根据指定的 offset 重置消费位点,即从指定的位点开始消费,可以通过 offsetType 参数指定 offset。
    resetValue number
    重置值。选择重置方式为 TIMESTAMP 时,该值为重新消费的时间点。例如 1722224612000。选择重置方式为 OFFSET 时,该值为相对于 OffsetType 中基准位点的 相对偏移量。例如 100。
    topicId string
    Topic ID。
    offset_type str
    重置方式为 OFFSET 时,该参数必传,指定重新消费的基准消费位置,取值如下:EARLIEST:基准消费位置为最早消费位点。CURRENT:基准消费位置为当前消费位点。LATEST:基准消费位置为最近消费位点。
    partition_id int
    分区序号。
    reset_by str
    重置方式,取值如下:TIMESTAMP:根据时间点重置消费位点,指定过去或将来的时间点,直接跳转到该时间点的位点开始消费。OFFSET:根据指定的 offset 重置消费位点,即从指定的位点开始消费,可以通过 offsetType 参数指定 offset。
    reset_value int
    重置值。选择重置方式为 TIMESTAMP 时,该值为重新消费的时间点。例如 1722224612000。选择重置方式为 OFFSET 时,该值为相对于 OffsetType 中基准位点的 相对偏移量。例如 100。
    topic_id str
    Topic ID。
    offsetType String
    重置方式为 OFFSET 时,该参数必传,指定重新消费的基准消费位置,取值如下:EARLIEST:基准消费位置为最早消费位点。CURRENT:基准消费位置为当前消费位点。LATEST:基准消费位置为最近消费位点。
    partitionId Number
    分区序号。
    resetBy String
    重置方式,取值如下:TIMESTAMP:根据时间点重置消费位点,指定过去或将来的时间点,直接跳转到该时间点的位点开始消费。OFFSET:根据指定的 offset 重置消费位点,即从指定的位点开始消费,可以通过 offsetType 参数指定 offset。
    resetValue Number
    重置值。选择重置方式为 TIMESTAMP 时,该值为重新消费的时间点。例如 1722224612000。选择重置方式为 OFFSET 时,该值为相对于 OffsetType 中基准位点的 相对偏移量。例如 100。
    topicId String
    Topic ID。

    GroupTopicInfo, GroupTopicInfoArgs

    CreateTime string
    Topic 的创建时间。
    Description string
    Topic 的描述语句。
    Lag int
    Topic 中未被消费的消息条数。
    PartitionInfos List<Byteplus.GroupTopicInfoPartitionInfo>
    Partitions int
    Topic 分区数。
    Retention int
    数据在 Topic 中的保留时长,单位为小时。
    Status string
    Topic 的状态。
    TopicId string
    Topic ID。
    TopicName string
    Topic 的名称。
    CreateTime string
    Topic 的创建时间。
    Description string
    Topic 的描述语句。
    Lag int
    Topic 中未被消费的消息条数。
    PartitionInfos []GroupTopicInfoPartitionInfo
    Partitions int
    Topic 分区数。
    Retention int
    数据在 Topic 中的保留时长,单位为小时。
    Status string
    Topic 的状态。
    TopicId string
    Topic ID。
    TopicName string
    Topic 的名称。
    createTime String
    Topic 的创建时间。
    description String
    Topic 的描述语句。
    lag Integer
    Topic 中未被消费的消息条数。
    partitionInfos List<GroupTopicInfoPartitionInfo>
    partitions Integer
    Topic 分区数。
    retention Integer
    数据在 Topic 中的保留时长,单位为小时。
    status String
    Topic 的状态。
    topicId String
    Topic ID。
    topicName String
    Topic 的名称。
    createTime string
    Topic 的创建时间。
    description string
    Topic 的描述语句。
    lag number
    Topic 中未被消费的消息条数。
    partitionInfos GroupTopicInfoPartitionInfo[]
    partitions number
    Topic 分区数。
    retention number
    数据在 Topic 中的保留时长,单位为小时。
    status string
    Topic 的状态。
    topicId string
    Topic ID。
    topicName string
    Topic 的名称。
    create_time str
    Topic 的创建时间。
    description str
    Topic 的描述语句。
    lag int
    Topic 中未被消费的消息条数。
    partition_infos Sequence[GroupTopicInfoPartitionInfo]
    partitions int
    Topic 分区数。
    retention int
    数据在 Topic 中的保留时长,单位为小时。
    status str
    Topic 的状态。
    topic_id str
    Topic ID。
    topic_name str
    Topic 的名称。
    createTime String
    Topic 的创建时间。
    description String
    Topic 的描述语句。
    lag Number
    Topic 中未被消费的消息条数。
    partitionInfos List<Property Map>
    partitions Number
    Topic 分区数。
    retention Number
    数据在 Topic 中的保留时长,单位为小时。
    status String
    Topic 的状态。
    topicId String
    Topic ID。
    topicName String
    Topic 的名称。

    GroupTopicInfoPartitionInfo, GroupTopicInfoPartitionInfoArgs

    CurrentOffset int
    当前消费位点。
    GroupName string
    Consumer Group 的名称。
    Lag int
    分区中未被消费的消息条数。
    LatestOffset int
    最新消费位点。
    PartitionId int
    分区序号。
    TopicName string
    Consumer Group 订阅的 Topic 名称。
    CurrentOffset int
    当前消费位点。
    GroupName string
    Consumer Group 的名称。
    Lag int
    分区中未被消费的消息条数。
    LatestOffset int
    最新消费位点。
    PartitionId int
    分区序号。
    TopicName string
    Consumer Group 订阅的 Topic 名称。
    currentOffset Integer
    当前消费位点。
    groupName String
    Consumer Group 的名称。
    lag Integer
    分区中未被消费的消息条数。
    latestOffset Integer
    最新消费位点。
    partitionId Integer
    分区序号。
    topicName String
    Consumer Group 订阅的 Topic 名称。
    currentOffset number
    当前消费位点。
    groupName string
    Consumer Group 的名称。
    lag number
    分区中未被消费的消息条数。
    latestOffset number
    最新消费位点。
    partitionId number
    分区序号。
    topicName string
    Consumer Group 订阅的 Topic 名称。
    current_offset int
    当前消费位点。
    group_name str
    Consumer Group 的名称。
    lag int
    分区中未被消费的消息条数。
    latest_offset int
    最新消费位点。
    partition_id int
    分区序号。
    topic_name str
    Consumer Group 订阅的 Topic 名称。
    currentOffset Number
    当前消费位点。
    groupName String
    Consumer Group 的名称。
    lag Number
    分区中未被消费的消息条数。
    latestOffset Number
    最新消费位点。
    partitionId Number
    分区序号。
    topicName String
    Consumer Group 订阅的 Topic 名称。

    Import

    $ pulumi import bytepluscc:bmq/group:Group example "group_id"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    bytepluscc byteplus-sdk/pulumi-bytepluscc
    License
    MPL-2.0
    Notes
    This Pulumi package is based on the bytepluscc Terraform Provider.
    bytepluscc logo
    bytepluscc v0.0.11 published on Wednesday, Jan 21, 2026 by Byteplus
      Meet Neo: Your AI Platform Teammate