Show / Hide Table of Contents

Class OnDemandServingMode

The model's serving mode is on-demand serving on a shared infrastructure.

Inheritance
object
ServingMode
OnDemandServingMode
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GenerativeaiinferenceService.Models
Assembly: OCI.DotNetSDK.Generativeaiinference.dll
Syntax
public class OnDemandServingMode : ServingMode

Properties

ModelId

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

The unique ID of a model to use. You can use the {@link #listModels(ListModelsRequest) listModels} API to list the available models.

Remarks

Required

In this article
Back to top