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 Lustre File Systems in Oracle Cloud Infrastructure Lustre File Storage service. * * Gets a list of Lustre file systems. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLustreFileSystems = oci.lustre.getFileStorageLustreFileSystems({ * availabilityDomain: lustreFileSystemAvailabilityDomain, * compartmentId: compartmentId, * displayName: lustreFileSystemDisplayName, * id: lustreFileSystemId, * state: lustreFileSystemState, * }); * ``` */ export declare function getFileStorageLustreFileSystems(args?: GetFileStorageLustreFileSystemsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getFileStorageLustreFileSystems. */ export interface GetFileStorageLustreFileSystemsArgs { /** * 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.GetFileStorageLustreFileSystemsFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Lustre file system. */ id?: 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 getFileStorageLustreFileSystems. */ export interface GetFileStorageLustreFileSystemsResult { /** * 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 Lustre file system` */ readonly displayName?: string; readonly filters?: outputs.Lustre.GetFileStorageLustreFileSystemsFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Lustre file system. */ readonly id?: string; /** * The list of lustre_file_system_collection. */ readonly lustreFileSystemCollections: outputs.Lustre.GetFileStorageLustreFileSystemsLustreFileSystemCollection[]; /** * The current state of the Lustre file system. */ readonly state?: string; } /** * This data source provides the list of Lustre File Systems in Oracle Cloud Infrastructure Lustre File Storage service. * * Gets a list of Lustre file systems. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLustreFileSystems = oci.lustre.getFileStorageLustreFileSystems({ * availabilityDomain: lustreFileSystemAvailabilityDomain, * compartmentId: compartmentId, * displayName: lustreFileSystemDisplayName, * id: lustreFileSystemId, * state: lustreFileSystemState, * }); * ``` */ export declare function getFileStorageLustreFileSystemsOutput(args?: GetFileStorageLustreFileSystemsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getFileStorageLustreFileSystems. */ export interface GetFileStorageLustreFileSystemsOutputArgs { /** * 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 Lustre file system. */ id?: pulumi.Input; /** * A filter to return only resources that match the given lifecycle state. The state value is case-insensitive. */ state?: pulumi.Input; } //# sourceMappingURL=getFileStorageLustreFileSystems.d.ts.map