1. Packages
  2. Alibaba Cloud
  3. API Docs
  4. mse
  5. Cluster
Alibaba Cloud v3.53.0 published on Wednesday, Apr 17, 2024 by Pulumi

alicloud.mse.Cluster

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.53.0 published on Wednesday, Apr 17, 2024 by Pulumi

    Import

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

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

    Create Cluster Resource

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

    Constructor syntax

    new Cluster(name: string, args: ClusterArgs, opts?: CustomResourceOptions);
    @overload
    def Cluster(resource_name: str,
                args: ClusterArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def Cluster(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                pub_network_flow: Optional[str] = None,
                instance_count: Optional[int] = None,
                net_type: Optional[str] = None,
                cluster_type: Optional[str] = None,
                cluster_version: Optional[str] = None,
                cluster_specification: Optional[str] = None,
                vswitch_id: Optional[str] = None,
                disk_type: Optional[str] = None,
                connection_type: Optional[str] = None,
                cluster_alias_name: Optional[str] = None,
                private_slb_specification: Optional[str] = None,
                payment_type: Optional[str] = None,
                acl_entry_lists: Optional[Sequence[str]] = None,
                pub_slb_specification: Optional[str] = None,
                request_pars: Optional[str] = None,
                resource_group_id: Optional[str] = None,
                tags: Optional[Mapping[str, Any]] = None,
                vpc_id: Optional[str] = None,
                mse_version: Optional[str] = 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.
    
    

    Parameters

    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.

    Example

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

    var exampleclusterResourceResourceFromMsecluster = new AliCloud.Mse.Cluster("exampleclusterResourceResourceFromMsecluster", new()
    {
        PubNetworkFlow = "string",
        InstanceCount = 0,
        NetType = "string",
        ClusterType = "string",
        ClusterVersion = "string",
        ClusterSpecification = "string",
        VswitchId = "string",
        DiskType = "string",
        ConnectionType = "string",
        ClusterAliasName = "string",
        PrivateSlbSpecification = "string",
        PaymentType = "string",
        AclEntryLists = new[]
        {
            "string",
        },
        PubSlbSpecification = "string",
        RequestPars = "string",
        ResourceGroupId = "string",
        Tags = 
        {
            { "string", "any" },
        },
        VpcId = "string",
        MseVersion = "string",
    });
    
    example, err := mse.NewCluster(ctx, "exampleclusterResourceResourceFromMsecluster", &mse.ClusterArgs{
    	PubNetworkFlow:          pulumi.String("string"),
    	InstanceCount:           pulumi.Int(0),
    	NetType:                 pulumi.String("string"),
    	ClusterType:             pulumi.String("string"),
    	ClusterVersion:          pulumi.String("string"),
    	ClusterSpecification:    pulumi.String("string"),
    	VswitchId:               pulumi.String("string"),
    	DiskType:                pulumi.String("string"),
    	ConnectionType:          pulumi.String("string"),
    	ClusterAliasName:        pulumi.String("string"),
    	PrivateSlbSpecification: pulumi.String("string"),
    	PaymentType:             pulumi.String("string"),
    	AclEntryLists: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	PubSlbSpecification: pulumi.String("string"),
    	RequestPars:         pulumi.String("string"),
    	ResourceGroupId:     pulumi.String("string"),
    	Tags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	VpcId:      pulumi.String("string"),
    	MseVersion: pulumi.String("string"),
    })
    
    var exampleclusterResourceResourceFromMsecluster = new Cluster("exampleclusterResourceResourceFromMsecluster", ClusterArgs.builder()        
        .pubNetworkFlow("string")
        .instanceCount(0)
        .netType("string")
        .clusterType("string")
        .clusterVersion("string")
        .clusterSpecification("string")
        .vswitchId("string")
        .diskType("string")
        .connectionType("string")
        .clusterAliasName("string")
        .privateSlbSpecification("string")
        .paymentType("string")
        .aclEntryLists("string")
        .pubSlbSpecification("string")
        .requestPars("string")
        .resourceGroupId("string")
        .tags(Map.of("string", "any"))
        .vpcId("string")
        .mseVersion("string")
        .build());
    
    examplecluster_resource_resource_from_msecluster = alicloud.mse.Cluster("exampleclusterResourceResourceFromMsecluster",
        pub_network_flow="string",
        instance_count=0,
        net_type="string",
        cluster_type="string",
        cluster_version="string",
        cluster_specification="string",
        vswitch_id="string",
        disk_type="string",
        connection_type="string",
        cluster_alias_name="string",
        private_slb_specification="string",
        payment_type="string",
        acl_entry_lists=["string"],
        pub_slb_specification="string",
        request_pars="string",
        resource_group_id="string",
        tags={
            "string": "any",
        },
        vpc_id="string",
        mse_version="string")
    
    const exampleclusterResourceResourceFromMsecluster = new alicloud.mse.Cluster("exampleclusterResourceResourceFromMsecluster", {
        pubNetworkFlow: "string",
        instanceCount: 0,
        netType: "string",
        clusterType: "string",
        clusterVersion: "string",
        clusterSpecification: "string",
        vswitchId: "string",
        diskType: "string",
        connectionType: "string",
        clusterAliasName: "string",
        privateSlbSpecification: "string",
        paymentType: "string",
        aclEntryLists: ["string"],
        pubSlbSpecification: "string",
        requestPars: "string",
        resourceGroupId: "string",
        tags: {
            string: "any",
        },
        vpcId: "string",
        mseVersion: "string",
    });
    
    type: alicloud:mse:Cluster
    properties:
        aclEntryLists:
            - string
        clusterAliasName: string
        clusterSpecification: string
        clusterType: string
        clusterVersion: string
        connectionType: string
        diskType: string
        instanceCount: 0
        mseVersion: string
        netType: string
        paymentType: string
        privateSlbSpecification: string
        pubNetworkFlow: string
        pubSlbSpecification: string
        requestPars: string
        resourceGroupId: string
        tags:
            string: any
        vpcId: string
        vswitchId: string
    

    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.
    PaymentType string
    Payment type: Subscription (prepaid), PayAsYouGo (postpaid). Default PayAsYouGo.
    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.
    ResourceGroupId string
    The resource group of the resource.
    Tags Dictionary<string, object>
    The tag of the resource.
    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.
    PaymentType string
    Payment type: Subscription (prepaid), PayAsYouGo (postpaid). Default PayAsYouGo.
    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.
    ResourceGroupId string
    The resource group of the resource.
    Tags map[string]interface{}
    The tag of the resource.
    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.
    paymentType String
    Payment type: Subscription (prepaid), PayAsYouGo (postpaid). Default PayAsYouGo.
    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.
    resourceGroupId String
    The resource group of the resource.
    tags Map<String,Object>
    The tag of the resource.
    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.
    paymentType string
    Payment type: Subscription (prepaid), PayAsYouGo (postpaid). Default PayAsYouGo.
    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.
    resourceGroupId string
    The resource group of the resource.
    tags {[key: string]: any}
    The tag of the resource.
    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.
    payment_type str
    Payment type: Subscription (prepaid), PayAsYouGo (postpaid). Default PayAsYouGo.
    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.
    resource_group_id str
    The resource group of the resource.
    tags Mapping[str, Any]
    The tag of the resource.
    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.
    paymentType String
    Payment type: Subscription (prepaid), PayAsYouGo (postpaid). Default PayAsYouGo.
    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.
    resourceGroupId String
    The resource group of the resource.
    tags Map<Any>
    The tag of the resource.
    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,
            payment_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,
            resource_group_id: Optional[str] = None,
            status: Optional[str] = None,
            tags: Optional[Mapping[str, Any]] = 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".
    PaymentType string
    Payment type: Subscription (prepaid), PayAsYouGo (postpaid). Default PayAsYouGo.
    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.
    ResourceGroupId string
    The resource group of the resource.
    Status string
    The status of MSE Cluster.
    Tags Dictionary<string, object>
    The tag of the resource.
    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".
    PaymentType string
    Payment type: Subscription (prepaid), PayAsYouGo (postpaid). Default PayAsYouGo.
    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.
    ResourceGroupId string
    The resource group of the resource.
    Status string
    The status of MSE Cluster.
    Tags map[string]interface{}
    The tag of the resource.
    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".
    paymentType String
    Payment type: Subscription (prepaid), PayAsYouGo (postpaid). Default PayAsYouGo.
    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.
    resourceGroupId String
    The resource group of the resource.
    status String
    The status of MSE Cluster.
    tags Map<String,Object>
    The tag of the resource.
    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".
    paymentType string
    Payment type: Subscription (prepaid), PayAsYouGo (postpaid). Default PayAsYouGo.
    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.
    resourceGroupId string
    The resource group of the resource.
    status string
    The status of MSE Cluster.
    tags {[key: string]: any}
    The tag of the resource.
    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".
    payment_type str
    Payment type: Subscription (prepaid), PayAsYouGo (postpaid). Default PayAsYouGo.
    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.
    resource_group_id str
    The resource group of the resource.
    status str
    The status of MSE Cluster.
    tags Mapping[str, Any]
    The tag of the resource.
    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".
    paymentType String
    Payment type: Subscription (prepaid), PayAsYouGo (postpaid). Default PayAsYouGo.
    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.
    resourceGroupId String
    The resource group of the resource.
    status String
    The status of MSE Cluster.
    tags Map<Any>
    The tag of the resource.
    vpcId String
    The id of the VPC.
    vswitchId String
    The id of VSwitch.

    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.53.0 published on Wednesday, Apr 17, 2024 by Pulumi