1. Packages
  2. Edgecenter Provider
  3. API Docs
  4. MkaasPool
Viewing docs for edgecenter 0.12.0
published on Tuesday, Mar 24, 2026 by edge-center
edgecenter logo
Viewing docs for edgecenter 0.12.0
published on Tuesday, Mar 24, 2026 by edge-center

    Represent MKaaS cluster’s pool.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as edgecenter from "@pulumi/edgecenter";
    
    const apps = new edgecenter.MkaasPool("apps", {
        clusterId: 53,
        name: "apps-pool",
        flavor: "mkaas-worker-g3-cpu-2-2",
        nodeCount: 3,
        volumeSize: 20,
        volumeType: "standard",
        projectId: 1234,
        regionId: 1234,
    });
    
    import pulumi
    import pulumi_edgecenter as edgecenter
    
    apps = edgecenter.MkaasPool("apps",
        cluster_id=53,
        name="apps-pool",
        flavor="mkaas-worker-g3-cpu-2-2",
        node_count=3,
        volume_size=20,
        volume_type="standard",
        project_id=1234,
        region_id=1234)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/edgecenter/edgecenter"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := edgecenter.NewMkaasPool(ctx, "apps", &edgecenter.MkaasPoolArgs{
    			ClusterId:  pulumi.Float64(53),
    			Name:       pulumi.String("apps-pool"),
    			Flavor:     pulumi.String("mkaas-worker-g3-cpu-2-2"),
    			NodeCount:  pulumi.Float64(3),
    			VolumeSize: pulumi.Float64(20),
    			VolumeType: pulumi.String("standard"),
    			ProjectId:  pulumi.Float64(1234),
    			RegionId:   pulumi.Float64(1234),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Edgecenter = Pulumi.Edgecenter;
    
    return await Deployment.RunAsync(() => 
    {
        var apps = new Edgecenter.MkaasPool("apps", new()
        {
            ClusterId = 53,
            Name = "apps-pool",
            Flavor = "mkaas-worker-g3-cpu-2-2",
            NodeCount = 3,
            VolumeSize = 20,
            VolumeType = "standard",
            ProjectId = 1234,
            RegionId = 1234,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.edgecenter.MkaasPool;
    import com.pulumi.edgecenter.MkaasPoolArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var apps = new MkaasPool("apps", MkaasPoolArgs.builder()
                .clusterId(53.0)
                .name("apps-pool")
                .flavor("mkaas-worker-g3-cpu-2-2")
                .nodeCount(3.0)
                .volumeSize(20.0)
                .volumeType("standard")
                .projectId(1234.0)
                .regionId(1234.0)
                .build());
    
        }
    }
    
    resources:
      apps:
        type: edgecenter:MkaasPool
        properties:
          clusterId: 53 # Основные параметры пула
          name: apps-pool
          flavor: mkaas-worker-g3-cpu-2-2
          nodeCount: 3
          volumeSize: 20
          volumeType: standard
          projectId: 1234
          regionId: '1234'
    

    Create MkaasPool Resource

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

    Constructor syntax

    new MkaasPool(name: string, args: MkaasPoolArgs, opts?: CustomResourceOptions);
    @overload
    def MkaasPool(resource_name: str,
                  args: MkaasPoolArgs,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def MkaasPool(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  node_count: Optional[float] = None,
                  flavor: Optional[str] = None,
                  volume_type: Optional[str] = None,
                  volume_size: Optional[float] = None,
                  cluster_id: Optional[float] = None,
                  project_id: Optional[float] = None,
                  name: Optional[str] = None,
                  project_name: Optional[str] = None,
                  region_id: Optional[float] = None,
                  region_name: Optional[str] = None,
                  security_group_ids: Optional[Sequence[str]] = None,
                  timeouts: Optional[MkaasPoolTimeoutsArgs] = None,
                  mkaas_pool_id: Optional[str] = None,
                  labels: Optional[Mapping[str, str]] = None)
    func NewMkaasPool(ctx *Context, name string, args MkaasPoolArgs, opts ...ResourceOption) (*MkaasPool, error)
    public MkaasPool(string name, MkaasPoolArgs args, CustomResourceOptions? opts = null)
    public MkaasPool(String name, MkaasPoolArgs args)
    public MkaasPool(String name, MkaasPoolArgs args, CustomResourceOptions options)
    
    type: edgecenter:MkaasPool
    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 MkaasPoolArgs
    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 MkaasPoolArgs
    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 MkaasPoolArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args MkaasPoolArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args MkaasPoolArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

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

    var mkaasPoolResource = new Edgecenter.MkaasPool("mkaasPoolResource", new()
    {
        NodeCount = 0,
        Flavor = "string",
        VolumeType = "string",
        VolumeSize = 0,
        ClusterId = 0,
        ProjectId = 0,
        Name = "string",
        ProjectName = "string",
        RegionId = 0,
        RegionName = "string",
        SecurityGroupIds = new[]
        {
            "string",
        },
        Timeouts = new Edgecenter.Inputs.MkaasPoolTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Read = "string",
            Update = "string",
        },
        MkaasPoolId = "string",
        Labels = 
        {
            { "string", "string" },
        },
    });
    
    example, err := edgecenter.NewMkaasPool(ctx, "mkaasPoolResource", &edgecenter.MkaasPoolArgs{
    	NodeCount:   pulumi.Float64(0),
    	Flavor:      pulumi.String("string"),
    	VolumeType:  pulumi.String("string"),
    	VolumeSize:  pulumi.Float64(0),
    	ClusterId:   pulumi.Float64(0),
    	ProjectId:   pulumi.Float64(0),
    	Name:        pulumi.String("string"),
    	ProjectName: pulumi.String("string"),
    	RegionId:    pulumi.Float64(0),
    	RegionName:  pulumi.String("string"),
    	SecurityGroupIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Timeouts: &edgecenter.MkaasPoolTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Read:   pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    	MkaasPoolId: pulumi.String("string"),
    	Labels: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var mkaasPoolResource = new MkaasPool("mkaasPoolResource", MkaasPoolArgs.builder()
        .nodeCount(0.0)
        .flavor("string")
        .volumeType("string")
        .volumeSize(0.0)
        .clusterId(0.0)
        .projectId(0.0)
        .name("string")
        .projectName("string")
        .regionId(0.0)
        .regionName("string")
        .securityGroupIds("string")
        .timeouts(MkaasPoolTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .read("string")
            .update("string")
            .build())
        .mkaasPoolId("string")
        .labels(Map.of("string", "string"))
        .build());
    
    mkaas_pool_resource = edgecenter.MkaasPool("mkaasPoolResource",
        node_count=0,
        flavor="string",
        volume_type="string",
        volume_size=0,
        cluster_id=0,
        project_id=0,
        name="string",
        project_name="string",
        region_id=0,
        region_name="string",
        security_group_ids=["string"],
        timeouts={
            "create": "string",
            "delete": "string",
            "read": "string",
            "update": "string",
        },
        mkaas_pool_id="string",
        labels={
            "string": "string",
        })
    
    const mkaasPoolResource = new edgecenter.MkaasPool("mkaasPoolResource", {
        nodeCount: 0,
        flavor: "string",
        volumeType: "string",
        volumeSize: 0,
        clusterId: 0,
        projectId: 0,
        name: "string",
        projectName: "string",
        regionId: 0,
        regionName: "string",
        securityGroupIds: ["string"],
        timeouts: {
            create: "string",
            "delete": "string",
            read: "string",
            update: "string",
        },
        mkaasPoolId: "string",
        labels: {
            string: "string",
        },
    });
    
    type: edgecenter:MkaasPool
    properties:
        clusterId: 0
        flavor: string
        labels:
            string: string
        mkaasPoolId: string
        name: string
        nodeCount: 0
        projectId: 0
        projectName: string
        regionId: 0
        regionName: string
        securityGroupIds:
            - string
        timeouts:
            create: string
            delete: string
            read: string
            update: string
        volumeSize: 0
        volumeType: string
    

    MkaasPool Resource Properties

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

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The MkaasPool resource accepts the following input properties:

    ClusterId double
    The id of the Kubernetes cluster this pool belongs to.
    Flavor string
    The identifier of the flavor used for nodes in this pool, e.g. g1-standard-2-4.
    NodeCount double
    The current number of nodes in the pool.
    VolumeSize double
    The size of the control volumes in the cluster, specified in gigabytes (GB). Allowed range: 20–1024 GiB.
    VolumeType string
    The type of volume. Available values are standard, ssd_hiiops.
    Labels Dictionary<string, string>
    Arbitrary labels assigned to the pool.
    MkaasPoolId string
    The ID of this resource.
    Name string
    The name of the Kubernetes pool.
    ProjectId double
    The uuid of the project. Either project_id or project_name must be specified.
    ProjectName string
    The name of the project. Either project_id or project_name must be specified.
    RegionId double
    The uuid of the region. Either region_id or region_name must be specified.
    RegionName string
    The name of the region. Either region_id or region_name must be specified.
    SecurityGroupIds List<string>
    The list of security group IDs associated with the pool.
    Timeouts MkaasPoolTimeouts
    ClusterId float64
    The id of the Kubernetes cluster this pool belongs to.
    Flavor string
    The identifier of the flavor used for nodes in this pool, e.g. g1-standard-2-4.
    NodeCount float64
    The current number of nodes in the pool.
    VolumeSize float64
    The size of the control volumes in the cluster, specified in gigabytes (GB). Allowed range: 20–1024 GiB.
    VolumeType string
    The type of volume. Available values are standard, ssd_hiiops.
    Labels map[string]string
    Arbitrary labels assigned to the pool.
    MkaasPoolId string
    The ID of this resource.
    Name string
    The name of the Kubernetes pool.
    ProjectId float64
    The uuid of the project. Either project_id or project_name must be specified.
    ProjectName string
    The name of the project. Either project_id or project_name must be specified.
    RegionId float64
    The uuid of the region. Either region_id or region_name must be specified.
    RegionName string
    The name of the region. Either region_id or region_name must be specified.
    SecurityGroupIds []string
    The list of security group IDs associated with the pool.
    Timeouts MkaasPoolTimeoutsArgs
    clusterId Double
    The id of the Kubernetes cluster this pool belongs to.
    flavor String
    The identifier of the flavor used for nodes in this pool, e.g. g1-standard-2-4.
    nodeCount Double
    The current number of nodes in the pool.
    volumeSize Double
    The size of the control volumes in the cluster, specified in gigabytes (GB). Allowed range: 20–1024 GiB.
    volumeType String
    The type of volume. Available values are standard, ssd_hiiops.
    labels Map<String,String>
    Arbitrary labels assigned to the pool.
    mkaasPoolId String
    The ID of this resource.
    name String
    The name of the Kubernetes pool.
    projectId Double
    The uuid of the project. Either project_id or project_name must be specified.
    projectName String
    The name of the project. Either project_id or project_name must be specified.
    regionId Double
    The uuid of the region. Either region_id or region_name must be specified.
    regionName String
    The name of the region. Either region_id or region_name must be specified.
    securityGroupIds List<String>
    The list of security group IDs associated with the pool.
    timeouts MkaasPoolTimeouts
    clusterId number
    The id of the Kubernetes cluster this pool belongs to.
    flavor string
    The identifier of the flavor used for nodes in this pool, e.g. g1-standard-2-4.
    nodeCount number
    The current number of nodes in the pool.
    volumeSize number
    The size of the control volumes in the cluster, specified in gigabytes (GB). Allowed range: 20–1024 GiB.
    volumeType string
    The type of volume. Available values are standard, ssd_hiiops.
    labels {[key: string]: string}
    Arbitrary labels assigned to the pool.
    mkaasPoolId string
    The ID of this resource.
    name string
    The name of the Kubernetes pool.
    projectId number
    The uuid of the project. Either project_id or project_name must be specified.
    projectName string
    The name of the project. Either project_id or project_name must be specified.
    regionId number
    The uuid of the region. Either region_id or region_name must be specified.
    regionName string
    The name of the region. Either region_id or region_name must be specified.
    securityGroupIds string[]
    The list of security group IDs associated with the pool.
    timeouts MkaasPoolTimeouts
    cluster_id float
    The id of the Kubernetes cluster this pool belongs to.
    flavor str
    The identifier of the flavor used for nodes in this pool, e.g. g1-standard-2-4.
    node_count float
    The current number of nodes in the pool.
    volume_size float
    The size of the control volumes in the cluster, specified in gigabytes (GB). Allowed range: 20–1024 GiB.
    volume_type str
    The type of volume. Available values are standard, ssd_hiiops.
    labels Mapping[str, str]
    Arbitrary labels assigned to the pool.
    mkaas_pool_id str
    The ID of this resource.
    name str
    The name of the Kubernetes pool.
    project_id float
    The uuid of the project. Either project_id or project_name must be specified.
    project_name str
    The name of the project. Either project_id or project_name must be specified.
    region_id float
    The uuid of the region. Either region_id or region_name must be specified.
    region_name str
    The name of the region. Either region_id or region_name must be specified.
    security_group_ids Sequence[str]
    The list of security group IDs associated with the pool.
    timeouts MkaasPoolTimeoutsArgs
    clusterId Number
    The id of the Kubernetes cluster this pool belongs to.
    flavor String
    The identifier of the flavor used for nodes in this pool, e.g. g1-standard-2-4.
    nodeCount Number
    The current number of nodes in the pool.
    volumeSize Number
    The size of the control volumes in the cluster, specified in gigabytes (GB). Allowed range: 20–1024 GiB.
    volumeType String
    The type of volume. Available values are standard, ssd_hiiops.
    labels Map<String>
    Arbitrary labels assigned to the pool.
    mkaasPoolId String
    The ID of this resource.
    name String
    The name of the Kubernetes pool.
    projectId Number
    The uuid of the project. Either project_id or project_name must be specified.
    projectName String
    The name of the project. Either project_id or project_name must be specified.
    regionId Number
    The uuid of the region. Either region_id or region_name must be specified.
    regionName String
    The name of the region. Either region_id or region_name must be specified.
    securityGroupIds List<String>
    The list of security group IDs associated with the pool.
    timeouts Property Map

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    State string
    The state of the pool.
    Status string
    The status of the pool.
    Id string
    The provider-assigned unique ID for this managed resource.
    State string
    The state of the pool.
    Status string
    The status of the pool.
    id String
    The provider-assigned unique ID for this managed resource.
    state String
    The state of the pool.
    status String
    The status of the pool.
    id string
    The provider-assigned unique ID for this managed resource.
    state string
    The state of the pool.
    status string
    The status of the pool.
    id str
    The provider-assigned unique ID for this managed resource.
    state str
    The state of the pool.
    status str
    The status of the pool.
    id String
    The provider-assigned unique ID for this managed resource.
    state String
    The state of the pool.
    status String
    The status of the pool.

    Look up Existing MkaasPool Resource

    Get an existing MkaasPool 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?: MkaasPoolState, opts?: CustomResourceOptions): MkaasPool
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cluster_id: Optional[float] = None,
            flavor: Optional[str] = None,
            labels: Optional[Mapping[str, str]] = None,
            mkaas_pool_id: Optional[str] = None,
            name: Optional[str] = None,
            node_count: Optional[float] = None,
            project_id: Optional[float] = None,
            project_name: Optional[str] = None,
            region_id: Optional[float] = None,
            region_name: Optional[str] = None,
            security_group_ids: Optional[Sequence[str]] = None,
            state: Optional[str] = None,
            status: Optional[str] = None,
            timeouts: Optional[MkaasPoolTimeoutsArgs] = None,
            volume_size: Optional[float] = None,
            volume_type: Optional[str] = None) -> MkaasPool
    func GetMkaasPool(ctx *Context, name string, id IDInput, state *MkaasPoolState, opts ...ResourceOption) (*MkaasPool, error)
    public static MkaasPool Get(string name, Input<string> id, MkaasPoolState? state, CustomResourceOptions? opts = null)
    public static MkaasPool get(String name, Output<String> id, MkaasPoolState state, CustomResourceOptions options)
    resources:  _:    type: edgecenter:MkaasPool    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ClusterId double
    The id of the Kubernetes cluster this pool belongs to.
    Flavor string
    The identifier of the flavor used for nodes in this pool, e.g. g1-standard-2-4.
    Labels Dictionary<string, string>
    Arbitrary labels assigned to the pool.
    MkaasPoolId string
    The ID of this resource.
    Name string
    The name of the Kubernetes pool.
    NodeCount double
    The current number of nodes in the pool.
    ProjectId double
    The uuid of the project. Either project_id or project_name must be specified.
    ProjectName string
    The name of the project. Either project_id or project_name must be specified.
    RegionId double
    The uuid of the region. Either region_id or region_name must be specified.
    RegionName string
    The name of the region. Either region_id or region_name must be specified.
    SecurityGroupIds List<string>
    The list of security group IDs associated with the pool.
    State string
    The state of the pool.
    Status string
    The status of the pool.
    Timeouts MkaasPoolTimeouts
    VolumeSize double
    The size of the control volumes in the cluster, specified in gigabytes (GB). Allowed range: 20–1024 GiB.
    VolumeType string
    The type of volume. Available values are standard, ssd_hiiops.
    ClusterId float64
    The id of the Kubernetes cluster this pool belongs to.
    Flavor string
    The identifier of the flavor used for nodes in this pool, e.g. g1-standard-2-4.
    Labels map[string]string
    Arbitrary labels assigned to the pool.
    MkaasPoolId string
    The ID of this resource.
    Name string
    The name of the Kubernetes pool.
    NodeCount float64
    The current number of nodes in the pool.
    ProjectId float64
    The uuid of the project. Either project_id or project_name must be specified.
    ProjectName string
    The name of the project. Either project_id or project_name must be specified.
    RegionId float64
    The uuid of the region. Either region_id or region_name must be specified.
    RegionName string
    The name of the region. Either region_id or region_name must be specified.
    SecurityGroupIds []string
    The list of security group IDs associated with the pool.
    State string
    The state of the pool.
    Status string
    The status of the pool.
    Timeouts MkaasPoolTimeoutsArgs
    VolumeSize float64
    The size of the control volumes in the cluster, specified in gigabytes (GB). Allowed range: 20–1024 GiB.
    VolumeType string
    The type of volume. Available values are standard, ssd_hiiops.
    clusterId Double
    The id of the Kubernetes cluster this pool belongs to.
    flavor String
    The identifier of the flavor used for nodes in this pool, e.g. g1-standard-2-4.
    labels Map<String,String>
    Arbitrary labels assigned to the pool.
    mkaasPoolId String
    The ID of this resource.
    name String
    The name of the Kubernetes pool.
    nodeCount Double
    The current number of nodes in the pool.
    projectId Double
    The uuid of the project. Either project_id or project_name must be specified.
    projectName String
    The name of the project. Either project_id or project_name must be specified.
    regionId Double
    The uuid of the region. Either region_id or region_name must be specified.
    regionName String
    The name of the region. Either region_id or region_name must be specified.
    securityGroupIds List<String>
    The list of security group IDs associated with the pool.
    state String
    The state of the pool.
    status String
    The status of the pool.
    timeouts MkaasPoolTimeouts
    volumeSize Double
    The size of the control volumes in the cluster, specified in gigabytes (GB). Allowed range: 20–1024 GiB.
    volumeType String
    The type of volume. Available values are standard, ssd_hiiops.
    clusterId number
    The id of the Kubernetes cluster this pool belongs to.
    flavor string
    The identifier of the flavor used for nodes in this pool, e.g. g1-standard-2-4.
    labels {[key: string]: string}
    Arbitrary labels assigned to the pool.
    mkaasPoolId string
    The ID of this resource.
    name string
    The name of the Kubernetes pool.
    nodeCount number
    The current number of nodes in the pool.
    projectId number
    The uuid of the project. Either project_id or project_name must be specified.
    projectName string
    The name of the project. Either project_id or project_name must be specified.
    regionId number
    The uuid of the region. Either region_id or region_name must be specified.
    regionName string
    The name of the region. Either region_id or region_name must be specified.
    securityGroupIds string[]
    The list of security group IDs associated with the pool.
    state string
    The state of the pool.
    status string
    The status of the pool.
    timeouts MkaasPoolTimeouts
    volumeSize number
    The size of the control volumes in the cluster, specified in gigabytes (GB). Allowed range: 20–1024 GiB.
    volumeType string
    The type of volume. Available values are standard, ssd_hiiops.
    cluster_id float
    The id of the Kubernetes cluster this pool belongs to.
    flavor str
    The identifier of the flavor used for nodes in this pool, e.g. g1-standard-2-4.
    labels Mapping[str, str]
    Arbitrary labels assigned to the pool.
    mkaas_pool_id str
    The ID of this resource.
    name str
    The name of the Kubernetes pool.
    node_count float
    The current number of nodes in the pool.
    project_id float
    The uuid of the project. Either project_id or project_name must be specified.
    project_name str
    The name of the project. Either project_id or project_name must be specified.
    region_id float
    The uuid of the region. Either region_id or region_name must be specified.
    region_name str
    The name of the region. Either region_id or region_name must be specified.
    security_group_ids Sequence[str]
    The list of security group IDs associated with the pool.
    state str
    The state of the pool.
    status str
    The status of the pool.
    timeouts MkaasPoolTimeoutsArgs
    volume_size float
    The size of the control volumes in the cluster, specified in gigabytes (GB). Allowed range: 20–1024 GiB.
    volume_type str
    The type of volume. Available values are standard, ssd_hiiops.
    clusterId Number
    The id of the Kubernetes cluster this pool belongs to.
    flavor String
    The identifier of the flavor used for nodes in this pool, e.g. g1-standard-2-4.
    labels Map<String>
    Arbitrary labels assigned to the pool.
    mkaasPoolId String
    The ID of this resource.
    name String
    The name of the Kubernetes pool.
    nodeCount Number
    The current number of nodes in the pool.
    projectId Number
    The uuid of the project. Either project_id or project_name must be specified.
    projectName String
    The name of the project. Either project_id or project_name must be specified.
    regionId Number
    The uuid of the region. Either region_id or region_name must be specified.
    regionName String
    The name of the region. Either region_id or region_name must be specified.
    securityGroupIds List<String>
    The list of security group IDs associated with the pool.
    state String
    The state of the pool.
    status String
    The status of the pool.
    timeouts Property Map
    volumeSize Number
    The size of the control volumes in the cluster, specified in gigabytes (GB). Allowed range: 20–1024 GiB.
    volumeType String
    The type of volume. Available values are standard, ssd_hiiops.

    Supporting Types

    MkaasPoolTimeouts, MkaasPoolTimeoutsArgs

    Create string
    Delete string
    Read string
    Update string
    Create string
    Delete string
    Read string
    Update string
    create String
    delete String
    read String
    update String
    create string
    delete string
    read string
    update string
    create str
    delete str
    read str
    update str
    create String
    delete String
    read String
    update String

    Package Details

    Repository
    edgecenter edge-center/terraform-provider-edgecenter
    License
    Notes
    This Pulumi package is based on the edgecenter Terraform Provider.
    edgecenter logo
    Viewing docs for edgecenter 0.12.0
    published on Tuesday, Mar 24, 2026 by edge-center
      Try Pulumi Cloud free. Your team will thank you.