Show / Hide Table of Contents

Class ModifyResponseValidationFailurePolicy

Policy to specify how to modify the response code, body and headers.

Inheritance
object
ValidationFailurePolicy
ModifyResponseValidationFailurePolicy
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 ModifyResponseValidationFailurePolicy : ValidationFailurePolicy

Properties

ResponseCode

Declaration
[JsonProperty(PropertyName = "responseCode")]
public string ResponseCode { get; set; }
Property Value
Type Description
string

HTTP response code, can include context variables.

ResponseHeaderTransformations

Declaration
[JsonProperty(PropertyName = "responseHeaderTransformations")]
public HeaderTransformationPolicy ResponseHeaderTransformations { get; set; }
Property Value
Type Description
HeaderTransformationPolicy

ResponseMessage

Declaration
[JsonProperty(PropertyName = "responseMessage")]
public string ResponseMessage { get; set; }
Property Value
Type Description
string

HTTP response message.

In this article
Back to top