Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.Core.getComputeGpuMemoryClusters
Explore with Pulumi AI
This data source provides the list of Compute Gpu Memory Clusters in Oracle Cloud Infrastructure Core service.
List all of the compute GPU memory clusters.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testComputeGpuMemoryClusters = oci.Core.getComputeGpuMemoryClusters({
    compartmentId: compartmentId,
    availabilityDomain: computeGpuMemoryClusterAvailabilityDomain,
    computeClusterId: testComputeCluster.id,
    computeGpuMemoryClusterId: testComputeGpuMemoryCluster.id,
    displayName: computeGpuMemoryClusterDisplayName,
});
import pulumi
import pulumi_oci as oci
test_compute_gpu_memory_clusters = oci.Core.get_compute_gpu_memory_clusters(compartment_id=compartment_id,
    availability_domain=compute_gpu_memory_cluster_availability_domain,
    compute_cluster_id=test_compute_cluster["id"],
    compute_gpu_memory_cluster_id=test_compute_gpu_memory_cluster["id"],
    display_name=compute_gpu_memory_cluster_display_name)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/core"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := core.GetComputeGpuMemoryClusters(ctx, &core.GetComputeGpuMemoryClustersArgs{
			CompartmentId:             compartmentId,
			AvailabilityDomain:        pulumi.StringRef(computeGpuMemoryClusterAvailabilityDomain),
			ComputeClusterId:          pulumi.StringRef(testComputeCluster.Id),
			ComputeGpuMemoryClusterId: pulumi.StringRef(testComputeGpuMemoryCluster.Id),
			DisplayName:               pulumi.StringRef(computeGpuMemoryClusterDisplayName),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() => 
{
    var testComputeGpuMemoryClusters = Oci.Core.GetComputeGpuMemoryClusters.Invoke(new()
    {
        CompartmentId = compartmentId,
        AvailabilityDomain = computeGpuMemoryClusterAvailabilityDomain,
        ComputeClusterId = testComputeCluster.Id,
        ComputeGpuMemoryClusterId = testComputeGpuMemoryCluster.Id,
        DisplayName = computeGpuMemoryClusterDisplayName,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Core.CoreFunctions;
import com.pulumi.oci.Core.inputs.GetComputeGpuMemoryClustersArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        final var testComputeGpuMemoryClusters = CoreFunctions.getComputeGpuMemoryClusters(GetComputeGpuMemoryClustersArgs.builder()
            .compartmentId(compartmentId)
            .availabilityDomain(computeGpuMemoryClusterAvailabilityDomain)
            .computeClusterId(testComputeCluster.id())
            .computeGpuMemoryClusterId(testComputeGpuMemoryCluster.id())
            .displayName(computeGpuMemoryClusterDisplayName)
            .build());
    }
}
variables:
  testComputeGpuMemoryClusters:
    fn::invoke:
      function: oci:Core:getComputeGpuMemoryClusters
      arguments:
        compartmentId: ${compartmentId}
        availabilityDomain: ${computeGpuMemoryClusterAvailabilityDomain}
        computeClusterId: ${testComputeCluster.id}
        computeGpuMemoryClusterId: ${testComputeGpuMemoryCluster.id}
        displayName: ${computeGpuMemoryClusterDisplayName}
Using getComputeGpuMemoryClusters
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getComputeGpuMemoryClusters(args: GetComputeGpuMemoryClustersArgs, opts?: InvokeOptions): Promise<GetComputeGpuMemoryClustersResult>
function getComputeGpuMemoryClustersOutput(args: GetComputeGpuMemoryClustersOutputArgs, opts?: InvokeOptions): Output<GetComputeGpuMemoryClustersResult>def get_compute_gpu_memory_clusters(availability_domain: Optional[str] = None,
                                    compartment_id: Optional[str] = None,
                                    compute_cluster_id: Optional[str] = None,
                                    compute_gpu_memory_cluster_id: Optional[str] = None,
                                    display_name: Optional[str] = None,
                                    filters: Optional[Sequence[GetComputeGpuMemoryClustersFilter]] = None,
                                    opts: Optional[InvokeOptions] = None) -> GetComputeGpuMemoryClustersResult
def get_compute_gpu_memory_clusters_output(availability_domain: Optional[pulumi.Input[str]] = None,
                                    compartment_id: Optional[pulumi.Input[str]] = None,
                                    compute_cluster_id: Optional[pulumi.Input[str]] = None,
                                    compute_gpu_memory_cluster_id: Optional[pulumi.Input[str]] = None,
                                    display_name: Optional[pulumi.Input[str]] = None,
                                    filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetComputeGpuMemoryClustersFilterArgs]]]] = None,
                                    opts: Optional[InvokeOptions] = None) -> Output[GetComputeGpuMemoryClustersResult]func GetComputeGpuMemoryClusters(ctx *Context, args *GetComputeGpuMemoryClustersArgs, opts ...InvokeOption) (*GetComputeGpuMemoryClustersResult, error)
func GetComputeGpuMemoryClustersOutput(ctx *Context, args *GetComputeGpuMemoryClustersOutputArgs, opts ...InvokeOption) GetComputeGpuMemoryClustersResultOutput> Note: This function is named GetComputeGpuMemoryClusters in the Go SDK.
public static class GetComputeGpuMemoryClusters 
{
    public static Task<GetComputeGpuMemoryClustersResult> InvokeAsync(GetComputeGpuMemoryClustersArgs args, InvokeOptions? opts = null)
    public static Output<GetComputeGpuMemoryClustersResult> Invoke(GetComputeGpuMemoryClustersInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetComputeGpuMemoryClustersResult> getComputeGpuMemoryClusters(GetComputeGpuMemoryClustersArgs args, InvokeOptions options)
public static Output<GetComputeGpuMemoryClustersResult> getComputeGpuMemoryClusters(GetComputeGpuMemoryClustersArgs args, InvokeOptions options)
fn::invoke:
  function: oci:Core/getComputeGpuMemoryClusters:getComputeGpuMemoryClusters
  arguments:
    # arguments dictionaryThe following arguments are supported:
- CompartmentId string
- The OCID of the compartment.
- AvailabilityDomain string
- The name of the availability domain. Example: Uocm:PHX-AD-1
- ComputeCluster stringId 
- The OCID of the compute cluster. A compute cluster is a remote direct memory access (RDMA) network group.
- ComputeGpu stringMemory Cluster Id 
- A filter to return only the listings that matches the given GPU memory cluster id.
- DisplayName string
- A filter to return only resources that match the given display name exactly.
- Filters
List<GetCompute Gpu Memory Clusters Filter> 
- CompartmentId string
- The OCID of the compartment.
- AvailabilityDomain string
- The name of the availability domain. Example: Uocm:PHX-AD-1
- ComputeCluster stringId 
- The OCID of the compute cluster. A compute cluster is a remote direct memory access (RDMA) network group.
- ComputeGpu stringMemory Cluster Id 
- A filter to return only the listings that matches the given GPU memory cluster id.
- DisplayName string
- A filter to return only resources that match the given display name exactly.
- Filters
[]GetCompute Gpu Memory Clusters Filter 
- compartmentId String
- The OCID of the compartment.
- availabilityDomain String
- The name of the availability domain. Example: Uocm:PHX-AD-1
- computeCluster StringId 
- The OCID of the compute cluster. A compute cluster is a remote direct memory access (RDMA) network group.
- computeGpu StringMemory Cluster Id 
- A filter to return only the listings that matches the given GPU memory cluster id.
- displayName String
- A filter to return only resources that match the given display name exactly.
- filters
List<GetCompute Gpu Memory Clusters Filter> 
- compartmentId string
- The OCID of the compartment.
- availabilityDomain string
- The name of the availability domain. Example: Uocm:PHX-AD-1
- computeCluster stringId 
- The OCID of the compute cluster. A compute cluster is a remote direct memory access (RDMA) network group.
- computeGpu stringMemory Cluster Id 
- A filter to return only the listings that matches the given GPU memory cluster id.
- displayName string
- A filter to return only resources that match the given display name exactly.
- filters
GetCompute Gpu Memory Clusters Filter[] 
- compartment_id str
- The OCID of the compartment.
- availability_domain str
- The name of the availability domain. Example: Uocm:PHX-AD-1
- compute_cluster_ strid 
- The OCID of the compute cluster. A compute cluster is a remote direct memory access (RDMA) network group.
- compute_gpu_ strmemory_ cluster_ id 
- A filter to return only the listings that matches the given GPU memory cluster id.
- display_name str
- A filter to return only resources that match the given display name exactly.
- filters
Sequence[GetCompute Gpu Memory Clusters Filter] 
- compartmentId String
- The OCID of the compartment.
- availabilityDomain String
- The name of the availability domain. Example: Uocm:PHX-AD-1
- computeCluster StringId 
- The OCID of the compute cluster. A compute cluster is a remote direct memory access (RDMA) network group.
- computeGpu StringMemory Cluster Id 
- A filter to return only the listings that matches the given GPU memory cluster id.
- displayName String
- A filter to return only resources that match the given display name exactly.
- filters List<Property Map>
getComputeGpuMemoryClusters Result
The following output properties are available:
- CompartmentId string
- The OCID of the compartment that contains the compute GPU memory cluster.
- ComputeGpu List<GetMemory Cluster Collections Compute Gpu Memory Clusters Compute Gpu Memory Cluster Collection> 
- The list of compute_gpu_memory_cluster_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- AvailabilityDomain string
- The availability domain of the GPU memory cluster.
- ComputeCluster stringId 
- The OCID of the compute cluster.
- ComputeGpu stringMemory Cluster Id 
- DisplayName string
- A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Filters
List<GetCompute Gpu Memory Clusters Filter> 
- CompartmentId string
- The OCID of the compartment that contains the compute GPU memory cluster.
- ComputeGpu []GetMemory Cluster Collections Compute Gpu Memory Clusters Compute Gpu Memory Cluster Collection 
- The list of compute_gpu_memory_cluster_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- AvailabilityDomain string
- The availability domain of the GPU memory cluster.
- ComputeCluster stringId 
- The OCID of the compute cluster.
- ComputeGpu stringMemory Cluster Id 
- DisplayName string
- A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Filters
[]GetCompute Gpu Memory Clusters Filter 
- compartmentId String
- The OCID of the compartment that contains the compute GPU memory cluster.
- computeGpu List<GetMemory Cluster Collections Compute Gpu Memory Clusters Compute Gpu Memory Cluster Collection> 
- The list of compute_gpu_memory_cluster_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- availabilityDomain String
- The availability domain of the GPU memory cluster.
- computeCluster StringId 
- The OCID of the compute cluster.
- computeGpu StringMemory Cluster Id 
- displayName String
- A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
List<GetCompute Gpu Memory Clusters Filter> 
- compartmentId string
- The OCID of the compartment that contains the compute GPU memory cluster.
- computeGpu GetMemory Cluster Collections Compute Gpu Memory Clusters Compute Gpu Memory Cluster Collection[] 
- The list of compute_gpu_memory_cluster_collection.
- id string
- The provider-assigned unique ID for this managed resource.
- availabilityDomain string
- The availability domain of the GPU memory cluster.
- computeCluster stringId 
- The OCID of the compute cluster.
- computeGpu stringMemory Cluster Id 
- displayName string
- A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
GetCompute Gpu Memory Clusters Filter[] 
- compartment_id str
- The OCID of the compartment that contains the compute GPU memory cluster.
- compute_gpu_ Sequence[Getmemory_ cluster_ collections Compute Gpu Memory Clusters Compute Gpu Memory Cluster Collection] 
- The list of compute_gpu_memory_cluster_collection.
- id str
- The provider-assigned unique ID for this managed resource.
- availability_domain str
- The availability domain of the GPU memory cluster.
- compute_cluster_ strid 
- The OCID of the compute cluster.
- compute_gpu_ strmemory_ cluster_ id 
- display_name str
- A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
Sequence[GetCompute Gpu Memory Clusters Filter] 
- compartmentId String
- The OCID of the compartment that contains the compute GPU memory cluster.
- computeGpu List<Property Map>Memory Cluster Collections 
- The list of compute_gpu_memory_cluster_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- availabilityDomain String
- The availability domain of the GPU memory cluster.
- computeCluster StringId 
- The OCID of the compute cluster.
- computeGpu StringMemory Cluster Id 
- displayName String
- A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters List<Property Map>
Supporting Types
GetComputeGpuMemoryClustersComputeGpuMemoryClusterCollection         
GetComputeGpuMemoryClustersComputeGpuMemoryClusterCollectionItem          
- AvailabilityDomain string
- The name of the availability domain. Example: Uocm:PHX-AD-1
- CompartmentId string
- The OCID of the compartment.
- ComputeCluster stringId 
- The OCID of the compute cluster. A compute cluster is a remote direct memory access (RDMA) network group.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- DisplayName string
- A filter to return only resources that match the given display name exactly.
- Dictionary<string, 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. Example: {"Department": "Finance"}
- GpuMemory stringFabric Id 
- The OCID of the GPU memory fabric.
- Id string
- The OCID for the Customer-unique GPU memory cluster
- InstanceConfiguration stringId 
- The OCID of the Instance Configuration used to source launch details for this instance.
- Size string
- The number of instances currently running in the GpuMemoryCluster
- State string
- The lifecycle state of the GPU memory cluster
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The date and time the GPU memory cluster was created. Example: 2016-09-15T21:10:29.600Z
- AvailabilityDomain string
- The name of the availability domain. Example: Uocm:PHX-AD-1
- CompartmentId string
- The OCID of the compartment.
- ComputeCluster stringId 
- The OCID of the compute cluster. A compute cluster is a remote direct memory access (RDMA) network group.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- DisplayName string
- A filter to return only resources that match the given display name exactly.
- map[string]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. Example: {"Department": "Finance"}
- GpuMemory stringFabric Id 
- The OCID of the GPU memory fabric.
- Id string
- The OCID for the Customer-unique GPU memory cluster
- InstanceConfiguration stringId 
- The OCID of the Instance Configuration used to source launch details for this instance.
- Size string
- The number of instances currently running in the GpuMemoryCluster
- State string
- The lifecycle state of the GPU memory cluster
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- TimeCreated string
- The date and time the GPU memory cluster was created. Example: 2016-09-15T21:10:29.600Z
- availabilityDomain String
- The name of the availability domain. Example: Uocm:PHX-AD-1
- compartmentId String
- The OCID of the compartment.
- computeCluster StringId 
- The OCID of the compute cluster. A compute cluster is a remote direct memory access (RDMA) network group.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- displayName String
- A filter to return only resources that match the given display name exactly.
- Map<String,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. Example: {"Department": "Finance"}
- gpuMemory StringFabric Id 
- The OCID of the GPU memory fabric.
- id String
- The OCID for the Customer-unique GPU memory cluster
- instanceConfiguration StringId 
- The OCID of the Instance Configuration used to source launch details for this instance.
- size String
- The number of instances currently running in the GpuMemoryCluster
- state String
- The lifecycle state of the GPU memory cluster
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The date and time the GPU memory cluster was created. Example: 2016-09-15T21:10:29.600Z
- availabilityDomain string
- The name of the availability domain. Example: Uocm:PHX-AD-1
- compartmentId string
- The OCID of the compartment.
- computeCluster stringId 
- The OCID of the compute cluster. A compute cluster is a remote direct memory access (RDMA) network group.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- displayName string
- A filter to return only resources that match the given display name exactly.
- {[key: string]: 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. Example: {"Department": "Finance"}
- gpuMemory stringFabric Id 
- The OCID of the GPU memory fabric.
- id string
- The OCID for the Customer-unique GPU memory cluster
- instanceConfiguration stringId 
- The OCID of the Instance Configuration used to source launch details for this instance.
- size string
- The number of instances currently running in the GpuMemoryCluster
- state string
- The lifecycle state of the GPU memory cluster
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated string
- The date and time the GPU memory cluster was created. Example: 2016-09-15T21:10:29.600Z
- availability_domain str
- The name of the availability domain. Example: Uocm:PHX-AD-1
- compartment_id str
- The OCID of the compartment.
- compute_cluster_ strid 
- The OCID of the compute cluster. A compute cluster is a remote direct memory access (RDMA) network group.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- display_name str
- A filter to return only resources that match the given display name exactly.
- Mapping[str, str]
- 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. Example: {"Department": "Finance"}
- gpu_memory_ strfabric_ id 
- The OCID of the GPU memory fabric.
- id str
- The OCID for the Customer-unique GPU memory cluster
- instance_configuration_ strid 
- The OCID of the Instance Configuration used to source launch details for this instance.
- size str
- The number of instances currently running in the GpuMemoryCluster
- state str
- The lifecycle state of the GPU memory cluster
- Mapping[str, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- time_created str
- The date and time the GPU memory cluster was created. Example: 2016-09-15T21:10:29.600Z
- availabilityDomain String
- The name of the availability domain. Example: Uocm:PHX-AD-1
- compartmentId String
- The OCID of the compartment.
- computeCluster StringId 
- The OCID of the compute cluster. A compute cluster is a remote direct memory access (RDMA) network group.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- displayName String
- A filter to return only resources that match the given display name exactly.
- Map<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. Example: {"Department": "Finance"}
- gpuMemory StringFabric Id 
- The OCID of the GPU memory fabric.
- id String
- The OCID for the Customer-unique GPU memory cluster
- instanceConfiguration StringId 
- The OCID of the Instance Configuration used to source launch details for this instance.
- size String
- The number of instances currently running in the GpuMemoryCluster
- state String
- The lifecycle state of the GPU memory cluster
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}
- timeCreated String
- The date and time the GPU memory cluster was created. Example: 2016-09-15T21:10:29.600Z
GetComputeGpuMemoryClustersFilter     
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.