Show / Hide Table of Contents

Class InferenceHttpEndpoint

Represents a custom HTTP endpoint detail for inferencing.

Inheritance
object
InferenceHttpEndpoint
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 InferenceHttpEndpoint

Properties

EndpointUriSuffix

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

The suffix part of the endpoint that will be allowed for invocation.

Remarks

Required

HttpMethods

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

List of HTTP methods acceptable by the URI.

Remarks

Required

In this article
Back to top