azure-native.databasefleetmanager.FleetDatabase
Explore with Pulumi AI
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:
- Fleet
Name string - Name of the database fleet.
- Fleetspace
Name string - Name of the fleetspace.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Database
Name string - Name of the database.
- Properties
Pulumi.
Azure Native. Database Fleet Manager. Inputs. Fleet Database Properties - Fleet database properties.
- Fleet
Name string - Name of the database fleet.
- Fleetspace
Name string - Name of the fleetspace.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Database
Name string - Name of the database.
- Properties
Fleet
Database Properties Args - Fleet database properties.
- fleet
Name String - Name of the database fleet.
- fleetspace
Name String - Name of the fleetspace.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- database
Name String - Name of the database.
- properties
Fleet
Database Properties - Fleet database properties.
- fleet
Name string - Name of the database fleet.
- fleetspace
Name string - Name of the fleetspace.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- database
Name string - Name of the database.
- properties
Fleet
Database Properties - Fleet database properties.
- fleet_
name str - Name of the database fleet.
- fleetspace_
name str - Name of the fleetspace.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- database_
name str - Name of the database.
- properties
Fleet
Database Properties Args - Fleet database properties.
- fleet
Name String - Name of the database fleet.
- fleetspace
Name String - Name of the fleetspace.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- database
Name 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
- System
Data Pulumi.Azure Native. Database Fleet Manager. 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"
- 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"
- 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"
- 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"
- 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"
- 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
DatabaseCreateMode, DatabaseCreateModeArgs
- 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).
- Database
Create Mode Default - DefaultCreate a database.
- Database
Create Mode Copy - CopyCopy the source database (source database name must be specified).
- Database
Create Mode 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).
- 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).
- 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).
- 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).
- "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).
DatabaseIdentity, DatabaseIdentityArgs
- Client
Id string - Client Id of the database identity.
- Principal
Id string - Principal Id of the database identity.
- Resource
Id string - Resource Id of the database identity.
- Client
Id string - Client Id of the database identity.
- Principal
Id string - Principal Id of the database identity.
- Resource
Id string - Resource Id of the database identity.
- client
Id String - Client Id of the database identity.
- principal
Id String - Principal Id of the database identity.
- resource
Id String - Resource Id of the database identity.
- client
Id string - Client Id of the database identity.
- principal
Id string - Principal Id of the database identity.
- resource
Id 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.
- client
Id String - Client Id of the database identity.
- principal
Id String - Principal Id of the database identity.
- resource
Id String - Resource Id of the database identity.
DatabaseIdentityResponse, DatabaseIdentityResponseArgs
- Client
Id string - Client Id of the database identity.
- Principal
Id string - Principal Id of the database identity.
- Resource
Id string - Resource Id of the database identity.
- Client
Id string - Client Id of the database identity.
- Principal
Id string - Principal Id of the database identity.
- Resource
Id string - Resource Id of the database identity.
- client
Id String - Client Id of the database identity.
- principal
Id String - Principal Id of the database identity.
- resource
Id String - Resource Id of the database identity.
- client
Id string - Client Id of the database identity.
- principal
Id string - Principal Id of the database identity.
- resource
Id 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.
- client
Id String - Client Id of the database identity.
- principal
Id String - Principal Id of the database identity.
- resource
Id String - Resource Id of the database identity.
FleetDatabaseProperties, FleetDatabasePropertiesArgs
- Collation string
- Database collation.
- Create
Mode string | Pulumi.Azure Native. Database Fleet Manager. Database Create Mode - 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.
Azure Native. Database Fleet Manager. Inputs. Identity - Identity property.
- Dictionary<string, string>
- Additional database properties to be applied as the underlying database resource tags.
- Restore
From stringTime - Restore from time when CreateMode is PointInTimeRestore.
- Source
Database stringName - Source database name used when CreateMode is Copy or PointInTimeRestore.
- Tier
Name string - Name of the tier this database belongs to.
- Transparent
Data Pulumi.Encryption Azure Native. Database Fleet Manager. Inputs. Transparent Data Encryption - Transparent Data Encryption properties
- Collation string
- Database collation.
- Create
Mode string | DatabaseCreate Mode - 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.
- map[string]string
- Additional database properties to be applied as the underlying database resource tags.
- Restore
From stringTime - Restore from time when CreateMode is PointInTimeRestore.
- Source
Database stringName - Source database name used when CreateMode is Copy or PointInTimeRestore.
- Tier
Name string - Name of the tier this database belongs to.
- Transparent
Data TransparentEncryption Data Encryption - Transparent Data Encryption properties
- collation String
- Database collation.
- create
Mode String | DatabaseCreate Mode - 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.
- Map<String,String>
- Additional database properties to be applied as the underlying database resource tags.
- restore
From StringTime - Restore from time when CreateMode is PointInTimeRestore.
- source
Database StringName - Source database name used when CreateMode is Copy or PointInTimeRestore.
- tier
Name String - Name of the tier this database belongs to.
- transparent
Data TransparentEncryption Data Encryption - Transparent Data Encryption properties
- collation string
- Database collation.
- create
Mode string | DatabaseCreate Mode - 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.
- {[key: string]: string}
- Additional database properties to be applied as the underlying database resource tags.
- restore
From stringTime - Restore from time when CreateMode is PointInTimeRestore.
- source
Database stringName - Source database name used when CreateMode is Copy or PointInTimeRestore.
- tier
Name string - Name of the tier this database belongs to.
- transparent
Data TransparentEncryption Data Encryption - Transparent Data Encryption properties
- collation str
- Database collation.
- create_
mode str | DatabaseCreate Mode - 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.
- Mapping[str, str]
- Additional database properties to be applied as the underlying database resource tags.
- restore_
from_ strtime - Restore from time when CreateMode is PointInTimeRestore.
- source_
database_ strname - Source database name used when CreateMode is Copy or PointInTimeRestore.
- tier_
name str - Name of the tier this database belongs to.
- transparent_
data_ Transparentencryption Data Encryption - Transparent Data Encryption properties
- collation String
- Database collation.
- create
Mode String | "Default" | "Copy" | "PointIn Time Restore" - 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.
- Map<String>
- Additional database properties to be applied as the underlying database resource tags.
- restore
From StringTime - Restore from time when CreateMode is PointInTimeRestore.
- source
Database StringName - Source database name used when CreateMode is Copy or PointInTimeRestore.
- tier
Name String - Name of the tier this database belongs to.
- transparent
Data Property MapEncryption - Transparent Data Encryption properties
FleetDatabasePropertiesResponse, FleetDatabasePropertiesResponseArgs
- Backup
Retention intDays - Backup retention in days.
- Connection
String string - Connection string to connect to the database with.
- Database
Size intGb Max - Maximum database size in Gb.
- Earliest
Restore stringTime - Earliest restore time.
- Latest
Restore stringTime - Latest restore time.
- Original
Database stringId - Resource identifier for the underlying database resource.
- Provisioning
State string - Database state.
- Recoverable bool
- If true, database is recoverable.
- Collation string
- Database collation.
- Create
Mode 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.
Azure Native. Database Fleet Manager. Inputs. Identity Response - Identity property.
- Dictionary<string, string>
- Additional database properties to be applied as the underlying database resource tags.
- Restore
From stringTime - Restore from time when CreateMode is PointInTimeRestore.
- Source
Database stringName - Source database name used when CreateMode is Copy or PointInTimeRestore.
- Tier
Name string - Name of the tier this database belongs to.
- Transparent
Data Pulumi.Encryption Azure Native. Database Fleet Manager. Inputs. Transparent Data Encryption Response - Transparent Data Encryption properties
- Backup
Retention intDays - Backup retention in days.
- Connection
String string - Connection string to connect to the database with.
- Database
Size intGb Max - Maximum database size in Gb.
- Earliest
Restore stringTime - Earliest restore time.
- Latest
Restore stringTime - Latest restore time.
- Original
Database stringId - Resource identifier for the underlying database resource.
- Provisioning
State string - Database state.
- Recoverable bool
- If true, database is recoverable.
- Collation string
- Database collation.
- Create
Mode 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
Identity
Response - Identity property.
- map[string]string
- Additional database properties to be applied as the underlying database resource tags.
- Restore
From stringTime - Restore from time when CreateMode is PointInTimeRestore.
- Source
Database stringName - Source database name used when CreateMode is Copy or PointInTimeRestore.
- Tier
Name string - Name of the tier this database belongs to.
- Transparent
Data TransparentEncryption Data Encryption Response - Transparent Data Encryption properties
- backup
Retention IntegerDays - Backup retention in days.
- connection
String String - Connection string to connect to the database with.
- database
Size IntegerGb Max - Maximum database size in Gb.
- earliest
Restore StringTime - Earliest restore time.
- latest
Restore StringTime - Latest restore time.
- original
Database StringId - Resource identifier for the underlying database resource.
- provisioning
State String - Database state.
- recoverable Boolean
- If true, database is recoverable.
- collation String
- Database collation.
- create
Mode 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
Identity
Response - Identity property.
- Map<String,String>
- Additional database properties to be applied as the underlying database resource tags.
- restore
From StringTime - Restore from time when CreateMode is PointInTimeRestore.
- source
Database StringName - Source database name used when CreateMode is Copy or PointInTimeRestore.
- tier
Name String - Name of the tier this database belongs to.
- transparent
Data TransparentEncryption Data Encryption Response - Transparent Data Encryption properties
- backup
Retention numberDays - Backup retention in days.
- connection
String string - Connection string to connect to the database with.
- database
Size numberGb Max - Maximum database size in Gb.
- earliest
Restore stringTime - Earliest restore time.
- latest
Restore stringTime - Latest restore time.
- original
Database stringId - Resource identifier for the underlying database resource.
- provisioning
State string - Database state.
- recoverable boolean
- If true, database is recoverable.
- collation string
- Database collation.
- create
Mode 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
Identity
Response - Identity property.
- {[key: string]: string}
- Additional database properties to be applied as the underlying database resource tags.
- restore
From stringTime - Restore from time when CreateMode is PointInTimeRestore.
- source
Database stringName - Source database name used when CreateMode is Copy or PointInTimeRestore.
- tier
Name string - Name of the tier this database belongs to.
- transparent
Data TransparentEncryption Data Encryption Response - Transparent Data Encryption properties
- backup_
retention_ intdays - Backup retention in days.
- connection_
string str - Connection string to connect to the database with.
- database_
size_ intgb_ max - Maximum database size in Gb.
- earliest_
restore_ strtime - Earliest restore time.
- latest_
restore_ strtime - Latest restore time.
- original_
database_ strid - 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
Identity
Response - Identity property.
- Mapping[str, str]
- Additional database properties to be applied as the underlying database resource tags.
- restore_
from_ strtime - Restore from time when CreateMode is PointInTimeRestore.
- source_
database_ strname - Source database name used when CreateMode is Copy or PointInTimeRestore.
- tier_
name str - Name of the tier this database belongs to.
- transparent_
data_ Transparentencryption Data Encryption Response - Transparent Data Encryption properties
- backup
Retention NumberDays - Backup retention in days.
- connection
String String - Connection string to connect to the database with.
- database
Size NumberGb Max - Maximum database size in Gb.
- earliest
Restore StringTime - Earliest restore time.
- latest
Restore StringTime - Latest restore time.
- original
Database StringId - Resource identifier for the underlying database resource.
- provisioning
State String - Database state.
- recoverable Boolean
- If true, database is recoverable.
- collation String
- Database collation.
- create
Mode 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.
- Map<String>
- Additional database properties to be applied as the underlying database resource tags.
- restore
From StringTime - Restore from time when CreateMode is PointInTimeRestore.
- source
Database StringName - Source database name used when CreateMode is Copy or PointInTimeRestore.
- tier
Name String - Name of the tier this database belongs to.
- transparent
Data Property MapEncryption - Transparent Data Encryption properties
Identity, IdentityArgs
- Federated
Client stringId - The federated client id for the SQL Database. It is used for cross tenant CMK scenario.
- Identity
Type string | Pulumi.Azure Native. Database Fleet Manager. Identity Type - Identity type of the main principal.
- User
Assigned List<Pulumi.Identities Azure Native. Database Fleet Manager. Inputs. Database Identity> - User identity ids
- Federated
Client stringId - The federated client id for the SQL Database. It is used for cross tenant CMK scenario.
- Identity
Type string | IdentityType - Identity type of the main principal.
- User
Assigned []DatabaseIdentities Identity - User identity ids
- federated
Client StringId - The federated client id for the SQL Database. It is used for cross tenant CMK scenario.
- identity
Type String | IdentityType - Identity type of the main principal.
- user
Assigned List<DatabaseIdentities Identity> - User identity ids
- federated
Client stringId - The federated client id for the SQL Database. It is used for cross tenant CMK scenario.
- identity
Type string | IdentityType - Identity type of the main principal.
- user
Assigned DatabaseIdentities Identity[] - User identity ids
- federated_
client_ strid - 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_ Sequence[Databaseidentities Identity] - User identity ids
- federated
Client StringId - The federated client id for the SQL Database. It is used for cross tenant CMK scenario.
- identity
Type String | "None" | "UserAssigned" - Identity type of the main principal.
- user
Assigned List<Property Map>Identities - User identity ids
IdentityResponse, IdentityResponseArgs
- Federated
Client stringId - The federated client id for the SQL Database. It is used for cross tenant CMK scenario.
- Identity
Type string - Identity type of the main principal.
- User
Assigned List<Pulumi.Identities Azure Native. Database Fleet Manager. Inputs. Database Identity Response> - User identity ids
- Federated
Client stringId - The federated client id for the SQL Database. It is used for cross tenant CMK scenario.
- Identity
Type string - Identity type of the main principal.
- User
Assigned []DatabaseIdentities Identity Response - User identity ids
- federated
Client StringId - The federated client id for the SQL Database. It is used for cross tenant CMK scenario.
- identity
Type String - Identity type of the main principal.
- user
Assigned List<DatabaseIdentities Identity Response> - User identity ids
- federated
Client stringId - The federated client id for the SQL Database. It is used for cross tenant CMK scenario.
- identity
Type string - Identity type of the main principal.
- user
Assigned DatabaseIdentities Identity Response[] - User identity ids
- federated_
client_ strid - 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_ Sequence[Databaseidentities Identity Response] - User identity ids
- federated
Client StringId - The federated client id for the SQL Database. It is used for cross tenant CMK scenario.
- identity
Type String - Identity type of the main principal.
- user
Assigned List<Property Map>Identities - User identity ids
IdentityType, IdentityTypeArgs
- None
- NoneNo identity.
- User
Assigned - UserAssignedUser assigned identity.
- Identity
Type None - NoneNo identity.
- Identity
Type User Assigned - UserAssignedUser assigned identity.
- None
- NoneNo identity.
- User
Assigned - UserAssignedUser assigned identity.
- None
- NoneNo identity.
- User
Assigned - UserAssignedUser assigned identity.
- NONE
- NoneNo identity.
- USER_ASSIGNED
- UserAssignedUser assigned identity.
- "None"
- NoneNo identity.
- "User
Assigned" - UserAssignedUser assigned identity.
SystemDataResponse, SystemDataResponseArgs
- 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.
TransparentDataEncryption, TransparentDataEncryptionArgs
- Enable
Auto boolRotation - Enable key auto rotation
- Key
Uri string - Customer Managed Key (CMK) Uri.
- Keys List<string>
- Additional Keys
- Enable
Auto boolRotation - Enable key auto rotation
- Key
Uri string - Customer Managed Key (CMK) Uri.
- Keys []string
- Additional Keys
- enable
Auto BooleanRotation - Enable key auto rotation
- key
Uri String - Customer Managed Key (CMK) Uri.
- keys List<String>
- Additional Keys
- enable
Auto booleanRotation - Enable key auto rotation
- key
Uri string - Customer Managed Key (CMK) Uri.
- keys string[]
- Additional Keys
- enable_
auto_ boolrotation - Enable key auto rotation
- key_
uri str - Customer Managed Key (CMK) Uri.
- keys Sequence[str]
- Additional Keys
- enable
Auto BooleanRotation - Enable key auto rotation
- key
Uri String - Customer Managed Key (CMK) Uri.
- keys List<String>
- Additional Keys
TransparentDataEncryptionResponse, TransparentDataEncryptionResponseArgs
- Enable
Auto boolRotation - Enable key auto rotation
- Key
Uri string - Customer Managed Key (CMK) Uri.
- Keys List<string>
- Additional Keys
- Enable
Auto boolRotation - Enable key auto rotation
- Key
Uri string - Customer Managed Key (CMK) Uri.
- Keys []string
- Additional Keys
- enable
Auto BooleanRotation - Enable key auto rotation
- key
Uri String - Customer Managed Key (CMK) Uri.
- keys List<String>
- Additional Keys
- enable
Auto booleanRotation - Enable key auto rotation
- key
Uri string - Customer Managed Key (CMK) Uri.
- keys string[]
- Additional Keys
- enable_
auto_ boolrotation - Enable key auto rotation
- key_
uri str - Customer Managed Key (CMK) Uri.
- keys Sequence[str]
- Additional Keys
- enable
Auto BooleanRotation - Enable key auto rotation
- key
Uri 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