1. Packages
  2. Azure Native v2
  3. API Docs
  4. workloads
  5. ServerInstance
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.workloads.ServerInstance

Explore with Pulumi AI

These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

Define the Server Instance resource. Azure REST API version: 2023-10-01-preview.

Example Usage

Creates the Server Instance resource.

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var serverInstance = new AzureNative.Workloads.ServerInstance("serverInstance", new()
    {
        ResourceGroupName = "test-rg",
        SapDiscoverySiteName = "SampleSite",
        SapInstanceName = "MPP_MPP",
        ServerInstanceName = "APP_SapServer1",
    });

});
Copy
package main

import (
	workloads "github.com/pulumi/pulumi-azure-native-sdk/workloads/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := workloads.NewServerInstance(ctx, "serverInstance", &workloads.ServerInstanceArgs{
			ResourceGroupName:    pulumi.String("test-rg"),
			SapDiscoverySiteName: pulumi.String("SampleSite"),
			SapInstanceName:      pulumi.String("MPP_MPP"),
			ServerInstanceName:   pulumi.String("APP_SapServer1"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.workloads.ServerInstance;
import com.pulumi.azurenative.workloads.ServerInstanceArgs;
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 serverInstance = new ServerInstance("serverInstance", ServerInstanceArgs.builder()
            .resourceGroupName("test-rg")
            .sapDiscoverySiteName("SampleSite")
            .sapInstanceName("MPP_MPP")
            .serverInstanceName("APP_SapServer1")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const serverInstance = new azure_native.workloads.ServerInstance("serverInstance", {
    resourceGroupName: "test-rg",
    sapDiscoverySiteName: "SampleSite",
    sapInstanceName: "MPP_MPP",
    serverInstanceName: "APP_SapServer1",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

server_instance = azure_native.workloads.ServerInstance("serverInstance",
    resource_group_name="test-rg",
    sap_discovery_site_name="SampleSite",
    sap_instance_name="MPP_MPP",
    server_instance_name="APP_SapServer1")
Copy
resources:
  serverInstance:
    type: azure-native:workloads:ServerInstance
    properties:
      resourceGroupName: test-rg
      sapDiscoverySiteName: SampleSite
      sapInstanceName: MPP_MPP
      serverInstanceName: APP_SapServer1
Copy

Create ServerInstance Resource

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

Constructor syntax

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

@overload
def ServerInstance(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   resource_group_name: Optional[str] = None,
                   sap_discovery_site_name: Optional[str] = None,
                   sap_instance_name: Optional[str] = None,
                   server_instance_name: Optional[str] = None)
func NewServerInstance(ctx *Context, name string, args ServerInstanceArgs, opts ...ResourceOption) (*ServerInstance, error)
public ServerInstance(string name, ServerInstanceArgs args, CustomResourceOptions? opts = null)
public ServerInstance(String name, ServerInstanceArgs args)
public ServerInstance(String name, ServerInstanceArgs args, CustomResourceOptions options)
type: azure-native:workloads:ServerInstance
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. ServerInstanceArgs
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. ServerInstanceArgs
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. ServerInstanceArgs
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. ServerInstanceArgs
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. ServerInstanceArgs
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 serverInstanceResource = new AzureNative.Workloads.ServerInstance("serverInstanceResource", new()
{
    ResourceGroupName = "string",
    SapDiscoverySiteName = "string",
    SapInstanceName = "string",
    ServerInstanceName = "string",
});
Copy
example, err := workloads.NewServerInstance(ctx, "serverInstanceResource", &workloads.ServerInstanceArgs{
	ResourceGroupName:    "string",
	SapDiscoverySiteName: "string",
	SapInstanceName:      "string",
	ServerInstanceName:   "string",
})
Copy
var serverInstanceResource = new ServerInstance("serverInstanceResource", ServerInstanceArgs.builder()
    .resourceGroupName("string")
    .sapDiscoverySiteName("string")
    .sapInstanceName("string")
    .serverInstanceName("string")
    .build());
Copy
server_instance_resource = azure_native.workloads.ServerInstance("serverInstanceResource",
    resource_group_name=string,
    sap_discovery_site_name=string,
    sap_instance_name=string,
    server_instance_name=string)
Copy
const serverInstanceResource = new azure_native.workloads.ServerInstance("serverInstanceResource", {
    resourceGroupName: "string",
    sapDiscoverySiteName: "string",
    sapInstanceName: "string",
    serverInstanceName: "string",
});
Copy
type: azure-native:workloads:ServerInstance
properties:
    resourceGroupName: string
    sapDiscoverySiteName: string
    sapInstanceName: string
    serverInstanceName: string
Copy

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

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
SapDiscoverySiteName
This property is required.
Changes to this property will trigger replacement.
string
The name of the discovery site resource for SAP Migration.
SapInstanceName
This property is required.
Changes to this property will trigger replacement.
string
The name of SAP Instance resource for SAP Migration.
ServerInstanceName Changes to this property will trigger replacement. string
The name of the Server instance resource for SAP Migration.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
SapDiscoverySiteName
This property is required.
Changes to this property will trigger replacement.
string
The name of the discovery site resource for SAP Migration.
SapInstanceName
This property is required.
Changes to this property will trigger replacement.
string
The name of SAP Instance resource for SAP Migration.
ServerInstanceName Changes to this property will trigger replacement. string
The name of the Server instance resource for SAP Migration.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
sapDiscoverySiteName
This property is required.
Changes to this property will trigger replacement.
String
The name of the discovery site resource for SAP Migration.
sapInstanceName
This property is required.
Changes to this property will trigger replacement.
String
The name of SAP Instance resource for SAP Migration.
serverInstanceName Changes to this property will trigger replacement. String
The name of the Server instance resource for SAP Migration.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
sapDiscoverySiteName
This property is required.
Changes to this property will trigger replacement.
string
The name of the discovery site resource for SAP Migration.
sapInstanceName
This property is required.
Changes to this property will trigger replacement.
string
The name of SAP Instance resource for SAP Migration.
serverInstanceName Changes to this property will trigger replacement. string
The name of the Server instance resource for SAP Migration.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
sap_discovery_site_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the discovery site resource for SAP Migration.
sap_instance_name
This property is required.
Changes to this property will trigger replacement.
str
The name of SAP Instance resource for SAP Migration.
server_instance_name Changes to this property will trigger replacement. str
The name of the Server instance resource for SAP Migration.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
sapDiscoverySiteName
This property is required.
Changes to this property will trigger replacement.
String
The name of the discovery site resource for SAP Migration.
sapInstanceName
This property is required.
Changes to this property will trigger replacement.
String
The name of SAP Instance resource for SAP Migration.
serverInstanceName Changes to this property will trigger replacement. String
The name of the Server instance resource for SAP Migration.

Outputs

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

ConfigurationData Pulumi.AzureNative.Workloads.Outputs.ConfigurationDataResponse
Configuration data for this server instance.
Errors Pulumi.AzureNative.Workloads.Outputs.SAPMigrateErrorResponse
Defines the errors related to SAP Instance resource.
Id string
The provider-assigned unique ID for this managed resource.
InstanceSid string
This is the Instance SID for ASCS/AP/DB instance. An SAP system with HANA database for example could have a different SID for database Instance than that of ASCS instance.
Name string
The name of the resource
OperatingSystem string
This is Operating System on which the host server is running.
PerformanceData Pulumi.AzureNative.Workloads.Outputs.ExcelPerformanceDataResponse | Pulumi.AzureNative.Workloads.Outputs.NativePerformanceDataResponse
Configuration data for this server instance.
ProvisioningState string
Defines the provisioning states.
SapInstanceType string
Defines the type SAP instance on this server instance.
SapProduct string
This is the SAP Application Component; e.g. SAP S/4HANA 2022, SAP ERP ENHANCE PACKAGE.
SapProductVersion string
Provide the product version of the SAP product.
ServerName string
This is the Virtual Machine Name of the SAP system. Add all the virtual machines attached to an SAP system which you wish to migrate to Azure. Keeping this not equal to ID as for single tier all InstanceTypes would be on same server, leading to multiple resources with same servername.
SystemData Pulumi.AzureNative.Workloads.Outputs.SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
ConfigurationData ConfigurationDataResponse
Configuration data for this server instance.
Errors SAPMigrateErrorResponse
Defines the errors related to SAP Instance resource.
Id string
The provider-assigned unique ID for this managed resource.
InstanceSid string
This is the Instance SID for ASCS/AP/DB instance. An SAP system with HANA database for example could have a different SID for database Instance than that of ASCS instance.
Name string
The name of the resource
OperatingSystem string
This is Operating System on which the host server is running.
PerformanceData ExcelPerformanceDataResponse | NativePerformanceDataResponse
Configuration data for this server instance.
ProvisioningState string
Defines the provisioning states.
SapInstanceType string
Defines the type SAP instance on this server instance.
SapProduct string
This is the SAP Application Component; e.g. SAP S/4HANA 2022, SAP ERP ENHANCE PACKAGE.
SapProductVersion string
Provide the product version of the SAP product.
ServerName string
This is the Virtual Machine Name of the SAP system. Add all the virtual machines attached to an SAP system which you wish to migrate to Azure. Keeping this not equal to ID as for single tier all InstanceTypes would be on same server, leading to multiple resources with same servername.
SystemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
configurationData ConfigurationDataResponse
Configuration data for this server instance.
errors SAPMigrateErrorResponse
Defines the errors related to SAP Instance resource.
id String
The provider-assigned unique ID for this managed resource.
instanceSid String
This is the Instance SID for ASCS/AP/DB instance. An SAP system with HANA database for example could have a different SID for database Instance than that of ASCS instance.
name String
The name of the resource
operatingSystem String
This is Operating System on which the host server is running.
performanceData ExcelPerformanceDataResponse | NativePerformanceDataResponse
Configuration data for this server instance.
provisioningState String
Defines the provisioning states.
sapInstanceType String
Defines the type SAP instance on this server instance.
sapProduct String
This is the SAP Application Component; e.g. SAP S/4HANA 2022, SAP ERP ENHANCE PACKAGE.
sapProductVersion String
Provide the product version of the SAP product.
serverName String
This is the Virtual Machine Name of the SAP system. Add all the virtual machines attached to an SAP system which you wish to migrate to Azure. Keeping this not equal to ID as for single tier all InstanceTypes would be on same server, leading to multiple resources with same servername.
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
configurationData ConfigurationDataResponse
Configuration data for this server instance.
errors SAPMigrateErrorResponse
Defines the errors related to SAP Instance resource.
id string
The provider-assigned unique ID for this managed resource.
instanceSid string
This is the Instance SID for ASCS/AP/DB instance. An SAP system with HANA database for example could have a different SID for database Instance than that of ASCS instance.
name string
The name of the resource
operatingSystem string
This is Operating System on which the host server is running.
performanceData ExcelPerformanceDataResponse | NativePerformanceDataResponse
Configuration data for this server instance.
provisioningState string
Defines the provisioning states.
sapInstanceType string
Defines the type SAP instance on this server instance.
sapProduct string
This is the SAP Application Component; e.g. SAP S/4HANA 2022, SAP ERP ENHANCE PACKAGE.
sapProductVersion string
Provide the product version of the SAP product.
serverName string
This is the Virtual Machine Name of the SAP system. Add all the virtual machines attached to an SAP system which you wish to migrate to Azure. Keeping this not equal to ID as for single tier all InstanceTypes would be on same server, leading to multiple resources with same servername.
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
configuration_data ConfigurationDataResponse
Configuration data for this server instance.
errors SAPMigrateErrorResponse
Defines the errors related to SAP Instance resource.
id str
The provider-assigned unique ID for this managed resource.
instance_sid str
This is the Instance SID for ASCS/AP/DB instance. An SAP system with HANA database for example could have a different SID for database Instance than that of ASCS instance.
name str
The name of the resource
operating_system str
This is Operating System on which the host server is running.
performance_data ExcelPerformanceDataResponse | NativePerformanceDataResponse
Configuration data for this server instance.
provisioning_state str
Defines the provisioning states.
sap_instance_type str
Defines the type SAP instance on this server instance.
sap_product str
This is the SAP Application Component; e.g. SAP S/4HANA 2022, SAP ERP ENHANCE PACKAGE.
sap_product_version str
Provide the product version of the SAP product.
server_name str
This is the Virtual Machine Name of the SAP system. Add all the virtual machines attached to an SAP system which you wish to migrate to Azure. Keeping this not equal to ID as for single tier all InstanceTypes would be on same server, leading to multiple resources with same servername.
system_data SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
configurationData Property Map
Configuration data for this server instance.
errors Property Map
Defines the errors related to SAP Instance resource.
id String
The provider-assigned unique ID for this managed resource.
instanceSid String
This is the Instance SID for ASCS/AP/DB instance. An SAP system with HANA database for example could have a different SID for database Instance than that of ASCS instance.
name String
The name of the resource
operatingSystem String
This is Operating System on which the host server is running.
performanceData Property Map | Property Map
Configuration data for this server instance.
provisioningState String
Defines the provisioning states.
sapInstanceType String
Defines the type SAP instance on this server instance.
sapProduct String
This is the SAP Application Component; e.g. SAP S/4HANA 2022, SAP ERP ENHANCE PACKAGE.
sapProductVersion String
Provide the product version of the SAP product.
serverName String
This is the Virtual Machine Name of the SAP system. Add all the virtual machines attached to an SAP system which you wish to migrate to Azure. Keeping this not equal to ID as for single tier all InstanceTypes would be on same server, leading to multiple resources with same servername.
systemData Property Map
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

ConfigurationDataResponse
, ConfigurationDataResponseArgs

Cpu This property is required. int
Provide the CPU value of the server. For example, 16, 32 etc.
CpuInMhz This property is required. int
Provide the CPU clock speed of the server in MHz. This should be a non-zero value. For example, 2100.
CpuType This property is required. string
Provide the CPU architecture type of the server. For example, Xeon Platinum 8171M, Xeon E5-2673 v3.
DatabaseType This property is required. string
The database of this is a server instance. Applicable only if SAP instance type for this server instance is 'DB'.
HardwareManufacturer This property is required. string
Provide the HW manufacturer company of the server. For example, Microsoft Corporation.
Model This property is required. string
Specify if the Hardware is a physical server or virtual machine.
Ram This property is required. int
Provide the RAM of the server. This should be a non-zero value. For example, 256.
Saps This property is required. int
Provide the SAPS for each server of the SAP system. This should be a non-zero value. For example, 1000.
TargetHanaRamSizeGB This property is required. int
Provide the target HANA database size you need. Applicable only if SAP instance type for this server instance is 'DB' and you are migrating an AnyDb database to SAP S/4HANA.
TotalDiskIops This property is required. int
Provide the total disk IOPS capacity. Add the disk volume for each individual disk and provide the sum total in this field.
TotalDiskSizeGB This property is required. int
Provide the total disk volume capacity in GB. Add the disk volume for each individual disks and provide the total sum in this field.
Cpu This property is required. int
Provide the CPU value of the server. For example, 16, 32 etc.
CpuInMhz This property is required. int
Provide the CPU clock speed of the server in MHz. This should be a non-zero value. For example, 2100.
CpuType This property is required. string
Provide the CPU architecture type of the server. For example, Xeon Platinum 8171M, Xeon E5-2673 v3.
DatabaseType This property is required. string
The database of this is a server instance. Applicable only if SAP instance type for this server instance is 'DB'.
HardwareManufacturer This property is required. string
Provide the HW manufacturer company of the server. For example, Microsoft Corporation.
Model This property is required. string
Specify if the Hardware is a physical server or virtual machine.
Ram This property is required. int
Provide the RAM of the server. This should be a non-zero value. For example, 256.
Saps This property is required. int
Provide the SAPS for each server of the SAP system. This should be a non-zero value. For example, 1000.
TargetHanaRamSizeGB This property is required. int
Provide the target HANA database size you need. Applicable only if SAP instance type for this server instance is 'DB' and you are migrating an AnyDb database to SAP S/4HANA.
TotalDiskIops This property is required. int
Provide the total disk IOPS capacity. Add the disk volume for each individual disk and provide the sum total in this field.
TotalDiskSizeGB This property is required. int
Provide the total disk volume capacity in GB. Add the disk volume for each individual disks and provide the total sum in this field.
cpu This property is required. Integer
Provide the CPU value of the server. For example, 16, 32 etc.
cpuInMhz This property is required. Integer
Provide the CPU clock speed of the server in MHz. This should be a non-zero value. For example, 2100.
cpuType This property is required. String
Provide the CPU architecture type of the server. For example, Xeon Platinum 8171M, Xeon E5-2673 v3.
databaseType This property is required. String
The database of this is a server instance. Applicable only if SAP instance type for this server instance is 'DB'.
hardwareManufacturer This property is required. String
Provide the HW manufacturer company of the server. For example, Microsoft Corporation.
model This property is required. String
Specify if the Hardware is a physical server or virtual machine.
ram This property is required. Integer
Provide the RAM of the server. This should be a non-zero value. For example, 256.
saps This property is required. Integer
Provide the SAPS for each server of the SAP system. This should be a non-zero value. For example, 1000.
targetHanaRamSizeGB This property is required. Integer
Provide the target HANA database size you need. Applicable only if SAP instance type for this server instance is 'DB' and you are migrating an AnyDb database to SAP S/4HANA.
totalDiskIops This property is required. Integer
Provide the total disk IOPS capacity. Add the disk volume for each individual disk and provide the sum total in this field.
totalDiskSizeGB This property is required. Integer
Provide the total disk volume capacity in GB. Add the disk volume for each individual disks and provide the total sum in this field.
cpu This property is required. number
Provide the CPU value of the server. For example, 16, 32 etc.
cpuInMhz This property is required. number
Provide the CPU clock speed of the server in MHz. This should be a non-zero value. For example, 2100.
cpuType This property is required. string
Provide the CPU architecture type of the server. For example, Xeon Platinum 8171M, Xeon E5-2673 v3.
databaseType This property is required. string
The database of this is a server instance. Applicable only if SAP instance type for this server instance is 'DB'.
hardwareManufacturer This property is required. string
Provide the HW manufacturer company of the server. For example, Microsoft Corporation.
model This property is required. string
Specify if the Hardware is a physical server or virtual machine.
ram This property is required. number
Provide the RAM of the server. This should be a non-zero value. For example, 256.
saps This property is required. number
Provide the SAPS for each server of the SAP system. This should be a non-zero value. For example, 1000.
targetHanaRamSizeGB This property is required. number
Provide the target HANA database size you need. Applicable only if SAP instance type for this server instance is 'DB' and you are migrating an AnyDb database to SAP S/4HANA.
totalDiskIops This property is required. number
Provide the total disk IOPS capacity. Add the disk volume for each individual disk and provide the sum total in this field.
totalDiskSizeGB This property is required. number
Provide the total disk volume capacity in GB. Add the disk volume for each individual disks and provide the total sum in this field.
cpu This property is required. int
Provide the CPU value of the server. For example, 16, 32 etc.
cpu_in_mhz This property is required. int
Provide the CPU clock speed of the server in MHz. This should be a non-zero value. For example, 2100.
cpu_type This property is required. str
Provide the CPU architecture type of the server. For example, Xeon Platinum 8171M, Xeon E5-2673 v3.
database_type This property is required. str
The database of this is a server instance. Applicable only if SAP instance type for this server instance is 'DB'.
hardware_manufacturer This property is required. str
Provide the HW manufacturer company of the server. For example, Microsoft Corporation.
model This property is required. str
Specify if the Hardware is a physical server or virtual machine.
ram This property is required. int
Provide the RAM of the server. This should be a non-zero value. For example, 256.
saps This property is required. int
Provide the SAPS for each server of the SAP system. This should be a non-zero value. For example, 1000.
target_hana_ram_size_gb This property is required. int
Provide the target HANA database size you need. Applicable only if SAP instance type for this server instance is 'DB' and you are migrating an AnyDb database to SAP S/4HANA.
total_disk_iops This property is required. int
Provide the total disk IOPS capacity. Add the disk volume for each individual disk and provide the sum total in this field.
total_disk_size_gb This property is required. int
Provide the total disk volume capacity in GB. Add the disk volume for each individual disks and provide the total sum in this field.
cpu This property is required. Number
Provide the CPU value of the server. For example, 16, 32 etc.
cpuInMhz This property is required. Number
Provide the CPU clock speed of the server in MHz. This should be a non-zero value. For example, 2100.
cpuType This property is required. String
Provide the CPU architecture type of the server. For example, Xeon Platinum 8171M, Xeon E5-2673 v3.
databaseType This property is required. String
The database of this is a server instance. Applicable only if SAP instance type for this server instance is 'DB'.
hardwareManufacturer This property is required. String
Provide the HW manufacturer company of the server. For example, Microsoft Corporation.
model This property is required. String
Specify if the Hardware is a physical server or virtual machine.
ram This property is required. Number
Provide the RAM of the server. This should be a non-zero value. For example, 256.
saps This property is required. Number
Provide the SAPS for each server of the SAP system. This should be a non-zero value. For example, 1000.
targetHanaRamSizeGB This property is required. Number
Provide the target HANA database size you need. Applicable only if SAP instance type for this server instance is 'DB' and you are migrating an AnyDb database to SAP S/4HANA.
totalDiskIops This property is required. Number
Provide the total disk IOPS capacity. Add the disk volume for each individual disk and provide the sum total in this field.
totalDiskSizeGB This property is required. Number
Provide the total disk volume capacity in GB. Add the disk volume for each individual disks and provide the total sum in this field.

ErrorDefinitionResponse
, ErrorDefinitionResponseArgs

Code This property is required. string
Service specific error code which serves as the substatus for the HTTP error code.
Details This property is required. List<Pulumi.AzureNative.Workloads.Inputs.ErrorDefinitionResponse>
Internal error details.
Message This property is required. string
Description of the error.
Recommendation This property is required. string
Description of the recommendation.
Code This property is required. string
Service specific error code which serves as the substatus for the HTTP error code.
Details This property is required. []ErrorDefinitionResponse
Internal error details.
Message This property is required. string
Description of the error.
Recommendation This property is required. string
Description of the recommendation.
code This property is required. String
Service specific error code which serves as the substatus for the HTTP error code.
details This property is required. List<ErrorDefinitionResponse>
Internal error details.
message This property is required. String
Description of the error.
recommendation This property is required. String
Description of the recommendation.
code This property is required. string
Service specific error code which serves as the substatus for the HTTP error code.
details This property is required. ErrorDefinitionResponse[]
Internal error details.
message This property is required. string
Description of the error.
recommendation This property is required. string
Description of the recommendation.
code This property is required. str
Service specific error code which serves as the substatus for the HTTP error code.
details This property is required. Sequence[ErrorDefinitionResponse]
Internal error details.
message This property is required. str
Description of the error.
recommendation This property is required. str
Description of the recommendation.
code This property is required. String
Service specific error code which serves as the substatus for the HTTP error code.
details This property is required. List<Property Map>
Internal error details.
message This property is required. String
Description of the error.
recommendation This property is required. String
Description of the recommendation.

ExcelPerformanceDataResponse
, ExcelPerformanceDataResponseArgs

MaxCpuLoad This property is required. int
Provide the max CPU percentage load on the server. Omit the percentage symbol while filling this value.
TotalSourceDbSizeGB This property is required. int
Provide the source Database size in GB. Applicable only if SAP instance type for this server instance is 'DB'.
MaxCpuLoad This property is required. int
Provide the max CPU percentage load on the server. Omit the percentage symbol while filling this value.
TotalSourceDbSizeGB This property is required. int
Provide the source Database size in GB. Applicable only if SAP instance type for this server instance is 'DB'.
maxCpuLoad This property is required. Integer
Provide the max CPU percentage load on the server. Omit the percentage symbol while filling this value.
totalSourceDbSizeGB This property is required. Integer
Provide the source Database size in GB. Applicable only if SAP instance type for this server instance is 'DB'.
maxCpuLoad This property is required. number
Provide the max CPU percentage load on the server. Omit the percentage symbol while filling this value.
totalSourceDbSizeGB This property is required. number
Provide the source Database size in GB. Applicable only if SAP instance type for this server instance is 'DB'.
max_cpu_load This property is required. int
Provide the max CPU percentage load on the server. Omit the percentage symbol while filling this value.
total_source_db_size_gb This property is required. int
Provide the source Database size in GB. Applicable only if SAP instance type for this server instance is 'DB'.
maxCpuLoad This property is required. Number
Provide the max CPU percentage load on the server. Omit the percentage symbol while filling this value.
totalSourceDbSizeGB This property is required. Number
Provide the source Database size in GB. Applicable only if SAP instance type for this server instance is 'DB'.

NativePerformanceDataResponse
, NativePerformanceDataResponseArgs

SAPMigrateErrorResponse
, SAPMigrateErrorResponseArgs

Code This property is required. string
Service specific error code which serves as the substatus for the HTTP error code.
Details This property is required. List<Pulumi.AzureNative.Workloads.Inputs.ErrorDefinitionResponse>
Internal error details.
Message This property is required. string
Description of the error.
Recommendation This property is required. string
Description of the recommendation.
Code This property is required. string
Service specific error code which serves as the substatus for the HTTP error code.
Details This property is required. []ErrorDefinitionResponse
Internal error details.
Message This property is required. string
Description of the error.
Recommendation This property is required. string
Description of the recommendation.
code This property is required. String
Service specific error code which serves as the substatus for the HTTP error code.
details This property is required. List<ErrorDefinitionResponse>
Internal error details.
message This property is required. String
Description of the error.
recommendation This property is required. String
Description of the recommendation.
code This property is required. string
Service specific error code which serves as the substatus for the HTTP error code.
details This property is required. ErrorDefinitionResponse[]
Internal error details.
message This property is required. string
Description of the error.
recommendation This property is required. string
Description of the recommendation.
code This property is required. str
Service specific error code which serves as the substatus for the HTTP error code.
details This property is required. Sequence[ErrorDefinitionResponse]
Internal error details.
message This property is required. str
Description of the error.
recommendation This property is required. str
Description of the recommendation.
code This property is required. String
Service specific error code which serves as the substatus for the HTTP error code.
details This property is required. List<Property Map>
Internal error details.
message This property is required. String
Description of the error.
recommendation This property is required. String
Description of the recommendation.

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource last modification (UTC)
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
The type of identity that last modified the resource.
created_at str
The timestamp of resource creation (UTC).
created_by str
The identity that created the resource.
created_by_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource last modification (UTC)
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:workloads:ServerInstance APP_SapServer1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Workloads/sapDiscoverySites/{sapDiscoverySiteName}/sapInstances/{sapInstanceName}/serverInstances/{serverInstanceName} 
Copy

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

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi