1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Lustre
  5. getFileStorageObjectStorageLinks
Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi

oci.Lustre.getFileStorageObjectStorageLinks

Get Started
oci logo
Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi

    This data source provides the list of Object Storage Links in Oracle Cloud Infrastructure Lustre File Storage service.

    Gets a list of Object Storage links.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testObjectStorageLinks = oci.Lustre.getFileStorageObjectStorageLinks({
        availabilityDomain: objectStorageLinkAvailabilityDomain,
        compartmentId: compartmentId,
        displayName: objectStorageLinkDisplayName,
        id: objectStorageLinkId,
        lustreFileSystemId: testLustreFileSystem.id,
        state: objectStorageLinkState,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_object_storage_links = oci.Lustre.get_file_storage_object_storage_links(availability_domain=object_storage_link_availability_domain,
        compartment_id=compartment_id,
        display_name=object_storage_link_display_name,
        id=object_storage_link_id,
        lustre_file_system_id=test_lustre_file_system["id"],
        state=object_storage_link_state)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/lustre"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := lustre.GetFileStorageObjectStorageLinks(ctx, &lustre.GetFileStorageObjectStorageLinksArgs{
    			AvailabilityDomain: pulumi.StringRef(objectStorageLinkAvailabilityDomain),
    			CompartmentId:      pulumi.StringRef(compartmentId),
    			DisplayName:        pulumi.StringRef(objectStorageLinkDisplayName),
    			Id:                 pulumi.StringRef(objectStorageLinkId),
    			LustreFileSystemId: pulumi.StringRef(testLustreFileSystem.Id),
    			State:              pulumi.StringRef(objectStorageLinkState),
    		}, nil)
    		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 testObjectStorageLinks = Oci.Lustre.GetFileStorageObjectStorageLinks.Invoke(new()
        {
            AvailabilityDomain = objectStorageLinkAvailabilityDomain,
            CompartmentId = compartmentId,
            DisplayName = objectStorageLinkDisplayName,
            Id = objectStorageLinkId,
            LustreFileSystemId = testLustreFileSystem.Id,
            State = objectStorageLinkState,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Lustre.LustreFunctions;
    import com.pulumi.oci.Lustre.inputs.GetFileStorageObjectStorageLinksArgs;
    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) {
            final var testObjectStorageLinks = LustreFunctions.getFileStorageObjectStorageLinks(GetFileStorageObjectStorageLinksArgs.builder()
                .availabilityDomain(objectStorageLinkAvailabilityDomain)
                .compartmentId(compartmentId)
                .displayName(objectStorageLinkDisplayName)
                .id(objectStorageLinkId)
                .lustreFileSystemId(testLustreFileSystem.id())
                .state(objectStorageLinkState)
                .build());
    
        }
    }
    
    variables:
      testObjectStorageLinks:
        fn::invoke:
          function: oci:Lustre:getFileStorageObjectStorageLinks
          arguments:
            availabilityDomain: ${objectStorageLinkAvailabilityDomain}
            compartmentId: ${compartmentId}
            displayName: ${objectStorageLinkDisplayName}
            id: ${objectStorageLinkId}
            lustreFileSystemId: ${testLustreFileSystem.id}
            state: ${objectStorageLinkState}
    

    Using getFileStorageObjectStorageLinks

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getFileStorageObjectStorageLinks(args: GetFileStorageObjectStorageLinksArgs, opts?: InvokeOptions): Promise<GetFileStorageObjectStorageLinksResult>
    function getFileStorageObjectStorageLinksOutput(args: GetFileStorageObjectStorageLinksOutputArgs, opts?: InvokeOptions): Output<GetFileStorageObjectStorageLinksResult>
    def get_file_storage_object_storage_links(availability_domain: Optional[str] = None,
                                              compartment_id: Optional[str] = None,
                                              display_name: Optional[str] = None,
                                              filters: Optional[Sequence[GetFileStorageObjectStorageLinksFilter]] = None,
                                              id: Optional[str] = None,
                                              lustre_file_system_id: Optional[str] = None,
                                              state: Optional[str] = None,
                                              opts: Optional[InvokeOptions] = None) -> GetFileStorageObjectStorageLinksResult
    def get_file_storage_object_storage_links_output(availability_domain: Optional[pulumi.Input[str]] = None,
                                              compartment_id: Optional[pulumi.Input[str]] = None,
                                              display_name: Optional[pulumi.Input[str]] = None,
                                              filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetFileStorageObjectStorageLinksFilterArgs]]]] = None,
                                              id: Optional[pulumi.Input[str]] = None,
                                              lustre_file_system_id: Optional[pulumi.Input[str]] = None,
                                              state: Optional[pulumi.Input[str]] = None,
                                              opts: Optional[InvokeOptions] = None) -> Output[GetFileStorageObjectStorageLinksResult]
    func GetFileStorageObjectStorageLinks(ctx *Context, args *GetFileStorageObjectStorageLinksArgs, opts ...InvokeOption) (*GetFileStorageObjectStorageLinksResult, error)
    func GetFileStorageObjectStorageLinksOutput(ctx *Context, args *GetFileStorageObjectStorageLinksOutputArgs, opts ...InvokeOption) GetFileStorageObjectStorageLinksResultOutput

    > Note: This function is named GetFileStorageObjectStorageLinks in the Go SDK.

    public static class GetFileStorageObjectStorageLinks 
    {
        public static Task<GetFileStorageObjectStorageLinksResult> InvokeAsync(GetFileStorageObjectStorageLinksArgs args, InvokeOptions? opts = null)
        public static Output<GetFileStorageObjectStorageLinksResult> Invoke(GetFileStorageObjectStorageLinksInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetFileStorageObjectStorageLinksResult> getFileStorageObjectStorageLinks(GetFileStorageObjectStorageLinksArgs args, InvokeOptions options)
    public static Output<GetFileStorageObjectStorageLinksResult> getFileStorageObjectStorageLinks(GetFileStorageObjectStorageLinksArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:Lustre/getFileStorageObjectStorageLinks:getFileStorageObjectStorageLinks
      arguments:
        # arguments dictionary

    The following arguments are supported:

    AvailabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    CompartmentId string
    The OCID of the compartment in which to list resources.
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    Filters List<GetFileStorageObjectStorageLinksFilter>
    Id string
    The OCID of the Object Storage link.
    LustreFileSystemId string
    The OCID of the Lustre file system.
    State string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    AvailabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    CompartmentId string
    The OCID of the compartment in which to list resources.
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    Filters []GetFileStorageObjectStorageLinksFilter
    Id string
    The OCID of the Object Storage link.
    LustreFileSystemId string
    The OCID of the Lustre file system.
    State string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    availabilityDomain String
    The name of the availability domain. Example: Uocm:PHX-AD-1
    compartmentId String
    The OCID of the compartment in which to list resources.
    displayName String
    A filter to return only resources that match the given display name exactly.
    filters List<GetFileStorageObjectStorageLinksFilter>
    id String
    The OCID of the Object Storage link.
    lustreFileSystemId String
    The OCID of the Lustre file system.
    state String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    availabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    compartmentId string
    The OCID of the compartment in which to list resources.
    displayName string
    A filter to return only resources that match the given display name exactly.
    filters GetFileStorageObjectStorageLinksFilter[]
    id string
    The OCID of the Object Storage link.
    lustreFileSystemId string
    The OCID of the Lustre file system.
    state string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    availability_domain str
    The name of the availability domain. Example: Uocm:PHX-AD-1
    compartment_id str
    The OCID of the compartment in which to list resources.
    display_name str
    A filter to return only resources that match the given display name exactly.
    filters Sequence[GetFileStorageObjectStorageLinksFilter]
    id str
    The OCID of the Object Storage link.
    lustre_file_system_id str
    The OCID of the Lustre file system.
    state str
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    availabilityDomain String
    The name of the availability domain. Example: Uocm:PHX-AD-1
    compartmentId String
    The OCID of the compartment in which to list resources.
    displayName String
    A filter to return only resources that match the given display name exactly.
    filters List<Property Map>
    id String
    The OCID of the Object Storage link.
    lustreFileSystemId String
    The OCID of the Lustre file system.
    state String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.

    getFileStorageObjectStorageLinks Result

    The following output properties are available:

    ObjectStorageLinkCollections List<GetFileStorageObjectStorageLinksObjectStorageLinkCollection>
    The list of object_storage_link_collection.
    AvailabilityDomain string
    The availability domain the file system is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1
    CompartmentId string
    The OCID of the compartment that contains the Lustre file system.
    DisplayName string
    A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My Object Storage Link
    Filters List<GetFileStorageObjectStorageLinksFilter>
    Id string
    The OCID of the ObjectStorageLink.
    LustreFileSystemId string
    The OCID of the associated Lustre file system.
    State string
    The current state of the Object Storage link.
    ObjectStorageLinkCollections []GetFileStorageObjectStorageLinksObjectStorageLinkCollection
    The list of object_storage_link_collection.
    AvailabilityDomain string
    The availability domain the file system is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1
    CompartmentId string
    The OCID of the compartment that contains the Lustre file system.
    DisplayName string
    A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My Object Storage Link
    Filters []GetFileStorageObjectStorageLinksFilter
    Id string
    The OCID of the ObjectStorageLink.
    LustreFileSystemId string
    The OCID of the associated Lustre file system.
    State string
    The current state of the Object Storage link.
    objectStorageLinkCollections List<GetFileStorageObjectStorageLinksObjectStorageLinkCollection>
    The list of object_storage_link_collection.
    availabilityDomain String
    The availability domain the file system is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1
    compartmentId String
    The OCID of the compartment that contains the Lustre file system.
    displayName String
    A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My Object Storage Link
    filters List<GetFileStorageObjectStorageLinksFilter>
    id String
    The OCID of the ObjectStorageLink.
    lustreFileSystemId String
    The OCID of the associated Lustre file system.
    state String
    The current state of the Object Storage link.
    objectStorageLinkCollections GetFileStorageObjectStorageLinksObjectStorageLinkCollection[]
    The list of object_storage_link_collection.
    availabilityDomain string
    The availability domain the file system is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1
    compartmentId string
    The OCID of the compartment that contains the Lustre file system.
    displayName string
    A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My Object Storage Link
    filters GetFileStorageObjectStorageLinksFilter[]
    id string
    The OCID of the ObjectStorageLink.
    lustreFileSystemId string
    The OCID of the associated Lustre file system.
    state string
    The current state of the Object Storage link.
    object_storage_link_collections Sequence[GetFileStorageObjectStorageLinksObjectStorageLinkCollection]
    The list of object_storage_link_collection.
    availability_domain str
    The availability domain the file system is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1
    compartment_id str
    The OCID of the compartment that contains the Lustre file system.
    display_name str
    A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My Object Storage Link
    filters Sequence[GetFileStorageObjectStorageLinksFilter]
    id str
    The OCID of the ObjectStorageLink.
    lustre_file_system_id str
    The OCID of the associated Lustre file system.
    state str
    The current state of the Object Storage link.
    objectStorageLinkCollections List<Property Map>
    The list of object_storage_link_collection.
    availabilityDomain String
    The availability domain the file system is in. May be unset as a blank or NULL value. Example: Uocm:PHX-AD-1
    compartmentId String
    The OCID of the compartment that contains the Lustre file system.
    displayName String
    A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: My Object Storage Link
    filters List<Property Map>
    id String
    The OCID of the ObjectStorageLink.
    lustreFileSystemId String
    The OCID of the associated Lustre file system.
    state String
    The current state of the Object Storage link.

    Supporting Types

    GetFileStorageObjectStorageLinksFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    GetFileStorageObjectStorageLinksObjectStorageLinkCollection

    GetFileStorageObjectStorageLinksObjectStorageLinkCollectionItem

    AvailabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    CompartmentId string
    The OCID of the compartment in which to list resources.
    CurrentJobId string
    The OCID of currently running sync job. If no sync job is running, then this will be empty.
    DefinedTags Dictionary<string, string>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    FileSystemPath string
    The path in the Lustre file system used for this Object Storage link. Example: myFileSystem/mount/myDirectory
    FreeformTags Dictionary<string, string>
    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"}
    Id string
    The OCID of the Object Storage link.
    IsOverwrite bool
    The flag is an identifier to tell whether the job run has overwrite enabled. If isOverwrite is false, the file to be imported or exported will be skipped if it already exists. If isOverwrite is true, the file to be imported or exported will be overwritten if it already exists.
    LastJobId string
    The OCID of last succeeded sync job. If no sync job has previously run, then this will be empty.
    LifecycleDetails string
    A message that describes the current state of the Object Storage link in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    LustreFileSystemId string
    The OCID of the Lustre file system.
    ObjectStoragePrefix string
    The Object Storage namespace and bucket name, including optional object prefix string, to use as the source for imports or destination for exports. Example: objectStorageNamespace:/bucketName/optionalFolder/optionalPrefix
    StartExportToObjectTrigger int
    StartImportFromObjectTrigger int
    State string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    StopExportToObjectTrigger int
    StopImportFromObjectTrigger int
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example: 2024-04-25T21:10:29.600Z
    TimeUpdated string
    The date and time the Object Storage link was updated, in the format defined by RFC 3339. Example: 2024-04-25T21:10:29.600Z
    AvailabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    CompartmentId string
    The OCID of the compartment in which to list resources.
    CurrentJobId string
    The OCID of currently running sync job. If no sync job is running, then this will be empty.
    DefinedTags map[string]string
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    FileSystemPath string
    The path in the Lustre file system used for this Object Storage link. Example: myFileSystem/mount/myDirectory
    FreeformTags map[string]string
    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"}
    Id string
    The OCID of the Object Storage link.
    IsOverwrite bool
    The flag is an identifier to tell whether the job run has overwrite enabled. If isOverwrite is false, the file to be imported or exported will be skipped if it already exists. If isOverwrite is true, the file to be imported or exported will be overwritten if it already exists.
    LastJobId string
    The OCID of last succeeded sync job. If no sync job has previously run, then this will be empty.
    LifecycleDetails string
    A message that describes the current state of the Object Storage link in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    LustreFileSystemId string
    The OCID of the Lustre file system.
    ObjectStoragePrefix string
    The Object Storage namespace and bucket name, including optional object prefix string, to use as the source for imports or destination for exports. Example: objectStorageNamespace:/bucketName/optionalFolder/optionalPrefix
    StartExportToObjectTrigger int
    StartImportFromObjectTrigger int
    State string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    StopExportToObjectTrigger int
    StopImportFromObjectTrigger int
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example: 2024-04-25T21:10:29.600Z
    TimeUpdated string
    The date and time the Object Storage link was updated, in the format defined by RFC 3339. Example: 2024-04-25T21:10:29.600Z
    availabilityDomain String
    The name of the availability domain. Example: Uocm:PHX-AD-1
    compartmentId String
    The OCID of the compartment in which to list resources.
    currentJobId String
    The OCID of currently running sync job. If no sync job is running, then this will be empty.
    definedTags Map<String,String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    A filter to return only resources that match the given display name exactly.
    fileSystemPath String
    The path in the Lustre file system used for this Object Storage link. Example: myFileSystem/mount/myDirectory
    freeformTags Map<String,String>
    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"}
    id String
    The OCID of the Object Storage link.
    isOverwrite Boolean
    The flag is an identifier to tell whether the job run has overwrite enabled. If isOverwrite is false, the file to be imported or exported will be skipped if it already exists. If isOverwrite is true, the file to be imported or exported will be overwritten if it already exists.
    lastJobId String
    The OCID of last succeeded sync job. If no sync job has previously run, then this will be empty.
    lifecycleDetails String
    A message that describes the current state of the Object Storage link in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    lustreFileSystemId String
    The OCID of the Lustre file system.
    objectStoragePrefix String
    The Object Storage namespace and bucket name, including optional object prefix string, to use as the source for imports or destination for exports. Example: objectStorageNamespace:/bucketName/optionalFolder/optionalPrefix
    startExportToObjectTrigger Integer
    startImportFromObjectTrigger Integer
    state String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    stopExportToObjectTrigger Integer
    stopImportFromObjectTrigger Integer
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example: 2024-04-25T21:10:29.600Z
    timeUpdated String
    The date and time the Object Storage link was updated, in the format defined by RFC 3339. Example: 2024-04-25T21:10:29.600Z
    availabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    compartmentId string
    The OCID of the compartment in which to list resources.
    currentJobId string
    The OCID of currently running sync job. If no sync job is running, then this will be empty.
    definedTags {[key: string]: string}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName string
    A filter to return only resources that match the given display name exactly.
    fileSystemPath string
    The path in the Lustre file system used for this Object Storage link. Example: myFileSystem/mount/myDirectory
    freeformTags {[key: string]: string}
    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"}
    id string
    The OCID of the Object Storage link.
    isOverwrite boolean
    The flag is an identifier to tell whether the job run has overwrite enabled. If isOverwrite is false, the file to be imported or exported will be skipped if it already exists. If isOverwrite is true, the file to be imported or exported will be overwritten if it already exists.
    lastJobId string
    The OCID of last succeeded sync job. If no sync job has previously run, then this will be empty.
    lifecycleDetails string
    A message that describes the current state of the Object Storage link in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    lustreFileSystemId string
    The OCID of the Lustre file system.
    objectStoragePrefix string
    The Object Storage namespace and bucket name, including optional object prefix string, to use as the source for imports or destination for exports. Example: objectStorageNamespace:/bucketName/optionalFolder/optionalPrefix
    startExportToObjectTrigger number
    startImportFromObjectTrigger number
    state string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    stopExportToObjectTrigger number
    stopImportFromObjectTrigger number
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example: 2024-04-25T21:10:29.600Z
    timeUpdated string
    The date and time the Object Storage link was updated, in the format defined by RFC 3339. Example: 2024-04-25T21:10:29.600Z
    availability_domain str
    The name of the availability domain. Example: Uocm:PHX-AD-1
    compartment_id str
    The OCID of the compartment in which to list resources.
    current_job_id str
    The OCID of currently running sync job. If no sync job is running, then this will be empty.
    defined_tags Mapping[str, str]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    display_name str
    A filter to return only resources that match the given display name exactly.
    file_system_path str
    The path in the Lustre file system used for this Object Storage link. Example: myFileSystem/mount/myDirectory
    freeform_tags Mapping[str, str]
    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"}
    id str
    The OCID of the Object Storage link.
    is_overwrite bool
    The flag is an identifier to tell whether the job run has overwrite enabled. If isOverwrite is false, the file to be imported or exported will be skipped if it already exists. If isOverwrite is true, the file to be imported or exported will be overwritten if it already exists.
    last_job_id str
    The OCID of last succeeded sync job. If no sync job has previously run, then this will be empty.
    lifecycle_details str
    A message that describes the current state of the Object Storage link in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    lustre_file_system_id str
    The OCID of the Lustre file system.
    object_storage_prefix str
    The Object Storage namespace and bucket name, including optional object prefix string, to use as the source for imports or destination for exports. Example: objectStorageNamespace:/bucketName/optionalFolder/optionalPrefix
    start_export_to_object_trigger int
    start_import_from_object_trigger int
    state str
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    stop_export_to_object_trigger int
    stop_import_from_object_trigger int
    system_tags Mapping[str, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example: 2024-04-25T21:10:29.600Z
    time_updated str
    The date and time the Object Storage link was updated, in the format defined by RFC 3339. Example: 2024-04-25T21:10:29.600Z
    availabilityDomain String
    The name of the availability domain. Example: Uocm:PHX-AD-1
    compartmentId String
    The OCID of the compartment in which to list resources.
    currentJobId String
    The OCID of currently running sync job. If no sync job is running, then this will be empty.
    definedTags Map<String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    A filter to return only resources that match the given display name exactly.
    fileSystemPath String
    The path in the Lustre file system used for this Object Storage link. Example: myFileSystem/mount/myDirectory
    freeformTags Map<String>
    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"}
    id String
    The OCID of the Object Storage link.
    isOverwrite Boolean
    The flag is an identifier to tell whether the job run has overwrite enabled. If isOverwrite is false, the file to be imported or exported will be skipped if it already exists. If isOverwrite is true, the file to be imported or exported will be overwritten if it already exists.
    lastJobId String
    The OCID of last succeeded sync job. If no sync job has previously run, then this will be empty.
    lifecycleDetails String
    A message that describes the current state of the Object Storage link in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    lustreFileSystemId String
    The OCID of the Lustre file system.
    objectStoragePrefix String
    The Object Storage namespace and bucket name, including optional object prefix string, to use as the source for imports or destination for exports. Example: objectStorageNamespace:/bucketName/optionalFolder/optionalPrefix
    startExportToObjectTrigger Number
    startImportFromObjectTrigger Number
    state String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    stopExportToObjectTrigger Number
    stopImportFromObjectTrigger Number
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the Lustre file system was created, expressed in RFC 3339 timestamp format. Example: 2024-04-25T21:10:29.600Z
    timeUpdated String
    The date and time the Object Storage link was updated, in the format defined by RFC 3339. Example: 2024-04-25T21:10:29.600Z

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate