import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Compute Gpu Memory Fabric resource in Oracle Cloud Infrastructure Core service. * * Gets information about the specified compute GPU memory fabric * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testComputeGpuMemoryFabric = oci.core.getComputeGpuMemoryFabric({ * computeGpuMemoryFabricId: testComputeGpuMemoryFabricOciCoreComputeGpuMemoryFabric.id, * }); * ``` */ export declare function getComputeGpuMemoryFabric(args: GetComputeGpuMemoryFabricArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getComputeGpuMemoryFabric. */ export interface GetComputeGpuMemoryFabricArgs { /** * The OCID of the compute GPU memory fabric. */ computeGpuMemoryFabricId: string; } /** * A collection of values returned by getComputeGpuMemoryFabric. */ export interface GetComputeGpuMemoryFabricResult { /** * Additional data that can be exposed to the customer. Right now it will include the switch tray ids. */ readonly additionalData: { [key: string]: string; }; /** * The total number of available bare metal hosts located in this compute GPU memory fabric. */ readonly availableHostCount: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the compartment. This should always be the root compartment. */ readonly compartmentId: string; /** * List of GPU memory cluster OCIDs within this GPU memory fabric. */ readonly computeGpuMemoryClusters: string[]; readonly computeGpuMemoryFabricId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique HPC Island */ readonly computeHpcIslandId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique Local Block */ readonly computeLocalBlockId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for Customer-unique Network Block */ readonly computeNetworkBlockId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for current firmware bundle */ readonly currentFirmwareBundleId: 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). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ readonly displayName: string; /** * The health state of the GPU memory fabric */ readonly fabricHealth: string; /** * The reason for updating firmware bundle version of the GPU memory fabric. */ readonly firmwareUpdateReason: string; /** * The state of Memory Fabric Firmware update */ readonly firmwareUpdateState: 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 total number of healthy bare metal hosts located in this compute GPU memory fabric. */ readonly healthyHostCount: string; /** * The host platform identifier used for bundle queries */ readonly hostPlatformName: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the Customer-unique GPU memory fabric */ readonly id: string; /** * The preference object specified by customer. Contains customerDesiredFirmwareBundleId, fabricRecycleLevel. */ readonly memoryFabricPreferences: outputs.Core.GetComputeGpuMemoryFabricMemoryFabricPreference[]; /** * The lifecycle state of the GPU memory fabric */ readonly state: string; /** * The switch platform identifier used for bundle queries */ readonly switchPlatformName: string; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for targeted firmware bundle */ readonly targetFirmwareBundleId: string; /** * The date and time that the compute GPU memory fabric record was created, in the format defined by [RFC3339] (https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeCreated: string; /** * The total number of bare metal hosts located in this compute GPU memory fabric. */ readonly totalHostCount: string; } /** * This data source provides details about a specific Compute Gpu Memory Fabric resource in Oracle Cloud Infrastructure Core service. * * Gets information about the specified compute GPU memory fabric * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testComputeGpuMemoryFabric = oci.core.getComputeGpuMemoryFabric({ * computeGpuMemoryFabricId: testComputeGpuMemoryFabricOciCoreComputeGpuMemoryFabric.id, * }); * ``` */ export declare function getComputeGpuMemoryFabricOutput(args: GetComputeGpuMemoryFabricOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getComputeGpuMemoryFabric. */ export interface GetComputeGpuMemoryFabricOutputArgs { /** * The OCID of the compute GPU memory fabric. */ computeGpuMemoryFabricId: pulumi.Input; } //# sourceMappingURL=getComputeGpuMemoryFabric.d.ts.map