Show / Hide Table of Contents

Class DedicatedAiClusterHostingCapacity

The capacity of a hosting type dedicated AI cluster.

Inheritance
object
DedicatedAiClusterCapacity
DedicatedAiClusterHostingCapacity
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GenerativeaiService.Models
Assembly: OCI.DotNetSDK.Generativeai.dll
Syntax
public class DedicatedAiClusterHostingCapacity : DedicatedAiClusterCapacity

Properties

TotalEndpointCapacity

Declaration
[JsonProperty(PropertyName = "totalEndpointCapacity")]
public int? TotalEndpointCapacity { get; set; }
Property Value
Type Description
int?

The total number of endpoints that can be hosted on this dedicated AI cluster.

UsedEndpointCapacity

Declaration
[JsonProperty(PropertyName = "usedEndpointCapacity")]
public int? UsedEndpointCapacity { get; set; }
Property Value
Type Description
int?

The number of endpoints hosted on this dedicated AI cluster.

In this article
Back to top