Show / Hide Table of Contents

Class RenameHeaderPolicyItem

The value will be a copy of the original value of the source header and will not be affected by any other transformation policies applied to that header.

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

Properties

From

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

The original case-insensitive name of the header. This name must be unique across transformation policies.

Remarks

Required

To

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

The new name of the header. This name must be unique across transformation policies.

Remarks

Required

In this article
Back to top