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",
}],
}],
});
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",
}],
}])
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
})
}
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",
},
},
},
},
});
});
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());
}
}
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
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 string
- The unique name of the resource.
- args DataplatformClusterArgs
- 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 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 string
- The unique name of the resource.
- args DataplatformClusterArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DataplatformClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
});
example, err := ionoscloud.NewDataplatformCluster(ctx, "dataplatformClusterResource", &ionoscloud.DataplatformClusterArgs{
DatacenterId: pulumi.String("string"),
DataplatformClusterId: pulumi.String("string"),
Lans: ionoscloud.DataplatformClusterLanArray{
&ionoscloud.DataplatformClusterLanArgs{
LanId: pulumi.String("string"),
Dhcp: pulumi.Bool(false),
Routes: ionoscloud.DataplatformClusterLanRouteArray{
&ionoscloud.DataplatformClusterLanRouteArgs{
Gateway: pulumi.String("string"),
Network: pulumi.String("string"),
},
},
},
},
MaintenanceWindows: ionoscloud.DataplatformClusterMaintenanceWindowArray{
&ionoscloud.DataplatformClusterMaintenanceWindowArgs{
DayOfTheWeek: pulumi.String("string"),
Time: pulumi.String("string"),
},
},
Name: pulumi.String("string"),
Timeouts: &ionoscloud.DataplatformClusterTimeoutsArgs{
Create: pulumi.String("string"),
Default: pulumi.String("string"),
Delete: pulumi.String("string"),
Update: pulumi.String("string"),
},
Version: pulumi.String("string"),
})
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());
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")
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",
});
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
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:
- Datacenter
Id string - [string] The UUID of the virtual data center (VDC) the cluster is provisioned.
- Dataplatform
Cluster stringId - Lans
List<Dataplatform
Cluster Lan> - [list] A list of LANs you want this node pool to be part of.
- Maintenance
Windows List<DataplatformCluster Maintenance Window> - 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
Dataplatform
Cluster Timeouts - Version string
- [int] The version of the Data Platform.
- Datacenter
Id string - [string] The UUID of the virtual data center (VDC) the cluster is provisioned.
- Dataplatform
Cluster stringId - Lans
[]Dataplatform
Cluster Lan Args - [list] A list of LANs you want this node pool to be part of.
- Maintenance
Windows []DataplatformCluster Maintenance Window Args - 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
Dataplatform
Cluster Timeouts Args - Version string
- [int] The version of the Data Platform.
- datacenter
Id String - [string] The UUID of the virtual data center (VDC) the cluster is provisioned.
- dataplatform
Cluster StringId - lans
List<Dataplatform
Cluster Lan> - [list] A list of LANs you want this node pool to be part of.
- maintenance
Windows List<DataplatformCluster Maintenance Window> - 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
Dataplatform
Cluster Timeouts - version String
- [int] The version of the Data Platform.
- datacenter
Id string - [string] The UUID of the virtual data center (VDC) the cluster is provisioned.
- dataplatform
Cluster stringId - lans
Dataplatform
Cluster Lan[] - [list] A list of LANs you want this node pool to be part of.
- maintenance
Windows DataplatformCluster Maintenance Window[] - 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
Dataplatform
Cluster Timeouts - 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_ strid - lans
Sequence[Dataplatform
Cluster Lan Args] - [list] A list of LANs you want this node pool to be part of.
- maintenance_
windows Sequence[DataplatformCluster Maintenance Window Args] - 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
Dataplatform
Cluster Timeouts Args - version str
- [int] The version of the Data Platform.
- datacenter
Id String - [string] The UUID of the virtual data center (VDC) the cluster is provisioned.
- dataplatform
Cluster StringId - lans List<Property Map>
- [list] A list of LANs you want this node pool to be part of.
- maintenance
Windows 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
- 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.
- Datacenter
Id string - [string] The UUID of the virtual data center (VDC) the cluster is provisioned.
- Dataplatform
Cluster stringId - Lans
List<Dataplatform
Cluster Lan> - [list] A list of LANs you want this node pool to be part of.
- Maintenance
Windows List<DataplatformCluster Maintenance Window> - 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
Dataplatform
Cluster Timeouts - Version string
- [int] The version of the Data Platform.
- Datacenter
Id string - [string] The UUID of the virtual data center (VDC) the cluster is provisioned.
- Dataplatform
Cluster stringId - Lans
[]Dataplatform
Cluster Lan Args - [list] A list of LANs you want this node pool to be part of.
- Maintenance
Windows []DataplatformCluster Maintenance Window Args - 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
Dataplatform
Cluster Timeouts Args - Version string
- [int] The version of the Data Platform.
- datacenter
Id String - [string] The UUID of the virtual data center (VDC) the cluster is provisioned.
- dataplatform
Cluster StringId - lans
List<Dataplatform
Cluster Lan> - [list] A list of LANs you want this node pool to be part of.
- maintenance
Windows List<DataplatformCluster Maintenance Window> - 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
Dataplatform
Cluster Timeouts - version String
- [int] The version of the Data Platform.
- datacenter
Id string - [string] The UUID of the virtual data center (VDC) the cluster is provisioned.
- dataplatform
Cluster stringId - lans
Dataplatform
Cluster Lan[] - [list] A list of LANs you want this node pool to be part of.
- maintenance
Windows DataplatformCluster Maintenance Window[] - 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
Dataplatform
Cluster Timeouts - 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_ strid - lans
Sequence[Dataplatform
Cluster Lan Args] - [list] A list of LANs you want this node pool to be part of.
- maintenance_
windows Sequence[DataplatformCluster Maintenance Window Args] - 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
Dataplatform
Cluster Timeouts Args - version str
- [int] The version of the Data Platform.
- datacenter
Id String - [string] The UUID of the virtual data center (VDC) the cluster is provisioned.
- dataplatform
Cluster StringId - lans List<Property Map>
- [list] A list of LANs you want this node pool to be part of.
- maintenance
Windows 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
- Lan
Id 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<Dataplatform
Cluster Lan Route> - [list] An array of additional LANs attached to worker nodes.
- Lan
Id 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
[]Dataplatform
Cluster Lan Route - [list] An array of additional LANs attached to worker nodes.
- lan
Id 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<Dataplatform
Cluster Lan Route> - [list] An array of additional LANs attached to worker nodes.
- lan
Id 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
Dataplatform
Cluster Lan Route[] - [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[Dataplatform
Cluster Lan Route] - [list] An array of additional LANs attached to worker nodes.
- lan
Id 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
DataplatformClusterMaintenanceWindow, DataplatformClusterMaintenanceWindowArgs
- Day
Of stringThe Week - [string] Must be set with one the values
Monday
,Tuesday
,Wednesday
,Thursday
,Friday
,Saturday
orSunday
. - 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 stringThe Week - [string] Must be set with one the values
Monday
,Tuesday
,Wednesday
,Thursday
,Friday
,Saturday
orSunday
. - 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 StringThe Week - [string] Must be set with one the values
Monday
,Tuesday
,Wednesday
,Thursday
,Friday
,Saturday
orSunday
. - 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 stringThe Week - [string] Must be set with one the values
Monday
,Tuesday
,Wednesday
,Thursday
,Friday
,Saturday
orSunday
. - 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_ strthe_ week - [string] Must be set with one the values
Monday
,Tuesday
,Wednesday
,Thursday
,Friday
,Saturday
orSunday
. - 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.
- day
Of StringThe Week - [string] Must be set with one the values
Monday
,Tuesday
,Wednesday
,Thursday
,Friday
,Saturday
orSunday
. - 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.
DataplatformClusterTimeouts, DataplatformClusterTimeoutsArgs
Import
Resource Dataplatform Cluster can be imported using the cluster_id
, e.g.
$ pulumi import ionoscloud:index/dataplatformCluster:DataplatformCluster mycluser cluster uuid
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.