RouteSpecGrpcRouteMatchMetadataMatch

data class RouteSpecGrpcRouteMatchMetadataMatch(val exact: String? = null, val prefix: String? = null, val range: RouteSpecGrpcRouteMatchMetadataMatchRange? = null, val regex: String? = null, val suffix: String? = null)

Constructors

Link copied to clipboard
constructor(exact: String? = null, prefix: String? = null, range: RouteSpecGrpcRouteMatchMetadataMatchRange? = null, regex: String? = null, suffix: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val exact: String? = null

Value sent by the client must match the specified value exactly. Must be between 1 and 255 characters in length.

Link copied to clipboard
val prefix: String? = null

Value sent by the client must begin with the specified characters. Must be between 1 and 255 characters in length.

Link copied to clipboard

Object that specifies the range of numbers that the value sent by the client must be included in.

Link copied to clipboard
val regex: String? = null

Value sent by the client must include the specified characters. Must be between 1 and 255 characters in length.

Link copied to clipboard
val suffix: String? = null

Value sent by the client must end with the specified characters. Must be between 1 and 255 characters in length.