Oracle Cloud Infrastructure v2.27.0 published on Thursday, Mar 20, 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[_core.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[_core.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 dictionary
The following arguments are supported:
- Compartment
Id string - The OCID of the compartment.
- Availability
Domain string - The name of the availability domain. Example:
Uocm:PHX-AD-1
- Compute
Cluster stringId - The OCID of the compute cluster. A compute cluster is a remote direct memory access (RDMA) network group.
- Compute
Gpu stringMemory Cluster Id - A filter to return only the listings that matches the given GPU memory cluster id.
- Display
Name string - A filter to return only resources that match the given display name exactly.
- Filters
List<Get
Compute Gpu Memory Clusters Filter>
- Compartment
Id string - The OCID of the compartment.
- Availability
Domain string - The name of the availability domain. Example:
Uocm:PHX-AD-1
- Compute
Cluster stringId - The OCID of the compute cluster. A compute cluster is a remote direct memory access (RDMA) network group.
- Compute
Gpu stringMemory Cluster Id - A filter to return only the listings that matches the given GPU memory cluster id.
- Display
Name string - A filter to return only resources that match the given display name exactly.
- Filters
[]Get
Compute Gpu Memory Clusters Filter
- compartment
Id String - The OCID of the compartment.
- availability
Domain String - The name of the availability domain. Example:
Uocm:PHX-AD-1
- compute
Cluster StringId - The OCID of the compute cluster. A compute cluster is a remote direct memory access (RDMA) network group.
- compute
Gpu StringMemory Cluster Id - A filter to return only the listings that matches the given GPU memory cluster id.
- display
Name String - A filter to return only resources that match the given display name exactly.
- filters
List<Get
Compute Gpu Memory Clusters Filter>
- compartment
Id string - The OCID of the compartment.
- availability
Domain string - The name of the availability domain. Example:
Uocm:PHX-AD-1
- compute
Cluster stringId - The OCID of the compute cluster. A compute cluster is a remote direct memory access (RDMA) network group.
- compute
Gpu stringMemory Cluster Id - A filter to return only the listings that matches the given GPU memory cluster id.
- display
Name string - A filter to return only resources that match the given display name exactly.
- filters
Get
Compute 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[core.
Get Compute Gpu Memory Clusters Filter]
- compartment
Id String - The OCID of the compartment.
- availability
Domain String - The name of the availability domain. Example:
Uocm:PHX-AD-1
- compute
Cluster StringId - The OCID of the compute cluster. A compute cluster is a remote direct memory access (RDMA) network group.
- compute
Gpu StringMemory Cluster Id - A filter to return only the listings that matches the given GPU memory cluster id.
- display
Name 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:
- Compartment
Id string - The OCID of the compartment that contains the compute GPU memory cluster.
- Compute
Gpu 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.
- Availability
Domain string - The availability domain of the GPU memory cluster.
- Compute
Cluster stringId - The OCID of the compute cluster.
- Compute
Gpu stringMemory Cluster Id - Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Filters
List<Get
Compute Gpu Memory Clusters Filter>
- Compartment
Id string - The OCID of the compartment that contains the compute GPU memory cluster.
- Compute
Gpu []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.
- Availability
Domain string - The availability domain of the GPU memory cluster.
- Compute
Cluster stringId - The OCID of the compute cluster.
- Compute
Gpu stringMemory Cluster Id - Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Filters
[]Get
Compute Gpu Memory Clusters Filter
- compartment
Id String - The OCID of the compartment that contains the compute GPU memory cluster.
- compute
Gpu 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.
- availability
Domain String - The availability domain of the GPU memory cluster.
- compute
Cluster StringId - The OCID of the compute cluster.
- compute
Gpu StringMemory Cluster Id - display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
List<Get
Compute Gpu Memory Clusters Filter>
- compartment
Id string - The OCID of the compartment that contains the compute GPU memory cluster.
- compute
Gpu 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.
- availability
Domain string - The availability domain of the GPU memory cluster.
- compute
Cluster stringId - The OCID of the compute cluster.
- compute
Gpu stringMemory Cluster Id - display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
Get
Compute Gpu Memory Clusters Filter[]
- compartment_
id str - The OCID of the compartment that contains the compute GPU memory cluster.
- compute_
gpu_ Sequence[core.memory_ cluster_ collections Get 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[core.
Get Compute Gpu Memory Clusters Filter]
- compartment
Id String - The OCID of the compartment that contains the compute GPU memory cluster.
- compute
Gpu 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.
- availability
Domain String - The availability domain of the GPU memory cluster.
- compute
Cluster StringId - The OCID of the compute cluster.
- compute
Gpu StringMemory Cluster Id - display
Name 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
- Availability
Domain string - The name of the availability domain. Example:
Uocm:PHX-AD-1
- Compartment
Id string - The OCID of the compartment.
- Compute
Cluster 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"}
- Display
Name 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"}
- Gpu
Memory stringFabric Id - The OCID of the GPU memory fabric.
- Id string
- The OCID for the Customer-unique GPU memory cluster
- Instance
Configuration 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"}
- Time
Created string - The date and time the GPU memory cluster was created. Example:
2016-09-15T21:10:29.600Z
- Availability
Domain string - The name of the availability domain. Example:
Uocm:PHX-AD-1
- Compartment
Id string - The OCID of the compartment.
- Compute
Cluster 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"}
- Display
Name 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"}
- Gpu
Memory stringFabric Id - The OCID of the GPU memory fabric.
- Id string
- The OCID for the Customer-unique GPU memory cluster
- Instance
Configuration 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"}
- Time
Created string - The date and time the GPU memory cluster was created. Example:
2016-09-15T21:10:29.600Z
- availability
Domain String - The name of the availability domain. Example:
Uocm:PHX-AD-1
- compartment
Id String - The OCID of the compartment.
- compute
Cluster 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"}
- display
Name 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"}
- gpu
Memory StringFabric Id - The OCID of the GPU memory fabric.
- id String
- The OCID for the Customer-unique GPU memory cluster
- instance
Configuration 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"}
- time
Created String - The date and time the GPU memory cluster was created. Example:
2016-09-15T21:10:29.600Z
- availability
Domain string - The name of the availability domain. Example:
Uocm:PHX-AD-1
- compartment
Id string - The OCID of the compartment.
- compute
Cluster 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"}
- display
Name 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"}
- gpu
Memory stringFabric Id - The OCID of the GPU memory fabric.
- id string
- The OCID for the Customer-unique GPU memory cluster
- instance
Configuration 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"}
- time
Created 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
- availability
Domain String - The name of the availability domain. Example:
Uocm:PHX-AD-1
- compartment
Id String - The OCID of the compartment.
- compute
Cluster 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"}
- display
Name 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"}
- gpu
Memory StringFabric Id - The OCID of the GPU memory fabric.
- id String
- The OCID for the Customer-unique GPU memory cluster
- instance
Configuration 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"}
- time
Created 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
oci
Terraform Provider.