Show / Hide Table of Contents

Class HTTPBackend

Send the request to an HTTP backend.

Inheritance
object
ApiSpecificationRouteBackend
HTTPBackend
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ApigatewayService.Models
Assembly: OCI.DotNetSDK.Apigateway.dll
Syntax
public class HTTPBackend : ApiSpecificationRouteBackend

Properties

ConnectTimeoutInSeconds

Declaration
[JsonProperty(PropertyName = "connectTimeoutInSeconds")]
public float? ConnectTimeoutInSeconds { get; set; }
Property Value
Type Description
float?

Defines a timeout for establishing a connection with a proxied server.

IsSslVerifyDisabled

Declaration
[JsonProperty(PropertyName = "isSslVerifyDisabled")]
public bool? IsSslVerifyDisabled { get; set; }
Property Value
Type Description
bool?

Defines whether or not to uphold SSL verification.

ReadTimeoutInSeconds

Declaration
[JsonProperty(PropertyName = "readTimeoutInSeconds")]
public float? ReadTimeoutInSeconds { get; set; }
Property Value
Type Description
float?

Defines a timeout for reading a response from the proxied server.

SendTimeoutInSeconds

Declaration
[JsonProperty(PropertyName = "sendTimeoutInSeconds")]
public float? SendTimeoutInSeconds { get; set; }
Property Value
Type Description
float?

Defines a timeout for transmitting a request to the proxied server.

Url

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

Required

In this article
Back to top