1. Packages
  2. Azure Native
  3. API Docs
  4. databasefleetmanager
  5. FleetDatabase
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native.databasefleetmanager.FleetDatabase

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

    A fleet database.

    Uses Azure REST API version 2025-02-01-preview.

    Example Usage

    Create or Update Database in Fleet - Generated by Policy

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var fleetDatabase = new AzureNative.DatabaseFleetManager.FleetDatabase("fleetDatabase", new()
        {
            DatabaseName = "customer-db-prod",
            FleetName = "data-fleet-01",
            FleetspaceName = "prod-environment",
            Properties = new AzureNative.DatabaseFleetManager.Inputs.FleetDatabasePropertiesArgs
            {
                CreateMode = AzureNative.DatabaseFleetManager.DatabaseCreateMode.Default,
                Identity = new AzureNative.DatabaseFleetManager.Inputs.IdentityArgs
                {
                    FederatedClientId = "a2b3c4d5-6789-0123-4567-89abcdef1234",
                    IdentityType = AzureNative.DatabaseFleetManager.IdentityType.None,
                    UserAssignedIdentities = new[]
                    {
                        new AzureNative.DatabaseFleetManager.Inputs.DatabaseIdentityArgs
                        {
                            ClientId = "a2b3c4d5-6789-0123-4567-89abcdef1234",
                            PrincipalId = "a2b3c4d5-6789-0123-4567-89abcdef1234",
                            ResourceId = "/subscriptions/12345678-90ab-cdef-1234-567890abcdef/resourceGroups/rg-database-operations/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity-01",
                        },
                    },
                },
                ResourceTags = 
                {
                    { "project", "Customer Data" },
                },
                RestoreFromTime = "2024-11-06T09:16:05.048Z",
                SourceDatabaseName = "existing-db-prod",
                TierName = "Premium",
                TransparentDataEncryption = new AzureNative.DatabaseFleetManager.Inputs.TransparentDataEncryptionArgs
                {
                    EnableAutoRotation = true,
                    KeyUri = "https://keyvaultname.vault.azure.net/keys/myKey/12345",
                    Keys = new[]
                    {
                        "key1",
                    },
                },
            },
            ResourceGroupName = "rg-database-operations",
        });
    
    });
    
    package main
    
    import (
    	databasefleetmanager "github.com/pulumi/pulumi-azure-native-sdk/databasefleetmanager/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := databasefleetmanager.NewFleetDatabase(ctx, "fleetDatabase", &databasefleetmanager.FleetDatabaseArgs{
    			DatabaseName:   pulumi.String("customer-db-prod"),
    			FleetName:      pulumi.String("data-fleet-01"),
    			FleetspaceName: pulumi.String("prod-environment"),
    			Properties: &databasefleetmanager.FleetDatabasePropertiesArgs{
    				CreateMode: pulumi.String(databasefleetmanager.DatabaseCreateModeDefault),
    				Identity: &databasefleetmanager.IdentityArgs{
    					FederatedClientId: pulumi.String("a2b3c4d5-6789-0123-4567-89abcdef1234"),
    					IdentityType:      pulumi.String(databasefleetmanager.IdentityTypeNone),
    					UserAssignedIdentities: databasefleetmanager.DatabaseIdentityArray{
    						&databasefleetmanager.DatabaseIdentityArgs{
    							ClientId:    pulumi.String("a2b3c4d5-6789-0123-4567-89abcdef1234"),
    							PrincipalId: pulumi.String("a2b3c4d5-6789-0123-4567-89abcdef1234"),
    							ResourceId:  pulumi.String("/subscriptions/12345678-90ab-cdef-1234-567890abcdef/resourceGroups/rg-database-operations/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity-01"),
    						},
    					},
    				},
    				ResourceTags: pulumi.StringMap{
    					"project": pulumi.String("Customer Data"),
    				},
    				RestoreFromTime:    pulumi.String("2024-11-06T09:16:05.048Z"),
    				SourceDatabaseName: pulumi.String("existing-db-prod"),
    				TierName:           pulumi.String("Premium"),
    				TransparentDataEncryption: &databasefleetmanager.TransparentDataEncryptionArgs{
    					EnableAutoRotation: pulumi.Bool(true),
    					KeyUri:             pulumi.String("https://keyvaultname.vault.azure.net/keys/myKey/12345"),
    					Keys: pulumi.StringArray{
    						pulumi.String("key1"),
    					},
    				},
    			},
    			ResourceGroupName: pulumi.String("rg-database-operations"),
    		})
    		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.databasefleetmanager.FleetDatabase;
    import com.pulumi.azurenative.databasefleetmanager.FleetDatabaseArgs;
    import com.pulumi.azurenative.databasefleetmanager.inputs.FleetDatabasePropertiesArgs;
    import com.pulumi.azurenative.databasefleetmanager.inputs.IdentityArgs;
    import com.pulumi.azurenative.databasefleetmanager.inputs.TransparentDataEncryptionArgs;
    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 fleetDatabase = new FleetDatabase("fleetDatabase", FleetDatabaseArgs.builder()
                .databaseName("customer-db-prod")
                .fleetName("data-fleet-01")
                .fleetspaceName("prod-environment")
                .properties(FleetDatabasePropertiesArgs.builder()
                    .createMode("Default")
                    .identity(IdentityArgs.builder()
                        .federatedClientId("a2b3c4d5-6789-0123-4567-89abcdef1234")
                        .identityType("None")
                        .userAssignedIdentities(DatabaseIdentityArgs.builder()
                            .clientId("a2b3c4d5-6789-0123-4567-89abcdef1234")
                            .principalId("a2b3c4d5-6789-0123-4567-89abcdef1234")
                            .resourceId("/subscriptions/12345678-90ab-cdef-1234-567890abcdef/resourceGroups/rg-database-operations/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity-01")
                            .build())
                        .build())
                    .resourceTags(Map.of("project", "Customer Data"))
                    .restoreFromTime("2024-11-06T09:16:05.048Z")
                    .sourceDatabaseName("existing-db-prod")
                    .tierName("Premium")
                    .transparentDataEncryption(TransparentDataEncryptionArgs.builder()
                        .enableAutoRotation(true)
                        .keyUri("https://keyvaultname.vault.azure.net/keys/myKey/12345")
                        .keys("key1")
                        .build())
                    .build())
                .resourceGroupName("rg-database-operations")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const fleetDatabase = new azure_native.databasefleetmanager.FleetDatabase("fleetDatabase", {
        databaseName: "customer-db-prod",
        fleetName: "data-fleet-01",
        fleetspaceName: "prod-environment",
        properties: {
            createMode: azure_native.databasefleetmanager.DatabaseCreateMode.Default,
            identity: {
                federatedClientId: "a2b3c4d5-6789-0123-4567-89abcdef1234",
                identityType: azure_native.databasefleetmanager.IdentityType.None,
                userAssignedIdentities: [{
                    clientId: "a2b3c4d5-6789-0123-4567-89abcdef1234",
                    principalId: "a2b3c4d5-6789-0123-4567-89abcdef1234",
                    resourceId: "/subscriptions/12345678-90ab-cdef-1234-567890abcdef/resourceGroups/rg-database-operations/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity-01",
                }],
            },
            resourceTags: {
                project: "Customer Data",
            },
            restoreFromTime: "2024-11-06T09:16:05.048Z",
            sourceDatabaseName: "existing-db-prod",
            tierName: "Premium",
            transparentDataEncryption: {
                enableAutoRotation: true,
                keyUri: "https://keyvaultname.vault.azure.net/keys/myKey/12345",
                keys: ["key1"],
            },
        },
        resourceGroupName: "rg-database-operations",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    fleet_database = azure_native.databasefleetmanager.FleetDatabase("fleetDatabase",
        database_name="customer-db-prod",
        fleet_name="data-fleet-01",
        fleetspace_name="prod-environment",
        properties={
            "create_mode": azure_native.databasefleetmanager.DatabaseCreateMode.DEFAULT,
            "identity": {
                "federated_client_id": "a2b3c4d5-6789-0123-4567-89abcdef1234",
                "identity_type": azure_native.databasefleetmanager.IdentityType.NONE,
                "user_assigned_identities": [{
                    "client_id": "a2b3c4d5-6789-0123-4567-89abcdef1234",
                    "principal_id": "a2b3c4d5-6789-0123-4567-89abcdef1234",
                    "resource_id": "/subscriptions/12345678-90ab-cdef-1234-567890abcdef/resourceGroups/rg-database-operations/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity-01",
                }],
            },
            "resource_tags": {
                "project": "Customer Data",
            },
            "restore_from_time": "2024-11-06T09:16:05.048Z",
            "source_database_name": "existing-db-prod",
            "tier_name": "Premium",
            "transparent_data_encryption": {
                "enable_auto_rotation": True,
                "key_uri": "https://keyvaultname.vault.azure.net/keys/myKey/12345",
                "keys": ["key1"],
            },
        },
        resource_group_name="rg-database-operations")
    
    resources:
      fleetDatabase:
        type: azure-native:databasefleetmanager:FleetDatabase
        properties:
          databaseName: customer-db-prod
          fleetName: data-fleet-01
          fleetspaceName: prod-environment
          properties:
            createMode: Default
            identity:
              federatedClientId: a2b3c4d5-6789-0123-4567-89abcdef1234
              identityType: None
              userAssignedIdentities:
                - clientId: a2b3c4d5-6789-0123-4567-89abcdef1234
                  principalId: a2b3c4d5-6789-0123-4567-89abcdef1234
                  resourceId: /subscriptions/12345678-90ab-cdef-1234-567890abcdef/resourceGroups/rg-database-operations/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identity-01
            resourceTags:
              project: Customer Data
            restoreFromTime: 2024-11-06T09:16:05.048Z
            sourceDatabaseName: existing-db-prod
            tierName: Premium
            transparentDataEncryption:
              enableAutoRotation: true
              keyUri: https://keyvaultname.vault.azure.net/keys/myKey/12345
              keys:
                - key1
          resourceGroupName: rg-database-operations
    

    Create FleetDatabase Resource

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

    Constructor syntax

    new FleetDatabase(name: string, args: FleetDatabaseArgs, opts?: CustomResourceOptions);
    @overload
    def FleetDatabase(resource_name: str,
                      args: FleetDatabaseArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def FleetDatabase(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      fleet_name: Optional[str] = None,
                      fleetspace_name: Optional[str] = None,
                      resource_group_name: Optional[str] = None,
                      database_name: Optional[str] = None,
                      properties: Optional[FleetDatabasePropertiesArgs] = None)
    func NewFleetDatabase(ctx *Context, name string, args FleetDatabaseArgs, opts ...ResourceOption) (*FleetDatabase, error)
    public FleetDatabase(string name, FleetDatabaseArgs args, CustomResourceOptions? opts = null)
    public FleetDatabase(String name, FleetDatabaseArgs args)
    public FleetDatabase(String name, FleetDatabaseArgs args, CustomResourceOptions options)
    
    type: azure-native:databasefleetmanager:FleetDatabase
    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 FleetDatabaseArgs
    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 FleetDatabaseArgs
    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 FleetDatabaseArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FleetDatabaseArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FleetDatabaseArgs
    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 fleetDatabaseResource = new AzureNative.DatabaseFleetManager.FleetDatabase("fleetDatabaseResource", new()
    {
        FleetName = "string",
        FleetspaceName = "string",
        ResourceGroupName = "string",
        DatabaseName = "string",
        Properties = new AzureNative.DatabaseFleetManager.Inputs.FleetDatabasePropertiesArgs
        {
            Collation = "string",
            CreateMode = "string",
            Identity = new AzureNative.DatabaseFleetManager.Inputs.IdentityArgs
            {
                FederatedClientId = "string",
                IdentityType = "string",
                UserAssignedIdentities = new[]
                {
                    new AzureNative.DatabaseFleetManager.Inputs.DatabaseIdentityArgs
                    {
                        ClientId = "string",
                        PrincipalId = "string",
                        ResourceId = "string",
                    },
                },
            },
            ResourceTags = 
            {
                { "string", "string" },
            },
            RestoreFromTime = "string",
            SourceDatabaseName = "string",
            TierName = "string",
            TransparentDataEncryption = new AzureNative.DatabaseFleetManager.Inputs.TransparentDataEncryptionArgs
            {
                EnableAutoRotation = false,
                KeyUri = "string",
                Keys = new[]
                {
                    "string",
                },
            },
        },
    });
    
    example, err := databasefleetmanager.NewFleetDatabase(ctx, "fleetDatabaseResource", &databasefleetmanager.FleetDatabaseArgs{
    	FleetName:         pulumi.String("string"),
    	FleetspaceName:    pulumi.String("string"),
    	ResourceGroupName: pulumi.String("string"),
    	DatabaseName:      pulumi.String("string"),
    	Properties: &databasefleetmanager.FleetDatabasePropertiesArgs{
    		Collation:  pulumi.String("string"),
    		CreateMode: pulumi.String("string"),
    		Identity: &databasefleetmanager.IdentityArgs{
    			FederatedClientId: pulumi.String("string"),
    			IdentityType:      pulumi.String("string"),
    			UserAssignedIdentities: databasefleetmanager.DatabaseIdentityArray{
    				&databasefleetmanager.DatabaseIdentityArgs{
    					ClientId:    pulumi.String("string"),
    					PrincipalId: pulumi.String("string"),
    					ResourceId:  pulumi.String("string"),
    				},
    			},
    		},
    		ResourceTags: pulumi.StringMap{
    			"string": pulumi.String("string"),
    		},
    		RestoreFromTime:    pulumi.String("string"),
    		SourceDatabaseName: pulumi.String("string"),
    		TierName:           pulumi.String("string"),
    		TransparentDataEncryption: &databasefleetmanager.TransparentDataEncryptionArgs{
    			EnableAutoRotation: pulumi.Bool(false),
    			KeyUri:             pulumi.String("string"),
    			Keys: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    	},
    })
    
    var fleetDatabaseResource = new FleetDatabase("fleetDatabaseResource", FleetDatabaseArgs.builder()
        .fleetName("string")
        .fleetspaceName("string")
        .resourceGroupName("string")
        .databaseName("string")
        .properties(FleetDatabasePropertiesArgs.builder()
            .collation("string")
            .createMode("string")
            .identity(IdentityArgs.builder()
                .federatedClientId("string")
                .identityType("string")
                .userAssignedIdentities(DatabaseIdentityArgs.builder()
                    .clientId("string")
                    .principalId("string")
                    .resourceId("string")
                    .build())
                .build())
            .resourceTags(Map.of("string", "string"))
            .restoreFromTime("string")
            .sourceDatabaseName("string")
            .tierName("string")
            .transparentDataEncryption(TransparentDataEncryptionArgs.builder()
                .enableAutoRotation(false)
                .keyUri("string")
                .keys("string")
                .build())
            .build())
        .build());
    
    fleet_database_resource = azure_native.databasefleetmanager.FleetDatabase("fleetDatabaseResource",
        fleet_name="string",
        fleetspace_name="string",
        resource_group_name="string",
        database_name="string",
        properties={
            "collation": "string",
            "create_mode": "string",
            "identity": {
                "federated_client_id": "string",
                "identity_type": "string",
                "user_assigned_identities": [{
                    "client_id": "string",
                    "principal_id": "string",
                    "resource_id": "string",
                }],
            },
            "resource_tags": {
                "string": "string",
            },
            "restore_from_time": "string",
            "source_database_name": "string",
            "tier_name": "string",
            "transparent_data_encryption": {
                "enable_auto_rotation": False,
                "key_uri": "string",
                "keys": ["string"],
            },
        })
    
    const fleetDatabaseResource = new azure_native.databasefleetmanager.FleetDatabase("fleetDatabaseResource", {
        fleetName: "string",
        fleetspaceName: "string",
        resourceGroupName: "string",
        databaseName: "string",
        properties: {
            collation: "string",
            createMode: "string",
            identity: {
                federatedClientId: "string",
                identityType: "string",
                userAssignedIdentities: [{
                    clientId: "string",
                    principalId: "string",
                    resourceId: "string",
                }],
            },
            resourceTags: {
                string: "string",
            },
            restoreFromTime: "string",
            sourceDatabaseName: "string",
            tierName: "string",
            transparentDataEncryption: {
                enableAutoRotation: false,
                keyUri: "string",
                keys: ["string"],
            },
        },
    });
    
    type: azure-native:databasefleetmanager:FleetDatabase
    properties:
        databaseName: string
        fleetName: string
        fleetspaceName: string
        properties:
            collation: string
            createMode: string
            identity:
                federatedClientId: string
                identityType: string
                userAssignedIdentities:
                    - clientId: string
                      principalId: string
                      resourceId: string
            resourceTags:
                string: string
            restoreFromTime: string
            sourceDatabaseName: string
            tierName: string
            transparentDataEncryption:
                enableAutoRotation: false
                keyUri: string
                keys:
                    - string
        resourceGroupName: string
    

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

    FleetName string
    Name of the database fleet.
    FleetspaceName string
    Name of the fleetspace.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    DatabaseName string
    Name of the database.
    Properties Pulumi.AzureNative.DatabaseFleetManager.Inputs.FleetDatabaseProperties
    Fleet database properties.
    FleetName string
    Name of the database fleet.
    FleetspaceName string
    Name of the fleetspace.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    DatabaseName string
    Name of the database.
    Properties FleetDatabasePropertiesArgs
    Fleet database properties.
    fleetName String
    Name of the database fleet.
    fleetspaceName String
    Name of the fleetspace.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    databaseName String
    Name of the database.
    properties FleetDatabaseProperties
    Fleet database properties.
    fleetName string
    Name of the database fleet.
    fleetspaceName string
    Name of the fleetspace.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    databaseName string
    Name of the database.
    properties FleetDatabaseProperties
    Fleet database properties.
    fleet_name str
    Name of the database fleet.
    fleetspace_name str
    Name of the fleetspace.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    database_name str
    Name of the database.
    properties FleetDatabasePropertiesArgs
    Fleet database properties.
    fleetName String
    Name of the database fleet.
    fleetspaceName String
    Name of the fleetspace.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    databaseName String
    Name of the database.
    properties Property Map
    Fleet database properties.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.DatabaseFleetManager.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    DatabaseCreateMode, DatabaseCreateModeArgs

    Default
    DefaultCreate a database.
    Copy
    CopyCopy the source database (source database name must be specified).
    PointInTimeRestore
    PointInTimeRestoreCreate a database by restoring source database from a point in time (source database name and restore from time must be specified).
    DatabaseCreateModeDefault
    DefaultCreate a database.
    DatabaseCreateModeCopy
    CopyCopy the source database (source database name must be specified).
    DatabaseCreateModePointInTimeRestore
    PointInTimeRestoreCreate a database by restoring source database from a point in time (source database name and restore from time must be specified).
    Default
    DefaultCreate a database.
    Copy
    CopyCopy the source database (source database name must be specified).
    PointInTimeRestore
    PointInTimeRestoreCreate a database by restoring source database from a point in time (source database name and restore from time must be specified).
    Default
    DefaultCreate a database.
    Copy
    CopyCopy the source database (source database name must be specified).
    PointInTimeRestore
    PointInTimeRestoreCreate a database by restoring source database from a point in time (source database name and restore from time must be specified).
    DEFAULT
    DefaultCreate a database.
    COPY
    CopyCopy the source database (source database name must be specified).
    POINT_IN_TIME_RESTORE
    PointInTimeRestoreCreate a database by restoring source database from a point in time (source database name and restore from time must be specified).
    "Default"
    DefaultCreate a database.
    "Copy"
    CopyCopy the source database (source database name must be specified).
    "PointInTimeRestore"
    PointInTimeRestoreCreate a database by restoring source database from a point in time (source database name and restore from time must be specified).

    DatabaseIdentity, DatabaseIdentityArgs

    ClientId string
    Client Id of the database identity.
    PrincipalId string
    Principal Id of the database identity.
    ResourceId string
    Resource Id of the database identity.
    ClientId string
    Client Id of the database identity.
    PrincipalId string
    Principal Id of the database identity.
    ResourceId string
    Resource Id of the database identity.
    clientId String
    Client Id of the database identity.
    principalId String
    Principal Id of the database identity.
    resourceId String
    Resource Id of the database identity.
    clientId string
    Client Id of the database identity.
    principalId string
    Principal Id of the database identity.
    resourceId string
    Resource Id of the database identity.
    client_id str
    Client Id of the database identity.
    principal_id str
    Principal Id of the database identity.
    resource_id str
    Resource Id of the database identity.
    clientId String
    Client Id of the database identity.
    principalId String
    Principal Id of the database identity.
    resourceId String
    Resource Id of the database identity.

    DatabaseIdentityResponse, DatabaseIdentityResponseArgs

    ClientId string
    Client Id of the database identity.
    PrincipalId string
    Principal Id of the database identity.
    ResourceId string
    Resource Id of the database identity.
    ClientId string
    Client Id of the database identity.
    PrincipalId string
    Principal Id of the database identity.
    ResourceId string
    Resource Id of the database identity.
    clientId String
    Client Id of the database identity.
    principalId String
    Principal Id of the database identity.
    resourceId String
    Resource Id of the database identity.
    clientId string
    Client Id of the database identity.
    principalId string
    Principal Id of the database identity.
    resourceId string
    Resource Id of the database identity.
    client_id str
    Client Id of the database identity.
    principal_id str
    Principal Id of the database identity.
    resource_id str
    Resource Id of the database identity.
    clientId String
    Client Id of the database identity.
    principalId String
    Principal Id of the database identity.
    resourceId String
    Resource Id of the database identity.

    FleetDatabaseProperties, FleetDatabasePropertiesArgs

    Collation string
    Database collation.
    CreateMode string | Pulumi.AzureNative.DatabaseFleetManager.DatabaseCreateMode
    Create mode. Available options: Default - Create a database. Copy - Copy the source database (source database name must be specified) PointInTimeRestore - Create a database by restoring source database from a point in time (source database name and restore from time must be specified)
    Identity Pulumi.AzureNative.DatabaseFleetManager.Inputs.Identity
    Identity property.
    ResourceTags Dictionary<string, string>
    Additional database properties to be applied as the underlying database resource tags.
    RestoreFromTime string
    Restore from time when CreateMode is PointInTimeRestore.
    SourceDatabaseName string
    Source database name used when CreateMode is Copy or PointInTimeRestore.
    TierName string
    Name of the tier this database belongs to.
    TransparentDataEncryption Pulumi.AzureNative.DatabaseFleetManager.Inputs.TransparentDataEncryption
    Transparent Data Encryption properties
    Collation string
    Database collation.
    CreateMode string | DatabaseCreateMode
    Create mode. Available options: Default - Create a database. Copy - Copy the source database (source database name must be specified) PointInTimeRestore - Create a database by restoring source database from a point in time (source database name and restore from time must be specified)
    Identity Identity
    Identity property.
    ResourceTags map[string]string
    Additional database properties to be applied as the underlying database resource tags.
    RestoreFromTime string
    Restore from time when CreateMode is PointInTimeRestore.
    SourceDatabaseName string
    Source database name used when CreateMode is Copy or PointInTimeRestore.
    TierName string
    Name of the tier this database belongs to.
    TransparentDataEncryption TransparentDataEncryption
    Transparent Data Encryption properties
    collation String
    Database collation.
    createMode String | DatabaseCreateMode
    Create mode. Available options: Default - Create a database. Copy - Copy the source database (source database name must be specified) PointInTimeRestore - Create a database by restoring source database from a point in time (source database name and restore from time must be specified)
    identity Identity
    Identity property.
    resourceTags Map<String,String>
    Additional database properties to be applied as the underlying database resource tags.
    restoreFromTime String
    Restore from time when CreateMode is PointInTimeRestore.
    sourceDatabaseName String
    Source database name used when CreateMode is Copy or PointInTimeRestore.
    tierName String
    Name of the tier this database belongs to.
    transparentDataEncryption TransparentDataEncryption
    Transparent Data Encryption properties
    collation string
    Database collation.
    createMode string | DatabaseCreateMode
    Create mode. Available options: Default - Create a database. Copy - Copy the source database (source database name must be specified) PointInTimeRestore - Create a database by restoring source database from a point in time (source database name and restore from time must be specified)
    identity Identity
    Identity property.
    resourceTags {[key: string]: string}
    Additional database properties to be applied as the underlying database resource tags.
    restoreFromTime string
    Restore from time when CreateMode is PointInTimeRestore.
    sourceDatabaseName string
    Source database name used when CreateMode is Copy or PointInTimeRestore.
    tierName string
    Name of the tier this database belongs to.
    transparentDataEncryption TransparentDataEncryption
    Transparent Data Encryption properties
    collation str
    Database collation.
    create_mode str | DatabaseCreateMode
    Create mode. Available options: Default - Create a database. Copy - Copy the source database (source database name must be specified) PointInTimeRestore - Create a database by restoring source database from a point in time (source database name and restore from time must be specified)
    identity Identity
    Identity property.
    resource_tags Mapping[str, str]
    Additional database properties to be applied as the underlying database resource tags.
    restore_from_time str
    Restore from time when CreateMode is PointInTimeRestore.
    source_database_name str
    Source database name used when CreateMode is Copy or PointInTimeRestore.
    tier_name str
    Name of the tier this database belongs to.
    transparent_data_encryption TransparentDataEncryption
    Transparent Data Encryption properties
    collation String
    Database collation.
    createMode String | "Default" | "Copy" | "PointInTimeRestore"
    Create mode. Available options: Default - Create a database. Copy - Copy the source database (source database name must be specified) PointInTimeRestore - Create a database by restoring source database from a point in time (source database name and restore from time must be specified)
    identity Property Map
    Identity property.
    resourceTags Map<String>
    Additional database properties to be applied as the underlying database resource tags.
    restoreFromTime String
    Restore from time when CreateMode is PointInTimeRestore.
    sourceDatabaseName String
    Source database name used when CreateMode is Copy or PointInTimeRestore.
    tierName String
    Name of the tier this database belongs to.
    transparentDataEncryption Property Map
    Transparent Data Encryption properties

    FleetDatabasePropertiesResponse, FleetDatabasePropertiesResponseArgs

    BackupRetentionDays int
    Backup retention in days.
    ConnectionString string
    Connection string to connect to the database with.
    DatabaseSizeGbMax int
    Maximum database size in Gb.
    EarliestRestoreTime string
    Earliest restore time.
    LatestRestoreTime string
    Latest restore time.
    OriginalDatabaseId string
    Resource identifier for the underlying database resource.
    ProvisioningState string
    Database state.
    Recoverable bool
    If true, database is recoverable.
    Collation string
    Database collation.
    CreateMode string
    Create mode. Available options: Default - Create a database. Copy - Copy the source database (source database name must be specified) PointInTimeRestore - Create a database by restoring source database from a point in time (source database name and restore from time must be specified)
    Identity Pulumi.AzureNative.DatabaseFleetManager.Inputs.IdentityResponse
    Identity property.
    ResourceTags Dictionary<string, string>
    Additional database properties to be applied as the underlying database resource tags.
    RestoreFromTime string
    Restore from time when CreateMode is PointInTimeRestore.
    SourceDatabaseName string
    Source database name used when CreateMode is Copy or PointInTimeRestore.
    TierName string
    Name of the tier this database belongs to.
    TransparentDataEncryption Pulumi.AzureNative.DatabaseFleetManager.Inputs.TransparentDataEncryptionResponse
    Transparent Data Encryption properties
    BackupRetentionDays int
    Backup retention in days.
    ConnectionString string
    Connection string to connect to the database with.
    DatabaseSizeGbMax int
    Maximum database size in Gb.
    EarliestRestoreTime string
    Earliest restore time.
    LatestRestoreTime string
    Latest restore time.
    OriginalDatabaseId string
    Resource identifier for the underlying database resource.
    ProvisioningState string
    Database state.
    Recoverable bool
    If true, database is recoverable.
    Collation string
    Database collation.
    CreateMode string
    Create mode. Available options: Default - Create a database. Copy - Copy the source database (source database name must be specified) PointInTimeRestore - Create a database by restoring source database from a point in time (source database name and restore from time must be specified)
    Identity IdentityResponse
    Identity property.
    ResourceTags map[string]string
    Additional database properties to be applied as the underlying database resource tags.
    RestoreFromTime string
    Restore from time when CreateMode is PointInTimeRestore.
    SourceDatabaseName string
    Source database name used when CreateMode is Copy or PointInTimeRestore.
    TierName string
    Name of the tier this database belongs to.
    TransparentDataEncryption TransparentDataEncryptionResponse
    Transparent Data Encryption properties
    backupRetentionDays Integer
    Backup retention in days.
    connectionString String
    Connection string to connect to the database with.
    databaseSizeGbMax Integer
    Maximum database size in Gb.
    earliestRestoreTime String
    Earliest restore time.
    latestRestoreTime String
    Latest restore time.
    originalDatabaseId String
    Resource identifier for the underlying database resource.
    provisioningState String
    Database state.
    recoverable Boolean
    If true, database is recoverable.
    collation String
    Database collation.
    createMode String
    Create mode. Available options: Default - Create a database. Copy - Copy the source database (source database name must be specified) PointInTimeRestore - Create a database by restoring source database from a point in time (source database name and restore from time must be specified)
    identity IdentityResponse
    Identity property.
    resourceTags Map<String,String>
    Additional database properties to be applied as the underlying database resource tags.
    restoreFromTime String
    Restore from time when CreateMode is PointInTimeRestore.
    sourceDatabaseName String
    Source database name used when CreateMode is Copy or PointInTimeRestore.
    tierName String
    Name of the tier this database belongs to.
    transparentDataEncryption TransparentDataEncryptionResponse
    Transparent Data Encryption properties
    backupRetentionDays number
    Backup retention in days.
    connectionString string
    Connection string to connect to the database with.
    databaseSizeGbMax number
    Maximum database size in Gb.
    earliestRestoreTime string
    Earliest restore time.
    latestRestoreTime string
    Latest restore time.
    originalDatabaseId string
    Resource identifier for the underlying database resource.
    provisioningState string
    Database state.
    recoverable boolean
    If true, database is recoverable.
    collation string
    Database collation.
    createMode string
    Create mode. Available options: Default - Create a database. Copy - Copy the source database (source database name must be specified) PointInTimeRestore - Create a database by restoring source database from a point in time (source database name and restore from time must be specified)
    identity IdentityResponse
    Identity property.
    resourceTags {[key: string]: string}
    Additional database properties to be applied as the underlying database resource tags.
    restoreFromTime string
    Restore from time when CreateMode is PointInTimeRestore.
    sourceDatabaseName string
    Source database name used when CreateMode is Copy or PointInTimeRestore.
    tierName string
    Name of the tier this database belongs to.
    transparentDataEncryption TransparentDataEncryptionResponse
    Transparent Data Encryption properties
    backup_retention_days int
    Backup retention in days.
    connection_string str
    Connection string to connect to the database with.
    database_size_gb_max int
    Maximum database size in Gb.
    earliest_restore_time str
    Earliest restore time.
    latest_restore_time str
    Latest restore time.
    original_database_id str
    Resource identifier for the underlying database resource.
    provisioning_state str
    Database state.
    recoverable bool
    If true, database is recoverable.
    collation str
    Database collation.
    create_mode str
    Create mode. Available options: Default - Create a database. Copy - Copy the source database (source database name must be specified) PointInTimeRestore - Create a database by restoring source database from a point in time (source database name and restore from time must be specified)
    identity IdentityResponse
    Identity property.
    resource_tags Mapping[str, str]
    Additional database properties to be applied as the underlying database resource tags.
    restore_from_time str
    Restore from time when CreateMode is PointInTimeRestore.
    source_database_name str
    Source database name used when CreateMode is Copy or PointInTimeRestore.
    tier_name str
    Name of the tier this database belongs to.
    transparent_data_encryption TransparentDataEncryptionResponse
    Transparent Data Encryption properties
    backupRetentionDays Number
    Backup retention in days.
    connectionString String
    Connection string to connect to the database with.
    databaseSizeGbMax Number
    Maximum database size in Gb.
    earliestRestoreTime String
    Earliest restore time.
    latestRestoreTime String
    Latest restore time.
    originalDatabaseId String
    Resource identifier for the underlying database resource.
    provisioningState String
    Database state.
    recoverable Boolean
    If true, database is recoverable.
    collation String
    Database collation.
    createMode String
    Create mode. Available options: Default - Create a database. Copy - Copy the source database (source database name must be specified) PointInTimeRestore - Create a database by restoring source database from a point in time (source database name and restore from time must be specified)
    identity Property Map
    Identity property.
    resourceTags Map<String>
    Additional database properties to be applied as the underlying database resource tags.
    restoreFromTime String
    Restore from time when CreateMode is PointInTimeRestore.
    sourceDatabaseName String
    Source database name used when CreateMode is Copy or PointInTimeRestore.
    tierName String
    Name of the tier this database belongs to.
    transparentDataEncryption Property Map
    Transparent Data Encryption properties

    Identity, IdentityArgs

    FederatedClientId string
    The federated client id for the SQL Database. It is used for cross tenant CMK scenario.
    IdentityType string | Pulumi.AzureNative.DatabaseFleetManager.IdentityType
    Identity type of the main principal.
    UserAssignedIdentities List<Pulumi.AzureNative.DatabaseFleetManager.Inputs.DatabaseIdentity>
    User identity ids
    FederatedClientId string
    The federated client id for the SQL Database. It is used for cross tenant CMK scenario.
    IdentityType string | IdentityType
    Identity type of the main principal.
    UserAssignedIdentities []DatabaseIdentity
    User identity ids
    federatedClientId String
    The federated client id for the SQL Database. It is used for cross tenant CMK scenario.
    identityType String | IdentityType
    Identity type of the main principal.
    userAssignedIdentities List<DatabaseIdentity>
    User identity ids
    federatedClientId string
    The federated client id for the SQL Database. It is used for cross tenant CMK scenario.
    identityType string | IdentityType
    Identity type of the main principal.
    userAssignedIdentities DatabaseIdentity[]
    User identity ids
    federated_client_id str
    The federated client id for the SQL Database. It is used for cross tenant CMK scenario.
    identity_type str | IdentityType
    Identity type of the main principal.
    user_assigned_identities Sequence[DatabaseIdentity]
    User identity ids
    federatedClientId String
    The federated client id for the SQL Database. It is used for cross tenant CMK scenario.
    identityType String | "None" | "UserAssigned"
    Identity type of the main principal.
    userAssignedIdentities List<Property Map>
    User identity ids

    IdentityResponse, IdentityResponseArgs

    FederatedClientId string
    The federated client id for the SQL Database. It is used for cross tenant CMK scenario.
    IdentityType string
    Identity type of the main principal.
    UserAssignedIdentities List<Pulumi.AzureNative.DatabaseFleetManager.Inputs.DatabaseIdentityResponse>
    User identity ids
    FederatedClientId string
    The federated client id for the SQL Database. It is used for cross tenant CMK scenario.
    IdentityType string
    Identity type of the main principal.
    UserAssignedIdentities []DatabaseIdentityResponse
    User identity ids
    federatedClientId String
    The federated client id for the SQL Database. It is used for cross tenant CMK scenario.
    identityType String
    Identity type of the main principal.
    userAssignedIdentities List<DatabaseIdentityResponse>
    User identity ids
    federatedClientId string
    The federated client id for the SQL Database. It is used for cross tenant CMK scenario.
    identityType string
    Identity type of the main principal.
    userAssignedIdentities DatabaseIdentityResponse[]
    User identity ids
    federated_client_id str
    The federated client id for the SQL Database. It is used for cross tenant CMK scenario.
    identity_type str
    Identity type of the main principal.
    user_assigned_identities Sequence[DatabaseIdentityResponse]
    User identity ids
    federatedClientId String
    The federated client id for the SQL Database. It is used for cross tenant CMK scenario.
    identityType String
    Identity type of the main principal.
    userAssignedIdentities List<Property Map>
    User identity ids

    IdentityType, IdentityTypeArgs

    None
    NoneNo identity.
    UserAssigned
    UserAssignedUser assigned identity.
    IdentityTypeNone
    NoneNo identity.
    IdentityTypeUserAssigned
    UserAssignedUser assigned identity.
    None
    NoneNo identity.
    UserAssigned
    UserAssignedUser assigned identity.
    None
    NoneNo identity.
    UserAssigned
    UserAssignedUser assigned identity.
    NONE
    NoneNo identity.
    USER_ASSIGNED
    UserAssignedUser assigned identity.
    "None"
    NoneNo identity.
    "UserAssigned"
    UserAssignedUser assigned identity.

    SystemDataResponse, SystemDataResponseArgs

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

    TransparentDataEncryption, TransparentDataEncryptionArgs

    EnableAutoRotation bool
    Enable key auto rotation
    KeyUri string
    Customer Managed Key (CMK) Uri.
    Keys List<string>
    Additional Keys
    EnableAutoRotation bool
    Enable key auto rotation
    KeyUri string
    Customer Managed Key (CMK) Uri.
    Keys []string
    Additional Keys
    enableAutoRotation Boolean
    Enable key auto rotation
    keyUri String
    Customer Managed Key (CMK) Uri.
    keys List<String>
    Additional Keys
    enableAutoRotation boolean
    Enable key auto rotation
    keyUri string
    Customer Managed Key (CMK) Uri.
    keys string[]
    Additional Keys
    enable_auto_rotation bool
    Enable key auto rotation
    key_uri str
    Customer Managed Key (CMK) Uri.
    keys Sequence[str]
    Additional Keys
    enableAutoRotation Boolean
    Enable key auto rotation
    keyUri String
    Customer Managed Key (CMK) Uri.
    keys List<String>
    Additional Keys

    TransparentDataEncryptionResponse, TransparentDataEncryptionResponseArgs

    EnableAutoRotation bool
    Enable key auto rotation
    KeyUri string
    Customer Managed Key (CMK) Uri.
    Keys List<string>
    Additional Keys
    EnableAutoRotation bool
    Enable key auto rotation
    KeyUri string
    Customer Managed Key (CMK) Uri.
    Keys []string
    Additional Keys
    enableAutoRotation Boolean
    Enable key auto rotation
    keyUri String
    Customer Managed Key (CMK) Uri.
    keys List<String>
    Additional Keys
    enableAutoRotation boolean
    Enable key auto rotation
    keyUri string
    Customer Managed Key (CMK) Uri.
    keys string[]
    Additional Keys
    enable_auto_rotation bool
    Enable key auto rotation
    key_uri str
    Customer Managed Key (CMK) Uri.
    keys Sequence[str]
    Additional Keys
    enableAutoRotation Boolean
    Enable key auto rotation
    keyUri String
    Customer Managed Key (CMK) Uri.
    keys List<String>
    Additional Keys

    Import

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

    $ pulumi import azure-native:databasefleetmanager:FleetDatabase customer-db-prod /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DatabaseFleetManager/fleets/{fleetName}/fleetspaces/{fleetspaceName}/databases/{databaseName} 
    

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

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi