1. Packages
  2. Alibaba Cloud
  3. API Docs
  4. mse
  5. Cluster
Alibaba Cloud v3.51.0 published on Saturday, Mar 23, 2024 by Pulumi

alicloud.mse.Cluster

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.51.0 published on Saturday, Mar 23, 2024 by Pulumi

    Provides a MSE Cluster resource. It is a one-stop microservice platform for the industry’s mainstream open source microservice frameworks Spring Cloud and Dubbo, providing governance center, managed registry and managed configuration center.

    NOTE: Available in 1.94.0+.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    
    const exampleZones = alicloud.getZones({
        availableResourceCreation: "VSwitch",
    });
    const exampleNetwork = new alicloud.vpc.Network("exampleNetwork", {
        vpcName: "terraform-example",
        cidrBlock: "172.17.3.0/24",
    });
    const exampleSwitch = new alicloud.vpc.Switch("exampleSwitch", {
        vswitchName: "terraform-example",
        cidrBlock: "172.17.3.0/24",
        vpcId: exampleNetwork.id,
        zoneId: exampleZones.then(exampleZones => exampleZones.zones?.[0]?.id),
    });
    const exampleCluster = new alicloud.mse.Cluster("exampleCluster", {
        clusterSpecification: "MSE_SC_1_2_60_c",
        clusterType: "Nacos-Ans",
        clusterVersion: "NACOS_2_0_0",
        instanceCount: 1,
        netType: "privatenet",
        pubNetworkFlow: "1",
        connectionType: "slb",
        clusterAliasName: "terraform-example",
        mseVersion: "mse_dev",
        vswitchId: exampleSwitch.id,
        vpcId: exampleNetwork.id,
    });
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    example_zones = alicloud.get_zones(available_resource_creation="VSwitch")
    example_network = alicloud.vpc.Network("exampleNetwork",
        vpc_name="terraform-example",
        cidr_block="172.17.3.0/24")
    example_switch = alicloud.vpc.Switch("exampleSwitch",
        vswitch_name="terraform-example",
        cidr_block="172.17.3.0/24",
        vpc_id=example_network.id,
        zone_id=example_zones.zones[0].id)
    example_cluster = alicloud.mse.Cluster("exampleCluster",
        cluster_specification="MSE_SC_1_2_60_c",
        cluster_type="Nacos-Ans",
        cluster_version="NACOS_2_0_0",
        instance_count=1,
        net_type="privatenet",
        pub_network_flow="1",
        connection_type="slb",
        cluster_alias_name="terraform-example",
        mse_version="mse_dev",
        vswitch_id=example_switch.id,
        vpc_id=example_network.id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud"
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/mse"
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		exampleZones, err := alicloud.GetZones(ctx, &alicloud.GetZonesArgs{
    			AvailableResourceCreation: pulumi.StringRef("VSwitch"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		exampleNetwork, err := vpc.NewNetwork(ctx, "exampleNetwork", &vpc.NetworkArgs{
    			VpcName:   pulumi.String("terraform-example"),
    			CidrBlock: pulumi.String("172.17.3.0/24"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleSwitch, err := vpc.NewSwitch(ctx, "exampleSwitch", &vpc.SwitchArgs{
    			VswitchName: pulumi.String("terraform-example"),
    			CidrBlock:   pulumi.String("172.17.3.0/24"),
    			VpcId:       exampleNetwork.ID(),
    			ZoneId:      pulumi.String(exampleZones.Zones[0].Id),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = mse.NewCluster(ctx, "exampleCluster", &mse.ClusterArgs{
    			ClusterSpecification: pulumi.String("MSE_SC_1_2_60_c"),
    			ClusterType:          pulumi.String("Nacos-Ans"),
    			ClusterVersion:       pulumi.String("NACOS_2_0_0"),
    			InstanceCount:        pulumi.Int(1),
    			NetType:              pulumi.String("privatenet"),
    			PubNetworkFlow:       pulumi.String("1"),
    			ConnectionType:       pulumi.String("slb"),
    			ClusterAliasName:     pulumi.String("terraform-example"),
    			MseVersion:           pulumi.String("mse_dev"),
    			VswitchId:            exampleSwitch.ID(),
    			VpcId:                exampleNetwork.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AliCloud = Pulumi.AliCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleZones = AliCloud.GetZones.Invoke(new()
        {
            AvailableResourceCreation = "VSwitch",
        });
    
        var exampleNetwork = new AliCloud.Vpc.Network("exampleNetwork", new()
        {
            VpcName = "terraform-example",
            CidrBlock = "172.17.3.0/24",
        });
    
        var exampleSwitch = new AliCloud.Vpc.Switch("exampleSwitch", new()
        {
            VswitchName = "terraform-example",
            CidrBlock = "172.17.3.0/24",
            VpcId = exampleNetwork.Id,
            ZoneId = exampleZones.Apply(getZonesResult => getZonesResult.Zones[0]?.Id),
        });
    
        var exampleCluster = new AliCloud.Mse.Cluster("exampleCluster", new()
        {
            ClusterSpecification = "MSE_SC_1_2_60_c",
            ClusterType = "Nacos-Ans",
            ClusterVersion = "NACOS_2_0_0",
            InstanceCount = 1,
            NetType = "privatenet",
            PubNetworkFlow = "1",
            ConnectionType = "slb",
            ClusterAliasName = "terraform-example",
            MseVersion = "mse_dev",
            VswitchId = exampleSwitch.Id,
            VpcId = exampleNetwork.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.AlicloudFunctions;
    import com.pulumi.alicloud.inputs.GetZonesArgs;
    import com.pulumi.alicloud.vpc.Network;
    import com.pulumi.alicloud.vpc.NetworkArgs;
    import com.pulumi.alicloud.vpc.Switch;
    import com.pulumi.alicloud.vpc.SwitchArgs;
    import com.pulumi.alicloud.mse.Cluster;
    import com.pulumi.alicloud.mse.ClusterArgs;
    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 exampleZones = AlicloudFunctions.getZones(GetZonesArgs.builder()
                .availableResourceCreation("VSwitch")
                .build());
    
            var exampleNetwork = new Network("exampleNetwork", NetworkArgs.builder()        
                .vpcName("terraform-example")
                .cidrBlock("172.17.3.0/24")
                .build());
    
            var exampleSwitch = new Switch("exampleSwitch", SwitchArgs.builder()        
                .vswitchName("terraform-example")
                .cidrBlock("172.17.3.0/24")
                .vpcId(exampleNetwork.id())
                .zoneId(exampleZones.applyValue(getZonesResult -> getZonesResult.zones()[0].id()))
                .build());
    
            var exampleCluster = new Cluster("exampleCluster", ClusterArgs.builder()        
                .clusterSpecification("MSE_SC_1_2_60_c")
                .clusterType("Nacos-Ans")
                .clusterVersion("NACOS_2_0_0")
                .instanceCount(1)
                .netType("privatenet")
                .pubNetworkFlow("1")
                .connectionType("slb")
                .clusterAliasName("terraform-example")
                .mseVersion("mse_dev")
                .vswitchId(exampleSwitch.id())
                .vpcId(exampleNetwork.id())
                .build());
    
        }
    }
    
    resources:
      exampleNetwork:
        type: alicloud:vpc:Network
        properties:
          vpcName: terraform-example
          cidrBlock: 172.17.3.0/24
      exampleSwitch:
        type: alicloud:vpc:Switch
        properties:
          vswitchName: terraform-example
          cidrBlock: 172.17.3.0/24
          vpcId: ${exampleNetwork.id}
          zoneId: ${exampleZones.zones[0].id}
      exampleCluster:
        type: alicloud:mse:Cluster
        properties:
          clusterSpecification: MSE_SC_1_2_60_c
          clusterType: Nacos-Ans
          clusterVersion: NACOS_2_0_0
          instanceCount: 1
          netType: privatenet
          pubNetworkFlow: '1'
          connectionType: slb
          clusterAliasName: terraform-example
          mseVersion: mse_dev
          vswitchId: ${exampleSwitch.id}
          vpcId: ${exampleNetwork.id}
    variables:
      exampleZones:
        fn::invoke:
          Function: alicloud:getZones
          Arguments:
            availableResourceCreation: VSwitch
    

    Create Cluster Resource

    new Cluster(name: string, args: ClusterArgs, opts?: CustomResourceOptions);
    @overload
    def Cluster(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                acl_entry_lists: Optional[Sequence[str]] = None,
                cluster_alias_name: Optional[str] = None,
                cluster_specification: Optional[str] = None,
                cluster_type: Optional[str] = None,
                cluster_version: Optional[str] = None,
                connection_type: Optional[str] = None,
                disk_type: Optional[str] = None,
                instance_count: Optional[int] = None,
                mse_version: Optional[str] = None,
                net_type: Optional[str] = None,
                private_slb_specification: Optional[str] = None,
                pub_network_flow: Optional[str] = None,
                pub_slb_specification: Optional[str] = None,
                request_pars: Optional[str] = None,
                vpc_id: Optional[str] = None,
                vswitch_id: Optional[str] = None)
    @overload
    def Cluster(resource_name: str,
                args: ClusterArgs,
                opts: Optional[ResourceOptions] = None)
    func NewCluster(ctx *Context, name string, args ClusterArgs, opts ...ResourceOption) (*Cluster, error)
    public Cluster(string name, ClusterArgs args, CustomResourceOptions? opts = null)
    public Cluster(String name, ClusterArgs args)
    public Cluster(String name, ClusterArgs args, CustomResourceOptions options)
    
    type: alicloud:mse:Cluster
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args ClusterArgs
    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 ClusterArgs
    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 ClusterArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ClusterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ClusterArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Cluster Resource Properties

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

    Inputs

    The Cluster resource accepts the following input properties:

    ClusterSpecification string
    The engine specification of MSE Cluster. NOTE: From version 1.188.0, cluster_specification can be modified. Valid values:
    ClusterType string
    The type of MSE Cluster.
    ClusterVersion string
    The version of MSE Cluster. See details
    InstanceCount int
    The count of instance. NOTE: From version 1.188.0, instance_count can be modified.
    NetType string
    The type of network. Valid values: "privatenet" and "pubnet".
    PubNetworkFlow string
    The public network bandwidth. 0 means no access to the public network.
    AclEntryLists List<string>
    The whitelist. NOTE: This attribute is invalid when the value of pub_network_flow is 0 and the value of net_type is privatenet.
    ClusterAliasName string
    The alias of MSE Cluster.
    ConnectionType string
    The connection type. Valid values: slb.
    DiskType string
    The type of Disk.
    MseVersion string
    The version of MSE. Valid values: mse_dev or mse_pro.
    PrivateSlbSpecification string
    The specification of private network SLB.
    PubSlbSpecification string
    The specification of public network SLB.
    RequestPars string
    The extended request parameters in the JSON format.
    VpcId string
    The id of the VPC.
    VswitchId string
    The id of VSwitch.
    ClusterSpecification string
    The engine specification of MSE Cluster. NOTE: From version 1.188.0, cluster_specification can be modified. Valid values:
    ClusterType string
    The type of MSE Cluster.
    ClusterVersion string
    The version of MSE Cluster. See details
    InstanceCount int
    The count of instance. NOTE: From version 1.188.0, instance_count can be modified.
    NetType string
    The type of network. Valid values: "privatenet" and "pubnet".
    PubNetworkFlow string
    The public network bandwidth. 0 means no access to the public network.
    AclEntryLists []string
    The whitelist. NOTE: This attribute is invalid when the value of pub_network_flow is 0 and the value of net_type is privatenet.
    ClusterAliasName string
    The alias of MSE Cluster.
    ConnectionType string
    The connection type. Valid values: slb.
    DiskType string
    The type of Disk.
    MseVersion string
    The version of MSE. Valid values: mse_dev or mse_pro.
    PrivateSlbSpecification string
    The specification of private network SLB.
    PubSlbSpecification string
    The specification of public network SLB.
    RequestPars string
    The extended request parameters in the JSON format.
    VpcId string
    The id of the VPC.
    VswitchId string
    The id of VSwitch.
    clusterSpecification String
    The engine specification of MSE Cluster. NOTE: From version 1.188.0, cluster_specification can be modified. Valid values:
    clusterType String
    The type of MSE Cluster.
    clusterVersion String
    The version of MSE Cluster. See details
    instanceCount Integer
    The count of instance. NOTE: From version 1.188.0, instance_count can be modified.
    netType String
    The type of network. Valid values: "privatenet" and "pubnet".
    pubNetworkFlow String
    The public network bandwidth. 0 means no access to the public network.
    aclEntryLists List<String>
    The whitelist. NOTE: This attribute is invalid when the value of pub_network_flow is 0 and the value of net_type is privatenet.
    clusterAliasName String
    The alias of MSE Cluster.
    connectionType String
    The connection type. Valid values: slb.
    diskType String
    The type of Disk.
    mseVersion String
    The version of MSE. Valid values: mse_dev or mse_pro.
    privateSlbSpecification String
    The specification of private network SLB.
    pubSlbSpecification String
    The specification of public network SLB.
    requestPars String
    The extended request parameters in the JSON format.
    vpcId String
    The id of the VPC.
    vswitchId String
    The id of VSwitch.
    clusterSpecification string
    The engine specification of MSE Cluster. NOTE: From version 1.188.0, cluster_specification can be modified. Valid values:
    clusterType string
    The type of MSE Cluster.
    clusterVersion string
    The version of MSE Cluster. See details
    instanceCount number
    The count of instance. NOTE: From version 1.188.0, instance_count can be modified.
    netType string
    The type of network. Valid values: "privatenet" and "pubnet".
    pubNetworkFlow string
    The public network bandwidth. 0 means no access to the public network.
    aclEntryLists string[]
    The whitelist. NOTE: This attribute is invalid when the value of pub_network_flow is 0 and the value of net_type is privatenet.
    clusterAliasName string
    The alias of MSE Cluster.
    connectionType string
    The connection type. Valid values: slb.
    diskType string
    The type of Disk.
    mseVersion string
    The version of MSE. Valid values: mse_dev or mse_pro.
    privateSlbSpecification string
    The specification of private network SLB.
    pubSlbSpecification string
    The specification of public network SLB.
    requestPars string
    The extended request parameters in the JSON format.
    vpcId string
    The id of the VPC.
    vswitchId string
    The id of VSwitch.
    cluster_specification str
    The engine specification of MSE Cluster. NOTE: From version 1.188.0, cluster_specification can be modified. Valid values:
    cluster_type str
    The type of MSE Cluster.
    cluster_version str
    The version of MSE Cluster. See details
    instance_count int
    The count of instance. NOTE: From version 1.188.0, instance_count can be modified.
    net_type str
    The type of network. Valid values: "privatenet" and "pubnet".
    pub_network_flow str
    The public network bandwidth. 0 means no access to the public network.
    acl_entry_lists Sequence[str]
    The whitelist. NOTE: This attribute is invalid when the value of pub_network_flow is 0 and the value of net_type is privatenet.
    cluster_alias_name str
    The alias of MSE Cluster.
    connection_type str
    The connection type. Valid values: slb.
    disk_type str
    The type of Disk.
    mse_version str
    The version of MSE. Valid values: mse_dev or mse_pro.
    private_slb_specification str
    The specification of private network SLB.
    pub_slb_specification str
    The specification of public network SLB.
    request_pars str
    The extended request parameters in the JSON format.
    vpc_id str
    The id of the VPC.
    vswitch_id str
    The id of VSwitch.
    clusterSpecification String
    The engine specification of MSE Cluster. NOTE: From version 1.188.0, cluster_specification can be modified. Valid values:
    clusterType String
    The type of MSE Cluster.
    clusterVersion String
    The version of MSE Cluster. See details
    instanceCount Number
    The count of instance. NOTE: From version 1.188.0, instance_count can be modified.
    netType String
    The type of network. Valid values: "privatenet" and "pubnet".
    pubNetworkFlow String
    The public network bandwidth. 0 means no access to the public network.
    aclEntryLists List<String>
    The whitelist. NOTE: This attribute is invalid when the value of pub_network_flow is 0 and the value of net_type is privatenet.
    clusterAliasName String
    The alias of MSE Cluster.
    connectionType String
    The connection type. Valid values: slb.
    diskType String
    The type of Disk.
    mseVersion String
    The version of MSE. Valid values: mse_dev or mse_pro.
    privateSlbSpecification String
    The specification of private network SLB.
    pubSlbSpecification String
    The specification of public network SLB.
    requestPars String
    The extended request parameters in the JSON format.
    vpcId String
    The id of the VPC.
    vswitchId String
    The id of VSwitch.

    Outputs

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

    AppVersion string
    (Available in v1.205.0+) The application version.
    ClusterId string
    (Available in v1.162.0+) The id of Cluster.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    The status of MSE Cluster.
    AppVersion string
    (Available in v1.205.0+) The application version.
    ClusterId string
    (Available in v1.162.0+) The id of Cluster.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    The status of MSE Cluster.
    appVersion String
    (Available in v1.205.0+) The application version.
    clusterId String
    (Available in v1.162.0+) The id of Cluster.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    The status of MSE Cluster.
    appVersion string
    (Available in v1.205.0+) The application version.
    clusterId string
    (Available in v1.162.0+) The id of Cluster.
    id string
    The provider-assigned unique ID for this managed resource.
    status string
    The status of MSE Cluster.
    app_version str
    (Available in v1.205.0+) The application version.
    cluster_id str
    (Available in v1.162.0+) The id of Cluster.
    id str
    The provider-assigned unique ID for this managed resource.
    status str
    The status of MSE Cluster.
    appVersion String
    (Available in v1.205.0+) The application version.
    clusterId String
    (Available in v1.162.0+) The id of Cluster.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    The status of MSE Cluster.

    Look up Existing Cluster Resource

    Get an existing Cluster 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?: ClusterState, opts?: CustomResourceOptions): Cluster
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            acl_entry_lists: Optional[Sequence[str]] = None,
            app_version: Optional[str] = None,
            cluster_alias_name: Optional[str] = None,
            cluster_id: Optional[str] = None,
            cluster_specification: Optional[str] = None,
            cluster_type: Optional[str] = None,
            cluster_version: Optional[str] = None,
            connection_type: Optional[str] = None,
            disk_type: Optional[str] = None,
            instance_count: Optional[int] = None,
            mse_version: Optional[str] = None,
            net_type: Optional[str] = None,
            private_slb_specification: Optional[str] = None,
            pub_network_flow: Optional[str] = None,
            pub_slb_specification: Optional[str] = None,
            request_pars: Optional[str] = None,
            status: Optional[str] = None,
            vpc_id: Optional[str] = None,
            vswitch_id: Optional[str] = None) -> Cluster
    func GetCluster(ctx *Context, name string, id IDInput, state *ClusterState, opts ...ResourceOption) (*Cluster, error)
    public static Cluster Get(string name, Input<string> id, ClusterState? state, CustomResourceOptions? opts = null)
    public static Cluster get(String name, Output<String> id, ClusterState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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:
    AclEntryLists List<string>
    The whitelist. NOTE: This attribute is invalid when the value of pub_network_flow is 0 and the value of net_type is privatenet.
    AppVersion string
    (Available in v1.205.0+) The application version.
    ClusterAliasName string
    The alias of MSE Cluster.
    ClusterId string
    (Available in v1.162.0+) The id of Cluster.
    ClusterSpecification string
    The engine specification of MSE Cluster. NOTE: From version 1.188.0, cluster_specification can be modified. Valid values:
    ClusterType string
    The type of MSE Cluster.
    ClusterVersion string
    The version of MSE Cluster. See details
    ConnectionType string
    The connection type. Valid values: slb.
    DiskType string
    The type of Disk.
    InstanceCount int
    The count of instance. NOTE: From version 1.188.0, instance_count can be modified.
    MseVersion string
    The version of MSE. Valid values: mse_dev or mse_pro.
    NetType string
    The type of network. Valid values: "privatenet" and "pubnet".
    PrivateSlbSpecification string
    The specification of private network SLB.
    PubNetworkFlow string
    The public network bandwidth. 0 means no access to the public network.
    PubSlbSpecification string
    The specification of public network SLB.
    RequestPars string
    The extended request parameters in the JSON format.
    Status string
    The status of MSE Cluster.
    VpcId string
    The id of the VPC.
    VswitchId string
    The id of VSwitch.
    AclEntryLists []string
    The whitelist. NOTE: This attribute is invalid when the value of pub_network_flow is 0 and the value of net_type is privatenet.
    AppVersion string
    (Available in v1.205.0+) The application version.
    ClusterAliasName string
    The alias of MSE Cluster.
    ClusterId string
    (Available in v1.162.0+) The id of Cluster.
    ClusterSpecification string
    The engine specification of MSE Cluster. NOTE: From version 1.188.0, cluster_specification can be modified. Valid values:
    ClusterType string
    The type of MSE Cluster.
    ClusterVersion string
    The version of MSE Cluster. See details
    ConnectionType string
    The connection type. Valid values: slb.
    DiskType string
    The type of Disk.
    InstanceCount int
    The count of instance. NOTE: From version 1.188.0, instance_count can be modified.
    MseVersion string
    The version of MSE. Valid values: mse_dev or mse_pro.
    NetType string
    The type of network. Valid values: "privatenet" and "pubnet".
    PrivateSlbSpecification string
    The specification of private network SLB.
    PubNetworkFlow string
    The public network bandwidth. 0 means no access to the public network.
    PubSlbSpecification string
    The specification of public network SLB.
    RequestPars string
    The extended request parameters in the JSON format.
    Status string
    The status of MSE Cluster.
    VpcId string
    The id of the VPC.
    VswitchId string
    The id of VSwitch.
    aclEntryLists List<String>
    The whitelist. NOTE: This attribute is invalid when the value of pub_network_flow is 0 and the value of net_type is privatenet.
    appVersion String
    (Available in v1.205.0+) The application version.
    clusterAliasName String
    The alias of MSE Cluster.
    clusterId String
    (Available in v1.162.0+) The id of Cluster.
    clusterSpecification String
    The engine specification of MSE Cluster. NOTE: From version 1.188.0, cluster_specification can be modified. Valid values:
    clusterType String
    The type of MSE Cluster.
    clusterVersion String
    The version of MSE Cluster. See details
    connectionType String
    The connection type. Valid values: slb.
    diskType String
    The type of Disk.
    instanceCount Integer
    The count of instance. NOTE: From version 1.188.0, instance_count can be modified.
    mseVersion String
    The version of MSE. Valid values: mse_dev or mse_pro.
    netType String
    The type of network. Valid values: "privatenet" and "pubnet".
    privateSlbSpecification String
    The specification of private network SLB.
    pubNetworkFlow String
    The public network bandwidth. 0 means no access to the public network.
    pubSlbSpecification String
    The specification of public network SLB.
    requestPars String
    The extended request parameters in the JSON format.
    status String
    The status of MSE Cluster.
    vpcId String
    The id of the VPC.
    vswitchId String
    The id of VSwitch.
    aclEntryLists string[]
    The whitelist. NOTE: This attribute is invalid when the value of pub_network_flow is 0 and the value of net_type is privatenet.
    appVersion string
    (Available in v1.205.0+) The application version.
    clusterAliasName string
    The alias of MSE Cluster.
    clusterId string
    (Available in v1.162.0+) The id of Cluster.
    clusterSpecification string
    The engine specification of MSE Cluster. NOTE: From version 1.188.0, cluster_specification can be modified. Valid values:
    clusterType string
    The type of MSE Cluster.
    clusterVersion string
    The version of MSE Cluster. See details
    connectionType string
    The connection type. Valid values: slb.
    diskType string
    The type of Disk.
    instanceCount number
    The count of instance. NOTE: From version 1.188.0, instance_count can be modified.
    mseVersion string
    The version of MSE. Valid values: mse_dev or mse_pro.
    netType string
    The type of network. Valid values: "privatenet" and "pubnet".
    privateSlbSpecification string
    The specification of private network SLB.
    pubNetworkFlow string
    The public network bandwidth. 0 means no access to the public network.
    pubSlbSpecification string
    The specification of public network SLB.
    requestPars string
    The extended request parameters in the JSON format.
    status string
    The status of MSE Cluster.
    vpcId string
    The id of the VPC.
    vswitchId string
    The id of VSwitch.
    acl_entry_lists Sequence[str]
    The whitelist. NOTE: This attribute is invalid when the value of pub_network_flow is 0 and the value of net_type is privatenet.
    app_version str
    (Available in v1.205.0+) The application version.
    cluster_alias_name str
    The alias of MSE Cluster.
    cluster_id str
    (Available in v1.162.0+) The id of Cluster.
    cluster_specification str
    The engine specification of MSE Cluster. NOTE: From version 1.188.0, cluster_specification can be modified. Valid values:
    cluster_type str
    The type of MSE Cluster.
    cluster_version str
    The version of MSE Cluster. See details
    connection_type str
    The connection type. Valid values: slb.
    disk_type str
    The type of Disk.
    instance_count int
    The count of instance. NOTE: From version 1.188.0, instance_count can be modified.
    mse_version str
    The version of MSE. Valid values: mse_dev or mse_pro.
    net_type str
    The type of network. Valid values: "privatenet" and "pubnet".
    private_slb_specification str
    The specification of private network SLB.
    pub_network_flow str
    The public network bandwidth. 0 means no access to the public network.
    pub_slb_specification str
    The specification of public network SLB.
    request_pars str
    The extended request parameters in the JSON format.
    status str
    The status of MSE Cluster.
    vpc_id str
    The id of the VPC.
    vswitch_id str
    The id of VSwitch.
    aclEntryLists List<String>
    The whitelist. NOTE: This attribute is invalid when the value of pub_network_flow is 0 and the value of net_type is privatenet.
    appVersion String
    (Available in v1.205.0+) The application version.
    clusterAliasName String
    The alias of MSE Cluster.
    clusterId String
    (Available in v1.162.0+) The id of Cluster.
    clusterSpecification String
    The engine specification of MSE Cluster. NOTE: From version 1.188.0, cluster_specification can be modified. Valid values:
    clusterType String
    The type of MSE Cluster.
    clusterVersion String
    The version of MSE Cluster. See details
    connectionType String
    The connection type. Valid values: slb.
    diskType String
    The type of Disk.
    instanceCount Number
    The count of instance. NOTE: From version 1.188.0, instance_count can be modified.
    mseVersion String
    The version of MSE. Valid values: mse_dev or mse_pro.
    netType String
    The type of network. Valid values: "privatenet" and "pubnet".
    privateSlbSpecification String
    The specification of private network SLB.
    pubNetworkFlow String
    The public network bandwidth. 0 means no access to the public network.
    pubSlbSpecification String
    The specification of public network SLB.
    requestPars String
    The extended request parameters in the JSON format.
    status String
    The status of MSE Cluster.
    vpcId String
    The id of the VPC.
    vswitchId String
    The id of VSwitch.

    Import

    MSE Cluster can be imported using the id, e.g.

    $ pulumi import alicloud:mse/cluster:Cluster example mse-cn-0d9xxxx
    

    Package Details

    Repository
    Alibaba Cloud pulumi/pulumi-alicloud
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the alicloud Terraform Provider.
    alicloud logo
    Alibaba Cloud v3.51.0 published on Saturday, Mar 23, 2024 by Pulumi