1. Packages
  2. Azure Classic
  3. API Docs
  4. qumulo
  5. FileSystem

We recommend using Azure Native.

Azure v6.24.0 published on Wednesday, Jun 18, 2025 by Pulumi

azure.qumulo.FileSystem

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure v6.24.0 published on Wednesday, Jun 18, 2025 by Pulumi

    Manages an Azure Native Qumulo Scalable File System.

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    resources:
      example:
        type: azure:core:ResourceGroup
        properties:
          name: example-resources
          location: West Europe
      exampleVirtualNetwork:
        type: azure:network:VirtualNetwork
        name: example
        properties:
          name: example-vnet
          addressSpaces:
            - 10.0.0.0/16
          location: ${example.location}
          resourceGroupName: ${example.name}
      exampleSubnet:
        type: azure:network:Subnet
        name: example
        properties:
          name: example-subnet
          resourceGroupName: ${example.name}
          virtualNetworkName: ${exampleVirtualNetwork.name}
          addressPrefixes:
            - 10.0.1.0/24
          delegations:
            - name: delegation
              serviceDelegation:
                actions:
                  - Microsoft.Network/virtualNetworks/subnets/join/action
                name: Qumulo.Storage/fileSystems
      exampleFileSystem:
        type: azure:qumulo:FileSystem
        name: example
        properties:
          name: example
          resourceGroupName: ${example.name}
          location: ${example.location}
          adminPassword: )^X#ZX#JRyIY}t9
          availabilityZone: '1'
          delegatedSubnetId: ${exampleSubnet.id}
          storageSku: Standard
          email: test@test.com
          tags:
            environment: test
    

    API Providers

    This resource uses the following Azure API Providers:

    • Qumulo.Storage: 2024-06-19

    Create FileSystem Resource

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

    Constructor syntax

    new FileSystem(name: string, args: FileSystemArgs, opts?: CustomResourceOptions);
    @overload
    def FileSystem(resource_name: str,
                   args: FileSystemArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def FileSystem(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   admin_password: Optional[str] = None,
                   email: Optional[str] = None,
                   resource_group_name: Optional[str] = None,
                   storage_sku: Optional[str] = None,
                   subnet_id: Optional[str] = None,
                   zone: Optional[str] = None,
                   location: Optional[str] = None,
                   name: Optional[str] = None,
                   offer_id: Optional[str] = None,
                   plan_id: Optional[str] = None,
                   publisher_id: Optional[str] = None,
                   tags: Optional[Mapping[str, str]] = None)
    func NewFileSystem(ctx *Context, name string, args FileSystemArgs, opts ...ResourceOption) (*FileSystem, error)
    public FileSystem(string name, FileSystemArgs args, CustomResourceOptions? opts = null)
    public FileSystem(String name, FileSystemArgs args)
    public FileSystem(String name, FileSystemArgs args, CustomResourceOptions options)
    
    type: azure:qumulo:FileSystem
    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 FileSystemArgs
    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 FileSystemArgs
    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 FileSystemArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FileSystemArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FileSystemArgs
    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 azureFileSystemResource = new Azure.Qumulo.FileSystem("azureFileSystemResource", new()
    {
        AdminPassword = "string",
        Email = "string",
        ResourceGroupName = "string",
        StorageSku = "string",
        SubnetId = "string",
        Zone = "string",
        Location = "string",
        Name = "string",
        OfferId = "string",
        PlanId = "string",
        PublisherId = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := qumulo.NewFileSystem(ctx, "azureFileSystemResource", &qumulo.FileSystemArgs{
    	AdminPassword:     pulumi.String("string"),
    	Email:             pulumi.String("string"),
    	ResourceGroupName: pulumi.String("string"),
    	StorageSku:        pulumi.String("string"),
    	SubnetId:          pulumi.String("string"),
    	Zone:              pulumi.String("string"),
    	Location:          pulumi.String("string"),
    	Name:              pulumi.String("string"),
    	OfferId:           pulumi.String("string"),
    	PlanId:            pulumi.String("string"),
    	PublisherId:       pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var azureFileSystemResource = new com.pulumi.azure.qumulo.FileSystem("azureFileSystemResource", com.pulumi.azure.qumulo.FileSystemArgs.builder()
        .adminPassword("string")
        .email("string")
        .resourceGroupName("string")
        .storageSku("string")
        .subnetId("string")
        .zone("string")
        .location("string")
        .name("string")
        .offerId("string")
        .planId("string")
        .publisherId("string")
        .tags(Map.of("string", "string"))
        .build());
    
    azure_file_system_resource = azure.qumulo.FileSystem("azureFileSystemResource",
        admin_password="string",
        email="string",
        resource_group_name="string",
        storage_sku="string",
        subnet_id="string",
        zone="string",
        location="string",
        name="string",
        offer_id="string",
        plan_id="string",
        publisher_id="string",
        tags={
            "string": "string",
        })
    
    const azureFileSystemResource = new azure.qumulo.FileSystem("azureFileSystemResource", {
        adminPassword: "string",
        email: "string",
        resourceGroupName: "string",
        storageSku: "string",
        subnetId: "string",
        zone: "string",
        location: "string",
        name: "string",
        offerId: "string",
        planId: "string",
        publisherId: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure:qumulo:FileSystem
    properties:
        adminPassword: string
        email: string
        location: string
        name: string
        offerId: string
        planId: string
        publisherId: string
        resourceGroupName: string
        storageSku: string
        subnetId: string
        tags:
            string: string
        zone: string
    

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

    AdminPassword string
    The initial administrator password of the Azure Native Qumulo Scalable File System. Changing this forces a new resource to be created.
    Email string
    The email address used for the Azure Native Qumulo Scalable File System. Changing this forces a new resource to be created.
    ResourceGroupName string
    Specifies the name of the Resource Group within which this Azure Native Qumulo Scalable File System should exist. Changing this forces a new resource to be created.
    StorageSku string
    The storage Sku. Possible values are Cold_LRS, Hot_LRS and Hot_ZRS. Changing this forces a new resource to be created.
    SubnetId string
    The delegated subnet ID for Vnet injection. Changing this forces a new resource to be created.
    Zone string
    The Availability Zone in which the Azure Native Qumulo Scalable File system is located. Changing this forces a new resource to be created.
    Location string
    The Azure Region where the Azure Native Qumulo Scalable File System should exist. Changing this forces a new resource to be created.
    Name string
    Specifies the name of this Azure Native Qumulo Scalable File System resource. Changing this forces a new resource to be created.
    OfferId string
    Specifies the marketplace offer ID. Defaults to qumulo-saas-mpp. Changing this forces a new resource to be created.
    PlanId string
    Specifies the marketplace plan ID. Defaults to azure-native-qumulo-v3. Changing this forces a new resource to be created.
    PublisherId string
    Specifies the marketplace publisher ID. Defaults to qumulo1584033880660. Changing this forces a new resource to be created.
    Tags Dictionary<string, string>
    A mapping of tags which should be assigned to the File System.
    AdminPassword string
    The initial administrator password of the Azure Native Qumulo Scalable File System. Changing this forces a new resource to be created.
    Email string
    The email address used for the Azure Native Qumulo Scalable File System. Changing this forces a new resource to be created.
    ResourceGroupName string
    Specifies the name of the Resource Group within which this Azure Native Qumulo Scalable File System should exist. Changing this forces a new resource to be created.
    StorageSku string
    The storage Sku. Possible values are Cold_LRS, Hot_LRS and Hot_ZRS. Changing this forces a new resource to be created.
    SubnetId string
    The delegated subnet ID for Vnet injection. Changing this forces a new resource to be created.
    Zone string
    The Availability Zone in which the Azure Native Qumulo Scalable File system is located. Changing this forces a new resource to be created.
    Location string
    The Azure Region where the Azure Native Qumulo Scalable File System should exist. Changing this forces a new resource to be created.
    Name string
    Specifies the name of this Azure Native Qumulo Scalable File System resource. Changing this forces a new resource to be created.
    OfferId string
    Specifies the marketplace offer ID. Defaults to qumulo-saas-mpp. Changing this forces a new resource to be created.
    PlanId string
    Specifies the marketplace plan ID. Defaults to azure-native-qumulo-v3. Changing this forces a new resource to be created.
    PublisherId string
    Specifies the marketplace publisher ID. Defaults to qumulo1584033880660. Changing this forces a new resource to be created.
    Tags map[string]string
    A mapping of tags which should be assigned to the File System.
    adminPassword String
    The initial administrator password of the Azure Native Qumulo Scalable File System. Changing this forces a new resource to be created.
    email String
    The email address used for the Azure Native Qumulo Scalable File System. Changing this forces a new resource to be created.
    resourceGroupName String
    Specifies the name of the Resource Group within which this Azure Native Qumulo Scalable File System should exist. Changing this forces a new resource to be created.
    storageSku String
    The storage Sku. Possible values are Cold_LRS, Hot_LRS and Hot_ZRS. Changing this forces a new resource to be created.
    subnetId String
    The delegated subnet ID for Vnet injection. Changing this forces a new resource to be created.
    zone String
    The Availability Zone in which the Azure Native Qumulo Scalable File system is located. Changing this forces a new resource to be created.
    location String
    The Azure Region where the Azure Native Qumulo Scalable File System should exist. Changing this forces a new resource to be created.
    name String
    Specifies the name of this Azure Native Qumulo Scalable File System resource. Changing this forces a new resource to be created.
    offerId String
    Specifies the marketplace offer ID. Defaults to qumulo-saas-mpp. Changing this forces a new resource to be created.
    planId String
    Specifies the marketplace plan ID. Defaults to azure-native-qumulo-v3. Changing this forces a new resource to be created.
    publisherId String
    Specifies the marketplace publisher ID. Defaults to qumulo1584033880660. Changing this forces a new resource to be created.
    tags Map<String,String>
    A mapping of tags which should be assigned to the File System.
    adminPassword string
    The initial administrator password of the Azure Native Qumulo Scalable File System. Changing this forces a new resource to be created.
    email string
    The email address used for the Azure Native Qumulo Scalable File System. Changing this forces a new resource to be created.
    resourceGroupName string
    Specifies the name of the Resource Group within which this Azure Native Qumulo Scalable File System should exist. Changing this forces a new resource to be created.
    storageSku string
    The storage Sku. Possible values are Cold_LRS, Hot_LRS and Hot_ZRS. Changing this forces a new resource to be created.
    subnetId string
    The delegated subnet ID for Vnet injection. Changing this forces a new resource to be created.
    zone string
    The Availability Zone in which the Azure Native Qumulo Scalable File system is located. Changing this forces a new resource to be created.
    location string
    The Azure Region where the Azure Native Qumulo Scalable File System should exist. Changing this forces a new resource to be created.
    name string
    Specifies the name of this Azure Native Qumulo Scalable File System resource. Changing this forces a new resource to be created.
    offerId string
    Specifies the marketplace offer ID. Defaults to qumulo-saas-mpp. Changing this forces a new resource to be created.
    planId string
    Specifies the marketplace plan ID. Defaults to azure-native-qumulo-v3. Changing this forces a new resource to be created.
    publisherId string
    Specifies the marketplace publisher ID. Defaults to qumulo1584033880660. Changing this forces a new resource to be created.
    tags {[key: string]: string}
    A mapping of tags which should be assigned to the File System.
    admin_password str
    The initial administrator password of the Azure Native Qumulo Scalable File System. Changing this forces a new resource to be created.
    email str
    The email address used for the Azure Native Qumulo Scalable File System. Changing this forces a new resource to be created.
    resource_group_name str
    Specifies the name of the Resource Group within which this Azure Native Qumulo Scalable File System should exist. Changing this forces a new resource to be created.
    storage_sku str
    The storage Sku. Possible values are Cold_LRS, Hot_LRS and Hot_ZRS. Changing this forces a new resource to be created.
    subnet_id str
    The delegated subnet ID for Vnet injection. Changing this forces a new resource to be created.
    zone str
    The Availability Zone in which the Azure Native Qumulo Scalable File system is located. Changing this forces a new resource to be created.
    location str
    The Azure Region where the Azure Native Qumulo Scalable File System should exist. Changing this forces a new resource to be created.
    name str
    Specifies the name of this Azure Native Qumulo Scalable File System resource. Changing this forces a new resource to be created.
    offer_id str
    Specifies the marketplace offer ID. Defaults to qumulo-saas-mpp. Changing this forces a new resource to be created.
    plan_id str
    Specifies the marketplace plan ID. Defaults to azure-native-qumulo-v3. Changing this forces a new resource to be created.
    publisher_id str
    Specifies the marketplace publisher ID. Defaults to qumulo1584033880660. Changing this forces a new resource to be created.
    tags Mapping[str, str]
    A mapping of tags which should be assigned to the File System.
    adminPassword String
    The initial administrator password of the Azure Native Qumulo Scalable File System. Changing this forces a new resource to be created.
    email String
    The email address used for the Azure Native Qumulo Scalable File System. Changing this forces a new resource to be created.
    resourceGroupName String
    Specifies the name of the Resource Group within which this Azure Native Qumulo Scalable File System should exist. Changing this forces a new resource to be created.
    storageSku String
    The storage Sku. Possible values are Cold_LRS, Hot_LRS and Hot_ZRS. Changing this forces a new resource to be created.
    subnetId String
    The delegated subnet ID for Vnet injection. Changing this forces a new resource to be created.
    zone String
    The Availability Zone in which the Azure Native Qumulo Scalable File system is located. Changing this forces a new resource to be created.
    location String
    The Azure Region where the Azure Native Qumulo Scalable File System should exist. Changing this forces a new resource to be created.
    name String
    Specifies the name of this Azure Native Qumulo Scalable File System resource. Changing this forces a new resource to be created.
    offerId String
    Specifies the marketplace offer ID. Defaults to qumulo-saas-mpp. Changing this forces a new resource to be created.
    planId String
    Specifies the marketplace plan ID. Defaults to azure-native-qumulo-v3. Changing this forces a new resource to be created.
    publisherId String
    Specifies the marketplace publisher ID. Defaults to qumulo1584033880660. Changing this forces a new resource to be created.
    tags Map<String>
    A mapping of tags which should be assigned to the File System.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing FileSystem Resource

    Get an existing FileSystem resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: FileSystemState, opts?: CustomResourceOptions): FileSystem
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            admin_password: Optional[str] = None,
            email: Optional[str] = None,
            location: Optional[str] = None,
            name: Optional[str] = None,
            offer_id: Optional[str] = None,
            plan_id: Optional[str] = None,
            publisher_id: Optional[str] = None,
            resource_group_name: Optional[str] = None,
            storage_sku: Optional[str] = None,
            subnet_id: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            zone: Optional[str] = None) -> FileSystem
    func GetFileSystem(ctx *Context, name string, id IDInput, state *FileSystemState, opts ...ResourceOption) (*FileSystem, error)
    public static FileSystem Get(string name, Input<string> id, FileSystemState? state, CustomResourceOptions? opts = null)
    public static FileSystem get(String name, Output<String> id, FileSystemState state, CustomResourceOptions options)
    resources:  _:    type: azure:qumulo:FileSystem    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AdminPassword string
    The initial administrator password of the Azure Native Qumulo Scalable File System. Changing this forces a new resource to be created.
    Email string
    The email address used for the Azure Native Qumulo Scalable File System. Changing this forces a new resource to be created.
    Location string
    The Azure Region where the Azure Native Qumulo Scalable File System should exist. Changing this forces a new resource to be created.
    Name string
    Specifies the name of this Azure Native Qumulo Scalable File System resource. Changing this forces a new resource to be created.
    OfferId string
    Specifies the marketplace offer ID. Defaults to qumulo-saas-mpp. Changing this forces a new resource to be created.
    PlanId string
    Specifies the marketplace plan ID. Defaults to azure-native-qumulo-v3. Changing this forces a new resource to be created.
    PublisherId string
    Specifies the marketplace publisher ID. Defaults to qumulo1584033880660. Changing this forces a new resource to be created.
    ResourceGroupName string
    Specifies the name of the Resource Group within which this Azure Native Qumulo Scalable File System should exist. Changing this forces a new resource to be created.
    StorageSku string
    The storage Sku. Possible values are Cold_LRS, Hot_LRS and Hot_ZRS. Changing this forces a new resource to be created.
    SubnetId string
    The delegated subnet ID for Vnet injection. Changing this forces a new resource to be created.
    Tags Dictionary<string, string>
    A mapping of tags which should be assigned to the File System.
    Zone string
    The Availability Zone in which the Azure Native Qumulo Scalable File system is located. Changing this forces a new resource to be created.
    AdminPassword string
    The initial administrator password of the Azure Native Qumulo Scalable File System. Changing this forces a new resource to be created.
    Email string
    The email address used for the Azure Native Qumulo Scalable File System. Changing this forces a new resource to be created.
    Location string
    The Azure Region where the Azure Native Qumulo Scalable File System should exist. Changing this forces a new resource to be created.
    Name string
    Specifies the name of this Azure Native Qumulo Scalable File System resource. Changing this forces a new resource to be created.
    OfferId string
    Specifies the marketplace offer ID. Defaults to qumulo-saas-mpp. Changing this forces a new resource to be created.
    PlanId string
    Specifies the marketplace plan ID. Defaults to azure-native-qumulo-v3. Changing this forces a new resource to be created.
    PublisherId string
    Specifies the marketplace publisher ID. Defaults to qumulo1584033880660. Changing this forces a new resource to be created.
    ResourceGroupName string
    Specifies the name of the Resource Group within which this Azure Native Qumulo Scalable File System should exist. Changing this forces a new resource to be created.
    StorageSku string
    The storage Sku. Possible values are Cold_LRS, Hot_LRS and Hot_ZRS. Changing this forces a new resource to be created.
    SubnetId string
    The delegated subnet ID for Vnet injection. Changing this forces a new resource to be created.
    Tags map[string]string
    A mapping of tags which should be assigned to the File System.
    Zone string
    The Availability Zone in which the Azure Native Qumulo Scalable File system is located. Changing this forces a new resource to be created.
    adminPassword String
    The initial administrator password of the Azure Native Qumulo Scalable File System. Changing this forces a new resource to be created.
    email String
    The email address used for the Azure Native Qumulo Scalable File System. Changing this forces a new resource to be created.
    location String
    The Azure Region where the Azure Native Qumulo Scalable File System should exist. Changing this forces a new resource to be created.
    name String
    Specifies the name of this Azure Native Qumulo Scalable File System resource. Changing this forces a new resource to be created.
    offerId String
    Specifies the marketplace offer ID. Defaults to qumulo-saas-mpp. Changing this forces a new resource to be created.
    planId String
    Specifies the marketplace plan ID. Defaults to azure-native-qumulo-v3. Changing this forces a new resource to be created.
    publisherId String
    Specifies the marketplace publisher ID. Defaults to qumulo1584033880660. Changing this forces a new resource to be created.
    resourceGroupName String
    Specifies the name of the Resource Group within which this Azure Native Qumulo Scalable File System should exist. Changing this forces a new resource to be created.
    storageSku String
    The storage Sku. Possible values are Cold_LRS, Hot_LRS and Hot_ZRS. Changing this forces a new resource to be created.
    subnetId String
    The delegated subnet ID for Vnet injection. Changing this forces a new resource to be created.
    tags Map<String,String>
    A mapping of tags which should be assigned to the File System.
    zone String
    The Availability Zone in which the Azure Native Qumulo Scalable File system is located. Changing this forces a new resource to be created.
    adminPassword string
    The initial administrator password of the Azure Native Qumulo Scalable File System. Changing this forces a new resource to be created.
    email string
    The email address used for the Azure Native Qumulo Scalable File System. Changing this forces a new resource to be created.
    location string
    The Azure Region where the Azure Native Qumulo Scalable File System should exist. Changing this forces a new resource to be created.
    name string
    Specifies the name of this Azure Native Qumulo Scalable File System resource. Changing this forces a new resource to be created.
    offerId string
    Specifies the marketplace offer ID. Defaults to qumulo-saas-mpp. Changing this forces a new resource to be created.
    planId string
    Specifies the marketplace plan ID. Defaults to azure-native-qumulo-v3. Changing this forces a new resource to be created.
    publisherId string
    Specifies the marketplace publisher ID. Defaults to qumulo1584033880660. Changing this forces a new resource to be created.
    resourceGroupName string
    Specifies the name of the Resource Group within which this Azure Native Qumulo Scalable File System should exist. Changing this forces a new resource to be created.
    storageSku string
    The storage Sku. Possible values are Cold_LRS, Hot_LRS and Hot_ZRS. Changing this forces a new resource to be created.
    subnetId string
    The delegated subnet ID for Vnet injection. Changing this forces a new resource to be created.
    tags {[key: string]: string}
    A mapping of tags which should be assigned to the File System.
    zone string
    The Availability Zone in which the Azure Native Qumulo Scalable File system is located. Changing this forces a new resource to be created.
    admin_password str
    The initial administrator password of the Azure Native Qumulo Scalable File System. Changing this forces a new resource to be created.
    email str
    The email address used for the Azure Native Qumulo Scalable File System. Changing this forces a new resource to be created.
    location str
    The Azure Region where the Azure Native Qumulo Scalable File System should exist. Changing this forces a new resource to be created.
    name str
    Specifies the name of this Azure Native Qumulo Scalable File System resource. Changing this forces a new resource to be created.
    offer_id str
    Specifies the marketplace offer ID. Defaults to qumulo-saas-mpp. Changing this forces a new resource to be created.
    plan_id str
    Specifies the marketplace plan ID. Defaults to azure-native-qumulo-v3. Changing this forces a new resource to be created.
    publisher_id str
    Specifies the marketplace publisher ID. Defaults to qumulo1584033880660. Changing this forces a new resource to be created.
    resource_group_name str
    Specifies the name of the Resource Group within which this Azure Native Qumulo Scalable File System should exist. Changing this forces a new resource to be created.
    storage_sku str
    The storage Sku. Possible values are Cold_LRS, Hot_LRS and Hot_ZRS. Changing this forces a new resource to be created.
    subnet_id str
    The delegated subnet ID for Vnet injection. Changing this forces a new resource to be created.
    tags Mapping[str, str]
    A mapping of tags which should be assigned to the File System.
    zone str
    The Availability Zone in which the Azure Native Qumulo Scalable File system is located. Changing this forces a new resource to be created.
    adminPassword String
    The initial administrator password of the Azure Native Qumulo Scalable File System. Changing this forces a new resource to be created.
    email String
    The email address used for the Azure Native Qumulo Scalable File System. Changing this forces a new resource to be created.
    location String
    The Azure Region where the Azure Native Qumulo Scalable File System should exist. Changing this forces a new resource to be created.
    name String
    Specifies the name of this Azure Native Qumulo Scalable File System resource. Changing this forces a new resource to be created.
    offerId String
    Specifies the marketplace offer ID. Defaults to qumulo-saas-mpp. Changing this forces a new resource to be created.
    planId String
    Specifies the marketplace plan ID. Defaults to azure-native-qumulo-v3. Changing this forces a new resource to be created.
    publisherId String
    Specifies the marketplace publisher ID. Defaults to qumulo1584033880660. Changing this forces a new resource to be created.
    resourceGroupName String
    Specifies the name of the Resource Group within which this Azure Native Qumulo Scalable File System should exist. Changing this forces a new resource to be created.
    storageSku String
    The storage Sku. Possible values are Cold_LRS, Hot_LRS and Hot_ZRS. Changing this forces a new resource to be created.
    subnetId String
    The delegated subnet ID for Vnet injection. Changing this forces a new resource to be created.
    tags Map<String>
    A mapping of tags which should be assigned to the File System.
    zone String
    The Availability Zone in which the Azure Native Qumulo Scalable File system is located. Changing this forces a new resource to be created.

    Import

    An existing File System can be imported into Pulumi using the resource id, e.g.

    $ pulumi import azure:qumulo/fileSystem:FileSystem example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Qumulo.Storage/fileSystems/example
    

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

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Azure v6.24.0 published on Wednesday, Jun 18, 2025 by Pulumi