1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Core
  5. ComputeGpuMemoryFabric
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

oci.Core.ComputeGpuMemoryFabric

Explore with Pulumi AI

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

Customer can update displayName and tags for compute GPU memory fabric record

Create ComputeGpuMemoryFabric Resource

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

Constructor syntax

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

@overload
def ComputeGpuMemoryFabric(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           compute_gpu_memory_fabric_id: Optional[str] = None,
                           compartment_id: Optional[str] = None,
                           defined_tags: Optional[Mapping[str, str]] = None,
                           display_name: Optional[str] = None,
                           freeform_tags: Optional[Mapping[str, str]] = None)
func NewComputeGpuMemoryFabric(ctx *Context, name string, args ComputeGpuMemoryFabricArgs, opts ...ResourceOption) (*ComputeGpuMemoryFabric, error)
public ComputeGpuMemoryFabric(string name, ComputeGpuMemoryFabricArgs args, CustomResourceOptions? opts = null)
public ComputeGpuMemoryFabric(String name, ComputeGpuMemoryFabricArgs args)
public ComputeGpuMemoryFabric(String name, ComputeGpuMemoryFabricArgs args, CustomResourceOptions options)
type: oci:Core:ComputeGpuMemoryFabric
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. ComputeGpuMemoryFabricArgs
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. ComputeGpuMemoryFabricArgs
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. ComputeGpuMemoryFabricArgs
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. ComputeGpuMemoryFabricArgs
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. ComputeGpuMemoryFabricArgs
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 computeGpuMemoryFabricResource = new Oci.Core.ComputeGpuMemoryFabric("computeGpuMemoryFabricResource", new()
{
    ComputeGpuMemoryFabricId = "string",
    CompartmentId = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
    DisplayName = "string",
    FreeformTags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := Core.NewComputeGpuMemoryFabric(ctx, "computeGpuMemoryFabricResource", &Core.ComputeGpuMemoryFabricArgs{
	ComputeGpuMemoryFabricId: pulumi.String("string"),
	CompartmentId:            pulumi.String("string"),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	DisplayName: pulumi.String("string"),
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var computeGpuMemoryFabricResource = new ComputeGpuMemoryFabric("computeGpuMemoryFabricResource", ComputeGpuMemoryFabricArgs.builder()
    .computeGpuMemoryFabricId("string")
    .compartmentId("string")
    .definedTags(Map.of("string", "string"))
    .displayName("string")
    .freeformTags(Map.of("string", "string"))
    .build());
Copy
compute_gpu_memory_fabric_resource = oci.core.ComputeGpuMemoryFabric("computeGpuMemoryFabricResource",
    compute_gpu_memory_fabric_id="string",
    compartment_id="string",
    defined_tags={
        "string": "string",
    },
    display_name="string",
    freeform_tags={
        "string": "string",
    })
Copy
const computeGpuMemoryFabricResource = new oci.core.ComputeGpuMemoryFabric("computeGpuMemoryFabricResource", {
    computeGpuMemoryFabricId: "string",
    compartmentId: "string",
    definedTags: {
        string: "string",
    },
    displayName: "string",
    freeformTags: {
        string: "string",
    },
});
Copy
type: oci:Core:ComputeGpuMemoryFabric
properties:
    compartmentId: string
    computeGpuMemoryFabricId: string
    definedTags:
        string: string
    displayName: string
    freeformTags:
        string: string
Copy

ComputeGpuMemoryFabric 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 ComputeGpuMemoryFabric resource accepts the following input properties:

ComputeGpuMemoryFabricId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of the compute GPU memory fabric.
CompartmentId string
(Updatable) The OCID for the compartment. This should always be the root compartment.
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"}

** 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

ComputeGpuMemoryFabricId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of the compute GPU memory fabric.
CompartmentId string
(Updatable) The OCID for the compartment. This should always be the root compartment.
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"}

** 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

computeGpuMemoryFabricId
This property is required.
Changes to this property will trigger replacement.
String
The OCID of the compute GPU memory fabric.
compartmentId String
(Updatable) The OCID for the compartment. This should always be the root compartment.
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"}

** 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

computeGpuMemoryFabricId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of the compute GPU memory fabric.
compartmentId string
(Updatable) The OCID for the compartment. This should always be the root compartment.
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"}

** 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

compute_gpu_memory_fabric_id
This property is required.
Changes to this property will trigger replacement.
str
The OCID of the compute GPU memory fabric.
compartment_id str
(Updatable) The OCID for the compartment. This should always be the root compartment.
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"}

** 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

computeGpuMemoryFabricId
This property is required.
Changes to this property will trigger replacement.
String
The OCID of the compute GPU memory fabric.
compartmentId String
(Updatable) The OCID for the compartment. This should always be the root compartment.
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"}

** 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 ComputeGpuMemoryFabric resource produces the following output properties:

AdditionalData Dictionary<string, string>
Additional data that can be exposed to the customer. Right now it will include the switch tray ids.
ComputeHpcIslandId string
The OCID for Customer-unique HPC Island
ComputeLocalBlockId string
The OCID for Customer-unique Local Block
ComputeNetworkBlockId string
The OCID for Customer-unique Network Block
FabricHealth string
The health state of the GPU memory fabric
HealthyHostCount string
The total number of healthy bare metal hosts located in this compute GPU memory fabric.
Id string
The provider-assigned unique ID for this managed resource.
State string
The lifecycle state of the GPU memory fabric
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 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
TotalHostCount string
The total number of bare metal hosts located in this compute GPU memory fabric.
AdditionalData map[string]string
Additional data that can be exposed to the customer. Right now it will include the switch tray ids.
ComputeHpcIslandId string
The OCID for Customer-unique HPC Island
ComputeLocalBlockId string
The OCID for Customer-unique Local Block
ComputeNetworkBlockId string
The OCID for Customer-unique Network Block
FabricHealth string
The health state of the GPU memory fabric
HealthyHostCount string
The total number of healthy bare metal hosts located in this compute GPU memory fabric.
Id string
The provider-assigned unique ID for this managed resource.
State string
The lifecycle state of the GPU memory fabric
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 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
TotalHostCount string
The total number of bare metal hosts located in this compute GPU memory fabric.
additionalData Map<String,String>
Additional data that can be exposed to the customer. Right now it will include the switch tray ids.
computeHpcIslandId String
The OCID for Customer-unique HPC Island
computeLocalBlockId String
The OCID for Customer-unique Local Block
computeNetworkBlockId String
The OCID for Customer-unique Network Block
fabricHealth String
The health state of the GPU memory fabric
healthyHostCount String
The total number of healthy bare metal hosts located in this compute GPU memory fabric.
id String
The provider-assigned unique ID for this managed resource.
state String
The lifecycle state of the GPU memory fabric
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 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
totalHostCount String
The total number of bare metal hosts located in this compute GPU memory fabric.
additionalData {[key: string]: string}
Additional data that can be exposed to the customer. Right now it will include the switch tray ids.
computeHpcIslandId string
The OCID for Customer-unique HPC Island
computeLocalBlockId string
The OCID for Customer-unique Local Block
computeNetworkBlockId string
The OCID for Customer-unique Network Block
fabricHealth string
The health state of the GPU memory fabric
healthyHostCount string
The total number of healthy bare metal hosts located in this compute GPU memory fabric.
id string
The provider-assigned unique ID for this managed resource.
state string
The lifecycle state of the GPU memory fabric
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 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
totalHostCount string
The total number of bare metal hosts located in this compute GPU memory fabric.
additional_data Mapping[str, str]
Additional data that can be exposed to the customer. Right now it will include the switch tray ids.
compute_hpc_island_id str
The OCID for Customer-unique HPC Island
compute_local_block_id str
The OCID for Customer-unique Local Block
compute_network_block_id str
The OCID for Customer-unique Network Block
fabric_health str
The health state of the GPU memory fabric
healthy_host_count str
The total number of healthy bare metal hosts located in this compute GPU memory fabric.
id str
The provider-assigned unique ID for this managed resource.
state str
The lifecycle state of the GPU memory fabric
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 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
total_host_count str
The total number of bare metal hosts located in this compute GPU memory fabric.
additionalData Map<String>
Additional data that can be exposed to the customer. Right now it will include the switch tray ids.
computeHpcIslandId String
The OCID for Customer-unique HPC Island
computeLocalBlockId String
The OCID for Customer-unique Local Block
computeNetworkBlockId String
The OCID for Customer-unique Network Block
fabricHealth String
The health state of the GPU memory fabric
healthyHostCount String
The total number of healthy bare metal hosts located in this compute GPU memory fabric.
id String
The provider-assigned unique ID for this managed resource.
state String
The lifecycle state of the GPU memory fabric
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 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
totalHostCount String
The total number of bare metal hosts located in this compute GPU memory fabric.

Look up Existing ComputeGpuMemoryFabric Resource

Get an existing ComputeGpuMemoryFabric 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?: ComputeGpuMemoryFabricState, opts?: CustomResourceOptions): ComputeGpuMemoryFabric
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        additional_data: Optional[Mapping[str, str]] = None,
        compartment_id: Optional[str] = None,
        compute_gpu_memory_fabric_id: Optional[str] = None,
        compute_hpc_island_id: Optional[str] = None,
        compute_local_block_id: Optional[str] = None,
        compute_network_block_id: Optional[str] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        display_name: Optional[str] = None,
        fabric_health: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        healthy_host_count: Optional[str] = None,
        state: Optional[str] = None,
        system_tags: Optional[Mapping[str, str]] = None,
        time_created: Optional[str] = None,
        total_host_count: Optional[str] = None) -> ComputeGpuMemoryFabric
func GetComputeGpuMemoryFabric(ctx *Context, name string, id IDInput, state *ComputeGpuMemoryFabricState, opts ...ResourceOption) (*ComputeGpuMemoryFabric, error)
public static ComputeGpuMemoryFabric Get(string name, Input<string> id, ComputeGpuMemoryFabricState? state, CustomResourceOptions? opts = null)
public static ComputeGpuMemoryFabric get(String name, Output<String> id, ComputeGpuMemoryFabricState state, CustomResourceOptions options)
resources:  _:    type: oci:Core:ComputeGpuMemoryFabric    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:
AdditionalData Dictionary<string, string>
Additional data that can be exposed to the customer. Right now it will include the switch tray ids.
CompartmentId string
(Updatable) The OCID for the compartment. This should always be the root compartment.
ComputeGpuMemoryFabricId Changes to this property will trigger replacement. string
The OCID of the compute GPU memory fabric.
ComputeHpcIslandId string
The OCID for Customer-unique HPC Island
ComputeLocalBlockId string
The OCID for Customer-unique Local Block
ComputeNetworkBlockId string
The OCID for Customer-unique Network Block
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.
FabricHealth string
The health state of the GPU memory fabric
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"}

** 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

HealthyHostCount string
The total number of healthy bare metal hosts located in this compute GPU memory fabric.
State string
The lifecycle state of the GPU memory fabric
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 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
TotalHostCount string
The total number of bare metal hosts located in this compute GPU memory fabric.
AdditionalData map[string]string
Additional data that can be exposed to the customer. Right now it will include the switch tray ids.
CompartmentId string
(Updatable) The OCID for the compartment. This should always be the root compartment.
ComputeGpuMemoryFabricId Changes to this property will trigger replacement. string
The OCID of the compute GPU memory fabric.
ComputeHpcIslandId string
The OCID for Customer-unique HPC Island
ComputeLocalBlockId string
The OCID for Customer-unique Local Block
ComputeNetworkBlockId string
The OCID for Customer-unique Network Block
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.
FabricHealth string
The health state of the GPU memory fabric
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"}

** 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

HealthyHostCount string
The total number of healthy bare metal hosts located in this compute GPU memory fabric.
State string
The lifecycle state of the GPU memory fabric
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 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
TotalHostCount string
The total number of bare metal hosts located in this compute GPU memory fabric.
additionalData Map<String,String>
Additional data that can be exposed to the customer. Right now it will include the switch tray ids.
compartmentId String
(Updatable) The OCID for the compartment. This should always be the root compartment.
computeGpuMemoryFabricId Changes to this property will trigger replacement. String
The OCID of the compute GPU memory fabric.
computeHpcIslandId String
The OCID for Customer-unique HPC Island
computeLocalBlockId String
The OCID for Customer-unique Local Block
computeNetworkBlockId String
The OCID for Customer-unique Network Block
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.
fabricHealth String
The health state of the GPU memory fabric
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"}

** 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

healthyHostCount String
The total number of healthy bare metal hosts located in this compute GPU memory fabric.
state String
The lifecycle state of the GPU memory fabric
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 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
totalHostCount String
The total number of bare metal hosts located in this compute GPU memory fabric.
additionalData {[key: string]: string}
Additional data that can be exposed to the customer. Right now it will include the switch tray ids.
compartmentId string
(Updatable) The OCID for the compartment. This should always be the root compartment.
computeGpuMemoryFabricId Changes to this property will trigger replacement. string
The OCID of the compute GPU memory fabric.
computeHpcIslandId string
The OCID for Customer-unique HPC Island
computeLocalBlockId string
The OCID for Customer-unique Local Block
computeNetworkBlockId string
The OCID for Customer-unique Network Block
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.
fabricHealth string
The health state of the GPU memory fabric
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"}

** 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

healthyHostCount string
The total number of healthy bare metal hosts located in this compute GPU memory fabric.
state string
The lifecycle state of the GPU memory fabric
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 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
totalHostCount string
The total number of bare metal hosts located in this compute GPU memory fabric.
additional_data Mapping[str, str]
Additional data that can be exposed to the customer. Right now it will include the switch tray ids.
compartment_id str
(Updatable) The OCID for the compartment. This should always be the root compartment.
compute_gpu_memory_fabric_id Changes to this property will trigger replacement. str
The OCID of the compute GPU memory fabric.
compute_hpc_island_id str
The OCID for Customer-unique HPC Island
compute_local_block_id str
The OCID for Customer-unique Local Block
compute_network_block_id str
The OCID for Customer-unique Network Block
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.
fabric_health str
The health state of the GPU memory fabric
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"}

** 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

healthy_host_count str
The total number of healthy bare metal hosts located in this compute GPU memory fabric.
state str
The lifecycle state of the GPU memory fabric
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 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
total_host_count str
The total number of bare metal hosts located in this compute GPU memory fabric.
additionalData Map<String>
Additional data that can be exposed to the customer. Right now it will include the switch tray ids.
compartmentId String
(Updatable) The OCID for the compartment. This should always be the root compartment.
computeGpuMemoryFabricId Changes to this property will trigger replacement. String
The OCID of the compute GPU memory fabric.
computeHpcIslandId String
The OCID for Customer-unique HPC Island
computeLocalBlockId String
The OCID for Customer-unique Local Block
computeNetworkBlockId String
The OCID for Customer-unique Network Block
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.
fabricHealth String
The health state of the GPU memory fabric
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"}

** 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

healthyHostCount String
The total number of healthy bare metal hosts located in this compute GPU memory fabric.
state String
The lifecycle state of the GPU memory fabric
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 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
totalHostCount String
The total number of bare metal hosts located in this compute GPU memory fabric.

Import

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

$ pulumi import oci:Core/computeGpuMemoryFabric:ComputeGpuMemoryFabric test_compute_gpu_memory_fabric "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.