azure-native.workloads.ServerInstance
Define the Server Instance resource.
Uses Azure REST API version 2023-10-01-preview. In version 2.x of the Azure Native provider, it used 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",
    });
});
package main
import (
	workloads "github.com/pulumi/pulumi-azure-native-sdk/workloads/v3"
	"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
	})
}
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());
    }
}
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",
});
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")
resources:
  serverInstance:
    type: azure-native:workloads:ServerInstance
    properties:
      resourceGroupName: test-rg
      sapDiscoverySiteName: SampleSite
      sapInstanceName: MPP_MPP
      serverInstanceName: APP_SapServer1
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 string
- The unique name of the resource.
- args ServerInstanceArgs
- 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 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 string
- The unique name of the resource.
- args ServerInstanceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServerInstanceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
});
example, err := workloads.NewServerInstance(ctx, "serverInstanceResource", &workloads.ServerInstanceArgs{
	ResourceGroupName:    pulumi.String("string"),
	SapDiscoverySiteName: pulumi.String("string"),
	SapInstanceName:      pulumi.String("string"),
	ServerInstanceName:   pulumi.String("string"),
})
var serverInstanceResource = new ServerInstance("serverInstanceResource", ServerInstanceArgs.builder()
    .resourceGroupName("string")
    .sapDiscoverySiteName("string")
    .sapInstanceName("string")
    .serverInstanceName("string")
    .build());
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")
const serverInstanceResource = new azure_native.workloads.ServerInstance("serverInstanceResource", {
    resourceGroupName: "string",
    sapDiscoverySiteName: "string",
    sapInstanceName: "string",
    serverInstanceName: "string",
});
type: azure-native:workloads:ServerInstance
properties:
    resourceGroupName: string
    sapDiscoverySiteName: string
    sapInstanceName: string
    serverInstanceName: string
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:
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- SapDiscovery stringSite Name 
- The name of the discovery site resource for SAP Migration.
- SapInstance stringName 
- The name of SAP Instance resource for SAP Migration.
- ServerInstance stringName 
- The name of the Server instance resource for SAP Migration.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- SapDiscovery stringSite Name 
- The name of the discovery site resource for SAP Migration.
- SapInstance stringName 
- The name of SAP Instance resource for SAP Migration.
- ServerInstance stringName 
- The name of the Server instance resource for SAP Migration.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- sapDiscovery StringSite Name 
- The name of the discovery site resource for SAP Migration.
- sapInstance StringName 
- The name of SAP Instance resource for SAP Migration.
- serverInstance StringName 
- The name of the Server instance resource for SAP Migration.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- sapDiscovery stringSite Name 
- The name of the discovery site resource for SAP Migration.
- sapInstance stringName 
- The name of SAP Instance resource for SAP Migration.
- serverInstance stringName 
- The name of the Server instance resource for SAP Migration.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- sap_discovery_ strsite_ name 
- The name of the discovery site resource for SAP Migration.
- sap_instance_ strname 
- The name of SAP Instance resource for SAP Migration.
- server_instance_ strname 
- The name of the Server instance resource for SAP Migration.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- sapDiscovery StringSite Name 
- The name of the discovery site resource for SAP Migration.
- sapInstance StringName 
- The name of SAP Instance resource for SAP Migration.
- serverInstance StringName 
- 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:
- AzureApi stringVersion 
- The Azure API version of the resource.
- ConfigurationData Pulumi.Azure Native. Workloads. Outputs. Configuration Data Response 
- Configuration data for this server instance.
- Errors
Pulumi.Azure Native. Workloads. Outputs. SAPMigrate Error Response 
- 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.Azure | Pulumi.Native. Workloads. Outputs. Excel Performance Data Response Azure Native. Workloads. Outputs. Native Performance Data Response 
- Configuration data for this server instance.
- ProvisioningState string
- Defines the provisioning states.
- SapInstance stringType 
- 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.
- SapProduct stringVersion 
- 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.Azure Native. Workloads. Outputs. System Data Response 
- 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"
- AzureApi stringVersion 
- The Azure API version of the resource.
- ConfigurationData ConfigurationData Response 
- Configuration data for this server instance.
- Errors
SAPMigrateError Response 
- 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 ExcelPerformance | NativeData Response Performance Data Response 
- Configuration data for this server instance.
- ProvisioningState string
- Defines the provisioning states.
- SapInstance stringType 
- 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.
- SapProduct stringVersion 
- 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 SystemData Response 
- 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"
- azureApi StringVersion 
- The Azure API version of the resource.
- configurationData ConfigurationData Response 
- Configuration data for this server instance.
- errors
SAPMigrateError Response 
- 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 ExcelPerformance | NativeData Response Performance Data Response 
- Configuration data for this server instance.
- provisioningState String
- Defines the provisioning states.
- sapInstance StringType 
- 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.
- sapProduct StringVersion 
- 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 SystemData Response 
- 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"
- azureApi stringVersion 
- The Azure API version of the resource.
- configurationData ConfigurationData Response 
- Configuration data for this server instance.
- errors
SAPMigrateError Response 
- 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 ExcelPerformance | NativeData Response Performance Data Response 
- Configuration data for this server instance.
- provisioningState string
- Defines the provisioning states.
- sapInstance stringType 
- 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.
- sapProduct stringVersion 
- 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 SystemData Response 
- 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"
- azure_api_ strversion 
- The Azure API version of the resource.
- configuration_data ConfigurationData Response 
- Configuration data for this server instance.
- errors
SAPMigrateError Response 
- 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 ExcelPerformance | NativeData Response Performance Data Response 
- Configuration data for this server instance.
- provisioning_state str
- Defines the provisioning states.
- sap_instance_ strtype 
- 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_ strversion 
- 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 SystemData Response 
- 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"
- azureApi StringVersion 
- The Azure API version of the resource.
- 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.
- sapInstance StringType 
- 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.
- sapProduct StringVersion 
- 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      
The SAP instance specific configuration data.- Cpu int
- Provide the CPU value of the server. For example, 16, 32 etc.
- CpuIn intMhz 
- Provide the CPU clock speed of the server in MHz. This should be a non-zero value. For example, 2100.
- CpuType string
- Provide the CPU architecture type of the server. For example, Xeon Platinum 8171M, Xeon E5-2673 v3.
- DatabaseType string
- The database of this is a server instance. Applicable only if SAP instance type for this server instance is 'DB'.
- HardwareManufacturer string
- Provide the HW manufacturer company of the server. For example, Microsoft Corporation.
- Model string
- Specify if the Hardware is a physical server or virtual machine.
- Ram int
- Provide the RAM of the server. This should be a non-zero value. For example, 256.
- Saps int
- Provide the SAPS for each server of the SAP system. This should be a non-zero value. For example, 1000.
- TargetHana intRam Size GB 
- 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.
- TotalDisk intIops 
- Provide the total disk IOPS capacity. Add the disk volume for each individual disk and provide the sum total in this field.
- TotalDisk intSize GB 
- 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 int
- Provide the CPU value of the server. For example, 16, 32 etc.
- CpuIn intMhz 
- Provide the CPU clock speed of the server in MHz. This should be a non-zero value. For example, 2100.
- CpuType string
- Provide the CPU architecture type of the server. For example, Xeon Platinum 8171M, Xeon E5-2673 v3.
- DatabaseType string
- The database of this is a server instance. Applicable only if SAP instance type for this server instance is 'DB'.
- HardwareManufacturer string
- Provide the HW manufacturer company of the server. For example, Microsoft Corporation.
- Model string
- Specify if the Hardware is a physical server or virtual machine.
- Ram int
- Provide the RAM of the server. This should be a non-zero value. For example, 256.
- Saps int
- Provide the SAPS for each server of the SAP system. This should be a non-zero value. For example, 1000.
- TargetHana intRam Size GB 
- 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.
- TotalDisk intIops 
- Provide the total disk IOPS capacity. Add the disk volume for each individual disk and provide the sum total in this field.
- TotalDisk intSize GB 
- 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 Integer
- Provide the CPU value of the server. For example, 16, 32 etc.
- cpuIn IntegerMhz 
- Provide the CPU clock speed of the server in MHz. This should be a non-zero value. For example, 2100.
- cpuType String
- Provide the CPU architecture type of the server. For example, Xeon Platinum 8171M, Xeon E5-2673 v3.
- databaseType String
- The database of this is a server instance. Applicable only if SAP instance type for this server instance is 'DB'.
- hardwareManufacturer String
- Provide the HW manufacturer company of the server. For example, Microsoft Corporation.
- model String
- Specify if the Hardware is a physical server or virtual machine.
- ram Integer
- Provide the RAM of the server. This should be a non-zero value. For example, 256.
- saps Integer
- Provide the SAPS for each server of the SAP system. This should be a non-zero value. For example, 1000.
- targetHana IntegerRam Size GB 
- 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.
- totalDisk IntegerIops 
- Provide the total disk IOPS capacity. Add the disk volume for each individual disk and provide the sum total in this field.
- totalDisk IntegerSize GB 
- 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 number
- Provide the CPU value of the server. For example, 16, 32 etc.
- cpuIn numberMhz 
- Provide the CPU clock speed of the server in MHz. This should be a non-zero value. For example, 2100.
- cpuType string
- Provide the CPU architecture type of the server. For example, Xeon Platinum 8171M, Xeon E5-2673 v3.
- databaseType string
- The database of this is a server instance. Applicable only if SAP instance type for this server instance is 'DB'.
- hardwareManufacturer string
- Provide the HW manufacturer company of the server. For example, Microsoft Corporation.
- model string
- Specify if the Hardware is a physical server or virtual machine.
- ram number
- Provide the RAM of the server. This should be a non-zero value. For example, 256.
- saps number
- Provide the SAPS for each server of the SAP system. This should be a non-zero value. For example, 1000.
- targetHana numberRam Size GB 
- 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.
- totalDisk numberIops 
- Provide the total disk IOPS capacity. Add the disk volume for each individual disk and provide the sum total in this field.
- totalDisk numberSize GB 
- 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 int
- Provide the CPU value of the server. For example, 16, 32 etc.
- cpu_in_ intmhz 
- Provide the CPU clock speed of the server in MHz. This should be a non-zero value. For example, 2100.
- cpu_type str
- Provide the CPU architecture type of the server. For example, Xeon Platinum 8171M, Xeon E5-2673 v3.
- database_type str
- The database of this is a server instance. Applicable only if SAP instance type for this server instance is 'DB'.
- hardware_manufacturer str
- Provide the HW manufacturer company of the server. For example, Microsoft Corporation.
- model str
- Specify if the Hardware is a physical server or virtual machine.
- ram int
- Provide the RAM of the server. This should be a non-zero value. For example, 256.
- saps int
- Provide the SAPS for each server of the SAP system. This should be a non-zero value. For example, 1000.
- target_hana_ intram_ size_ gb 
- 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_ intiops 
- Provide the total disk IOPS capacity. Add the disk volume for each individual disk and provide the sum total in this field.
- total_disk_ intsize_ gb 
- 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 Number
- Provide the CPU value of the server. For example, 16, 32 etc.
- cpuIn NumberMhz 
- Provide the CPU clock speed of the server in MHz. This should be a non-zero value. For example, 2100.
- cpuType String
- Provide the CPU architecture type of the server. For example, Xeon Platinum 8171M, Xeon E5-2673 v3.
- databaseType String
- The database of this is a server instance. Applicable only if SAP instance type for this server instance is 'DB'.
- hardwareManufacturer String
- Provide the HW manufacturer company of the server. For example, Microsoft Corporation.
- model String
- Specify if the Hardware is a physical server or virtual machine.
- ram Number
- Provide the RAM of the server. This should be a non-zero value. For example, 256.
- saps Number
- Provide the SAPS for each server of the SAP system. This should be a non-zero value. For example, 1000.
- targetHana NumberRam Size GB 
- 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.
- totalDisk NumberIops 
- Provide the total disk IOPS capacity. Add the disk volume for each individual disk and provide the sum total in this field.
- totalDisk NumberSize GB 
- 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      
Error definition.- Code string
- Service specific error code which serves as the substatus for the HTTP error code.
- Details
List<Pulumi.Azure Native. Workloads. Inputs. Error Definition Response> 
- Internal error details.
- Message string
- Description of the error.
- Recommendation string
- Description of the recommendation.
- Code string
- Service specific error code which serves as the substatus for the HTTP error code.
- Details
[]ErrorDefinition Response 
- Internal error details.
- Message string
- Description of the error.
- Recommendation string
- Description of the recommendation.
- code String
- Service specific error code which serves as the substatus for the HTTP error code.
- details
List<ErrorDefinition Response> 
- Internal error details.
- message String
- Description of the error.
- recommendation String
- Description of the recommendation.
- code string
- Service specific error code which serves as the substatus for the HTTP error code.
- details
ErrorDefinition Response[] 
- Internal error details.
- message string
- Description of the error.
- recommendation string
- Description of the recommendation.
- code str
- Service specific error code which serves as the substatus for the HTTP error code.
- details
Sequence[ErrorDefinition Response] 
- Internal error details.
- message str
- Description of the error.
- recommendation str
- Description of the recommendation.
- code String
- Service specific error code which serves as the substatus for the HTTP error code.
- details List<Property Map>
- Internal error details.
- message String
- Description of the error.
- recommendation String
- Description of the recommendation.
ExcelPerformanceDataResponse, ExcelPerformanceDataResponseArgs        
The SAP instance specific performance data for Excel import.- MaxCpu intLoad 
- Provide the max CPU percentage load on the server. Omit the percentage symbol while filling this value.
- TotalSource intDb Size GB 
- Provide the source Database size in GB. Applicable only if SAP instance type for this server instance is 'DB'.
- MaxCpu intLoad 
- Provide the max CPU percentage load on the server. Omit the percentage symbol while filling this value.
- TotalSource intDb Size GB 
- Provide the source Database size in GB. Applicable only if SAP instance type for this server instance is 'DB'.
- maxCpu IntegerLoad 
- Provide the max CPU percentage load on the server. Omit the percentage symbol while filling this value.
- totalSource IntegerDb Size GB 
- Provide the source Database size in GB. Applicable only if SAP instance type for this server instance is 'DB'.
- maxCpu numberLoad 
- Provide the max CPU percentage load on the server. Omit the percentage symbol while filling this value.
- totalSource numberDb Size GB 
- Provide the source Database size in GB. Applicable only if SAP instance type for this server instance is 'DB'.
- max_cpu_ intload 
- Provide the max CPU percentage load on the server. Omit the percentage symbol while filling this value.
- total_source_ intdb_ size_ gb 
- Provide the source Database size in GB. Applicable only if SAP instance type for this server instance is 'DB'.
- maxCpu NumberLoad 
- Provide the max CPU percentage load on the server. Omit the percentage symbol while filling this value.
- totalSource NumberDb Size GB 
- Provide the source Database size in GB. Applicable only if SAP instance type for this server instance is 'DB'.
NativePerformanceDataResponse, NativePerformanceDataResponseArgs        
The SAP instance specific performance data for native discovery.SAPMigrateErrorResponse, SAPMigrateErrorResponseArgs      
An error response from the SAP migrate resources.- Code string
- Service specific error code which serves as the substatus for the HTTP error code.
- Details
List<Pulumi.Azure Native. Workloads. Inputs. Error Definition Response> 
- Internal error details.
- Message string
- Description of the error.
- Recommendation string
- Description of the recommendation.
- Code string
- Service specific error code which serves as the substatus for the HTTP error code.
- Details
[]ErrorDefinition Response 
- Internal error details.
- Message string
- Description of the error.
- Recommendation string
- Description of the recommendation.
- code String
- Service specific error code which serves as the substatus for the HTTP error code.
- details
List<ErrorDefinition Response> 
- Internal error details.
- message String
- Description of the error.
- recommendation String
- Description of the recommendation.
- code string
- Service specific error code which serves as the substatus for the HTTP error code.
- details
ErrorDefinition Response[] 
- Internal error details.
- message string
- Description of the error.
- recommendation string
- Description of the recommendation.
- code str
- Service specific error code which serves as the substatus for the HTTP error code.
- details
Sequence[ErrorDefinition Response] 
- Internal error details.
- message str
- Description of the error.
- recommendation str
- Description of the recommendation.
- code String
- Service specific error code which serves as the substatus for the HTTP error code.
- details List<Property Map>
- Internal error details.
- message String
- Description of the error.
- recommendation String
- Description of the recommendation.
SystemDataResponse, SystemDataResponseArgs      
Metadata pertaining to creation and last modification of the resource.- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- 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_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0
