published on Friday, Mar 6, 2026 by Pulumi
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:
- Storage
In intGbs - (Updatable) The total storage needed for advanced cluster file system in GBs.
- Vm
Cluster stringId - (Updatable) The OCID of the VM cluster.
- Compartment
Id string - The OCID of the compartment.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- 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.
- Storage
In intGbs - (Updatable) The total storage needed for advanced cluster file system in GBs.
- Vm
Cluster stringId - (Updatable) The OCID of the VM cluster.
- Compartment
Id string - The OCID of the compartment.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- 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.
- storage
In IntegerGbs - (Updatable) The total storage needed for advanced cluster file system in GBs.
- vm
Cluster StringId - (Updatable) The OCID of the VM cluster.
- compartment
Id String - The OCID of the compartment.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- 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.
- storage
In numberGbs - (Updatable) The total storage needed for advanced cluster file system in GBs.
- vm
Cluster stringId - (Updatable) The OCID of the VM cluster.
- compartment
Id string - The OCID of the compartment.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- {[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_ intgbs - (Updatable) The total storage needed for advanced cluster file system in GBs.
- vm_
cluster_ strid - (Updatable) The OCID of the VM cluster.
- compartment_
id str - The OCID of the compartment.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource 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.
- storage
In NumberGbs - (Updatable) The total storage needed for advanced cluster file system in GBs.
- vm
Cluster StringId - (Updatable) The OCID of the VM cluster.
- compartment
Id String - The OCID of the compartment.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- 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.
- Is
Mounted bool - True if the file system is mounted on all VMs within VM Cluster.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Mount
Point string - The mount point of file system.
- State string
(Updatable) The target state for the Advanced Cluster File System. Could be set to
ACTIVEorINACTIVE.** 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
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Time
Created string - The date and time the advanced cluster file system was created.
- Time
Updated string - The last date and time that the advanced cluster file system was updated.
- Vault
Id string - The OCID of the Oracle Cloud Infrastructure vault. This parameter and
secretIdare 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.
- Is
Mounted bool - True if the file system is mounted on all VMs within VM Cluster.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Mount
Point string - The mount point of file system.
- State string
(Updatable) The target state for the Advanced Cluster File System. Could be set to
ACTIVEorINACTIVE.** 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
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Time
Created string - The date and time the advanced cluster file system was created.
- Time
Updated string - The last date and time that the advanced cluster file system was updated.
- Vault
Id string - The OCID of the Oracle Cloud Infrastructure vault. This parameter and
secretIdare 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.
- is
Mounted Boolean - True if the file system is mounted on all VMs within VM Cluster.
- lifecycle
Details String - Additional information about the current lifecycle state.
- mount
Point String - The mount point of file system.
- state String
(Updatable) The target state for the Advanced Cluster File System. Could be set to
ACTIVEorINACTIVE.** 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
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time
Created String - The date and time the advanced cluster file system was created.
- time
Updated String - The last date and time that the advanced cluster file system was updated.
- vault
Id String - The OCID of the Oracle Cloud Infrastructure vault. This parameter and
secretIdare 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.
- is
Mounted boolean - True if the file system is mounted on all VMs within VM Cluster.
- lifecycle
Details string - Additional information about the current lifecycle state.
- mount
Point string - The mount point of file system.
- state string
(Updatable) The target state for the Advanced Cluster File System. Could be set to
ACTIVEorINACTIVE.** 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
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time
Created string - The date and time the advanced cluster file system was created.
- time
Updated string - The last date and time that the advanced cluster file system was updated.
- vault
Id string - The OCID of the Oracle Cloud Infrastructure vault. This parameter and
secretIdare 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
ACTIVEorINACTIVE.** 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
- 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
secretIdare 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.
- is
Mounted Boolean - True if the file system is mounted on all VMs within VM Cluster.
- lifecycle
Details String - Additional information about the current lifecycle state.
- mount
Point String - The mount point of file system.
- state String
(Updatable) The target state for the Advanced Cluster File System. Could be set to
ACTIVEorINACTIVE.** 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
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time
Created String - The date and time the advanced cluster file system was created.
- time
Updated String - The last date and time that the advanced cluster file system was updated.
- vault
Id String - The OCID of the Oracle Cloud Infrastructure vault. This parameter and
secretIdare 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) -> AdvancedClusterFileSystemfunc 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.
- Compartment
Id string - The OCID of the compartment.
- 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.
- 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"} - Is
Mounted bool - True if the file system is mounted on all VMs within VM Cluster.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Mount
Point 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
ACTIVEorINACTIVE.** 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 intGbs - (Updatable) The total storage needed for advanced cluster file system in GBs.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Time
Created string - The date and time the advanced cluster file system was created.
- Time
Updated string - The last date and time that the advanced cluster file system was updated.
- Vault
Id string - The OCID of the Oracle Cloud Infrastructure vault. This parameter and
secretIdare required for Customer Managed Keys. - Vm
Cluster stringId - (Updatable) The OCID of the VM cluster.
- Compartment
Id string - The OCID of the compartment.
- 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.
- 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"} - Is
Mounted bool - True if the file system is mounted on all VMs within VM Cluster.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Mount
Point 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
ACTIVEorINACTIVE.** 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 intGbs - (Updatable) The total storage needed for advanced cluster file system in GBs.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Time
Created string - The date and time the advanced cluster file system was created.
- Time
Updated string - The last date and time that the advanced cluster file system was updated.
- Vault
Id string - The OCID of the Oracle Cloud Infrastructure vault. This parameter and
secretIdare required for Customer Managed Keys. - Vm
Cluster stringId - (Updatable) The OCID of the VM cluster.
- compartment
Id String - The OCID of the compartment.
- 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.
- 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"} - is
Mounted Boolean - True if the file system is mounted on all VMs within VM Cluster.
- lifecycle
Details String - Additional information about the current lifecycle state.
- mount
Point 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
ACTIVEorINACTIVE.** 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 IntegerGbs - (Updatable) The total storage needed for advanced cluster file system in GBs.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time
Created String - The date and time the advanced cluster file system was created.
- time
Updated String - The last date and time that the advanced cluster file system was updated.
- vault
Id String - The OCID of the Oracle Cloud Infrastructure vault. This parameter and
secretIdare required for Customer Managed Keys. - vm
Cluster StringId - (Updatable) The OCID of the VM cluster.
- compartment
Id string - The OCID of the compartment.
- {[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.
- {[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"} - is
Mounted boolean - True if the file system is mounted on all VMs within VM Cluster.
- lifecycle
Details string - Additional information about the current lifecycle state.
- mount
Point 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
ACTIVEorINACTIVE.** 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 numberGbs - (Updatable) The total storage needed for advanced cluster file system in GBs.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time
Created string - The date and time the advanced cluster file system was created.
- time
Updated string - The last date and time that the advanced cluster file system was updated.
- vault
Id string - The OCID of the Oracle Cloud Infrastructure vault. This parameter and
secretIdare required for Customer Managed Keys. - vm
Cluster stringId - (Updatable) The OCID of the VM cluster.
- compartment_
id str - The OCID of the compartment.
- 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.
- 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
ACTIVEorINACTIVE.** 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_ intgbs - (Updatable) The total storage needed for advanced cluster file system in GBs.
- 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
secretIdare required for Customer Managed Keys. - vm_
cluster_ strid - (Updatable) The OCID of the VM cluster.
- compartment
Id String - The OCID of the compartment.
- 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.
- 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"} - is
Mounted Boolean - True if the file system is mounted on all VMs within VM Cluster.
- lifecycle
Details String - Additional information about the current lifecycle state.
- mount
Point 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
ACTIVEorINACTIVE.** 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 NumberGbs - (Updatable) The total storage needed for advanced cluster file system in GBs.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time
Created String - The date and time the advanced cluster file system was created.
- time
Updated String - The last date and time that the advanced cluster file system was updated.
- vault
Id String - The OCID of the Oracle Cloud Infrastructure vault. This parameter and
secretIdare required for Customer Managed Keys. - vm
Cluster StringId - (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
ociTerraform Provider.
published on Friday, Mar 6, 2026 by Pulumi
