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 Compute Gpu Memory Fabrics in Oracle Cloud Infrastructure Core service. * * Lists the compute GPU memory fabrics that match the specified criteria and compartmentId. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testComputeGpuMemoryFabrics = oci.core.getComputeGpuMemoryFabrics({ * compartmentId: compartmentId, * availabilityDomain: computeGpuMemoryFabricAvailabilityDomain, * computeGpuMemoryFabricHealth: computeGpuMemoryFabricComputeGpuMemoryFabricHealth, * computeGpuMemoryFabricId: testComputeGpuMemoryFabric.id, * computeGpuMemoryFabricLifecycleState: computeGpuMemoryFabricComputeGpuMemoryFabricLifecycleState, * computeHpcIslandId: testComputeHpcIsland.id, * computeNetworkBlockId: testComputeNetworkBlock.id, * displayName: computeGpuMemoryFabricDisplayName, * }); * ``` */ export declare function getComputeGpuMemoryFabrics(args: GetComputeGpuMemoryFabricsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getComputeGpuMemoryFabrics. */ export interface GetComputeGpuMemoryFabricsArgs { /** * 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. */ compartmentId: string; /** * A filter to return ComputeGpuMemoryFabricSummary resources that match the given fabric health. */ computeGpuMemoryFabricHealth?: string; /** * A filter to return only the listings that matches the given GPU memory fabric id. */ computeGpuMemoryFabricId?: string; /** * A filter to return ComputeGpuMemoryFabricSummary resources that match the given lifecycle state. */ computeGpuMemoryFabricLifecycleState?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute HPC island. */ computeHpcIslandId?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute network block. */ computeNetworkBlockId?: string; /** * A filter to return only resources that match the given display name exactly. */ displayName?: string; filters?: inputs.Core.GetComputeGpuMemoryFabricsFilter[]; } /** * A collection of values returned by getComputeGpuMemoryFabrics. */ export interface GetComputeGpuMemoryFabricsResult { readonly availabilityDomain?: 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; /** * The list of compute_gpu_memory_fabric_collection. */ readonly computeGpuMemoryFabricCollections: outputs.Core.GetComputeGpuMemoryFabricsComputeGpuMemoryFabricCollection[]; readonly computeGpuMemoryFabricHealth?: string; readonly computeGpuMemoryFabricId?: string; readonly computeGpuMemoryFabricLifecycleState?: 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 Network Block */ readonly computeNetworkBlockId?: string; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ readonly displayName?: string; readonly filters?: outputs.Core.GetComputeGpuMemoryFabricsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of Compute Gpu Memory Fabrics in Oracle Cloud Infrastructure Core service. * * Lists the compute GPU memory fabrics that match the specified criteria and compartmentId. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testComputeGpuMemoryFabrics = oci.core.getComputeGpuMemoryFabrics({ * compartmentId: compartmentId, * availabilityDomain: computeGpuMemoryFabricAvailabilityDomain, * computeGpuMemoryFabricHealth: computeGpuMemoryFabricComputeGpuMemoryFabricHealth, * computeGpuMemoryFabricId: testComputeGpuMemoryFabric.id, * computeGpuMemoryFabricLifecycleState: computeGpuMemoryFabricComputeGpuMemoryFabricLifecycleState, * computeHpcIslandId: testComputeHpcIsland.id, * computeNetworkBlockId: testComputeNetworkBlock.id, * displayName: computeGpuMemoryFabricDisplayName, * }); * ``` */ export declare function getComputeGpuMemoryFabricsOutput(args: GetComputeGpuMemoryFabricsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getComputeGpuMemoryFabrics. */ export interface GetComputeGpuMemoryFabricsOutputArgs { /** * 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. */ compartmentId: pulumi.Input; /** * A filter to return ComputeGpuMemoryFabricSummary resources that match the given fabric health. */ computeGpuMemoryFabricHealth?: pulumi.Input; /** * A filter to return only the listings that matches the given GPU memory fabric id. */ computeGpuMemoryFabricId?: pulumi.Input; /** * A filter to return ComputeGpuMemoryFabricSummary resources that match the given lifecycle state. */ computeGpuMemoryFabricLifecycleState?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute HPC island. */ computeHpcIslandId?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute network block. */ computeNetworkBlockId?: pulumi.Input; /** * A filter to return only resources that match the given display name exactly. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getComputeGpuMemoryFabrics.d.ts.map