We recommend using Azure Native.
azure.mssql.ManagedDatabase
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = new azure.core.ResourceGroup("example", {
    name: "example",
    location: "West Europe",
});
const exampleVirtualNetwork = new azure.network.VirtualNetwork("example", {
    name: "example",
    location: example.location,
    resourceGroupName: example.name,
    addressSpaces: ["10.0.0.0/16"],
});
const exampleSubnet = new azure.network.Subnet("example", {
    name: "example",
    resourceGroupName: example.name,
    virtualNetworkName: exampleVirtualNetwork.name,
    addressPrefixes: ["10.0.2.0/24"],
});
const exampleManagedInstance = new azure.mssql.ManagedInstance("example", {
    name: "managedsqlinstance",
    resourceGroupName: example.name,
    location: example.location,
    licenseType: "BasePrice",
    skuName: "GP_Gen5",
    storageSizeInGb: 32,
    subnetId: exampleSubnet.id,
    vcores: 4,
    administratorLogin: "msadministrator",
    administratorLoginPassword: "thisIsDog11",
});
const exampleManagedDatabase = new azure.mssql.ManagedDatabase("example", {
    name: "example",
    managedInstanceId: exampleManagedInstance.id,
});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
    name="example",
    location="West Europe")
example_virtual_network = azure.network.VirtualNetwork("example",
    name="example",
    location=example.location,
    resource_group_name=example.name,
    address_spaces=["10.0.0.0/16"])
example_subnet = azure.network.Subnet("example",
    name="example",
    resource_group_name=example.name,
    virtual_network_name=example_virtual_network.name,
    address_prefixes=["10.0.2.0/24"])
example_managed_instance = azure.mssql.ManagedInstance("example",
    name="managedsqlinstance",
    resource_group_name=example.name,
    location=example.location,
    license_type="BasePrice",
    sku_name="GP_Gen5",
    storage_size_in_gb=32,
    subnet_id=example_subnet.id,
    vcores=4,
    administrator_login="msadministrator",
    administrator_login_password="thisIsDog11")
example_managed_database = azure.mssql.ManagedDatabase("example",
    name="example",
    managed_instance_id=example_managed_instance.id)
package main
import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/mssql"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/network"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
			Name:     pulumi.String("example"),
			Location: pulumi.String("West Europe"),
		})
		if err != nil {
			return err
		}
		exampleVirtualNetwork, err := network.NewVirtualNetwork(ctx, "example", &network.VirtualNetworkArgs{
			Name:              pulumi.String("example"),
			Location:          example.Location,
			ResourceGroupName: example.Name,
			AddressSpaces: pulumi.StringArray{
				pulumi.String("10.0.0.0/16"),
			},
		})
		if err != nil {
			return err
		}
		exampleSubnet, err := network.NewSubnet(ctx, "example", &network.SubnetArgs{
			Name:               pulumi.String("example"),
			ResourceGroupName:  example.Name,
			VirtualNetworkName: exampleVirtualNetwork.Name,
			AddressPrefixes: pulumi.StringArray{
				pulumi.String("10.0.2.0/24"),
			},
		})
		if err != nil {
			return err
		}
		exampleManagedInstance, err := mssql.NewManagedInstance(ctx, "example", &mssql.ManagedInstanceArgs{
			Name:                       pulumi.String("managedsqlinstance"),
			ResourceGroupName:          example.Name,
			Location:                   example.Location,
			LicenseType:                pulumi.String("BasePrice"),
			SkuName:                    pulumi.String("GP_Gen5"),
			StorageSizeInGb:            pulumi.Int(32),
			SubnetId:                   exampleSubnet.ID(),
			Vcores:                     pulumi.Int(4),
			AdministratorLogin:         pulumi.String("msadministrator"),
			AdministratorLoginPassword: pulumi.String("thisIsDog11"),
		})
		if err != nil {
			return err
		}
		_, err = mssql.NewManagedDatabase(ctx, "example", &mssql.ManagedDatabaseArgs{
			Name:              pulumi.String("example"),
			ManagedInstanceId: exampleManagedInstance.ID(),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() => 
{
    var example = new Azure.Core.ResourceGroup("example", new()
    {
        Name = "example",
        Location = "West Europe",
    });
    var exampleVirtualNetwork = new Azure.Network.VirtualNetwork("example", new()
    {
        Name = "example",
        Location = example.Location,
        ResourceGroupName = example.Name,
        AddressSpaces = new[]
        {
            "10.0.0.0/16",
        },
    });
    var exampleSubnet = new Azure.Network.Subnet("example", new()
    {
        Name = "example",
        ResourceGroupName = example.Name,
        VirtualNetworkName = exampleVirtualNetwork.Name,
        AddressPrefixes = new[]
        {
            "10.0.2.0/24",
        },
    });
    var exampleManagedInstance = new Azure.MSSql.ManagedInstance("example", new()
    {
        Name = "managedsqlinstance",
        ResourceGroupName = example.Name,
        Location = example.Location,
        LicenseType = "BasePrice",
        SkuName = "GP_Gen5",
        StorageSizeInGb = 32,
        SubnetId = exampleSubnet.Id,
        Vcores = 4,
        AdministratorLogin = "msadministrator",
        AdministratorLoginPassword = "thisIsDog11",
    });
    var exampleManagedDatabase = new Azure.MSSql.ManagedDatabase("example", new()
    {
        Name = "example",
        ManagedInstanceId = exampleManagedInstance.Id,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.network.VirtualNetwork;
import com.pulumi.azure.network.VirtualNetworkArgs;
import com.pulumi.azure.network.Subnet;
import com.pulumi.azure.network.SubnetArgs;
import com.pulumi.azure.mssql.ManagedInstance;
import com.pulumi.azure.mssql.ManagedInstanceArgs;
import com.pulumi.azure.mssql.ManagedDatabase;
import com.pulumi.azure.mssql.ManagedDatabaseArgs;
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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
            .name("example")
            .location("West Europe")
            .build());
        var exampleVirtualNetwork = new VirtualNetwork("exampleVirtualNetwork", VirtualNetworkArgs.builder()
            .name("example")
            .location(example.location())
            .resourceGroupName(example.name())
            .addressSpaces("10.0.0.0/16")
            .build());
        var exampleSubnet = new Subnet("exampleSubnet", SubnetArgs.builder()
            .name("example")
            .resourceGroupName(example.name())
            .virtualNetworkName(exampleVirtualNetwork.name())
            .addressPrefixes("10.0.2.0/24")
            .build());
        var exampleManagedInstance = new ManagedInstance("exampleManagedInstance", ManagedInstanceArgs.builder()
            .name("managedsqlinstance")
            .resourceGroupName(example.name())
            .location(example.location())
            .licenseType("BasePrice")
            .skuName("GP_Gen5")
            .storageSizeInGb(32)
            .subnetId(exampleSubnet.id())
            .vcores(4)
            .administratorLogin("msadministrator")
            .administratorLoginPassword("thisIsDog11")
            .build());
        var exampleManagedDatabase = new ManagedDatabase("exampleManagedDatabase", ManagedDatabaseArgs.builder()
            .name("example")
            .managedInstanceId(exampleManagedInstance.id())
            .build());
    }
}
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example
      location: West Europe
  exampleVirtualNetwork:
    type: azure:network:VirtualNetwork
    name: example
    properties:
      name: example
      location: ${example.location}
      resourceGroupName: ${example.name}
      addressSpaces:
        - 10.0.0.0/16
  exampleSubnet:
    type: azure:network:Subnet
    name: example
    properties:
      name: example
      resourceGroupName: ${example.name}
      virtualNetworkName: ${exampleVirtualNetwork.name}
      addressPrefixes:
        - 10.0.2.0/24
  exampleManagedInstance:
    type: azure:mssql:ManagedInstance
    name: example
    properties:
      name: managedsqlinstance
      resourceGroupName: ${example.name}
      location: ${example.location}
      licenseType: BasePrice
      skuName: GP_Gen5
      storageSizeInGb: 32
      subnetId: ${exampleSubnet.id}
      vcores: 4
      administratorLogin: msadministrator
      administratorLoginPassword: thisIsDog11
  exampleManagedDatabase:
    type: azure:mssql:ManagedDatabase
    name: example
    properties:
      name: example
      managedInstanceId: ${exampleManagedInstance.id}
Create ManagedDatabase Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ManagedDatabase(name: string, args: ManagedDatabaseArgs, opts?: CustomResourceOptions);@overload
def ManagedDatabase(resource_name: str,
                    args: ManagedDatabaseArgs,
                    opts: Optional[ResourceOptions] = None)
@overload
def ManagedDatabase(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    managed_instance_id: Optional[str] = None,
                    long_term_retention_policy: Optional[ManagedDatabaseLongTermRetentionPolicyArgs] = None,
                    name: Optional[str] = None,
                    point_in_time_restore: Optional[ManagedDatabasePointInTimeRestoreArgs] = None,
                    short_term_retention_days: Optional[int] = None,
                    tags: Optional[Mapping[str, str]] = None)func NewManagedDatabase(ctx *Context, name string, args ManagedDatabaseArgs, opts ...ResourceOption) (*ManagedDatabase, error)public ManagedDatabase(string name, ManagedDatabaseArgs args, CustomResourceOptions? opts = null)
public ManagedDatabase(String name, ManagedDatabaseArgs args)
public ManagedDatabase(String name, ManagedDatabaseArgs args, CustomResourceOptions options)
type: azure:mssql:ManagedDatabase
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 ManagedDatabaseArgs
- 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 ManagedDatabaseArgs
- 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 ManagedDatabaseArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagedDatabaseArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ManagedDatabaseArgs
- 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 managedDatabaseResource = new Azure.MSSql.ManagedDatabase("managedDatabaseResource", new()
{
    ManagedInstanceId = "string",
    LongTermRetentionPolicy = new Azure.MSSql.Inputs.ManagedDatabaseLongTermRetentionPolicyArgs
    {
        ImmutableBackupsEnabled = false,
        MonthlyRetention = "string",
        WeekOfYear = 0,
        WeeklyRetention = "string",
        YearlyRetention = "string",
    },
    Name = "string",
    PointInTimeRestore = new Azure.MSSql.Inputs.ManagedDatabasePointInTimeRestoreArgs
    {
        RestorePointInTime = "string",
        SourceDatabaseId = "string",
    },
    ShortTermRetentionDays = 0,
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := mssql.NewManagedDatabase(ctx, "managedDatabaseResource", &mssql.ManagedDatabaseArgs{
	ManagedInstanceId: pulumi.String("string"),
	LongTermRetentionPolicy: &mssql.ManagedDatabaseLongTermRetentionPolicyArgs{
		ImmutableBackupsEnabled: pulumi.Bool(false),
		MonthlyRetention:        pulumi.String("string"),
		WeekOfYear:              pulumi.Int(0),
		WeeklyRetention:         pulumi.String("string"),
		YearlyRetention:         pulumi.String("string"),
	},
	Name: pulumi.String("string"),
	PointInTimeRestore: &mssql.ManagedDatabasePointInTimeRestoreArgs{
		RestorePointInTime: pulumi.String("string"),
		SourceDatabaseId:   pulumi.String("string"),
	},
	ShortTermRetentionDays: pulumi.Int(0),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var managedDatabaseResource = new ManagedDatabase("managedDatabaseResource", ManagedDatabaseArgs.builder()
    .managedInstanceId("string")
    .longTermRetentionPolicy(ManagedDatabaseLongTermRetentionPolicyArgs.builder()
        .immutableBackupsEnabled(false)
        .monthlyRetention("string")
        .weekOfYear(0)
        .weeklyRetention("string")
        .yearlyRetention("string")
        .build())
    .name("string")
    .pointInTimeRestore(ManagedDatabasePointInTimeRestoreArgs.builder()
        .restorePointInTime("string")
        .sourceDatabaseId("string")
        .build())
    .shortTermRetentionDays(0)
    .tags(Map.of("string", "string"))
    .build());
managed_database_resource = azure.mssql.ManagedDatabase("managedDatabaseResource",
    managed_instance_id="string",
    long_term_retention_policy={
        "immutable_backups_enabled": False,
        "monthly_retention": "string",
        "week_of_year": 0,
        "weekly_retention": "string",
        "yearly_retention": "string",
    },
    name="string",
    point_in_time_restore={
        "restore_point_in_time": "string",
        "source_database_id": "string",
    },
    short_term_retention_days=0,
    tags={
        "string": "string",
    })
const managedDatabaseResource = new azure.mssql.ManagedDatabase("managedDatabaseResource", {
    managedInstanceId: "string",
    longTermRetentionPolicy: {
        immutableBackupsEnabled: false,
        monthlyRetention: "string",
        weekOfYear: 0,
        weeklyRetention: "string",
        yearlyRetention: "string",
    },
    name: "string",
    pointInTimeRestore: {
        restorePointInTime: "string",
        sourceDatabaseId: "string",
    },
    shortTermRetentionDays: 0,
    tags: {
        string: "string",
    },
});
type: azure:mssql:ManagedDatabase
properties:
    longTermRetentionPolicy:
        immutableBackupsEnabled: false
        monthlyRetention: string
        weekOfYear: 0
        weeklyRetention: string
        yearlyRetention: string
    managedInstanceId: string
    name: string
    pointInTimeRestore:
        restorePointInTime: string
        sourceDatabaseId: string
    shortTermRetentionDays: 0
    tags:
        string: string
ManagedDatabase 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 ManagedDatabase resource accepts the following input properties:
- ManagedInstance stringId 
- The ID of the Azure SQL Managed Instance on which to create this Managed Database. Changing this forces a new resource to be created.
- LongTerm ManagedRetention Policy Database Long Term Retention Policy 
- A long_term_retention_policyblock as defined below.
- Name string
- The name of the Managed Database to create. Changing this forces a new resource to be created.
- PointIn ManagedTime Restore Database Point In Time Restore 
- A point_in_time_restoreblock as defined below. Changing this forces a new resource to be created.
- ShortTerm intRetention Days 
- The backup retention period in days. This is how many days Point-in-Time Restore will be supported.
- Dictionary<string, string>
- A mapping of tags to assign to the resource.
- ManagedInstance stringId 
- The ID of the Azure SQL Managed Instance on which to create this Managed Database. Changing this forces a new resource to be created.
- LongTerm ManagedRetention Policy Database Long Term Retention Policy Args 
- A long_term_retention_policyblock as defined below.
- Name string
- The name of the Managed Database to create. Changing this forces a new resource to be created.
- PointIn ManagedTime Restore Database Point In Time Restore Args 
- A point_in_time_restoreblock as defined below. Changing this forces a new resource to be created.
- ShortTerm intRetention Days 
- The backup retention period in days. This is how many days Point-in-Time Restore will be supported.
- map[string]string
- A mapping of tags to assign to the resource.
- managedInstance StringId 
- The ID of the Azure SQL Managed Instance on which to create this Managed Database. Changing this forces a new resource to be created.
- longTerm ManagedRetention Policy Database Long Term Retention Policy 
- A long_term_retention_policyblock as defined below.
- name String
- The name of the Managed Database to create. Changing this forces a new resource to be created.
- pointIn ManagedTime Restore Database Point In Time Restore 
- A point_in_time_restoreblock as defined below. Changing this forces a new resource to be created.
- shortTerm IntegerRetention Days 
- The backup retention period in days. This is how many days Point-in-Time Restore will be supported.
- Map<String,String>
- A mapping of tags to assign to the resource.
- managedInstance stringId 
- The ID of the Azure SQL Managed Instance on which to create this Managed Database. Changing this forces a new resource to be created.
- longTerm ManagedRetention Policy Database Long Term Retention Policy 
- A long_term_retention_policyblock as defined below.
- name string
- The name of the Managed Database to create. Changing this forces a new resource to be created.
- pointIn ManagedTime Restore Database Point In Time Restore 
- A point_in_time_restoreblock as defined below. Changing this forces a new resource to be created.
- shortTerm numberRetention Days 
- The backup retention period in days. This is how many days Point-in-Time Restore will be supported.
- {[key: string]: string}
- A mapping of tags to assign to the resource.
- managed_instance_ strid 
- The ID of the Azure SQL Managed Instance on which to create this Managed Database. Changing this forces a new resource to be created.
- long_term_ Managedretention_ policy Database Long Term Retention Policy Args 
- A long_term_retention_policyblock as defined below.
- name str
- The name of the Managed Database to create. Changing this forces a new resource to be created.
- point_in_ Managedtime_ restore Database Point In Time Restore Args 
- A point_in_time_restoreblock as defined below. Changing this forces a new resource to be created.
- short_term_ intretention_ days 
- The backup retention period in days. This is how many days Point-in-Time Restore will be supported.
- Mapping[str, str]
- A mapping of tags to assign to the resource.
- managedInstance StringId 
- The ID of the Azure SQL Managed Instance on which to create this Managed Database. Changing this forces a new resource to be created.
- longTerm Property MapRetention Policy 
- A long_term_retention_policyblock as defined below.
- name String
- The name of the Managed Database to create. Changing this forces a new resource to be created.
- pointIn Property MapTime Restore 
- A point_in_time_restoreblock as defined below. Changing this forces a new resource to be created.
- shortTerm NumberRetention Days 
- The backup retention period in days. This is how many days Point-in-Time Restore will be supported.
- Map<String>
- A mapping of tags to assign to the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the ManagedDatabase resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ManagedDatabase Resource
Get an existing ManagedDatabase resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ManagedDatabaseState, opts?: CustomResourceOptions): ManagedDatabase@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        long_term_retention_policy: Optional[ManagedDatabaseLongTermRetentionPolicyArgs] = None,
        managed_instance_id: Optional[str] = None,
        name: Optional[str] = None,
        point_in_time_restore: Optional[ManagedDatabasePointInTimeRestoreArgs] = None,
        short_term_retention_days: Optional[int] = None,
        tags: Optional[Mapping[str, str]] = None) -> ManagedDatabasefunc GetManagedDatabase(ctx *Context, name string, id IDInput, state *ManagedDatabaseState, opts ...ResourceOption) (*ManagedDatabase, error)public static ManagedDatabase Get(string name, Input<string> id, ManagedDatabaseState? state, CustomResourceOptions? opts = null)public static ManagedDatabase get(String name, Output<String> id, ManagedDatabaseState state, CustomResourceOptions options)resources:  _:    type: azure:mssql:ManagedDatabase    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- LongTerm ManagedRetention Policy Database Long Term Retention Policy 
- A long_term_retention_policyblock as defined below.
- ManagedInstance stringId 
- The ID of the Azure SQL Managed Instance on which to create this Managed Database. Changing this forces a new resource to be created.
- Name string
- The name of the Managed Database to create. Changing this forces a new resource to be created.
- PointIn ManagedTime Restore Database Point In Time Restore 
- A point_in_time_restoreblock as defined below. Changing this forces a new resource to be created.
- ShortTerm intRetention Days 
- The backup retention period in days. This is how many days Point-in-Time Restore will be supported.
- Dictionary<string, string>
- A mapping of tags to assign to the resource.
- LongTerm ManagedRetention Policy Database Long Term Retention Policy Args 
- A long_term_retention_policyblock as defined below.
- ManagedInstance stringId 
- The ID of the Azure SQL Managed Instance on which to create this Managed Database. Changing this forces a new resource to be created.
- Name string
- The name of the Managed Database to create. Changing this forces a new resource to be created.
- PointIn ManagedTime Restore Database Point In Time Restore Args 
- A point_in_time_restoreblock as defined below. Changing this forces a new resource to be created.
- ShortTerm intRetention Days 
- The backup retention period in days. This is how many days Point-in-Time Restore will be supported.
- map[string]string
- A mapping of tags to assign to the resource.
- longTerm ManagedRetention Policy Database Long Term Retention Policy 
- A long_term_retention_policyblock as defined below.
- managedInstance StringId 
- The ID of the Azure SQL Managed Instance on which to create this Managed Database. Changing this forces a new resource to be created.
- name String
- The name of the Managed Database to create. Changing this forces a new resource to be created.
- pointIn ManagedTime Restore Database Point In Time Restore 
- A point_in_time_restoreblock as defined below. Changing this forces a new resource to be created.
- shortTerm IntegerRetention Days 
- The backup retention period in days. This is how many days Point-in-Time Restore will be supported.
- Map<String,String>
- A mapping of tags to assign to the resource.
- longTerm ManagedRetention Policy Database Long Term Retention Policy 
- A long_term_retention_policyblock as defined below.
- managedInstance stringId 
- The ID of the Azure SQL Managed Instance on which to create this Managed Database. Changing this forces a new resource to be created.
- name string
- The name of the Managed Database to create. Changing this forces a new resource to be created.
- pointIn ManagedTime Restore Database Point In Time Restore 
- A point_in_time_restoreblock as defined below. Changing this forces a new resource to be created.
- shortTerm numberRetention Days 
- The backup retention period in days. This is how many days Point-in-Time Restore will be supported.
- {[key: string]: string}
- A mapping of tags to assign to the resource.
- long_term_ Managedretention_ policy Database Long Term Retention Policy Args 
- A long_term_retention_policyblock as defined below.
- managed_instance_ strid 
- The ID of the Azure SQL Managed Instance on which to create this Managed Database. Changing this forces a new resource to be created.
- name str
- The name of the Managed Database to create. Changing this forces a new resource to be created.
- point_in_ Managedtime_ restore Database Point In Time Restore Args 
- A point_in_time_restoreblock as defined below. Changing this forces a new resource to be created.
- short_term_ intretention_ days 
- The backup retention period in days. This is how many days Point-in-Time Restore will be supported.
- Mapping[str, str]
- A mapping of tags to assign to the resource.
- longTerm Property MapRetention Policy 
- A long_term_retention_policyblock as defined below.
- managedInstance StringId 
- The ID of the Azure SQL Managed Instance on which to create this Managed Database. Changing this forces a new resource to be created.
- name String
- The name of the Managed Database to create. Changing this forces a new resource to be created.
- pointIn Property MapTime Restore 
- A point_in_time_restoreblock as defined below. Changing this forces a new resource to be created.
- shortTerm NumberRetention Days 
- The backup retention period in days. This is how many days Point-in-Time Restore will be supported.
- Map<String>
- A mapping of tags to assign to the resource.
Supporting Types
ManagedDatabaseLongTermRetentionPolicy, ManagedDatabaseLongTermRetentionPolicyArgs            
- ImmutableBackups boolEnabled 
- MonthlyRetention string
- The monthly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 120 months. e.g. P1Y,P1M,P4WorP30D. Defaults toPT0S.
- WeekOf intYear 
- The week of year to take the yearly backup. Value has to be between 1and52.
- WeeklyRetention string
- The weekly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 520 weeks. e.g. P1Y,P1M,P1WorP7D. Defaults toPT0S.
- YearlyRetention string
- The yearly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 10 years. e.g. P1Y,P12M,P52WorP365D. Defaults toPT0S.
- ImmutableBackups boolEnabled 
- MonthlyRetention string
- The monthly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 120 months. e.g. P1Y,P1M,P4WorP30D. Defaults toPT0S.
- WeekOf intYear 
- The week of year to take the yearly backup. Value has to be between 1and52.
- WeeklyRetention string
- The weekly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 520 weeks. e.g. P1Y,P1M,P1WorP7D. Defaults toPT0S.
- YearlyRetention string
- The yearly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 10 years. e.g. P1Y,P12M,P52WorP365D. Defaults toPT0S.
- immutableBackups BooleanEnabled 
- monthlyRetention String
- The monthly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 120 months. e.g. P1Y,P1M,P4WorP30D. Defaults toPT0S.
- weekOf IntegerYear 
- The week of year to take the yearly backup. Value has to be between 1and52.
- weeklyRetention String
- The weekly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 520 weeks. e.g. P1Y,P1M,P1WorP7D. Defaults toPT0S.
- yearlyRetention String
- The yearly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 10 years. e.g. P1Y,P12M,P52WorP365D. Defaults toPT0S.
- immutableBackups booleanEnabled 
- monthlyRetention string
- The monthly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 120 months. e.g. P1Y,P1M,P4WorP30D. Defaults toPT0S.
- weekOf numberYear 
- The week of year to take the yearly backup. Value has to be between 1and52.
- weeklyRetention string
- The weekly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 520 weeks. e.g. P1Y,P1M,P1WorP7D. Defaults toPT0S.
- yearlyRetention string
- The yearly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 10 years. e.g. P1Y,P12M,P52WorP365D. Defaults toPT0S.
- immutable_backups_ boolenabled 
- monthly_retention str
- The monthly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 120 months. e.g. P1Y,P1M,P4WorP30D. Defaults toPT0S.
- week_of_ intyear 
- The week of year to take the yearly backup. Value has to be between 1and52.
- weekly_retention str
- The weekly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 520 weeks. e.g. P1Y,P1M,P1WorP7D. Defaults toPT0S.
- yearly_retention str
- The yearly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 10 years. e.g. P1Y,P12M,P52WorP365D. Defaults toPT0S.
- immutableBackups BooleanEnabled 
- monthlyRetention String
- The monthly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 120 months. e.g. P1Y,P1M,P4WorP30D. Defaults toPT0S.
- weekOf NumberYear 
- The week of year to take the yearly backup. Value has to be between 1and52.
- weeklyRetention String
- The weekly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 520 weeks. e.g. P1Y,P1M,P1WorP7D. Defaults toPT0S.
- yearlyRetention String
- The yearly retention policy for an LTR backup in an ISO 8601 format. Valid value is between 1 to 10 years. e.g. P1Y,P12M,P52WorP365D. Defaults toPT0S.
ManagedDatabasePointInTimeRestore, ManagedDatabasePointInTimeRestoreArgs            
- RestorePoint stringIn Time 
- The point in time for the restore from source_database_id. Changing this forces a new resource to be created.
- SourceDatabase stringId 
- The source database id that will be used to restore from. Changing this forces a new resource to be created.
- RestorePoint stringIn Time 
- The point in time for the restore from source_database_id. Changing this forces a new resource to be created.
- SourceDatabase stringId 
- The source database id that will be used to restore from. Changing this forces a new resource to be created.
- restorePoint StringIn Time 
- The point in time for the restore from source_database_id. Changing this forces a new resource to be created.
- sourceDatabase StringId 
- The source database id that will be used to restore from. Changing this forces a new resource to be created.
- restorePoint stringIn Time 
- The point in time for the restore from source_database_id. Changing this forces a new resource to be created.
- sourceDatabase stringId 
- The source database id that will be used to restore from. Changing this forces a new resource to be created.
- restore_point_ strin_ time 
- The point in time for the restore from source_database_id. Changing this forces a new resource to be created.
- source_database_ strid 
- The source database id that will be used to restore from. Changing this forces a new resource to be created.
- restorePoint StringIn Time 
- The point in time for the restore from source_database_id. Changing this forces a new resource to be created.
- sourceDatabase StringId 
- The source database id that will be used to restore from. Changing this forces a new resource to be created.
Import
SQL Managed Databases can be imported using the resource id, e.g.
$ pulumi import azure:mssql/managedDatabase:ManagedDatabase example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myresourcegroup/providers/Microsoft.Sql/managedInstances/myserver/databases/mydatabase
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the azurermTerraform Provider.