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:
- Resource
Group stringName - The name of the Azure resource group
- Location string
- The geo-location where the resource lives
- Properties
Pulumi.
Azure Native. Azure Arc Data. Inputs. Sql Server Instance Properties - null
- Sql
Server stringInstance Name - Name of SQL Server Instance
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - The name of the Azure resource group
- Location string
- The geo-location where the resource lives
- Properties
Sql
Server Instance Properties Args - null
- Sql
Server stringInstance Name - Name of SQL Server Instance
- map[string]string
- Resource tags.
- resource
Group StringName - The name of the Azure resource group
- location String
- The geo-location where the resource lives
- properties
Sql
Server Instance Properties - null
- sql
Server StringInstance Name - Name of SQL Server Instance
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the Azure resource group
- location string
- The geo-location where the resource lives
- properties
Sql
Server Instance Properties - null
- sql
Server stringInstance Name - Name of SQL Server Instance
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - The name of the Azure resource group
- location str
- The geo-location where the resource lives
- properties
Sql
Server Instance Properties Args - null
- sql_
server_ strinstance_ name - Name of SQL Server Instance
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the Azure resource group
- location String
- The geo-location where the resource lives
- properties Property Map
- null
- sql
Server StringInstance Name - Name of SQL Server Instance
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the SqlServerInstance resource produces the following output properties:
- Azure
Api stringVersion - 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
- System
Data Pulumi.Azure Native. Azure Arc Data. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Azure
Api stringVersion - 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
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api StringVersion - 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
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api stringVersion - 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
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure_
api_ strversion - The Azure API version of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api StringVersion - 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
- system
Data 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.
Azure Native. Azure Arc Data. Mode - Mode of authentication in SqlServer.
- Sql
Server List<Pulumi.Entra Identity Azure Native. Azure Arc Data. Inputs. Entra Authentication> - Entra Authentication configuration for the SQL Server Instance.
- Mode string | Mode
- Mode of authentication in SqlServer.
- Sql
Server []EntraEntra Identity Authentication - Entra Authentication configuration for the SQL Server Instance.
- mode String | Mode
- Mode of authentication in SqlServer.
- sql
Server List<EntraEntra Identity Authentication> - Entra Authentication configuration for the SQL Server Instance.
- mode string | Mode
- Mode of authentication in SqlServer.
- sql
Server EntraEntra Identity Authentication[] - Entra Authentication configuration for the SQL Server Instance.
- mode str | Mode
- Mode of authentication in SqlServer.
- sql_
server_ Sequence[Entraentra_ identity Authentication] - Entra Authentication configuration for the SQL Server Instance.
- mode String | "Mixed" | "Windows" | "Undefined"
- Mode of authentication in SqlServer.
- sql
Server List<Property Map>Entra Identity - 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.
- Sql
Server List<Pulumi.Entra Identity Azure Native. Azure Arc Data. Inputs. Entra Authentication Response> - Entra Authentication configuration for the SQL Server Instance.
- Mode string
- Mode of authentication in SqlServer.
- Sql
Server []EntraEntra Identity Authentication Response - Entra Authentication configuration for the SQL Server Instance.
- mode String
- Mode of authentication in SqlServer.
- sql
Server List<EntraEntra Identity Authentication Response> - Entra Authentication configuration for the SQL Server Instance.
- mode string
- Mode of authentication in SqlServer.
- sql
Server EntraEntra Identity Authentication Response[] - Entra Authentication configuration for the SQL Server Instance.
- mode str
- Mode of authentication in SqlServer.
- sql_
server_ Sequence[Entraentra_ identity Authentication Response] - Entra Authentication configuration for the SQL Server Instance.
- mode String
- Mode of authentication in SqlServer.
- sql
Server List<Property Map>Entra Identity - Entra Authentication configuration for the SQL Server Instance.
BackupPolicy, BackupPolicyArgs
The backup profile for the SQL server.- Differential
Backup intHours - The differential backup interval in hours.
- Full
Backup intDays - The value indicating days between full backups.
- Retention
Period intDays - The retention period for all the databases in this managed instance.
- Transaction
Log intBackup Minutes - The value indicating minutes between transaction log backups.
- Differential
Backup intHours - The differential backup interval in hours.
- Full
Backup intDays - The value indicating days between full backups.
- Retention
Period intDays - The retention period for all the databases in this managed instance.
- Transaction
Log intBackup Minutes - The value indicating minutes between transaction log backups.
- differential
Backup IntegerHours - The differential backup interval in hours.
- full
Backup IntegerDays - The value indicating days between full backups.
- retention
Period IntegerDays - The retention period for all the databases in this managed instance.
- transaction
Log IntegerBackup Minutes - The value indicating minutes between transaction log backups.
- differential
Backup numberHours - The differential backup interval in hours.
- full
Backup numberDays - The value indicating days between full backups.
- retention
Period numberDays - The retention period for all the databases in this managed instance.
- transaction
Log numberBackup Minutes - The value indicating minutes between transaction log backups.
- differential_
backup_ inthours - The differential backup interval in hours.
- full_
backup_ intdays - The value indicating days between full backups.
- retention_
period_ intdays - The retention period for all the databases in this managed instance.
- transaction_
log_ intbackup_ minutes - The value indicating minutes between transaction log backups.
- differential
Backup NumberHours - The differential backup interval in hours.
- full
Backup NumberDays - The value indicating days between full backups.
- retention
Period NumberDays - The retention period for all the databases in this managed instance.
- transaction
Log NumberBackup Minutes - The value indicating minutes between transaction log backups.
BackupPolicyResponse, BackupPolicyResponseArgs
The backup profile for the SQL server.- Differential
Backup intHours - The differential backup interval in hours.
- Full
Backup intDays - The value indicating days between full backups.
- Retention
Period intDays - The retention period for all the databases in this managed instance.
- Transaction
Log intBackup Minutes - The value indicating minutes between transaction log backups.
- Differential
Backup intHours - The differential backup interval in hours.
- Full
Backup intDays - The value indicating days between full backups.
- Retention
Period intDays - The retention period for all the databases in this managed instance.
- Transaction
Log intBackup Minutes - The value indicating minutes between transaction log backups.
- differential
Backup IntegerHours - The differential backup interval in hours.
- full
Backup IntegerDays - The value indicating days between full backups.
- retention
Period IntegerDays - The retention period for all the databases in this managed instance.
- transaction
Log IntegerBackup Minutes - The value indicating minutes between transaction log backups.
- differential
Backup numberHours - The differential backup interval in hours.
- full
Backup numberDays - The value indicating days between full backups.
- retention
Period numberDays - The retention period for all the databases in this managed instance.
- transaction
Log numberBackup Minutes - The value indicating minutes between transaction log backups.
- differential_
backup_ inthours - The differential backup interval in hours.
- full_
backup_ intdays - The value indicating days between full backups.
- retention_
period_ intdays - The retention period for all the databases in this managed instance.
- transaction_
log_ intbackup_ minutes - The value indicating minutes between transaction log backups.
- differential
Backup NumberHours - The differential backup interval in hours.
- full
Backup NumberDays - The value indicating days between full backups.
- retention
Period NumberDays - The retention period for all the databases in this managed instance.
- transaction
Log NumberBackup Minutes - 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.- Certificate
Name string - Name of the certificate.
- Connection
Auth string - The type of connection authentication required for connections to this endpoint
- Encryption
Algorithm string - Encryption Algorithm
- Endpoint
Name string - Name of the database mirroring endpoint.
- Ip
Address string - Listener IP address.
- Is
Dynamic boolPort - Is the port number dynamically assigned.
- Is
Encryption boolEnabled - Is Encryption enabled
- Port int
- The port number that the endpoint is listening on.
- Role string
- Mirroring Role
- Certificate
Name string - Name of the certificate.
- Connection
Auth string - The type of connection authentication required for connections to this endpoint
- Encryption
Algorithm string - Encryption Algorithm
- Endpoint
Name string - Name of the database mirroring endpoint.
- Ip
Address string - Listener IP address.
- Is
Dynamic boolPort - Is the port number dynamically assigned.
- Is
Encryption boolEnabled - Is Encryption enabled
- Port int
- The port number that the endpoint is listening on.
- Role string
- Mirroring Role
- certificate
Name String - Name of the certificate.
- connection
Auth String - The type of connection authentication required for connections to this endpoint
- encryption
Algorithm String - Encryption Algorithm
- endpoint
Name String - Name of the database mirroring endpoint.
- ip
Address String - Listener IP address.
- is
Dynamic BooleanPort - Is the port number dynamically assigned.
- is
Encryption BooleanEnabled - Is Encryption enabled
- port Integer
- The port number that the endpoint is listening on.
- role String
- Mirroring Role
- certificate
Name string - Name of the certificate.
- connection
Auth string - The type of connection authentication required for connections to this endpoint
- encryption
Algorithm string - Encryption Algorithm
- endpoint
Name string - Name of the database mirroring endpoint.
- ip
Address string - Listener IP address.
- is
Dynamic booleanPort - Is the port number dynamically assigned.
- is
Encryption booleanEnabled - 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_ boolport - Is the port number dynamically assigned.
- is_
encryption_ boolenabled - Is Encryption enabled
- port int
- The port number that the endpoint is listening on.
- role str
- Mirroring Role
- certificate
Name String - Name of the certificate.
- connection
Auth String - The type of connection authentication required for connections to this endpoint
- encryption
Algorithm String - Encryption Algorithm
- endpoint
Name String - Name of the database mirroring endpoint.
- ip
Address String - Listener IP address.
- is
Dynamic BooleanPort - Is the port number dynamically assigned.
- is
Encryption BooleanEnabled - 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
- Edition
Type Evaluation - Evaluation
- Edition
Type Enterprise - Enterprise
- Edition
Type Standard - Standard
- Edition
Type Web - Web
- Edition
Type Developer - Developer
- Edition
Type Express - Express
- Edition
Type_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.- Client
Id 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.
- Identity
Type string | Pulumi.Azure Native. Azure Arc Data. Identity Type - The method used for Entra authentication
- Client
Id 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.
- Identity
Type string | IdentityType - The method used for Entra authentication
- client
Id 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.
- identity
Type String | IdentityType - The method used for Entra authentication
- client
Id 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.
- identity
Type 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
- client
Id 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.
- identity
Type String | "SystemAssigned Managed Identity" | "User Assigned Managed Identity" - The method used for Entra authentication
EntraAuthenticationResponse, EntraAuthenticationResponseArgs
Entra Authentication configuration.- Client
Id 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.
- Identity
Type string - The method used for Entra authentication
- Client
Id 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.
- Identity
Type string - The method used for Entra authentication
- client
Id 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.
- identity
Type String - The method used for Entra authentication
- client
Id 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.
- identity
Type 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
- client
Id 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.
- identity
Type String - The method used for Entra authentication
FailoverClusterResponse, FailoverClusterResponseArgs
Failover Cluster Instance properties.- Host
IPAddresses List<Pulumi.Azure Native. Azure Arc Data. Inputs. Host IPAddress Information Response> - The IP addresses and subnet masks associated with the SQL Failover Cluster Instance on this host.
- Host
Names 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.
- Network
Name string - The network name to connect to the SQL FCI.
- Sql
Instance List<string>Ids - The ARM IDs of the Arc SQL Server resources, belonging to the current server's Failover cluster.
- Host
IPAddresses []HostIPAddress Information Response - The IP addresses and subnet masks associated with the SQL Failover Cluster Instance on this host.
- Host
Names []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.
- Network
Name string - The network name to connect to the SQL FCI.
- Sql
Instance []stringIds - The ARM IDs of the Arc SQL Server resources, belonging to the current server's Failover cluster.
- host
IPAddresses List<HostIPAddress Information Response> - The IP addresses and subnet masks associated with the SQL Failover Cluster Instance on this host.
- host
Names 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.
- network
Name String - The network name to connect to the SQL FCI.
- sql
Instance List<String>Ids - The ARM IDs of the Arc SQL Server resources, belonging to the current server's Failover cluster.
- host
IPAddresses HostIPAddress Information Response[] - The IP addresses and subnet masks associated with the SQL Failover Cluster Instance on this host.
- host
Names 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.
- network
Name string - The network name to connect to the SQL FCI.
- sql
Instance string[]Ids - The ARM IDs of the Arc SQL Server resources, belonging to the current server's Failover cluster.
- host_
ip_ Sequence[Hostaddresses IPAddress Information Response] - 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_ Sequence[str]ids - The ARM IDs of the Arc SQL Server resources, belonging to the current server's Failover cluster.
- host
IPAddresses List<Property Map> - The IP addresses and subnet masks associated with the SQL Failover Cluster Instance on this host.
- host
Names 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.
- network
Name String - The network name to connect to the SQL FCI.
- sql
Instance List<String>Ids - The ARM IDs of the Arc SQL Server resources, belonging to the current server's Failover cluster.
HostIPAddressInformationResponse, HostIPAddressInformationResponseArgs
IP address and subnet mask.- Ip
Address string - IP address
- Subnet
Mask string - Subnet mask
- Ip
Address string - IP address
- Subnet
Mask string - Subnet mask
- ip
Address String - IP address
- subnet
Mask String - Subnet mask
- ip
Address string - IP address
- subnet
Mask string - Subnet mask
- ip_
address str - IP address
- subnet_
mask str - Subnet mask
- ip
Address String - IP address
- subnet
Mask 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
- Host
Type_Azure_Virtual_Machine - Azure Virtual Machine
- Host
Type_Azure_VMWare_Virtual_Machine - Azure VMWare Virtual Machine
- Host
Type_Azure_Kubernetes_Service - Azure Kubernetes Service
- Host
Type_AWS_VMWare_Virtual_Machine - AWS VMWare Virtual Machine
- Host
Type_AWS_Kubernetes_Service - AWS Kubernetes Service
- Host
Type_GCP_VMWare_Virtual_Machine - GCP VMWare Virtual Machine
- Host
Type_GCP_Kubernetes_Service - GCP Kubernetes Service
- Host
Type Container - Container
- Host
Type_Virtual_Machine - Virtual Machine
- Host
Type_Physical_Server - Physical Server
- Host
Type_AWS_Virtual_Machine - AWS Virtual Machine
- Host
Type_GCP_Virtual_Machine - GCP Virtual Machine
- Host
Type 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_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
- System
Assigned Managed Identity - SystemAssignedManagedIdentitySystem Assigned Managed Identity
- User
Assigned Managed Identity - UserAssignedManagedIdentityUser Assigned Managed Identity
- Identity
Type System Assigned Managed Identity - SystemAssignedManagedIdentitySystem Assigned Managed Identity
- Identity
Type User Assigned Managed Identity - UserAssignedManagedIdentityUser Assigned Managed Identity
- System
Assigned Managed Identity - SystemAssignedManagedIdentitySystem Assigned Managed Identity
- User
Assigned Managed Identity - UserAssignedManagedIdentityUser Assigned Managed Identity
- System
Assigned Managed Identity - SystemAssignedManagedIdentitySystem Assigned Managed Identity
- User
Assigned Managed Identity - UserAssignedManagedIdentityUser Assigned Managed Identity
- SYSTEM_ASSIGNED_MANAGED_IDENTITY
- SystemAssignedManagedIdentitySystem Assigned Managed Identity
- USER_ASSIGNED_MANAGED_IDENTITY
- UserAssignedManagedIdentityUser Assigned Managed Identity
- "System
Assigned Managed Identity" - SystemAssignedManagedIdentitySystem Assigned Managed Identity
- "User
Assigned Managed Identity" - UserAssignedManagedIdentityUser Assigned Managed Identity
Migration, MigrationArgs
Migration related configuration.- Assessment
Pulumi.
Azure Native. Azure Arc Data. Inputs. Migration Assessment - Migration assessments related configuration.
- Assessment
Migration
Assessment - Migration assessments related configuration.
- assessment
Migration
Assessment - Migration assessments related configuration.
- assessment
Migration
Assessment - Migration assessments related configuration.
- assessment
Migration
Assessment - 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.- Assessment
Upload stringTime - The time when Migration Assessment Report upload was last performed.
- Server
Assessments List<Pulumi.Azure Native. Azure Arc Data. Inputs. Migration Assessment Response Server Assessments> - Issues and warnings impacting the migration of SQL Server instance to particular Azure Migration Target.
- Sku
Recommendation Pulumi.Results Azure Native. Azure Arc Data. Inputs. Sku Recommendation Results Response - SKU Recommendation results for Azure migration targets for SQL Server.
- Enabled bool
- Indicates if migration assessment is enabled for this SQL Server instance.
- Assessment
Upload stringTime - The time when Migration Assessment Report upload was last performed.
- Server
Assessments []MigrationAssessment Response Server Assessments - Issues and warnings impacting the migration of SQL Server instance to particular Azure Migration Target.
- Sku
Recommendation SkuResults Recommendation Results Response - SKU Recommendation results for Azure migration targets for SQL Server.
- Enabled bool
- Indicates if migration assessment is enabled for this SQL Server instance.
- assessment
Upload StringTime - The time when Migration Assessment Report upload was last performed.
- server
Assessments List<MigrationAssessment Response Server Assessments> - Issues and warnings impacting the migration of SQL Server instance to particular Azure Migration Target.
- sku
Recommendation SkuResults Recommendation Results Response - 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 stringTime - The time when Migration Assessment Report upload was last performed.
- server
Assessments MigrationAssessment Response Server Assessments[] - Issues and warnings impacting the migration of SQL Server instance to particular Azure Migration Target.
- sku
Recommendation SkuResults Recommendation Results Response - 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_ strtime - The time when Migration Assessment Report upload was last performed.
- server_
assessments Sequence[MigrationAssessment Response Server Assessments] - Issues and warnings impacting the migration of SQL Server instance to particular Azure Migration Target.
- sku_
recommendation_ Skuresults Recommendation Results Response - SKU Recommendation results for Azure migration targets for SQL Server.
- enabled bool
- Indicates if migration assessment is enabled for this SQL Server instance.
- assessment
Upload StringTime - The time when Migration Assessment Report upload was last performed.
- server
Assessments List<Property Map> - Issues and warnings impacting the migration of SQL Server instance to particular Azure Migration Target.
- sku
Recommendation Property MapResults - 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
- Impact
Detail string - Name string
- Object
Type string
- Impact
Detail string - Name string
- Object
Type string
- impact
Detail String - name String
- object
Type String
- impact
Detail string - name string
- object
Type string
- impact_
detail str - name str
- object_
type str
- impact
Detail String - name String
- object
Type String
MigrationAssessmentResponseServerAssessments, MigrationAssessmentResponseServerAssessmentsArgs
- applies
To StringMigration Target Platform - feature
Id String - impacted
Objects List<Property Map> - issue
Category String - more
Information String
MigrationResponse, MigrationResponseArgs
Migration related configuration.- Assessment
Pulumi.
Azure Native. Azure Arc Data. Inputs. Migration Assessment Response - Migration assessments related configuration.
- Assessment
Migration
Assessment Response - Migration assessments related configuration.
- assessment
Migration
Assessment Response - Migration assessments related configuration.
- assessment
Migration
Assessment Response - Migration assessments related configuration.
- assessment
Migration
Assessment Response - 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.
- Mode
Mixed - MixedMixed mode authentication for SQL Server which includes windows and SQL Authentication.
- Mode
Windows - WindowsWindows Authentication for SQL Server.
- Mode
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.
- "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.
- Service
Type Engine - EngineSQL Server Database Services.
- Service
Type SSRS - SSRSSQL Server Reporting Services.
- Service
Type SSAS - SSASSQL Server Analysis Services.
- Service
Type SSIS - SSISSQL Server Integration Services.
- Service
Type 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.
- "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.- Monthly
Cost Pulumi.Azure Native. Azure Arc Data. Inputs. Sku Recommendation Results Monthly Cost Response - The Monthly cost of the particular SKU.
- Number
Of intServer Blocker Issues - Number of blocker issues to fix before migrating to the target platform.
- Recommendation
Status string - The target recommendation Status for this database.
- Target
Sku Pulumi.Azure Native. Azure Arc Data. Inputs. Sku Recommendation Results Azure Sql Database Response Target Sku
- Monthly
Cost SkuRecommendation Results Monthly Cost Response - The Monthly cost of the particular SKU.
- Number
Of intServer Blocker Issues - Number of blocker issues to fix before migrating to the target platform.
- Recommendation
Status string - The target recommendation Status for this database.
- Target
Sku SkuRecommendation Results Azure Sql Database Response Target Sku
- monthly
Cost SkuRecommendation Results Monthly Cost Response - The Monthly cost of the particular SKU.
- number
Of IntegerServer Blocker Issues - Number of blocker issues to fix before migrating to the target platform.
- recommendation
Status String - The target recommendation Status for this database.
- target
Sku SkuRecommendation Results Azure Sql Database Response Target Sku
- monthly
Cost SkuRecommendation Results Monthly Cost Response - The Monthly cost of the particular SKU.
- number
Of numberServer Blocker Issues - Number of blocker issues to fix before migrating to the target platform.
- recommendation
Status string - The target recommendation Status for this database.
- target
Sku SkuRecommendation Results Azure Sql Database Response Target Sku
- monthly_
cost SkuRecommendation Results Monthly Cost Response - The Monthly cost of the particular SKU.
- number_
of_ intserver_ blocker_ issues - Number of blocker issues to fix before migrating to the target platform.
- recommendation_
status str - The target recommendation Status for this database.
- target_
sku SkuRecommendation Results Azure Sql Database Response Target Sku
- monthly
Cost Property Map - The Monthly cost of the particular SKU.
- number
Of NumberServer Blocker Issues - Number of blocker issues to fix before migrating to the target platform.
- recommendation
Status String - The target recommendation Status for this database.
- target
Sku Property Map
SkuRecommendationResultsAzureSqlDatabaseResponseCategory, SkuRecommendationResultsAzureSqlDatabaseResponseCategoryArgs
- Compute
Tier string - The compute tier of the target SKU.
- Hardware
Type string - The hardware type of the target SKU.
- Sql
Purchasing stringModel - The SQL purchasing model of the target SKU.
- Sql
Service stringTier - The SQL service tier of the target SKU.
- Zone
Redundancy boolAvailable - Indicates if zone redundancy is available for the target SKU.
- Compute
Tier string - The compute tier of the target SKU.
- Hardware
Type string - The hardware type of the target SKU.
- Sql
Purchasing stringModel - The SQL purchasing model of the target SKU.
- Sql
Service stringTier - The SQL service tier of the target SKU.
- Zone
Redundancy boolAvailable - Indicates if zone redundancy is available for the target SKU.
- compute
Tier String - The compute tier of the target SKU.
- hardware
Type String - The hardware type of the target SKU.
- sql
Purchasing StringModel - The SQL purchasing model of the target SKU.
- sql
Service StringTier - The SQL service tier of the target SKU.
- zone
Redundancy BooleanAvailable - Indicates if zone redundancy is available for the target SKU.
- compute
Tier string - The compute tier of the target SKU.
- hardware
Type string - The hardware type of the target SKU.
- sql
Purchasing stringModel - The SQL purchasing model of the target SKU.
- sql
Service stringTier - The SQL service tier of the target SKU.
- zone
Redundancy booleanAvailable - 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_ strmodel - The SQL purchasing model of the target SKU.
- sql_
service_ strtier - The SQL service tier of the target SKU.
- zone_
redundancy_ boolavailable - Indicates if zone redundancy is available for the target SKU.
- compute
Tier String - The compute tier of the target SKU.
- hardware
Type String - The hardware type of the target SKU.
- sql
Purchasing StringModel - The SQL purchasing model of the target SKU.
- sql
Service StringTier - The SQL service tier of the target SKU.
- zone
Redundancy BooleanAvailable - Indicates if zone redundancy is available for the target SKU.
SkuRecommendationResultsAzureSqlDatabaseResponseTargetSku, SkuRecommendationResultsAzureSqlDatabaseResponseTargetSkuArgs
SkuRecommendationResultsAzureSqlManagedInstanceResponse, SkuRecommendationResultsAzureSqlManagedInstanceResponseArgs
SKU Recommendation results for Azure SQL Managed Instance.- Monthly
Cost Pulumi.Azure Native. Azure Arc Data. Inputs. Sku Recommendation Results Monthly Cost Response - The Monthly cost of the particular SKU.
- Number
Of intServer Blocker Issues - Number of blocker issues to fix before migrating to the target platform.
- Recommendation
Status string - The target recommendation Status for this database.
- Target
Sku Pulumi.Azure Native. Azure Arc Data. Inputs. Sku Recommendation Results Azure Sql Managed Instance Response Target Sku
- Monthly
Cost SkuRecommendation Results Monthly Cost Response - The Monthly cost of the particular SKU.
- Number
Of intServer Blocker Issues - Number of blocker issues to fix before migrating to the target platform.
- Recommendation
Status string - The target recommendation Status for this database.
- Target
Sku SkuRecommendation Results Azure Sql Managed Instance Response Target Sku
- monthly
Cost SkuRecommendation Results Monthly Cost Response - The Monthly cost of the particular SKU.
- number
Of IntegerServer Blocker Issues - Number of blocker issues to fix before migrating to the target platform.
- recommendation
Status String - The target recommendation Status for this database.
- target
Sku SkuRecommendation Results Azure Sql Managed Instance Response Target Sku
- monthly
Cost SkuRecommendation Results Monthly Cost Response - The Monthly cost of the particular SKU.
- number
Of numberServer Blocker Issues - Number of blocker issues to fix before migrating to the target platform.
- recommendation
Status string - The target recommendation Status for this database.
- target
Sku SkuRecommendation Results Azure Sql Managed Instance Response Target Sku
- monthly_
cost SkuRecommendation Results Monthly Cost Response - The Monthly cost of the particular SKU.
- number_
of_ intserver_ blocker_ issues - Number of blocker issues to fix before migrating to the target platform.
- recommendation_
status str - The target recommendation Status for this database.
- target_
sku SkuRecommendation Results Azure Sql Managed Instance Response Target Sku
- monthly
Cost Property Map - The Monthly cost of the particular SKU.
- number
Of NumberServer Blocker Issues - Number of blocker issues to fix before migrating to the target platform.
- recommendation
Status String - The target recommendation Status for this database.
- target
Sku Property Map
SkuRecommendationResultsAzureSqlManagedInstanceResponseCategory, SkuRecommendationResultsAzureSqlManagedInstanceResponseCategoryArgs
- Compute
Tier string - The compute tier of the target SKU.
- Hardware
Type string - The hardware type of the target SKU.
- Sql
Purchasing stringModel - The SQL purchasing model of the target SKU.
- Sql
Service stringTier - The SQL service tier of the target SKU.
- Zone
Redundancy boolAvailable - Indicates if zone redundancy is available for the target SKU.
- Compute
Tier string - The compute tier of the target SKU.
- Hardware
Type string - The hardware type of the target SKU.
- Sql
Purchasing stringModel - The SQL purchasing model of the target SKU.
- Sql
Service stringTier - The SQL service tier of the target SKU.
- Zone
Redundancy boolAvailable - Indicates if zone redundancy is available for the target SKU.
- compute
Tier String - The compute tier of the target SKU.
- hardware
Type String - The hardware type of the target SKU.
- sql
Purchasing StringModel - The SQL purchasing model of the target SKU.
- sql
Service StringTier - The SQL service tier of the target SKU.
- zone
Redundancy BooleanAvailable - Indicates if zone redundancy is available for the target SKU.
- compute
Tier string - The compute tier of the target SKU.
- hardware
Type string - The hardware type of the target SKU.
- sql
Purchasing stringModel - The SQL purchasing model of the target SKU.
- sql
Service stringTier - The SQL service tier of the target SKU.
- zone
Redundancy booleanAvailable - 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_ strmodel - The SQL purchasing model of the target SKU.
- sql_
service_ strtier - The SQL service tier of the target SKU.
- zone_
redundancy_ boolavailable - Indicates if zone redundancy is available for the target SKU.
- compute
Tier String - The compute tier of the target SKU.
- hardware
Type String - The hardware type of the target SKU.
- sql
Purchasing StringModel - The SQL purchasing model of the target SKU.
- sql
Service StringTier - The SQL service tier of the target SKU.
- zone
Redundancy BooleanAvailable - Indicates if zone redundancy is available for the target SKU.
SkuRecommendationResultsAzureSqlManagedInstanceResponseTargetSku, SkuRecommendationResultsAzureSqlManagedInstanceResponseTargetSkuArgs
SkuRecommendationResultsAzureSqlVirtualMachineResponse, SkuRecommendationResultsAzureSqlVirtualMachineResponseArgs
SKU Recommendation results for Azure SQL Virtual Machine.- Monthly
Cost Pulumi.Azure Native. Azure Arc Data. Inputs. Sku Recommendation Results Monthly Cost Response - The Monthly cost of the particular SKU.
- Number
Of intServer Blocker Issues - Number of blocker issues to fix before migrating to the target platform.
- Recommendation
Status string - The target recommendation Status for this database.
- Target
Sku Pulumi.Azure Native. Azure Arc Data. Inputs. Sku Recommendation Results Azure Sql Virtual Machine Response Target Sku
- Monthly
Cost SkuRecommendation Results Monthly Cost Response - The Monthly cost of the particular SKU.
- Number
Of intServer Blocker Issues - Number of blocker issues to fix before migrating to the target platform.
- Recommendation
Status string - The target recommendation Status for this database.
- Target
Sku SkuRecommendation Results Azure Sql Virtual Machine Response Target Sku
- monthly
Cost SkuRecommendation Results Monthly Cost Response - The Monthly cost of the particular SKU.
- number
Of IntegerServer Blocker Issues - Number of blocker issues to fix before migrating to the target platform.
- recommendation
Status String - The target recommendation Status for this database.
- target
Sku SkuRecommendation Results Azure Sql Virtual Machine Response Target Sku
- monthly
Cost SkuRecommendation Results Monthly Cost Response - The Monthly cost of the particular SKU.
- number
Of numberServer Blocker Issues - Number of blocker issues to fix before migrating to the target platform.
- recommendation
Status string - The target recommendation Status for this database.
- target
Sku SkuRecommendation Results Azure Sql Virtual Machine Response Target Sku
- monthly_
cost SkuRecommendation Results Monthly Cost Response - The Monthly cost of the particular SKU.
- number_
of_ intserver_ blocker_ issues - Number of blocker issues to fix before migrating to the target platform.
- recommendation_
status str - The target recommendation Status for this database.
- target_
sku SkuRecommendation Results Azure Sql Virtual Machine Response Target Sku
- monthly
Cost Property Map - The Monthly cost of the particular SKU.
- number
Of NumberServer Blocker Issues - Number of blocker issues to fix before migrating to the target platform.
- recommendation
Status String - The target recommendation Status for this database.
- target
Sku Property Map
SkuRecommendationResultsAzureSqlVirtualMachineResponseCategory, SkuRecommendationResultsAzureSqlVirtualMachineResponseCategoryArgs
- Available
Vm List<string>Skus - Available VM SKUs for the Azure SQL Virtual Machine.
- Virtual
Machine stringFamily - The virtual machine family of the target SKU.
- Available
Vm []stringSkus - Available VM SKUs for the Azure SQL Virtual Machine.
- Virtual
Machine stringFamily - The virtual machine family of the target SKU.
- available
Vm List<String>Skus - Available VM SKUs for the Azure SQL Virtual Machine.
- virtual
Machine StringFamily - The virtual machine family of the target SKU.
- available
Vm string[]Skus - Available VM SKUs for the Azure SQL Virtual Machine.
- virtual
Machine stringFamily - The virtual machine family of the target SKU.
- available_
vm_ Sequence[str]skus - Available VM SKUs for the Azure SQL Virtual Machine.
- virtual_
machine_ strfamily - The virtual machine family of the target SKU.
- available
Vm List<String>Skus - Available VM SKUs for the Azure SQL Virtual Machine.
- virtual
Machine StringFamily - The virtual machine family of the target SKU.
SkuRecommendationResultsAzureSqlVirtualMachineResponseTargetSku, SkuRecommendationResultsAzureSqlVirtualMachineResponseTargetSkuArgs
SkuRecommendationResultsMonthlyCostResponse, SkuRecommendationResultsMonthlyCostResponseArgs
The Monthly cost of the particular SKU.- Compute
Cost double - Represents the Cost of Compute.
- Storage
Cost double - Represents the Cost of Storage.
- Total
Cost double - Represents the Total Cost.
- Compute
Cost float64 - Represents the Cost of Compute.
- Storage
Cost float64 - Represents the Cost of Storage.
- Total
Cost float64 - Represents the Total Cost.
- compute
Cost Double - Represents the Cost of Compute.
- storage
Cost Double - Represents the Cost of Storage.
- total
Cost Double - Represents the Total Cost.
- compute
Cost number - Represents the Cost of Compute.
- storage
Cost number - Represents the Cost of Storage.
- total
Cost 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.
- compute
Cost Number - Represents the Cost of Compute.
- storage
Cost Number - Represents the Cost of Storage.
- total
Cost Number - Represents the Total Cost.
SkuRecommendationResultsResponse, SkuRecommendationResultsResponseArgs
SKU Recommendation results for Azure migration targets for SQL Server.- Azure
Sql Pulumi.Database Azure Native. Azure Arc Data. Inputs. Sku Recommendation Results Azure Sql Database Response - SKU Recommendation results for Azure SQL Database.
- Azure
Sql Pulumi.Managed Instance Azure Native. Azure Arc Data. Inputs. Sku Recommendation Results Azure Sql Managed Instance Response - SKU Recommendation results for Azure SQL Managed Instance.
- Azure
Sql Pulumi.Virtual Machine Azure Native. Azure Arc Data. Inputs. Sku Recommendation Results Azure Sql Virtual Machine Response - SKU Recommendation results for Azure SQL Virtual Machine.
- Azure
Sql SkuDatabase Recommendation Results Azure Sql Database Response - SKU Recommendation results for Azure SQL Database.
- Azure
Sql SkuManaged Instance Recommendation Results Azure Sql Managed Instance Response - SKU Recommendation results for Azure SQL Managed Instance.
- Azure
Sql SkuVirtual Machine Recommendation Results Azure Sql Virtual Machine Response - SKU Recommendation results for Azure SQL Virtual Machine.
- azure
Sql SkuDatabase Recommendation Results Azure Sql Database Response - SKU Recommendation results for Azure SQL Database.
- azure
Sql SkuManaged Instance Recommendation Results Azure Sql Managed Instance Response - SKU Recommendation results for Azure SQL Managed Instance.
- azure
Sql SkuVirtual Machine Recommendation Results Azure Sql Virtual Machine Response - SKU Recommendation results for Azure SQL Virtual Machine.
- azure
Sql SkuDatabase Recommendation Results Azure Sql Database Response - SKU Recommendation results for Azure SQL Database.
- azure
Sql SkuManaged Instance Recommendation Results Azure Sql Managed Instance Response - SKU Recommendation results for Azure SQL Managed Instance.
- azure
Sql SkuVirtual Machine Recommendation Results Azure Sql Virtual Machine Response - SKU Recommendation results for Azure SQL Virtual Machine.
- azure_
sql_ Skudatabase Recommendation Results Azure Sql Database Response - SKU Recommendation results for Azure SQL Database.
- azure_
sql_ Skumanaged_ instance Recommendation Results Azure Sql Managed Instance Response - SKU Recommendation results for Azure SQL Managed Instance.
- azure_
sql_ Skuvirtual_ machine Recommendation Results Azure Sql Virtual Machine Response - SKU Recommendation results for Azure SQL Virtual Machine.
- azure
Sql Property MapDatabase - SKU Recommendation results for Azure SQL Database.
- azure
Sql Property MapManaged Instance - SKU Recommendation results for Azure SQL Managed Instance.
- azure
Sql Property MapVirtual Machine - SKU Recommendation results for Azure SQL Virtual Machine.
SqlServerInstanceProperties, SqlServerInstancePropertiesArgs
Properties of SqlServerInstance.- Authentication
Pulumi.
Azure Native. Azure Arc Data. Inputs. Authentication - Authentication related configuration for the SQL Server Instance.
- Backup
Policy Pulumi.Azure Native. Azure Arc Data. Inputs. Backup Policy - The backup profile for the SQL server.
- Client
Connection Pulumi.Azure Native. Azure Arc Data. Inputs. Client Connection - 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.
Azure Native. Azure Arc Data. Edition Type - SQL Server edition.
- Host
Type string | Pulumi.Azure Native. Azure Arc Data. Host Type - Type of host for Azure Arc SQL Server
- Instance
Name string - SQL Server instance name.
- Migration
Pulumi.
Azure Native. Azure Arc Data. Inputs. Migration - Migration related configuration.
- Monitoring
Pulumi.
Azure Native. Azure Arc Data. Inputs. Monitoring - The monitoring configuration.
- Service
Type string | Pulumi.Azure Native. Azure Arc Data. Service Type - Indicates if the resource represents a SQL Server engine or a SQL Server component service installed on the host.
- Upgrade
Locked stringUntil - 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.
Azure Native. Azure Arc Data. Sql Version - 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 string
- The number of total cores of the Operating System Environment (OSE) hosting the SQL Server instance.
- Edition
string | Edition
Type - SQL Server edition.
- Host
Type string | HostType - Type of host for Azure Arc SQL Server
- Instance
Name string - SQL Server instance name.
- Migration Migration
- Migration related configuration.
- Monitoring Monitoring
- The monitoring configuration.
- Service
Type string | ServiceType - Indicates if the resource represents a SQL Server engine or a SQL Server component service installed on the host.
- Upgrade
Locked stringUntil - 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
Version - 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 String
- The number of total cores of the Operating System Environment (OSE) hosting the SQL Server instance.
- edition
String | Edition
Type - SQL Server edition.
- host
Type String | HostType - Type of host for Azure Arc SQL Server
- instance
Name String - SQL Server instance name.
- migration Migration
- Migration related configuration.
- monitoring Monitoring
- The monitoring configuration.
- service
Type String | ServiceType - Indicates if the resource represents a SQL Server engine or a SQL Server component service installed on the host.
- upgrade
Locked StringUntil - 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
Version - 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 string
- The number of total cores of the Operating System Environment (OSE) hosting the SQL Server instance.
- edition
string | Edition
Type - SQL Server edition.
- host
Type string | HostType - Type of host for Azure Arc SQL Server
- instance
Name string - SQL Server instance name.
- migration Migration
- Migration related configuration.
- monitoring Monitoring
- The monitoring configuration.
- service
Type string | ServiceType - Indicates if the resource represents a SQL Server engine or a SQL Server component service installed on the host.
- upgrade
Locked stringUntil - 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
Version - 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 | Edition
Type - 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_ struntil - 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
Version - SQL Server version.
- authentication Property Map
- Authentication related configuration for the SQL Server Instance.
- backup
Policy Property Map - The backup profile for the SQL server.
- client
Connection 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.
- host
Type 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
- instance
Name String - SQL Server instance name.
- migration Property Map
- Migration related configuration.
- monitoring Property Map
- The monitoring configuration.
- service
Type 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.
- upgrade
Locked StringUntil - 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.- Always
On stringRole - The role of the SQL Server, based on availability.
- Azure
Defender stringStatus - Status of Azure Defender.
- Azure
Defender stringStatus Last Updated - Timestamp of last Azure Defender status update.
- Collation string
- SQL Server collation.
- Container
Resource stringId - ARM Resource id of the container resource (Azure Arc for Servers).
- Create
Time string - The time when the resource was created.
- Current
Version string - SQL Server current version.
- Db
Master boolKey Exists - Indicates whether database master key exists in SQL Server.
- Is
Digi boolCert Pki Cert Trust Configured - Indicates whether DigiCert PKI root-authority certificate (trusted by Azure) exists in SQL Server and trusted for Azure database.windows.net domains.
- Is
Hadr boolEnabled - Indicates whether always On availability groups is enabled in SQL Server.
- Is
Microsoft boolPki Cert Trust Configured - Indicates whether Microsoft PKI root-authority certificate (trusted by Azure) exists in SQL Server and trusted for Azure database.windows.net domains.
- Last
Inventory stringUpload Time - The time when last successful inventory upload was performed.
- Last
Usage stringUpload Time - The time when last successful usage upload was performed.
- License
Type string - SQL Server license type.
- Max
Server doubleMemory MB - max server memory (MB) value configured for this instance.
- Patch
Level string - SQL Server update level.
- Product
Id string - SQL Server product ID.
- Provisioning
State string - The provisioning state of the Arc-enabled SQL Server resource.
- Status string
- The cloud connectivity status.
- Tcp
Dynamic stringPorts - Dynamic TCP ports used by SQL Server.
- Tcp
Static stringPorts - Static TCP ports used by SQL Server.
- Trace
Flags 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.
- Vm
Id string - The unique ID of the hybrid machine that this resource belongs to.
- Authentication
Pulumi.
Azure Native. Azure Arc Data. Inputs. Authentication Response - Authentication related configuration for the SQL Server Instance.
- Backup
Policy Pulumi.Azure Native. Azure Arc Data. Inputs. Backup Policy Response - The backup profile for the SQL server.
- Client
Connection Pulumi.Azure Native. Azure Arc Data. Inputs. Client Connection Response - Client connection related configuration.
- Cores string
- The number of total cores of the Operating System Environment (OSE) hosting the SQL Server instance.
- Database
Mirroring Pulumi.Endpoint Azure Native. Azure Arc Data. Inputs. DBMEndpoint Response - Database mirroring endpoint related properties.
- Edition string
- SQL Server edition.
- Failover
Cluster Pulumi.Azure Native. Azure Arc Data. Inputs. Failover Cluster Response - Failover Cluster Instance properties.
- Host
Type string - Type of host for Azure Arc SQL Server
- Instance
Name string - SQL Server instance name.
- Migration
Pulumi.
Azure Native. Azure Arc Data. Inputs. Migration Response - Migration related configuration.
- Monitoring
Pulumi.
Azure Native. Azure Arc Data. Inputs. Monitoring Response - The monitoring configuration.
- Service
Type string - Indicates if the resource represents a SQL Server engine or a SQL Server component service installed on the host.
- Upgrade
Locked stringUntil - 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 stringRole - The role of the SQL Server, based on availability.
- Azure
Defender stringStatus - Status of Azure Defender.
- Azure
Defender stringStatus Last Updated - Timestamp of last Azure Defender status update.
- Collation string
- SQL Server collation.
- Container
Resource stringId - ARM Resource id of the container resource (Azure Arc for Servers).
- Create
Time string - The time when the resource was created.
- Current
Version string - SQL Server current version.
- Db
Master boolKey Exists - Indicates whether database master key exists in SQL Server.
- Is
Digi boolCert Pki Cert Trust Configured - Indicates whether DigiCert PKI root-authority certificate (trusted by Azure) exists in SQL Server and trusted for Azure database.windows.net domains.
- Is
Hadr boolEnabled - Indicates whether always On availability groups is enabled in SQL Server.
- Is
Microsoft boolPki Cert Trust Configured - Indicates whether Microsoft PKI root-authority certificate (trusted by Azure) exists in SQL Server and trusted for Azure database.windows.net domains.
- Last
Inventory stringUpload Time - The time when last successful inventory upload was performed.
- Last
Usage stringUpload Time - The time when last successful usage upload was performed.
- License
Type string - SQL Server license type.
- Max
Server float64Memory MB - max server memory (MB) value configured for this instance.
- Patch
Level string - SQL Server update level.
- Product
Id string - SQL Server product ID.
- Provisioning
State string - The provisioning state of the Arc-enabled SQL Server resource.
- Status string
- The cloud connectivity status.
- Tcp
Dynamic stringPorts - Dynamic TCP ports used by SQL Server.
- Tcp
Static stringPorts - Static TCP ports used by SQL Server.
- Trace
Flags []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.
- Vm
Id string - The unique ID of the hybrid machine that this resource belongs to.
- Authentication
Authentication
Response - Authentication related configuration for the SQL Server Instance.
- Backup
Policy BackupPolicy Response - The backup profile for the SQL server.
- Client
Connection ClientConnection Response - Client connection related configuration.
- Cores string
- The number of total cores of the Operating System Environment (OSE) hosting the SQL Server instance.
- Database
Mirroring DBMEndpointEndpoint Response - Database mirroring endpoint related properties.
- Edition string
- SQL Server edition.
- Failover
Cluster FailoverCluster Response - Failover Cluster Instance properties.
- Host
Type string - Type of host for Azure Arc SQL Server
- Instance
Name string - SQL Server instance name.
- Migration
Migration
Response - Migration related configuration.
- Monitoring
Monitoring
Response - The monitoring configuration.
- Service
Type string - Indicates if the resource represents a SQL Server engine or a SQL Server component service installed on the host.
- Upgrade
Locked stringUntil - 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 StringRole - The role of the SQL Server, based on availability.
- azure
Defender StringStatus - Status of Azure Defender.
- azure
Defender StringStatus Last Updated - Timestamp of last Azure Defender status update.
- collation String
- SQL Server collation.
- container
Resource StringId - ARM Resource id of the container resource (Azure Arc for Servers).
- create
Time String - The time when the resource was created.
- current
Version String - SQL Server current version.
- db
Master BooleanKey Exists - Indicates whether database master key exists in SQL Server.
- is
Digi BooleanCert Pki Cert Trust Configured - Indicates whether DigiCert PKI root-authority certificate (trusted by Azure) exists in SQL Server and trusted for Azure database.windows.net domains.
- is
Hadr BooleanEnabled - Indicates whether always On availability groups is enabled in SQL Server.
- is
Microsoft BooleanPki Cert Trust Configured - Indicates whether Microsoft PKI root-authority certificate (trusted by Azure) exists in SQL Server and trusted for Azure database.windows.net domains.
- last
Inventory StringUpload Time - The time when last successful inventory upload was performed.
- last
Usage StringUpload Time - The time when last successful usage upload was performed.
- license
Type String - SQL Server license type.
- max
Server DoubleMemory MB - max server memory (MB) value configured for this instance.
- patch
Level String - SQL Server update level.
- product
Id String - SQL Server product ID.
- provisioning
State String - The provisioning state of the Arc-enabled SQL Server resource.
- status String
- The cloud connectivity status.
- tcp
Dynamic StringPorts - Dynamic TCP ports used by SQL Server.
- tcp
Static StringPorts - Static TCP ports used by SQL Server.
- trace
Flags List<Integer> - An array of integers, where each value represents the enabled trace flags in SQL Server.
- v
Core String - The number of logical processors used by the SQL Server instance.
- vm
Id String - The unique ID of the hybrid machine that this resource belongs to.
- authentication
Authentication
Response - Authentication related configuration for the SQL Server Instance.
- backup
Policy BackupPolicy Response - The backup profile for the SQL server.
- client
Connection ClientConnection Response - Client connection related configuration.
- cores String
- The number of total cores of the Operating System Environment (OSE) hosting the SQL Server instance.
- database
Mirroring DBMEndpointEndpoint Response - Database mirroring endpoint related properties.
- edition String
- SQL Server edition.
- failover
Cluster FailoverCluster Response - Failover Cluster Instance properties.
- host
Type String - Type of host for Azure Arc SQL Server
- instance
Name String - SQL Server instance name.
- migration
Migration
Response - Migration related configuration.
- monitoring
Monitoring
Response - The monitoring configuration.
- service
Type String - Indicates if the resource represents a SQL Server engine or a SQL Server component service installed on the host.
- upgrade
Locked StringUntil - 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 stringRole - The role of the SQL Server, based on availability.
- azure
Defender stringStatus - Status of Azure Defender.
- azure
Defender stringStatus Last Updated - Timestamp of last Azure Defender status update.
- collation string
- SQL Server collation.
- container
Resource stringId - ARM Resource id of the container resource (Azure Arc for Servers).
- create
Time string - The time when the resource was created.
- current
Version string - SQL Server current version.
- db
Master booleanKey Exists - Indicates whether database master key exists in SQL Server.
- is
Digi booleanCert Pki Cert Trust Configured - Indicates whether DigiCert PKI root-authority certificate (trusted by Azure) exists in SQL Server and trusted for Azure database.windows.net domains.
- is
Hadr booleanEnabled - Indicates whether always On availability groups is enabled in SQL Server.
- is
Microsoft booleanPki Cert Trust Configured - Indicates whether Microsoft PKI root-authority certificate (trusted by Azure) exists in SQL Server and trusted for Azure database.windows.net domains.
- last
Inventory stringUpload Time - The time when last successful inventory upload was performed.
- last
Usage stringUpload Time - The time when last successful usage upload was performed.
- license
Type string - SQL Server license type.
- max
Server numberMemory MB - max server memory (MB) value configured for this instance.
- patch
Level string - SQL Server update level.
- product
Id string - SQL Server product ID.
- provisioning
State string - The provisioning state of the Arc-enabled SQL Server resource.
- status string
- The cloud connectivity status.
- tcp
Dynamic stringPorts - Dynamic TCP ports used by SQL Server.
- tcp
Static stringPorts - Static TCP ports used by SQL Server.
- trace
Flags number[] - An array of integers, where each value represents the enabled trace flags in SQL Server.
- v
Core string - The number of logical processors used by the SQL Server instance.
- vm
Id string - The unique ID of the hybrid machine that this resource belongs to.
- authentication
Authentication
Response - Authentication related configuration for the SQL Server Instance.
- backup
Policy BackupPolicy Response - The backup profile for the SQL server.
- client
Connection ClientConnection Response - Client connection related configuration.
- cores string
- The number of total cores of the Operating System Environment (OSE) hosting the SQL Server instance.
- database
Mirroring DBMEndpointEndpoint Response - Database mirroring endpoint related properties.
- edition string
- SQL Server edition.
- failover
Cluster FailoverCluster Response - Failover Cluster Instance properties.
- host
Type string - Type of host for Azure Arc SQL Server
- instance
Name string - SQL Server instance name.
- migration
Migration
Response - Migration related configuration.
- monitoring
Monitoring
Response - The monitoring configuration.
- service
Type string - Indicates if the resource represents a SQL Server engine or a SQL Server component service installed on the host.
- upgrade
Locked stringUntil - 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_ strrole - The role of the SQL Server, based on availability.
- azure_
defender_ strstatus - Status of Azure Defender.
- azure_
defender_ strstatus_ last_ updated - Timestamp of last Azure Defender status update.
- collation str
- SQL Server collation.
- container_
resource_ strid - 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_ boolkey_ exists - Indicates whether database master key exists in SQL Server.
- is_
digi_ boolcert_ pki_ cert_ trust_ configured - Indicates whether DigiCert PKI root-authority certificate (trusted by Azure) exists in SQL Server and trusted for Azure database.windows.net domains.
- is_
hadr_ boolenabled - Indicates whether always On availability groups is enabled in SQL Server.
- is_
microsoft_ boolpki_ cert_ trust_ configured - Indicates whether Microsoft PKI root-authority certificate (trusted by Azure) exists in SQL Server and trusted for Azure database.windows.net domains.
- last_
inventory_ strupload_ time - The time when last successful inventory upload was performed.
- last_
usage_ strupload_ time - The time when last successful usage upload was performed.
- license_
type str - SQL Server license type.
- max_
server_ floatmemory_ mb - 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_ strports - Dynamic TCP ports used by SQL Server.
- tcp_
static_ strports - 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
Authentication
Response - Authentication related configuration for the SQL Server Instance.
- backup_
policy BackupPolicy Response - The backup profile for the SQL server.
- client_
connection ClientConnection Response - Client connection related configuration.
- cores str
- The number of total cores of the Operating System Environment (OSE) hosting the SQL Server instance.
- database_
mirroring_ DBMEndpointendpoint Response - Database mirroring endpoint related properties.
- edition str
- SQL Server edition.
- failover_
cluster FailoverCluster Response - Failover Cluster Instance properties.
- host_
type str - Type of host for Azure Arc SQL Server
- instance_
name str - SQL Server instance name.
- migration
Migration
Response - Migration related configuration.
- monitoring
Monitoring
Response - 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_ struntil - 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.
- always
On StringRole - The role of the SQL Server, based on availability.
- azure
Defender StringStatus - Status of Azure Defender.
- azure
Defender StringStatus Last Updated - Timestamp of last Azure Defender status update.
- collation String
- SQL Server collation.
- container
Resource StringId - ARM Resource id of the container resource (Azure Arc for Servers).
- create
Time String - The time when the resource was created.
- current
Version String - SQL Server current version.
- db
Master BooleanKey Exists - Indicates whether database master key exists in SQL Server.
- is
Digi BooleanCert Pki Cert Trust Configured - Indicates whether DigiCert PKI root-authority certificate (trusted by Azure) exists in SQL Server and trusted for Azure database.windows.net domains.
- is
Hadr BooleanEnabled - Indicates whether always On availability groups is enabled in SQL Server.
- is
Microsoft BooleanPki Cert Trust Configured - Indicates whether Microsoft PKI root-authority certificate (trusted by Azure) exists in SQL Server and trusted for Azure database.windows.net domains.
- last
Inventory StringUpload Time - The time when last successful inventory upload was performed.
- last
Usage StringUpload Time - The time when last successful usage upload was performed.
- license
Type String - SQL Server license type.
- max
Server NumberMemory MB - max server memory (MB) value configured for this instance.
- patch
Level String - SQL Server update level.
- product
Id String - SQL Server product ID.
- provisioning
State String - The provisioning state of the Arc-enabled SQL Server resource.
- status String
- The cloud connectivity status.
- tcp
Dynamic StringPorts - Dynamic TCP ports used by SQL Server.
- tcp
Static StringPorts - Static TCP ports used by SQL Server.
- trace
Flags List<Number> - An array of integers, where each value represents the enabled trace flags in SQL Server.
- v
Core String - The number of logical processors used by the SQL Server instance.
- vm
Id String - The unique ID of the hybrid machine that this resource belongs to.
- authentication Property Map
- Authentication related configuration for the SQL Server Instance.
- backup
Policy Property Map - The backup profile for the SQL server.
- client
Connection Property Map - Client connection related configuration.
- cores String
- The number of total cores of the Operating System Environment (OSE) hosting the SQL Server instance.
- database
Mirroring Property MapEndpoint - Database mirroring endpoint related properties.
- edition String
- SQL Server edition.
- failover
Cluster Property Map - Failover Cluster Instance properties.
- host
Type String - Type of host for Azure Arc SQL Server
- instance
Name String - SQL Server instance name.
- migration Property Map
- Migration related configuration.
- monitoring Property Map
- The monitoring configuration.
- service
Type String - Indicates if the resource represents a SQL Server engine or a SQL Server component service installed on the host.
- upgrade
Locked StringUntil - 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
- Sql
Version_SQL_Server_2012 - SQL Server 2012
- Sql
Version_SQL_Server_2014 - SQL Server 2014
- Sql
Version_SQL_Server_2016 - SQL Server 2016
- Sql
Version_SQL_Server_2017 - SQL Server 2017
- Sql
Version_SQL_Server_2019 - SQL Server 2019
- Sql
Version_SQL_Server_2022 - SQL Server 2022
- Sql
Version 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
- 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.- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native: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
