1. Packages
  2. Ionoscloud
  3. API Docs
  4. dsaas
  5. Cluster
IonosCloud v0.2.3 published on Tuesday, May 13, 2025 by ionos-cloud

ionoscloud.dsaas.Cluster

Explore with Pulumi AI

ionoscloud logo
IonosCloud v0.2.3 published on Tuesday, May 13, 2025 by ionos-cloud

    Manages a Dataplatform Cluster.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ionoscloud from "@ionos-cloud/sdk-pulumi";
    
    const example = new ionoscloud.compute.Datacenter("example", {
        name: "Datacenter_Example",
        location: "de/txl",
        description: "Datacenter for testing Dataplatform Cluster",
    });
    const exampleLan = new ionoscloud.compute.Lan("example", {
        datacenterId: example.id,
        "public": false,
        name: "LAN_Example",
    });
    const exampleCluster = new ionoscloud.dsaas.Cluster("example", {
        datacenterId: example.id,
        name: "Dataplatform_Cluster_Example",
        maintenanceWindows: [{
            dayOfTheWeek: "Sunday",
            time: "09:00:00",
        }],
        version: "23.11",
        lans: [{
            lanId: exampleLan.id,
            dhcp: false,
            routes: [{
                network: "182.168.42.1/24",
                gateway: "192.168.42.1",
            }],
        }],
    });
    
    import pulumi
    import pulumi_ionoscloud as ionoscloud
    
    example = ionoscloud.compute.Datacenter("example",
        name="Datacenter_Example",
        location="de/txl",
        description="Datacenter for testing Dataplatform Cluster")
    example_lan = ionoscloud.compute.Lan("example",
        datacenter_id=example.id,
        public=False,
        name="LAN_Example")
    example_cluster = ionoscloud.dsaas.Cluster("example",
        datacenter_id=example.id,
        name="Dataplatform_Cluster_Example",
        maintenance_windows=[{
            "day_of_the_week": "Sunday",
            "time": "09:00:00",
        }],
        version="23.11",
        lans=[{
            "lan_id": example_lan.id,
            "dhcp": False,
            "routes": [{
                "network": "182.168.42.1/24",
                "gateway": "192.168.42.1",
            }],
        }])
    
    package main
    
    import (
    	"github.com/ionos-cloud/pulumi-ionoscloud/sdk/go/ionoscloud/compute"
    	"github.com/ionos-cloud/pulumi-ionoscloud/sdk/go/ionoscloud/dsaas"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := compute.NewDatacenter(ctx, "example", &compute.DatacenterArgs{
    			Name:        pulumi.String("Datacenter_Example"),
    			Location:    pulumi.String("de/txl"),
    			Description: pulumi.String("Datacenter for testing Dataplatform Cluster"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleLan, err := compute.NewLan(ctx, "example", &compute.LanArgs{
    			DatacenterId: example.ID(),
    			Public:       pulumi.Bool(false),
    			Name:         pulumi.String("LAN_Example"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = dsaas.NewCluster(ctx, "example", &dsaas.ClusterArgs{
    			DatacenterId: example.ID(),
    			Name:         pulumi.String("Dataplatform_Cluster_Example"),
    			MaintenanceWindows: dsaas.ClusterMaintenanceWindowArray{
    				&dsaas.ClusterMaintenanceWindowArgs{
    					DayOfTheWeek: pulumi.String("Sunday"),
    					Time:         pulumi.String("09:00:00"),
    				},
    			},
    			Version: pulumi.String("23.11"),
    			Lans: dsaas.ClusterLanArray{
    				&dsaas.ClusterLanArgs{
    					LanId: exampleLan.ID(),
    					Dhcp:  pulumi.Bool(false),
    					Routes: dsaas.ClusterLanRouteArray{
    						&dsaas.ClusterLanRouteArgs{
    							Network: pulumi.String("182.168.42.1/24"),
    							Gateway: pulumi.String("192.168.42.1"),
    						},
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Ionoscloud = Ionoscloud.Pulumi.Ionoscloud;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Ionoscloud.Compute.Datacenter("example", new()
        {
            Name = "Datacenter_Example",
            Location = "de/txl",
            Description = "Datacenter for testing Dataplatform Cluster",
        });
    
        var exampleLan = new Ionoscloud.Compute.Lan("example", new()
        {
            DatacenterId = example.Id,
            Public = false,
            Name = "LAN_Example",
        });
    
        var exampleCluster = new Ionoscloud.Dsaas.Cluster("example", new()
        {
            DatacenterId = example.Id,
            Name = "Dataplatform_Cluster_Example",
            MaintenanceWindows = new[]
            {
                new Ionoscloud.Dsaas.Inputs.ClusterMaintenanceWindowArgs
                {
                    DayOfTheWeek = "Sunday",
                    Time = "09:00:00",
                },
            },
            Version = "23.11",
            Lans = new[]
            {
                new Ionoscloud.Dsaas.Inputs.ClusterLanArgs
                {
                    LanId = exampleLan.Id,
                    Dhcp = false,
                    Routes = new[]
                    {
                        new Ionoscloud.Dsaas.Inputs.ClusterLanRouteArgs
                        {
                            Network = "182.168.42.1/24",
                            Gateway = "192.168.42.1",
                        },
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ionoscloud.compute.Datacenter;
    import com.pulumi.ionoscloud.compute.DatacenterArgs;
    import com.pulumi.ionoscloud.compute.Lan;
    import com.pulumi.ionoscloud.compute.LanArgs;
    import com.pulumi.ionoscloud.dsaas.Cluster;
    import com.pulumi.ionoscloud.dsaas.ClusterArgs;
    import com.pulumi.ionoscloud.dsaas.inputs.ClusterMaintenanceWindowArgs;
    import com.pulumi.ionoscloud.dsaas.inputs.ClusterLanArgs;
    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 example = new Datacenter("example", DatacenterArgs.builder()
                .name("Datacenter_Example")
                .location("de/txl")
                .description("Datacenter for testing Dataplatform Cluster")
                .build());
    
            var exampleLan = new Lan("exampleLan", LanArgs.builder()
                .datacenterId(example.id())
                .public_(false)
                .name("LAN_Example")
                .build());
    
            var exampleCluster = new Cluster("exampleCluster", ClusterArgs.builder()
                .datacenterId(example.id())
                .name("Dataplatform_Cluster_Example")
                .maintenanceWindows(ClusterMaintenanceWindowArgs.builder()
                    .dayOfTheWeek("Sunday")
                    .time("09:00:00")
                    .build())
                .version("23.11")
                .lans(ClusterLanArgs.builder()
                    .lanId(exampleLan.id())
                    .dhcp(false)
                    .routes(ClusterLanRouteArgs.builder()
                        .network("182.168.42.1/24")
                        .gateway("192.168.42.1")
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: ionoscloud:compute:Datacenter
        properties:
          name: Datacenter_Example
          location: de/txl
          description: Datacenter for testing Dataplatform Cluster
      exampleLan:
        type: ionoscloud:compute:Lan
        name: example
        properties:
          datacenterId: ${example.id}
          public: false
          name: LAN_Example
      exampleCluster:
        type: ionoscloud:dsaas:Cluster
        name: example
        properties:
          datacenterId: ${example.id}
          name: Dataplatform_Cluster_Example
          maintenanceWindows:
            - dayOfTheWeek: Sunday
              time: 09:00:00
          version: '23.11'
          lans:
            - lanId: ${exampleLan.id}
              dhcp: false
              routes:
                - network: 182.168.42.1/24
                  gateway: 192.168.42.1
    

    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,
                datacenter_id: Optional[str] = None,
                lans: Optional[Sequence[ClusterLanArgs]] = None,
                maintenance_windows: Optional[Sequence[ClusterMaintenanceWindowArgs]] = None,
                name: Optional[str] = None,
                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: ionoscloud:dsaas: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.

    Constructor example

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

    var clusterResource = new Ionoscloud.Dsaas.Cluster("clusterResource", new()
    {
        DatacenterId = "string",
        Lans = new[]
        {
            new Ionoscloud.Dsaas.Inputs.ClusterLanArgs
            {
                LanId = "string",
                Dhcp = false,
                Routes = new[]
                {
                    new Ionoscloud.Dsaas.Inputs.ClusterLanRouteArgs
                    {
                        Gateway = "string",
                        Network = "string",
                    },
                },
            },
        },
        MaintenanceWindows = new[]
        {
            new Ionoscloud.Dsaas.Inputs.ClusterMaintenanceWindowArgs
            {
                DayOfTheWeek = "string",
                Time = "string",
            },
        },
        Name = "string",
        Version = "string",
    });
    
    example, err := dsaas.NewCluster(ctx, "clusterResource", &dsaas.ClusterArgs{
    	DatacenterId: pulumi.String("string"),
    	Lans: dsaas.ClusterLanArray{
    		&dsaas.ClusterLanArgs{
    			LanId: pulumi.String("string"),
    			Dhcp:  pulumi.Bool(false),
    			Routes: dsaas.ClusterLanRouteArray{
    				&dsaas.ClusterLanRouteArgs{
    					Gateway: pulumi.String("string"),
    					Network: pulumi.String("string"),
    				},
    			},
    		},
    	},
    	MaintenanceWindows: dsaas.ClusterMaintenanceWindowArray{
    		&dsaas.ClusterMaintenanceWindowArgs{
    			DayOfTheWeek: pulumi.String("string"),
    			Time:         pulumi.String("string"),
    		},
    	},
    	Name:    pulumi.String("string"),
    	Version: pulumi.String("string"),
    })
    
    var clusterResource = new com.ionoscloud.pulumi.ionoscloud.dsaas.Cluster("clusterResource", com.ionoscloud.pulumi.ionoscloud.dsaas.ClusterArgs.builder()
        .datacenterId("string")
        .lans(ClusterLanArgs.builder()
            .lanId("string")
            .dhcp(false)
            .routes(ClusterLanRouteArgs.builder()
                .gateway("string")
                .network("string")
                .build())
            .build())
        .maintenanceWindows(ClusterMaintenanceWindowArgs.builder()
            .dayOfTheWeek("string")
            .time("string")
            .build())
        .name("string")
        .version("string")
        .build());
    
    cluster_resource = ionoscloud.dsaas.Cluster("clusterResource",
        datacenter_id="string",
        lans=[{
            "lan_id": "string",
            "dhcp": False,
            "routes": [{
                "gateway": "string",
                "network": "string",
            }],
        }],
        maintenance_windows=[{
            "day_of_the_week": "string",
            "time": "string",
        }],
        name="string",
        version="string")
    
    const clusterResource = new ionoscloud.dsaas.Cluster("clusterResource", {
        datacenterId: "string",
        lans: [{
            lanId: "string",
            dhcp: false,
            routes: [{
                gateway: "string",
                network: "string",
            }],
        }],
        maintenanceWindows: [{
            dayOfTheWeek: "string",
            time: "string",
        }],
        name: "string",
        version: "string",
    });
    
    type: ionoscloud:dsaas:Cluster
    properties:
        datacenterId: string
        lans:
            - dhcp: false
              lanId: string
              routes:
                - gateway: string
                  network: string
        maintenanceWindows:
            - dayOfTheWeek: string
              time: string
        name: string
        version: 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

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

    The Cluster resource accepts the following input properties:

    DatacenterId string
    [string] The UUID of the virtual data center (VDC) the cluster is provisioned.
    Lans List<Ionoscloud.ClusterLan>
    [list] A list of LANs you want this node pool to be part of.
    MaintenanceWindows List<Ionoscloud.ClusterMaintenanceWindow>
    Starting time of a weekly 4 hour-long window, during which maintenance might occur in hh:mm:ss format
    Name string
    [string] The name of your cluster. Must be 63 characters or less and must be empty or begin and end with an alphanumeric character ([a-z0-9A-Z]). It can contain dashes (-), underscores (_), dots (.), and alphanumerics in-between.
    Version string
    [int] The version of the Data Platform.
    DatacenterId string
    [string] The UUID of the virtual data center (VDC) the cluster is provisioned.
    Lans []ClusterLanArgs
    [list] A list of LANs you want this node pool to be part of.
    MaintenanceWindows []ClusterMaintenanceWindowArgs
    Starting time of a weekly 4 hour-long window, during which maintenance might occur in hh:mm:ss format
    Name string
    [string] The name of your cluster. Must be 63 characters or less and must be empty or begin and end with an alphanumeric character ([a-z0-9A-Z]). It can contain dashes (-), underscores (_), dots (.), and alphanumerics in-between.
    Version string
    [int] The version of the Data Platform.
    datacenterId String
    [string] The UUID of the virtual data center (VDC) the cluster is provisioned.
    lans List<ClusterLan>
    [list] A list of LANs you want this node pool to be part of.
    maintenanceWindows List<ClusterMaintenanceWindow>
    Starting time of a weekly 4 hour-long window, during which maintenance might occur in hh:mm:ss format
    name String
    [string] The name of your cluster. Must be 63 characters or less and must be empty or begin and end with an alphanumeric character ([a-z0-9A-Z]). It can contain dashes (-), underscores (_), dots (.), and alphanumerics in-between.
    version String
    [int] The version of the Data Platform.
    datacenterId string
    [string] The UUID of the virtual data center (VDC) the cluster is provisioned.
    lans ClusterLan[]
    [list] A list of LANs you want this node pool to be part of.
    maintenanceWindows ClusterMaintenanceWindow[]
    Starting time of a weekly 4 hour-long window, during which maintenance might occur in hh:mm:ss format
    name string
    [string] The name of your cluster. Must be 63 characters or less and must be empty or begin and end with an alphanumeric character ([a-z0-9A-Z]). It can contain dashes (-), underscores (_), dots (.), and alphanumerics in-between.
    version string
    [int] The version of the Data Platform.
    datacenter_id str
    [string] The UUID of the virtual data center (VDC) the cluster is provisioned.
    lans Sequence[ClusterLanArgs]
    [list] A list of LANs you want this node pool to be part of.
    maintenance_windows Sequence[ClusterMaintenanceWindowArgs]
    Starting time of a weekly 4 hour-long window, during which maintenance might occur in hh:mm:ss format
    name str
    [string] The name of your cluster. Must be 63 characters or less and must be empty or begin and end with an alphanumeric character ([a-z0-9A-Z]). It can contain dashes (-), underscores (_), dots (.), and alphanumerics in-between.
    version str
    [int] The version of the Data Platform.
    datacenterId String
    [string] The UUID of the virtual data center (VDC) the cluster is provisioned.
    lans List<Property Map>
    [list] A list of LANs you want this node pool to be part of.
    maintenanceWindows List<Property Map>
    Starting time of a weekly 4 hour-long window, during which maintenance might occur in hh:mm:ss format
    name String
    [string] The name of your cluster. Must be 63 characters or less and must be empty or begin and end with an alphanumeric character ([a-z0-9A-Z]). It can contain dashes (-), underscores (_), dots (.), and alphanumerics in-between.
    version String
    [int] The version of the Data Platform.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    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,
            datacenter_id: Optional[str] = None,
            lans: Optional[Sequence[ClusterLanArgs]] = None,
            maintenance_windows: Optional[Sequence[ClusterMaintenanceWindowArgs]] = None,
            name: Optional[str] = None,
            version: 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)
    resources:  _:    type: ionoscloud:dsaas:Cluster    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:
    DatacenterId string
    [string] The UUID of the virtual data center (VDC) the cluster is provisioned.
    Lans List<Ionoscloud.ClusterLan>
    [list] A list of LANs you want this node pool to be part of.
    MaintenanceWindows List<Ionoscloud.ClusterMaintenanceWindow>
    Starting time of a weekly 4 hour-long window, during which maintenance might occur in hh:mm:ss format
    Name string
    [string] The name of your cluster. Must be 63 characters or less and must be empty or begin and end with an alphanumeric character ([a-z0-9A-Z]). It can contain dashes (-), underscores (_), dots (.), and alphanumerics in-between.
    Version string
    [int] The version of the Data Platform.
    DatacenterId string
    [string] The UUID of the virtual data center (VDC) the cluster is provisioned.
    Lans []ClusterLanArgs
    [list] A list of LANs you want this node pool to be part of.
    MaintenanceWindows []ClusterMaintenanceWindowArgs
    Starting time of a weekly 4 hour-long window, during which maintenance might occur in hh:mm:ss format
    Name string
    [string] The name of your cluster. Must be 63 characters or less and must be empty or begin and end with an alphanumeric character ([a-z0-9A-Z]). It can contain dashes (-), underscores (_), dots (.), and alphanumerics in-between.
    Version string
    [int] The version of the Data Platform.
    datacenterId String
    [string] The UUID of the virtual data center (VDC) the cluster is provisioned.
    lans List<ClusterLan>
    [list] A list of LANs you want this node pool to be part of.
    maintenanceWindows List<ClusterMaintenanceWindow>
    Starting time of a weekly 4 hour-long window, during which maintenance might occur in hh:mm:ss format
    name String
    [string] The name of your cluster. Must be 63 characters or less and must be empty or begin and end with an alphanumeric character ([a-z0-9A-Z]). It can contain dashes (-), underscores (_), dots (.), and alphanumerics in-between.
    version String
    [int] The version of the Data Platform.
    datacenterId string
    [string] The UUID of the virtual data center (VDC) the cluster is provisioned.
    lans ClusterLan[]
    [list] A list of LANs you want this node pool to be part of.
    maintenanceWindows ClusterMaintenanceWindow[]
    Starting time of a weekly 4 hour-long window, during which maintenance might occur in hh:mm:ss format
    name string
    [string] The name of your cluster. Must be 63 characters or less and must be empty or begin and end with an alphanumeric character ([a-z0-9A-Z]). It can contain dashes (-), underscores (_), dots (.), and alphanumerics in-between.
    version string
    [int] The version of the Data Platform.
    datacenter_id str
    [string] The UUID of the virtual data center (VDC) the cluster is provisioned.
    lans Sequence[ClusterLanArgs]
    [list] A list of LANs you want this node pool to be part of.
    maintenance_windows Sequence[ClusterMaintenanceWindowArgs]
    Starting time of a weekly 4 hour-long window, during which maintenance might occur in hh:mm:ss format
    name str
    [string] The name of your cluster. Must be 63 characters or less and must be empty or begin and end with an alphanumeric character ([a-z0-9A-Z]). It can contain dashes (-), underscores (_), dots (.), and alphanumerics in-between.
    version str
    [int] The version of the Data Platform.
    datacenterId String
    [string] The UUID of the virtual data center (VDC) the cluster is provisioned.
    lans List<Property Map>
    [list] A list of LANs you want this node pool to be part of.
    maintenanceWindows List<Property Map>
    Starting time of a weekly 4 hour-long window, during which maintenance might occur in hh:mm:ss format
    name String
    [string] The name of your cluster. Must be 63 characters or less and must be empty or begin and end with an alphanumeric character ([a-z0-9A-Z]). It can contain dashes (-), underscores (_), dots (.), and alphanumerics in-between.
    version String
    [int] The version of the Data Platform.

    Supporting Types

    ClusterLan, ClusterLanArgs

    LanId string
    [string] The LAN ID of an existing LAN at the related data center.
    Dhcp bool
    [bool] Indicates if the Kubernetes node pool LAN will reserve an IP using DHCP. The default value is 'true'.
    Routes List<Ionoscloud.ClusterLanRoute>
    [list] An array of additional LANs attached to worker nodes.
    LanId string
    [string] The LAN ID of an existing LAN at the related data center.
    Dhcp bool
    [bool] Indicates if the Kubernetes node pool LAN will reserve an IP using DHCP. The default value is 'true'.
    Routes []ClusterLanRoute
    [list] An array of additional LANs attached to worker nodes.
    lanId String
    [string] The LAN ID of an existing LAN at the related data center.
    dhcp Boolean
    [bool] Indicates if the Kubernetes node pool LAN will reserve an IP using DHCP. The default value is 'true'.
    routes List<ClusterLanRoute>
    [list] An array of additional LANs attached to worker nodes.
    lanId string
    [string] The LAN ID of an existing LAN at the related data center.
    dhcp boolean
    [bool] Indicates if the Kubernetes node pool LAN will reserve an IP using DHCP. The default value is 'true'.
    routes ClusterLanRoute[]
    [list] An array of additional LANs attached to worker nodes.
    lan_id str
    [string] The LAN ID of an existing LAN at the related data center.
    dhcp bool
    [bool] Indicates if the Kubernetes node pool LAN will reserve an IP using DHCP. The default value is 'true'.
    routes Sequence[ClusterLanRoute]
    [list] An array of additional LANs attached to worker nodes.
    lanId String
    [string] The LAN ID of an existing LAN at the related data center.
    dhcp Boolean
    [bool] Indicates if the Kubernetes node pool LAN will reserve an IP using DHCP. The default value is 'true'.
    routes List<Property Map>
    [list] An array of additional LANs attached to worker nodes.

    ClusterLanRoute, ClusterLanRouteArgs

    Gateway string
    [string] IPv4 or IPv6 gateway IP for the route.
    Network string
    [string] IPv4 or IPv6 CIDR to be routed via the interface.
    Gateway string
    [string] IPv4 or IPv6 gateway IP for the route.
    Network string
    [string] IPv4 or IPv6 CIDR to be routed via the interface.
    gateway String
    [string] IPv4 or IPv6 gateway IP for the route.
    network String
    [string] IPv4 or IPv6 CIDR to be routed via the interface.
    gateway string
    [string] IPv4 or IPv6 gateway IP for the route.
    network string
    [string] IPv4 or IPv6 CIDR to be routed via the interface.
    gateway str
    [string] IPv4 or IPv6 gateway IP for the route.
    network str
    [string] IPv4 or IPv6 CIDR to be routed via the interface.
    gateway String
    [string] IPv4 or IPv6 gateway IP for the route.
    network String
    [string] IPv4 or IPv6 CIDR to be routed via the interface.

    ClusterMaintenanceWindow, ClusterMaintenanceWindowArgs

    DayOfTheWeek string
    [string] Must be set with one the values Monday, Tuesday, Wednesday, Thursday, Friday, Saturday or Sunday.
    Time string
    [string] Time at which the maintenance should start. Must conform to the 'HH:MM:SS' 24-hour format. This pattern matches the "HH:MM:SS 24-hour format with leading 0" format. For more information take a look at this link.
    DayOfTheWeek string
    [string] Must be set with one the values Monday, Tuesday, Wednesday, Thursday, Friday, Saturday or Sunday.
    Time string
    [string] Time at which the maintenance should start. Must conform to the 'HH:MM:SS' 24-hour format. This pattern matches the "HH:MM:SS 24-hour format with leading 0" format. For more information take a look at this link.
    dayOfTheWeek String
    [string] Must be set with one the values Monday, Tuesday, Wednesday, Thursday, Friday, Saturday or Sunday.
    time String
    [string] Time at which the maintenance should start. Must conform to the 'HH:MM:SS' 24-hour format. This pattern matches the "HH:MM:SS 24-hour format with leading 0" format. For more information take a look at this link.
    dayOfTheWeek string
    [string] Must be set with one the values Monday, Tuesday, Wednesday, Thursday, Friday, Saturday or Sunday.
    time string
    [string] Time at which the maintenance should start. Must conform to the 'HH:MM:SS' 24-hour format. This pattern matches the "HH:MM:SS 24-hour format with leading 0" format. For more information take a look at this link.
    day_of_the_week str
    [string] Must be set with one the values Monday, Tuesday, Wednesday, Thursday, Friday, Saturday or Sunday.
    time str
    [string] Time at which the maintenance should start. Must conform to the 'HH:MM:SS' 24-hour format. This pattern matches the "HH:MM:SS 24-hour format with leading 0" format. For more information take a look at this link.
    dayOfTheWeek String
    [string] Must be set with one the values Monday, Tuesday, Wednesday, Thursday, Friday, Saturday or Sunday.
    time String
    [string] Time at which the maintenance should start. Must conform to the 'HH:MM:SS' 24-hour format. This pattern matches the "HH:MM:SS 24-hour format with leading 0" format. For more information take a look at this link.

    Import

    Resource Dataplatform Cluster can be imported using the cluster_id, e.g.

    $ pulumi import ionoscloud:dsaas/cluster:Cluster mycluser cluster uuid
    

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

    Package Details

    Repository
    ionoscloud ionos-cloud/pulumi-ionoscloud
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the ionoscloud Terraform Provider.
    ionoscloud logo
    IonosCloud v0.2.3 published on Tuesday, May 13, 2025 by ionos-cloud