import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * 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 * * ```typescript * 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, * }); * ``` */ export declare function getFileStorageObjectStorageLinks(args?: GetFileStorageObjectStorageLinksArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getFileStorageObjectStorageLinks. */ export interface GetFileStorageObjectStorageLinksArgs { /** * The name of the availability domain. Example: `Uocm:PHX-AD-1` */ availabilityDomain?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId?: string; /** * A filter to return only resources that match the given display name exactly. */ displayName?: string; filters?: inputs.Lustre.GetFileStorageObjectStorageLinksFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Object Storage link. */ id?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Lustre file system. */ lustreFileSystemId?: string; /** * A filter to return only resources that match the given lifecycle state. The state value is case-insensitive. */ state?: string; } /** * A collection of values returned by getFileStorageObjectStorageLinks. */ export interface GetFileStorageObjectStorageLinksResult { /** * The availability domain the file system is in. May be unset as a blank or NULL value. Example: `Uocm:PHX-AD-1` */ readonly availabilityDomain?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the Lustre file system. */ readonly compartmentId?: 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` */ readonly displayName?: string; readonly filters?: outputs.Lustre.GetFileStorageObjectStorageLinksFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the ObjectStorageLink. */ readonly id?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the associated Lustre file system. */ readonly lustreFileSystemId?: string; /** * The list of object_storage_link_collection. */ readonly objectStorageLinkCollections: outputs.Lustre.GetFileStorageObjectStorageLinksObjectStorageLinkCollection[]; /** * The current state of the Object Storage link. */ readonly state?: string; } /** * 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 * * ```typescript * 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, * }); * ``` */ export declare function getFileStorageObjectStorageLinksOutput(args?: GetFileStorageObjectStorageLinksOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getFileStorageObjectStorageLinks. */ export interface GetFileStorageObjectStorageLinksOutputArgs { /** * The name of the availability domain. Example: `Uocm:PHX-AD-1` */ availabilityDomain?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId?: pulumi.Input; /** * A filter to return only resources that match the given display name exactly. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Object Storage link. */ id?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Lustre file system. */ lustreFileSystemId?: pulumi.Input; /** * A filter to return only resources that match the given lifecycle state. The state value is case-insensitive. */ state?: pulumi.Input; } //# sourceMappingURL=getFileStorageObjectStorageLinks.d.ts.map