Show / Hide Table of Contents

Class ComputeGpuMemoryFabric

The customer facing object includes GPU memory fabric details.

Inheritance
object
ComputeGpuMemoryFabric
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CoreService.Models
Assembly: OCI.DotNetSDK.Core.dll
Syntax
public class ComputeGpuMemoryFabric

Properties

AdditionalData

Declaration
[JsonProperty(PropertyName = "additionalData")]
public Dictionary<string, object> AdditionalData { get; set; }
Property Value
Type Description
Dictionary<string, object>

Additional data that can be exposed to the customer. Right now it will include the switch tray ids.

CompartmentId

Declaration
[Required(ErrorMessage = "CompartmentId is required.")]
[JsonProperty(PropertyName = "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type Description
string

The OCID for the compartment. This should always be the root compartment.

Remarks

Required

ComputeHpcIslandId

Declaration
[Required(ErrorMessage = "ComputeHpcIslandId is required.")]
[JsonProperty(PropertyName = "computeHpcIslandId")]
public string ComputeHpcIslandId { get; set; }
Property Value
Type Description
string

The OCID for Customer-unique HPC Island

Remarks

Required

ComputeLocalBlockId

Declaration
[Required(ErrorMessage = "ComputeLocalBlockId is required.")]
[JsonProperty(PropertyName = "computeLocalBlockId")]
public string ComputeLocalBlockId { get; set; }
Property Value
Type Description
string

The OCID for Customer-unique Local Block

Remarks

Required

ComputeNetworkBlockId

Declaration
[Required(ErrorMessage = "ComputeNetworkBlockId is required.")]
[JsonProperty(PropertyName = "computeNetworkBlockId")]
public string ComputeNetworkBlockId { get; set; }
Property Value
Type Description
string

The OCID for Customer-unique Network Block

Remarks

Required

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

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

Declaration
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

FabricHealth

Declaration
[Required(ErrorMessage = "FabricHealth is required.")]
[JsonProperty(PropertyName = "fabricHealth")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ComputeGpuMemoryFabric.FabricHealthEnum? FabricHealth { get; set; }
Property Value
Type Description
ComputeGpuMemoryFabric.FabricHealthEnum?

The health state of the GPU memory fabric

Remarks

Required

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
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"}

HealthyHostCount

Declaration
[Required(ErrorMessage = "HealthyHostCount is required.")]
[JsonProperty(PropertyName = "healthyHostCount")]
public long? HealthyHostCount { get; set; }
Property Value
Type Description
long?

The total number of healthy bare metal hosts located in this compute GPU memory fabric.

Remarks

Required

Id

Declaration
[Required(ErrorMessage = "Id is required.")]
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
Property Value
Type Description
string

The OCID for the Customer-unique GPU memory fabric

Remarks

Required

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ComputeGpuMemoryFabric.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
ComputeGpuMemoryFabric.LifecycleStateEnum?

The lifecycle state of the GPU memory fabric

Remarks

Required

SystemTags

Declaration
[JsonProperty(PropertyName = "systemTags")]
public Dictionary<string, Dictionary<string, object>> SystemTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Usage of system tag keys. These predefined keys are scoped to namespaces. Example: { "orcl-cloud": { "free-tier-retained": "true" } }

TimeCreated

Declaration
[Required(ErrorMessage = "TimeCreated is required.")]
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

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

Remarks

Required

TotalHostCount

Declaration
[Required(ErrorMessage = "TotalHostCount is required.")]
[JsonProperty(PropertyName = "totalHostCount")]
public long? TotalHostCount { get; set; }
Property Value
Type Description
long?

The total number of bare metal hosts located in this compute GPU memory fabric.

Remarks

Required

In this article
Back to top