import * as pulumi from "@pulumi/pulumi"; /** * Manages an Azure Native Qumulo Scalable File System. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "example-resources", * location: "West Europe", * }); * const exampleVirtualNetwork = new azure.network.VirtualNetwork("example", { * name: "example-vnet", * addressSpaces: ["10.0.0.0/16"], * location: example.location, * resourceGroupName: example.name, * }); * const exampleSubnet = new azure.network.Subnet("example", { * 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", * }, * }], * }); * const exampleFileSystem = new azure.qumulo.FileSystem("example", { * 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 * * ## Import * * An existing File System can be imported into Pulumi using the `resource id`, e.g. * * ```sh * $ pulumi import azure:qumulo/fileSystem:FileSystem example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Qumulo.Storage/fileSystems/example * ``` */ export declare class FileSystem extends pulumi.CustomResource { /** * Get an existing FileSystem resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: FileSystemState, opts?: pulumi.CustomResourceOptions): FileSystem; /** * Returns true if the given object is an instance of FileSystem. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is FileSystem; /** * The initial administrator password of the Azure Native Qumulo Scalable File System. Changing this forces a new resource to be created. */ readonly adminPassword: pulumi.Output; /** * The email address used for the Azure Native Qumulo Scalable File System. Changing this forces a new resource to be created. */ readonly email: pulumi.Output; /** * The Azure Region where the Azure Native Qumulo Scalable File System should exist. Changing this forces a new resource to be created. */ readonly location: pulumi.Output; /** * Specifies the name of this Azure Native Qumulo Scalable File System resource. Changing this forces a new resource to be created. */ readonly name: pulumi.Output; /** * Specifies the marketplace offer ID. Defaults to `qumulo-saas-mpp`. Changing this forces a new resource to be created. */ readonly offerId: pulumi.Output; /** * Specifies the marketplace plan ID. Defaults to `azure-native-qumulo-v3`. Changing this forces a new resource to be created. */ readonly planId: pulumi.Output; /** * Specifies the marketplace publisher ID. Defaults to `qumulo1584033880660`. Changing this forces a new resource to be created. */ readonly publisherId: pulumi.Output; /** * 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. */ readonly resourceGroupName: pulumi.Output; /** * The storage Sku. Possible values are `Cold_LRS`, `Hot_LRS` and `Hot_ZRS`. Changing this forces a new resource to be created. */ readonly storageSku: pulumi.Output; /** * The delegated subnet ID for Vnet injection. Changing this forces a new resource to be created. */ readonly subnetId: pulumi.Output; /** * A mapping of tags which should be assigned to the File System. */ readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; /** * The Availability Zone in which the Azure Native Qumulo Scalable File system is located. Changing this forces a new resource to be created. */ readonly zone: pulumi.Output; /** * Create a FileSystem resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: FileSystemArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering FileSystem resources. */ export interface FileSystemState { /** * The initial administrator password of the Azure Native Qumulo Scalable File System. Changing this forces a new resource to be created. */ adminPassword?: pulumi.Input; /** * The email address used for the Azure Native Qumulo Scalable File System. Changing this forces a new resource to be created. */ email?: pulumi.Input; /** * The Azure Region where the Azure Native Qumulo Scalable File System should exist. Changing this forces a new resource to be created. */ location?: pulumi.Input; /** * Specifies the name of this Azure Native Qumulo Scalable File System resource. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * Specifies the marketplace offer ID. Defaults to `qumulo-saas-mpp`. Changing this forces a new resource to be created. */ offerId?: pulumi.Input; /** * Specifies the marketplace plan ID. Defaults to `azure-native-qumulo-v3`. Changing this forces a new resource to be created. */ planId?: pulumi.Input; /** * Specifies the marketplace publisher ID. Defaults to `qumulo1584033880660`. Changing this forces a new resource to be created. */ publisherId?: pulumi.Input; /** * 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. */ resourceGroupName?: pulumi.Input; /** * The storage Sku. Possible values are `Cold_LRS`, `Hot_LRS` and `Hot_ZRS`. Changing this forces a new resource to be created. */ storageSku?: pulumi.Input; /** * The delegated subnet ID for Vnet injection. Changing this forces a new resource to be created. */ subnetId?: pulumi.Input; /** * A mapping of tags which should be assigned to the File System. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * The Availability Zone in which the Azure Native Qumulo Scalable File system is located. Changing this forces a new resource to be created. */ zone?: pulumi.Input; } /** * The set of arguments for constructing a FileSystem resource. */ export interface FileSystemArgs { /** * The initial administrator password of the Azure Native Qumulo Scalable File System. Changing this forces a new resource to be created. */ adminPassword: pulumi.Input; /** * The email address used for the Azure Native Qumulo Scalable File System. Changing this forces a new resource to be created. */ email: pulumi.Input; /** * The Azure Region where the Azure Native Qumulo Scalable File System should exist. Changing this forces a new resource to be created. */ location?: pulumi.Input; /** * Specifies the name of this Azure Native Qumulo Scalable File System resource. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * Specifies the marketplace offer ID. Defaults to `qumulo-saas-mpp`. Changing this forces a new resource to be created. */ offerId?: pulumi.Input; /** * Specifies the marketplace plan ID. Defaults to `azure-native-qumulo-v3`. Changing this forces a new resource to be created. */ planId?: pulumi.Input; /** * Specifies the marketplace publisher ID. Defaults to `qumulo1584033880660`. Changing this forces a new resource to be created. */ publisherId?: pulumi.Input; /** * 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. */ resourceGroupName: pulumi.Input; /** * The storage Sku. Possible values are `Cold_LRS`, `Hot_LRS` and `Hot_ZRS`. Changing this forces a new resource to be created. */ storageSku: pulumi.Input; /** * The delegated subnet ID for Vnet injection. Changing this forces a new resource to be created. */ subnetId: pulumi.Input; /** * A mapping of tags which should be assigned to the File System. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * The Availability Zone in which the Azure Native Qumulo Scalable File system is located. Changing this forces a new resource to be created. */ zone: pulumi.Input; }