1. Packages
  2. Azure Native
  3. API Docs
  4. databasefleetmanager
  5. FleetTier
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi

azure-native.databasefleetmanager.FleetTier

Explore with Pulumi AI

A SQL Database Fleet tier.

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

Example Usage

FleetTiers_CreateOrUpdate_MaximumSet_Gen - generated by [MaximumSet] rule

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var fleetTier = new AzureNative.DatabaseFleetManager.FleetTier("fleetTier", new()
    {
        FleetName = "critical-production-fleet",
        Properties = new AzureNative.DatabaseFleetManager.Inputs.FleetTierPropertiesArgs
        {
            Capacity = 4,
            DatabaseCapacityMax = 4,
            DatabaseCapacityMin = 0,
            DatabaseSizeGbMax = 50,
            Family = "Gen5",
            HighAvailabilityReplicaCount = 5,
            PoolNumOfDatabasesMax = 10,
            Pooled = true,
            Serverless = false,
            ServiceTier = "GeneralPurpose",
            ZoneRedundancy = AzureNative.DatabaseFleetManager.ZoneRedundancy.Disabled,
        },
        ResourceGroupName = "rg-database-fleet-manager",
        TierName = "general-purpose-tier",
    });

});
Copy
package main

import (
	databasefleetmanager "github.com/pulumi/pulumi-azure-native-sdk/databasefleetmanager/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := databasefleetmanager.NewFleetTier(ctx, "fleetTier", &databasefleetmanager.FleetTierArgs{
			FleetName: pulumi.String("critical-production-fleet"),
			Properties: &databasefleetmanager.FleetTierPropertiesArgs{
				Capacity:                     pulumi.Int(4),
				DatabaseCapacityMax:          pulumi.Float64(4),
				DatabaseCapacityMin:          pulumi.Float64(0),
				DatabaseSizeGbMax:            pulumi.Int(50),
				Family:                       pulumi.String("Gen5"),
				HighAvailabilityReplicaCount: pulumi.Int(5),
				PoolNumOfDatabasesMax:        pulumi.Int(10),
				Pooled:                       pulumi.Bool(true),
				Serverless:                   pulumi.Bool(false),
				ServiceTier:                  pulumi.String("GeneralPurpose"),
				ZoneRedundancy:               pulumi.String(databasefleetmanager.ZoneRedundancyDisabled),
			},
			ResourceGroupName: pulumi.String("rg-database-fleet-manager"),
			TierName:          pulumi.String("general-purpose-tier"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.databasefleetmanager.FleetTier;
import com.pulumi.azurenative.databasefleetmanager.FleetTierArgs;
import com.pulumi.azurenative.databasefleetmanager.inputs.FleetTierPropertiesArgs;
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 fleetTier = new FleetTier("fleetTier", FleetTierArgs.builder()
            .fleetName("critical-production-fleet")
            .properties(FleetTierPropertiesArgs.builder()
                .capacity(4)
                .databaseCapacityMax(4.0)
                .databaseCapacityMin(0.0)
                .databaseSizeGbMax(50)
                .family("Gen5")
                .highAvailabilityReplicaCount(5)
                .poolNumOfDatabasesMax(10)
                .pooled(true)
                .serverless(false)
                .serviceTier("GeneralPurpose")
                .zoneRedundancy("Disabled")
                .build())
            .resourceGroupName("rg-database-fleet-manager")
            .tierName("general-purpose-tier")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const fleetTier = new azure_native.databasefleetmanager.FleetTier("fleetTier", {
    fleetName: "critical-production-fleet",
    properties: {
        capacity: 4,
        databaseCapacityMax: 4,
        databaseCapacityMin: 0,
        databaseSizeGbMax: 50,
        family: "Gen5",
        highAvailabilityReplicaCount: 5,
        poolNumOfDatabasesMax: 10,
        pooled: true,
        serverless: false,
        serviceTier: "GeneralPurpose",
        zoneRedundancy: azure_native.databasefleetmanager.ZoneRedundancy.Disabled,
    },
    resourceGroupName: "rg-database-fleet-manager",
    tierName: "general-purpose-tier",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

fleet_tier = azure_native.databasefleetmanager.FleetTier("fleetTier",
    fleet_name="critical-production-fleet",
    properties={
        "capacity": 4,
        "database_capacity_max": 4,
        "database_capacity_min": 0,
        "database_size_gb_max": 50,
        "family": "Gen5",
        "high_availability_replica_count": 5,
        "pool_num_of_databases_max": 10,
        "pooled": True,
        "serverless": False,
        "service_tier": "GeneralPurpose",
        "zone_redundancy": azure_native.databasefleetmanager.ZoneRedundancy.DISABLED,
    },
    resource_group_name="rg-database-fleet-manager",
    tier_name="general-purpose-tier")
Copy
resources:
  fleetTier:
    type: azure-native:databasefleetmanager:FleetTier
    properties:
      fleetName: critical-production-fleet
      properties:
        capacity: 4
        databaseCapacityMax: 4
        databaseCapacityMin: 0
        databaseSizeGbMax: 50
        family: Gen5
        highAvailabilityReplicaCount: 5
        poolNumOfDatabasesMax: 10
        pooled: true
        serverless: false
        serviceTier: GeneralPurpose
        zoneRedundancy: Disabled
      resourceGroupName: rg-database-fleet-manager
      tierName: general-purpose-tier
Copy

Create FleetTier Resource

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

Constructor syntax

new FleetTier(name: string, args: FleetTierArgs, opts?: CustomResourceOptions);
@overload
def FleetTier(resource_name: str,
              args: FleetTierArgs,
              opts: Optional[ResourceOptions] = None)

@overload
def FleetTier(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              fleet_name: Optional[str] = None,
              resource_group_name: Optional[str] = None,
              properties: Optional[FleetTierPropertiesArgs] = None,
              tier_name: Optional[str] = None)
func NewFleetTier(ctx *Context, name string, args FleetTierArgs, opts ...ResourceOption) (*FleetTier, error)
public FleetTier(string name, FleetTierArgs args, CustomResourceOptions? opts = null)
public FleetTier(String name, FleetTierArgs args)
public FleetTier(String name, FleetTierArgs args, CustomResourceOptions options)
type: azure-native:databasefleetmanager:FleetTier
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. FleetTierArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. FleetTierArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. FleetTierArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. FleetTierArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. FleetTierArgs
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 fleetTierResource = new AzureNative.DatabaseFleetManager.FleetTier("fleetTierResource", new()
{
    FleetName = "string",
    ResourceGroupName = "string",
    Properties = new AzureNative.DatabaseFleetManager.Inputs.FleetTierPropertiesArgs
    {
        Capacity = 0,
        DatabaseCapacityMax = 0,
        DatabaseCapacityMin = 0,
        DatabaseSizeGbMax = 0,
        Family = "string",
        HighAvailabilityReplicaCount = 0,
        PoolNumOfDatabasesMax = 0,
        Pooled = false,
        Serverless = false,
        ServiceTier = "string",
        ZoneRedundancy = "string",
    },
    TierName = "string",
});
Copy
example, err := databasefleetmanager.NewFleetTier(ctx, "fleetTierResource", &databasefleetmanager.FleetTierArgs{
	FleetName:         pulumi.String("string"),
	ResourceGroupName: pulumi.String("string"),
	Properties: &databasefleetmanager.FleetTierPropertiesArgs{
		Capacity:                     pulumi.Int(0),
		DatabaseCapacityMax:          pulumi.Float64(0),
		DatabaseCapacityMin:          pulumi.Float64(0),
		DatabaseSizeGbMax:            pulumi.Int(0),
		Family:                       pulumi.String("string"),
		HighAvailabilityReplicaCount: pulumi.Int(0),
		PoolNumOfDatabasesMax:        pulumi.Int(0),
		Pooled:                       pulumi.Bool(false),
		Serverless:                   pulumi.Bool(false),
		ServiceTier:                  pulumi.String("string"),
		ZoneRedundancy:               pulumi.String("string"),
	},
	TierName: pulumi.String("string"),
})
Copy
var fleetTierResource = new FleetTier("fleetTierResource", FleetTierArgs.builder()
    .fleetName("string")
    .resourceGroupName("string")
    .properties(FleetTierPropertiesArgs.builder()
        .capacity(0)
        .databaseCapacityMax(0)
        .databaseCapacityMin(0)
        .databaseSizeGbMax(0)
        .family("string")
        .highAvailabilityReplicaCount(0)
        .poolNumOfDatabasesMax(0)
        .pooled(false)
        .serverless(false)
        .serviceTier("string")
        .zoneRedundancy("string")
        .build())
    .tierName("string")
    .build());
Copy
fleet_tier_resource = azure_native.databasefleetmanager.FleetTier("fleetTierResource",
    fleet_name="string",
    resource_group_name="string",
    properties={
        "capacity": 0,
        "database_capacity_max": 0,
        "database_capacity_min": 0,
        "database_size_gb_max": 0,
        "family": "string",
        "high_availability_replica_count": 0,
        "pool_num_of_databases_max": 0,
        "pooled": False,
        "serverless": False,
        "service_tier": "string",
        "zone_redundancy": "string",
    },
    tier_name="string")
Copy
const fleetTierResource = new azure_native.databasefleetmanager.FleetTier("fleetTierResource", {
    fleetName: "string",
    resourceGroupName: "string",
    properties: {
        capacity: 0,
        databaseCapacityMax: 0,
        databaseCapacityMin: 0,
        databaseSizeGbMax: 0,
        family: "string",
        highAvailabilityReplicaCount: 0,
        poolNumOfDatabasesMax: 0,
        pooled: false,
        serverless: false,
        serviceTier: "string",
        zoneRedundancy: "string",
    },
    tierName: "string",
});
Copy
type: azure-native:databasefleetmanager:FleetTier
properties:
    fleetName: string
    properties:
        capacity: 0
        databaseCapacityMax: 0
        databaseCapacityMin: 0
        databaseSizeGbMax: 0
        family: string
        highAvailabilityReplicaCount: 0
        poolNumOfDatabasesMax: 0
        pooled: false
        serverless: false
        serviceTier: string
        zoneRedundancy: string
    resourceGroupName: string
    tierName: string
Copy

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

FleetName
This property is required.
Changes to this property will trigger replacement.
string
Name of the database fleet.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
Properties Pulumi.AzureNative.DatabaseFleetManager.Inputs.FleetTierProperties
A Fleet tier properties.
TierName Changes to this property will trigger replacement. string
Name of the tier.
FleetName
This property is required.
Changes to this property will trigger replacement.
string
Name of the database fleet.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
Properties FleetTierPropertiesArgs
A Fleet tier properties.
TierName Changes to this property will trigger replacement. string
Name of the tier.
fleetName
This property is required.
Changes to this property will trigger replacement.
String
Name of the database fleet.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
properties FleetTierProperties
A Fleet tier properties.
tierName Changes to this property will trigger replacement. String
Name of the tier.
fleetName
This property is required.
Changes to this property will trigger replacement.
string
Name of the database fleet.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
properties FleetTierProperties
A Fleet tier properties.
tierName Changes to this property will trigger replacement. string
Name of the tier.
fleet_name
This property is required.
Changes to this property will trigger replacement.
str
Name of the database fleet.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
properties FleetTierPropertiesArgs
A Fleet tier properties.
tier_name Changes to this property will trigger replacement. str
Name of the tier.
fleetName
This property is required.
Changes to this property will trigger replacement.
String
Name of the database fleet.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
properties Property Map
A Fleet tier properties.
tierName Changes to this property will trigger replacement. String
Name of the tier.

Outputs

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

AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
SystemData Pulumi.AzureNative.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"
AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
SystemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion string
The Azure API version of the resource.
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azure_api_version str
The Azure API version of the resource.
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource
system_data SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
systemData Property Map
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

FleetTierProperties
, FleetTierPropertiesArgs

Capacity int
Capacity of provisioned resources in the tier, in units matching the specified service tier, for example vCore for GeneralPurpose.
DatabaseCapacityMax double
Maximum allocated capacity per database, in units matching the specified service tier.
DatabaseCapacityMin double
Minimum allocated capacity per database, in units matching the specified service tier.
DatabaseSizeGbMax int
Maximum database size in Gb.
Family string
Family of provisioned resources, for example Gen5.
HighAvailabilityReplicaCount int
Number of high availability replicas for databases in this tier.
PoolNumOfDatabasesMax int
Maximum number of databases per pool.
Pooled bool
If true, databases are pooled.
Serverless bool
If true, serverless resources are provisioned in the tier.
ServiceTier string
Service tier of provisioned resources. Supported values: GeneralPurpose, Hyperscale.
ZoneRedundancy string | Pulumi.AzureNative.DatabaseFleetManager.ZoneRedundancy
Enable zone redundancy for all databases in this tier.
Capacity int
Capacity of provisioned resources in the tier, in units matching the specified service tier, for example vCore for GeneralPurpose.
DatabaseCapacityMax float64
Maximum allocated capacity per database, in units matching the specified service tier.
DatabaseCapacityMin float64
Minimum allocated capacity per database, in units matching the specified service tier.
DatabaseSizeGbMax int
Maximum database size in Gb.
Family string
Family of provisioned resources, for example Gen5.
HighAvailabilityReplicaCount int
Number of high availability replicas for databases in this tier.
PoolNumOfDatabasesMax int
Maximum number of databases per pool.
Pooled bool
If true, databases are pooled.
Serverless bool
If true, serverless resources are provisioned in the tier.
ServiceTier string
Service tier of provisioned resources. Supported values: GeneralPurpose, Hyperscale.
ZoneRedundancy string | ZoneRedundancy
Enable zone redundancy for all databases in this tier.
capacity Integer
Capacity of provisioned resources in the tier, in units matching the specified service tier, for example vCore for GeneralPurpose.
databaseCapacityMax Double
Maximum allocated capacity per database, in units matching the specified service tier.
databaseCapacityMin Double
Minimum allocated capacity per database, in units matching the specified service tier.
databaseSizeGbMax Integer
Maximum database size in Gb.
family String
Family of provisioned resources, for example Gen5.
highAvailabilityReplicaCount Integer
Number of high availability replicas for databases in this tier.
poolNumOfDatabasesMax Integer
Maximum number of databases per pool.
pooled Boolean
If true, databases are pooled.
serverless Boolean
If true, serverless resources are provisioned in the tier.
serviceTier String
Service tier of provisioned resources. Supported values: GeneralPurpose, Hyperscale.
zoneRedundancy String | ZoneRedundancy
Enable zone redundancy for all databases in this tier.
capacity number
Capacity of provisioned resources in the tier, in units matching the specified service tier, for example vCore for GeneralPurpose.
databaseCapacityMax number
Maximum allocated capacity per database, in units matching the specified service tier.
databaseCapacityMin number
Minimum allocated capacity per database, in units matching the specified service tier.
databaseSizeGbMax number
Maximum database size in Gb.
family string
Family of provisioned resources, for example Gen5.
highAvailabilityReplicaCount number
Number of high availability replicas for databases in this tier.
poolNumOfDatabasesMax number
Maximum number of databases per pool.
pooled boolean
If true, databases are pooled.
serverless boolean
If true, serverless resources are provisioned in the tier.
serviceTier string
Service tier of provisioned resources. Supported values: GeneralPurpose, Hyperscale.
zoneRedundancy string | ZoneRedundancy
Enable zone redundancy for all databases in this tier.
capacity int
Capacity of provisioned resources in the tier, in units matching the specified service tier, for example vCore for GeneralPurpose.
database_capacity_max float
Maximum allocated capacity per database, in units matching the specified service tier.
database_capacity_min float
Minimum allocated capacity per database, in units matching the specified service tier.
database_size_gb_max int
Maximum database size in Gb.
family str
Family of provisioned resources, for example Gen5.
high_availability_replica_count int
Number of high availability replicas for databases in this tier.
pool_num_of_databases_max int
Maximum number of databases per pool.
pooled bool
If true, databases are pooled.
serverless bool
If true, serverless resources are provisioned in the tier.
service_tier str
Service tier of provisioned resources. Supported values: GeneralPurpose, Hyperscale.
zone_redundancy str | ZoneRedundancy
Enable zone redundancy for all databases in this tier.
capacity Number
Capacity of provisioned resources in the tier, in units matching the specified service tier, for example vCore for GeneralPurpose.
databaseCapacityMax Number
Maximum allocated capacity per database, in units matching the specified service tier.
databaseCapacityMin Number
Minimum allocated capacity per database, in units matching the specified service tier.
databaseSizeGbMax Number
Maximum database size in Gb.
family String
Family of provisioned resources, for example Gen5.
highAvailabilityReplicaCount Number
Number of high availability replicas for databases in this tier.
poolNumOfDatabasesMax Number
Maximum number of databases per pool.
pooled Boolean
If true, databases are pooled.
serverless Boolean
If true, serverless resources are provisioned in the tier.
serviceTier String
Service tier of provisioned resources. Supported values: GeneralPurpose, Hyperscale.
zoneRedundancy String | "Enabled" | "Disabled"
Enable zone redundancy for all databases in this tier.

FleetTierPropertiesResponse
, FleetTierPropertiesResponseArgs

Disabled This property is required. bool
If true, tier is disabled.
ProvisioningState This property is required. string
Provisioning state.
Capacity int
Capacity of provisioned resources in the tier, in units matching the specified service tier, for example vCore for GeneralPurpose.
DatabaseCapacityMax double
Maximum allocated capacity per database, in units matching the specified service tier.
DatabaseCapacityMin double
Minimum allocated capacity per database, in units matching the specified service tier.
DatabaseSizeGbMax int
Maximum database size in Gb.
Family string
Family of provisioned resources, for example Gen5.
HighAvailabilityReplicaCount int
Number of high availability replicas for databases in this tier.
PoolNumOfDatabasesMax int
Maximum number of databases per pool.
Pooled bool
If true, databases are pooled.
Serverless bool
If true, serverless resources are provisioned in the tier.
ServiceTier string
Service tier of provisioned resources. Supported values: GeneralPurpose, Hyperscale.
ZoneRedundancy string
Enable zone redundancy for all databases in this tier.
Disabled This property is required. bool
If true, tier is disabled.
ProvisioningState This property is required. string
Provisioning state.
Capacity int
Capacity of provisioned resources in the tier, in units matching the specified service tier, for example vCore for GeneralPurpose.
DatabaseCapacityMax float64
Maximum allocated capacity per database, in units matching the specified service tier.
DatabaseCapacityMin float64
Minimum allocated capacity per database, in units matching the specified service tier.
DatabaseSizeGbMax int
Maximum database size in Gb.
Family string
Family of provisioned resources, for example Gen5.
HighAvailabilityReplicaCount int
Number of high availability replicas for databases in this tier.
PoolNumOfDatabasesMax int
Maximum number of databases per pool.
Pooled bool
If true, databases are pooled.
Serverless bool
If true, serverless resources are provisioned in the tier.
ServiceTier string
Service tier of provisioned resources. Supported values: GeneralPurpose, Hyperscale.
ZoneRedundancy string
Enable zone redundancy for all databases in this tier.
disabled This property is required. Boolean
If true, tier is disabled.
provisioningState This property is required. String
Provisioning state.
capacity Integer
Capacity of provisioned resources in the tier, in units matching the specified service tier, for example vCore for GeneralPurpose.
databaseCapacityMax Double
Maximum allocated capacity per database, in units matching the specified service tier.
databaseCapacityMin Double
Minimum allocated capacity per database, in units matching the specified service tier.
databaseSizeGbMax Integer
Maximum database size in Gb.
family String
Family of provisioned resources, for example Gen5.
highAvailabilityReplicaCount Integer
Number of high availability replicas for databases in this tier.
poolNumOfDatabasesMax Integer
Maximum number of databases per pool.
pooled Boolean
If true, databases are pooled.
serverless Boolean
If true, serverless resources are provisioned in the tier.
serviceTier String
Service tier of provisioned resources. Supported values: GeneralPurpose, Hyperscale.
zoneRedundancy String
Enable zone redundancy for all databases in this tier.
disabled This property is required. boolean
If true, tier is disabled.
provisioningState This property is required. string
Provisioning state.
capacity number
Capacity of provisioned resources in the tier, in units matching the specified service tier, for example vCore for GeneralPurpose.
databaseCapacityMax number
Maximum allocated capacity per database, in units matching the specified service tier.
databaseCapacityMin number
Minimum allocated capacity per database, in units matching the specified service tier.
databaseSizeGbMax number
Maximum database size in Gb.
family string
Family of provisioned resources, for example Gen5.
highAvailabilityReplicaCount number
Number of high availability replicas for databases in this tier.
poolNumOfDatabasesMax number
Maximum number of databases per pool.
pooled boolean
If true, databases are pooled.
serverless boolean
If true, serverless resources are provisioned in the tier.
serviceTier string
Service tier of provisioned resources. Supported values: GeneralPurpose, Hyperscale.
zoneRedundancy string
Enable zone redundancy for all databases in this tier.
disabled This property is required. bool
If true, tier is disabled.
provisioning_state This property is required. str
Provisioning state.
capacity int
Capacity of provisioned resources in the tier, in units matching the specified service tier, for example vCore for GeneralPurpose.
database_capacity_max float
Maximum allocated capacity per database, in units matching the specified service tier.
database_capacity_min float
Minimum allocated capacity per database, in units matching the specified service tier.
database_size_gb_max int
Maximum database size in Gb.
family str
Family of provisioned resources, for example Gen5.
high_availability_replica_count int
Number of high availability replicas for databases in this tier.
pool_num_of_databases_max int
Maximum number of databases per pool.
pooled bool
If true, databases are pooled.
serverless bool
If true, serverless resources are provisioned in the tier.
service_tier str
Service tier of provisioned resources. Supported values: GeneralPurpose, Hyperscale.
zone_redundancy str
Enable zone redundancy for all databases in this tier.
disabled This property is required. Boolean
If true, tier is disabled.
provisioningState This property is required. String
Provisioning state.
capacity Number
Capacity of provisioned resources in the tier, in units matching the specified service tier, for example vCore for GeneralPurpose.
databaseCapacityMax Number
Maximum allocated capacity per database, in units matching the specified service tier.
databaseCapacityMin Number
Minimum allocated capacity per database, in units matching the specified service tier.
databaseSizeGbMax Number
Maximum database size in Gb.
family String
Family of provisioned resources, for example Gen5.
highAvailabilityReplicaCount Number
Number of high availability replicas for databases in this tier.
poolNumOfDatabasesMax Number
Maximum number of databases per pool.
pooled Boolean
If true, databases are pooled.
serverless Boolean
If true, serverless resources are provisioned in the tier.
serviceTier String
Service tier of provisioned resources. Supported values: GeneralPurpose, Hyperscale.
zoneRedundancy String
Enable zone redundancy for all databases in this tier.

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.

ZoneRedundancy
, ZoneRedundancyArgs

Enabled
EnabledZone redundancy enabled.
Disabled
DisabledZone redundancy disabled.
ZoneRedundancyEnabled
EnabledZone redundancy enabled.
ZoneRedundancyDisabled
DisabledZone redundancy disabled.
Enabled
EnabledZone redundancy enabled.
Disabled
DisabledZone redundancy disabled.
Enabled
EnabledZone redundancy enabled.
Disabled
DisabledZone redundancy disabled.
ENABLED
EnabledZone redundancy enabled.
DISABLED
DisabledZone redundancy disabled.
"Enabled"
EnabledZone redundancy enabled.
"Disabled"
DisabledZone redundancy disabled.

Import

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

$ pulumi import azure-native:databasefleetmanager:FleetTier general-purpose-tier /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DatabaseFleetManager/fleets/{fleetName}/tiers/{tierName} 
Copy

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

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0