1. Packages
  2. Packages
  3. Volcenginecc Provider
  4. API Docs
  5. bmq
  6. Instance
Viewing docs for volcenginecc v0.0.32
published on Thursday, Apr 23, 2026 by Volcengine
volcenginecc logo
Viewing docs for volcenginecc v0.0.32
published on Thursday, Apr 23, 2026 by Volcengine

    The cloud-native messaging engine is 100% compatible with the Apache Kafka protocol. It offers a fully managed, high-throughput, low-latency, highly available, highly scalable, and highly stable distributed messaging engine service based on cloud-native architecture. Supports flexible and dynamic scaling, integrated stream and batch processing, and provides enterprise-grade real-time stream data processing capabilities for large-scale data. Helps you build the ‘central nervous system’ for data processing, widely used in scenarios such as log collection, data aggregation, and offline data analysis.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as volcenginecc from "@volcengine/pulumi-volcenginecc";
    
    const bMQInstanceDemo = new volcenginecc.bmq.Instance("BMQInstanceDemo", {
        name: "BMQInstanceDemo",
        billingType: "POST",
        projectName: "default",
        specification: "bmq.standard",
        vpcId: "vpc-miltj87lh2ww5smt1bxxxxx",
        messageRetention: 1,
        endpoints: {
            "public": {
                eipId: "eip-3nriu2y2ufwu8931exxxxx",
            },
            overlay: {
                vpcIds: ["vpc-miltj87lh2ww5smt1bxxxxx"],
            },
        },
        securityGroupIdLists: ["sg-3nqnz9en1ucxs931eaxxxxx"],
        subnetIdLists: ["subnet-w02wsq25fitc865ykaxxxxx"],
        zoneIdLists: ["cn-beijing-a"],
        tags: [{
            key: "env",
            type: "CUSTOM",
            value: "test",
        }],
    });
    
    import pulumi
    import pulumi_volcenginecc as volcenginecc
    
    b_mq_instance_demo = volcenginecc.bmq.Instance("BMQInstanceDemo",
        name="BMQInstanceDemo",
        billing_type="POST",
        project_name="default",
        specification="bmq.standard",
        vpc_id="vpc-miltj87lh2ww5smt1bxxxxx",
        message_retention=1,
        endpoints={
            "public": {
                "eip_id": "eip-3nriu2y2ufwu8931exxxxx",
            },
            "overlay": {
                "vpc_ids": ["vpc-miltj87lh2ww5smt1bxxxxx"],
            },
        },
        security_group_id_lists=["sg-3nqnz9en1ucxs931eaxxxxx"],
        subnet_id_lists=["subnet-w02wsq25fitc865ykaxxxxx"],
        zone_id_lists=["cn-beijing-a"],
        tags=[{
            "key": "env",
            "type": "CUSTOM",
            "value": "test",
        }])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/volcengine/pulumi-volcenginecc/sdk/go/volcenginecc/bmq"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := bmq.NewInstance(ctx, "BMQInstanceDemo", &bmq.InstanceArgs{
    			Name:             pulumi.String("BMQInstanceDemo"),
    			BillingType:      pulumi.String("POST"),
    			ProjectName:      pulumi.String("default"),
    			Specification:    pulumi.String("bmq.standard"),
    			VpcId:            pulumi.String("vpc-miltj87lh2ww5smt1bxxxxx"),
    			MessageRetention: pulumi.Int(1),
    			Endpoints: &bmq.InstanceEndpointsArgs{
    				Public: &bmq.InstanceEndpointsPublicArgs{
    					EipId: pulumi.String("eip-3nriu2y2ufwu8931exxxxx"),
    				},
    				Overlay: &bmq.InstanceEndpointsOverlayArgs{
    					VpcIds: pulumi.StringArray{
    						pulumi.String("vpc-miltj87lh2ww5smt1bxxxxx"),
    					},
    				},
    			},
    			SecurityGroupIdLists: pulumi.StringArray{
    				pulumi.String("sg-3nqnz9en1ucxs931eaxxxxx"),
    			},
    			SubnetIdLists: pulumi.StringArray{
    				pulumi.String("subnet-w02wsq25fitc865ykaxxxxx"),
    			},
    			ZoneIdLists: pulumi.StringArray{
    				pulumi.String("cn-beijing-a"),
    			},
    			Tags: bmq.InstanceTagArray{
    				&bmq.InstanceTagArgs{
    					Key:   pulumi.String("env"),
    					Type:  pulumi.String("CUSTOM"),
    					Value: pulumi.String("test"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Volcenginecc = Volcengine.Pulumi.Volcenginecc;
    
    return await Deployment.RunAsync(() => 
    {
        var bMQInstanceDemo = new Volcenginecc.Bmq.Instance("BMQInstanceDemo", new()
        {
            Name = "BMQInstanceDemo",
            BillingType = "POST",
            ProjectName = "default",
            Specification = "bmq.standard",
            VpcId = "vpc-miltj87lh2ww5smt1bxxxxx",
            MessageRetention = 1,
            Endpoints = new Volcenginecc.Bmq.Inputs.InstanceEndpointsArgs
            {
                Public = new Volcenginecc.Bmq.Inputs.InstanceEndpointsPublicArgs
                {
                    EipId = "eip-3nriu2y2ufwu8931exxxxx",
                },
                Overlay = new Volcenginecc.Bmq.Inputs.InstanceEndpointsOverlayArgs
                {
                    VpcIds = new[]
                    {
                        "vpc-miltj87lh2ww5smt1bxxxxx",
                    },
                },
            },
            SecurityGroupIdLists = new[]
            {
                "sg-3nqnz9en1ucxs931eaxxxxx",
            },
            SubnetIdLists = new[]
            {
                "subnet-w02wsq25fitc865ykaxxxxx",
            },
            ZoneIdLists = new[]
            {
                "cn-beijing-a",
            },
            Tags = new[]
            {
                new Volcenginecc.Bmq.Inputs.InstanceTagArgs
                {
                    Key = "env",
                    Type = "CUSTOM",
                    Value = "test",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.volcengine.volcenginecc.bmq.Instance;
    import com.volcengine.volcenginecc.bmq.InstanceArgs;
    import com.pulumi.volcenginecc.bmq.inputs.InstanceEndpointsArgs;
    import com.pulumi.volcenginecc.bmq.inputs.InstanceEndpointsPublicArgs;
    import com.pulumi.volcenginecc.bmq.inputs.InstanceEndpointsOverlayArgs;
    import com.pulumi.volcenginecc.bmq.inputs.InstanceTagArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var bMQInstanceDemo = new Instance("bMQInstanceDemo", InstanceArgs.builder()
                .name("BMQInstanceDemo")
                .billingType("POST")
                .projectName("default")
                .specification("bmq.standard")
                .vpcId("vpc-miltj87lh2ww5smt1bxxxxx")
                .messageRetention(1)
                .endpoints(InstanceEndpointsArgs.builder()
                    .public_(InstanceEndpointsPublicArgs.builder()
                        .eipId("eip-3nriu2y2ufwu8931exxxxx")
                        .build())
                    .overlay(InstanceEndpointsOverlayArgs.builder()
                        .vpcIds("vpc-miltj87lh2ww5smt1bxxxxx")
                        .build())
                    .build())
                .securityGroupIdLists("sg-3nqnz9en1ucxs931eaxxxxx")
                .subnetIdLists("subnet-w02wsq25fitc865ykaxxxxx")
                .zoneIdLists("cn-beijing-a")
                .tags(InstanceTagArgs.builder()
                    .key("env")
                    .type("CUSTOM")
                    .value("test")
                    .build())
                .build());
    
        }
    }
    
    resources:
      bMQInstanceDemo:
        type: volcenginecc:bmq:Instance
        name: BMQInstanceDemo
        properties:
          name: BMQInstanceDemo
          billingType: POST
          projectName: default
          specification: bmq.standard
          vpcId: vpc-miltj87lh2ww5smt1bxxxxx
          messageRetention: 1
          endpoints:
            public:
              eipId: eip-3nriu2y2ufwu8931exxxxx
            overlay:
              vpcIds:
                - vpc-miltj87lh2ww5smt1bxxxxx
          securityGroupIdLists:
            - sg-3nqnz9en1ucxs931eaxxxxx
          subnetIdLists:
            - subnet-w02wsq25fitc865ykaxxxxx
          zoneIdLists:
            - cn-beijing-a
          tags:
            - key: env
              type: CUSTOM
              value: test
    

    Create Instance Resource

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

    Constructor syntax

    new Instance(name: string, args: InstanceArgs, opts?: CustomResourceOptions);
    @overload
    def Instance(resource_name: str,
                 args: InstanceArgs,
                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def Instance(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 project_name: Optional[str] = None,
                 zone_id_lists: Optional[Sequence[str]] = None,
                 billing_type: Optional[str] = None,
                 vpc_id: Optional[str] = None,
                 subnet_id_lists: Optional[Sequence[str]] = None,
                 specification: Optional[str] = None,
                 security_group_id_lists: Optional[Sequence[str]] = None,
                 name: Optional[str] = None,
                 eip_id: Optional[str] = None,
                 message_retention: Optional[int] = None,
                 endpoints: Optional[InstanceEndpointsArgs] = None,
                 auto_renew: Optional[str] = None,
                 tags: Optional[Sequence[InstanceTagArgs]] = None,
                 times: Optional[int] = None,
                 description: Optional[str] = None,
                 billing_period: Optional[str] = None)
    func NewInstance(ctx *Context, name string, args InstanceArgs, opts ...ResourceOption) (*Instance, error)
    public Instance(string name, InstanceArgs args, CustomResourceOptions? opts = null)
    public Instance(String name, InstanceArgs args)
    public Instance(String name, InstanceArgs args, CustomResourceOptions options)
    
    type: volcenginecc:bmq:Instance
    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 InstanceArgs
    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 InstanceArgs
    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 InstanceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args InstanceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args InstanceArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Instance 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 Instance resource accepts the following input properties:

    BillingType string
    Instance billing method. Options: POST—pay-as-you-go; MIX—yearly/monthly subscription
    Name string
    Custom BMQ instance name. Constraints: must consist of lowercase letters, numbers, and hyphens (-). Length: 1–64 characters
    ProjectName string
    Project name associated with the instance
    SecurityGroupIdLists List<string>
    Security group list used by the instance
    Specification string
    Instance specification
    SubnetIdLists List<string>
    Subnet list used by the instance
    VpcId string
    VPC ID where the instance is located
    ZoneIdLists List<string>
    List of availability zones for the instance
    AutoRenew string
    Enable auto-renewal. Possible values: true: Enable auto-renewal. false: Disable auto-renewal.
    BillingPeriod string
    Unit of purchase duration. Options: MONTHLY—monthly subscription; YEARLY—yearly subscription
    Description string
    Instance description
    EipId string
    Whether public access is enabled for the instance. If public access is required, configure the ID of a public IP in the same region
    Endpoints Volcengine.InstanceEndpoints
    Response data for all instance endpoints
    MessageRetention int
    Message retention period for all Topics under the instance, in hours
    Tags List<Volcengine.InstanceTag>
    Times int
    Purchase duration for yearly/monthly subscription instances, in months
    BillingType string
    Instance billing method. Options: POST—pay-as-you-go; MIX—yearly/monthly subscription
    Name string
    Custom BMQ instance name. Constraints: must consist of lowercase letters, numbers, and hyphens (-). Length: 1–64 characters
    ProjectName string
    Project name associated with the instance
    SecurityGroupIdLists []string
    Security group list used by the instance
    Specification string
    Instance specification
    SubnetIdLists []string
    Subnet list used by the instance
    VpcId string
    VPC ID where the instance is located
    ZoneIdLists []string
    List of availability zones for the instance
    AutoRenew string
    Enable auto-renewal. Possible values: true: Enable auto-renewal. false: Disable auto-renewal.
    BillingPeriod string
    Unit of purchase duration. Options: MONTHLY—monthly subscription; YEARLY—yearly subscription
    Description string
    Instance description
    EipId string
    Whether public access is enabled for the instance. If public access is required, configure the ID of a public IP in the same region
    Endpoints InstanceEndpointsArgs
    Response data for all instance endpoints
    MessageRetention int
    Message retention period for all Topics under the instance, in hours
    Tags []InstanceTagArgs
    Times int
    Purchase duration for yearly/monthly subscription instances, in months
    billingType String
    Instance billing method. Options: POST—pay-as-you-go; MIX—yearly/monthly subscription
    name String
    Custom BMQ instance name. Constraints: must consist of lowercase letters, numbers, and hyphens (-). Length: 1–64 characters
    projectName String
    Project name associated with the instance
    securityGroupIdLists List<String>
    Security group list used by the instance
    specification String
    Instance specification
    subnetIdLists List<String>
    Subnet list used by the instance
    vpcId String
    VPC ID where the instance is located
    zoneIdLists List<String>
    List of availability zones for the instance
    autoRenew String
    Enable auto-renewal. Possible values: true: Enable auto-renewal. false: Disable auto-renewal.
    billingPeriod String
    Unit of purchase duration. Options: MONTHLY—monthly subscription; YEARLY—yearly subscription
    description String
    Instance description
    eipId String
    Whether public access is enabled for the instance. If public access is required, configure the ID of a public IP in the same region
    endpoints InstanceEndpoints
    Response data for all instance endpoints
    messageRetention Integer
    Message retention period for all Topics under the instance, in hours
    tags List<InstanceTag>
    times Integer
    Purchase duration for yearly/monthly subscription instances, in months
    billingType string
    Instance billing method. Options: POST—pay-as-you-go; MIX—yearly/monthly subscription
    name string
    Custom BMQ instance name. Constraints: must consist of lowercase letters, numbers, and hyphens (-). Length: 1–64 characters
    projectName string
    Project name associated with the instance
    securityGroupIdLists string[]
    Security group list used by the instance
    specification string
    Instance specification
    subnetIdLists string[]
    Subnet list used by the instance
    vpcId string
    VPC ID where the instance is located
    zoneIdLists string[]
    List of availability zones for the instance
    autoRenew string
    Enable auto-renewal. Possible values: true: Enable auto-renewal. false: Disable auto-renewal.
    billingPeriod string
    Unit of purchase duration. Options: MONTHLY—monthly subscription; YEARLY—yearly subscription
    description string
    Instance description
    eipId string
    Whether public access is enabled for the instance. If public access is required, configure the ID of a public IP in the same region
    endpoints InstanceEndpoints
    Response data for all instance endpoints
    messageRetention number
    Message retention period for all Topics under the instance, in hours
    tags InstanceTag[]
    times number
    Purchase duration for yearly/monthly subscription instances, in months
    billing_type str
    Instance billing method. Options: POST—pay-as-you-go; MIX—yearly/monthly subscription
    name str
    Custom BMQ instance name. Constraints: must consist of lowercase letters, numbers, and hyphens (-). Length: 1–64 characters
    project_name str
    Project name associated with the instance
    security_group_id_lists Sequence[str]
    Security group list used by the instance
    specification str
    Instance specification
    subnet_id_lists Sequence[str]
    Subnet list used by the instance
    vpc_id str
    VPC ID where the instance is located
    zone_id_lists Sequence[str]
    List of availability zones for the instance
    auto_renew str
    Enable auto-renewal. Possible values: true: Enable auto-renewal. false: Disable auto-renewal.
    billing_period str
    Unit of purchase duration. Options: MONTHLY—monthly subscription; YEARLY—yearly subscription
    description str
    Instance description
    eip_id str
    Whether public access is enabled for the instance. If public access is required, configure the ID of a public IP in the same region
    endpoints InstanceEndpointsArgs
    Response data for all instance endpoints
    message_retention int
    Message retention period for all Topics under the instance, in hours
    tags Sequence[InstanceTagArgs]
    times int
    Purchase duration for yearly/monthly subscription instances, in months
    billingType String
    Instance billing method. Options: POST—pay-as-you-go; MIX—yearly/monthly subscription
    name String
    Custom BMQ instance name. Constraints: must consist of lowercase letters, numbers, and hyphens (-). Length: 1–64 characters
    projectName String
    Project name associated with the instance
    securityGroupIdLists List<String>
    Security group list used by the instance
    specification String
    Instance specification
    subnetIdLists List<String>
    Subnet list used by the instance
    vpcId String
    VPC ID where the instance is located
    zoneIdLists List<String>
    List of availability zones for the instance
    autoRenew String
    Enable auto-renewal. Possible values: true: Enable auto-renewal. false: Disable auto-renewal.
    billingPeriod String
    Unit of purchase duration. Options: MONTHLY—monthly subscription; YEARLY—yearly subscription
    description String
    Instance description
    eipId String
    Whether public access is enabled for the instance. If public access is required, configure the ID of a public IP in the same region
    endpoints Property Map
    Response data for all instance endpoints
    messageRetention Number
    Message retention period for all Topics under the instance, in hours
    tags List<Property Map>
    times Number
    Purchase duration for yearly/monthly subscription instances, in months

    Outputs

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

    CreatedTime string
    Instance creation time
    ExpirationTime string
    Instance expiration time
    GroupLimit int
    Maximum number of consumer groups per instance
    Id string
    The provider-assigned unique ID for this managed resource.
    InstanceId string
    Instance ID
    PartitionLimit int
    Maximum number of partitions per instance
    ResourceTags List<Volcengine.InstanceResourceTag>
    Resources Volcengine.InstanceResources
    Instance resource statistics response data
    Status string
    Instance status. Possible values: INITIALIZING: Initializing, INITIALIZATIONFAILED: Initialization failed, RUNNING: Running, MODIFYING: Updating, MODIFYFAILED: Update failed, RELEASING: Releasing, STOPPING: Stopping, STOPPED: Stopped, RECOVERING: Recovering, EXCEPTION: Exception, CAPACITYEXPAXIONFAILED: Capacity expansion failed, EXPANDINGCAPACITY: Expanding capacity, CANCELEXPANDING_CAPACITY: Canceling capacity expansion, RESTARTING: Restarting, UNPAID: Unpaid
    TopicLimit int
    Maximum number of Topics per instance
    CreatedTime string
    Instance creation time
    ExpirationTime string
    Instance expiration time
    GroupLimit int
    Maximum number of consumer groups per instance
    Id string
    The provider-assigned unique ID for this managed resource.
    InstanceId string
    Instance ID
    PartitionLimit int
    Maximum number of partitions per instance
    ResourceTags []InstanceResourceTag
    Resources InstanceResources
    Instance resource statistics response data
    Status string
    Instance status. Possible values: INITIALIZING: Initializing, INITIALIZATIONFAILED: Initialization failed, RUNNING: Running, MODIFYING: Updating, MODIFYFAILED: Update failed, RELEASING: Releasing, STOPPING: Stopping, STOPPED: Stopped, RECOVERING: Recovering, EXCEPTION: Exception, CAPACITYEXPAXIONFAILED: Capacity expansion failed, EXPANDINGCAPACITY: Expanding capacity, CANCELEXPANDING_CAPACITY: Canceling capacity expansion, RESTARTING: Restarting, UNPAID: Unpaid
    TopicLimit int
    Maximum number of Topics per instance
    createdTime String
    Instance creation time
    expirationTime String
    Instance expiration time
    groupLimit Integer
    Maximum number of consumer groups per instance
    id String
    The provider-assigned unique ID for this managed resource.
    instanceId String
    Instance ID
    partitionLimit Integer
    Maximum number of partitions per instance
    resourceTags List<InstanceResourceTag>
    resources InstanceResources
    Instance resource statistics response data
    status String
    Instance status. Possible values: INITIALIZING: Initializing, INITIALIZATIONFAILED: Initialization failed, RUNNING: Running, MODIFYING: Updating, MODIFYFAILED: Update failed, RELEASING: Releasing, STOPPING: Stopping, STOPPED: Stopped, RECOVERING: Recovering, EXCEPTION: Exception, CAPACITYEXPAXIONFAILED: Capacity expansion failed, EXPANDINGCAPACITY: Expanding capacity, CANCELEXPANDING_CAPACITY: Canceling capacity expansion, RESTARTING: Restarting, UNPAID: Unpaid
    topicLimit Integer
    Maximum number of Topics per instance
    createdTime string
    Instance creation time
    expirationTime string
    Instance expiration time
    groupLimit number
    Maximum number of consumer groups per instance
    id string
    The provider-assigned unique ID for this managed resource.
    instanceId string
    Instance ID
    partitionLimit number
    Maximum number of partitions per instance
    resourceTags InstanceResourceTag[]
    resources InstanceResources
    Instance resource statistics response data
    status string
    Instance status. Possible values: INITIALIZING: Initializing, INITIALIZATIONFAILED: Initialization failed, RUNNING: Running, MODIFYING: Updating, MODIFYFAILED: Update failed, RELEASING: Releasing, STOPPING: Stopping, STOPPED: Stopped, RECOVERING: Recovering, EXCEPTION: Exception, CAPACITYEXPAXIONFAILED: Capacity expansion failed, EXPANDINGCAPACITY: Expanding capacity, CANCELEXPANDING_CAPACITY: Canceling capacity expansion, RESTARTING: Restarting, UNPAID: Unpaid
    topicLimit number
    Maximum number of Topics per instance
    created_time str
    Instance creation time
    expiration_time str
    Instance expiration time
    group_limit int
    Maximum number of consumer groups per instance
    id str
    The provider-assigned unique ID for this managed resource.
    instance_id str
    Instance ID
    partition_limit int
    Maximum number of partitions per instance
    resource_tags Sequence[InstanceResourceTag]
    resources InstanceResources
    Instance resource statistics response data
    status str
    Instance status. Possible values: INITIALIZING: Initializing, INITIALIZATIONFAILED: Initialization failed, RUNNING: Running, MODIFYING: Updating, MODIFYFAILED: Update failed, RELEASING: Releasing, STOPPING: Stopping, STOPPED: Stopped, RECOVERING: Recovering, EXCEPTION: Exception, CAPACITYEXPAXIONFAILED: Capacity expansion failed, EXPANDINGCAPACITY: Expanding capacity, CANCELEXPANDING_CAPACITY: Canceling capacity expansion, RESTARTING: Restarting, UNPAID: Unpaid
    topic_limit int
    Maximum number of Topics per instance
    createdTime String
    Instance creation time
    expirationTime String
    Instance expiration time
    groupLimit Number
    Maximum number of consumer groups per instance
    id String
    The provider-assigned unique ID for this managed resource.
    instanceId String
    Instance ID
    partitionLimit Number
    Maximum number of partitions per instance
    resourceTags List<Property Map>
    resources Property Map
    Instance resource statistics response data
    status String
    Instance status. Possible values: INITIALIZING: Initializing, INITIALIZATIONFAILED: Initialization failed, RUNNING: Running, MODIFYING: Updating, MODIFYFAILED: Update failed, RELEASING: Releasing, STOPPING: Stopping, STOPPED: Stopped, RECOVERING: Recovering, EXCEPTION: Exception, CAPACITYEXPAXIONFAILED: Capacity expansion failed, EXPANDINGCAPACITY: Expanding capacity, CANCELEXPANDING_CAPACITY: Canceling capacity expansion, RESTARTING: Restarting, UNPAID: Unpaid
    topicLimit Number
    Maximum number of Topics per instance

    Look up Existing Instance Resource

    Get an existing Instance 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?: InstanceState, opts?: CustomResourceOptions): Instance
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            auto_renew: Optional[str] = None,
            billing_period: Optional[str] = None,
            billing_type: Optional[str] = None,
            created_time: Optional[str] = None,
            description: Optional[str] = None,
            eip_id: Optional[str] = None,
            endpoints: Optional[InstanceEndpointsArgs] = None,
            expiration_time: Optional[str] = None,
            group_limit: Optional[int] = None,
            instance_id: Optional[str] = None,
            message_retention: Optional[int] = None,
            name: Optional[str] = None,
            partition_limit: Optional[int] = None,
            project_name: Optional[str] = None,
            resource_tags: Optional[Sequence[InstanceResourceTagArgs]] = None,
            resources: Optional[InstanceResourcesArgs] = None,
            security_group_id_lists: Optional[Sequence[str]] = None,
            specification: Optional[str] = None,
            status: Optional[str] = None,
            subnet_id_lists: Optional[Sequence[str]] = None,
            tags: Optional[Sequence[InstanceTagArgs]] = None,
            times: Optional[int] = None,
            topic_limit: Optional[int] = None,
            vpc_id: Optional[str] = None,
            zone_id_lists: Optional[Sequence[str]] = None) -> Instance
    func GetInstance(ctx *Context, name string, id IDInput, state *InstanceState, opts ...ResourceOption) (*Instance, error)
    public static Instance Get(string name, Input<string> id, InstanceState? state, CustomResourceOptions? opts = null)
    public static Instance get(String name, Output<String> id, InstanceState state, CustomResourceOptions options)
    resources:  _:    type: volcenginecc:bmq:Instance    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:
    AutoRenew string
    Enable auto-renewal. Possible values: true: Enable auto-renewal. false: Disable auto-renewal.
    BillingPeriod string
    Unit of purchase duration. Options: MONTHLY—monthly subscription; YEARLY—yearly subscription
    BillingType string
    Instance billing method. Options: POST—pay-as-you-go; MIX—yearly/monthly subscription
    CreatedTime string
    Instance creation time
    Description string
    Instance description
    EipId string
    Whether public access is enabled for the instance. If public access is required, configure the ID of a public IP in the same region
    Endpoints Volcengine.InstanceEndpoints
    Response data for all instance endpoints
    ExpirationTime string
    Instance expiration time
    GroupLimit int
    Maximum number of consumer groups per instance
    InstanceId string
    Instance ID
    MessageRetention int
    Message retention period for all Topics under the instance, in hours
    Name string
    Custom BMQ instance name. Constraints: must consist of lowercase letters, numbers, and hyphens (-). Length: 1–64 characters
    PartitionLimit int
    Maximum number of partitions per instance
    ProjectName string
    Project name associated with the instance
    ResourceTags List<Volcengine.InstanceResourceTag>
    Resources Volcengine.InstanceResources
    Instance resource statistics response data
    SecurityGroupIdLists List<string>
    Security group list used by the instance
    Specification string
    Instance specification
    Status string
    Instance status. Possible values: INITIALIZING: Initializing, INITIALIZATIONFAILED: Initialization failed, RUNNING: Running, MODIFYING: Updating, MODIFYFAILED: Update failed, RELEASING: Releasing, STOPPING: Stopping, STOPPED: Stopped, RECOVERING: Recovering, EXCEPTION: Exception, CAPACITYEXPAXIONFAILED: Capacity expansion failed, EXPANDINGCAPACITY: Expanding capacity, CANCELEXPANDING_CAPACITY: Canceling capacity expansion, RESTARTING: Restarting, UNPAID: Unpaid
    SubnetIdLists List<string>
    Subnet list used by the instance
    Tags List<Volcengine.InstanceTag>
    Times int
    Purchase duration for yearly/monthly subscription instances, in months
    TopicLimit int
    Maximum number of Topics per instance
    VpcId string
    VPC ID where the instance is located
    ZoneIdLists List<string>
    List of availability zones for the instance
    AutoRenew string
    Enable auto-renewal. Possible values: true: Enable auto-renewal. false: Disable auto-renewal.
    BillingPeriod string
    Unit of purchase duration. Options: MONTHLY—monthly subscription; YEARLY—yearly subscription
    BillingType string
    Instance billing method. Options: POST—pay-as-you-go; MIX—yearly/monthly subscription
    CreatedTime string
    Instance creation time
    Description string
    Instance description
    EipId string
    Whether public access is enabled for the instance. If public access is required, configure the ID of a public IP in the same region
    Endpoints InstanceEndpointsArgs
    Response data for all instance endpoints
    ExpirationTime string
    Instance expiration time
    GroupLimit int
    Maximum number of consumer groups per instance
    InstanceId string
    Instance ID
    MessageRetention int
    Message retention period for all Topics under the instance, in hours
    Name string
    Custom BMQ instance name. Constraints: must consist of lowercase letters, numbers, and hyphens (-). Length: 1–64 characters
    PartitionLimit int
    Maximum number of partitions per instance
    ProjectName string
    Project name associated with the instance
    ResourceTags []InstanceResourceTagArgs
    Resources InstanceResourcesArgs
    Instance resource statistics response data
    SecurityGroupIdLists []string
    Security group list used by the instance
    Specification string
    Instance specification
    Status string
    Instance status. Possible values: INITIALIZING: Initializing, INITIALIZATIONFAILED: Initialization failed, RUNNING: Running, MODIFYING: Updating, MODIFYFAILED: Update failed, RELEASING: Releasing, STOPPING: Stopping, STOPPED: Stopped, RECOVERING: Recovering, EXCEPTION: Exception, CAPACITYEXPAXIONFAILED: Capacity expansion failed, EXPANDINGCAPACITY: Expanding capacity, CANCELEXPANDING_CAPACITY: Canceling capacity expansion, RESTARTING: Restarting, UNPAID: Unpaid
    SubnetIdLists []string
    Subnet list used by the instance
    Tags []InstanceTagArgs
    Times int
    Purchase duration for yearly/monthly subscription instances, in months
    TopicLimit int
    Maximum number of Topics per instance
    VpcId string
    VPC ID where the instance is located
    ZoneIdLists []string
    List of availability zones for the instance
    autoRenew String
    Enable auto-renewal. Possible values: true: Enable auto-renewal. false: Disable auto-renewal.
    billingPeriod String
    Unit of purchase duration. Options: MONTHLY—monthly subscription; YEARLY—yearly subscription
    billingType String
    Instance billing method. Options: POST—pay-as-you-go; MIX—yearly/monthly subscription
    createdTime String
    Instance creation time
    description String
    Instance description
    eipId String
    Whether public access is enabled for the instance. If public access is required, configure the ID of a public IP in the same region
    endpoints InstanceEndpoints
    Response data for all instance endpoints
    expirationTime String
    Instance expiration time
    groupLimit Integer
    Maximum number of consumer groups per instance
    instanceId String
    Instance ID
    messageRetention Integer
    Message retention period for all Topics under the instance, in hours
    name String
    Custom BMQ instance name. Constraints: must consist of lowercase letters, numbers, and hyphens (-). Length: 1–64 characters
    partitionLimit Integer
    Maximum number of partitions per instance
    projectName String
    Project name associated with the instance
    resourceTags List<InstanceResourceTag>
    resources InstanceResources
    Instance resource statistics response data
    securityGroupIdLists List<String>
    Security group list used by the instance
    specification String
    Instance specification
    status String
    Instance status. Possible values: INITIALIZING: Initializing, INITIALIZATIONFAILED: Initialization failed, RUNNING: Running, MODIFYING: Updating, MODIFYFAILED: Update failed, RELEASING: Releasing, STOPPING: Stopping, STOPPED: Stopped, RECOVERING: Recovering, EXCEPTION: Exception, CAPACITYEXPAXIONFAILED: Capacity expansion failed, EXPANDINGCAPACITY: Expanding capacity, CANCELEXPANDING_CAPACITY: Canceling capacity expansion, RESTARTING: Restarting, UNPAID: Unpaid
    subnetIdLists List<String>
    Subnet list used by the instance
    tags List<InstanceTag>
    times Integer
    Purchase duration for yearly/monthly subscription instances, in months
    topicLimit Integer
    Maximum number of Topics per instance
    vpcId String
    VPC ID where the instance is located
    zoneIdLists List<String>
    List of availability zones for the instance
    autoRenew string
    Enable auto-renewal. Possible values: true: Enable auto-renewal. false: Disable auto-renewal.
    billingPeriod string
    Unit of purchase duration. Options: MONTHLY—monthly subscription; YEARLY—yearly subscription
    billingType string
    Instance billing method. Options: POST—pay-as-you-go; MIX—yearly/monthly subscription
    createdTime string
    Instance creation time
    description string
    Instance description
    eipId string
    Whether public access is enabled for the instance. If public access is required, configure the ID of a public IP in the same region
    endpoints InstanceEndpoints
    Response data for all instance endpoints
    expirationTime string
    Instance expiration time
    groupLimit number
    Maximum number of consumer groups per instance
    instanceId string
    Instance ID
    messageRetention number
    Message retention period for all Topics under the instance, in hours
    name string
    Custom BMQ instance name. Constraints: must consist of lowercase letters, numbers, and hyphens (-). Length: 1–64 characters
    partitionLimit number
    Maximum number of partitions per instance
    projectName string
    Project name associated with the instance
    resourceTags InstanceResourceTag[]
    resources InstanceResources
    Instance resource statistics response data
    securityGroupIdLists string[]
    Security group list used by the instance
    specification string
    Instance specification
    status string
    Instance status. Possible values: INITIALIZING: Initializing, INITIALIZATIONFAILED: Initialization failed, RUNNING: Running, MODIFYING: Updating, MODIFYFAILED: Update failed, RELEASING: Releasing, STOPPING: Stopping, STOPPED: Stopped, RECOVERING: Recovering, EXCEPTION: Exception, CAPACITYEXPAXIONFAILED: Capacity expansion failed, EXPANDINGCAPACITY: Expanding capacity, CANCELEXPANDING_CAPACITY: Canceling capacity expansion, RESTARTING: Restarting, UNPAID: Unpaid
    subnetIdLists string[]
    Subnet list used by the instance
    tags InstanceTag[]
    times number
    Purchase duration for yearly/monthly subscription instances, in months
    topicLimit number
    Maximum number of Topics per instance
    vpcId string
    VPC ID where the instance is located
    zoneIdLists string[]
    List of availability zones for the instance
    auto_renew str
    Enable auto-renewal. Possible values: true: Enable auto-renewal. false: Disable auto-renewal.
    billing_period str
    Unit of purchase duration. Options: MONTHLY—monthly subscription; YEARLY—yearly subscription
    billing_type str
    Instance billing method. Options: POST—pay-as-you-go; MIX—yearly/monthly subscription
    created_time str
    Instance creation time
    description str
    Instance description
    eip_id str
    Whether public access is enabled for the instance. If public access is required, configure the ID of a public IP in the same region
    endpoints InstanceEndpointsArgs
    Response data for all instance endpoints
    expiration_time str
    Instance expiration time
    group_limit int
    Maximum number of consumer groups per instance
    instance_id str
    Instance ID
    message_retention int
    Message retention period for all Topics under the instance, in hours
    name str
    Custom BMQ instance name. Constraints: must consist of lowercase letters, numbers, and hyphens (-). Length: 1–64 characters
    partition_limit int
    Maximum number of partitions per instance
    project_name str
    Project name associated with the instance
    resource_tags Sequence[InstanceResourceTagArgs]
    resources InstanceResourcesArgs
    Instance resource statistics response data
    security_group_id_lists Sequence[str]
    Security group list used by the instance
    specification str
    Instance specification
    status str
    Instance status. Possible values: INITIALIZING: Initializing, INITIALIZATIONFAILED: Initialization failed, RUNNING: Running, MODIFYING: Updating, MODIFYFAILED: Update failed, RELEASING: Releasing, STOPPING: Stopping, STOPPED: Stopped, RECOVERING: Recovering, EXCEPTION: Exception, CAPACITYEXPAXIONFAILED: Capacity expansion failed, EXPANDINGCAPACITY: Expanding capacity, CANCELEXPANDING_CAPACITY: Canceling capacity expansion, RESTARTING: Restarting, UNPAID: Unpaid
    subnet_id_lists Sequence[str]
    Subnet list used by the instance
    tags Sequence[InstanceTagArgs]
    times int
    Purchase duration for yearly/monthly subscription instances, in months
    topic_limit int
    Maximum number of Topics per instance
    vpc_id str
    VPC ID where the instance is located
    zone_id_lists Sequence[str]
    List of availability zones for the instance
    autoRenew String
    Enable auto-renewal. Possible values: true: Enable auto-renewal. false: Disable auto-renewal.
    billingPeriod String
    Unit of purchase duration. Options: MONTHLY—monthly subscription; YEARLY—yearly subscription
    billingType String
    Instance billing method. Options: POST—pay-as-you-go; MIX—yearly/monthly subscription
    createdTime String
    Instance creation time
    description String
    Instance description
    eipId String
    Whether public access is enabled for the instance. If public access is required, configure the ID of a public IP in the same region
    endpoints Property Map
    Response data for all instance endpoints
    expirationTime String
    Instance expiration time
    groupLimit Number
    Maximum number of consumer groups per instance
    instanceId String
    Instance ID
    messageRetention Number
    Message retention period for all Topics under the instance, in hours
    name String
    Custom BMQ instance name. Constraints: must consist of lowercase letters, numbers, and hyphens (-). Length: 1–64 characters
    partitionLimit Number
    Maximum number of partitions per instance
    projectName String
    Project name associated with the instance
    resourceTags List<Property Map>
    resources Property Map
    Instance resource statistics response data
    securityGroupIdLists List<String>
    Security group list used by the instance
    specification String
    Instance specification
    status String
    Instance status. Possible values: INITIALIZING: Initializing, INITIALIZATIONFAILED: Initialization failed, RUNNING: Running, MODIFYING: Updating, MODIFYFAILED: Update failed, RELEASING: Releasing, STOPPING: Stopping, STOPPED: Stopped, RECOVERING: Recovering, EXCEPTION: Exception, CAPACITYEXPAXIONFAILED: Capacity expansion failed, EXPANDINGCAPACITY: Expanding capacity, CANCELEXPANDING_CAPACITY: Canceling capacity expansion, RESTARTING: Restarting, UNPAID: Unpaid
    subnetIdLists List<String>
    Subnet list used by the instance
    tags List<Property Map>
    times Number
    Purchase duration for yearly/monthly subscription instances, in months
    topicLimit Number
    Maximum number of Topics per instance
    vpcId String
    VPC ID where the instance is located
    zoneIdLists List<String>
    List of availability zones for the instance

    Supporting Types

    InstanceEndpoints, InstanceEndpointsArgs

    Overlay Volcengine.InstanceEndpointsOverlay
    Instance private network access endpoint response data
    Public Volcengine.InstanceEndpointsPublic
    Instance public access endpoint response data
    Overlay InstanceEndpointsOverlay
    Instance private network access endpoint response data
    Public InstanceEndpointsPublic
    Instance public access endpoint response data
    overlay InstanceEndpointsOverlay
    Instance private network access endpoint response data
    public_ InstanceEndpointsPublic
    Instance public access endpoint response data
    overlay InstanceEndpointsOverlay
    Instance private network access endpoint response data
    public InstanceEndpointsPublic
    Instance public access endpoint response data
    overlay InstanceEndpointsOverlay
    Instance private network access endpoint response data
    public InstanceEndpointsPublic
    Instance public access endpoint response data
    overlay Property Map
    Instance private network access endpoint response data
    public Property Map
    Instance public access endpoint response data

    InstanceEndpointsOverlay, InstanceEndpointsOverlayArgs

    Address string
    Domain mapping address
    EipId string
    ID of the EIP bound to the instance
    Plain string
    Private network Plain access point
    PlainPort int
    Standard endpoint port
    Sasl string
    Private network SASL authentication access point
    SaslPort int
    Authentication endpoint port
    Ssl string
    Encrypted endpoint
    SslPort int
    Encrypted endpoint port
    Status string
    Endpoint status
    VpcIds List<string>
    List of VPC IDs associated with the sales zone network
    Address string
    Domain mapping address
    EipId string
    ID of the EIP bound to the instance
    Plain string
    Private network Plain access point
    PlainPort int
    Standard endpoint port
    Sasl string
    Private network SASL authentication access point
    SaslPort int
    Authentication endpoint port
    Ssl string
    Encrypted endpoint
    SslPort int
    Encrypted endpoint port
    Status string
    Endpoint status
    VpcIds []string
    List of VPC IDs associated with the sales zone network
    address String
    Domain mapping address
    eipId String
    ID of the EIP bound to the instance
    plain String
    Private network Plain access point
    plainPort Integer
    Standard endpoint port
    sasl String
    Private network SASL authentication access point
    saslPort Integer
    Authentication endpoint port
    ssl String
    Encrypted endpoint
    sslPort Integer
    Encrypted endpoint port
    status String
    Endpoint status
    vpcIds List<String>
    List of VPC IDs associated with the sales zone network
    address string
    Domain mapping address
    eipId string
    ID of the EIP bound to the instance
    plain string
    Private network Plain access point
    plainPort number
    Standard endpoint port
    sasl string
    Private network SASL authentication access point
    saslPort number
    Authentication endpoint port
    ssl string
    Encrypted endpoint
    sslPort number
    Encrypted endpoint port
    status string
    Endpoint status
    vpcIds string[]
    List of VPC IDs associated with the sales zone network
    address str
    Domain mapping address
    eip_id str
    ID of the EIP bound to the instance
    plain str
    Private network Plain access point
    plain_port int
    Standard endpoint port
    sasl str
    Private network SASL authentication access point
    sasl_port int
    Authentication endpoint port
    ssl str
    Encrypted endpoint
    ssl_port int
    Encrypted endpoint port
    status str
    Endpoint status
    vpc_ids Sequence[str]
    List of VPC IDs associated with the sales zone network
    address String
    Domain mapping address
    eipId String
    ID of the EIP bound to the instance
    plain String
    Private network Plain access point
    plainPort Number
    Standard endpoint port
    sasl String
    Private network SASL authentication access point
    saslPort Number
    Authentication endpoint port
    ssl String
    Encrypted endpoint
    sslPort Number
    Encrypted endpoint port
    status String
    Endpoint status
    vpcIds List<String>
    List of VPC IDs associated with the sales zone network

    InstanceEndpointsPublic, InstanceEndpointsPublicArgs

    Address string
    Domain mapping address
    EipId string
    ID of the EIP bound to the instance
    Plain string
    Private network Plain access point
    PlainPort int
    Standard endpoint port
    Sasl string
    Private network SASL authentication access point
    SaslPort int
    Authentication endpoint port
    Ssl string
    Encrypted endpoint
    SslPort int
    Encrypted endpoint port
    Status string
    Endpoint status
    VpcIds List<string>
    List of VPC IDs associated with the sales zone network
    Address string
    Domain mapping address
    EipId string
    ID of the EIP bound to the instance
    Plain string
    Private network Plain access point
    PlainPort int
    Standard endpoint port
    Sasl string
    Private network SASL authentication access point
    SaslPort int
    Authentication endpoint port
    Ssl string
    Encrypted endpoint
    SslPort int
    Encrypted endpoint port
    Status string
    Endpoint status
    VpcIds []string
    List of VPC IDs associated with the sales zone network
    address String
    Domain mapping address
    eipId String
    ID of the EIP bound to the instance
    plain String
    Private network Plain access point
    plainPort Integer
    Standard endpoint port
    sasl String
    Private network SASL authentication access point
    saslPort Integer
    Authentication endpoint port
    ssl String
    Encrypted endpoint
    sslPort Integer
    Encrypted endpoint port
    status String
    Endpoint status
    vpcIds List<String>
    List of VPC IDs associated with the sales zone network
    address string
    Domain mapping address
    eipId string
    ID of the EIP bound to the instance
    plain string
    Private network Plain access point
    plainPort number
    Standard endpoint port
    sasl string
    Private network SASL authentication access point
    saslPort number
    Authentication endpoint port
    ssl string
    Encrypted endpoint
    sslPort number
    Encrypted endpoint port
    status string
    Endpoint status
    vpcIds string[]
    List of VPC IDs associated with the sales zone network
    address str
    Domain mapping address
    eip_id str
    ID of the EIP bound to the instance
    plain str
    Private network Plain access point
    plain_port int
    Standard endpoint port
    sasl str
    Private network SASL authentication access point
    sasl_port int
    Authentication endpoint port
    ssl str
    Encrypted endpoint
    ssl_port int
    Encrypted endpoint port
    status str
    Endpoint status
    vpc_ids Sequence[str]
    List of VPC IDs associated with the sales zone network
    address String
    Domain mapping address
    eipId String
    ID of the EIP bound to the instance
    plain String
    Private network Plain access point
    plainPort Number
    Standard endpoint port
    sasl String
    Private network SASL authentication access point
    saslPort Number
    Authentication endpoint port
    ssl String
    Encrypted endpoint
    sslPort Number
    Encrypted endpoint port
    status String
    Endpoint status
    vpcIds List<String>
    List of VPC IDs associated with the sales zone network

    InstanceResourceTag, InstanceResourceTagArgs

    TagKvs List<Volcengine.InstanceResourceTagTagKv>
    Type string
    Tag type. Options: CUSTOM—custom tag; SYSTEM—system tag
    TagKvs []InstanceResourceTagTagKv
    Type string
    Tag type. Options: CUSTOM—custom tag; SYSTEM—system tag
    tagKvs List<InstanceResourceTagTagKv>
    type String
    Tag type. Options: CUSTOM—custom tag; SYSTEM—system tag
    tagKvs InstanceResourceTagTagKv[]
    type string
    Tag type. Options: CUSTOM—custom tag; SYSTEM—system tag
    tag_kvs Sequence[InstanceResourceTagTagKv]
    type str
    Tag type. Options: CUSTOM—custom tag; SYSTEM—system tag
    tagKvs List<Property Map>
    type String
    Tag type. Options: CUSTOM—custom tag; SYSTEM—system tag

    InstanceResourceTagTagKv, InstanceResourceTagTagKvArgs

    Key string
    Tag key
    Type string
    Type of instance tag. Options: CUSTOM—custom tag; SYSTEM—system tag
    Value string
    Tag value
    Key string
    Tag key
    Type string
    Type of instance tag. Options: CUSTOM—custom tag; SYSTEM—system tag
    Value string
    Tag value
    key String
    Tag key
    type String
    Type of instance tag. Options: CUSTOM—custom tag; SYSTEM—system tag
    value String
    Tag value
    key string
    Tag key
    type string
    Type of instance tag. Options: CUSTOM—custom tag; SYSTEM—system tag
    value string
    Tag value
    key str
    Tag key
    type str
    Type of instance tag. Options: CUSTOM—custom tag; SYSTEM—system tag
    value str
    Tag value
    key String
    Tag key
    type String
    Type of instance tag. Options: CUSTOM—custom tag; SYSTEM—system tag
    value String
    Tag value

    InstanceResources, InstanceResourcesArgs

    Storage Volcengine.InstanceResourcesStorage
    Resource statistics response data
    Storage InstanceResourcesStorage
    Resource statistics response data
    storage InstanceResourcesStorage
    Resource statistics response data
    storage InstanceResourcesStorage
    Resource statistics response data
    storage InstanceResourcesStorage
    Resource statistics response data
    storage Property Map
    Resource statistics response data

    InstanceResourcesStorage, InstanceResourcesStorageArgs

    Size int
    Resource size
    Unit string
    Resource unit
    Size int
    Resource size
    Unit string
    Resource unit
    size Integer
    Resource size
    unit String
    Resource unit
    size number
    Resource size
    unit string
    Resource unit
    size int
    Resource size
    unit str
    Resource unit
    size Number
    Resource size
    unit String
    Resource unit

    InstanceTag, InstanceTagArgs

    Key string
    Tag key
    Type string
    Type of instance tag. Options: CUSTOM—custom tag; SYSTEM—system tag
    Value string
    Tag value
    Key string
    Tag key
    Type string
    Type of instance tag. Options: CUSTOM—custom tag; SYSTEM—system tag
    Value string
    Tag value
    key String
    Tag key
    type String
    Type of instance tag. Options: CUSTOM—custom tag; SYSTEM—system tag
    value String
    Tag value
    key string
    Tag key
    type string
    Type of instance tag. Options: CUSTOM—custom tag; SYSTEM—system tag
    value string
    Tag value
    key str
    Tag key
    type str
    Type of instance tag. Options: CUSTOM—custom tag; SYSTEM—system tag
    value str
    Tag value
    key String
    Tag key
    type String
    Type of instance tag. Options: CUSTOM—custom tag; SYSTEM—system tag
    value String
    Tag value

    Import

    $ pulumi import volcenginecc:bmq/instance:Instance example "instance_id"
    

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

    Package Details

    Repository
    volcenginecc volcengine/pulumi-volcenginecc
    License
    MPL-2.0
    Notes
    This Pulumi package is based on the volcenginecc Terraform Provider.
    volcenginecc logo
    Viewing docs for volcenginecc v0.0.32
    published on Thursday, Apr 23, 2026 by Volcengine
      Try Pulumi Cloud free. Your team will thank you.