1. Packages
  2. Azure Native
  3. API Docs
  4. databasefleetmanager
  5. Fleetspace
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.Fleetspace

Explore with Pulumi AI

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

A fleetspace.

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

Create or Update Fleetspace - Generated by Policy

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

return await Deployment.RunAsync(() => 
{
    var fleetspace = new AzureNative.DatabaseFleetManager.Fleetspace("fleetspace", new()
    {
        FleetName = "production-fleet",
        FleetspaceName = "primary-space",
        Properties = new AzureNative.DatabaseFleetManager.Inputs.FleetspacePropertiesArgs
        {
            CapacityMax = 150000,
            MainPrincipal = new AzureNative.DatabaseFleetManager.Inputs.MainPrincipalArgs
            {
                ApplicationId = "d2d8b19e-c4f7-4c62-8e8d-7f0f96d94e39",
                Login = "adminUser",
                ObjectId = "f8b7c2d3-b9c4-4f3b-85cd-3d56c6e49f92",
                PrincipalType = AzureNative.DatabaseFleetManager.PrincipalType.Application,
                TenantId = "bde45d44-ec42-45b8-a5a2-c5b998c65ef6",
            },
        },
        ResourceGroupName = "rgdatabasefleetmanager",
    });

});
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.NewFleetspace(ctx, "fleetspace", &databasefleetmanager.FleetspaceArgs{
			FleetName:      pulumi.String("production-fleet"),
			FleetspaceName: pulumi.String("primary-space"),
			Properties: &databasefleetmanager.FleetspacePropertiesArgs{
				CapacityMax: pulumi.Int(150000),
				MainPrincipal: &databasefleetmanager.MainPrincipalArgs{
					ApplicationId: pulumi.String("d2d8b19e-c4f7-4c62-8e8d-7f0f96d94e39"),
					Login:         pulumi.String("adminUser"),
					ObjectId:      pulumi.String("f8b7c2d3-b9c4-4f3b-85cd-3d56c6e49f92"),
					PrincipalType: pulumi.String(databasefleetmanager.PrincipalTypeApplication),
					TenantId:      pulumi.String("bde45d44-ec42-45b8-a5a2-c5b998c65ef6"),
				},
			},
			ResourceGroupName: pulumi.String("rgdatabasefleetmanager"),
		})
		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.Fleetspace;
import com.pulumi.azurenative.databasefleetmanager.FleetspaceArgs;
import com.pulumi.azurenative.databasefleetmanager.inputs.FleetspacePropertiesArgs;
import com.pulumi.azurenative.databasefleetmanager.inputs.MainPrincipalArgs;
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 fleetspace = new Fleetspace("fleetspace", FleetspaceArgs.builder()
            .fleetName("production-fleet")
            .fleetspaceName("primary-space")
            .properties(FleetspacePropertiesArgs.builder()
                .capacityMax(150000)
                .mainPrincipal(MainPrincipalArgs.builder()
                    .applicationId("d2d8b19e-c4f7-4c62-8e8d-7f0f96d94e39")
                    .login("adminUser")
                    .objectId("f8b7c2d3-b9c4-4f3b-85cd-3d56c6e49f92")
                    .principalType("Application")
                    .tenantId("bde45d44-ec42-45b8-a5a2-c5b998c65ef6")
                    .build())
                .build())
            .resourceGroupName("rgdatabasefleetmanager")
            .build());

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

const fleetspace = new azure_native.databasefleetmanager.Fleetspace("fleetspace", {
    fleetName: "production-fleet",
    fleetspaceName: "primary-space",
    properties: {
        capacityMax: 150000,
        mainPrincipal: {
            applicationId: "d2d8b19e-c4f7-4c62-8e8d-7f0f96d94e39",
            login: "adminUser",
            objectId: "f8b7c2d3-b9c4-4f3b-85cd-3d56c6e49f92",
            principalType: azure_native.databasefleetmanager.PrincipalType.Application,
            tenantId: "bde45d44-ec42-45b8-a5a2-c5b998c65ef6",
        },
    },
    resourceGroupName: "rgdatabasefleetmanager",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

fleetspace = azure_native.databasefleetmanager.Fleetspace("fleetspace",
    fleet_name="production-fleet",
    fleetspace_name="primary-space",
    properties={
        "capacity_max": 150000,
        "main_principal": {
            "application_id": "d2d8b19e-c4f7-4c62-8e8d-7f0f96d94e39",
            "login": "adminUser",
            "object_id": "f8b7c2d3-b9c4-4f3b-85cd-3d56c6e49f92",
            "principal_type": azure_native.databasefleetmanager.PrincipalType.APPLICATION,
            "tenant_id": "bde45d44-ec42-45b8-a5a2-c5b998c65ef6",
        },
    },
    resource_group_name="rgdatabasefleetmanager")
Copy
resources:
  fleetspace:
    type: azure-native:databasefleetmanager:Fleetspace
    properties:
      fleetName: production-fleet
      fleetspaceName: primary-space
      properties:
        capacityMax: 150000
        mainPrincipal:
          applicationId: d2d8b19e-c4f7-4c62-8e8d-7f0f96d94e39
          login: adminUser
          objectId: f8b7c2d3-b9c4-4f3b-85cd-3d56c6e49f92
          principalType: Application
          tenantId: bde45d44-ec42-45b8-a5a2-c5b998c65ef6
      resourceGroupName: rgdatabasefleetmanager
Copy

Create Fleetspace Resource

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

Constructor syntax

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

@overload
def Fleetspace(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               fleet_name: Optional[str] = None,
               resource_group_name: Optional[str] = None,
               fleetspace_name: Optional[str] = None,
               properties: Optional[FleetspacePropertiesArgs] = None)
func NewFleetspace(ctx *Context, name string, args FleetspaceArgs, opts ...ResourceOption) (*Fleetspace, error)
public Fleetspace(string name, FleetspaceArgs args, CustomResourceOptions? opts = null)
public Fleetspace(String name, FleetspaceArgs args)
public Fleetspace(String name, FleetspaceArgs args, CustomResourceOptions options)
type: azure-native:databasefleetmanager:Fleetspace
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. FleetspaceArgs
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. FleetspaceArgs
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. FleetspaceArgs
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. FleetspaceArgs
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. FleetspaceArgs
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 fleetspaceResource = new AzureNative.DatabaseFleetManager.Fleetspace("fleetspaceResource", new()
{
    FleetName = "string",
    ResourceGroupName = "string",
    FleetspaceName = "string",
    Properties = new AzureNative.DatabaseFleetManager.Inputs.FleetspacePropertiesArgs
    {
        CapacityMax = 0,
        MainPrincipal = new AzureNative.DatabaseFleetManager.Inputs.MainPrincipalArgs
        {
            ApplicationId = "string",
            Login = "string",
            ObjectId = "string",
            PrincipalType = "string",
            TenantId = "string",
        },
    },
});
Copy
example, err := databasefleetmanager.NewFleetspace(ctx, "fleetspaceResource", &databasefleetmanager.FleetspaceArgs{
	FleetName:         pulumi.String("string"),
	ResourceGroupName: pulumi.String("string"),
	FleetspaceName:    pulumi.String("string"),
	Properties: &databasefleetmanager.FleetspacePropertiesArgs{
		CapacityMax: pulumi.Int(0),
		MainPrincipal: &databasefleetmanager.MainPrincipalArgs{
			ApplicationId: pulumi.String("string"),
			Login:         pulumi.String("string"),
			ObjectId:      pulumi.String("string"),
			PrincipalType: pulumi.String("string"),
			TenantId:      pulumi.String("string"),
		},
	},
})
Copy
var fleetspaceResource = new Fleetspace("fleetspaceResource", FleetspaceArgs.builder()
    .fleetName("string")
    .resourceGroupName("string")
    .fleetspaceName("string")
    .properties(FleetspacePropertiesArgs.builder()
        .capacityMax(0)
        .mainPrincipal(MainPrincipalArgs.builder()
            .applicationId("string")
            .login("string")
            .objectId("string")
            .principalType("string")
            .tenantId("string")
            .build())
        .build())
    .build());
Copy
fleetspace_resource = azure_native.databasefleetmanager.Fleetspace("fleetspaceResource",
    fleet_name="string",
    resource_group_name="string",
    fleetspace_name="string",
    properties={
        "capacity_max": 0,
        "main_principal": {
            "application_id": "string",
            "login": "string",
            "object_id": "string",
            "principal_type": "string",
            "tenant_id": "string",
        },
    })
Copy
const fleetspaceResource = new azure_native.databasefleetmanager.Fleetspace("fleetspaceResource", {
    fleetName: "string",
    resourceGroupName: "string",
    fleetspaceName: "string",
    properties: {
        capacityMax: 0,
        mainPrincipal: {
            applicationId: "string",
            login: "string",
            objectId: "string",
            principalType: "string",
            tenantId: "string",
        },
    },
});
Copy
type: azure-native:databasefleetmanager:Fleetspace
properties:
    fleetName: string
    fleetspaceName: string
    properties:
        capacityMax: 0
        mainPrincipal:
            applicationId: string
            login: string
            objectId: string
            principalType: string
            tenantId: string
    resourceGroupName: string
Copy

Fleetspace 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 Fleetspace 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.
FleetspaceName Changes to this property will trigger replacement. string
Name of the fleetspace.
Properties Pulumi.AzureNative.DatabaseFleetManager.Inputs.FleetspaceProperties
A Fleetspace 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.
FleetspaceName Changes to this property will trigger replacement. string
Name of the fleetspace.
Properties FleetspacePropertiesArgs
A Fleetspace 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.
fleetspaceName Changes to this property will trigger replacement. String
Name of the fleetspace.
properties FleetspaceProperties
A Fleetspace 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.
fleetspaceName Changes to this property will trigger replacement. string
Name of the fleetspace.
properties FleetspaceProperties
A Fleetspace properties.
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.
fleetspace_name Changes to this property will trigger replacement. str
Name of the fleetspace.
properties FleetspacePropertiesArgs
A Fleetspace 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.
fleetspaceName Changes to this property will trigger replacement. String
Name of the fleetspace.
properties Property Map
A Fleetspace properties.

Outputs

All input properties are implicitly available as output properties. Additionally, the Fleetspace 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

FleetspaceProperties
, FleetspacePropertiesArgs

CapacityMax int
Maximum number of vCores database fleet manager is allowed to provision in the fleetspace.
MainPrincipal Pulumi.AzureNative.DatabaseFleetManager.Inputs.MainPrincipal
Main Microsoft Entra ID principal that has admin access to all databases in the fleetspace.
CapacityMax int
Maximum number of vCores database fleet manager is allowed to provision in the fleetspace.
MainPrincipal MainPrincipal
Main Microsoft Entra ID principal that has admin access to all databases in the fleetspace.
capacityMax Integer
Maximum number of vCores database fleet manager is allowed to provision in the fleetspace.
mainPrincipal MainPrincipal
Main Microsoft Entra ID principal that has admin access to all databases in the fleetspace.
capacityMax number
Maximum number of vCores database fleet manager is allowed to provision in the fleetspace.
mainPrincipal MainPrincipal
Main Microsoft Entra ID principal that has admin access to all databases in the fleetspace.
capacity_max int
Maximum number of vCores database fleet manager is allowed to provision in the fleetspace.
main_principal MainPrincipal
Main Microsoft Entra ID principal that has admin access to all databases in the fleetspace.
capacityMax Number
Maximum number of vCores database fleet manager is allowed to provision in the fleetspace.
mainPrincipal Property Map
Main Microsoft Entra ID principal that has admin access to all databases in the fleetspace.

FleetspacePropertiesResponse
, FleetspacePropertiesResponseArgs

ProvisioningState This property is required. string
Fleetspace state.
CapacityMax int
Maximum number of vCores database fleet manager is allowed to provision in the fleetspace.
MainPrincipal Pulumi.AzureNative.DatabaseFleetManager.Inputs.MainPrincipalResponse
Main Microsoft Entra ID principal that has admin access to all databases in the fleetspace.
ProvisioningState This property is required. string
Fleetspace state.
CapacityMax int
Maximum number of vCores database fleet manager is allowed to provision in the fleetspace.
MainPrincipal MainPrincipalResponse
Main Microsoft Entra ID principal that has admin access to all databases in the fleetspace.
provisioningState This property is required. String
Fleetspace state.
capacityMax Integer
Maximum number of vCores database fleet manager is allowed to provision in the fleetspace.
mainPrincipal MainPrincipalResponse
Main Microsoft Entra ID principal that has admin access to all databases in the fleetspace.
provisioningState This property is required. string
Fleetspace state.
capacityMax number
Maximum number of vCores database fleet manager is allowed to provision in the fleetspace.
mainPrincipal MainPrincipalResponse
Main Microsoft Entra ID principal that has admin access to all databases in the fleetspace.
provisioning_state This property is required. str
Fleetspace state.
capacity_max int
Maximum number of vCores database fleet manager is allowed to provision in the fleetspace.
main_principal MainPrincipalResponse
Main Microsoft Entra ID principal that has admin access to all databases in the fleetspace.
provisioningState This property is required. String
Fleetspace state.
capacityMax Number
Maximum number of vCores database fleet manager is allowed to provision in the fleetspace.
mainPrincipal Property Map
Main Microsoft Entra ID principal that has admin access to all databases in the fleetspace.

MainPrincipal
, MainPrincipalArgs

ApplicationId string
Application Id of the main principal.
Login string
Login name of the main principal.
ObjectId string
Object Id of the main principal.
PrincipalType string | Pulumi.AzureNative.DatabaseFleetManager.PrincipalType
Principal type of the main principal.
TenantId string
Tenant Id of the main principal.
ApplicationId string
Application Id of the main principal.
Login string
Login name of the main principal.
ObjectId string
Object Id of the main principal.
PrincipalType string | PrincipalType
Principal type of the main principal.
TenantId string
Tenant Id of the main principal.
applicationId String
Application Id of the main principal.
login String
Login name of the main principal.
objectId String
Object Id of the main principal.
principalType String | PrincipalType
Principal type of the main principal.
tenantId String
Tenant Id of the main principal.
applicationId string
Application Id of the main principal.
login string
Login name of the main principal.
objectId string
Object Id of the main principal.
principalType string | PrincipalType
Principal type of the main principal.
tenantId string
Tenant Id of the main principal.
application_id str
Application Id of the main principal.
login str
Login name of the main principal.
object_id str
Object Id of the main principal.
principal_type str | PrincipalType
Principal type of the main principal.
tenant_id str
Tenant Id of the main principal.
applicationId String
Application Id of the main principal.
login String
Login name of the main principal.
objectId String
Object Id of the main principal.
principalType String | "Application" | "User"
Principal type of the main principal.
tenantId String
Tenant Id of the main principal.

MainPrincipalResponse
, MainPrincipalResponseArgs

ApplicationId string
Application Id of the main principal.
Login string
Login name of the main principal.
ObjectId string
Object Id of the main principal.
PrincipalType string
Principal type of the main principal.
TenantId string
Tenant Id of the main principal.
ApplicationId string
Application Id of the main principal.
Login string
Login name of the main principal.
ObjectId string
Object Id of the main principal.
PrincipalType string
Principal type of the main principal.
TenantId string
Tenant Id of the main principal.
applicationId String
Application Id of the main principal.
login String
Login name of the main principal.
objectId String
Object Id of the main principal.
principalType String
Principal type of the main principal.
tenantId String
Tenant Id of the main principal.
applicationId string
Application Id of the main principal.
login string
Login name of the main principal.
objectId string
Object Id of the main principal.
principalType string
Principal type of the main principal.
tenantId string
Tenant Id of the main principal.
application_id str
Application Id of the main principal.
login str
Login name of the main principal.
object_id str
Object Id of the main principal.
principal_type str
Principal type of the main principal.
tenant_id str
Tenant Id of the main principal.
applicationId String
Application Id of the main principal.
login String
Login name of the main principal.
objectId String
Object Id of the main principal.
principalType String
Principal type of the main principal.
tenantId String
Tenant Id of the main principal.

PrincipalType
, PrincipalTypeArgs

Application
ApplicationApplication principal type.
User
UserUser principal type.
PrincipalTypeApplication
ApplicationApplication principal type.
PrincipalTypeUser
UserUser principal type.
Application
ApplicationApplication principal type.
User
UserUser principal type.
Application
ApplicationApplication principal type.
User
UserUser principal type.
APPLICATION
ApplicationApplication principal type.
USER
UserUser principal type.
"Application"
ApplicationApplication principal type.
"User"
UserUser principal type.

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.

Import

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

$ pulumi import azure-native:databasefleetmanager:Fleetspace customer-db-prod /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DatabaseFleetManager/fleets/{fleetName}/fleetspaces/{fleetspaceName} 
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
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