1. Packages
  2. Azure Native
  3. API Docs
  4. cosmosdb
  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.4.0 published on Wednesday, May 7, 2025 by Pulumi

azure-native.cosmosdb.Fleetspace

Explore with Pulumi AI

azure-native logo
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.4.0 published on Wednesday, May 7, 2025 by Pulumi

    An Azure Cosmos DB Fleetspace.

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

    Example Usage

    CosmosDB Fleetspace Create

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var fleetspace = new AzureNative.CosmosDB.Fleetspace("fleetspace", new()
        {
            FleetName = "fleet1",
            FleetspaceApiKind = AzureNative.CosmosDB.FleetspaceApiKind.NoSQL,
            FleetspaceName = "fleetspace1",
            ResourceGroupName = "rg1",
            ThroughputPoolConfiguration = new AzureNative.CosmosDB.Inputs.FleetspacePropertiesThroughputPoolConfigurationArgs
            {
                DataRegions = new[]
                {
                    "westus2",
                },
                MaxThroughput = 500000,
                MinThroughput = 100000,
                ServiceTier = AzureNative.CosmosDB.ServiceTier.GeneralPurpose,
            },
        });
    
    });
    
    package main
    
    import (
    	cosmosdb "github.com/pulumi/pulumi-azure-native-sdk/cosmosdb/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := cosmosdb.NewFleetspace(ctx, "fleetspace", &cosmosdb.FleetspaceArgs{
    			FleetName:         pulumi.String("fleet1"),
    			FleetspaceApiKind: pulumi.String(cosmosdb.FleetspaceApiKindNoSQL),
    			FleetspaceName:    pulumi.String("fleetspace1"),
    			ResourceGroupName: pulumi.String("rg1"),
    			ThroughputPoolConfiguration: &cosmosdb.FleetspacePropertiesThroughputPoolConfigurationArgs{
    				DataRegions: pulumi.StringArray{
    					pulumi.String("westus2"),
    				},
    				MaxThroughput: pulumi.Int(500000),
    				MinThroughput: pulumi.Int(100000),
    				ServiceTier:   pulumi.String(cosmosdb.ServiceTierGeneralPurpose),
    			},
    		})
    		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.cosmosdb.Fleetspace;
    import com.pulumi.azurenative.cosmosdb.FleetspaceArgs;
    import com.pulumi.azurenative.cosmosdb.inputs.FleetspacePropertiesThroughputPoolConfigurationArgs;
    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("fleet1")
                .fleetspaceApiKind("NoSQL")
                .fleetspaceName("fleetspace1")
                .resourceGroupName("rg1")
                .throughputPoolConfiguration(FleetspacePropertiesThroughputPoolConfigurationArgs.builder()
                    .dataRegions("westus2")
                    .maxThroughput(500000)
                    .minThroughput(100000)
                    .serviceTier("GeneralPurpose")
                    .build())
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const fleetspace = new azure_native.cosmosdb.Fleetspace("fleetspace", {
        fleetName: "fleet1",
        fleetspaceApiKind: azure_native.cosmosdb.FleetspaceApiKind.NoSQL,
        fleetspaceName: "fleetspace1",
        resourceGroupName: "rg1",
        throughputPoolConfiguration: {
            dataRegions: ["westus2"],
            maxThroughput: 500000,
            minThroughput: 100000,
            serviceTier: azure_native.cosmosdb.ServiceTier.GeneralPurpose,
        },
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    fleetspace = azure_native.cosmosdb.Fleetspace("fleetspace",
        fleet_name="fleet1",
        fleetspace_api_kind=azure_native.cosmosdb.FleetspaceApiKind.NO_SQL,
        fleetspace_name="fleetspace1",
        resource_group_name="rg1",
        throughput_pool_configuration={
            "data_regions": ["westus2"],
            "max_throughput": 500000,
            "min_throughput": 100000,
            "service_tier": azure_native.cosmosdb.ServiceTier.GENERAL_PURPOSE,
        })
    
    resources:
      fleetspace:
        type: azure-native:cosmosdb:Fleetspace
        properties:
          fleetName: fleet1
          fleetspaceApiKind: NoSQL
          fleetspaceName: fleetspace1
          resourceGroupName: rg1
          throughputPoolConfiguration:
            dataRegions:
              - westus2
            maxThroughput: 500000
            minThroughput: 100000
            serviceTier: GeneralPurpose
    

    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_api_kind: Optional[Union[str, FleetspaceApiKind]] = None,
                   fleetspace_name: Optional[str] = None,
                   throughput_pool_configuration: Optional[FleetspacePropertiesThroughputPoolConfigurationArgs] = 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:cosmosdb: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.CosmosDB.Fleetspace("fleetspaceResource", new()
    {
        FleetName = "string",
        ResourceGroupName = "string",
        FleetspaceApiKind = "string",
        FleetspaceName = "string",
        ThroughputPoolConfiguration = new AzureNative.CosmosDB.Inputs.FleetspacePropertiesThroughputPoolConfigurationArgs
        {
            DataRegions = new[]
            {
                "string",
            },
            MaxThroughput = 0,
            MinThroughput = 0,
            ServiceTier = "string",
        },
    });
    
    example, err := cosmosdb.NewFleetspace(ctx, "fleetspaceResource", &cosmosdb.FleetspaceArgs{
    	FleetName:         pulumi.String("string"),
    	ResourceGroupName: pulumi.String("string"),
    	FleetspaceApiKind: pulumi.String("string"),
    	FleetspaceName:    pulumi.String("string"),
    	ThroughputPoolConfiguration: &cosmosdb.FleetspacePropertiesThroughputPoolConfigurationArgs{
    		DataRegions: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		MaxThroughput: pulumi.Int(0),
    		MinThroughput: pulumi.Int(0),
    		ServiceTier:   pulumi.String("string"),
    	},
    })
    
    var fleetspaceResource = new com.pulumi.azurenative.cosmosdb.Fleetspace("fleetspaceResource", com.pulumi.azurenative.cosmosdb.FleetspaceArgs.builder()
        .fleetName("string")
        .resourceGroupName("string")
        .fleetspaceApiKind("string")
        .fleetspaceName("string")
        .throughputPoolConfiguration(FleetspacePropertiesThroughputPoolConfigurationArgs.builder()
            .dataRegions("string")
            .maxThroughput(0)
            .minThroughput(0)
            .serviceTier("string")
            .build())
        .build());
    
    fleetspace_resource = azure_native.cosmosdb.Fleetspace("fleetspaceResource",
        fleet_name="string",
        resource_group_name="string",
        fleetspace_api_kind="string",
        fleetspace_name="string",
        throughput_pool_configuration={
            "data_regions": ["string"],
            "max_throughput": 0,
            "min_throughput": 0,
            "service_tier": "string",
        })
    
    const fleetspaceResource = new azure_native.cosmosdb.Fleetspace("fleetspaceResource", {
        fleetName: "string",
        resourceGroupName: "string",
        fleetspaceApiKind: "string",
        fleetspaceName: "string",
        throughputPoolConfiguration: {
            dataRegions: ["string"],
            maxThroughput: 0,
            minThroughput: 0,
            serviceTier: "string",
        },
    });
    
    type: azure-native:cosmosdb:Fleetspace
    properties:
        fleetName: string
        fleetspaceApiKind: string
        fleetspaceName: string
        resourceGroupName: string
        throughputPoolConfiguration:
            dataRegions:
                - string
            maxThroughput: 0
            minThroughput: 0
            serviceTier: 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:

    FleetName string
    Cosmos DB fleet name. Needs to be unique under a subscription.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    FleetspaceApiKind string | Pulumi.AzureNative.CosmosDB.FleetspaceApiKind
    The kind of API this fleetspace belongs to. Acceptable values: 'NoSQL'
    FleetspaceName string
    Cosmos DB fleetspace name. Needs to be unique under a fleet.
    ThroughputPoolConfiguration Pulumi.AzureNative.CosmosDB.Inputs.FleetspacePropertiesThroughputPoolConfiguration
    Configuration for throughput pool in the fleetspace.
    FleetName string
    Cosmos DB fleet name. Needs to be unique under a subscription.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    FleetspaceApiKind string | FleetspaceApiKind
    The kind of API this fleetspace belongs to. Acceptable values: 'NoSQL'
    FleetspaceName string
    Cosmos DB fleetspace name. Needs to be unique under a fleet.
    ThroughputPoolConfiguration FleetspacePropertiesThroughputPoolConfigurationArgs
    Configuration for throughput pool in the fleetspace.
    fleetName String
    Cosmos DB fleet name. Needs to be unique under a subscription.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    fleetspaceApiKind String | FleetspaceApiKind
    The kind of API this fleetspace belongs to. Acceptable values: 'NoSQL'
    fleetspaceName String
    Cosmos DB fleetspace name. Needs to be unique under a fleet.
    throughputPoolConfiguration FleetspacePropertiesThroughputPoolConfiguration
    Configuration for throughput pool in the fleetspace.
    fleetName string
    Cosmos DB fleet name. Needs to be unique under a subscription.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    fleetspaceApiKind string | FleetspaceApiKind
    The kind of API this fleetspace belongs to. Acceptable values: 'NoSQL'
    fleetspaceName string
    Cosmos DB fleetspace name. Needs to be unique under a fleet.
    throughputPoolConfiguration FleetspacePropertiesThroughputPoolConfiguration
    Configuration for throughput pool in the fleetspace.
    fleet_name str
    Cosmos DB fleet name. Needs to be unique under a subscription.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    fleetspace_api_kind str | FleetspaceApiKind
    The kind of API this fleetspace belongs to. Acceptable values: 'NoSQL'
    fleetspace_name str
    Cosmos DB fleetspace name. Needs to be unique under a fleet.
    throughput_pool_configuration FleetspacePropertiesThroughputPoolConfigurationArgs
    Configuration for throughput pool in the fleetspace.
    fleetName String
    Cosmos DB fleet name. Needs to be unique under a subscription.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    fleetspaceApiKind String | "NoSQL"
    The kind of API this fleetspace belongs to. Acceptable values: 'NoSQL'
    fleetspaceName String
    Cosmos DB fleetspace name. Needs to be unique under a fleet.
    throughputPoolConfiguration Property Map
    Configuration for throughput pool in the fleetspace.

    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
    ProvisioningState string
    A provisioning state of the Fleetspace.
    SystemData Pulumi.AzureNative.CosmosDB.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
    ProvisioningState string
    A provisioning state of the Fleetspace.
    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
    provisioningState String
    A provisioning state of the Fleetspace.
    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
    provisioningState string
    A provisioning state of the Fleetspace.
    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
    provisioning_state str
    A provisioning state of the Fleetspace.
    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
    provisioningState String
    A provisioning state of the Fleetspace.
    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

    FleetspaceApiKind, FleetspaceApiKindArgs

    NoSQL
    NoSQL
    FleetspaceApiKindNoSQL
    NoSQL
    NoSQL
    NoSQL
    NoSQL
    NoSQL
    NO_SQL
    NoSQL
    "NoSQL"
    NoSQL

    FleetspacePropertiesResponseThroughputPoolConfiguration, FleetspacePropertiesResponseThroughputPoolConfigurationArgs

    DataRegions List<string>
    List of data regions assigned to the fleetspace. Eg [westus2]
    MaxThroughput int
    Maximum throughput for the pool.
    MinThroughput int
    Minimum throughput for the pool.
    ServiceTier string
    Service Tier for the fleetspace. GeneralPurpose types refers to single write region accounts that can be added to this fleetspace, whereas BusinessCritical refers to multi write region.
    DataRegions []string
    List of data regions assigned to the fleetspace. Eg [westus2]
    MaxThroughput int
    Maximum throughput for the pool.
    MinThroughput int
    Minimum throughput for the pool.
    ServiceTier string
    Service Tier for the fleetspace. GeneralPurpose types refers to single write region accounts that can be added to this fleetspace, whereas BusinessCritical refers to multi write region.
    dataRegions List<String>
    List of data regions assigned to the fleetspace. Eg [westus2]
    maxThroughput Integer
    Maximum throughput for the pool.
    minThroughput Integer
    Minimum throughput for the pool.
    serviceTier String
    Service Tier for the fleetspace. GeneralPurpose types refers to single write region accounts that can be added to this fleetspace, whereas BusinessCritical refers to multi write region.
    dataRegions string[]
    List of data regions assigned to the fleetspace. Eg [westus2]
    maxThroughput number
    Maximum throughput for the pool.
    minThroughput number
    Minimum throughput for the pool.
    serviceTier string
    Service Tier for the fleetspace. GeneralPurpose types refers to single write region accounts that can be added to this fleetspace, whereas BusinessCritical refers to multi write region.
    data_regions Sequence[str]
    List of data regions assigned to the fleetspace. Eg [westus2]
    max_throughput int
    Maximum throughput for the pool.
    min_throughput int
    Minimum throughput for the pool.
    service_tier str
    Service Tier for the fleetspace. GeneralPurpose types refers to single write region accounts that can be added to this fleetspace, whereas BusinessCritical refers to multi write region.
    dataRegions List<String>
    List of data regions assigned to the fleetspace. Eg [westus2]
    maxThroughput Number
    Maximum throughput for the pool.
    minThroughput Number
    Minimum throughput for the pool.
    serviceTier String
    Service Tier for the fleetspace. GeneralPurpose types refers to single write region accounts that can be added to this fleetspace, whereas BusinessCritical refers to multi write region.

    FleetspacePropertiesThroughputPoolConfiguration, FleetspacePropertiesThroughputPoolConfigurationArgs

    DataRegions List<string>
    List of data regions assigned to the fleetspace. Eg [westus2]
    MaxThroughput int
    Maximum throughput for the pool.
    MinThroughput int
    Minimum throughput for the pool.
    ServiceTier string | Pulumi.AzureNative.CosmosDB.ServiceTier
    Service Tier for the fleetspace. GeneralPurpose types refers to single write region accounts that can be added to this fleetspace, whereas BusinessCritical refers to multi write region.
    DataRegions []string
    List of data regions assigned to the fleetspace. Eg [westus2]
    MaxThroughput int
    Maximum throughput for the pool.
    MinThroughput int
    Minimum throughput for the pool.
    ServiceTier string | ServiceTier
    Service Tier for the fleetspace. GeneralPurpose types refers to single write region accounts that can be added to this fleetspace, whereas BusinessCritical refers to multi write region.
    dataRegions List<String>
    List of data regions assigned to the fleetspace. Eg [westus2]
    maxThroughput Integer
    Maximum throughput for the pool.
    minThroughput Integer
    Minimum throughput for the pool.
    serviceTier String | ServiceTier
    Service Tier for the fleetspace. GeneralPurpose types refers to single write region accounts that can be added to this fleetspace, whereas BusinessCritical refers to multi write region.
    dataRegions string[]
    List of data regions assigned to the fleetspace. Eg [westus2]
    maxThroughput number
    Maximum throughput for the pool.
    minThroughput number
    Minimum throughput for the pool.
    serviceTier string | ServiceTier
    Service Tier for the fleetspace. GeneralPurpose types refers to single write region accounts that can be added to this fleetspace, whereas BusinessCritical refers to multi write region.
    data_regions Sequence[str]
    List of data regions assigned to the fleetspace. Eg [westus2]
    max_throughput int
    Maximum throughput for the pool.
    min_throughput int
    Minimum throughput for the pool.
    service_tier str | ServiceTier
    Service Tier for the fleetspace. GeneralPurpose types refers to single write region accounts that can be added to this fleetspace, whereas BusinessCritical refers to multi write region.
    dataRegions List<String>
    List of data regions assigned to the fleetspace. Eg [westus2]
    maxThroughput Number
    Maximum throughput for the pool.
    minThroughput Number
    Minimum throughput for the pool.
    serviceTier String | "GeneralPurpose" | "BusinessCritical"
    Service Tier for the fleetspace. GeneralPurpose types refers to single write region accounts that can be added to this fleetspace, whereas BusinessCritical refers to multi write region.

    ServiceTier, ServiceTierArgs

    GeneralPurpose
    GeneralPurpose
    BusinessCritical
    BusinessCritical
    ServiceTierGeneralPurpose
    GeneralPurpose
    ServiceTierBusinessCritical
    BusinessCritical
    GeneralPurpose
    GeneralPurpose
    BusinessCritical
    BusinessCritical
    GeneralPurpose
    GeneralPurpose
    BusinessCritical
    BusinessCritical
    GENERAL_PURPOSE
    GeneralPurpose
    BUSINESS_CRITICAL
    BusinessCritical
    "GeneralPurpose"
    GeneralPurpose
    "BusinessCritical"
    BusinessCritical

    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:cosmosdb:Fleetspace fleetspace1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/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
    azure-native logo
    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.4.0 published on Wednesday, May 7, 2025 by Pulumi