一组具有相同 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)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 描述。
- Group
Name string - 自定义设置Consumer Group 的名称,约束限制如下:只能由小写英文字符、数字、下划线和中划线(-)组成。长度为 3~64 字符。
- Instance
Id string - 所属 BMQ 实例 ID。
- Reset
Info Byteplus.Group Reset Info - 重置消费位点信息。
- Description string
- Consumer Group 描述。
- Group
Name string - 自定义设置Consumer Group 的名称,约束限制如下:只能由小写英文字符、数字、下划线和中划线(-)组成。长度为 3~64 字符。
- Instance
Id string - 所属 BMQ 实例 ID。
- Reset
Info GroupReset Info Args - 重置消费位点信息。
- description String
- Consumer Group 描述。
- group
Name String - 自定义设置Consumer Group 的名称,约束限制如下:只能由小写英文字符、数字、下划线和中划线(-)组成。长度为 3~64 字符。
- instance
Id String - 所属 BMQ 实例 ID。
- reset
Info GroupReset Info - 重置消费位点信息。
- description string
- Consumer Group 描述。
- group
Name string - 自定义设置Consumer Group 的名称,约束限制如下:只能由小写英文字符、数字、下划线和中划线(-)组成。长度为 3~64 字符。
- instance
Id string - 所属 BMQ 实例 ID。
- reset
Info GroupReset Info - 重置消费位点信息。
- description str
- Consumer Group 描述。
- group_
name str - 自定义设置Consumer Group 的名称,约束限制如下:只能由小写英文字符、数字、下划线和中划线(-)组成。长度为 3~64 字符。
- instance_
id str - 所属 BMQ 实例 ID。
- reset_
info GroupReset Info Args - 重置消费位点信息。
- description String
- Consumer Group 描述。
- group
Name String - 自定义设置Consumer Group 的名称,约束限制如下:只能由小写英文字符、数字、下划线和中划线(-)组成。长度为 3~64 字符。
- instance
Id String - 所属 BMQ 实例 ID。
- reset
Info Property Map - 重置消费位点信息。
Outputs
All input properties are implicitly available as output properties. Additionally, the Group resource produces the following output properties:
- Created
Time string - Consumer Group 创建时间。
- Group
Id string - Consumer Group 的 ID。
- Id string
- The provider-assigned unique ID for this managed resource.
- Owner
Id string - Consumer Group 所属用户的 ID。
- Owner
Name string - Consumer Group 所属用户的名称。
- Status string
- Consumer Group 的状态。
- Topic
Infos List<Byteplus.Group Topic Info>
- Created
Time string - Consumer Group 创建时间。
- Group
Id string - Consumer Group 的 ID。
- Id string
- The provider-assigned unique ID for this managed resource.
- Owner
Id string - Consumer Group 所属用户的 ID。
- Owner
Name string - Consumer Group 所属用户的名称。
- Status string
- Consumer Group 的状态。
- Topic
Infos []GroupTopic Info
- created
Time String - Consumer Group 创建时间。
- group
Id String - Consumer Group 的 ID。
- id String
- The provider-assigned unique ID for this managed resource.
- owner
Id String - Consumer Group 所属用户的 ID。
- owner
Name String - Consumer Group 所属用户的名称。
- status String
- Consumer Group 的状态。
- topic
Infos List<GroupTopic Info>
- created
Time string - Consumer Group 创建时间。
- group
Id string - Consumer Group 的 ID。
- id string
- The provider-assigned unique ID for this managed resource.
- owner
Id string - Consumer Group 所属用户的 ID。
- owner
Name string - Consumer Group 所属用户的名称。
- status string
- Consumer Group 的状态。
- topic
Infos GroupTopic Info[]
- 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[GroupTopic Info]
- created
Time String - Consumer Group 创建时间。
- group
Id String - Consumer Group 的 ID。
- id String
- The provider-assigned unique ID for this managed resource.
- owner
Id String - Consumer Group 所属用户的 ID。
- owner
Name String - Consumer Group 所属用户的名称。
- status String
- Consumer Group 的状态。
- topic
Infos 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) -> Groupfunc 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.
- Created
Time string - Consumer Group 创建时间。
- Description string
- Consumer Group 描述。
- Group
Id string - Consumer Group 的 ID。
- Group
Name string - 自定义设置Consumer Group 的名称,约束限制如下:只能由小写英文字符、数字、下划线和中划线(-)组成。长度为 3~64 字符。
- Instance
Id string - 所属 BMQ 实例 ID。
- Owner
Id string - Consumer Group 所属用户的 ID。
- Owner
Name string - Consumer Group 所属用户的名称。
- Reset
Info Byteplus.Group Reset Info - 重置消费位点信息。
- Status string
- Consumer Group 的状态。
- Topic
Infos List<Byteplus.Group Topic Info>
- Created
Time string - Consumer Group 创建时间。
- Description string
- Consumer Group 描述。
- Group
Id string - Consumer Group 的 ID。
- Group
Name string - 自定义设置Consumer Group 的名称,约束限制如下:只能由小写英文字符、数字、下划线和中划线(-)组成。长度为 3~64 字符。
- Instance
Id string - 所属 BMQ 实例 ID。
- Owner
Id string - Consumer Group 所属用户的 ID。
- Owner
Name string - Consumer Group 所属用户的名称。
- Reset
Info GroupReset Info Args - 重置消费位点信息。
- Status string
- Consumer Group 的状态。
- Topic
Infos []GroupTopic Info Args
- created
Time String - Consumer Group 创建时间。
- description String
- Consumer Group 描述。
- group
Id String - Consumer Group 的 ID。
- group
Name String - 自定义设置Consumer Group 的名称,约束限制如下:只能由小写英文字符、数字、下划线和中划线(-)组成。长度为 3~64 字符。
- instance
Id String - 所属 BMQ 实例 ID。
- owner
Id String - Consumer Group 所属用户的 ID。
- owner
Name String - Consumer Group 所属用户的名称。
- reset
Info GroupReset Info - 重置消费位点信息。
- status String
- Consumer Group 的状态。
- topic
Infos List<GroupTopic Info>
- created
Time string - Consumer Group 创建时间。
- description string
- Consumer Group 描述。
- group
Id string - Consumer Group 的 ID。
- group
Name string - 自定义设置Consumer Group 的名称,约束限制如下:只能由小写英文字符、数字、下划线和中划线(-)组成。长度为 3~64 字符。
- instance
Id string - 所属 BMQ 实例 ID。
- owner
Id string - Consumer Group 所属用户的 ID。
- owner
Name string - Consumer Group 所属用户的名称。
- reset
Info GroupReset Info - 重置消费位点信息。
- status string
- Consumer Group 的状态。
- topic
Infos GroupTopic Info[]
- 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 GroupReset Info Args - 重置消费位点信息。
- status str
- Consumer Group 的状态。
- topic_
infos Sequence[GroupTopic Info Args]
- created
Time String - Consumer Group 创建时间。
- description String
- Consumer Group 描述。
- group
Id String - Consumer Group 的 ID。
- group
Name String - 自定义设置Consumer Group 的名称,约束限制如下:只能由小写英文字符、数字、下划线和中划线(-)组成。长度为 3~64 字符。
- instance
Id String - 所属 BMQ 实例 ID。
- owner
Id String - Consumer Group 所属用户的 ID。
- owner
Name String - Consumer Group 所属用户的名称。
- reset
Info Property Map - 重置消费位点信息。
- status String
- Consumer Group 的状态。
- topic
Infos List<Property Map>
Supporting Types
GroupResetInfo, GroupResetInfoArgs
- Offset
Type string - 重置方式为 OFFSET 时,该参数必传,指定重新消费的基准消费位置,取值如下:EARLIEST:基准消费位置为最早消费位点。CURRENT:基准消费位置为当前消费位点。LATEST:基准消费位置为最近消费位点。
- Partition
Id int - 分区序号。
- Reset
By string - 重置方式,取值如下:TIMESTAMP:根据时间点重置消费位点,指定过去或将来的时间点,直接跳转到该时间点的位点开始消费。OFFSET:根据指定的 offset 重置消费位点,即从指定的位点开始消费,可以通过 offsetType 参数指定 offset。
- Reset
Value int - 重置值。选择重置方式为 TIMESTAMP 时,该值为重新消费的时间点。例如 1722224612000。选择重置方式为 OFFSET 时,该值为相对于 OffsetType 中基准位点的 相对偏移量。例如 100。
- Topic
Id string - Topic ID。
- Offset
Type string - 重置方式为 OFFSET 时,该参数必传,指定重新消费的基准消费位置,取值如下:EARLIEST:基准消费位置为最早消费位点。CURRENT:基准消费位置为当前消费位点。LATEST:基准消费位置为最近消费位点。
- Partition
Id int - 分区序号。
- Reset
By string - 重置方式,取值如下:TIMESTAMP:根据时间点重置消费位点,指定过去或将来的时间点,直接跳转到该时间点的位点开始消费。OFFSET:根据指定的 offset 重置消费位点,即从指定的位点开始消费,可以通过 offsetType 参数指定 offset。
- Reset
Value int - 重置值。选择重置方式为 TIMESTAMP 时,该值为重新消费的时间点。例如 1722224612000。选择重置方式为 OFFSET 时,该值为相对于 OffsetType 中基准位点的 相对偏移量。例如 100。
- Topic
Id string - Topic ID。
- offset
Type String - 重置方式为 OFFSET 时,该参数必传,指定重新消费的基准消费位置,取值如下:EARLIEST:基准消费位置为最早消费位点。CURRENT:基准消费位置为当前消费位点。LATEST:基准消费位置为最近消费位点。
- partition
Id Integer - 分区序号。
- reset
By String - 重置方式,取值如下:TIMESTAMP:根据时间点重置消费位点,指定过去或将来的时间点,直接跳转到该时间点的位点开始消费。OFFSET:根据指定的 offset 重置消费位点,即从指定的位点开始消费,可以通过 offsetType 参数指定 offset。
- reset
Value Integer - 重置值。选择重置方式为 TIMESTAMP 时,该值为重新消费的时间点。例如 1722224612000。选择重置方式为 OFFSET 时,该值为相对于 OffsetType 中基准位点的 相对偏移量。例如 100。
- topic
Id String - Topic ID。
- offset
Type string - 重置方式为 OFFSET 时,该参数必传,指定重新消费的基准消费位置,取值如下:EARLIEST:基准消费位置为最早消费位点。CURRENT:基准消费位置为当前消费位点。LATEST:基准消费位置为最近消费位点。
- partition
Id number - 分区序号。
- reset
By string - 重置方式,取值如下:TIMESTAMP:根据时间点重置消费位点,指定过去或将来的时间点,直接跳转到该时间点的位点开始消费。OFFSET:根据指定的 offset 重置消费位点,即从指定的位点开始消费,可以通过 offsetType 参数指定 offset。
- reset
Value number - 重置值。选择重置方式为 TIMESTAMP 时,该值为重新消费的时间点。例如 1722224612000。选择重置方式为 OFFSET 时,该值为相对于 OffsetType 中基准位点的 相对偏移量。例如 100。
- topic
Id 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。
- offset
Type String - 重置方式为 OFFSET 时,该参数必传,指定重新消费的基准消费位置,取值如下:EARLIEST:基准消费位置为最早消费位点。CURRENT:基准消费位置为当前消费位点。LATEST:基准消费位置为最近消费位点。
- partition
Id Number - 分区序号。
- reset
By String - 重置方式,取值如下:TIMESTAMP:根据时间点重置消费位点,指定过去或将来的时间点,直接跳转到该时间点的位点开始消费。OFFSET:根据指定的 offset 重置消费位点,即从指定的位点开始消费,可以通过 offsetType 参数指定 offset。
- reset
Value Number - 重置值。选择重置方式为 TIMESTAMP 时,该值为重新消费的时间点。例如 1722224612000。选择重置方式为 OFFSET 时,该值为相对于 OffsetType 中基准位点的 相对偏移量。例如 100。
- topic
Id String - Topic ID。
GroupTopicInfo, GroupTopicInfoArgs
- Create
Time string - Topic 的创建时间。
- Description string
- Topic 的描述语句。
- Lag int
- Topic 中未被消费的消息条数。
- Partition
Infos List<Byteplus.Group Topic Info Partition Info> - Partitions int
- Topic 分区数。
- Retention int
- 数据在 Topic 中的保留时长,单位为小时。
- Status string
- Topic 的状态。
- Topic
Id string - Topic ID。
- Topic
Name string - Topic 的名称。
- Create
Time string - Topic 的创建时间。
- Description string
- Topic 的描述语句。
- Lag int
- Topic 中未被消费的消息条数。
- Partition
Infos []GroupTopic Info Partition Info - Partitions int
- Topic 分区数。
- Retention int
- 数据在 Topic 中的保留时长,单位为小时。
- Status string
- Topic 的状态。
- Topic
Id string - Topic ID。
- Topic
Name string - Topic 的名称。
- create
Time String - Topic 的创建时间。
- description String
- Topic 的描述语句。
- lag Integer
- Topic 中未被消费的消息条数。
- partition
Infos List<GroupTopic Info Partition Info> - partitions Integer
- Topic 分区数。
- retention Integer
- 数据在 Topic 中的保留时长,单位为小时。
- status String
- Topic 的状态。
- topic
Id String - Topic ID。
- topic
Name String - Topic 的名称。
- create
Time string - Topic 的创建时间。
- description string
- Topic 的描述语句。
- lag number
- Topic 中未被消费的消息条数。
- partition
Infos GroupTopic Info Partition Info[] - partitions number
- Topic 分区数。
- retention number
- 数据在 Topic 中的保留时长,单位为小时。
- status string
- Topic 的状态。
- topic
Id string - Topic ID。
- topic
Name string - Topic 的名称。
- create_
time str - Topic 的创建时间。
- description str
- Topic 的描述语句。
- lag int
- Topic 中未被消费的消息条数。
- partition_
infos Sequence[GroupTopic Info Partition Info] - partitions int
- Topic 分区数。
- retention int
- 数据在 Topic 中的保留时长,单位为小时。
- status str
- Topic 的状态。
- topic_
id str - Topic ID。
- topic_
name str - Topic 的名称。
- create
Time String - Topic 的创建时间。
- description String
- Topic 的描述语句。
- lag Number
- Topic 中未被消费的消息条数。
- partition
Infos List<Property Map> - partitions Number
- Topic 分区数。
- retention Number
- 数据在 Topic 中的保留时长,单位为小时。
- status String
- Topic 的状态。
- topic
Id String - Topic ID。
- topic
Name String - Topic 的名称。
GroupTopicInfoPartitionInfo, GroupTopicInfoPartitionInfoArgs
- Current
Offset int - 当前消费位点。
- Group
Name string - Consumer Group 的名称。
- Lag int
- 分区中未被消费的消息条数。
- Latest
Offset int - 最新消费位点。
- Partition
Id int - 分区序号。
- Topic
Name string - Consumer Group 订阅的 Topic 名称。
- Current
Offset int - 当前消费位点。
- Group
Name string - Consumer Group 的名称。
- Lag int
- 分区中未被消费的消息条数。
- Latest
Offset int - 最新消费位点。
- Partition
Id int - 分区序号。
- Topic
Name string - Consumer Group 订阅的 Topic 名称。
- current
Offset Integer - 当前消费位点。
- group
Name String - Consumer Group 的名称。
- lag Integer
- 分区中未被消费的消息条数。
- latest
Offset Integer - 最新消费位点。
- partition
Id Integer - 分区序号。
- topic
Name String - Consumer Group 订阅的 Topic 名称。
- current
Offset number - 当前消费位点。
- group
Name string - Consumer Group 的名称。
- lag number
- 分区中未被消费的消息条数。
- latest
Offset number - 最新消费位点。
- partition
Id number - 分区序号。
- topic
Name 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 名称。
- current
Offset Number - 当前消费位点。
- group
Name String - Consumer Group 的名称。
- lag Number
- 分区中未被消费的消息条数。
- latest
Offset Number - 最新消费位点。
- partition
Id Number - 分区序号。
- topic
Name 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
byteplusccTerraform Provider.
