1. Packages
  2. Ionoscloud Provider
  3. API Docs
  4. DataplatformCluster
ionoscloud 6.7.6 published on Monday, Apr 14, 2025 by ionos-cloud

ionoscloud.DataplatformCluster

Explore with Pulumi AI

Manages a Dataplatform Cluster.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as ionoscloud from "@pulumi/ionoscloud";

const exampleDatacenter = new ionoscloud.Datacenter("exampleDatacenter", {
    location: "de/txl",
    description: "Datacenter for testing Dataplatform Cluster",
});
const exampleLan = new ionoscloud.Lan("exampleLan", {
    datacenterId: exampleDatacenter.datacenterId,
    "public": false,
});
const exampleDataplatformCluster = new ionoscloud.DataplatformCluster("exampleDataplatformCluster", {
    datacenterId: exampleDatacenter.datacenterId,
    maintenanceWindows: [{
        dayOfTheWeek: "Sunday",
        time: "09:00:00",
    }],
    version: "23.11",
    lans: [{
        lanId: exampleLan.lanId,
        dhcp: false,
        routes: [{
            network: "182.168.42.1/24",
            gateway: "192.168.42.1",
        }],
    }],
});
Copy
import pulumi
import pulumi_ionoscloud as ionoscloud

example_datacenter = ionoscloud.Datacenter("exampleDatacenter",
    location="de/txl",
    description="Datacenter for testing Dataplatform Cluster")
example_lan = ionoscloud.Lan("exampleLan",
    datacenter_id=example_datacenter.datacenter_id,
    public=False)
example_dataplatform_cluster = ionoscloud.DataplatformCluster("exampleDataplatformCluster",
    datacenter_id=example_datacenter.datacenter_id,
    maintenance_windows=[{
        "day_of_the_week": "Sunday",
        "time": "09:00:00",
    }],
    version="23.11",
    lans=[{
        "lan_id": example_lan.lan_id,
        "dhcp": False,
        "routes": [{
            "network": "182.168.42.1/24",
            "gateway": "192.168.42.1",
        }],
    }])
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/ionoscloud/v6/ionoscloud"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		exampleDatacenter, err := ionoscloud.NewDatacenter(ctx, "exampleDatacenter", &ionoscloud.DatacenterArgs{
			Location:    pulumi.String("de/txl"),
			Description: pulumi.String("Datacenter for testing Dataplatform Cluster"),
		})
		if err != nil {
			return err
		}
		exampleLan, err := ionoscloud.NewLan(ctx, "exampleLan", &ionoscloud.LanArgs{
			DatacenterId: exampleDatacenter.DatacenterId,
			Public:       pulumi.Bool(false),
		})
		if err != nil {
			return err
		}
		_, err = ionoscloud.NewDataplatformCluster(ctx, "exampleDataplatformCluster", &ionoscloud.DataplatformClusterArgs{
			DatacenterId: exampleDatacenter.DatacenterId,
			MaintenanceWindows: ionoscloud.DataplatformClusterMaintenanceWindowArray{
				&ionoscloud.DataplatformClusterMaintenanceWindowArgs{
					DayOfTheWeek: pulumi.String("Sunday"),
					Time:         pulumi.String("09:00:00"),
				},
			},
			Version: pulumi.String("23.11"),
			Lans: ionoscloud.DataplatformClusterLanArray{
				&ionoscloud.DataplatformClusterLanArgs{
					LanId: exampleLan.LanId,
					Dhcp:  pulumi.Bool(false),
					Routes: ionoscloud.DataplatformClusterLanRouteArray{
						&ionoscloud.DataplatformClusterLanRouteArgs{
							Network: pulumi.String("182.168.42.1/24"),
							Gateway: pulumi.String("192.168.42.1"),
						},
					},
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ionoscloud = Pulumi.Ionoscloud;

return await Deployment.RunAsync(() => 
{
    var exampleDatacenter = new Ionoscloud.Datacenter("exampleDatacenter", new()
    {
        Location = "de/txl",
        Description = "Datacenter for testing Dataplatform Cluster",
    });

    var exampleLan = new Ionoscloud.Lan("exampleLan", new()
    {
        DatacenterId = exampleDatacenter.DatacenterId,
        Public = false,
    });

    var exampleDataplatformCluster = new Ionoscloud.DataplatformCluster("exampleDataplatformCluster", new()
    {
        DatacenterId = exampleDatacenter.DatacenterId,
        MaintenanceWindows = new[]
        {
            new Ionoscloud.Inputs.DataplatformClusterMaintenanceWindowArgs
            {
                DayOfTheWeek = "Sunday",
                Time = "09:00:00",
            },
        },
        Version = "23.11",
        Lans = new[]
        {
            new Ionoscloud.Inputs.DataplatformClusterLanArgs
            {
                LanId = exampleLan.LanId,
                Dhcp = false,
                Routes = new[]
                {
                    new Ionoscloud.Inputs.DataplatformClusterLanRouteArgs
                    {
                        Network = "182.168.42.1/24",
                        Gateway = "192.168.42.1",
                    },
                },
            },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ionoscloud.Datacenter;
import com.pulumi.ionoscloud.DatacenterArgs;
import com.pulumi.ionoscloud.Lan;
import com.pulumi.ionoscloud.LanArgs;
import com.pulumi.ionoscloud.DataplatformCluster;
import com.pulumi.ionoscloud.DataplatformClusterArgs;
import com.pulumi.ionoscloud.inputs.DataplatformClusterMaintenanceWindowArgs;
import com.pulumi.ionoscloud.inputs.DataplatformClusterLanArgs;
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 exampleDatacenter = new Datacenter("exampleDatacenter", DatacenterArgs.builder()
            .location("de/txl")
            .description("Datacenter for testing Dataplatform Cluster")
            .build());

        var exampleLan = new Lan("exampleLan", LanArgs.builder()
            .datacenterId(exampleDatacenter.datacenterId())
            .public_(false)
            .build());

        var exampleDataplatformCluster = new DataplatformCluster("exampleDataplatformCluster", DataplatformClusterArgs.builder()
            .datacenterId(exampleDatacenter.datacenterId())
            .maintenanceWindows(DataplatformClusterMaintenanceWindowArgs.builder()
                .dayOfTheWeek("Sunday")
                .time("09:00:00")
                .build())
            .version("23.11")
            .lans(DataplatformClusterLanArgs.builder()
                .lanId(exampleLan.lanId())
                .dhcp(false)
                .routes(DataplatformClusterLanRouteArgs.builder()
                    .network("182.168.42.1/24")
                    .gateway("192.168.42.1")
                    .build())
                .build())
            .build());

    }
}
Copy
resources:
  exampleDatacenter:
    type: ionoscloud:Datacenter
    properties:
      location: de/txl
      description: Datacenter for testing Dataplatform Cluster
  exampleLan:
    type: ionoscloud:Lan
    properties:
      datacenterId: ${exampleDatacenter.datacenterId}
      public: false
  exampleDataplatformCluster:
    type: ionoscloud:DataplatformCluster
    properties:
      datacenterId: ${exampleDatacenter.datacenterId}
      maintenanceWindows:
        - dayOfTheWeek: Sunday
          time: 09:00:00
      version: '23.11'
      lans:
        - lanId: ${exampleLan.lanId}
          dhcp: false
          routes:
            - network: 182.168.42.1/24
              gateway: 192.168.42.1
Copy

Create DataplatformCluster Resource

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

Constructor syntax

new DataplatformCluster(name: string, args: DataplatformClusterArgs, opts?: CustomResourceOptions);
@overload
def DataplatformCluster(resource_name: str,
                        args: DataplatformClusterArgs,
                        opts: Optional[ResourceOptions] = None)

@overload
def DataplatformCluster(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        datacenter_id: Optional[str] = None,
                        dataplatform_cluster_id: Optional[str] = None,
                        lans: Optional[Sequence[DataplatformClusterLanArgs]] = None,
                        maintenance_windows: Optional[Sequence[DataplatformClusterMaintenanceWindowArgs]] = None,
                        name: Optional[str] = None,
                        timeouts: Optional[DataplatformClusterTimeoutsArgs] = None,
                        version: Optional[str] = None)
func NewDataplatformCluster(ctx *Context, name string, args DataplatformClusterArgs, opts ...ResourceOption) (*DataplatformCluster, error)
public DataplatformCluster(string name, DataplatformClusterArgs args, CustomResourceOptions? opts = null)
public DataplatformCluster(String name, DataplatformClusterArgs args)
public DataplatformCluster(String name, DataplatformClusterArgs args, CustomResourceOptions options)
type: ionoscloud:DataplatformCluster
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. DataplatformClusterArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. DataplatformClusterArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. DataplatformClusterArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. DataplatformClusterArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. DataplatformClusterArgs
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 dataplatformClusterResource = new Ionoscloud.DataplatformCluster("dataplatformClusterResource", new()
{
    DatacenterId = "string",
    DataplatformClusterId = "string",
    Lans = new[]
    {
        new Ionoscloud.Inputs.DataplatformClusterLanArgs
        {
            LanId = "string",
            Dhcp = false,
            Routes = new[]
            {
                new Ionoscloud.Inputs.DataplatformClusterLanRouteArgs
                {
                    Gateway = "string",
                    Network = "string",
                },
            },
        },
    },
    MaintenanceWindows = new[]
    {
        new Ionoscloud.Inputs.DataplatformClusterMaintenanceWindowArgs
        {
            DayOfTheWeek = "string",
            Time = "string",
        },
    },
    Name = "string",
    Timeouts = new Ionoscloud.Inputs.DataplatformClusterTimeoutsArgs
    {
        Create = "string",
        Default = "string",
        Delete = "string",
        Update = "string",
    },
    Version = "string",
});
Copy
example, err := ionoscloud.NewDataplatformCluster(ctx, "dataplatformClusterResource", &ionoscloud.DataplatformClusterArgs{
DatacenterId: pulumi.String("string"),
DataplatformClusterId: pulumi.String("string"),
Lans: .DataplatformClusterLanArray{
&.DataplatformClusterLanArgs{
LanId: pulumi.String("string"),
Dhcp: pulumi.Bool(false),
Routes: .DataplatformClusterLanRouteArray{
&.DataplatformClusterLanRouteArgs{
Gateway: pulumi.String("string"),
Network: pulumi.String("string"),
},
},
},
},
MaintenanceWindows: .DataplatformClusterMaintenanceWindowArray{
&.DataplatformClusterMaintenanceWindowArgs{
DayOfTheWeek: pulumi.String("string"),
Time: pulumi.String("string"),
},
},
Name: pulumi.String("string"),
Timeouts: &.DataplatformClusterTimeoutsArgs{
Create: pulumi.String("string"),
Default: pulumi.String("string"),
Delete: pulumi.String("string"),
Update: pulumi.String("string"),
},
Version: pulumi.String("string"),
})
Copy
var dataplatformClusterResource = new DataplatformCluster("dataplatformClusterResource", DataplatformClusterArgs.builder()
    .datacenterId("string")
    .dataplatformClusterId("string")
    .lans(DataplatformClusterLanArgs.builder()
        .lanId("string")
        .dhcp(false)
        .routes(DataplatformClusterLanRouteArgs.builder()
            .gateway("string")
            .network("string")
            .build())
        .build())
    .maintenanceWindows(DataplatformClusterMaintenanceWindowArgs.builder()
        .dayOfTheWeek("string")
        .time("string")
        .build())
    .name("string")
    .timeouts(DataplatformClusterTimeoutsArgs.builder()
        .create("string")
        .default_("string")
        .delete("string")
        .update("string")
        .build())
    .version("string")
    .build());
Copy
dataplatform_cluster_resource = ionoscloud.DataplatformCluster("dataplatformClusterResource",
    datacenter_id="string",
    dataplatform_cluster_id="string",
    lans=[{
        "lan_id": "string",
        "dhcp": False,
        "routes": [{
            "gateway": "string",
            "network": "string",
        }],
    }],
    maintenance_windows=[{
        "day_of_the_week": "string",
        "time": "string",
    }],
    name="string",
    timeouts={
        "create": "string",
        "default": "string",
        "delete": "string",
        "update": "string",
    },
    version="string")
Copy
const dataplatformClusterResource = new ionoscloud.DataplatformCluster("dataplatformClusterResource", {
    datacenterId: "string",
    dataplatformClusterId: "string",
    lans: [{
        lanId: "string",
        dhcp: false,
        routes: [{
            gateway: "string",
            network: "string",
        }],
    }],
    maintenanceWindows: [{
        dayOfTheWeek: "string",
        time: "string",
    }],
    name: "string",
    timeouts: {
        create: "string",
        "default": "string",
        "delete": "string",
        update: "string",
    },
    version: "string",
});
Copy
type: ionoscloud:DataplatformCluster
properties:
    datacenterId: string
    dataplatformClusterId: string
    lans:
        - dhcp: false
          lanId: string
          routes:
            - gateway: string
              network: string
    maintenanceWindows:
        - dayOfTheWeek: string
          time: string
    name: string
    timeouts:
        create: string
        default: string
        delete: string
        update: string
    version: string
Copy

DataplatformCluster 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 DataplatformCluster resource accepts the following input properties:

DatacenterId This property is required. string
[string] The UUID of the virtual data center (VDC) the cluster is provisioned.
DataplatformClusterId string
Lans List<DataplatformClusterLan>
[list] A list of LANs you want this node pool to be part of.
MaintenanceWindows List<DataplatformClusterMaintenanceWindow>
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.
Timeouts DataplatformClusterTimeouts
Version string
[int] The version of the Data Platform.
DatacenterId This property is required. string
[string] The UUID of the virtual data center (VDC) the cluster is provisioned.
DataplatformClusterId string
Lans []DataplatformClusterLanArgs
[list] A list of LANs you want this node pool to be part of.
MaintenanceWindows []DataplatformClusterMaintenanceWindowArgs
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.
Timeouts DataplatformClusterTimeoutsArgs
Version string
[int] The version of the Data Platform.
datacenterId This property is required. String
[string] The UUID of the virtual data center (VDC) the cluster is provisioned.
dataplatformClusterId String
lans List<DataplatformClusterLan>
[list] A list of LANs you want this node pool to be part of.
maintenanceWindows List<DataplatformClusterMaintenanceWindow>
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.
timeouts DataplatformClusterTimeouts
version String
[int] The version of the Data Platform.
datacenterId This property is required. string
[string] The UUID of the virtual data center (VDC) the cluster is provisioned.
dataplatformClusterId string
lans DataplatformClusterLan[]
[list] A list of LANs you want this node pool to be part of.
maintenanceWindows DataplatformClusterMaintenanceWindow[]
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.
timeouts DataplatformClusterTimeouts
version string
[int] The version of the Data Platform.
datacenter_id This property is required. str
[string] The UUID of the virtual data center (VDC) the cluster is provisioned.
dataplatform_cluster_id str
lans Sequence[DataplatformClusterLanArgs]
[list] A list of LANs you want this node pool to be part of.
maintenance_windows Sequence[DataplatformClusterMaintenanceWindowArgs]
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.
timeouts DataplatformClusterTimeoutsArgs
version str
[int] The version of the Data Platform.
datacenterId This property is required. String
[string] The UUID of the virtual data center (VDC) the cluster is provisioned.
dataplatformClusterId String
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.
timeouts Property Map
version String
[int] The version of the Data Platform.

Outputs

All input properties are implicitly available as output properties. Additionally, the DataplatformCluster 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 DataplatformCluster Resource

Get an existing DataplatformCluster 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?: DataplatformClusterState, opts?: CustomResourceOptions): DataplatformCluster
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        datacenter_id: Optional[str] = None,
        dataplatform_cluster_id: Optional[str] = None,
        lans: Optional[Sequence[DataplatformClusterLanArgs]] = None,
        maintenance_windows: Optional[Sequence[DataplatformClusterMaintenanceWindowArgs]] = None,
        name: Optional[str] = None,
        timeouts: Optional[DataplatformClusterTimeoutsArgs] = None,
        version: Optional[str] = None) -> DataplatformCluster
func GetDataplatformCluster(ctx *Context, name string, id IDInput, state *DataplatformClusterState, opts ...ResourceOption) (*DataplatformCluster, error)
public static DataplatformCluster Get(string name, Input<string> id, DataplatformClusterState? state, CustomResourceOptions? opts = null)
public static DataplatformCluster get(String name, Output<String> id, DataplatformClusterState state, CustomResourceOptions options)
resources:  _:    type: ionoscloud:DataplatformCluster    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
DataplatformClusterId string
Lans List<DataplatformClusterLan>
[list] A list of LANs you want this node pool to be part of.
MaintenanceWindows List<DataplatformClusterMaintenanceWindow>
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.
Timeouts DataplatformClusterTimeouts
Version string
[int] The version of the Data Platform.
DatacenterId string
[string] The UUID of the virtual data center (VDC) the cluster is provisioned.
DataplatformClusterId string
Lans []DataplatformClusterLanArgs
[list] A list of LANs you want this node pool to be part of.
MaintenanceWindows []DataplatformClusterMaintenanceWindowArgs
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.
Timeouts DataplatformClusterTimeoutsArgs
Version string
[int] The version of the Data Platform.
datacenterId String
[string] The UUID of the virtual data center (VDC) the cluster is provisioned.
dataplatformClusterId String
lans List<DataplatformClusterLan>
[list] A list of LANs you want this node pool to be part of.
maintenanceWindows List<DataplatformClusterMaintenanceWindow>
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.
timeouts DataplatformClusterTimeouts
version String
[int] The version of the Data Platform.
datacenterId string
[string] The UUID of the virtual data center (VDC) the cluster is provisioned.
dataplatformClusterId string
lans DataplatformClusterLan[]
[list] A list of LANs you want this node pool to be part of.
maintenanceWindows DataplatformClusterMaintenanceWindow[]
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.
timeouts DataplatformClusterTimeouts
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.
dataplatform_cluster_id str
lans Sequence[DataplatformClusterLanArgs]
[list] A list of LANs you want this node pool to be part of.
maintenance_windows Sequence[DataplatformClusterMaintenanceWindowArgs]
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.
timeouts DataplatformClusterTimeoutsArgs
version str
[int] The version of the Data Platform.
datacenterId String
[string] The UUID of the virtual data center (VDC) the cluster is provisioned.
dataplatformClusterId String
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.
timeouts Property Map
version String
[int] The version of the Data Platform.

Supporting Types

DataplatformClusterLan
, DataplatformClusterLanArgs

LanId This property is required. 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<DataplatformClusterLanRoute>
[list] An array of additional LANs attached to worker nodes.
LanId This property is required. 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 []DataplatformClusterLanRoute
[list] An array of additional LANs attached to worker nodes.
lanId This property is required. 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<DataplatformClusterLanRoute>
[list] An array of additional LANs attached to worker nodes.
lanId This property is required. 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 DataplatformClusterLanRoute[]
[list] An array of additional LANs attached to worker nodes.
lan_id This property is required. 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[DataplatformClusterLanRoute]
[list] An array of additional LANs attached to worker nodes.
lanId This property is required. 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.

DataplatformClusterLanRoute
, DataplatformClusterLanRouteArgs

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

DataplatformClusterMaintenanceWindow
, DataplatformClusterMaintenanceWindowArgs

DayOfTheWeek This property is required. string
[string] Must be set with one the values Monday, Tuesday, Wednesday, Thursday, Friday, Saturday or Sunday.
Time This property is required. 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 This property is required. string
[string] Must be set with one the values Monday, Tuesday, Wednesday, Thursday, Friday, Saturday or Sunday.
Time This property is required. 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 This property is required. String
[string] Must be set with one the values Monday, Tuesday, Wednesday, Thursday, Friday, Saturday or Sunday.
time This property is required. 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 This property is required. string
[string] Must be set with one the values Monday, Tuesday, Wednesday, Thursday, Friday, Saturday or Sunday.
time This property is required. 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 This property is required. str
[string] Must be set with one the values Monday, Tuesday, Wednesday, Thursday, Friday, Saturday or Sunday.
time This property is required. 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 This property is required. String
[string] Must be set with one the values Monday, Tuesday, Wednesday, Thursday, Friday, Saturday or Sunday.
time This property is required. 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.

DataplatformClusterTimeouts
, DataplatformClusterTimeoutsArgs

Create string
Default string
Delete string
Update string
Create string
Default string
Delete string
Update string
create String
default_ String
delete String
update String
create string
default string
delete string
update string
create String
default String
delete String
update String

Import

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

$ pulumi import ionoscloud:index/dataplatformCluster:DataplatformCluster mycluser cluster uuid
Copy

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

Package Details

Repository
ionoscloud ionos-cloud/terraform-provider-ionoscloud
License
Notes
This Pulumi package is based on the ionoscloud Terraform Provider.