Volcengine v0.0.29 published on Tuesday, Apr 29, 2025 by Volcengine
volcengine.rabbitmq.Instances
Explore with Pulumi AI
Use this data source to query detailed information of rabbitmq instances
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as volcengine from "@pulumi/volcengine";
import * as volcengine from "@volcengine/pulumi";
const fooZones = volcengine.ecs.Zones({});
const fooVpc = new volcengine.vpc.Vpc("fooVpc", {
vpcName: "acc-test-vpc",
cidrBlock: "172.16.0.0/16",
});
const fooSubnet = new volcengine.vpc.Subnet("fooSubnet", {
subnetName: "acc-test-subnet",
cidrBlock: "172.16.0.0/24",
zoneId: fooZones.then(fooZones => fooZones.zones?.[0]?.id),
vpcId: fooVpc.id,
});
const fooInstance = new volcengine.rabbitmq.Instance("fooInstance", {
zoneIds: [
fooZones.then(fooZones => fooZones.zones?.[0]?.id),
fooZones.then(fooZones => fooZones.zones?.[1]?.id),
fooZones.then(fooZones => fooZones.zones?.[2]?.id),
],
subnetId: fooSubnet.id,
version: "3.8.18",
userName: "acc-test-user",
userPassword: "93f0cb0614Aab12",
computeSpec: "rabbitmq.n3.x2.small",
storageSpace: 300,
instanceName: "acc-test-rabbitmq",
instanceDescription: "acc-test",
chargeInfo: {
chargeType: "PostPaid",
},
projectName: "default",
tags: [{
key: "k1",
value: "v1",
}],
});
const fooInstances = volcengine.rabbitmq.InstancesOutput({
instanceId: fooInstance.id,
});
import pulumi
import pulumi_volcengine as volcengine
foo_zones = volcengine.ecs.zones()
foo_vpc = volcengine.vpc.Vpc("fooVpc",
vpc_name="acc-test-vpc",
cidr_block="172.16.0.0/16")
foo_subnet = volcengine.vpc.Subnet("fooSubnet",
subnet_name="acc-test-subnet",
cidr_block="172.16.0.0/24",
zone_id=foo_zones.zones[0].id,
vpc_id=foo_vpc.id)
foo_instance = volcengine.rabbitmq.Instance("fooInstance",
zone_ids=[
foo_zones.zones[0].id,
foo_zones.zones[1].id,
foo_zones.zones[2].id,
],
subnet_id=foo_subnet.id,
version="3.8.18",
user_name="acc-test-user",
user_password="93f0cb0614Aab12",
compute_spec="rabbitmq.n3.x2.small",
storage_space=300,
instance_name="acc-test-rabbitmq",
instance_description="acc-test",
charge_info=volcengine.rabbitmq.InstanceChargeInfoArgs(
charge_type="PostPaid",
),
project_name="default",
tags=[volcengine.rabbitmq.InstanceTagArgs(
key="k1",
value="v1",
)])
foo_instances = volcengine.rabbitmq.instances_output(instance_id=foo_instance.id)
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/ecs"
"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/rabbitmq"
"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/vpc"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
fooZones, err := ecs.Zones(ctx, nil, nil)
if err != nil {
return err
}
fooVpc, err := vpc.NewVpc(ctx, "fooVpc", &vpc.VpcArgs{
VpcName: pulumi.String("acc-test-vpc"),
CidrBlock: pulumi.String("172.16.0.0/16"),
})
if err != nil {
return err
}
fooSubnet, err := vpc.NewSubnet(ctx, "fooSubnet", &vpc.SubnetArgs{
SubnetName: pulumi.String("acc-test-subnet"),
CidrBlock: pulumi.String("172.16.0.0/24"),
ZoneId: pulumi.String(fooZones.Zones[0].Id),
VpcId: fooVpc.ID(),
})
if err != nil {
return err
}
fooInstance, err := rabbitmq.NewInstance(ctx, "fooInstance", &rabbitmq.InstanceArgs{
ZoneIds: pulumi.StringArray{
pulumi.String(fooZones.Zones[0].Id),
pulumi.String(fooZones.Zones[1].Id),
pulumi.String(fooZones.Zones[2].Id),
},
SubnetId: fooSubnet.ID(),
Version: pulumi.String("3.8.18"),
UserName: pulumi.String("acc-test-user"),
UserPassword: pulumi.String("93f0cb0614Aab12"),
ComputeSpec: pulumi.String("rabbitmq.n3.x2.small"),
StorageSpace: pulumi.Int(300),
InstanceName: pulumi.String("acc-test-rabbitmq"),
InstanceDescription: pulumi.String("acc-test"),
ChargeInfo: &rabbitmq.InstanceChargeInfoArgs{
ChargeType: pulumi.String("PostPaid"),
},
ProjectName: pulumi.String("default"),
Tags: rabbitmq.InstanceTagArray{
&rabbitmq.InstanceTagArgs{
Key: pulumi.String("k1"),
Value: pulumi.String("v1"),
},
},
})
if err != nil {
return err
}
_ = rabbitmq.InstancesOutput(ctx, rabbitmq.InstancesOutputArgs{
InstanceId: fooInstance.ID(),
}, nil)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcengine = Pulumi.Volcengine;
return await Deployment.RunAsync(() =>
{
var fooZones = Volcengine.Ecs.Zones.Invoke();
var fooVpc = new Volcengine.Vpc.Vpc("fooVpc", new()
{
VpcName = "acc-test-vpc",
CidrBlock = "172.16.0.0/16",
});
var fooSubnet = new Volcengine.Vpc.Subnet("fooSubnet", new()
{
SubnetName = "acc-test-subnet",
CidrBlock = "172.16.0.0/24",
ZoneId = fooZones.Apply(zonesResult => zonesResult.Zones[0]?.Id),
VpcId = fooVpc.Id,
});
var fooInstance = new Volcengine.Rabbitmq.Instance("fooInstance", new()
{
ZoneIds = new[]
{
fooZones.Apply(zonesResult => zonesResult.Zones[0]?.Id),
fooZones.Apply(zonesResult => zonesResult.Zones[1]?.Id),
fooZones.Apply(zonesResult => zonesResult.Zones[2]?.Id),
},
SubnetId = fooSubnet.Id,
Version = "3.8.18",
UserName = "acc-test-user",
UserPassword = "93f0cb0614Aab12",
ComputeSpec = "rabbitmq.n3.x2.small",
StorageSpace = 300,
InstanceName = "acc-test-rabbitmq",
InstanceDescription = "acc-test",
ChargeInfo = new Volcengine.Rabbitmq.Inputs.InstanceChargeInfoArgs
{
ChargeType = "PostPaid",
},
ProjectName = "default",
Tags = new[]
{
new Volcengine.Rabbitmq.Inputs.InstanceTagArgs
{
Key = "k1",
Value = "v1",
},
},
});
var fooInstances = Volcengine.Rabbitmq.Instances.Invoke(new()
{
InstanceId = fooInstance.Id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.volcengine.ecs.EcsFunctions;
import com.pulumi.volcengine.ecs.inputs.ZonesArgs;
import com.pulumi.volcengine.vpc.Vpc;
import com.pulumi.volcengine.vpc.VpcArgs;
import com.pulumi.volcengine.vpc.Subnet;
import com.pulumi.volcengine.vpc.SubnetArgs;
import com.pulumi.volcengine.rabbitmq.Instance;
import com.pulumi.volcengine.rabbitmq.InstanceArgs;
import com.pulumi.volcengine.rabbitmq.inputs.InstanceChargeInfoArgs;
import com.pulumi.volcengine.rabbitmq.inputs.InstanceTagArgs;
import com.pulumi.volcengine.rabbitmq.RabbitmqFunctions;
import com.pulumi.volcengine.rabbitmq.inputs.InstancesArgs;
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) {
final var fooZones = EcsFunctions.Zones();
var fooVpc = new Vpc("fooVpc", VpcArgs.builder()
.vpcName("acc-test-vpc")
.cidrBlock("172.16.0.0/16")
.build());
var fooSubnet = new Subnet("fooSubnet", SubnetArgs.builder()
.subnetName("acc-test-subnet")
.cidrBlock("172.16.0.0/24")
.zoneId(fooZones.applyValue(zonesResult -> zonesResult.zones()[0].id()))
.vpcId(fooVpc.id())
.build());
var fooInstance = new Instance("fooInstance", InstanceArgs.builder()
.zoneIds(
fooZones.applyValue(zonesResult -> zonesResult.zones()[0].id()),
fooZones.applyValue(zonesResult -> zonesResult.zones()[1].id()),
fooZones.applyValue(zonesResult -> zonesResult.zones()[2].id()))
.subnetId(fooSubnet.id())
.version("3.8.18")
.userName("acc-test-user")
.userPassword("93f0cb0614Aab12")
.computeSpec("rabbitmq.n3.x2.small")
.storageSpace(300)
.instanceName("acc-test-rabbitmq")
.instanceDescription("acc-test")
.chargeInfo(InstanceChargeInfoArgs.builder()
.chargeType("PostPaid")
.build())
.projectName("default")
.tags(InstanceTagArgs.builder()
.key("k1")
.value("v1")
.build())
.build());
final var fooInstances = RabbitmqFunctions.Instances(InstancesArgs.builder()
.instanceId(fooInstance.id())
.build());
}
}
resources:
fooVpc:
type: volcengine:vpc:Vpc
properties:
vpcName: acc-test-vpc
cidrBlock: 172.16.0.0/16
fooSubnet:
type: volcengine:vpc:Subnet
properties:
subnetName: acc-test-subnet
cidrBlock: 172.16.0.0/24
zoneId: ${fooZones.zones[0].id}
vpcId: ${fooVpc.id}
fooInstance:
type: volcengine:rabbitmq:Instance
properties:
zoneIds:
- ${fooZones.zones[0].id}
- ${fooZones.zones[1].id}
- ${fooZones.zones[2].id}
subnetId: ${fooSubnet.id}
version: 3.8.18
userName: acc-test-user
userPassword: 93f0cb0614Aab12
computeSpec: rabbitmq.n3.x2.small
storageSpace: 300
instanceName: acc-test-rabbitmq
instanceDescription: acc-test
chargeInfo:
chargeType: PostPaid
projectName: default
tags:
- key: k1
value: v1
variables:
fooZones:
fn::invoke:
Function: volcengine:ecs:Zones
Arguments: {}
fooInstances:
fn::invoke:
Function: volcengine:rabbitmq:Instances
Arguments:
instanceId: ${fooInstance.id}
Using Instances
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function instances(args: InstancesArgs, opts?: InvokeOptions): Promise<InstancesResult>
function instancesOutput(args: InstancesOutputArgs, opts?: InvokeOptions): Output<InstancesResult>
def instances(charge_type: Optional[str] = None,
instance_id: Optional[str] = None,
instance_name: Optional[str] = None,
instance_status: Optional[str] = None,
name_regex: Optional[str] = None,
output_file: Optional[str] = None,
project_name: Optional[str] = None,
spec: Optional[str] = None,
tags: Optional[Sequence[InstancesTag]] = None,
vpc_id: Optional[str] = None,
zone_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> InstancesResult
def instances_output(charge_type: Optional[pulumi.Input[str]] = None,
instance_id: Optional[pulumi.Input[str]] = None,
instance_name: Optional[pulumi.Input[str]] = None,
instance_status: Optional[pulumi.Input[str]] = None,
name_regex: Optional[pulumi.Input[str]] = None,
output_file: Optional[pulumi.Input[str]] = None,
project_name: Optional[pulumi.Input[str]] = None,
spec: Optional[pulumi.Input[str]] = None,
tags: Optional[pulumi.Input[Sequence[pulumi.Input[InstancesTagArgs]]]] = None,
vpc_id: Optional[pulumi.Input[str]] = None,
zone_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[InstancesResult]
func Instances(ctx *Context, args *InstancesArgs, opts ...InvokeOption) (*InstancesResult, error)
func InstancesOutput(ctx *Context, args *InstancesOutputArgs, opts ...InvokeOption) InstancesResultOutput
public static class Instances
{
public static Task<InstancesResult> InvokeAsync(InstancesArgs args, InvokeOptions? opts = null)
public static Output<InstancesResult> Invoke(InstancesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<InstancesResult> instances(InstancesArgs args, InvokeOptions options)
public static Output<InstancesResult> instances(InstancesArgs args, InvokeOptions options)
fn::invoke:
function: volcengine:rabbitmq:Instances
arguments:
# arguments dictionary
The following arguments are supported:
- Charge
Type string - The charge type of rabbitmq instance.
- Instance
Id string - The id of rabbitmq instance. This field supports fuzzy query.
- Instance
Name string - The name of rabbitmq instance. This field supports fuzzy query.
- Instance
Status string - The status of rabbitmq instance.
- Name
Regex string - A Name Regex of Resource.
- Output
File string - File name where to save data source results.
- Project
Name string - The project name of rabbitmq instance.
- Spec string
- The calculation specification of rabbitmq instance.
- List<Instances
Tag> - Tags.
- Vpc
Id string - The vpc id of rabbitmq instance. This field supports fuzzy query.
- Zone
Id string - The zone id of rabbitmq instance. This field supports fuzzy query.
- Charge
Type string - The charge type of rabbitmq instance.
- Instance
Id string - The id of rabbitmq instance. This field supports fuzzy query.
- Instance
Name string - The name of rabbitmq instance. This field supports fuzzy query.
- Instance
Status string - The status of rabbitmq instance.
- Name
Regex string - A Name Regex of Resource.
- Output
File string - File name where to save data source results.
- Project
Name string - The project name of rabbitmq instance.
- Spec string
- The calculation specification of rabbitmq instance.
- []Instances
Tag - Tags.
- Vpc
Id string - The vpc id of rabbitmq instance. This field supports fuzzy query.
- Zone
Id string - The zone id of rabbitmq instance. This field supports fuzzy query.
- charge
Type String - The charge type of rabbitmq instance.
- instance
Id String - The id of rabbitmq instance. This field supports fuzzy query.
- instance
Name String - The name of rabbitmq instance. This field supports fuzzy query.
- instance
Status String - The status of rabbitmq instance.
- name
Regex String - A Name Regex of Resource.
- output
File String - File name where to save data source results.
- project
Name String - The project name of rabbitmq instance.
- spec String
- The calculation specification of rabbitmq instance.
- List<Instances
Tag> - Tags.
- vpc
Id String - The vpc id of rabbitmq instance. This field supports fuzzy query.
- zone
Id String - The zone id of rabbitmq instance. This field supports fuzzy query.
- charge
Type string - The charge type of rabbitmq instance.
- instance
Id string - The id of rabbitmq instance. This field supports fuzzy query.
- instance
Name string - The name of rabbitmq instance. This field supports fuzzy query.
- instance
Status string - The status of rabbitmq instance.
- name
Regex string - A Name Regex of Resource.
- output
File string - File name where to save data source results.
- project
Name string - The project name of rabbitmq instance.
- spec string
- The calculation specification of rabbitmq instance.
- Instances
Tag[] - Tags.
- vpc
Id string - The vpc id of rabbitmq instance. This field supports fuzzy query.
- zone
Id string - The zone id of rabbitmq instance. This field supports fuzzy query.
- charge_
type str - The charge type of rabbitmq instance.
- instance_
id str - The id of rabbitmq instance. This field supports fuzzy query.
- instance_
name str - The name of rabbitmq instance. This field supports fuzzy query.
- instance_
status str - The status of rabbitmq instance.
- name_
regex str - A Name Regex of Resource.
- output_
file str - File name where to save data source results.
- project_
name str - The project name of rabbitmq instance.
- spec str
- The calculation specification of rabbitmq instance.
- Sequence[Instances
Tag] - Tags.
- vpc_
id str - The vpc id of rabbitmq instance. This field supports fuzzy query.
- zone_
id str - The zone id of rabbitmq instance. This field supports fuzzy query.
- charge
Type String - The charge type of rabbitmq instance.
- instance
Id String - The id of rabbitmq instance. This field supports fuzzy query.
- instance
Name String - The name of rabbitmq instance. This field supports fuzzy query.
- instance
Status String - The status of rabbitmq instance.
- name
Regex String - A Name Regex of Resource.
- output
File String - File name where to save data source results.
- project
Name String - The project name of rabbitmq instance.
- spec String
- The calculation specification of rabbitmq instance.
- List<Property Map>
- Tags.
- vpc
Id String - The vpc id of rabbitmq instance. This field supports fuzzy query.
- zone
Id String - The zone id of rabbitmq instance. This field supports fuzzy query.
Instances Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Rabbitmq
Instances List<InstancesRabbitmq Instance> - The collection of query.
- Total
Count int - The total count of query.
- Charge
Type string - The charge type of the rabbitmq instance.
- Instance
Id string - The id of the rabbitmq instance.
- Instance
Name string - The name of the rabbitmq instance.
- Instance
Status string - The status of the rabbitmq instance.
- Name
Regex string - Output
File string - Project
Name string - The project name of the rabbitmq instance.
- Spec string
- List<Instances
Tag> - Tags.
- Vpc
Id string - The vpc id of the rabbitmq instance.
- Zone
Id string - The zone id of the rabbitmq instance.
- Id string
- The provider-assigned unique ID for this managed resource.
- Rabbitmq
Instances []InstancesRabbitmq Instance - The collection of query.
- Total
Count int - The total count of query.
- Charge
Type string - The charge type of the rabbitmq instance.
- Instance
Id string - The id of the rabbitmq instance.
- Instance
Name string - The name of the rabbitmq instance.
- Instance
Status string - The status of the rabbitmq instance.
- Name
Regex string - Output
File string - Project
Name string - The project name of the rabbitmq instance.
- Spec string
- []Instances
Tag - Tags.
- Vpc
Id string - The vpc id of the rabbitmq instance.
- Zone
Id string - The zone id of the rabbitmq instance.
- id String
- The provider-assigned unique ID for this managed resource.
- rabbitmq
Instances List<InstancesRabbitmq Instance> - The collection of query.
- total
Count Integer - The total count of query.
- charge
Type String - The charge type of the rabbitmq instance.
- instance
Id String - The id of the rabbitmq instance.
- instance
Name String - The name of the rabbitmq instance.
- instance
Status String - The status of the rabbitmq instance.
- name
Regex String - output
File String - project
Name String - The project name of the rabbitmq instance.
- spec String
- List<Instances
Tag> - Tags.
- vpc
Id String - The vpc id of the rabbitmq instance.
- zone
Id String - The zone id of the rabbitmq instance.
- id string
- The provider-assigned unique ID for this managed resource.
- rabbitmq
Instances InstancesRabbitmq Instance[] - The collection of query.
- total
Count number - The total count of query.
- charge
Type string - The charge type of the rabbitmq instance.
- instance
Id string - The id of the rabbitmq instance.
- instance
Name string - The name of the rabbitmq instance.
- instance
Status string - The status of the rabbitmq instance.
- name
Regex string - output
File string - project
Name string - The project name of the rabbitmq instance.
- spec string
- Instances
Tag[] - Tags.
- vpc
Id string - The vpc id of the rabbitmq instance.
- zone
Id string - The zone id of the rabbitmq instance.
- id str
- The provider-assigned unique ID for this managed resource.
- rabbitmq_
instances Sequence[InstancesRabbitmq Instance] - The collection of query.
- total_
count int - The total count of query.
- charge_
type str - The charge type of the rabbitmq instance.
- instance_
id str - The id of the rabbitmq instance.
- instance_
name str - The name of the rabbitmq instance.
- instance_
status str - The status of the rabbitmq instance.
- name_
regex str - output_
file str - project_
name str - The project name of the rabbitmq instance.
- spec str
- Sequence[Instances
Tag] - Tags.
- vpc_
id str - The vpc id of the rabbitmq instance.
- zone_
id str - The zone id of the rabbitmq instance.
- id String
- The provider-assigned unique ID for this managed resource.
- rabbitmq
Instances List<Property Map> - The collection of query.
- total
Count Number - The total count of query.
- charge
Type String - The charge type of the rabbitmq instance.
- instance
Id String - The id of the rabbitmq instance.
- instance
Name String - The name of the rabbitmq instance.
- instance
Status String - The status of the rabbitmq instance.
- name
Regex String - output
File String - project
Name String - The project name of the rabbitmq instance.
- spec String
- List<Property Map>
- Tags.
- vpc
Id String - The vpc id of the rabbitmq instance.
- zone
Id String - The zone id of the rabbitmq instance.
Supporting Types
InstancesRabbitmqInstance
- Account
Id string - The account id of the rabbitmq instance.
- Apply
Private boolDns To Public - Whether enable the public network parsing function of the rabbitmq instance.
- Arch
Type string - The type of the rabbitmq instance.
- Charge
Details List<InstancesRabbitmq Instance Charge Detail> - The charge detail information of the rabbitmq instance.
- Compute
Spec string - The compute specification of the rabbitmq instance.
- Create
Time string - The create time of the rabbitmq instance.
- Eip
Id string - The eip id of the rabbitmq instance.
- Endpoints
List<Instances
Rabbitmq Instance Endpoint> - The endpoint info of the rabbitmq instance.
- Id string
- The id of the rabbitmq instance.
- Init
User stringName - The WebUI admin user name of the rabbitmq instance.
- Instance
Description string - The description of the rabbitmq instance.
- Instance
Id string - The id of rabbitmq instance. This field supports fuzzy query.
- Instance
Name string - The name of rabbitmq instance. This field supports fuzzy query.
- Instance
Status string - The status of rabbitmq instance.
- Project
Name string - The project name of rabbitmq instance.
- Region
Description string - The region description of the rabbitmq instance.
- Region
Id string - The region id of the rabbitmq instance.
- Storage
Space int - The total storage space of the rabbitmq instance. Unit: GiB.
- Subnet
Id string - The subnet id of the rabbitmq instance.
- List<Instances
Rabbitmq Instance Tag> - Tags.
- Used
Storage intSpace - The used storage space of the rabbitmq instance. Unit: GiB.
- Version string
- The version of the rabbitmq instance.
- Vpc
Id string - The vpc id of rabbitmq instance. This field supports fuzzy query.
- Zone
Description string - The zone description of the rabbitmq instance.
- Zone
Id string - The zone id of rabbitmq instance. This field supports fuzzy query.
- Account
Id string - The account id of the rabbitmq instance.
- Apply
Private boolDns To Public - Whether enable the public network parsing function of the rabbitmq instance.
- Arch
Type string - The type of the rabbitmq instance.
- Charge
Details []InstancesRabbitmq Instance Charge Detail - The charge detail information of the rabbitmq instance.
- Compute
Spec string - The compute specification of the rabbitmq instance.
- Create
Time string - The create time of the rabbitmq instance.
- Eip
Id string - The eip id of the rabbitmq instance.
- Endpoints
[]Instances
Rabbitmq Instance Endpoint - The endpoint info of the rabbitmq instance.
- Id string
- The id of the rabbitmq instance.
- Init
User stringName - The WebUI admin user name of the rabbitmq instance.
- Instance
Description string - The description of the rabbitmq instance.
- Instance
Id string - The id of rabbitmq instance. This field supports fuzzy query.
- Instance
Name string - The name of rabbitmq instance. This field supports fuzzy query.
- Instance
Status string - The status of rabbitmq instance.
- Project
Name string - The project name of rabbitmq instance.
- Region
Description string - The region description of the rabbitmq instance.
- Region
Id string - The region id of the rabbitmq instance.
- Storage
Space int - The total storage space of the rabbitmq instance. Unit: GiB.
- Subnet
Id string - The subnet id of the rabbitmq instance.
- []Instances
Rabbitmq Instance Tag - Tags.
- Used
Storage intSpace - The used storage space of the rabbitmq instance. Unit: GiB.
- Version string
- The version of the rabbitmq instance.
- Vpc
Id string - The vpc id of rabbitmq instance. This field supports fuzzy query.
- Zone
Description string - The zone description of the rabbitmq instance.
- Zone
Id string - The zone id of rabbitmq instance. This field supports fuzzy query.
- account
Id String - The account id of the rabbitmq instance.
- apply
Private BooleanDns To Public - Whether enable the public network parsing function of the rabbitmq instance.
- arch
Type String - The type of the rabbitmq instance.
- charge
Details List<InstancesRabbitmq Instance Charge Detail> - The charge detail information of the rabbitmq instance.
- compute
Spec String - The compute specification of the rabbitmq instance.
- create
Time String - The create time of the rabbitmq instance.
- eip
Id String - The eip id of the rabbitmq instance.
- endpoints
List<Instances
Rabbitmq Instance Endpoint> - The endpoint info of the rabbitmq instance.
- id String
- The id of the rabbitmq instance.
- init
User StringName - The WebUI admin user name of the rabbitmq instance.
- instance
Description String - The description of the rabbitmq instance.
- instance
Id String - The id of rabbitmq instance. This field supports fuzzy query.
- instance
Name String - The name of rabbitmq instance. This field supports fuzzy query.
- instance
Status String - The status of rabbitmq instance.
- project
Name String - The project name of rabbitmq instance.
- region
Description String - The region description of the rabbitmq instance.
- region
Id String - The region id of the rabbitmq instance.
- storage
Space Integer - The total storage space of the rabbitmq instance. Unit: GiB.
- subnet
Id String - The subnet id of the rabbitmq instance.
- List<Instances
Rabbitmq Instance Tag> - Tags.
- used
Storage IntegerSpace - The used storage space of the rabbitmq instance. Unit: GiB.
- version String
- The version of the rabbitmq instance.
- vpc
Id String - The vpc id of rabbitmq instance. This field supports fuzzy query.
- zone
Description String - The zone description of the rabbitmq instance.
- zone
Id String - The zone id of rabbitmq instance. This field supports fuzzy query.
- account
Id string - The account id of the rabbitmq instance.
- apply
Private booleanDns To Public - Whether enable the public network parsing function of the rabbitmq instance.
- arch
Type string - The type of the rabbitmq instance.
- charge
Details InstancesRabbitmq Instance Charge Detail[] - The charge detail information of the rabbitmq instance.
- compute
Spec string - The compute specification of the rabbitmq instance.
- create
Time string - The create time of the rabbitmq instance.
- eip
Id string - The eip id of the rabbitmq instance.
- endpoints
Instances
Rabbitmq Instance Endpoint[] - The endpoint info of the rabbitmq instance.
- id string
- The id of the rabbitmq instance.
- init
User stringName - The WebUI admin user name of the rabbitmq instance.
- instance
Description string - The description of the rabbitmq instance.
- instance
Id string - The id of rabbitmq instance. This field supports fuzzy query.
- instance
Name string - The name of rabbitmq instance. This field supports fuzzy query.
- instance
Status string - The status of rabbitmq instance.
- project
Name string - The project name of rabbitmq instance.
- region
Description string - The region description of the rabbitmq instance.
- region
Id string - The region id of the rabbitmq instance.
- storage
Space number - The total storage space of the rabbitmq instance. Unit: GiB.
- subnet
Id string - The subnet id of the rabbitmq instance.
- Instances
Rabbitmq Instance Tag[] - Tags.
- used
Storage numberSpace - The used storage space of the rabbitmq instance. Unit: GiB.
- version string
- The version of the rabbitmq instance.
- vpc
Id string - The vpc id of rabbitmq instance. This field supports fuzzy query.
- zone
Description string - The zone description of the rabbitmq instance.
- zone
Id string - The zone id of rabbitmq instance. This field supports fuzzy query.
- account_
id str - The account id of the rabbitmq instance.
- apply_
private_ booldns_ to_ public - Whether enable the public network parsing function of the rabbitmq instance.
- arch_
type str - The type of the rabbitmq instance.
- charge_
details Sequence[InstancesRabbitmq Instance Charge Detail] - The charge detail information of the rabbitmq instance.
- compute_
spec str - The compute specification of the rabbitmq instance.
- create_
time str - The create time of the rabbitmq instance.
- eip_
id str - The eip id of the rabbitmq instance.
- endpoints
Sequence[Instances
Rabbitmq Instance Endpoint] - The endpoint info of the rabbitmq instance.
- id str
- The id of the rabbitmq instance.
- init_
user_ strname - The WebUI admin user name of the rabbitmq instance.
- instance_
description str - The description of the rabbitmq instance.
- instance_
id str - The id of rabbitmq instance. This field supports fuzzy query.
- instance_
name str - The name of rabbitmq instance. This field supports fuzzy query.
- instance_
status str - The status of rabbitmq instance.
- project_
name str - The project name of rabbitmq instance.
- region_
description str - The region description of the rabbitmq instance.
- region_
id str - The region id of the rabbitmq instance.
- storage_
space int - The total storage space of the rabbitmq instance. Unit: GiB.
- subnet_
id str - The subnet id of the rabbitmq instance.
- Sequence[Instances
Rabbitmq Instance Tag] - Tags.
- used_
storage_ intspace - The used storage space of the rabbitmq instance. Unit: GiB.
- version str
- The version of the rabbitmq instance.
- vpc_
id str - The vpc id of rabbitmq instance. This field supports fuzzy query.
- zone_
description str - The zone description of the rabbitmq instance.
- zone_
id str - The zone id of rabbitmq instance. This field supports fuzzy query.
- account
Id String - The account id of the rabbitmq instance.
- apply
Private BooleanDns To Public - Whether enable the public network parsing function of the rabbitmq instance.
- arch
Type String - The type of the rabbitmq instance.
- charge
Details List<Property Map> - The charge detail information of the rabbitmq instance.
- compute
Spec String - The compute specification of the rabbitmq instance.
- create
Time String - The create time of the rabbitmq instance.
- eip
Id String - The eip id of the rabbitmq instance.
- endpoints List<Property Map>
- The endpoint info of the rabbitmq instance.
- id String
- The id of the rabbitmq instance.
- init
User StringName - The WebUI admin user name of the rabbitmq instance.
- instance
Description String - The description of the rabbitmq instance.
- instance
Id String - The id of rabbitmq instance. This field supports fuzzy query.
- instance
Name String - The name of rabbitmq instance. This field supports fuzzy query.
- instance
Status String - The status of rabbitmq instance.
- project
Name String - The project name of rabbitmq instance.
- region
Description String - The region description of the rabbitmq instance.
- region
Id String - The region id of the rabbitmq instance.
- storage
Space Number - The total storage space of the rabbitmq instance. Unit: GiB.
- subnet
Id String - The subnet id of the rabbitmq instance.
- List<Property Map>
- Tags.
- used
Storage NumberSpace - The used storage space of the rabbitmq instance. Unit: GiB.
- version String
- The version of the rabbitmq instance.
- vpc
Id String - The vpc id of rabbitmq instance. This field supports fuzzy query.
- zone
Description String - The zone description of the rabbitmq instance.
- zone
Id String - The zone id of rabbitmq instance. This field supports fuzzy query.
InstancesRabbitmqInstanceChargeDetail
- Auto
Renew bool - Whether to automatically renew in prepaid scenarios.
- Charge
End stringTime - The charge end time of the rabbitmq instance.
- Charge
Expire stringTime - The charge expire time of the rabbitmq instance.
- Charge
Start stringTime - The charge start time of the rabbitmq instance.
- Charge
Status string - The charge status of the rabbitmq instance.
- Charge
Type string - The charge type of rabbitmq instance.
- Overdue
Reclaim stringTime - The overdue reclaim time of the rabbitmq instance.
- Overdue
Time string - The overdue time of the rabbitmq instance.
- Auto
Renew bool - Whether to automatically renew in prepaid scenarios.
- Charge
End stringTime - The charge end time of the rabbitmq instance.
- Charge
Expire stringTime - The charge expire time of the rabbitmq instance.
- Charge
Start stringTime - The charge start time of the rabbitmq instance.
- Charge
Status string - The charge status of the rabbitmq instance.
- Charge
Type string - The charge type of rabbitmq instance.
- Overdue
Reclaim stringTime - The overdue reclaim time of the rabbitmq instance.
- Overdue
Time string - The overdue time of the rabbitmq instance.
- auto
Renew Boolean - Whether to automatically renew in prepaid scenarios.
- charge
End StringTime - The charge end time of the rabbitmq instance.
- charge
Expire StringTime - The charge expire time of the rabbitmq instance.
- charge
Start StringTime - The charge start time of the rabbitmq instance.
- charge
Status String - The charge status of the rabbitmq instance.
- charge
Type String - The charge type of rabbitmq instance.
- overdue
Reclaim StringTime - The overdue reclaim time of the rabbitmq instance.
- overdue
Time String - The overdue time of the rabbitmq instance.
- auto
Renew boolean - Whether to automatically renew in prepaid scenarios.
- charge
End stringTime - The charge end time of the rabbitmq instance.
- charge
Expire stringTime - The charge expire time of the rabbitmq instance.
- charge
Start stringTime - The charge start time of the rabbitmq instance.
- charge
Status string - The charge status of the rabbitmq instance.
- charge
Type string - The charge type of rabbitmq instance.
- overdue
Reclaim stringTime - The overdue reclaim time of the rabbitmq instance.
- overdue
Time string - The overdue time of the rabbitmq instance.
- auto_
renew bool - Whether to automatically renew in prepaid scenarios.
- charge_
end_ strtime - The charge end time of the rabbitmq instance.
- charge_
expire_ strtime - The charge expire time of the rabbitmq instance.
- charge_
start_ strtime - The charge start time of the rabbitmq instance.
- charge_
status str - The charge status of the rabbitmq instance.
- charge_
type str - The charge type of rabbitmq instance.
- overdue_
reclaim_ strtime - The overdue reclaim time of the rabbitmq instance.
- overdue_
time str - The overdue time of the rabbitmq instance.
- auto
Renew Boolean - Whether to automatically renew in prepaid scenarios.
- charge
End StringTime - The charge end time of the rabbitmq instance.
- charge
Expire StringTime - The charge expire time of the rabbitmq instance.
- charge
Start StringTime - The charge start time of the rabbitmq instance.
- charge
Status String - The charge status of the rabbitmq instance.
- charge
Type String - The charge type of rabbitmq instance.
- overdue
Reclaim StringTime - The overdue reclaim time of the rabbitmq instance.
- overdue
Time String - The overdue time of the rabbitmq instance.
InstancesRabbitmqInstanceEndpoint
- Endpoint
Type string - The endpoint type of the rabbitmq instance.
- Internal
Endpoint string - The internal endpoint of the rabbitmq instance.
- Network
Type string - The network type of the rabbitmq instance.
- Public
Endpoint string - The public endpoint of the rabbitmq instance.
- Endpoint
Type string - The endpoint type of the rabbitmq instance.
- Internal
Endpoint string - The internal endpoint of the rabbitmq instance.
- Network
Type string - The network type of the rabbitmq instance.
- Public
Endpoint string - The public endpoint of the rabbitmq instance.
- endpoint
Type String - The endpoint type of the rabbitmq instance.
- internal
Endpoint String - The internal endpoint of the rabbitmq instance.
- network
Type String - The network type of the rabbitmq instance.
- public
Endpoint String - The public endpoint of the rabbitmq instance.
- endpoint
Type string - The endpoint type of the rabbitmq instance.
- internal
Endpoint string - The internal endpoint of the rabbitmq instance.
- network
Type string - The network type of the rabbitmq instance.
- public
Endpoint string - The public endpoint of the rabbitmq instance.
- endpoint_
type str - The endpoint type of the rabbitmq instance.
- internal_
endpoint str - The internal endpoint of the rabbitmq instance.
- network_
type str - The network type of the rabbitmq instance.
- public_
endpoint str - The public endpoint of the rabbitmq instance.
- endpoint
Type String - The endpoint type of the rabbitmq instance.
- internal
Endpoint String - The internal endpoint of the rabbitmq instance.
- network
Type String - The network type of the rabbitmq instance.
- public
Endpoint String - The public endpoint of the rabbitmq instance.
InstancesRabbitmqInstanceTag
InstancesTag
Package Details
- Repository
- volcengine volcengine/pulumi-volcengine
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
volcengine
Terraform Provider.