RequestResponse

data class RequestResponse(val addr: String? = null, val host: String? = null, val id: String? = null, val method: String? = null, val useragent: String? = null)

The request that generated the event.

Constructors

Link copied to clipboard
constructor(addr: String? = null, host: String? = null, id: String? = null, method: String? = null, useragent: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val addr: String? = null

The IP or hostname and possibly port of the client connection that initiated the event. This is the RemoteAddr from the standard http request.

Link copied to clipboard
val host: String? = null

The externally accessible hostname of the registry instance, as specified by the http host header on incoming requests.

Link copied to clipboard
val id: String? = null

The ID of the request that initiated the event.

Link copied to clipboard
val method: String? = null

The request method that generated the event.

Link copied to clipboard
val useragent: String? = null

The user agent header of the request.