Class InferenceHttpEndpoint
Represents a custom HTTP endpoint detail for inferencing.
Inherited Members
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