Show / Hide Table of Contents

Class RenameQueryParameterPolicyItem

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

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

Properties

From

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

The original case-sensitive name of the query parameter. 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 query parameter. This name must be unique across transformation policies.

Remarks

Required

In this article
Back to top