1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Core
  5. ComputeGpuMemoryCluster
Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi

oci.Core.ComputeGpuMemoryCluster

Explore with Pulumi AI

This resource provides the Compute Gpu Memory Cluster resource in Oracle Cloud Infrastructure Core service.

Create a compute GPU memory cluster instance on a specific compute GPU memory fabric

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testComputeGpuMemoryCluster = new oci.core.ComputeGpuMemoryCluster("test_compute_gpu_memory_cluster", {
    availabilityDomain: computeGpuMemoryClusterAvailabilityDomain,
    compartmentId: compartmentId,
    computeClusterId: testComputeCluster.id,
    instanceConfigurationId: testInstanceConfiguration.id,
    definedTags: {
        "Operations.CostCenter": "42",
    },
    displayName: computeGpuMemoryClusterDisplayName,
    freeformTags: {
        Department: "Finance",
    },
    gpuMemoryFabricId: testGpuMemoryFabric.id,
    size: computeGpuMemoryClusterSize,
});
Copy
import pulumi
import pulumi_oci as oci

test_compute_gpu_memory_cluster = oci.core.ComputeGpuMemoryCluster("test_compute_gpu_memory_cluster",
    availability_domain=compute_gpu_memory_cluster_availability_domain,
    compartment_id=compartment_id,
    compute_cluster_id=test_compute_cluster["id"],
    instance_configuration_id=test_instance_configuration["id"],
    defined_tags={
        "Operations.CostCenter": "42",
    },
    display_name=compute_gpu_memory_cluster_display_name,
    freeform_tags={
        "Department": "Finance",
    },
    gpu_memory_fabric_id=test_gpu_memory_fabric["id"],
    size=compute_gpu_memory_cluster_size)
Copy
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.NewComputeGpuMemoryCluster(ctx, "test_compute_gpu_memory_cluster", &core.ComputeGpuMemoryClusterArgs{
			AvailabilityDomain:      pulumi.Any(computeGpuMemoryClusterAvailabilityDomain),
			CompartmentId:           pulumi.Any(compartmentId),
			ComputeClusterId:        pulumi.Any(testComputeCluster.Id),
			InstanceConfigurationId: pulumi.Any(testInstanceConfiguration.Id),
			DefinedTags: pulumi.StringMap{
				"Operations.CostCenter": pulumi.String("42"),
			},
			DisplayName: pulumi.Any(computeGpuMemoryClusterDisplayName),
			FreeformTags: pulumi.StringMap{
				"Department": pulumi.String("Finance"),
			},
			GpuMemoryFabricId: pulumi.Any(testGpuMemoryFabric.Id),
			Size:              pulumi.Any(computeGpuMemoryClusterSize),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testComputeGpuMemoryCluster = new Oci.Core.ComputeGpuMemoryCluster("test_compute_gpu_memory_cluster", new()
    {
        AvailabilityDomain = computeGpuMemoryClusterAvailabilityDomain,
        CompartmentId = compartmentId,
        ComputeClusterId = testComputeCluster.Id,
        InstanceConfigurationId = testInstanceConfiguration.Id,
        DefinedTags = 
        {
            { "Operations.CostCenter", "42" },
        },
        DisplayName = computeGpuMemoryClusterDisplayName,
        FreeformTags = 
        {
            { "Department", "Finance" },
        },
        GpuMemoryFabricId = testGpuMemoryFabric.Id,
        Size = computeGpuMemoryClusterSize,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Core.ComputeGpuMemoryCluster;
import com.pulumi.oci.Core.ComputeGpuMemoryClusterArgs;
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) {
        var testComputeGpuMemoryCluster = new ComputeGpuMemoryCluster("testComputeGpuMemoryCluster", ComputeGpuMemoryClusterArgs.builder()
            .availabilityDomain(computeGpuMemoryClusterAvailabilityDomain)
            .compartmentId(compartmentId)
            .computeClusterId(testComputeCluster.id())
            .instanceConfigurationId(testInstanceConfiguration.id())
            .definedTags(Map.of("Operations.CostCenter", "42"))
            .displayName(computeGpuMemoryClusterDisplayName)
            .freeformTags(Map.of("Department", "Finance"))
            .gpuMemoryFabricId(testGpuMemoryFabric.id())
            .size(computeGpuMemoryClusterSize)
            .build());

    }
}
Copy
resources:
  testComputeGpuMemoryCluster:
    type: oci:Core:ComputeGpuMemoryCluster
    name: test_compute_gpu_memory_cluster
    properties:
      availabilityDomain: ${computeGpuMemoryClusterAvailabilityDomain}
      compartmentId: ${compartmentId}
      computeClusterId: ${testComputeCluster.id}
      instanceConfigurationId: ${testInstanceConfiguration.id}
      definedTags:
        Operations.CostCenter: '42'
      displayName: ${computeGpuMemoryClusterDisplayName}
      freeformTags:
        Department: Finance
      gpuMemoryFabricId: ${testGpuMemoryFabric.id}
      size: ${computeGpuMemoryClusterSize}
Copy

Create ComputeGpuMemoryCluster Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new ComputeGpuMemoryCluster(name: string, args: ComputeGpuMemoryClusterArgs, opts?: CustomResourceOptions);
@overload
def ComputeGpuMemoryCluster(resource_name: str,
                            args: ComputeGpuMemoryClusterArgs,
                            opts: Optional[ResourceOptions] = None)

@overload
def ComputeGpuMemoryCluster(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            availability_domain: Optional[str] = None,
                            compartment_id: Optional[str] = None,
                            compute_cluster_id: Optional[str] = None,
                            instance_configuration_id: Optional[str] = None,
                            defined_tags: Optional[Mapping[str, str]] = None,
                            display_name: Optional[str] = None,
                            freeform_tags: Optional[Mapping[str, str]] = None,
                            gpu_memory_fabric_id: Optional[str] = None,
                            size: Optional[str] = None)
func NewComputeGpuMemoryCluster(ctx *Context, name string, args ComputeGpuMemoryClusterArgs, opts ...ResourceOption) (*ComputeGpuMemoryCluster, error)
public ComputeGpuMemoryCluster(string name, ComputeGpuMemoryClusterArgs args, CustomResourceOptions? opts = null)
public ComputeGpuMemoryCluster(String name, ComputeGpuMemoryClusterArgs args)
public ComputeGpuMemoryCluster(String name, ComputeGpuMemoryClusterArgs args, CustomResourceOptions options)
type: oci:Core:ComputeGpuMemoryCluster
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ComputeGpuMemoryClusterArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ComputeGpuMemoryClusterArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ComputeGpuMemoryClusterArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ComputeGpuMemoryClusterArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ComputeGpuMemoryClusterArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var computeGpuMemoryClusterResource = new Oci.Core.ComputeGpuMemoryCluster("computeGpuMemoryClusterResource", new()
{
    AvailabilityDomain = "string",
    CompartmentId = "string",
    ComputeClusterId = "string",
    InstanceConfigurationId = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
    DisplayName = "string",
    FreeformTags = 
    {
        { "string", "string" },
    },
    GpuMemoryFabricId = "string",
    Size = "string",
});
Copy
example, err := Core.NewComputeGpuMemoryCluster(ctx, "computeGpuMemoryClusterResource", &Core.ComputeGpuMemoryClusterArgs{
	AvailabilityDomain:      pulumi.String("string"),
	CompartmentId:           pulumi.String("string"),
	ComputeClusterId:        pulumi.String("string"),
	InstanceConfigurationId: pulumi.String("string"),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	DisplayName: pulumi.String("string"),
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	GpuMemoryFabricId: pulumi.String("string"),
	Size:              pulumi.String("string"),
})
Copy
var computeGpuMemoryClusterResource = new ComputeGpuMemoryCluster("computeGpuMemoryClusterResource", ComputeGpuMemoryClusterArgs.builder()
    .availabilityDomain("string")
    .compartmentId("string")
    .computeClusterId("string")
    .instanceConfigurationId("string")
    .definedTags(Map.of("string", "string"))
    .displayName("string")
    .freeformTags(Map.of("string", "string"))
    .gpuMemoryFabricId("string")
    .size("string")
    .build());
Copy
compute_gpu_memory_cluster_resource = oci.core.ComputeGpuMemoryCluster("computeGpuMemoryClusterResource",
    availability_domain="string",
    compartment_id="string",
    compute_cluster_id="string",
    instance_configuration_id="string",
    defined_tags={
        "string": "string",
    },
    display_name="string",
    freeform_tags={
        "string": "string",
    },
    gpu_memory_fabric_id="string",
    size="string")
Copy
const computeGpuMemoryClusterResource = new oci.core.ComputeGpuMemoryCluster("computeGpuMemoryClusterResource", {
    availabilityDomain: "string",
    compartmentId: "string",
    computeClusterId: "string",
    instanceConfigurationId: "string",
    definedTags: {
        string: "string",
    },
    displayName: "string",
    freeformTags: {
        string: "string",
    },
    gpuMemoryFabricId: "string",
    size: "string",
});
Copy
type: oci:Core:ComputeGpuMemoryCluster
properties:
    availabilityDomain: string
    compartmentId: string
    computeClusterId: string
    definedTags:
        string: string
    displayName: string
    freeformTags:
        string: string
    gpuMemoryFabricId: string
    instanceConfigurationId: string
    size: string
Copy

ComputeGpuMemoryCluster Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The ComputeGpuMemoryCluster resource accepts the following input properties:

AvailabilityDomain
This property is required.
Changes to this property will trigger replacement.
string
The availability domain of the GPU memory cluster.
CompartmentId This property is required. string
(Updatable) The OCID of the compartment that contains the compute GPU memory cluster. compartment.
ComputeClusterId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of the compute cluster.
InstanceConfigurationId This property is required. string
(Updatable) Instance Configuration to be used for this GPU Memory Cluster
DefinedTags Dictionary<string, string>
(Updatable) 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
(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
FreeformTags Dictionary<string, string>
(Updatable) 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"}
GpuMemoryFabricId Changes to this property will trigger replacement. string
The OCID of the GPU memory fabric.
Size string

(Updatable) The number of instances currently running in the GpuMemoryCluster

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

AvailabilityDomain
This property is required.
Changes to this property will trigger replacement.
string
The availability domain of the GPU memory cluster.
CompartmentId This property is required. string
(Updatable) The OCID of the compartment that contains the compute GPU memory cluster. compartment.
ComputeClusterId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of the compute cluster.
InstanceConfigurationId This property is required. string
(Updatable) Instance Configuration to be used for this GPU Memory Cluster
DefinedTags map[string]string
(Updatable) 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
(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
FreeformTags map[string]string
(Updatable) 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"}
GpuMemoryFabricId Changes to this property will trigger replacement. string
The OCID of the GPU memory fabric.
Size string

(Updatable) The number of instances currently running in the GpuMemoryCluster

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

availabilityDomain
This property is required.
Changes to this property will trigger replacement.
String
The availability domain of the GPU memory cluster.
compartmentId This property is required. String
(Updatable) The OCID of the compartment that contains the compute GPU memory cluster. compartment.
computeClusterId
This property is required.
Changes to this property will trigger replacement.
String
The OCID of the compute cluster.
instanceConfigurationId This property is required. String
(Updatable) Instance Configuration to be used for this GPU Memory Cluster
definedTags Map<String,String>
(Updatable) 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
(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeformTags Map<String,String>
(Updatable) 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"}
gpuMemoryFabricId Changes to this property will trigger replacement. String
The OCID of the GPU memory fabric.
size String

(Updatable) The number of instances currently running in the GpuMemoryCluster

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

availabilityDomain
This property is required.
Changes to this property will trigger replacement.
string
The availability domain of the GPU memory cluster.
compartmentId This property is required. string
(Updatable) The OCID of the compartment that contains the compute GPU memory cluster. compartment.
computeClusterId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of the compute cluster.
instanceConfigurationId This property is required. string
(Updatable) Instance Configuration to be used for this GPU Memory Cluster
definedTags {[key: string]: string}
(Updatable) 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
(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeformTags {[key: string]: string}
(Updatable) 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"}
gpuMemoryFabricId Changes to this property will trigger replacement. string
The OCID of the GPU memory fabric.
size string

(Updatable) The number of instances currently running in the GpuMemoryCluster

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

availability_domain
This property is required.
Changes to this property will trigger replacement.
str
The availability domain of the GPU memory cluster.
compartment_id This property is required. str
(Updatable) The OCID of the compartment that contains the compute GPU memory cluster. compartment.
compute_cluster_id
This property is required.
Changes to this property will trigger replacement.
str
The OCID of the compute cluster.
instance_configuration_id This property is required. str
(Updatable) Instance Configuration to be used for this GPU Memory Cluster
defined_tags Mapping[str, str]
(Updatable) 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
(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags Mapping[str, str]
(Updatable) 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_fabric_id Changes to this property will trigger replacement. str
The OCID of the GPU memory fabric.
size str

(Updatable) The number of instances currently running in the GpuMemoryCluster

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

availabilityDomain
This property is required.
Changes to this property will trigger replacement.
String
The availability domain of the GPU memory cluster.
compartmentId This property is required. String
(Updatable) The OCID of the compartment that contains the compute GPU memory cluster. compartment.
computeClusterId
This property is required.
Changes to this property will trigger replacement.
String
The OCID of the compute cluster.
instanceConfigurationId This property is required. String
(Updatable) Instance Configuration to be used for this GPU Memory Cluster
definedTags Map<String>
(Updatable) 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
(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeformTags Map<String>
(Updatable) 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"}
gpuMemoryFabricId Changes to this property will trigger replacement. String
The OCID of the GPU memory fabric.
size String

(Updatable) The number of instances currently running in the GpuMemoryCluster

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

Outputs

All input properties are implicitly available as output properties. Additionally, the ComputeGpuMemoryCluster resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
State string
The lifecycle state of the GPU memory cluster
SystemTags 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
Id string
The provider-assigned unique ID for this managed resource.
State string
The lifecycle state of the GPU memory cluster
SystemTags 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
id String
The provider-assigned unique ID for this managed resource.
state String
The lifecycle state of the GPU memory cluster
systemTags 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
id string
The provider-assigned unique ID for this managed resource.
state string
The lifecycle state of the GPU memory cluster
systemTags {[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
id str
The provider-assigned unique ID for this managed resource.
state str
The lifecycle state of the GPU memory cluster
system_tags 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
id String
The provider-assigned unique ID for this managed resource.
state String
The lifecycle state of the GPU memory cluster
systemTags 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

Look up Existing ComputeGpuMemoryCluster Resource

Get an existing ComputeGpuMemoryCluster resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: ComputeGpuMemoryClusterState, opts?: CustomResourceOptions): ComputeGpuMemoryCluster
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        availability_domain: Optional[str] = None,
        compartment_id: Optional[str] = None,
        compute_cluster_id: Optional[str] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        display_name: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        gpu_memory_fabric_id: Optional[str] = None,
        instance_configuration_id: Optional[str] = None,
        size: Optional[str] = None,
        state: Optional[str] = None,
        system_tags: Optional[Mapping[str, str]] = None,
        time_created: Optional[str] = None) -> ComputeGpuMemoryCluster
func GetComputeGpuMemoryCluster(ctx *Context, name string, id IDInput, state *ComputeGpuMemoryClusterState, opts ...ResourceOption) (*ComputeGpuMemoryCluster, error)
public static ComputeGpuMemoryCluster Get(string name, Input<string> id, ComputeGpuMemoryClusterState? state, CustomResourceOptions? opts = null)
public static ComputeGpuMemoryCluster get(String name, Output<String> id, ComputeGpuMemoryClusterState state, CustomResourceOptions options)
resources:  _:    type: oci:Core:ComputeGpuMemoryCluster    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
AvailabilityDomain Changes to this property will trigger replacement. string
The availability domain of the GPU memory cluster.
CompartmentId string
(Updatable) The OCID of the compartment that contains the compute GPU memory cluster. compartment.
ComputeClusterId Changes to this property will trigger replacement. string
The OCID of the compute cluster.
DefinedTags Dictionary<string, string>
(Updatable) 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
(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
FreeformTags Dictionary<string, string>
(Updatable) 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"}
GpuMemoryFabricId Changes to this property will trigger replacement. string
The OCID of the GPU memory fabric.
InstanceConfigurationId string
(Updatable) Instance Configuration to be used for this GPU Memory Cluster
Size string

(Updatable) The number of instances currently running in the GpuMemoryCluster

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

State string
The lifecycle state of the GPU memory cluster
SystemTags 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 Changes to this property will trigger replacement. string
The availability domain of the GPU memory cluster.
CompartmentId string
(Updatable) The OCID of the compartment that contains the compute GPU memory cluster. compartment.
ComputeClusterId Changes to this property will trigger replacement. string
The OCID of the compute cluster.
DefinedTags map[string]string
(Updatable) 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
(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
FreeformTags map[string]string
(Updatable) 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"}
GpuMemoryFabricId Changes to this property will trigger replacement. string
The OCID of the GPU memory fabric.
InstanceConfigurationId string
(Updatable) Instance Configuration to be used for this GPU Memory Cluster
Size string

(Updatable) The number of instances currently running in the GpuMemoryCluster

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

State string
The lifecycle state of the GPU memory cluster
SystemTags 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 Changes to this property will trigger replacement. String
The availability domain of the GPU memory cluster.
compartmentId String
(Updatable) The OCID of the compartment that contains the compute GPU memory cluster. compartment.
computeClusterId Changes to this property will trigger replacement. String
The OCID of the compute cluster.
definedTags Map<String,String>
(Updatable) 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
(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeformTags Map<String,String>
(Updatable) 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"}
gpuMemoryFabricId Changes to this property will trigger replacement. String
The OCID of the GPU memory fabric.
instanceConfigurationId String
(Updatable) Instance Configuration to be used for this GPU Memory Cluster
size String

(Updatable) The number of instances currently running in the GpuMemoryCluster

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

state String
The lifecycle state of the GPU memory cluster
systemTags 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 Changes to this property will trigger replacement. string
The availability domain of the GPU memory cluster.
compartmentId string
(Updatable) The OCID of the compartment that contains the compute GPU memory cluster. compartment.
computeClusterId Changes to this property will trigger replacement. string
The OCID of the compute cluster.
definedTags {[key: string]: string}
(Updatable) 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
(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeformTags {[key: string]: string}
(Updatable) 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"}
gpuMemoryFabricId Changes to this property will trigger replacement. string
The OCID of the GPU memory fabric.
instanceConfigurationId string
(Updatable) Instance Configuration to be used for this GPU Memory Cluster
size string

(Updatable) The number of instances currently running in the GpuMemoryCluster

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

state string
The lifecycle state of the GPU memory cluster
systemTags {[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 Changes to this property will trigger replacement. str
The availability domain of the GPU memory cluster.
compartment_id str
(Updatable) The OCID of the compartment that contains the compute GPU memory cluster. compartment.
compute_cluster_id Changes to this property will trigger replacement. str
The OCID of the compute cluster.
defined_tags Mapping[str, str]
(Updatable) 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
(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags Mapping[str, str]
(Updatable) 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_fabric_id Changes to this property will trigger replacement. str
The OCID of the GPU memory fabric.
instance_configuration_id str
(Updatable) Instance Configuration to be used for this GPU Memory Cluster
size str

(Updatable) The number of instances currently running in the GpuMemoryCluster

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

state str
The lifecycle state of the GPU memory cluster
system_tags 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 Changes to this property will trigger replacement. String
The availability domain of the GPU memory cluster.
compartmentId String
(Updatable) The OCID of the compartment that contains the compute GPU memory cluster. compartment.
computeClusterId Changes to this property will trigger replacement. String
The OCID of the compute cluster.
definedTags Map<String>
(Updatable) 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
(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeformTags Map<String>
(Updatable) 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"}
gpuMemoryFabricId Changes to this property will trigger replacement. String
The OCID of the GPU memory fabric.
instanceConfigurationId String
(Updatable) Instance Configuration to be used for this GPU Memory Cluster
size String

(Updatable) The number of instances currently running in the GpuMemoryCluster

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

state String
The lifecycle state of the GPU memory cluster
systemTags 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

Import

ComputeGpuMemoryClusters can be imported using the id, e.g.

$ pulumi import oci:Core/computeGpuMemoryCluster:ComputeGpuMemoryCluster test_compute_gpu_memory_cluster "id"
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.