1. Packages
  2. OVH
  3. API Docs
  4. Dedicated
  5. ServerReinstallTask
OVHCloud v2.0.7 published on Wednesday, Mar 19, 2025 by OVHcloud

ovh.Dedicated.ServerReinstallTask

Explore with Pulumi AI

ovh logo
OVHCloud v2.0.7 published on Wednesday, Mar 19, 2025 by OVHcloud

    Import

    Installation task can be imported using the service_name (nsXXXX.ip...) of the baremetal server, the operating_system used and ths task_id, separated by “/” E.g.,

    bash

    $ pulumi import ovh:Dedicated/serverReinstallTask:ServerReinstallTask ovh_dedicated_server_reinstall_task nsXXXX.ipXXXX/operating_system/12345
    

    Create ServerReinstallTask Resource

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

    Constructor syntax

    new ServerReinstallTask(name: string, args: ServerReinstallTaskArgs, opts?: CustomResourceOptions);
    @overload
    def ServerReinstallTask(resource_name: str,
                            args: ServerReinstallTaskArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def ServerReinstallTask(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            os: Optional[str] = None,
                            service_name: Optional[str] = None,
                            bootid_on_destroy: Optional[int] = None,
                            customizations: Optional[_dedicated.ServerReinstallTaskCustomizationsArgs] = None,
                            properties: Optional[Mapping[str, str]] = None,
                            storages: Optional[Sequence[_dedicated.ServerReinstallTaskStorageArgs]] = None)
    func NewServerReinstallTask(ctx *Context, name string, args ServerReinstallTaskArgs, opts ...ResourceOption) (*ServerReinstallTask, error)
    public ServerReinstallTask(string name, ServerReinstallTaskArgs args, CustomResourceOptions? opts = null)
    public ServerReinstallTask(String name, ServerReinstallTaskArgs args)
    public ServerReinstallTask(String name, ServerReinstallTaskArgs args, CustomResourceOptions options)
    
    type: ovh:Dedicated:ServerReinstallTask
    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 ServerReinstallTaskArgs
    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 ServerReinstallTaskArgs
    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 ServerReinstallTaskArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ServerReinstallTaskArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ServerReinstallTaskArgs
    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 serverReinstallTaskResource = new Ovh.Dedicated.ServerReinstallTask("serverReinstallTaskResource", new()
    {
        Os = "string",
        ServiceName = "string",
        BootidOnDestroy = 0,
        Customizations = new Ovh.Dedicated.Inputs.ServerReinstallTaskCustomizationsArgs
        {
            ConfigDriveUserData = "string",
            EfiBootloaderPath = "string",
            Hostname = "string",
            HttpHeaders = 
            {
                { "string", "string" },
            },
            ImageCheckSum = "string",
            ImageCheckSumType = "string",
            ImageType = "string",
            ImageUrl = "string",
            Language = "string",
            PostInstallationScript = "string",
            PostInstallationScriptExtension = "string",
            SshKey = "string",
        },
        Properties = 
        {
            { "string", "string" },
        },
        Storages = new[]
        {
            new Ovh.Dedicated.Inputs.ServerReinstallTaskStorageArgs
            {
                DiskGroupId = 0,
                HardwareRaids = new[]
                {
                    new Ovh.Dedicated.Inputs.ServerReinstallTaskStorageHardwareRaidArgs
                    {
                        Arrays = 0,
                        Disks = 0,
                        RaidLevel = 0,
                        Spares = 0,
                    },
                },
                Partitionings = new[]
                {
                    new Ovh.Dedicated.Inputs.ServerReinstallTaskStoragePartitioningArgs
                    {
                        Disks = 0,
                        Layouts = new[]
                        {
                            new Ovh.Dedicated.Inputs.ServerReinstallTaskStoragePartitioningLayoutArgs
                            {
                                FileSystem = "string",
                                MountPoint = "string",
                                Extras = new[]
                                {
                                    new Ovh.Dedicated.Inputs.ServerReinstallTaskStoragePartitioningLayoutExtraArgs
                                    {
                                        Lvs = new[]
                                        {
                                            new Ovh.Dedicated.Inputs.ServerReinstallTaskStoragePartitioningLayoutExtraLvArgs
                                            {
                                                Name = "string",
                                            },
                                        },
                                        Zps = new[]
                                        {
                                            new Ovh.Dedicated.Inputs.ServerReinstallTaskStoragePartitioningLayoutExtraZpArgs
                                            {
                                                Name = "string",
                                            },
                                        },
                                    },
                                },
                                RaidLevel = 0,
                                Size = 0,
                            },
                        },
                        SchemeName = "string",
                    },
                },
            },
        },
    });
    
    example, err := Dedicated.NewServerReinstallTask(ctx, "serverReinstallTaskResource", &Dedicated.ServerReinstallTaskArgs{
    	Os:              pulumi.String("string"),
    	ServiceName:     pulumi.String("string"),
    	BootidOnDestroy: pulumi.Int(0),
    	Customizations: &dedicated.ServerReinstallTaskCustomizationsArgs{
    		ConfigDriveUserData: pulumi.String("string"),
    		EfiBootloaderPath:   pulumi.String("string"),
    		Hostname:            pulumi.String("string"),
    		HttpHeaders: pulumi.StringMap{
    			"string": pulumi.String("string"),
    		},
    		ImageCheckSum:                   pulumi.String("string"),
    		ImageCheckSumType:               pulumi.String("string"),
    		ImageType:                       pulumi.String("string"),
    		ImageUrl:                        pulumi.String("string"),
    		Language:                        pulumi.String("string"),
    		PostInstallationScript:          pulumi.String("string"),
    		PostInstallationScriptExtension: pulumi.String("string"),
    		SshKey:                          pulumi.String("string"),
    	},
    	Properties: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Storages: dedicated.ServerReinstallTaskStorageArray{
    		&dedicated.ServerReinstallTaskStorageArgs{
    			DiskGroupId: pulumi.Int(0),
    			HardwareRaids: dedicated.ServerReinstallTaskStorageHardwareRaidArray{
    				&dedicated.ServerReinstallTaskStorageHardwareRaidArgs{
    					Arrays:    pulumi.Int(0),
    					Disks:     pulumi.Int(0),
    					RaidLevel: pulumi.Int(0),
    					Spares:    pulumi.Int(0),
    				},
    			},
    			Partitionings: dedicated.ServerReinstallTaskStoragePartitioningArray{
    				&dedicated.ServerReinstallTaskStoragePartitioningArgs{
    					Disks: pulumi.Int(0),
    					Layouts: dedicated.ServerReinstallTaskStoragePartitioningLayoutArray{
    						&dedicated.ServerReinstallTaskStoragePartitioningLayoutArgs{
    							FileSystem: pulumi.String("string"),
    							MountPoint: pulumi.String("string"),
    							Extras: dedicated.ServerReinstallTaskStoragePartitioningLayoutExtraArray{
    								&dedicated.ServerReinstallTaskStoragePartitioningLayoutExtraArgs{
    									Lvs: dedicated.ServerReinstallTaskStoragePartitioningLayoutExtraLvArray{
    										&dedicated.ServerReinstallTaskStoragePartitioningLayoutExtraLvArgs{
    											Name: pulumi.String("string"),
    										},
    									},
    									Zps: dedicated.ServerReinstallTaskStoragePartitioningLayoutExtraZpArray{
    										&dedicated.ServerReinstallTaskStoragePartitioningLayoutExtraZpArgs{
    											Name: pulumi.String("string"),
    										},
    									},
    								},
    							},
    							RaidLevel: pulumi.Int(0),
    							Size:      pulumi.Int(0),
    						},
    					},
    					SchemeName: pulumi.String("string"),
    				},
    			},
    		},
    	},
    })
    
    var serverReinstallTaskResource = new ServerReinstallTask("serverReinstallTaskResource", ServerReinstallTaskArgs.builder()
        .os("string")
        .serviceName("string")
        .bootidOnDestroy(0)
        .customizations(ServerReinstallTaskCustomizationsArgs.builder()
            .configDriveUserData("string")
            .efiBootloaderPath("string")
            .hostname("string")
            .httpHeaders(Map.of("string", "string"))
            .imageCheckSum("string")
            .imageCheckSumType("string")
            .imageType("string")
            .imageUrl("string")
            .language("string")
            .postInstallationScript("string")
            .postInstallationScriptExtension("string")
            .sshKey("string")
            .build())
        .properties(Map.of("string", "string"))
        .storages(ServerReinstallTaskStorageArgs.builder()
            .diskGroupId(0)
            .hardwareRaids(ServerReinstallTaskStorageHardwareRaidArgs.builder()
                .arrays(0)
                .disks(0)
                .raidLevel(0)
                .spares(0)
                .build())
            .partitionings(ServerReinstallTaskStoragePartitioningArgs.builder()
                .disks(0)
                .layouts(ServerReinstallTaskStoragePartitioningLayoutArgs.builder()
                    .fileSystem("string")
                    .mountPoint("string")
                    .extras(ServerReinstallTaskStoragePartitioningLayoutExtraArgs.builder()
                        .lvs(ServerReinstallTaskStoragePartitioningLayoutExtraLvArgs.builder()
                            .name("string")
                            .build())
                        .zps(ServerReinstallTaskStoragePartitioningLayoutExtraZpArgs.builder()
                            .name("string")
                            .build())
                        .build())
                    .raidLevel(0)
                    .size(0)
                    .build())
                .schemeName("string")
                .build())
            .build())
        .build());
    
    server_reinstall_task_resource = ovh.dedicated.ServerReinstallTask("serverReinstallTaskResource",
        os="string",
        service_name="string",
        bootid_on_destroy=0,
        customizations={
            "config_drive_user_data": "string",
            "efi_bootloader_path": "string",
            "hostname": "string",
            "http_headers": {
                "string": "string",
            },
            "image_check_sum": "string",
            "image_check_sum_type": "string",
            "image_type": "string",
            "image_url": "string",
            "language": "string",
            "post_installation_script": "string",
            "post_installation_script_extension": "string",
            "ssh_key": "string",
        },
        properties={
            "string": "string",
        },
        storages=[{
            "disk_group_id": 0,
            "hardware_raids": [{
                "arrays": 0,
                "disks": 0,
                "raid_level": 0,
                "spares": 0,
            }],
            "partitionings": [{
                "disks": 0,
                "layouts": [{
                    "file_system": "string",
                    "mount_point": "string",
                    "extras": [{
                        "lvs": [{
                            "name": "string",
                        }],
                        "zps": [{
                            "name": "string",
                        }],
                    }],
                    "raid_level": 0,
                    "size": 0,
                }],
                "scheme_name": "string",
            }],
        }])
    
    const serverReinstallTaskResource = new ovh.dedicated.ServerReinstallTask("serverReinstallTaskResource", {
        os: "string",
        serviceName: "string",
        bootidOnDestroy: 0,
        customizations: {
            configDriveUserData: "string",
            efiBootloaderPath: "string",
            hostname: "string",
            httpHeaders: {
                string: "string",
            },
            imageCheckSum: "string",
            imageCheckSumType: "string",
            imageType: "string",
            imageUrl: "string",
            language: "string",
            postInstallationScript: "string",
            postInstallationScriptExtension: "string",
            sshKey: "string",
        },
        properties: {
            string: "string",
        },
        storages: [{
            diskGroupId: 0,
            hardwareRaids: [{
                arrays: 0,
                disks: 0,
                raidLevel: 0,
                spares: 0,
            }],
            partitionings: [{
                disks: 0,
                layouts: [{
                    fileSystem: "string",
                    mountPoint: "string",
                    extras: [{
                        lvs: [{
                            name: "string",
                        }],
                        zps: [{
                            name: "string",
                        }],
                    }],
                    raidLevel: 0,
                    size: 0,
                }],
                schemeName: "string",
            }],
        }],
    });
    
    type: ovh:Dedicated:ServerReinstallTask
    properties:
        bootidOnDestroy: 0
        customizations:
            configDriveUserData: string
            efiBootloaderPath: string
            hostname: string
            httpHeaders:
                string: string
            imageCheckSum: string
            imageCheckSumType: string
            imageType: string
            imageUrl: string
            language: string
            postInstallationScript: string
            postInstallationScriptExtension: string
            sshKey: string
        os: string
        properties:
            string: string
        serviceName: string
        storages:
            - diskGroupId: 0
              hardwareRaids:
                - arrays: 0
                  disks: 0
                  raidLevel: 0
                  spares: 0
              partitionings:
                - disks: 0
                  layouts:
                    - extras:
                        - lvs:
                            - name: string
                          zps:
                            - name: string
                      fileSystem: string
                      mountPoint: string
                      raidLevel: 0
                      size: 0
                  schemeName: string
    

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

    Os string
    Operating system to install.
    ServiceName string
    The service_name of your dedicated server.
    BootidOnDestroy int
    If set, reboot the server on the specified boot id during destroy phase.
    Customizations ServerReinstallTaskCustomizations

    Available attributes and their types are OS-dependant. Example: hostname.

    WARNING Some customizations may be required on some Operating Systems. Check how to list the available and required customization(s) for your operating system (do not forget to adapt camel case customization name to snake case parameter).

    Properties Dictionary<string, string>
    Arbitrary properties to pass to cloud-init's config drive datasource. It supports any key with any string value.
    Storages List<ServerReinstallTaskStorage>
    OS reinstallation storage configurations. More details about disks, hardware/software RAID and partitioning configuration (do not forget to adapt camel case parameters to snake case parameters).
    Os string
    Operating system to install.
    ServiceName string
    The service_name of your dedicated server.
    BootidOnDestroy int
    If set, reboot the server on the specified boot id during destroy phase.
    Customizations ServerReinstallTaskCustomizationsArgs

    Available attributes and their types are OS-dependant. Example: hostname.

    WARNING Some customizations may be required on some Operating Systems. Check how to list the available and required customization(s) for your operating system (do not forget to adapt camel case customization name to snake case parameter).

    Properties map[string]string
    Arbitrary properties to pass to cloud-init's config drive datasource. It supports any key with any string value.
    Storages []ServerReinstallTaskStorageArgs
    OS reinstallation storage configurations. More details about disks, hardware/software RAID and partitioning configuration (do not forget to adapt camel case parameters to snake case parameters).
    os String
    Operating system to install.
    serviceName String
    The service_name of your dedicated server.
    bootidOnDestroy Integer
    If set, reboot the server on the specified boot id during destroy phase.
    customizations ServerReinstallTaskCustomizations

    Available attributes and their types are OS-dependant. Example: hostname.

    WARNING Some customizations may be required on some Operating Systems. Check how to list the available and required customization(s) for your operating system (do not forget to adapt camel case customization name to snake case parameter).

    properties Map<String,String>
    Arbitrary properties to pass to cloud-init's config drive datasource. It supports any key with any string value.
    storages List<ServerReinstallTaskStorage>
    OS reinstallation storage configurations. More details about disks, hardware/software RAID and partitioning configuration (do not forget to adapt camel case parameters to snake case parameters).
    os string
    Operating system to install.
    serviceName string
    The service_name of your dedicated server.
    bootidOnDestroy number
    If set, reboot the server on the specified boot id during destroy phase.
    customizations ServerReinstallTaskCustomizations

    Available attributes and their types are OS-dependant. Example: hostname.

    WARNING Some customizations may be required on some Operating Systems. Check how to list the available and required customization(s) for your operating system (do not forget to adapt camel case customization name to snake case parameter).

    properties {[key: string]: string}
    Arbitrary properties to pass to cloud-init's config drive datasource. It supports any key with any string value.
    storages ServerReinstallTaskStorage[]
    OS reinstallation storage configurations. More details about disks, hardware/software RAID and partitioning configuration (do not forget to adapt camel case parameters to snake case parameters).
    os str
    Operating system to install.
    service_name str
    The service_name of your dedicated server.
    bootid_on_destroy int
    If set, reboot the server on the specified boot id during destroy phase.
    customizations dedicated.ServerReinstallTaskCustomizationsArgs

    Available attributes and their types are OS-dependant. Example: hostname.

    WARNING Some customizations may be required on some Operating Systems. Check how to list the available and required customization(s) for your operating system (do not forget to adapt camel case customization name to snake case parameter).

    properties Mapping[str, str]
    Arbitrary properties to pass to cloud-init's config drive datasource. It supports any key with any string value.
    storages Sequence[dedicated.ServerReinstallTaskStorageArgs]
    OS reinstallation storage configurations. More details about disks, hardware/software RAID and partitioning configuration (do not forget to adapt camel case parameters to snake case parameters).
    os String
    Operating system to install.
    serviceName String
    The service_name of your dedicated server.
    bootidOnDestroy Number
    If set, reboot the server on the specified boot id during destroy phase.
    customizations Property Map

    Available attributes and their types are OS-dependant. Example: hostname.

    WARNING Some customizations may be required on some Operating Systems. Check how to list the available and required customization(s) for your operating system (do not forget to adapt camel case customization name to snake case parameter).

    properties Map<String>
    Arbitrary properties to pass to cloud-init's config drive datasource. It supports any key with any string value.
    storages List<Property Map>
    OS reinstallation storage configurations. More details about disks, hardware/software RAID and partitioning configuration (do not forget to adapt camel case parameters to snake case parameters).

    Outputs

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

    Comment string
    Details of this task. (should be Install asked)
    DoneDate string
    Completion date in RFC3339 format.
    Function string
    Function name (should be hardInstall).
    Id string
    The provider-assigned unique ID for this managed resource.
    LastUpdate string
    Last update
    StartDate string
    Task creation date in RFC3339 format.
    Status string
    Task status (should be done)
    Comment string
    Details of this task. (should be Install asked)
    DoneDate string
    Completion date in RFC3339 format.
    Function string
    Function name (should be hardInstall).
    Id string
    The provider-assigned unique ID for this managed resource.
    LastUpdate string
    Last update
    StartDate string
    Task creation date in RFC3339 format.
    Status string
    Task status (should be done)
    comment String
    Details of this task. (should be Install asked)
    doneDate String
    Completion date in RFC3339 format.
    function String
    Function name (should be hardInstall).
    id String
    The provider-assigned unique ID for this managed resource.
    lastUpdate String
    Last update
    startDate String
    Task creation date in RFC3339 format.
    status String
    Task status (should be done)
    comment string
    Details of this task. (should be Install asked)
    doneDate string
    Completion date in RFC3339 format.
    function string
    Function name (should be hardInstall).
    id string
    The provider-assigned unique ID for this managed resource.
    lastUpdate string
    Last update
    startDate string
    Task creation date in RFC3339 format.
    status string
    Task status (should be done)
    comment str
    Details of this task. (should be Install asked)
    done_date str
    Completion date in RFC3339 format.
    function str
    Function name (should be hardInstall).
    id str
    The provider-assigned unique ID for this managed resource.
    last_update str
    Last update
    start_date str
    Task creation date in RFC3339 format.
    status str
    Task status (should be done)
    comment String
    Details of this task. (should be Install asked)
    doneDate String
    Completion date in RFC3339 format.
    function String
    Function name (should be hardInstall).
    id String
    The provider-assigned unique ID for this managed resource.
    lastUpdate String
    Last update
    startDate String
    Task creation date in RFC3339 format.
    status String
    Task status (should be done)

    Look up Existing ServerReinstallTask Resource

    Get an existing ServerReinstallTask 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?: ServerReinstallTaskState, opts?: CustomResourceOptions): ServerReinstallTask
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            bootid_on_destroy: Optional[int] = None,
            comment: Optional[str] = None,
            customizations: Optional[_dedicated.ServerReinstallTaskCustomizationsArgs] = None,
            done_date: Optional[str] = None,
            function: Optional[str] = None,
            last_update: Optional[str] = None,
            os: Optional[str] = None,
            properties: Optional[Mapping[str, str]] = None,
            service_name: Optional[str] = None,
            start_date: Optional[str] = None,
            status: Optional[str] = None,
            storages: Optional[Sequence[_dedicated.ServerReinstallTaskStorageArgs]] = None) -> ServerReinstallTask
    func GetServerReinstallTask(ctx *Context, name string, id IDInput, state *ServerReinstallTaskState, opts ...ResourceOption) (*ServerReinstallTask, error)
    public static ServerReinstallTask Get(string name, Input<string> id, ServerReinstallTaskState? state, CustomResourceOptions? opts = null)
    public static ServerReinstallTask get(String name, Output<String> id, ServerReinstallTaskState state, CustomResourceOptions options)
    resources:  _:    type: ovh:Dedicated:ServerReinstallTask    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:
    BootidOnDestroy int
    If set, reboot the server on the specified boot id during destroy phase.
    Comment string
    Details of this task. (should be Install asked)
    Customizations ServerReinstallTaskCustomizations

    Available attributes and their types are OS-dependant. Example: hostname.

    WARNING Some customizations may be required on some Operating Systems. Check how to list the available and required customization(s) for your operating system (do not forget to adapt camel case customization name to snake case parameter).

    DoneDate string
    Completion date in RFC3339 format.
    Function string
    Function name (should be hardInstall).
    LastUpdate string
    Last update
    Os string
    Operating system to install.
    Properties Dictionary<string, string>
    Arbitrary properties to pass to cloud-init's config drive datasource. It supports any key with any string value.
    ServiceName string
    The service_name of your dedicated server.
    StartDate string
    Task creation date in RFC3339 format.
    Status string
    Task status (should be done)
    Storages List<ServerReinstallTaskStorage>
    OS reinstallation storage configurations. More details about disks, hardware/software RAID and partitioning configuration (do not forget to adapt camel case parameters to snake case parameters).
    BootidOnDestroy int
    If set, reboot the server on the specified boot id during destroy phase.
    Comment string
    Details of this task. (should be Install asked)
    Customizations ServerReinstallTaskCustomizationsArgs

    Available attributes and their types are OS-dependant. Example: hostname.

    WARNING Some customizations may be required on some Operating Systems. Check how to list the available and required customization(s) for your operating system (do not forget to adapt camel case customization name to snake case parameter).

    DoneDate string
    Completion date in RFC3339 format.
    Function string
    Function name (should be hardInstall).
    LastUpdate string
    Last update
    Os string
    Operating system to install.
    Properties map[string]string
    Arbitrary properties to pass to cloud-init's config drive datasource. It supports any key with any string value.
    ServiceName string
    The service_name of your dedicated server.
    StartDate string
    Task creation date in RFC3339 format.
    Status string
    Task status (should be done)
    Storages []ServerReinstallTaskStorageArgs
    OS reinstallation storage configurations. More details about disks, hardware/software RAID and partitioning configuration (do not forget to adapt camel case parameters to snake case parameters).
    bootidOnDestroy Integer
    If set, reboot the server on the specified boot id during destroy phase.
    comment String
    Details of this task. (should be Install asked)
    customizations ServerReinstallTaskCustomizations

    Available attributes and their types are OS-dependant. Example: hostname.

    WARNING Some customizations may be required on some Operating Systems. Check how to list the available and required customization(s) for your operating system (do not forget to adapt camel case customization name to snake case parameter).

    doneDate String
    Completion date in RFC3339 format.
    function String
    Function name (should be hardInstall).
    lastUpdate String
    Last update
    os String
    Operating system to install.
    properties Map<String,String>
    Arbitrary properties to pass to cloud-init's config drive datasource. It supports any key with any string value.
    serviceName String
    The service_name of your dedicated server.
    startDate String
    Task creation date in RFC3339 format.
    status String
    Task status (should be done)
    storages List<ServerReinstallTaskStorage>
    OS reinstallation storage configurations. More details about disks, hardware/software RAID and partitioning configuration (do not forget to adapt camel case parameters to snake case parameters).
    bootidOnDestroy number
    If set, reboot the server on the specified boot id during destroy phase.
    comment string
    Details of this task. (should be Install asked)
    customizations ServerReinstallTaskCustomizations

    Available attributes and their types are OS-dependant. Example: hostname.

    WARNING Some customizations may be required on some Operating Systems. Check how to list the available and required customization(s) for your operating system (do not forget to adapt camel case customization name to snake case parameter).

    doneDate string
    Completion date in RFC3339 format.
    function string
    Function name (should be hardInstall).
    lastUpdate string
    Last update
    os string
    Operating system to install.
    properties {[key: string]: string}
    Arbitrary properties to pass to cloud-init's config drive datasource. It supports any key with any string value.
    serviceName string
    The service_name of your dedicated server.
    startDate string
    Task creation date in RFC3339 format.
    status string
    Task status (should be done)
    storages ServerReinstallTaskStorage[]
    OS reinstallation storage configurations. More details about disks, hardware/software RAID and partitioning configuration (do not forget to adapt camel case parameters to snake case parameters).
    bootid_on_destroy int
    If set, reboot the server on the specified boot id during destroy phase.
    comment str
    Details of this task. (should be Install asked)
    customizations dedicated.ServerReinstallTaskCustomizationsArgs

    Available attributes and their types are OS-dependant. Example: hostname.

    WARNING Some customizations may be required on some Operating Systems. Check how to list the available and required customization(s) for your operating system (do not forget to adapt camel case customization name to snake case parameter).

    done_date str
    Completion date in RFC3339 format.
    function str
    Function name (should be hardInstall).
    last_update str
    Last update
    os str
    Operating system to install.
    properties Mapping[str, str]
    Arbitrary properties to pass to cloud-init's config drive datasource. It supports any key with any string value.
    service_name str
    The service_name of your dedicated server.
    start_date str
    Task creation date in RFC3339 format.
    status str
    Task status (should be done)
    storages Sequence[dedicated.ServerReinstallTaskStorageArgs]
    OS reinstallation storage configurations. More details about disks, hardware/software RAID and partitioning configuration (do not forget to adapt camel case parameters to snake case parameters).
    bootidOnDestroy Number
    If set, reboot the server on the specified boot id during destroy phase.
    comment String
    Details of this task. (should be Install asked)
    customizations Property Map

    Available attributes and their types are OS-dependant. Example: hostname.

    WARNING Some customizations may be required on some Operating Systems. Check how to list the available and required customization(s) for your operating system (do not forget to adapt camel case customization name to snake case parameter).

    doneDate String
    Completion date in RFC3339 format.
    function String
    Function name (should be hardInstall).
    lastUpdate String
    Last update
    os String
    Operating system to install.
    properties Map<String>
    Arbitrary properties to pass to cloud-init's config drive datasource. It supports any key with any string value.
    serviceName String
    The service_name of your dedicated server.
    startDate String
    Task creation date in RFC3339 format.
    status String
    Task status (should be done)
    storages List<Property Map>
    OS reinstallation storage configurations. More details about disks, hardware/software RAID and partitioning configuration (do not forget to adapt camel case parameters to snake case parameters).

    Supporting Types

    ServerReinstallTaskCustomizations, ServerReinstallTaskCustomizationsArgs

    ConfigDriveUserData string
    Config Drive UserData
    EfiBootloaderPath string
    EFI bootloader path
    Hostname string
    Custom hostname
    HttpHeaders Dictionary<string, string>
    Image HTTP Headers
    ImageCheckSum string
    Image checksum
    ImageCheckSumType string
    Checksum type
    ImageType string
    Image Type
    ImageUrl string
    Image URL
    Language string
    Display Language
    PostInstallationScript string
    Post-Installation Script
    PostInstallationScriptExtension string
    Post-Installation Script File Extension
    SshKey string
    SSH Public Key
    ConfigDriveUserData string
    Config Drive UserData
    EfiBootloaderPath string
    EFI bootloader path
    Hostname string
    Custom hostname
    HttpHeaders map[string]string
    Image HTTP Headers
    ImageCheckSum string
    Image checksum
    ImageCheckSumType string
    Checksum type
    ImageType string
    Image Type
    ImageUrl string
    Image URL
    Language string
    Display Language
    PostInstallationScript string
    Post-Installation Script
    PostInstallationScriptExtension string
    Post-Installation Script File Extension
    SshKey string
    SSH Public Key
    configDriveUserData String
    Config Drive UserData
    efiBootloaderPath String
    EFI bootloader path
    hostname String
    Custom hostname
    httpHeaders Map<String,String>
    Image HTTP Headers
    imageCheckSum String
    Image checksum
    imageCheckSumType String
    Checksum type
    imageType String
    Image Type
    imageUrl String
    Image URL
    language String
    Display Language
    postInstallationScript String
    Post-Installation Script
    postInstallationScriptExtension String
    Post-Installation Script File Extension
    sshKey String
    SSH Public Key
    configDriveUserData string
    Config Drive UserData
    efiBootloaderPath string
    EFI bootloader path
    hostname string
    Custom hostname
    httpHeaders {[key: string]: string}
    Image HTTP Headers
    imageCheckSum string
    Image checksum
    imageCheckSumType string
    Checksum type
    imageType string
    Image Type
    imageUrl string
    Image URL
    language string
    Display Language
    postInstallationScript string
    Post-Installation Script
    postInstallationScriptExtension string
    Post-Installation Script File Extension
    sshKey string
    SSH Public Key
    config_drive_user_data str
    Config Drive UserData
    efi_bootloader_path str
    EFI bootloader path
    hostname str
    Custom hostname
    http_headers Mapping[str, str]
    Image HTTP Headers
    image_check_sum str
    Image checksum
    image_check_sum_type str
    Checksum type
    image_type str
    Image Type
    image_url str
    Image URL
    language str
    Display Language
    post_installation_script str
    Post-Installation Script
    post_installation_script_extension str
    Post-Installation Script File Extension
    ssh_key str
    SSH Public Key
    configDriveUserData String
    Config Drive UserData
    efiBootloaderPath String
    EFI bootloader path
    hostname String
    Custom hostname
    httpHeaders Map<String>
    Image HTTP Headers
    imageCheckSum String
    Image checksum
    imageCheckSumType String
    Checksum type
    imageType String
    Image Type
    imageUrl String
    Image URL
    language String
    Display Language
    postInstallationScript String
    Post-Installation Script
    postInstallationScriptExtension String
    Post-Installation Script File Extension
    sshKey String
    SSH Public Key

    ServerReinstallTaskStorage, ServerReinstallTaskStorageArgs

    DiskGroupId int
    Disk group id to install the OS to (default is 0, meaning automatic).
    HardwareRaids List<ServerReinstallTaskStorageHardwareRaid>
    Hardware Raid configurations (if not specified, all disks of the chosen disk group id will be configured in JBOD mode).
    Partitionings List<ServerReinstallTaskStoragePartitioning>
    Partitioning configuration
    DiskGroupId int
    Disk group id to install the OS to (default is 0, meaning automatic).
    HardwareRaids []ServerReinstallTaskStorageHardwareRaid
    Hardware Raid configurations (if not specified, all disks of the chosen disk group id will be configured in JBOD mode).
    Partitionings []ServerReinstallTaskStoragePartitioning
    Partitioning configuration
    diskGroupId Integer
    Disk group id to install the OS to (default is 0, meaning automatic).
    hardwareRaids List<ServerReinstallTaskStorageHardwareRaid>
    Hardware Raid configurations (if not specified, all disks of the chosen disk group id will be configured in JBOD mode).
    partitionings List<ServerReinstallTaskStoragePartitioning>
    Partitioning configuration
    diskGroupId number
    Disk group id to install the OS to (default is 0, meaning automatic).
    hardwareRaids ServerReinstallTaskStorageHardwareRaid[]
    Hardware Raid configurations (if not specified, all disks of the chosen disk group id will be configured in JBOD mode).
    partitionings ServerReinstallTaskStoragePartitioning[]
    Partitioning configuration
    disk_group_id int
    Disk group id to install the OS to (default is 0, meaning automatic).
    hardware_raids Sequence[dedicated.ServerReinstallTaskStorageHardwareRaid]
    Hardware Raid configurations (if not specified, all disks of the chosen disk group id will be configured in JBOD mode).
    partitionings Sequence[dedicated.ServerReinstallTaskStoragePartitioning]
    Partitioning configuration
    diskGroupId Number
    Disk group id to install the OS to (default is 0, meaning automatic).
    hardwareRaids List<Property Map>
    Hardware Raid configurations (if not specified, all disks of the chosen disk group id will be configured in JBOD mode).
    partitionings List<Property Map>
    Partitioning configuration

    ServerReinstallTaskStorageHardwareRaid, ServerReinstallTaskStorageHardwareRaidArgs

    Arrays int
    Number of arrays (default is 1)
    Disks int
    Total number of disks in the disk group involved in the hardware raid configuration (all disks of the disk group by default)
    RaidLevel int
    Hardware raid type (default is 1)
    Spares int
    Number of disks in the disk group involved in the spare (default is 0)
    Arrays int
    Number of arrays (default is 1)
    Disks int
    Total number of disks in the disk group involved in the hardware raid configuration (all disks of the disk group by default)
    RaidLevel int
    Hardware raid type (default is 1)
    Spares int
    Number of disks in the disk group involved in the spare (default is 0)
    arrays Integer
    Number of arrays (default is 1)
    disks Integer
    Total number of disks in the disk group involved in the hardware raid configuration (all disks of the disk group by default)
    raidLevel Integer
    Hardware raid type (default is 1)
    spares Integer
    Number of disks in the disk group involved in the spare (default is 0)
    arrays number
    Number of arrays (default is 1)
    disks number
    Total number of disks in the disk group involved in the hardware raid configuration (all disks of the disk group by default)
    raidLevel number
    Hardware raid type (default is 1)
    spares number
    Number of disks in the disk group involved in the spare (default is 0)
    arrays int
    Number of arrays (default is 1)
    disks int
    Total number of disks in the disk group involved in the hardware raid configuration (all disks of the disk group by default)
    raid_level int
    Hardware raid type (default is 1)
    spares int
    Number of disks in the disk group involved in the spare (default is 0)
    arrays Number
    Number of arrays (default is 1)
    disks Number
    Total number of disks in the disk group involved in the hardware raid configuration (all disks of the disk group by default)
    raidLevel Number
    Hardware raid type (default is 1)
    spares Number
    Number of disks in the disk group involved in the spare (default is 0)

    ServerReinstallTaskStoragePartitioning, ServerReinstallTaskStoragePartitioningArgs

    Disks int
    Total number of disks in the disk group involved in the partitioning configuration (all disks of the disk group by default)
    Layouts List<ServerReinstallTaskStoragePartitioningLayout>
    Custom partitioning layout (default is the default layout of the operating system's default partitioning scheme). Accept multiple values (multiple partitions):
    SchemeName string
    Partitioning scheme (if applicable with selected operating system)
    Disks int
    Total number of disks in the disk group involved in the partitioning configuration (all disks of the disk group by default)
    Layouts []ServerReinstallTaskStoragePartitioningLayout
    Custom partitioning layout (default is the default layout of the operating system's default partitioning scheme). Accept multiple values (multiple partitions):
    SchemeName string
    Partitioning scheme (if applicable with selected operating system)
    disks Integer
    Total number of disks in the disk group involved in the partitioning configuration (all disks of the disk group by default)
    layouts List<ServerReinstallTaskStoragePartitioningLayout>
    Custom partitioning layout (default is the default layout of the operating system's default partitioning scheme). Accept multiple values (multiple partitions):
    schemeName String
    Partitioning scheme (if applicable with selected operating system)
    disks number
    Total number of disks in the disk group involved in the partitioning configuration (all disks of the disk group by default)
    layouts ServerReinstallTaskStoragePartitioningLayout[]
    Custom partitioning layout (default is the default layout of the operating system's default partitioning scheme). Accept multiple values (multiple partitions):
    schemeName string
    Partitioning scheme (if applicable with selected operating system)
    disks int
    Total number of disks in the disk group involved in the partitioning configuration (all disks of the disk group by default)
    layouts Sequence[dedicated.ServerReinstallTaskStoragePartitioningLayout]
    Custom partitioning layout (default is the default layout of the operating system's default partitioning scheme). Accept multiple values (multiple partitions):
    scheme_name str
    Partitioning scheme (if applicable with selected operating system)
    disks Number
    Total number of disks in the disk group involved in the partitioning configuration (all disks of the disk group by default)
    layouts List<Property Map>
    Custom partitioning layout (default is the default layout of the operating system's default partitioning scheme). Accept multiple values (multiple partitions):
    schemeName String
    Partitioning scheme (if applicable with selected operating system)

    ServerReinstallTaskStoragePartitioningLayout, ServerReinstallTaskStoragePartitioningLayoutArgs

    FileSystem string
    File system type
    MountPoint string
    Mount point
    Extras List<ServerReinstallTaskStoragePartitioningLayoutExtra>
    Partition extras parameters (when applicable)
    RaidLevel int
    Software raid type (default is 1)
    Size int
    Partition size in MiB (default value is 0 which means to fill the disk with that partition)
    FileSystem string
    File system type
    MountPoint string
    Mount point
    Extras []ServerReinstallTaskStoragePartitioningLayoutExtra
    Partition extras parameters (when applicable)
    RaidLevel int
    Software raid type (default is 1)
    Size int
    Partition size in MiB (default value is 0 which means to fill the disk with that partition)
    fileSystem String
    File system type
    mountPoint String
    Mount point
    extras List<ServerReinstallTaskStoragePartitioningLayoutExtra>
    Partition extras parameters (when applicable)
    raidLevel Integer
    Software raid type (default is 1)
    size Integer
    Partition size in MiB (default value is 0 which means to fill the disk with that partition)
    fileSystem string
    File system type
    mountPoint string
    Mount point
    extras ServerReinstallTaskStoragePartitioningLayoutExtra[]
    Partition extras parameters (when applicable)
    raidLevel number
    Software raid type (default is 1)
    size number
    Partition size in MiB (default value is 0 which means to fill the disk with that partition)
    file_system str
    File system type
    mount_point str
    Mount point
    extras Sequence[dedicated.ServerReinstallTaskStoragePartitioningLayoutExtra]
    Partition extras parameters (when applicable)
    raid_level int
    Software raid type (default is 1)
    size int
    Partition size in MiB (default value is 0 which means to fill the disk with that partition)
    fileSystem String
    File system type
    mountPoint String
    Mount point
    extras List<Property Map>
    Partition extras parameters (when applicable)
    raidLevel Number
    Software raid type (default is 1)
    size Number
    Partition size in MiB (default value is 0 which means to fill the disk with that partition)

    ServerReinstallTaskStoragePartitioningLayoutExtra, ServerReinstallTaskStoragePartitioningLayoutExtraArgs

    Lvs List<ServerReinstallTaskStoragePartitioningLayoutExtraLv>
    LVM-specific parameters (when applicable)
    Zps List<ServerReinstallTaskStoragePartitioningLayoutExtraZp>
    ZFS-specific parameters (when applicable)
    Lvs []ServerReinstallTaskStoragePartitioningLayoutExtraLv
    LVM-specific parameters (when applicable)
    Zps []ServerReinstallTaskStoragePartitioningLayoutExtraZp
    ZFS-specific parameters (when applicable)
    lvs List<ServerReinstallTaskStoragePartitioningLayoutExtraLv>
    LVM-specific parameters (when applicable)
    zps List<ServerReinstallTaskStoragePartitioningLayoutExtraZp>
    ZFS-specific parameters (when applicable)
    lvs ServerReinstallTaskStoragePartitioningLayoutExtraLv[]
    LVM-specific parameters (when applicable)
    zps ServerReinstallTaskStoragePartitioningLayoutExtraZp[]
    ZFS-specific parameters (when applicable)
    lvs List<Property Map>
    LVM-specific parameters (when applicable)
    zps List<Property Map>
    ZFS-specific parameters (when applicable)

    ServerReinstallTaskStoragePartitioningLayoutExtraLv, ServerReinstallTaskStoragePartitioningLayoutExtraLvArgs

    Name string
    Logical volume name
    Name string
    Logical volume name
    name String
    Logical volume name
    name string
    Logical volume name
    name str
    Logical volume name
    name String
    Logical volume name

    ServerReinstallTaskStoragePartitioningLayoutExtraZp, ServerReinstallTaskStoragePartitioningLayoutExtraZpArgs

    Name string
    zpool name (generated automatically if not specified, note that multiple ZFS partitions with same zpool names will be configured as multiple datasets belonging to the same zpool if compatible)
    Name string
    zpool name (generated automatically if not specified, note that multiple ZFS partitions with same zpool names will be configured as multiple datasets belonging to the same zpool if compatible)
    name String
    zpool name (generated automatically if not specified, note that multiple ZFS partitions with same zpool names will be configured as multiple datasets belonging to the same zpool if compatible)
    name string
    zpool name (generated automatically if not specified, note that multiple ZFS partitions with same zpool names will be configured as multiple datasets belonging to the same zpool if compatible)
    name str
    zpool name (generated automatically if not specified, note that multiple ZFS partitions with same zpool names will be configured as multiple datasets belonging to the same zpool if compatible)
    name String
    zpool name (generated automatically if not specified, note that multiple ZFS partitions with same zpool names will be configured as multiple datasets belonging to the same zpool if compatible)

    Package Details

    Repository
    ovh ovh/pulumi-ovh
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the ovh Terraform Provider.
    ovh logo
    OVHCloud v2.0.7 published on Wednesday, Mar 19, 2025 by OVHcloud