Show / Hide Table of Contents

Class PredictionEndpointDetails

Prediction endpoint related information.

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

Properties

BasePredictionUri

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

Base URI of prediction router.

Remarks

Required

PredictionUris

Declaration
[Required(ErrorMessage = "PredictionUris is required.")]
[JsonProperty(PropertyName = "predictionUris")]
public List<PredictionUri> PredictionUris { get; set; }
Property Value
Type Description
List<PredictionUri>

Array of all prediction URIs per use-case.

Remarks

Required

In this article
Back to top