azure-native.databasefleetmanager.Fleetspace
Explore with Pulumi AI
A fleetspace.
Uses Azure REST 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",
});
});
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.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
})
}
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());
}
}
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",
});
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")
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
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 string
- The unique name of the resource.
- args FleetspaceArgs
- 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 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 string
- The unique name of the resource.
- args FleetspaceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FleetspaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
},
},
});
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"),
},
},
})
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());
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",
},
})
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",
},
},
});
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
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:
- Fleet
Name string - Name of the database fleet.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Fleetspace
Name string - Name of the fleetspace.
- Properties
Pulumi.
Azure Native. Database Fleet Manager. Inputs. Fleetspace Properties - A Fleetspace properties.
- Fleet
Name string - Name of the database fleet.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Fleetspace
Name string - Name of the fleetspace.
- Properties
Fleetspace
Properties Args - A Fleetspace properties.
- fleet
Name String - Name of the database fleet.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- fleetspace
Name String - Name of the fleetspace.
- properties
Fleetspace
Properties - A Fleetspace properties.
- fleet
Name string - Name of the database fleet.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- fleetspace
Name string - Name of the fleetspace.
- properties
Fleetspace
Properties - A Fleetspace properties.
- fleet_
name str - Name of the database fleet.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- fleetspace_
name str - Name of the fleetspace.
- properties
Fleetspace
Properties Args - A Fleetspace properties.
- fleet
Name String - Name of the database fleet.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- fleetspace
Name 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:
- 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
FleetspaceProperties, FleetspacePropertiesArgs
- Capacity
Max int - Maximum number of vCores database fleet manager is allowed to provision in the fleetspace.
- Main
Principal Pulumi.Azure Native. Database Fleet Manager. Inputs. Main Principal - 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.
- capacity
Max Integer - 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.
- capacity
Max number - 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.
- 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.
- capacity
Max Number - Maximum number of vCores database fleet manager is allowed to provision in the fleetspace.
- main
Principal Property Map - Main Microsoft Entra ID principal that has admin access to all databases in the fleetspace.
FleetspacePropertiesResponse, FleetspacePropertiesResponseArgs
- Provisioning
State string - Fleetspace state.
- Capacity
Max int - Maximum number of vCores database fleet manager is allowed to provision in the fleetspace.
- Main
Principal Pulumi.Azure Native. Database Fleet Manager. Inputs. Main Principal Response - Main Microsoft Entra ID principal that has admin access to all databases in the fleetspace.
- Provisioning
State string - Fleetspace state.
- Capacity
Max int - Maximum number of vCores database fleet manager is allowed to provision in the fleetspace.
- Main
Principal MainPrincipal Response - Main Microsoft Entra ID principal that has admin access to all databases in the fleetspace.
- provisioning
State String - Fleetspace state.
- capacity
Max Integer - Maximum number of vCores database fleet manager is allowed to provision in the fleetspace.
- main
Principal MainPrincipal Response - Main Microsoft Entra ID principal that has admin access to all databases in the fleetspace.
- provisioning
State string - Fleetspace state.
- capacity
Max number - Maximum number of vCores database fleet manager is allowed to provision in the fleetspace.
- main
Principal MainPrincipal Response - Main Microsoft Entra ID principal that has admin access to all databases in the fleetspace.
- provisioning_
state str - Fleetspace state.
- capacity_
max int - Maximum number of vCores database fleet manager is allowed to provision in the fleetspace.
- main_
principal MainPrincipal Response - Main Microsoft Entra ID principal that has admin access to all databases in the fleetspace.
- provisioning
State String - Fleetspace state.
- capacity
Max Number - Maximum number of vCores database fleet manager is allowed to provision in the fleetspace.
- main
Principal Property Map - Main Microsoft Entra ID principal that has admin access to all databases in the fleetspace.
MainPrincipal, MainPrincipalArgs
- Application
Id string - Application Id of the main principal.
- Login string
- Login name of the main principal.
- Object
Id string - Object Id of the main principal.
- Principal
Type string | Pulumi.Azure Native. Database Fleet Manager. Principal Type - Principal type of the main principal.
- Tenant
Id string - Tenant Id of the main principal.
- Application
Id string - Application Id of the main principal.
- Login string
- Login name of the main principal.
- Object
Id string - Object Id of the main principal.
- Principal
Type string | PrincipalType - Principal type of the main principal.
- Tenant
Id string - Tenant Id of the main principal.
- application
Id String - Application Id of the main principal.
- login String
- Login name of the main principal.
- object
Id String - Object Id of the main principal.
- principal
Type String | PrincipalType - Principal type of the main principal.
- tenant
Id String - Tenant Id of the main principal.
- application
Id string - Application Id of the main principal.
- login string
- Login name of the main principal.
- object
Id string - Object Id of the main principal.
- principal
Type string | PrincipalType - Principal type of the main principal.
- tenant
Id 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.
- application
Id String - Application Id of the main principal.
- login String
- Login name of the main principal.
- object
Id String - Object Id of the main principal.
- principal
Type String | "Application" | "User" - Principal type of the main principal.
- tenant
Id String - Tenant Id of the main principal.
MainPrincipalResponse, MainPrincipalResponseArgs
- Application
Id string - Application Id of the main principal.
- Login string
- Login name of the main principal.
- Object
Id string - Object Id of the main principal.
- Principal
Type string - Principal type of the main principal.
- Tenant
Id string - Tenant Id of the main principal.
- Application
Id string - Application Id of the main principal.
- Login string
- Login name of the main principal.
- Object
Id string - Object Id of the main principal.
- Principal
Type string - Principal type of the main principal.
- Tenant
Id string - Tenant Id of the main principal.
- application
Id String - Application Id of the main principal.
- login String
- Login name of the main principal.
- object
Id String - Object Id of the main principal.
- principal
Type String - Principal type of the main principal.
- tenant
Id String - Tenant Id of the main principal.
- application
Id string - Application Id of the main principal.
- login string
- Login name of the main principal.
- object
Id string - Object Id of the main principal.
- principal
Type string - Principal type of the main principal.
- tenant
Id 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.
- application
Id String - Application Id of the main principal.
- login String
- Login name of the main principal.
- object
Id String - Object Id of the main principal.
- principal
Type String - Principal type of the main principal.
- tenant
Id String - Tenant Id of the main principal.
PrincipalType, PrincipalTypeArgs
- Application
- ApplicationApplication principal type.
- User
- UserUser principal type.
- Principal
Type Application - ApplicationApplication principal type.
- 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.
- "Application"
- ApplicationApplication principal type.
- "User"
- UserUser principal type.
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.
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}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0