Show / Hide Table of Contents

Class GenAiUpdateDetail

Details required for existing GenAi instance to be updated.

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

Properties

Endpoints

Declaration
[JsonProperty(PropertyName = "endpoints")]
public List<EndpointDetails> Endpoints { get; set; }
Property Value
Type Description
List<EndpointDetails>

List of endpoints to be provisioned new or updated if existing for the GenAi dedicated cluster.

InstanceId

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

Instance id of the exisitng GenAi instance to be updated.

Remarks

Required

UnitCount

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

No of replicas of base model to be used for hosting.

In this article
Back to top