1. Packages
  2. Azure Native
  3. API Docs
  4. azurearcdata
  5. SqlServerInstance
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.10.1 published on Friday, Nov 7, 2025 by Pulumi
azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.10.1 published on Friday, Nov 7, 2025 by Pulumi

    A SqlServerInstance.

    Uses Azure REST API version 2025-03-01-preview. In version 2.x of the Azure Native provider, it used API version 2023-01-15-preview.

    Other available API versions: 2023-01-15-preview, 2024-01-01, 2024-05-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native azurearcdata [ApiVersion]. See the version guide for details.

    Example Usage

    Updates a SQL Server Instance tags.

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var sqlServerInstance = new AzureNative.AzureArcData.SqlServerInstance("sqlServerInstance", new()
        {
            Location = "northeurope",
            Properties = new AzureNative.AzureArcData.Inputs.SqlServerInstancePropertiesArgs
            {
                Authentication = new AzureNative.AzureArcData.Inputs.AuthenticationArgs
                {
                    Mode = AzureNative.AzureArcData.Mode.Windows,
                    SqlServerEntraIdentity = new[]
                    {
                        new AzureNative.AzureArcData.Inputs.EntraAuthenticationArgs
                        {
                            ClientId = "00000000-1111-2222-3333-444444444444",
                            IdentityType = AzureNative.AzureArcData.IdentityType.UserAssignedManagedIdentity,
                        },
                        new AzureNative.AzureArcData.Inputs.EntraAuthenticationArgs
                        {
                            ClientId = "",
                            IdentityType = AzureNative.AzureArcData.IdentityType.SystemAssignedManagedIdentity,
                        },
                    },
                },
                BackupPolicy = new AzureNative.AzureArcData.Inputs.BackupPolicyArgs
                {
                    DifferentialBackupHours = 12,
                    FullBackupDays = 1,
                    RetentionPeriodDays = 1,
                    TransactionLogBackupMinutes = 30,
                },
                ClientConnection = new AzureNative.AzureArcData.Inputs.ClientConnectionArgs
                {
                    Enabled = false,
                },
                Cores = "4",
                Edition = AzureNative.AzureArcData.EditionType.Developer,
                HostType = AzureNative.AzureArcData.HostType.Physical_Server,
                InstanceName = "name of instance",
                Migration = new AzureNative.AzureArcData.Inputs.MigrationArgs
                {
                    Assessment = new AzureNative.AzureArcData.Inputs.MigrationAssessmentArgs
                    {
                        Enabled = false,
                    },
                },
                Monitoring = new AzureNative.AzureArcData.Inputs.MonitoringArgs
                {
                    Enabled = false,
                },
                ServiceType = AzureNative.AzureArcData.ServiceType.Engine,
                Version = AzureNative.AzureArcData.SqlVersion.SQL_Server_2012,
            },
            ResourceGroupName = "testrg",
            SqlServerInstanceName = "testsqlServerInstance",
            Tags = 
            {
                { "mytag", "myval" },
            },
        });
    
    });
    
    package main
    
    import (
    	azurearcdata "github.com/pulumi/pulumi-azure-native-sdk/azurearcdata/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := azurearcdata.NewSqlServerInstance(ctx, "sqlServerInstance", &azurearcdata.SqlServerInstanceArgs{
    			Location: pulumi.String("northeurope"),
    			Properties: &azurearcdata.SqlServerInstancePropertiesArgs{
    				Authentication: &azurearcdata.AuthenticationArgs{
    					Mode: pulumi.String(azurearcdata.ModeWindows),
    					SqlServerEntraIdentity: azurearcdata.EntraAuthenticationArray{
    						&azurearcdata.EntraAuthenticationArgs{
    							ClientId:     pulumi.String("00000000-1111-2222-3333-444444444444"),
    							IdentityType: pulumi.String(azurearcdata.IdentityTypeUserAssignedManagedIdentity),
    						},
    						&azurearcdata.EntraAuthenticationArgs{
    							ClientId:     pulumi.String(""),
    							IdentityType: pulumi.String(azurearcdata.IdentityTypeSystemAssignedManagedIdentity),
    						},
    					},
    				},
    				BackupPolicy: &azurearcdata.BackupPolicyArgs{
    					DifferentialBackupHours:     pulumi.Int(12),
    					FullBackupDays:              pulumi.Int(1),
    					RetentionPeriodDays:         pulumi.Int(1),
    					TransactionLogBackupMinutes: pulumi.Int(30),
    				},
    				ClientConnection: &azurearcdata.ClientConnectionArgs{
    					Enabled: pulumi.Bool(false),
    				},
    				Cores:        pulumi.String("4"),
    				Edition:      pulumi.String(azurearcdata.EditionTypeDeveloper),
    				HostType:     pulumi.String(azurearcdata.HostType_Physical_Server),
    				InstanceName: pulumi.String("name of instance"),
    				Migration: &azurearcdata.MigrationArgs{
    					Assessment: &azurearcdata.MigrationAssessmentArgs{
    						Enabled: pulumi.Bool(false),
    					},
    				},
    				Monitoring: &azurearcdata.MonitoringArgs{
    					Enabled: pulumi.Bool(false),
    				},
    				ServiceType: pulumi.String(azurearcdata.ServiceTypeEngine),
    				Version:     pulumi.String(azurearcdata.SqlVersion_SQL_Server_2012),
    			},
    			ResourceGroupName:     pulumi.String("testrg"),
    			SqlServerInstanceName: pulumi.String("testsqlServerInstance"),
    			Tags: pulumi.StringMap{
    				"mytag": pulumi.String("myval"),
    			},
    		})
    		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.azurearcdata.SqlServerInstance;
    import com.pulumi.azurenative.azurearcdata.SqlServerInstanceArgs;
    import com.pulumi.azurenative.azurearcdata.inputs.SqlServerInstancePropertiesArgs;
    import com.pulumi.azurenative.azurearcdata.inputs.AuthenticationArgs;
    import com.pulumi.azurenative.azurearcdata.inputs.BackupPolicyArgs;
    import com.pulumi.azurenative.azurearcdata.inputs.ClientConnectionArgs;
    import com.pulumi.azurenative.azurearcdata.inputs.MigrationArgs;
    import com.pulumi.azurenative.azurearcdata.inputs.MigrationAssessmentArgs;
    import com.pulumi.azurenative.azurearcdata.inputs.MonitoringArgs;
    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 sqlServerInstance = new SqlServerInstance("sqlServerInstance", SqlServerInstanceArgs.builder()
                .location("northeurope")
                .properties(SqlServerInstancePropertiesArgs.builder()
                    .authentication(AuthenticationArgs.builder()
                        .mode("Windows")
                        .sqlServerEntraIdentity(                    
                            EntraAuthenticationArgs.builder()
                                .clientId("00000000-1111-2222-3333-444444444444")
                                .identityType("UserAssignedManagedIdentity")
                                .build(),
                            EntraAuthenticationArgs.builder()
                                .clientId("")
                                .identityType("SystemAssignedManagedIdentity")
                                .build())
                        .build())
                    .backupPolicy(BackupPolicyArgs.builder()
                        .differentialBackupHours(12)
                        .fullBackupDays(1)
                        .retentionPeriodDays(1)
                        .transactionLogBackupMinutes(30)
                        .build())
                    .clientConnection(ClientConnectionArgs.builder()
                        .enabled(false)
                        .build())
                    .cores("4")
                    .edition("Developer")
                    .hostType("Physical Server")
                    .instanceName("name of instance")
                    .migration(MigrationArgs.builder()
                        .assessment(MigrationAssessmentArgs.builder()
                            .enabled(false)
                            .build())
                        .build())
                    .monitoring(MonitoringArgs.builder()
                        .enabled(false)
                        .build())
                    .serviceType("Engine")
                    .version("SQL Server 2012")
                    .build())
                .resourceGroupName("testrg")
                .sqlServerInstanceName("testsqlServerInstance")
                .tags(Map.of("mytag", "myval"))
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const sqlServerInstance = new azure_native.azurearcdata.SqlServerInstance("sqlServerInstance", {
        location: "northeurope",
        properties: {
            authentication: {
                mode: azure_native.azurearcdata.Mode.Windows,
                sqlServerEntraIdentity: [
                    {
                        clientId: "00000000-1111-2222-3333-444444444444",
                        identityType: azure_native.azurearcdata.IdentityType.UserAssignedManagedIdentity,
                    },
                    {
                        clientId: "",
                        identityType: azure_native.azurearcdata.IdentityType.SystemAssignedManagedIdentity,
                    },
                ],
            },
            backupPolicy: {
                differentialBackupHours: 12,
                fullBackupDays: 1,
                retentionPeriodDays: 1,
                transactionLogBackupMinutes: 30,
            },
            clientConnection: {
                enabled: false,
            },
            cores: "4",
            edition: azure_native.azurearcdata.EditionType.Developer,
            hostType: azure_native.azurearcdata.HostType.Physical_Server,
            instanceName: "name of instance",
            migration: {
                assessment: {
                    enabled: false,
                },
            },
            monitoring: {
                enabled: false,
            },
            serviceType: azure_native.azurearcdata.ServiceType.Engine,
            version: azure_native.azurearcdata.SqlVersion.SQL_Server_2012,
        },
        resourceGroupName: "testrg",
        sqlServerInstanceName: "testsqlServerInstance",
        tags: {
            mytag: "myval",
        },
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    sql_server_instance = azure_native.azurearcdata.SqlServerInstance("sqlServerInstance",
        location="northeurope",
        properties={
            "authentication": {
                "mode": azure_native.azurearcdata.Mode.WINDOWS,
                "sql_server_entra_identity": [
                    {
                        "client_id": "00000000-1111-2222-3333-444444444444",
                        "identity_type": azure_native.azurearcdata.IdentityType.USER_ASSIGNED_MANAGED_IDENTITY,
                    },
                    {
                        "client_id": "",
                        "identity_type": azure_native.azurearcdata.IdentityType.SYSTEM_ASSIGNED_MANAGED_IDENTITY,
                    },
                ],
            },
            "backup_policy": {
                "differential_backup_hours": 12,
                "full_backup_days": 1,
                "retention_period_days": 1,
                "transaction_log_backup_minutes": 30,
            },
            "client_connection": {
                "enabled": False,
            },
            "cores": "4",
            "edition": azure_native.azurearcdata.EditionType.DEVELOPER,
            "host_type": azure_native.azurearcdata.HostType.PHYSICAL_SERVER,
            "instance_name": "name of instance",
            "migration": {
                "assessment": {
                    "enabled": False,
                },
            },
            "monitoring": {
                "enabled": False,
            },
            "service_type": azure_native.azurearcdata.ServiceType.ENGINE,
            "version": azure_native.azurearcdata.SqlVersion.SQ_L_SERVER_2012,
        },
        resource_group_name="testrg",
        sql_server_instance_name="testsqlServerInstance",
        tags={
            "mytag": "myval",
        })
    
    resources:
      sqlServerInstance:
        type: azure-native:azurearcdata:SqlServerInstance
        properties:
          location: northeurope
          properties:
            authentication:
              mode: Windows
              sqlServerEntraIdentity:
                - clientId: 00000000-1111-2222-3333-444444444444
                  identityType: UserAssignedManagedIdentity
                - clientId: ""
                  identityType: SystemAssignedManagedIdentity
            backupPolicy:
              differentialBackupHours: 12
              fullBackupDays: 1
              retentionPeriodDays: 1
              transactionLogBackupMinutes: 30
            clientConnection:
              enabled: false
            cores: '4'
            edition: Developer
            hostType: Physical Server
            instanceName: name of instance
            migration:
              assessment:
                enabled: false
            monitoring:
              enabled: false
            serviceType: Engine
            version: SQL Server 2012
          resourceGroupName: testrg
          sqlServerInstanceName: testsqlServerInstance
          tags:
            mytag: myval
    

    Create SqlServerInstance Resource

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

    Constructor syntax

    new SqlServerInstance(name: string, args: SqlServerInstanceArgs, opts?: CustomResourceOptions);
    @overload
    def SqlServerInstance(resource_name: str,
                          args: SqlServerInstanceArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def SqlServerInstance(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          resource_group_name: Optional[str] = None,
                          location: Optional[str] = None,
                          properties: Optional[SqlServerInstancePropertiesArgs] = None,
                          sql_server_instance_name: Optional[str] = None,
                          tags: Optional[Mapping[str, str]] = None)
    func NewSqlServerInstance(ctx *Context, name string, args SqlServerInstanceArgs, opts ...ResourceOption) (*SqlServerInstance, error)
    public SqlServerInstance(string name, SqlServerInstanceArgs args, CustomResourceOptions? opts = null)
    public SqlServerInstance(String name, SqlServerInstanceArgs args)
    public SqlServerInstance(String name, SqlServerInstanceArgs args, CustomResourceOptions options)
    
    type: azure-native:azurearcdata:SqlServerInstance
    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 SqlServerInstanceArgs
    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 SqlServerInstanceArgs
    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 SqlServerInstanceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SqlServerInstanceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SqlServerInstanceArgs
    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 sqlServerInstanceResource = new AzureNative.AzureArcData.SqlServerInstance("sqlServerInstanceResource", new()
    {
        ResourceGroupName = "string",
        Location = "string",
        Properties = new AzureNative.AzureArcData.Inputs.SqlServerInstancePropertiesArgs
        {
            Authentication = new AzureNative.AzureArcData.Inputs.AuthenticationArgs
            {
                Mode = "string",
                SqlServerEntraIdentity = new[]
                {
                    new AzureNative.AzureArcData.Inputs.EntraAuthenticationArgs
                    {
                        ClientId = "string",
                        IdentityType = "string",
                    },
                },
            },
            BackupPolicy = new AzureNative.AzureArcData.Inputs.BackupPolicyArgs
            {
                DifferentialBackupHours = 0,
                FullBackupDays = 0,
                RetentionPeriodDays = 0,
                TransactionLogBackupMinutes = 0,
            },
            ClientConnection = new AzureNative.AzureArcData.Inputs.ClientConnectionArgs
            {
                Enabled = false,
            },
            Cores = "string",
            Edition = "string",
            HostType = "string",
            InstanceName = "string",
            Migration = new AzureNative.AzureArcData.Inputs.MigrationArgs
            {
                Assessment = new AzureNative.AzureArcData.Inputs.MigrationAssessmentArgs
                {
                    Enabled = false,
                },
            },
            Monitoring = new AzureNative.AzureArcData.Inputs.MonitoringArgs
            {
                Enabled = false,
            },
            ServiceType = "string",
            UpgradeLockedUntil = "string",
            Version = "string",
        },
        SqlServerInstanceName = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := azurearcdata.NewSqlServerInstance(ctx, "sqlServerInstanceResource", &azurearcdata.SqlServerInstanceArgs{
    	ResourceGroupName: pulumi.String("string"),
    	Location:          pulumi.String("string"),
    	Properties: &azurearcdata.SqlServerInstancePropertiesArgs{
    		Authentication: &azurearcdata.AuthenticationArgs{
    			Mode: pulumi.String("string"),
    			SqlServerEntraIdentity: azurearcdata.EntraAuthenticationArray{
    				&azurearcdata.EntraAuthenticationArgs{
    					ClientId:     pulumi.String("string"),
    					IdentityType: pulumi.String("string"),
    				},
    			},
    		},
    		BackupPolicy: &azurearcdata.BackupPolicyArgs{
    			DifferentialBackupHours:     pulumi.Int(0),
    			FullBackupDays:              pulumi.Int(0),
    			RetentionPeriodDays:         pulumi.Int(0),
    			TransactionLogBackupMinutes: pulumi.Int(0),
    		},
    		ClientConnection: &azurearcdata.ClientConnectionArgs{
    			Enabled: pulumi.Bool(false),
    		},
    		Cores:        pulumi.String("string"),
    		Edition:      pulumi.String("string"),
    		HostType:     pulumi.String("string"),
    		InstanceName: pulumi.String("string"),
    		Migration: &azurearcdata.MigrationArgs{
    			Assessment: &azurearcdata.MigrationAssessmentArgs{
    				Enabled: pulumi.Bool(false),
    			},
    		},
    		Monitoring: &azurearcdata.MonitoringArgs{
    			Enabled: pulumi.Bool(false),
    		},
    		ServiceType:        pulumi.String("string"),
    		UpgradeLockedUntil: pulumi.String("string"),
    		Version:            pulumi.String("string"),
    	},
    	SqlServerInstanceName: pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var sqlServerInstanceResource = new SqlServerInstance("sqlServerInstanceResource", SqlServerInstanceArgs.builder()
        .resourceGroupName("string")
        .location("string")
        .properties(SqlServerInstancePropertiesArgs.builder()
            .authentication(AuthenticationArgs.builder()
                .mode("string")
                .sqlServerEntraIdentity(EntraAuthenticationArgs.builder()
                    .clientId("string")
                    .identityType("string")
                    .build())
                .build())
            .backupPolicy(BackupPolicyArgs.builder()
                .differentialBackupHours(0)
                .fullBackupDays(0)
                .retentionPeriodDays(0)
                .transactionLogBackupMinutes(0)
                .build())
            .clientConnection(ClientConnectionArgs.builder()
                .enabled(false)
                .build())
            .cores("string")
            .edition("string")
            .hostType("string")
            .instanceName("string")
            .migration(MigrationArgs.builder()
                .assessment(MigrationAssessmentArgs.builder()
                    .enabled(false)
                    .build())
                .build())
            .monitoring(MonitoringArgs.builder()
                .enabled(false)
                .build())
            .serviceType("string")
            .upgradeLockedUntil("string")
            .version("string")
            .build())
        .sqlServerInstanceName("string")
        .tags(Map.of("string", "string"))
        .build());
    
    sql_server_instance_resource = azure_native.azurearcdata.SqlServerInstance("sqlServerInstanceResource",
        resource_group_name="string",
        location="string",
        properties={
            "authentication": {
                "mode": "string",
                "sql_server_entra_identity": [{
                    "client_id": "string",
                    "identity_type": "string",
                }],
            },
            "backup_policy": {
                "differential_backup_hours": 0,
                "full_backup_days": 0,
                "retention_period_days": 0,
                "transaction_log_backup_minutes": 0,
            },
            "client_connection": {
                "enabled": False,
            },
            "cores": "string",
            "edition": "string",
            "host_type": "string",
            "instance_name": "string",
            "migration": {
                "assessment": {
                    "enabled": False,
                },
            },
            "monitoring": {
                "enabled": False,
            },
            "service_type": "string",
            "upgrade_locked_until": "string",
            "version": "string",
        },
        sql_server_instance_name="string",
        tags={
            "string": "string",
        })
    
    const sqlServerInstanceResource = new azure_native.azurearcdata.SqlServerInstance("sqlServerInstanceResource", {
        resourceGroupName: "string",
        location: "string",
        properties: {
            authentication: {
                mode: "string",
                sqlServerEntraIdentity: [{
                    clientId: "string",
                    identityType: "string",
                }],
            },
            backupPolicy: {
                differentialBackupHours: 0,
                fullBackupDays: 0,
                retentionPeriodDays: 0,
                transactionLogBackupMinutes: 0,
            },
            clientConnection: {
                enabled: false,
            },
            cores: "string",
            edition: "string",
            hostType: "string",
            instanceName: "string",
            migration: {
                assessment: {
                    enabled: false,
                },
            },
            monitoring: {
                enabled: false,
            },
            serviceType: "string",
            upgradeLockedUntil: "string",
            version: "string",
        },
        sqlServerInstanceName: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:azurearcdata:SqlServerInstance
    properties:
        location: string
        properties:
            authentication:
                mode: string
                sqlServerEntraIdentity:
                    - clientId: string
                      identityType: string
            backupPolicy:
                differentialBackupHours: 0
                fullBackupDays: 0
                retentionPeriodDays: 0
                transactionLogBackupMinutes: 0
            clientConnection:
                enabled: false
            cores: string
            edition: string
            hostType: string
            instanceName: string
            migration:
                assessment:
                    enabled: false
            monitoring:
                enabled: false
            serviceType: string
            upgradeLockedUntil: string
            version: string
        resourceGroupName: string
        sqlServerInstanceName: string
        tags:
            string: string
    

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

    ResourceGroupName string
    The name of the Azure resource group
    Location string
    The geo-location where the resource lives
    Properties Pulumi.AzureNative.AzureArcData.Inputs.SqlServerInstanceProperties
    null
    SqlServerInstanceName string
    Name of SQL Server Instance
    Tags Dictionary<string, string>
    Resource tags.
    ResourceGroupName string
    The name of the Azure resource group
    Location string
    The geo-location where the resource lives
    Properties SqlServerInstancePropertiesArgs
    null
    SqlServerInstanceName string
    Name of SQL Server Instance
    Tags map[string]string
    Resource tags.
    resourceGroupName String
    The name of the Azure resource group
    location String
    The geo-location where the resource lives
    properties SqlServerInstanceProperties
    null
    sqlServerInstanceName String
    Name of SQL Server Instance
    tags Map<String,String>
    Resource tags.
    resourceGroupName string
    The name of the Azure resource group
    location string
    The geo-location where the resource lives
    properties SqlServerInstanceProperties
    null
    sqlServerInstanceName string
    Name of SQL Server Instance
    tags {[key: string]: string}
    Resource tags.
    resource_group_name str
    The name of the Azure resource group
    location str
    The geo-location where the resource lives
    properties SqlServerInstancePropertiesArgs
    null
    sql_server_instance_name str
    Name of SQL Server Instance
    tags Mapping[str, str]
    Resource tags.
    resourceGroupName String
    The name of the Azure resource group
    location String
    The geo-location where the resource lives
    properties Property Map
    null
    sqlServerInstanceName String
    Name of SQL Server Instance
    tags Map<String>
    Resource tags.

    Outputs

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

    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.AzureArcData.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"
    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    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"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    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"
    azureApiVersion string
    The Azure API version of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    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"
    azure_api_version str
    The Azure API version of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    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"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    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

    Authentication, AuthenticationArgs

    Authentication related configuration for the SQL Server Instance.
    Mode string | Pulumi.AzureNative.AzureArcData.Mode
    Mode of authentication in SqlServer.
    SqlServerEntraIdentity List<Pulumi.AzureNative.AzureArcData.Inputs.EntraAuthentication>
    Entra Authentication configuration for the SQL Server Instance.
    Mode string | Mode
    Mode of authentication in SqlServer.
    SqlServerEntraIdentity []EntraAuthentication
    Entra Authentication configuration for the SQL Server Instance.
    mode String | Mode
    Mode of authentication in SqlServer.
    sqlServerEntraIdentity List<EntraAuthentication>
    Entra Authentication configuration for the SQL Server Instance.
    mode string | Mode
    Mode of authentication in SqlServer.
    sqlServerEntraIdentity EntraAuthentication[]
    Entra Authentication configuration for the SQL Server Instance.
    mode str | Mode
    Mode of authentication in SqlServer.
    sql_server_entra_identity Sequence[EntraAuthentication]
    Entra Authentication configuration for the SQL Server Instance.
    mode String | "Mixed" | "Windows" | "Undefined"
    Mode of authentication in SqlServer.
    sqlServerEntraIdentity List<Property Map>
    Entra Authentication configuration for the SQL Server Instance.

    AuthenticationResponse, AuthenticationResponseArgs

    Authentication related configuration for the SQL Server Instance.
    Mode string
    Mode of authentication in SqlServer.
    SqlServerEntraIdentity List<Pulumi.AzureNative.AzureArcData.Inputs.EntraAuthenticationResponse>
    Entra Authentication configuration for the SQL Server Instance.
    Mode string
    Mode of authentication in SqlServer.
    SqlServerEntraIdentity []EntraAuthenticationResponse
    Entra Authentication configuration for the SQL Server Instance.
    mode String
    Mode of authentication in SqlServer.
    sqlServerEntraIdentity List<EntraAuthenticationResponse>
    Entra Authentication configuration for the SQL Server Instance.
    mode string
    Mode of authentication in SqlServer.
    sqlServerEntraIdentity EntraAuthenticationResponse[]
    Entra Authentication configuration for the SQL Server Instance.
    mode str
    Mode of authentication in SqlServer.
    sql_server_entra_identity Sequence[EntraAuthenticationResponse]
    Entra Authentication configuration for the SQL Server Instance.
    mode String
    Mode of authentication in SqlServer.
    sqlServerEntraIdentity List<Property Map>
    Entra Authentication configuration for the SQL Server Instance.

    BackupPolicy, BackupPolicyArgs

    The backup profile for the SQL server.
    DifferentialBackupHours int
    The differential backup interval in hours.
    FullBackupDays int
    The value indicating days between full backups.
    RetentionPeriodDays int
    The retention period for all the databases in this managed instance.
    TransactionLogBackupMinutes int
    The value indicating minutes between transaction log backups.
    DifferentialBackupHours int
    The differential backup interval in hours.
    FullBackupDays int
    The value indicating days between full backups.
    RetentionPeriodDays int
    The retention period for all the databases in this managed instance.
    TransactionLogBackupMinutes int
    The value indicating minutes between transaction log backups.
    differentialBackupHours Integer
    The differential backup interval in hours.
    fullBackupDays Integer
    The value indicating days between full backups.
    retentionPeriodDays Integer
    The retention period for all the databases in this managed instance.
    transactionLogBackupMinutes Integer
    The value indicating minutes between transaction log backups.
    differentialBackupHours number
    The differential backup interval in hours.
    fullBackupDays number
    The value indicating days between full backups.
    retentionPeriodDays number
    The retention period for all the databases in this managed instance.
    transactionLogBackupMinutes number
    The value indicating minutes between transaction log backups.
    differential_backup_hours int
    The differential backup interval in hours.
    full_backup_days int
    The value indicating days between full backups.
    retention_period_days int
    The retention period for all the databases in this managed instance.
    transaction_log_backup_minutes int
    The value indicating minutes between transaction log backups.
    differentialBackupHours Number
    The differential backup interval in hours.
    fullBackupDays Number
    The value indicating days between full backups.
    retentionPeriodDays Number
    The retention period for all the databases in this managed instance.
    transactionLogBackupMinutes Number
    The value indicating minutes between transaction log backups.

    BackupPolicyResponse, BackupPolicyResponseArgs

    The backup profile for the SQL server.
    DifferentialBackupHours int
    The differential backup interval in hours.
    FullBackupDays int
    The value indicating days between full backups.
    RetentionPeriodDays int
    The retention period for all the databases in this managed instance.
    TransactionLogBackupMinutes int
    The value indicating minutes between transaction log backups.
    DifferentialBackupHours int
    The differential backup interval in hours.
    FullBackupDays int
    The value indicating days between full backups.
    RetentionPeriodDays int
    The retention period for all the databases in this managed instance.
    TransactionLogBackupMinutes int
    The value indicating minutes between transaction log backups.
    differentialBackupHours Integer
    The differential backup interval in hours.
    fullBackupDays Integer
    The value indicating days between full backups.
    retentionPeriodDays Integer
    The retention period for all the databases in this managed instance.
    transactionLogBackupMinutes Integer
    The value indicating minutes between transaction log backups.
    differentialBackupHours number
    The differential backup interval in hours.
    fullBackupDays number
    The value indicating days between full backups.
    retentionPeriodDays number
    The retention period for all the databases in this managed instance.
    transactionLogBackupMinutes number
    The value indicating minutes between transaction log backups.
    differential_backup_hours int
    The differential backup interval in hours.
    full_backup_days int
    The value indicating days between full backups.
    retention_period_days int
    The retention period for all the databases in this managed instance.
    transaction_log_backup_minutes int
    The value indicating minutes between transaction log backups.
    differentialBackupHours Number
    The differential backup interval in hours.
    fullBackupDays Number
    The value indicating days between full backups.
    retentionPeriodDays Number
    The retention period for all the databases in this managed instance.
    transactionLogBackupMinutes Number
    The value indicating minutes between transaction log backups.

    ClientConnection, ClientConnectionArgs

    Client connection related configuration.
    Enabled bool
    Indicates if client connection is enabled for this SQL Server instance.
    Enabled bool
    Indicates if client connection is enabled for this SQL Server instance.
    enabled Boolean
    Indicates if client connection is enabled for this SQL Server instance.
    enabled boolean
    Indicates if client connection is enabled for this SQL Server instance.
    enabled bool
    Indicates if client connection is enabled for this SQL Server instance.
    enabled Boolean
    Indicates if client connection is enabled for this SQL Server instance.

    ClientConnectionResponse, ClientConnectionResponseArgs

    Client connection related configuration.
    Enabled bool
    Indicates if client connection is enabled for this SQL Server instance.
    Enabled bool
    Indicates if client connection is enabled for this SQL Server instance.
    enabled Boolean
    Indicates if client connection is enabled for this SQL Server instance.
    enabled boolean
    Indicates if client connection is enabled for this SQL Server instance.
    enabled bool
    Indicates if client connection is enabled for this SQL Server instance.
    enabled Boolean
    Indicates if client connection is enabled for this SQL Server instance.

    DBMEndpointResponse, DBMEndpointResponseArgs

    Database mirroring endpoint related properties.
    CertificateName string
    Name of the certificate.
    ConnectionAuth string
    The type of connection authentication required for connections to this endpoint
    EncryptionAlgorithm string
    Encryption Algorithm
    EndpointName string
    Name of the database mirroring endpoint.
    IpAddress string
    Listener IP address.
    IsDynamicPort bool
    Is the port number dynamically assigned.
    IsEncryptionEnabled bool
    Is Encryption enabled
    Port int
    The port number that the endpoint is listening on.
    Role string
    Mirroring Role
    CertificateName string
    Name of the certificate.
    ConnectionAuth string
    The type of connection authentication required for connections to this endpoint
    EncryptionAlgorithm string
    Encryption Algorithm
    EndpointName string
    Name of the database mirroring endpoint.
    IpAddress string
    Listener IP address.
    IsDynamicPort bool
    Is the port number dynamically assigned.
    IsEncryptionEnabled bool
    Is Encryption enabled
    Port int
    The port number that the endpoint is listening on.
    Role string
    Mirroring Role
    certificateName String
    Name of the certificate.
    connectionAuth String
    The type of connection authentication required for connections to this endpoint
    encryptionAlgorithm String
    Encryption Algorithm
    endpointName String
    Name of the database mirroring endpoint.
    ipAddress String
    Listener IP address.
    isDynamicPort Boolean
    Is the port number dynamically assigned.
    isEncryptionEnabled Boolean
    Is Encryption enabled
    port Integer
    The port number that the endpoint is listening on.
    role String
    Mirroring Role
    certificateName string
    Name of the certificate.
    connectionAuth string
    The type of connection authentication required for connections to this endpoint
    encryptionAlgorithm string
    Encryption Algorithm
    endpointName string
    Name of the database mirroring endpoint.
    ipAddress string
    Listener IP address.
    isDynamicPort boolean
    Is the port number dynamically assigned.
    isEncryptionEnabled boolean
    Is Encryption enabled
    port number
    The port number that the endpoint is listening on.
    role string
    Mirroring Role
    certificate_name str
    Name of the certificate.
    connection_auth str
    The type of connection authentication required for connections to this endpoint
    encryption_algorithm str
    Encryption Algorithm
    endpoint_name str
    Name of the database mirroring endpoint.
    ip_address str
    Listener IP address.
    is_dynamic_port bool
    Is the port number dynamically assigned.
    is_encryption_enabled bool
    Is Encryption enabled
    port int
    The port number that the endpoint is listening on.
    role str
    Mirroring Role
    certificateName String
    Name of the certificate.
    connectionAuth String
    The type of connection authentication required for connections to this endpoint
    encryptionAlgorithm String
    Encryption Algorithm
    endpointName String
    Name of the database mirroring endpoint.
    ipAddress String
    Listener IP address.
    isDynamicPort Boolean
    Is the port number dynamically assigned.
    isEncryptionEnabled Boolean
    Is Encryption enabled
    port Number
    The port number that the endpoint is listening on.
    role String
    Mirroring Role

    EditionType, EditionTypeArgs

    Evaluation
    Evaluation
    Enterprise
    Enterprise
    Standard
    Standard
    Web
    Web
    Developer
    Developer
    Express
    Express
    Business_Intelligence
    Business Intelligence
    EditionTypeEvaluation
    Evaluation
    EditionTypeEnterprise
    Enterprise
    EditionTypeStandard
    Standard
    EditionTypeWeb
    Web
    EditionTypeDeveloper
    Developer
    EditionTypeExpress
    Express
    EditionType_Business_Intelligence
    Business Intelligence
    Evaluation
    Evaluation
    Enterprise
    Enterprise
    Standard
    Standard
    Web
    Web
    Developer
    Developer
    Express
    Express
    Business_Intelligence
    Business Intelligence
    Evaluation
    Evaluation
    Enterprise
    Enterprise
    Standard
    Standard
    Web
    Web
    Developer
    Developer
    Express
    Express
    Business_Intelligence
    Business Intelligence
    EVALUATION
    Evaluation
    ENTERPRISE
    Enterprise
    STANDARD
    Standard
    WEB
    Web
    DEVELOPER
    Developer
    EXPRESS
    Express
    BUSINESS_INTELLIGENCE
    Business Intelligence
    "Evaluation"
    Evaluation
    "Enterprise"
    Enterprise
    "Standard"
    Standard
    "Web"
    Web
    "Developer"
    Developer
    "Express"
    Express
    "Business Intelligence"
    Business Intelligence

    EntraAuthentication, EntraAuthenticationArgs

    Entra Authentication configuration.
    ClientId string
    The client Id of the Managed Identity to query Microsoft Graph API. An empty string must be used for the system assigned Managed Identity.
    IdentityType string | Pulumi.AzureNative.AzureArcData.IdentityType
    The method used for Entra authentication
    ClientId string
    The client Id of the Managed Identity to query Microsoft Graph API. An empty string must be used for the system assigned Managed Identity.
    IdentityType string | IdentityType
    The method used for Entra authentication
    clientId String
    The client Id of the Managed Identity to query Microsoft Graph API. An empty string must be used for the system assigned Managed Identity.
    identityType String | IdentityType
    The method used for Entra authentication
    clientId string
    The client Id of the Managed Identity to query Microsoft Graph API. An empty string must be used for the system assigned Managed Identity.
    identityType string | IdentityType
    The method used for Entra authentication
    client_id str
    The client Id of the Managed Identity to query Microsoft Graph API. An empty string must be used for the system assigned Managed Identity.
    identity_type str | IdentityType
    The method used for Entra authentication
    clientId String
    The client Id of the Managed Identity to query Microsoft Graph API. An empty string must be used for the system assigned Managed Identity.
    identityType String | "SystemAssignedManagedIdentity" | "UserAssignedManagedIdentity"
    The method used for Entra authentication

    EntraAuthenticationResponse, EntraAuthenticationResponseArgs

    Entra Authentication configuration.
    ClientId string
    The client Id of the Managed Identity to query Microsoft Graph API. An empty string must be used for the system assigned Managed Identity.
    IdentityType string
    The method used for Entra authentication
    ClientId string
    The client Id of the Managed Identity to query Microsoft Graph API. An empty string must be used for the system assigned Managed Identity.
    IdentityType string
    The method used for Entra authentication
    clientId String
    The client Id of the Managed Identity to query Microsoft Graph API. An empty string must be used for the system assigned Managed Identity.
    identityType String
    The method used for Entra authentication
    clientId string
    The client Id of the Managed Identity to query Microsoft Graph API. An empty string must be used for the system assigned Managed Identity.
    identityType string
    The method used for Entra authentication
    client_id str
    The client Id of the Managed Identity to query Microsoft Graph API. An empty string must be used for the system assigned Managed Identity.
    identity_type str
    The method used for Entra authentication
    clientId String
    The client Id of the Managed Identity to query Microsoft Graph API. An empty string must be used for the system assigned Managed Identity.
    identityType String
    The method used for Entra authentication

    FailoverClusterResponse, FailoverClusterResponseArgs

    Failover Cluster Instance properties.
    HostIPAddresses List<Pulumi.AzureNative.AzureArcData.Inputs.HostIPAddressInformationResponse>
    The IP addresses and subnet masks associated with the SQL Failover Cluster Instance on this host.
    HostNames List<string>
    The host names which are part of the SQL FCI resource group.
    Id string
    The GUID of the SQL Server's underlying Failover Cluster.
    NetworkName string
    The network name to connect to the SQL FCI.
    SqlInstanceIds List<string>
    The ARM IDs of the Arc SQL Server resources, belonging to the current server's Failover cluster.
    HostIPAddresses []HostIPAddressInformationResponse
    The IP addresses and subnet masks associated with the SQL Failover Cluster Instance on this host.
    HostNames []string
    The host names which are part of the SQL FCI resource group.
    Id string
    The GUID of the SQL Server's underlying Failover Cluster.
    NetworkName string
    The network name to connect to the SQL FCI.
    SqlInstanceIds []string
    The ARM IDs of the Arc SQL Server resources, belonging to the current server's Failover cluster.
    hostIPAddresses List<HostIPAddressInformationResponse>
    The IP addresses and subnet masks associated with the SQL Failover Cluster Instance on this host.
    hostNames List<String>
    The host names which are part of the SQL FCI resource group.
    id String
    The GUID of the SQL Server's underlying Failover Cluster.
    networkName String
    The network name to connect to the SQL FCI.
    sqlInstanceIds List<String>
    The ARM IDs of the Arc SQL Server resources, belonging to the current server's Failover cluster.
    hostIPAddresses HostIPAddressInformationResponse[]
    The IP addresses and subnet masks associated with the SQL Failover Cluster Instance on this host.
    hostNames string[]
    The host names which are part of the SQL FCI resource group.
    id string
    The GUID of the SQL Server's underlying Failover Cluster.
    networkName string
    The network name to connect to the SQL FCI.
    sqlInstanceIds string[]
    The ARM IDs of the Arc SQL Server resources, belonging to the current server's Failover cluster.
    host_ip_addresses Sequence[HostIPAddressInformationResponse]
    The IP addresses and subnet masks associated with the SQL Failover Cluster Instance on this host.
    host_names Sequence[str]
    The host names which are part of the SQL FCI resource group.
    id str
    The GUID of the SQL Server's underlying Failover Cluster.
    network_name str
    The network name to connect to the SQL FCI.
    sql_instance_ids Sequence[str]
    The ARM IDs of the Arc SQL Server resources, belonging to the current server's Failover cluster.
    hostIPAddresses List<Property Map>
    The IP addresses and subnet masks associated with the SQL Failover Cluster Instance on this host.
    hostNames List<String>
    The host names which are part of the SQL FCI resource group.
    id String
    The GUID of the SQL Server's underlying Failover Cluster.
    networkName String
    The network name to connect to the SQL FCI.
    sqlInstanceIds List<String>
    The ARM IDs of the Arc SQL Server resources, belonging to the current server's Failover cluster.

    HostIPAddressInformationResponse, HostIPAddressInformationResponseArgs

    IP address and subnet mask.
    IpAddress string
    IP address
    SubnetMask string
    Subnet mask
    IpAddress string
    IP address
    SubnetMask string
    Subnet mask
    ipAddress String
    IP address
    subnetMask String
    Subnet mask
    ipAddress string
    IP address
    subnetMask string
    Subnet mask
    ip_address str
    IP address
    subnet_mask str
    Subnet mask
    ipAddress String
    IP address
    subnetMask String
    Subnet mask

    HostType, HostTypeArgs

    Azure_Virtual_Machine
    Azure Virtual Machine
    Azure_VMWare_Virtual_Machine
    Azure VMWare Virtual Machine
    Azure_Kubernetes_Service
    Azure Kubernetes Service
    AWS_VMWare_Virtual_Machine
    AWS VMWare Virtual Machine
    AWS_Kubernetes_Service
    AWS Kubernetes Service
    GCP_VMWare_Virtual_Machine
    GCP VMWare Virtual Machine
    GCP_Kubernetes_Service
    GCP Kubernetes Service
    Container
    Container
    Virtual_Machine
    Virtual Machine
    Physical_Server
    Physical Server
    AWS_Virtual_Machine
    AWS Virtual Machine
    GCP_Virtual_Machine
    GCP Virtual Machine
    Other
    Other
    HostType_Azure_Virtual_Machine
    Azure Virtual Machine
    HostType_Azure_VMWare_Virtual_Machine
    Azure VMWare Virtual Machine
    HostType_Azure_Kubernetes_Service
    Azure Kubernetes Service
    HostType_AWS_VMWare_Virtual_Machine
    AWS VMWare Virtual Machine
    HostType_AWS_Kubernetes_Service
    AWS Kubernetes Service
    HostType_GCP_VMWare_Virtual_Machine
    GCP VMWare Virtual Machine
    HostType_GCP_Kubernetes_Service
    GCP Kubernetes Service
    HostTypeContainer
    Container
    HostType_Virtual_Machine
    Virtual Machine
    HostType_Physical_Server
    Physical Server
    HostType_AWS_Virtual_Machine
    AWS Virtual Machine
    HostType_GCP_Virtual_Machine
    GCP Virtual Machine
    HostTypeOther
    Other
    Azure_Virtual_Machine
    Azure Virtual Machine
    Azure_VMWare_Virtual_Machine
    Azure VMWare Virtual Machine
    Azure_Kubernetes_Service
    Azure Kubernetes Service
    AWS_VMWare_Virtual_Machine
    AWS VMWare Virtual Machine
    AWS_Kubernetes_Service
    AWS Kubernetes Service
    GCP_VMWare_Virtual_Machine
    GCP VMWare Virtual Machine
    GCP_Kubernetes_Service
    GCP Kubernetes Service
    Container
    Container
    Virtual_Machine
    Virtual Machine
    Physical_Server
    Physical Server
    AWS_Virtual_Machine
    AWS Virtual Machine
    GCP_Virtual_Machine
    GCP Virtual Machine
    Other
    Other
    Azure_Virtual_Machine
    Azure Virtual Machine
    Azure_VMWare_Virtual_Machine
    Azure VMWare Virtual Machine
    Azure_Kubernetes_Service
    Azure Kubernetes Service
    AWS_VMWare_Virtual_Machine
    AWS VMWare Virtual Machine
    AWS_Kubernetes_Service
    AWS Kubernetes Service
    GCP_VMWare_Virtual_Machine
    GCP VMWare Virtual Machine
    GCP_Kubernetes_Service
    GCP Kubernetes Service
    Container
    Container
    Virtual_Machine
    Virtual Machine
    Physical_Server
    Physical Server
    AWS_Virtual_Machine
    AWS Virtual Machine
    GCP_Virtual_Machine
    GCP Virtual Machine
    Other
    Other
    AZURE_VIRTUAL_MACHINE
    Azure Virtual Machine
    AZURE_VM_WARE_VIRTUAL_MACHINE
    Azure VMWare Virtual Machine
    AZURE_KUBERNETES_SERVICE
    Azure Kubernetes Service
    AW_S_VM_WARE_VIRTUAL_MACHINE
    AWS VMWare Virtual Machine
    AW_S_KUBERNETES_SERVICE
    AWS Kubernetes Service
    GC_P_VM_WARE_VIRTUAL_MACHINE
    GCP VMWare Virtual Machine
    GC_P_KUBERNETES_SERVICE
    GCP Kubernetes Service
    CONTAINER
    Container
    VIRTUAL_MACHINE
    Virtual Machine
    PHYSICAL_SERVER
    Physical Server
    AW_S_VIRTUAL_MACHINE
    AWS Virtual Machine
    GC_P_VIRTUAL_MACHINE
    GCP Virtual Machine
    OTHER
    Other
    "Azure Virtual Machine"
    Azure Virtual Machine
    "Azure VMWare Virtual Machine"
    Azure VMWare Virtual Machine
    "Azure Kubernetes Service"
    Azure Kubernetes Service
    "AWS VMWare Virtual Machine"
    AWS VMWare Virtual Machine
    "AWS Kubernetes Service"
    AWS Kubernetes Service
    "GCP VMWare Virtual Machine"
    GCP VMWare Virtual Machine
    "GCP Kubernetes Service"
    GCP Kubernetes Service
    "Container"
    Container
    "Virtual Machine"
    Virtual Machine
    "Physical Server"
    Physical Server
    "AWS Virtual Machine"
    AWS Virtual Machine
    "GCP Virtual Machine"
    GCP Virtual Machine
    "Other"
    Other

    IdentityType, IdentityTypeArgs

    SystemAssignedManagedIdentity
    SystemAssignedManagedIdentitySystem Assigned Managed Identity
    UserAssignedManagedIdentity
    UserAssignedManagedIdentityUser Assigned Managed Identity
    IdentityTypeSystemAssignedManagedIdentity
    SystemAssignedManagedIdentitySystem Assigned Managed Identity
    IdentityTypeUserAssignedManagedIdentity
    UserAssignedManagedIdentityUser Assigned Managed Identity
    SystemAssignedManagedIdentity
    SystemAssignedManagedIdentitySystem Assigned Managed Identity
    UserAssignedManagedIdentity
    UserAssignedManagedIdentityUser Assigned Managed Identity
    SystemAssignedManagedIdentity
    SystemAssignedManagedIdentitySystem Assigned Managed Identity
    UserAssignedManagedIdentity
    UserAssignedManagedIdentityUser Assigned Managed Identity
    SYSTEM_ASSIGNED_MANAGED_IDENTITY
    SystemAssignedManagedIdentitySystem Assigned Managed Identity
    USER_ASSIGNED_MANAGED_IDENTITY
    UserAssignedManagedIdentityUser Assigned Managed Identity
    "SystemAssignedManagedIdentity"
    SystemAssignedManagedIdentitySystem Assigned Managed Identity
    "UserAssignedManagedIdentity"
    UserAssignedManagedIdentityUser Assigned Managed Identity

    Migration, MigrationArgs

    Migration related configuration.
    Assessment MigrationAssessment
    Migration assessments related configuration.
    assessment MigrationAssessment
    Migration assessments related configuration.
    assessment MigrationAssessment
    Migration assessments related configuration.
    assessment MigrationAssessment
    Migration assessments related configuration.
    assessment Property Map
    Migration assessments related configuration.

    MigrationAssessment, MigrationAssessmentArgs

    The migration assessment related configuration.
    Enabled bool
    Indicates if migration assessment is enabled for this SQL Server instance.
    Enabled bool
    Indicates if migration assessment is enabled for this SQL Server instance.
    enabled Boolean
    Indicates if migration assessment is enabled for this SQL Server instance.
    enabled boolean
    Indicates if migration assessment is enabled for this SQL Server instance.
    enabled bool
    Indicates if migration assessment is enabled for this SQL Server instance.
    enabled Boolean
    Indicates if migration assessment is enabled for this SQL Server instance.

    MigrationAssessmentResponse, MigrationAssessmentResponseArgs

    The migration assessment related configuration.
    AssessmentUploadTime string
    The time when Migration Assessment Report upload was last performed.
    ServerAssessments List<Pulumi.AzureNative.AzureArcData.Inputs.MigrationAssessmentResponseServerAssessments>
    Issues and warnings impacting the migration of SQL Server instance to particular Azure Migration Target.
    SkuRecommendationResults Pulumi.AzureNative.AzureArcData.Inputs.SkuRecommendationResultsResponse
    SKU Recommendation results for Azure migration targets for SQL Server.
    Enabled bool
    Indicates if migration assessment is enabled for this SQL Server instance.
    AssessmentUploadTime string
    The time when Migration Assessment Report upload was last performed.
    ServerAssessments []MigrationAssessmentResponseServerAssessments
    Issues and warnings impacting the migration of SQL Server instance to particular Azure Migration Target.
    SkuRecommendationResults SkuRecommendationResultsResponse
    SKU Recommendation results for Azure migration targets for SQL Server.
    Enabled bool
    Indicates if migration assessment is enabled for this SQL Server instance.
    assessmentUploadTime String
    The time when Migration Assessment Report upload was last performed.
    serverAssessments List<MigrationAssessmentResponseServerAssessments>
    Issues and warnings impacting the migration of SQL Server instance to particular Azure Migration Target.
    skuRecommendationResults SkuRecommendationResultsResponse
    SKU Recommendation results for Azure migration targets for SQL Server.
    enabled Boolean
    Indicates if migration assessment is enabled for this SQL Server instance.
    assessmentUploadTime string
    The time when Migration Assessment Report upload was last performed.
    serverAssessments MigrationAssessmentResponseServerAssessments[]
    Issues and warnings impacting the migration of SQL Server instance to particular Azure Migration Target.
    skuRecommendationResults SkuRecommendationResultsResponse
    SKU Recommendation results for Azure migration targets for SQL Server.
    enabled boolean
    Indicates if migration assessment is enabled for this SQL Server instance.
    assessment_upload_time str
    The time when Migration Assessment Report upload was last performed.
    server_assessments Sequence[MigrationAssessmentResponseServerAssessments]
    Issues and warnings impacting the migration of SQL Server instance to particular Azure Migration Target.
    sku_recommendation_results SkuRecommendationResultsResponse
    SKU Recommendation results for Azure migration targets for SQL Server.
    enabled bool
    Indicates if migration assessment is enabled for this SQL Server instance.
    assessmentUploadTime String
    The time when Migration Assessment Report upload was last performed.
    serverAssessments List<Property Map>
    Issues and warnings impacting the migration of SQL Server instance to particular Azure Migration Target.
    skuRecommendationResults Property Map
    SKU Recommendation results for Azure migration targets for SQL Server.
    enabled Boolean
    Indicates if migration assessment is enabled for this SQL Server instance.

    MigrationAssessmentResponseImpactedObjects, MigrationAssessmentResponseImpactedObjectsArgs

    ImpactDetail string
    Name string
    ObjectType string
    ImpactDetail string
    Name string
    ObjectType string
    impactDetail String
    name String
    objectType String
    impactDetail string
    name string
    objectType string
    impactDetail String
    name String
    objectType String

    MigrationAssessmentResponseServerAssessments, MigrationAssessmentResponseServerAssessmentsArgs

    MigrationResponse, MigrationResponseArgs

    Migration related configuration.
    Assessment MigrationAssessmentResponse
    Migration assessments related configuration.
    assessment MigrationAssessmentResponse
    Migration assessments related configuration.
    assessment MigrationAssessmentResponse
    Migration assessments related configuration.
    assessment MigrationAssessmentResponse
    Migration assessments related configuration.
    assessment Property Map
    Migration assessments related configuration.

    Mode, ModeArgs

    Mixed
    MixedMixed mode authentication for SQL Server which includes windows and SQL Authentication.
    Windows
    WindowsWindows Authentication for SQL Server.
    Undefined
    UndefinedUsed for scenarios were the mode cannot be determined.
    ModeMixed
    MixedMixed mode authentication for SQL Server which includes windows and SQL Authentication.
    ModeWindows
    WindowsWindows Authentication for SQL Server.
    ModeUndefined
    UndefinedUsed for scenarios were the mode cannot be determined.
    Mixed
    MixedMixed mode authentication for SQL Server which includes windows and SQL Authentication.
    Windows
    WindowsWindows Authentication for SQL Server.
    Undefined
    UndefinedUsed for scenarios were the mode cannot be determined.
    Mixed
    MixedMixed mode authentication for SQL Server which includes windows and SQL Authentication.
    Windows
    WindowsWindows Authentication for SQL Server.
    Undefined
    UndefinedUsed for scenarios were the mode cannot be determined.
    MIXED
    MixedMixed mode authentication for SQL Server which includes windows and SQL Authentication.
    WINDOWS
    WindowsWindows Authentication for SQL Server.
    UNDEFINED
    UndefinedUsed for scenarios were the mode cannot be determined.
    "Mixed"
    MixedMixed mode authentication for SQL Server which includes windows and SQL Authentication.
    "Windows"
    WindowsWindows Authentication for SQL Server.
    "Undefined"
    UndefinedUsed for scenarios were the mode cannot be determined.

    Monitoring, MonitoringArgs

    The monitoring configuration.
    Enabled bool
    Indicates if monitoring is enabled for this SQL Server instance.
    Enabled bool
    Indicates if monitoring is enabled for this SQL Server instance.
    enabled Boolean
    Indicates if monitoring is enabled for this SQL Server instance.
    enabled boolean
    Indicates if monitoring is enabled for this SQL Server instance.
    enabled bool
    Indicates if monitoring is enabled for this SQL Server instance.
    enabled Boolean
    Indicates if monitoring is enabled for this SQL Server instance.

    MonitoringResponse, MonitoringResponseArgs

    The monitoring configuration.
    Enabled bool
    Indicates if monitoring is enabled for this SQL Server instance.
    Enabled bool
    Indicates if monitoring is enabled for this SQL Server instance.
    enabled Boolean
    Indicates if monitoring is enabled for this SQL Server instance.
    enabled boolean
    Indicates if monitoring is enabled for this SQL Server instance.
    enabled bool
    Indicates if monitoring is enabled for this SQL Server instance.
    enabled Boolean
    Indicates if monitoring is enabled for this SQL Server instance.

    ServiceType, ServiceTypeArgs

    Engine
    EngineSQL Server Database Services.
    SSRS
    SSRSSQL Server Reporting Services.
    SSAS
    SSASSQL Server Analysis Services.
    SSIS
    SSISSQL Server Integration Services.
    PBIRS
    PBIRSPower BI Report Server.
    ServiceTypeEngine
    EngineSQL Server Database Services.
    ServiceTypeSSRS
    SSRSSQL Server Reporting Services.
    ServiceTypeSSAS
    SSASSQL Server Analysis Services.
    ServiceTypeSSIS
    SSISSQL Server Integration Services.
    ServiceTypePBIRS
    PBIRSPower BI Report Server.
    Engine
    EngineSQL Server Database Services.
    SSRS
    SSRSSQL Server Reporting Services.
    SSAS
    SSASSQL Server Analysis Services.
    SSIS
    SSISSQL Server Integration Services.
    PBIRS
    PBIRSPower BI Report Server.
    Engine
    EngineSQL Server Database Services.
    SSRS
    SSRSSQL Server Reporting Services.
    SSAS
    SSASSQL Server Analysis Services.
    SSIS
    SSISSQL Server Integration Services.
    PBIRS
    PBIRSPower BI Report Server.
    ENGINE
    EngineSQL Server Database Services.
    SSRS
    SSRSSQL Server Reporting Services.
    SSAS
    SSASSQL Server Analysis Services.
    SSIS
    SSISSQL Server Integration Services.
    PBIRS
    PBIRSPower BI Report Server.
    "Engine"
    EngineSQL Server Database Services.
    "SSRS"
    SSRSSQL Server Reporting Services.
    "SSAS"
    SSASSQL Server Analysis Services.
    "SSIS"
    SSISSQL Server Integration Services.
    "PBIRS"
    PBIRSPower BI Report Server.

    SkuRecommendationResultsAzureSqlDatabaseResponse, SkuRecommendationResultsAzureSqlDatabaseResponseArgs

    SKU Recommendation results for Azure SQL Database.
    MonthlyCost Pulumi.AzureNative.AzureArcData.Inputs.SkuRecommendationResultsMonthlyCostResponse
    The Monthly cost of the particular SKU.
    NumberOfServerBlockerIssues int
    Number of blocker issues to fix before migrating to the target platform.
    RecommendationStatus string
    The target recommendation Status for this database.
    TargetSku Pulumi.AzureNative.AzureArcData.Inputs.SkuRecommendationResultsAzureSqlDatabaseResponseTargetSku
    MonthlyCost SkuRecommendationResultsMonthlyCostResponse
    The Monthly cost of the particular SKU.
    NumberOfServerBlockerIssues int
    Number of blocker issues to fix before migrating to the target platform.
    RecommendationStatus string
    The target recommendation Status for this database.
    TargetSku SkuRecommendationResultsAzureSqlDatabaseResponseTargetSku
    monthlyCost SkuRecommendationResultsMonthlyCostResponse
    The Monthly cost of the particular SKU.
    numberOfServerBlockerIssues Integer
    Number of blocker issues to fix before migrating to the target platform.
    recommendationStatus String
    The target recommendation Status for this database.
    targetSku SkuRecommendationResultsAzureSqlDatabaseResponseTargetSku
    monthlyCost SkuRecommendationResultsMonthlyCostResponse
    The Monthly cost of the particular SKU.
    numberOfServerBlockerIssues number
    Number of blocker issues to fix before migrating to the target platform.
    recommendationStatus string
    The target recommendation Status for this database.
    targetSku SkuRecommendationResultsAzureSqlDatabaseResponseTargetSku
    monthly_cost SkuRecommendationResultsMonthlyCostResponse
    The Monthly cost of the particular SKU.
    number_of_server_blocker_issues int
    Number of blocker issues to fix before migrating to the target platform.
    recommendation_status str
    The target recommendation Status for this database.
    target_sku SkuRecommendationResultsAzureSqlDatabaseResponseTargetSku
    monthlyCost Property Map
    The Monthly cost of the particular SKU.
    numberOfServerBlockerIssues Number
    Number of blocker issues to fix before migrating to the target platform.
    recommendationStatus String
    The target recommendation Status for this database.
    targetSku Property Map

    SkuRecommendationResultsAzureSqlDatabaseResponseCategory, SkuRecommendationResultsAzureSqlDatabaseResponseCategoryArgs

    ComputeTier string
    The compute tier of the target SKU.
    HardwareType string
    The hardware type of the target SKU.
    SqlPurchasingModel string
    The SQL purchasing model of the target SKU.
    SqlServiceTier string
    The SQL service tier of the target SKU.
    ZoneRedundancyAvailable bool
    Indicates if zone redundancy is available for the target SKU.
    ComputeTier string
    The compute tier of the target SKU.
    HardwareType string
    The hardware type of the target SKU.
    SqlPurchasingModel string
    The SQL purchasing model of the target SKU.
    SqlServiceTier string
    The SQL service tier of the target SKU.
    ZoneRedundancyAvailable bool
    Indicates if zone redundancy is available for the target SKU.
    computeTier String
    The compute tier of the target SKU.
    hardwareType String
    The hardware type of the target SKU.
    sqlPurchasingModel String
    The SQL purchasing model of the target SKU.
    sqlServiceTier String
    The SQL service tier of the target SKU.
    zoneRedundancyAvailable Boolean
    Indicates if zone redundancy is available for the target SKU.
    computeTier string
    The compute tier of the target SKU.
    hardwareType string
    The hardware type of the target SKU.
    sqlPurchasingModel string
    The SQL purchasing model of the target SKU.
    sqlServiceTier string
    The SQL service tier of the target SKU.
    zoneRedundancyAvailable boolean
    Indicates if zone redundancy is available for the target SKU.
    compute_tier str
    The compute tier of the target SKU.
    hardware_type str
    The hardware type of the target SKU.
    sql_purchasing_model str
    The SQL purchasing model of the target SKU.
    sql_service_tier str
    The SQL service tier of the target SKU.
    zone_redundancy_available bool
    Indicates if zone redundancy is available for the target SKU.
    computeTier String
    The compute tier of the target SKU.
    hardwareType String
    The hardware type of the target SKU.
    sqlPurchasingModel String
    The SQL purchasing model of the target SKU.
    sqlServiceTier String
    The SQL service tier of the target SKU.
    zoneRedundancyAvailable Boolean
    Indicates if zone redundancy is available for the target SKU.

    SkuRecommendationResultsAzureSqlDatabaseResponseTargetSku, SkuRecommendationResultsAzureSqlDatabaseResponseTargetSkuArgs

    SkuRecommendationResultsAzureSqlManagedInstanceResponse, SkuRecommendationResultsAzureSqlManagedInstanceResponseArgs

    SKU Recommendation results for Azure SQL Managed Instance.
    MonthlyCost Pulumi.AzureNative.AzureArcData.Inputs.SkuRecommendationResultsMonthlyCostResponse
    The Monthly cost of the particular SKU.
    NumberOfServerBlockerIssues int
    Number of blocker issues to fix before migrating to the target platform.
    RecommendationStatus string
    The target recommendation Status for this database.
    TargetSku Pulumi.AzureNative.AzureArcData.Inputs.SkuRecommendationResultsAzureSqlManagedInstanceResponseTargetSku
    MonthlyCost SkuRecommendationResultsMonthlyCostResponse
    The Monthly cost of the particular SKU.
    NumberOfServerBlockerIssues int
    Number of blocker issues to fix before migrating to the target platform.
    RecommendationStatus string
    The target recommendation Status for this database.
    TargetSku SkuRecommendationResultsAzureSqlManagedInstanceResponseTargetSku
    monthlyCost SkuRecommendationResultsMonthlyCostResponse
    The Monthly cost of the particular SKU.
    numberOfServerBlockerIssues Integer
    Number of blocker issues to fix before migrating to the target platform.
    recommendationStatus String
    The target recommendation Status for this database.
    targetSku SkuRecommendationResultsAzureSqlManagedInstanceResponseTargetSku
    monthlyCost SkuRecommendationResultsMonthlyCostResponse
    The Monthly cost of the particular SKU.
    numberOfServerBlockerIssues number
    Number of blocker issues to fix before migrating to the target platform.
    recommendationStatus string
    The target recommendation Status for this database.
    targetSku SkuRecommendationResultsAzureSqlManagedInstanceResponseTargetSku
    monthly_cost SkuRecommendationResultsMonthlyCostResponse
    The Monthly cost of the particular SKU.
    number_of_server_blocker_issues int
    Number of blocker issues to fix before migrating to the target platform.
    recommendation_status str
    The target recommendation Status for this database.
    target_sku SkuRecommendationResultsAzureSqlManagedInstanceResponseTargetSku
    monthlyCost Property Map
    The Monthly cost of the particular SKU.
    numberOfServerBlockerIssues Number
    Number of blocker issues to fix before migrating to the target platform.
    recommendationStatus String
    The target recommendation Status for this database.
    targetSku Property Map

    SkuRecommendationResultsAzureSqlManagedInstanceResponseCategory, SkuRecommendationResultsAzureSqlManagedInstanceResponseCategoryArgs

    ComputeTier string
    The compute tier of the target SKU.
    HardwareType string
    The hardware type of the target SKU.
    SqlPurchasingModel string
    The SQL purchasing model of the target SKU.
    SqlServiceTier string
    The SQL service tier of the target SKU.
    ZoneRedundancyAvailable bool
    Indicates if zone redundancy is available for the target SKU.
    ComputeTier string
    The compute tier of the target SKU.
    HardwareType string
    The hardware type of the target SKU.
    SqlPurchasingModel string
    The SQL purchasing model of the target SKU.
    SqlServiceTier string
    The SQL service tier of the target SKU.
    ZoneRedundancyAvailable bool
    Indicates if zone redundancy is available for the target SKU.
    computeTier String
    The compute tier of the target SKU.
    hardwareType String
    The hardware type of the target SKU.
    sqlPurchasingModel String
    The SQL purchasing model of the target SKU.
    sqlServiceTier String
    The SQL service tier of the target SKU.
    zoneRedundancyAvailable Boolean
    Indicates if zone redundancy is available for the target SKU.
    computeTier string
    The compute tier of the target SKU.
    hardwareType string
    The hardware type of the target SKU.
    sqlPurchasingModel string
    The SQL purchasing model of the target SKU.
    sqlServiceTier string
    The SQL service tier of the target SKU.
    zoneRedundancyAvailable boolean
    Indicates if zone redundancy is available for the target SKU.
    compute_tier str
    The compute tier of the target SKU.
    hardware_type str
    The hardware type of the target SKU.
    sql_purchasing_model str
    The SQL purchasing model of the target SKU.
    sql_service_tier str
    The SQL service tier of the target SKU.
    zone_redundancy_available bool
    Indicates if zone redundancy is available for the target SKU.
    computeTier String
    The compute tier of the target SKU.
    hardwareType String
    The hardware type of the target SKU.
    sqlPurchasingModel String
    The SQL purchasing model of the target SKU.
    sqlServiceTier String
    The SQL service tier of the target SKU.
    zoneRedundancyAvailable Boolean
    Indicates if zone redundancy is available for the target SKU.

    SkuRecommendationResultsAzureSqlManagedInstanceResponseTargetSku, SkuRecommendationResultsAzureSqlManagedInstanceResponseTargetSkuArgs

    SkuRecommendationResultsAzureSqlVirtualMachineResponse, SkuRecommendationResultsAzureSqlVirtualMachineResponseArgs

    SKU Recommendation results for Azure SQL Virtual Machine.
    MonthlyCost Pulumi.AzureNative.AzureArcData.Inputs.SkuRecommendationResultsMonthlyCostResponse
    The Monthly cost of the particular SKU.
    NumberOfServerBlockerIssues int
    Number of blocker issues to fix before migrating to the target platform.
    RecommendationStatus string
    The target recommendation Status for this database.
    TargetSku Pulumi.AzureNative.AzureArcData.Inputs.SkuRecommendationResultsAzureSqlVirtualMachineResponseTargetSku
    MonthlyCost SkuRecommendationResultsMonthlyCostResponse
    The Monthly cost of the particular SKU.
    NumberOfServerBlockerIssues int
    Number of blocker issues to fix before migrating to the target platform.
    RecommendationStatus string
    The target recommendation Status for this database.
    TargetSku SkuRecommendationResultsAzureSqlVirtualMachineResponseTargetSku
    monthlyCost SkuRecommendationResultsMonthlyCostResponse
    The Monthly cost of the particular SKU.
    numberOfServerBlockerIssues Integer
    Number of blocker issues to fix before migrating to the target platform.
    recommendationStatus String
    The target recommendation Status for this database.
    targetSku SkuRecommendationResultsAzureSqlVirtualMachineResponseTargetSku
    monthlyCost SkuRecommendationResultsMonthlyCostResponse
    The Monthly cost of the particular SKU.
    numberOfServerBlockerIssues number
    Number of blocker issues to fix before migrating to the target platform.
    recommendationStatus string
    The target recommendation Status for this database.
    targetSku SkuRecommendationResultsAzureSqlVirtualMachineResponseTargetSku
    monthly_cost SkuRecommendationResultsMonthlyCostResponse
    The Monthly cost of the particular SKU.
    number_of_server_blocker_issues int
    Number of blocker issues to fix before migrating to the target platform.
    recommendation_status str
    The target recommendation Status for this database.
    target_sku SkuRecommendationResultsAzureSqlVirtualMachineResponseTargetSku
    monthlyCost Property Map
    The Monthly cost of the particular SKU.
    numberOfServerBlockerIssues Number
    Number of blocker issues to fix before migrating to the target platform.
    recommendationStatus String
    The target recommendation Status for this database.
    targetSku Property Map

    SkuRecommendationResultsAzureSqlVirtualMachineResponseCategory, SkuRecommendationResultsAzureSqlVirtualMachineResponseCategoryArgs

    AvailableVmSkus List<string>
    Available VM SKUs for the Azure SQL Virtual Machine.
    VirtualMachineFamily string
    The virtual machine family of the target SKU.
    AvailableVmSkus []string
    Available VM SKUs for the Azure SQL Virtual Machine.
    VirtualMachineFamily string
    The virtual machine family of the target SKU.
    availableVmSkus List<String>
    Available VM SKUs for the Azure SQL Virtual Machine.
    virtualMachineFamily String
    The virtual machine family of the target SKU.
    availableVmSkus string[]
    Available VM SKUs for the Azure SQL Virtual Machine.
    virtualMachineFamily string
    The virtual machine family of the target SKU.
    available_vm_skus Sequence[str]
    Available VM SKUs for the Azure SQL Virtual Machine.
    virtual_machine_family str
    The virtual machine family of the target SKU.
    availableVmSkus List<String>
    Available VM SKUs for the Azure SQL Virtual Machine.
    virtualMachineFamily String
    The virtual machine family of the target SKU.

    SkuRecommendationResultsAzureSqlVirtualMachineResponseTargetSku, SkuRecommendationResultsAzureSqlVirtualMachineResponseTargetSkuArgs

    SkuRecommendationResultsMonthlyCostResponse, SkuRecommendationResultsMonthlyCostResponseArgs

    The Monthly cost of the particular SKU.
    ComputeCost double
    Represents the Cost of Compute.
    StorageCost double
    Represents the Cost of Storage.
    TotalCost double
    Represents the Total Cost.
    ComputeCost float64
    Represents the Cost of Compute.
    StorageCost float64
    Represents the Cost of Storage.
    TotalCost float64
    Represents the Total Cost.
    computeCost Double
    Represents the Cost of Compute.
    storageCost Double
    Represents the Cost of Storage.
    totalCost Double
    Represents the Total Cost.
    computeCost number
    Represents the Cost of Compute.
    storageCost number
    Represents the Cost of Storage.
    totalCost number
    Represents the Total Cost.
    compute_cost float
    Represents the Cost of Compute.
    storage_cost float
    Represents the Cost of Storage.
    total_cost float
    Represents the Total Cost.
    computeCost Number
    Represents the Cost of Compute.
    storageCost Number
    Represents the Cost of Storage.
    totalCost Number
    Represents the Total Cost.

    SkuRecommendationResultsResponse, SkuRecommendationResultsResponseArgs

    SKU Recommendation results for Azure migration targets for SQL Server.
    AzureSqlDatabase SkuRecommendationResultsAzureSqlDatabaseResponse
    SKU Recommendation results for Azure SQL Database.
    AzureSqlManagedInstance SkuRecommendationResultsAzureSqlManagedInstanceResponse
    SKU Recommendation results for Azure SQL Managed Instance.
    AzureSqlVirtualMachine SkuRecommendationResultsAzureSqlVirtualMachineResponse
    SKU Recommendation results for Azure SQL Virtual Machine.
    azureSqlDatabase SkuRecommendationResultsAzureSqlDatabaseResponse
    SKU Recommendation results for Azure SQL Database.
    azureSqlManagedInstance SkuRecommendationResultsAzureSqlManagedInstanceResponse
    SKU Recommendation results for Azure SQL Managed Instance.
    azureSqlVirtualMachine SkuRecommendationResultsAzureSqlVirtualMachineResponse
    SKU Recommendation results for Azure SQL Virtual Machine.
    azureSqlDatabase SkuRecommendationResultsAzureSqlDatabaseResponse
    SKU Recommendation results for Azure SQL Database.
    azureSqlManagedInstance SkuRecommendationResultsAzureSqlManagedInstanceResponse
    SKU Recommendation results for Azure SQL Managed Instance.
    azureSqlVirtualMachine SkuRecommendationResultsAzureSqlVirtualMachineResponse
    SKU Recommendation results for Azure SQL Virtual Machine.
    azure_sql_database SkuRecommendationResultsAzureSqlDatabaseResponse
    SKU Recommendation results for Azure SQL Database.
    azure_sql_managed_instance SkuRecommendationResultsAzureSqlManagedInstanceResponse
    SKU Recommendation results for Azure SQL Managed Instance.
    azure_sql_virtual_machine SkuRecommendationResultsAzureSqlVirtualMachineResponse
    SKU Recommendation results for Azure SQL Virtual Machine.
    azureSqlDatabase Property Map
    SKU Recommendation results for Azure SQL Database.
    azureSqlManagedInstance Property Map
    SKU Recommendation results for Azure SQL Managed Instance.
    azureSqlVirtualMachine Property Map
    SKU Recommendation results for Azure SQL Virtual Machine.

    SqlServerInstanceProperties, SqlServerInstancePropertiesArgs

    Properties of SqlServerInstance.
    Authentication Pulumi.AzureNative.AzureArcData.Inputs.Authentication
    Authentication related configuration for the SQL Server Instance.
    BackupPolicy Pulumi.AzureNative.AzureArcData.Inputs.BackupPolicy
    The backup profile for the SQL server.
    ClientConnection Pulumi.AzureNative.AzureArcData.Inputs.ClientConnection
    Client connection related configuration.
    Cores string
    The number of total cores of the Operating System Environment (OSE) hosting the SQL Server instance.
    Edition string | Pulumi.AzureNative.AzureArcData.EditionType
    SQL Server edition.
    HostType string | Pulumi.AzureNative.AzureArcData.HostType
    Type of host for Azure Arc SQL Server
    InstanceName string
    SQL Server instance name.
    Migration Pulumi.AzureNative.AzureArcData.Inputs.Migration
    Migration related configuration.
    Monitoring Pulumi.AzureNative.AzureArcData.Inputs.Monitoring
    The monitoring configuration.
    ServiceType string | Pulumi.AzureNative.AzureArcData.ServiceType
    Indicates if the resource represents a SQL Server engine or a SQL Server component service installed on the host.
    UpgradeLockedUntil string
    Upgrade Action for this resource is locked until it expires. The Expiration time indicated by this value. It is not locked when it is empty.
    Version string | Pulumi.AzureNative.AzureArcData.SqlVersion
    SQL Server version.
    Authentication Authentication
    Authentication related configuration for the SQL Server Instance.
    BackupPolicy BackupPolicy
    The backup profile for the SQL server.
    ClientConnection ClientConnection
    Client connection related configuration.
    Cores string
    The number of total cores of the Operating System Environment (OSE) hosting the SQL Server instance.
    Edition string | EditionType
    SQL Server edition.
    HostType string | HostType
    Type of host for Azure Arc SQL Server
    InstanceName string
    SQL Server instance name.
    Migration Migration
    Migration related configuration.
    Monitoring Monitoring
    The monitoring configuration.
    ServiceType string | ServiceType
    Indicates if the resource represents a SQL Server engine or a SQL Server component service installed on the host.
    UpgradeLockedUntil string
    Upgrade Action for this resource is locked until it expires. The Expiration time indicated by this value. It is not locked when it is empty.
    Version string | SqlVersion
    SQL Server version.
    authentication Authentication
    Authentication related configuration for the SQL Server Instance.
    backupPolicy BackupPolicy
    The backup profile for the SQL server.
    clientConnection ClientConnection
    Client connection related configuration.
    cores String
    The number of total cores of the Operating System Environment (OSE) hosting the SQL Server instance.
    edition String | EditionType
    SQL Server edition.
    hostType String | HostType
    Type of host for Azure Arc SQL Server
    instanceName String
    SQL Server instance name.
    migration Migration
    Migration related configuration.
    monitoring Monitoring
    The monitoring configuration.
    serviceType String | ServiceType
    Indicates if the resource represents a SQL Server engine or a SQL Server component service installed on the host.
    upgradeLockedUntil String
    Upgrade Action for this resource is locked until it expires. The Expiration time indicated by this value. It is not locked when it is empty.
    version String | SqlVersion
    SQL Server version.
    authentication Authentication
    Authentication related configuration for the SQL Server Instance.
    backupPolicy BackupPolicy
    The backup profile for the SQL server.
    clientConnection ClientConnection
    Client connection related configuration.
    cores string
    The number of total cores of the Operating System Environment (OSE) hosting the SQL Server instance.
    edition string | EditionType
    SQL Server edition.
    hostType string | HostType
    Type of host for Azure Arc SQL Server
    instanceName string
    SQL Server instance name.
    migration Migration
    Migration related configuration.
    monitoring Monitoring
    The monitoring configuration.
    serviceType string | ServiceType
    Indicates if the resource represents a SQL Server engine or a SQL Server component service installed on the host.
    upgradeLockedUntil string
    Upgrade Action for this resource is locked until it expires. The Expiration time indicated by this value. It is not locked when it is empty.
    version string | SqlVersion
    SQL Server version.
    authentication Authentication
    Authentication related configuration for the SQL Server Instance.
    backup_policy BackupPolicy
    The backup profile for the SQL server.
    client_connection ClientConnection
    Client connection related configuration.
    cores str
    The number of total cores of the Operating System Environment (OSE) hosting the SQL Server instance.
    edition str | EditionType
    SQL Server edition.
    host_type str | HostType
    Type of host for Azure Arc SQL Server
    instance_name str
    SQL Server instance name.
    migration Migration
    Migration related configuration.
    monitoring Monitoring
    The monitoring configuration.
    service_type str | ServiceType
    Indicates if the resource represents a SQL Server engine or a SQL Server component service installed on the host.
    upgrade_locked_until str
    Upgrade Action for this resource is locked until it expires. The Expiration time indicated by this value. It is not locked when it is empty.
    version str | SqlVersion
    SQL Server version.
    authentication Property Map
    Authentication related configuration for the SQL Server Instance.
    backupPolicy Property Map
    The backup profile for the SQL server.
    clientConnection Property Map
    Client connection related configuration.
    cores String
    The number of total cores of the Operating System Environment (OSE) hosting the SQL Server instance.
    edition String | "Evaluation" | "Enterprise" | "Standard" | "Web" | "Developer" | "Express" | "Business Intelligence"
    SQL Server edition.
    hostType String | "Azure Virtual Machine" | "Azure VMWare Virtual Machine" | "Azure Kubernetes Service" | "AWS VMWare Virtual Machine" | "AWS Kubernetes Service" | "GCP VMWare Virtual Machine" | "GCP Kubernetes Service" | "Container" | "Virtual Machine" | "Physical Server" | "AWS Virtual Machine" | "GCP Virtual Machine" | "Other"
    Type of host for Azure Arc SQL Server
    instanceName String
    SQL Server instance name.
    migration Property Map
    Migration related configuration.
    monitoring Property Map
    The monitoring configuration.
    serviceType String | "Engine" | "SSRS" | "SSAS" | "SSIS" | "PBIRS"
    Indicates if the resource represents a SQL Server engine or a SQL Server component service installed on the host.
    upgradeLockedUntil String
    Upgrade Action for this resource is locked until it expires. The Expiration time indicated by this value. It is not locked when it is empty.
    version String | "SQL Server 2012" | "SQL Server 2014" | "SQL Server 2016" | "SQL Server 2017" | "SQL Server 2019" | "SQL Server 2022" | "Unknown"
    SQL Server version.

    SqlServerInstancePropertiesResponse, SqlServerInstancePropertiesResponseArgs

    Properties of SqlServerInstance.
    AlwaysOnRole string
    The role of the SQL Server, based on availability.
    AzureDefenderStatus string
    Status of Azure Defender.
    AzureDefenderStatusLastUpdated string
    Timestamp of last Azure Defender status update.
    Collation string
    SQL Server collation.
    ContainerResourceId string
    ARM Resource id of the container resource (Azure Arc for Servers).
    CreateTime string
    The time when the resource was created.
    CurrentVersion string
    SQL Server current version.
    DbMasterKeyExists bool
    Indicates whether database master key exists in SQL Server.
    IsDigiCertPkiCertTrustConfigured bool
    Indicates whether DigiCert PKI root-authority certificate (trusted by Azure) exists in SQL Server and trusted for Azure database.windows.net domains.
    IsHadrEnabled bool
    Indicates whether always On availability groups is enabled in SQL Server.
    IsMicrosoftPkiCertTrustConfigured bool
    Indicates whether Microsoft PKI root-authority certificate (trusted by Azure) exists in SQL Server and trusted for Azure database.windows.net domains.
    LastInventoryUploadTime string
    The time when last successful inventory upload was performed.
    LastUsageUploadTime string
    The time when last successful usage upload was performed.
    LicenseType string
    SQL Server license type.
    MaxServerMemoryMB double
    max server memory (MB) value configured for this instance.
    PatchLevel string
    SQL Server update level.
    ProductId string
    SQL Server product ID.
    ProvisioningState string
    The provisioning state of the Arc-enabled SQL Server resource.
    Status string
    The cloud connectivity status.
    TcpDynamicPorts string
    Dynamic TCP ports used by SQL Server.
    TcpStaticPorts string
    Static TCP ports used by SQL Server.
    TraceFlags List<int>
    An array of integers, where each value represents the enabled trace flags in SQL Server.
    VCore string
    The number of logical processors used by the SQL Server instance.
    VmId string
    The unique ID of the hybrid machine that this resource belongs to.
    Authentication Pulumi.AzureNative.AzureArcData.Inputs.AuthenticationResponse
    Authentication related configuration for the SQL Server Instance.
    BackupPolicy Pulumi.AzureNative.AzureArcData.Inputs.BackupPolicyResponse
    The backup profile for the SQL server.
    ClientConnection Pulumi.AzureNative.AzureArcData.Inputs.ClientConnectionResponse
    Client connection related configuration.
    Cores string
    The number of total cores of the Operating System Environment (OSE) hosting the SQL Server instance.
    DatabaseMirroringEndpoint Pulumi.AzureNative.AzureArcData.Inputs.DBMEndpointResponse
    Database mirroring endpoint related properties.
    Edition string
    SQL Server edition.
    FailoverCluster Pulumi.AzureNative.AzureArcData.Inputs.FailoverClusterResponse
    Failover Cluster Instance properties.
    HostType string
    Type of host for Azure Arc SQL Server
    InstanceName string
    SQL Server instance name.
    Migration Pulumi.AzureNative.AzureArcData.Inputs.MigrationResponse
    Migration related configuration.
    Monitoring Pulumi.AzureNative.AzureArcData.Inputs.MonitoringResponse
    The monitoring configuration.
    ServiceType string
    Indicates if the resource represents a SQL Server engine or a SQL Server component service installed on the host.
    UpgradeLockedUntil string
    Upgrade Action for this resource is locked until it expires. The Expiration time indicated by this value. It is not locked when it is empty.
    Version string
    SQL Server version.
    AlwaysOnRole string
    The role of the SQL Server, based on availability.
    AzureDefenderStatus string
    Status of Azure Defender.
    AzureDefenderStatusLastUpdated string
    Timestamp of last Azure Defender status update.
    Collation string
    SQL Server collation.
    ContainerResourceId string
    ARM Resource id of the container resource (Azure Arc for Servers).
    CreateTime string
    The time when the resource was created.
    CurrentVersion string
    SQL Server current version.
    DbMasterKeyExists bool
    Indicates whether database master key exists in SQL Server.
    IsDigiCertPkiCertTrustConfigured bool
    Indicates whether DigiCert PKI root-authority certificate (trusted by Azure) exists in SQL Server and trusted for Azure database.windows.net domains.
    IsHadrEnabled bool
    Indicates whether always On availability groups is enabled in SQL Server.
    IsMicrosoftPkiCertTrustConfigured bool
    Indicates whether Microsoft PKI root-authority certificate (trusted by Azure) exists in SQL Server and trusted for Azure database.windows.net domains.
    LastInventoryUploadTime string
    The time when last successful inventory upload was performed.
    LastUsageUploadTime string
    The time when last successful usage upload was performed.
    LicenseType string
    SQL Server license type.
    MaxServerMemoryMB float64
    max server memory (MB) value configured for this instance.
    PatchLevel string
    SQL Server update level.
    ProductId string
    SQL Server product ID.
    ProvisioningState string
    The provisioning state of the Arc-enabled SQL Server resource.
    Status string
    The cloud connectivity status.
    TcpDynamicPorts string
    Dynamic TCP ports used by SQL Server.
    TcpStaticPorts string
    Static TCP ports used by SQL Server.
    TraceFlags []int
    An array of integers, where each value represents the enabled trace flags in SQL Server.
    VCore string
    The number of logical processors used by the SQL Server instance.
    VmId string
    The unique ID of the hybrid machine that this resource belongs to.
    Authentication AuthenticationResponse
    Authentication related configuration for the SQL Server Instance.
    BackupPolicy BackupPolicyResponse
    The backup profile for the SQL server.
    ClientConnection ClientConnectionResponse
    Client connection related configuration.
    Cores string
    The number of total cores of the Operating System Environment (OSE) hosting the SQL Server instance.
    DatabaseMirroringEndpoint DBMEndpointResponse
    Database mirroring endpoint related properties.
    Edition string
    SQL Server edition.
    FailoverCluster FailoverClusterResponse
    Failover Cluster Instance properties.
    HostType string
    Type of host for Azure Arc SQL Server
    InstanceName string
    SQL Server instance name.
    Migration MigrationResponse
    Migration related configuration.
    Monitoring MonitoringResponse
    The monitoring configuration.
    ServiceType string
    Indicates if the resource represents a SQL Server engine or a SQL Server component service installed on the host.
    UpgradeLockedUntil string
    Upgrade Action for this resource is locked until it expires. The Expiration time indicated by this value. It is not locked when it is empty.
    Version string
    SQL Server version.
    alwaysOnRole String
    The role of the SQL Server, based on availability.
    azureDefenderStatus String
    Status of Azure Defender.
    azureDefenderStatusLastUpdated String
    Timestamp of last Azure Defender status update.
    collation String
    SQL Server collation.
    containerResourceId String
    ARM Resource id of the container resource (Azure Arc for Servers).
    createTime String
    The time when the resource was created.
    currentVersion String
    SQL Server current version.
    dbMasterKeyExists Boolean
    Indicates whether database master key exists in SQL Server.
    isDigiCertPkiCertTrustConfigured Boolean
    Indicates whether DigiCert PKI root-authority certificate (trusted by Azure) exists in SQL Server and trusted for Azure database.windows.net domains.
    isHadrEnabled Boolean
    Indicates whether always On availability groups is enabled in SQL Server.
    isMicrosoftPkiCertTrustConfigured Boolean
    Indicates whether Microsoft PKI root-authority certificate (trusted by Azure) exists in SQL Server and trusted for Azure database.windows.net domains.
    lastInventoryUploadTime String
    The time when last successful inventory upload was performed.
    lastUsageUploadTime String
    The time when last successful usage upload was performed.
    licenseType String
    SQL Server license type.
    maxServerMemoryMB Double
    max server memory (MB) value configured for this instance.
    patchLevel String
    SQL Server update level.
    productId String
    SQL Server product ID.
    provisioningState String
    The provisioning state of the Arc-enabled SQL Server resource.
    status String
    The cloud connectivity status.
    tcpDynamicPorts String
    Dynamic TCP ports used by SQL Server.
    tcpStaticPorts String
    Static TCP ports used by SQL Server.
    traceFlags List<Integer>
    An array of integers, where each value represents the enabled trace flags in SQL Server.
    vCore String
    The number of logical processors used by the SQL Server instance.
    vmId String
    The unique ID of the hybrid machine that this resource belongs to.
    authentication AuthenticationResponse
    Authentication related configuration for the SQL Server Instance.
    backupPolicy BackupPolicyResponse
    The backup profile for the SQL server.
    clientConnection ClientConnectionResponse
    Client connection related configuration.
    cores String
    The number of total cores of the Operating System Environment (OSE) hosting the SQL Server instance.
    databaseMirroringEndpoint DBMEndpointResponse
    Database mirroring endpoint related properties.
    edition String
    SQL Server edition.
    failoverCluster FailoverClusterResponse
    Failover Cluster Instance properties.
    hostType String
    Type of host for Azure Arc SQL Server
    instanceName String
    SQL Server instance name.
    migration MigrationResponse
    Migration related configuration.
    monitoring MonitoringResponse
    The monitoring configuration.
    serviceType String
    Indicates if the resource represents a SQL Server engine or a SQL Server component service installed on the host.
    upgradeLockedUntil String
    Upgrade Action for this resource is locked until it expires. The Expiration time indicated by this value. It is not locked when it is empty.
    version String
    SQL Server version.
    alwaysOnRole string
    The role of the SQL Server, based on availability.
    azureDefenderStatus string
    Status of Azure Defender.
    azureDefenderStatusLastUpdated string
    Timestamp of last Azure Defender status update.
    collation string
    SQL Server collation.
    containerResourceId string
    ARM Resource id of the container resource (Azure Arc for Servers).
    createTime string
    The time when the resource was created.
    currentVersion string
    SQL Server current version.
    dbMasterKeyExists boolean
    Indicates whether database master key exists in SQL Server.
    isDigiCertPkiCertTrustConfigured boolean
    Indicates whether DigiCert PKI root-authority certificate (trusted by Azure) exists in SQL Server and trusted for Azure database.windows.net domains.
    isHadrEnabled boolean
    Indicates whether always On availability groups is enabled in SQL Server.
    isMicrosoftPkiCertTrustConfigured boolean
    Indicates whether Microsoft PKI root-authority certificate (trusted by Azure) exists in SQL Server and trusted for Azure database.windows.net domains.
    lastInventoryUploadTime string
    The time when last successful inventory upload was performed.
    lastUsageUploadTime string
    The time when last successful usage upload was performed.
    licenseType string
    SQL Server license type.
    maxServerMemoryMB number
    max server memory (MB) value configured for this instance.
    patchLevel string
    SQL Server update level.
    productId string
    SQL Server product ID.
    provisioningState string
    The provisioning state of the Arc-enabled SQL Server resource.
    status string
    The cloud connectivity status.
    tcpDynamicPorts string
    Dynamic TCP ports used by SQL Server.
    tcpStaticPorts string
    Static TCP ports used by SQL Server.
    traceFlags number[]
    An array of integers, where each value represents the enabled trace flags in SQL Server.
    vCore string
    The number of logical processors used by the SQL Server instance.
    vmId string
    The unique ID of the hybrid machine that this resource belongs to.
    authentication AuthenticationResponse
    Authentication related configuration for the SQL Server Instance.
    backupPolicy BackupPolicyResponse
    The backup profile for the SQL server.
    clientConnection ClientConnectionResponse
    Client connection related configuration.
    cores string
    The number of total cores of the Operating System Environment (OSE) hosting the SQL Server instance.
    databaseMirroringEndpoint DBMEndpointResponse
    Database mirroring endpoint related properties.
    edition string
    SQL Server edition.
    failoverCluster FailoverClusterResponse
    Failover Cluster Instance properties.
    hostType string
    Type of host for Azure Arc SQL Server
    instanceName string
    SQL Server instance name.
    migration MigrationResponse
    Migration related configuration.
    monitoring MonitoringResponse
    The monitoring configuration.
    serviceType string
    Indicates if the resource represents a SQL Server engine or a SQL Server component service installed on the host.
    upgradeLockedUntil string
    Upgrade Action for this resource is locked until it expires. The Expiration time indicated by this value. It is not locked when it is empty.
    version string
    SQL Server version.
    always_on_role str
    The role of the SQL Server, based on availability.
    azure_defender_status str
    Status of Azure Defender.
    azure_defender_status_last_updated str
    Timestamp of last Azure Defender status update.
    collation str
    SQL Server collation.
    container_resource_id str
    ARM Resource id of the container resource (Azure Arc for Servers).
    create_time str
    The time when the resource was created.
    current_version str
    SQL Server current version.
    db_master_key_exists bool
    Indicates whether database master key exists in SQL Server.
    is_digi_cert_pki_cert_trust_configured bool
    Indicates whether DigiCert PKI root-authority certificate (trusted by Azure) exists in SQL Server and trusted for Azure database.windows.net domains.
    is_hadr_enabled bool
    Indicates whether always On availability groups is enabled in SQL Server.
    is_microsoft_pki_cert_trust_configured bool
    Indicates whether Microsoft PKI root-authority certificate (trusted by Azure) exists in SQL Server and trusted for Azure database.windows.net domains.
    last_inventory_upload_time str
    The time when last successful inventory upload was performed.
    last_usage_upload_time str
    The time when last successful usage upload was performed.
    license_type str
    SQL Server license type.
    max_server_memory_mb float
    max server memory (MB) value configured for this instance.
    patch_level str
    SQL Server update level.
    product_id str
    SQL Server product ID.
    provisioning_state str
    The provisioning state of the Arc-enabled SQL Server resource.
    status str
    The cloud connectivity status.
    tcp_dynamic_ports str
    Dynamic TCP ports used by SQL Server.
    tcp_static_ports str
    Static TCP ports used by SQL Server.
    trace_flags Sequence[int]
    An array of integers, where each value represents the enabled trace flags in SQL Server.
    v_core str
    The number of logical processors used by the SQL Server instance.
    vm_id str
    The unique ID of the hybrid machine that this resource belongs to.
    authentication AuthenticationResponse
    Authentication related configuration for the SQL Server Instance.
    backup_policy BackupPolicyResponse
    The backup profile for the SQL server.
    client_connection ClientConnectionResponse
    Client connection related configuration.
    cores str
    The number of total cores of the Operating System Environment (OSE) hosting the SQL Server instance.
    database_mirroring_endpoint DBMEndpointResponse
    Database mirroring endpoint related properties.
    edition str
    SQL Server edition.
    failover_cluster FailoverClusterResponse
    Failover Cluster Instance properties.
    host_type str
    Type of host for Azure Arc SQL Server
    instance_name str
    SQL Server instance name.
    migration MigrationResponse
    Migration related configuration.
    monitoring MonitoringResponse
    The monitoring configuration.
    service_type str
    Indicates if the resource represents a SQL Server engine or a SQL Server component service installed on the host.
    upgrade_locked_until str
    Upgrade Action for this resource is locked until it expires. The Expiration time indicated by this value. It is not locked when it is empty.
    version str
    SQL Server version.
    alwaysOnRole String
    The role of the SQL Server, based on availability.
    azureDefenderStatus String
    Status of Azure Defender.
    azureDefenderStatusLastUpdated String
    Timestamp of last Azure Defender status update.
    collation String
    SQL Server collation.
    containerResourceId String
    ARM Resource id of the container resource (Azure Arc for Servers).
    createTime String
    The time when the resource was created.
    currentVersion String
    SQL Server current version.
    dbMasterKeyExists Boolean
    Indicates whether database master key exists in SQL Server.
    isDigiCertPkiCertTrustConfigured Boolean
    Indicates whether DigiCert PKI root-authority certificate (trusted by Azure) exists in SQL Server and trusted for Azure database.windows.net domains.
    isHadrEnabled Boolean
    Indicates whether always On availability groups is enabled in SQL Server.
    isMicrosoftPkiCertTrustConfigured Boolean
    Indicates whether Microsoft PKI root-authority certificate (trusted by Azure) exists in SQL Server and trusted for Azure database.windows.net domains.
    lastInventoryUploadTime String
    The time when last successful inventory upload was performed.
    lastUsageUploadTime String
    The time when last successful usage upload was performed.
    licenseType String
    SQL Server license type.
    maxServerMemoryMB Number
    max server memory (MB) value configured for this instance.
    patchLevel String
    SQL Server update level.
    productId String
    SQL Server product ID.
    provisioningState String
    The provisioning state of the Arc-enabled SQL Server resource.
    status String
    The cloud connectivity status.
    tcpDynamicPorts String
    Dynamic TCP ports used by SQL Server.
    tcpStaticPorts String
    Static TCP ports used by SQL Server.
    traceFlags List<Number>
    An array of integers, where each value represents the enabled trace flags in SQL Server.
    vCore String
    The number of logical processors used by the SQL Server instance.
    vmId String
    The unique ID of the hybrid machine that this resource belongs to.
    authentication Property Map
    Authentication related configuration for the SQL Server Instance.
    backupPolicy Property Map
    The backup profile for the SQL server.
    clientConnection Property Map
    Client connection related configuration.
    cores String
    The number of total cores of the Operating System Environment (OSE) hosting the SQL Server instance.
    databaseMirroringEndpoint Property Map
    Database mirroring endpoint related properties.
    edition String
    SQL Server edition.
    failoverCluster Property Map
    Failover Cluster Instance properties.
    hostType String
    Type of host for Azure Arc SQL Server
    instanceName String
    SQL Server instance name.
    migration Property Map
    Migration related configuration.
    monitoring Property Map
    The monitoring configuration.
    serviceType String
    Indicates if the resource represents a SQL Server engine or a SQL Server component service installed on the host.
    upgradeLockedUntil String
    Upgrade Action for this resource is locked until it expires. The Expiration time indicated by this value. It is not locked when it is empty.
    version String
    SQL Server version.

    SqlVersion, SqlVersionArgs

    SQL_Server_2012
    SQL Server 2012
    SQL_Server_2014
    SQL Server 2014
    SQL_Server_2016
    SQL Server 2016
    SQL_Server_2017
    SQL Server 2017
    SQL_Server_2019
    SQL Server 2019
    SQL_Server_2022
    SQL Server 2022
    Unknown
    Unknown
    SqlVersion_SQL_Server_2012
    SQL Server 2012
    SqlVersion_SQL_Server_2014
    SQL Server 2014
    SqlVersion_SQL_Server_2016
    SQL Server 2016
    SqlVersion_SQL_Server_2017
    SQL Server 2017
    SqlVersion_SQL_Server_2019
    SQL Server 2019
    SqlVersion_SQL_Server_2022
    SQL Server 2022
    SqlVersionUnknown
    Unknown
    SQL_Server_2012
    SQL Server 2012
    SQL_Server_2014
    SQL Server 2014
    SQL_Server_2016
    SQL Server 2016
    SQL_Server_2017
    SQL Server 2017
    SQL_Server_2019
    SQL Server 2019
    SQL_Server_2022
    SQL Server 2022
    Unknown
    Unknown
    SQL_Server_2012
    SQL Server 2012
    SQL_Server_2014
    SQL Server 2014
    SQL_Server_2016
    SQL Server 2016
    SQL_Server_2017
    SQL Server 2017
    SQL_Server_2019
    SQL Server 2019
    SQL_Server_2022
    SQL Server 2022
    Unknown
    Unknown
    SQ_L_SERVER_2012
    SQL Server 2012
    SQ_L_SERVER_2014
    SQL Server 2014
    SQ_L_SERVER_2016
    SQL Server 2016
    SQ_L_SERVER_2017
    SQL Server 2017
    SQ_L_SERVER_2019
    SQL Server 2019
    SQ_L_SERVER_2022
    SQL Server 2022
    UNKNOWN
    Unknown
    "SQL Server 2012"
    SQL Server 2012
    "SQL Server 2014"
    SQL Server 2014
    "SQL Server 2016"
    SQL Server 2016
    "SQL Server 2017"
    SQL Server 2017
    "SQL Server 2019"
    SQL Server 2019
    "SQL Server 2022"
    SQL Server 2022
    "Unknown"
    Unknown

    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.
    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:azurearcdata:SqlServerInstance testsqlServerInstance /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AzureArcData/sqlServerInstances/{sqlServerInstanceName} 
    

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

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
    Azure Native v3.10.1 published on Friday, Nov 7, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate