1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. AdvancedClusterFileSystem
Viewing docs for Oracle Cloud Infrastructure v4.2.0
published on Friday, Mar 6, 2026 by Pulumi
oci logo
Viewing docs for Oracle Cloud Infrastructure v4.2.0
published on Friday, Mar 6, 2026 by Pulumi

    This resource provides the Advanced Cluster File System resource in Oracle Cloud Infrastructure Database service. Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/database/latest/AdvancedClusterFileSystem

    Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/database

    Creates an advanced cluster file system resource.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testAdvancedClusterFileSystem = new oci.database.AdvancedClusterFileSystem("test_advanced_cluster_file_system", {
        name: advancedClusterFileSystemName,
        storageInGbs: advancedClusterFileSystemStorageInGbs,
        vmClusterId: testVmCluster.id,
        compartmentId: compartmentId,
        definedTags: advancedClusterFileSystemDefinedTags,
        freeformTags: {
            Department: "Finance",
        },
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_advanced_cluster_file_system = oci.database.AdvancedClusterFileSystem("test_advanced_cluster_file_system",
        name=advanced_cluster_file_system_name,
        storage_in_gbs=advanced_cluster_file_system_storage_in_gbs,
        vm_cluster_id=test_vm_cluster["id"],
        compartment_id=compartment_id,
        defined_tags=advanced_cluster_file_system_defined_tags,
        freeform_tags={
            "Department": "Finance",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v4/go/oci/database"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := database.NewAdvancedClusterFileSystem(ctx, "test_advanced_cluster_file_system", &database.AdvancedClusterFileSystemArgs{
    			Name:          pulumi.Any(advancedClusterFileSystemName),
    			StorageInGbs:  pulumi.Any(advancedClusterFileSystemStorageInGbs),
    			VmClusterId:   pulumi.Any(testVmCluster.Id),
    			CompartmentId: pulumi.Any(compartmentId),
    			DefinedTags:   pulumi.Any(advancedClusterFileSystemDefinedTags),
    			FreeformTags: pulumi.StringMap{
    				"Department": pulumi.String("Finance"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testAdvancedClusterFileSystem = new Oci.Database.AdvancedClusterFileSystem("test_advanced_cluster_file_system", new()
        {
            Name = advancedClusterFileSystemName,
            StorageInGbs = advancedClusterFileSystemStorageInGbs,
            VmClusterId = testVmCluster.Id,
            CompartmentId = compartmentId,
            DefinedTags = advancedClusterFileSystemDefinedTags,
            FreeformTags = 
            {
                { "Department", "Finance" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Database.AdvancedClusterFileSystem;
    import com.pulumi.oci.Database.AdvancedClusterFileSystemArgs;
    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 testAdvancedClusterFileSystem = new AdvancedClusterFileSystem("testAdvancedClusterFileSystem", AdvancedClusterFileSystemArgs.builder()
                .name(advancedClusterFileSystemName)
                .storageInGbs(advancedClusterFileSystemStorageInGbs)
                .vmClusterId(testVmCluster.id())
                .compartmentId(compartmentId)
                .definedTags(advancedClusterFileSystemDefinedTags)
                .freeformTags(Map.of("Department", "Finance"))
                .build());
    
        }
    }
    
    resources:
      testAdvancedClusterFileSystem:
        type: oci:Database:AdvancedClusterFileSystem
        name: test_advanced_cluster_file_system
        properties:
          name: ${advancedClusterFileSystemName}
          storageInGbs: ${advancedClusterFileSystemStorageInGbs}
          vmClusterId: ${testVmCluster.id}
          compartmentId: ${compartmentId}
          definedTags: ${advancedClusterFileSystemDefinedTags}
          freeformTags:
            Department: Finance
    

    Create AdvancedClusterFileSystem Resource

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

    Constructor syntax

    new AdvancedClusterFileSystem(name: string, args: AdvancedClusterFileSystemArgs, opts?: CustomResourceOptions);
    @overload
    def AdvancedClusterFileSystem(resource_name: str,
                                  args: AdvancedClusterFileSystemArgs,
                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def AdvancedClusterFileSystem(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  storage_in_gbs: Optional[int] = None,
                                  vm_cluster_id: Optional[str] = None,
                                  compartment_id: Optional[str] = None,
                                  defined_tags: Optional[Mapping[str, str]] = None,
                                  freeform_tags: Optional[Mapping[str, str]] = None,
                                  name: Optional[str] = None)
    func NewAdvancedClusterFileSystem(ctx *Context, name string, args AdvancedClusterFileSystemArgs, opts ...ResourceOption) (*AdvancedClusterFileSystem, error)
    public AdvancedClusterFileSystem(string name, AdvancedClusterFileSystemArgs args, CustomResourceOptions? opts = null)
    public AdvancedClusterFileSystem(String name, AdvancedClusterFileSystemArgs args)
    public AdvancedClusterFileSystem(String name, AdvancedClusterFileSystemArgs args, CustomResourceOptions options)
    
    type: oci:Database:AdvancedClusterFileSystem
    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 AdvancedClusterFileSystemArgs
    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 AdvancedClusterFileSystemArgs
    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 AdvancedClusterFileSystemArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AdvancedClusterFileSystemArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AdvancedClusterFileSystemArgs
    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 advancedClusterFileSystemResource = new Oci.Database.AdvancedClusterFileSystem("advancedClusterFileSystemResource", new()
    {
        StorageInGbs = 0,
        VmClusterId = "string",
        CompartmentId = "string",
        DefinedTags = 
        {
            { "string", "string" },
        },
        FreeformTags = 
        {
            { "string", "string" },
        },
        Name = "string",
    });
    
    example, err := database.NewAdvancedClusterFileSystem(ctx, "advancedClusterFileSystemResource", &database.AdvancedClusterFileSystemArgs{
    	StorageInGbs:  pulumi.Int(0),
    	VmClusterId:   pulumi.String("string"),
    	CompartmentId: pulumi.String("string"),
    	DefinedTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	FreeformTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Name: pulumi.String("string"),
    })
    
    var advancedClusterFileSystemResource = new AdvancedClusterFileSystem("advancedClusterFileSystemResource", AdvancedClusterFileSystemArgs.builder()
        .storageInGbs(0)
        .vmClusterId("string")
        .compartmentId("string")
        .definedTags(Map.of("string", "string"))
        .freeformTags(Map.of("string", "string"))
        .name("string")
        .build());
    
    advanced_cluster_file_system_resource = oci.database.AdvancedClusterFileSystem("advancedClusterFileSystemResource",
        storage_in_gbs=0,
        vm_cluster_id="string",
        compartment_id="string",
        defined_tags={
            "string": "string",
        },
        freeform_tags={
            "string": "string",
        },
        name="string")
    
    const advancedClusterFileSystemResource = new oci.database.AdvancedClusterFileSystem("advancedClusterFileSystemResource", {
        storageInGbs: 0,
        vmClusterId: "string",
        compartmentId: "string",
        definedTags: {
            string: "string",
        },
        freeformTags: {
            string: "string",
        },
        name: "string",
    });
    
    type: oci:Database:AdvancedClusterFileSystem
    properties:
        compartmentId: string
        definedTags:
            string: string
        freeformTags:
            string: string
        name: string
        storageInGbs: 0
        vmClusterId: string
    

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

    StorageInGbs int
    (Updatable) The total storage needed for advanced cluster file system in GBs.
    VmClusterId string
    (Updatable) The OCID of the VM cluster.
    CompartmentId string
    The OCID of the compartment.
    DefinedTags Dictionary<string, string>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    FreeformTags Dictionary<string, string>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Name string
    The user-friendly name for the Advanced cluster file system. The name has to be unique.
    StorageInGbs int
    (Updatable) The total storage needed for advanced cluster file system in GBs.
    VmClusterId string
    (Updatable) The OCID of the VM cluster.
    CompartmentId string
    The OCID of the compartment.
    DefinedTags map[string]string
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    FreeformTags map[string]string
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Name string
    The user-friendly name for the Advanced cluster file system. The name has to be unique.
    storageInGbs Integer
    (Updatable) The total storage needed for advanced cluster file system in GBs.
    vmClusterId String
    (Updatable) The OCID of the VM cluster.
    compartmentId String
    The OCID of the compartment.
    definedTags Map<String,String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    freeformTags Map<String,String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    name String
    The user-friendly name for the Advanced cluster file system. The name has to be unique.
    storageInGbs number
    (Updatable) The total storage needed for advanced cluster file system in GBs.
    vmClusterId string
    (Updatable) The OCID of the VM cluster.
    compartmentId string
    The OCID of the compartment.
    definedTags {[key: string]: string}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    freeformTags {[key: string]: string}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    name string
    The user-friendly name for the Advanced cluster file system. The name has to be unique.
    storage_in_gbs int
    (Updatable) The total storage needed for advanced cluster file system in GBs.
    vm_cluster_id str
    (Updatable) The OCID of the VM cluster.
    compartment_id str
    The OCID of the compartment.
    defined_tags Mapping[str, str]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    freeform_tags Mapping[str, str]
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    name str
    The user-friendly name for the Advanced cluster file system. The name has to be unique.
    storageInGbs Number
    (Updatable) The total storage needed for advanced cluster file system in GBs.
    vmClusterId String
    (Updatable) The OCID of the VM cluster.
    compartmentId String
    The OCID of the compartment.
    definedTags Map<String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    freeformTags Map<String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    name String
    The user-friendly name for the Advanced cluster file system. The name has to be unique.

    Outputs

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

    Description string
    Description of the advanced cluster file system.
    Id string
    The provider-assigned unique ID for this managed resource.
    IsMounted bool
    True if the file system is mounted on all VMs within VM Cluster.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    MountPoint string
    The mount point of file system.
    State string

    (Updatable) The target state for the Advanced Cluster File System. Could be set to ACTIVE or INACTIVE.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    TimeCreated string
    The date and time the advanced cluster file system was created.
    TimeUpdated string
    The last date and time that the advanced cluster file system was updated.
    VaultId string
    The OCID of the Oracle Cloud Infrastructure vault. This parameter and secretId are required for Customer Managed Keys.
    Description string
    Description of the advanced cluster file system.
    Id string
    The provider-assigned unique ID for this managed resource.
    IsMounted bool
    True if the file system is mounted on all VMs within VM Cluster.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    MountPoint string
    The mount point of file system.
    State string

    (Updatable) The target state for the Advanced Cluster File System. Could be set to ACTIVE or INACTIVE.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    TimeCreated string
    The date and time the advanced cluster file system was created.
    TimeUpdated string
    The last date and time that the advanced cluster file system was updated.
    VaultId string
    The OCID of the Oracle Cloud Infrastructure vault. This parameter and secretId are required for Customer Managed Keys.
    description String
    Description of the advanced cluster file system.
    id String
    The provider-assigned unique ID for this managed resource.
    isMounted Boolean
    True if the file system is mounted on all VMs within VM Cluster.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    mountPoint String
    The mount point of file system.
    state String

    (Updatable) The target state for the Advanced Cluster File System. Could be set to ACTIVE or INACTIVE.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    timeCreated String
    The date and time the advanced cluster file system was created.
    timeUpdated String
    The last date and time that the advanced cluster file system was updated.
    vaultId String
    The OCID of the Oracle Cloud Infrastructure vault. This parameter and secretId are required for Customer Managed Keys.
    description string
    Description of the advanced cluster file system.
    id string
    The provider-assigned unique ID for this managed resource.
    isMounted boolean
    True if the file system is mounted on all VMs within VM Cluster.
    lifecycleDetails string
    Additional information about the current lifecycle state.
    mountPoint string
    The mount point of file system.
    state string

    (Updatable) The target state for the Advanced Cluster File System. Could be set to ACTIVE or INACTIVE.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    timeCreated string
    The date and time the advanced cluster file system was created.
    timeUpdated string
    The last date and time that the advanced cluster file system was updated.
    vaultId string
    The OCID of the Oracle Cloud Infrastructure vault. This parameter and secretId are required for Customer Managed Keys.
    description str
    Description of the advanced cluster file system.
    id str
    The provider-assigned unique ID for this managed resource.
    is_mounted bool
    True if the file system is mounted on all VMs within VM Cluster.
    lifecycle_details str
    Additional information about the current lifecycle state.
    mount_point str
    The mount point of file system.
    state str

    (Updatable) The target state for the Advanced Cluster File System. Could be set to ACTIVE or INACTIVE.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    system_tags Mapping[str, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    time_created str
    The date and time the advanced cluster file system was created.
    time_updated str
    The last date and time that the advanced cluster file system was updated.
    vault_id str
    The OCID of the Oracle Cloud Infrastructure vault. This parameter and secretId are required for Customer Managed Keys.
    description String
    Description of the advanced cluster file system.
    id String
    The provider-assigned unique ID for this managed resource.
    isMounted Boolean
    True if the file system is mounted on all VMs within VM Cluster.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    mountPoint String
    The mount point of file system.
    state String

    (Updatable) The target state for the Advanced Cluster File System. Could be set to ACTIVE or INACTIVE.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    timeCreated String
    The date and time the advanced cluster file system was created.
    timeUpdated String
    The last date and time that the advanced cluster file system was updated.
    vaultId String
    The OCID of the Oracle Cloud Infrastructure vault. This parameter and secretId are required for Customer Managed Keys.

    Look up Existing AdvancedClusterFileSystem Resource

    Get an existing AdvancedClusterFileSystem 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?: AdvancedClusterFileSystemState, opts?: CustomResourceOptions): AdvancedClusterFileSystem
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            compartment_id: Optional[str] = None,
            defined_tags: Optional[Mapping[str, str]] = None,
            description: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, str]] = None,
            is_mounted: Optional[bool] = None,
            lifecycle_details: Optional[str] = None,
            mount_point: Optional[str] = None,
            name: Optional[str] = None,
            state: Optional[str] = None,
            storage_in_gbs: Optional[int] = None,
            system_tags: Optional[Mapping[str, str]] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None,
            vault_id: Optional[str] = None,
            vm_cluster_id: Optional[str] = None) -> AdvancedClusterFileSystem
    func GetAdvancedClusterFileSystem(ctx *Context, name string, id IDInput, state *AdvancedClusterFileSystemState, opts ...ResourceOption) (*AdvancedClusterFileSystem, error)
    public static AdvancedClusterFileSystem Get(string name, Input<string> id, AdvancedClusterFileSystemState? state, CustomResourceOptions? opts = null)
    public static AdvancedClusterFileSystem get(String name, Output<String> id, AdvancedClusterFileSystemState state, CustomResourceOptions options)
    resources:  _:    type: oci:Database:AdvancedClusterFileSystem    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:
    CompartmentId string
    The OCID of the compartment.
    DefinedTags Dictionary<string, string>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    Description string
    Description of the advanced cluster file system.
    FreeformTags Dictionary<string, string>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    IsMounted bool
    True if the file system is mounted on all VMs within VM Cluster.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    MountPoint string
    The mount point of file system.
    Name string
    The user-friendly name for the Advanced cluster file system. The name has to be unique.
    State string

    (Updatable) The target state for the Advanced Cluster File System. Could be set to ACTIVE or INACTIVE.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    StorageInGbs int
    (Updatable) The total storage needed for advanced cluster file system in GBs.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    TimeCreated string
    The date and time the advanced cluster file system was created.
    TimeUpdated string
    The last date and time that the advanced cluster file system was updated.
    VaultId string
    The OCID of the Oracle Cloud Infrastructure vault. This parameter and secretId are required for Customer Managed Keys.
    VmClusterId string
    (Updatable) The OCID of the VM cluster.
    CompartmentId string
    The OCID of the compartment.
    DefinedTags map[string]string
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    Description string
    Description of the advanced cluster file system.
    FreeformTags map[string]string
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    IsMounted bool
    True if the file system is mounted on all VMs within VM Cluster.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    MountPoint string
    The mount point of file system.
    Name string
    The user-friendly name for the Advanced cluster file system. The name has to be unique.
    State string

    (Updatable) The target state for the Advanced Cluster File System. Could be set to ACTIVE or INACTIVE.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    StorageInGbs int
    (Updatable) The total storage needed for advanced cluster file system in GBs.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    TimeCreated string
    The date and time the advanced cluster file system was created.
    TimeUpdated string
    The last date and time that the advanced cluster file system was updated.
    VaultId string
    The OCID of the Oracle Cloud Infrastructure vault. This parameter and secretId are required for Customer Managed Keys.
    VmClusterId string
    (Updatable) The OCID of the VM cluster.
    compartmentId String
    The OCID of the compartment.
    definedTags Map<String,String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    description String
    Description of the advanced cluster file system.
    freeformTags Map<String,String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    isMounted Boolean
    True if the file system is mounted on all VMs within VM Cluster.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    mountPoint String
    The mount point of file system.
    name String
    The user-friendly name for the Advanced cluster file system. The name has to be unique.
    state String

    (Updatable) The target state for the Advanced Cluster File System. Could be set to ACTIVE or INACTIVE.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    storageInGbs Integer
    (Updatable) The total storage needed for advanced cluster file system in GBs.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    timeCreated String
    The date and time the advanced cluster file system was created.
    timeUpdated String
    The last date and time that the advanced cluster file system was updated.
    vaultId String
    The OCID of the Oracle Cloud Infrastructure vault. This parameter and secretId are required for Customer Managed Keys.
    vmClusterId String
    (Updatable) The OCID of the VM cluster.
    compartmentId string
    The OCID of the compartment.
    definedTags {[key: string]: string}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    description string
    Description of the advanced cluster file system.
    freeformTags {[key: string]: string}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    isMounted boolean
    True if the file system is mounted on all VMs within VM Cluster.
    lifecycleDetails string
    Additional information about the current lifecycle state.
    mountPoint string
    The mount point of file system.
    name string
    The user-friendly name for the Advanced cluster file system. The name has to be unique.
    state string

    (Updatable) The target state for the Advanced Cluster File System. Could be set to ACTIVE or INACTIVE.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    storageInGbs number
    (Updatable) The total storage needed for advanced cluster file system in GBs.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    timeCreated string
    The date and time the advanced cluster file system was created.
    timeUpdated string
    The last date and time that the advanced cluster file system was updated.
    vaultId string
    The OCID of the Oracle Cloud Infrastructure vault. This parameter and secretId are required for Customer Managed Keys.
    vmClusterId string
    (Updatable) The OCID of the VM cluster.
    compartment_id str
    The OCID of the compartment.
    defined_tags Mapping[str, str]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    description str
    Description of the advanced cluster file system.
    freeform_tags Mapping[str, str]
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    is_mounted bool
    True if the file system is mounted on all VMs within VM Cluster.
    lifecycle_details str
    Additional information about the current lifecycle state.
    mount_point str
    The mount point of file system.
    name str
    The user-friendly name for the Advanced cluster file system. The name has to be unique.
    state str

    (Updatable) The target state for the Advanced Cluster File System. Could be set to ACTIVE or INACTIVE.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    storage_in_gbs int
    (Updatable) The total storage needed for advanced cluster file system in GBs.
    system_tags Mapping[str, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    time_created str
    The date and time the advanced cluster file system was created.
    time_updated str
    The last date and time that the advanced cluster file system was updated.
    vault_id str
    The OCID of the Oracle Cloud Infrastructure vault. This parameter and secretId are required for Customer Managed Keys.
    vm_cluster_id str
    (Updatable) The OCID of the VM cluster.
    compartmentId String
    The OCID of the compartment.
    definedTags Map<String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    description String
    Description of the advanced cluster file system.
    freeformTags Map<String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    isMounted Boolean
    True if the file system is mounted on all VMs within VM Cluster.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    mountPoint String
    The mount point of file system.
    name String
    The user-friendly name for the Advanced cluster file system. The name has to be unique.
    state String

    (Updatable) The target state for the Advanced Cluster File System. Could be set to ACTIVE or INACTIVE.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    storageInGbs Number
    (Updatable) The total storage needed for advanced cluster file system in GBs.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    timeCreated String
    The date and time the advanced cluster file system was created.
    timeUpdated String
    The last date and time that the advanced cluster file system was updated.
    vaultId String
    The OCID of the Oracle Cloud Infrastructure vault. This parameter and secretId are required for Customer Managed Keys.
    vmClusterId String
    (Updatable) The OCID of the VM cluster.

    Import

    AdvancedClusterFileSystems can be imported using the id, e.g.

    $ pulumi import oci:Database/advancedClusterFileSystem:AdvancedClusterFileSystem test_advanced_cluster_file_system "id"
    

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

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Viewing docs for Oracle Cloud Infrastructure v4.2.0
    published on Friday, Mar 6, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.