import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Advanced Cluster File System resource in Oracle Cloud Infrastructure Database service. * * Gets information about the specified advanced cluster file systems. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAdvancedClusterFileSystem = oci.database.getAdvancedClusterFileSystem({ * advancedClusterFileSystemId: testAdvancedClusterFileSystemOciDatabaseAdvancedClusterFileSystem.id, * }); * ``` */ export declare function getAdvancedClusterFileSystem(args: GetAdvancedClusterFileSystemArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAdvancedClusterFileSystem. */ export interface GetAdvancedClusterFileSystemArgs { /** * The advanced cluster file system Id [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ advancedClusterFileSystemId: string; } /** * A collection of values returned by getAdvancedClusterFileSystem. */ export interface GetAdvancedClusterFileSystemResult { readonly advancedClusterFileSystemId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). */ readonly definedTags: { [key: string]: string; }; /** * Description of the advanced cluster file system. */ readonly description: 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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the advanced cluster file system. */ readonly id: string; /** * True if the file system is mounted on all VMs within VM Cluster. */ readonly isMounted: boolean; /** * Additional information about the current lifecycle state. */ readonly lifecycleDetails: string; /** * The mount point of file system. */ readonly mountPoint: string; /** * The user-friendly name for the Advanced cluster file system. The file system name is unique for a cluster. */ readonly name: string; /** * The current state of the advanced cluster file system. Valid states are CREATING, AVAILABLE, UPDATING, FAILED, DELETED. */ readonly state: string; /** * The total storage allocated for advanced cluster file system in GBs. */ readonly storageInGbs: number; /** * System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). */ readonly systemTags: { [key: string]: string; }; /** * The date and time the advanced cluster file system was created. */ readonly timeCreated: string; /** * The last date and time that the advanced cluster file system was updated. */ readonly timeUpdated: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys. */ readonly vaultId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM cluster. */ readonly vmClusterId: string; } /** * This data source provides details about a specific Advanced Cluster File System resource in Oracle Cloud Infrastructure Database service. * * Gets information about the specified advanced cluster file systems. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAdvancedClusterFileSystem = oci.database.getAdvancedClusterFileSystem({ * advancedClusterFileSystemId: testAdvancedClusterFileSystemOciDatabaseAdvancedClusterFileSystem.id, * }); * ``` */ export declare function getAdvancedClusterFileSystemOutput(args: GetAdvancedClusterFileSystemOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAdvancedClusterFileSystem. */ export interface GetAdvancedClusterFileSystemOutputArgs { /** * The advanced cluster file system Id [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ advancedClusterFileSystemId: pulumi.Input; } //# sourceMappingURL=getAdvancedClusterFileSystem.d.ts.map