BackendCredentials

data class BackendCredentials(val authorization: BackendCredentialsAuthorization? = null, val certificates: List<String>? = null, val header: Map<String, String>? = null, val query: Map<String, String>? = null)

Constructors

Link copied to clipboard
constructor(authorization: BackendCredentialsAuthorization? = null, certificates: List<String>? = null, header: Map<String, String>? = null, query: Map<String, String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

An authorization block as defined below.

Link copied to clipboard
val certificates: List<String>? = null

A list of client certificate thumbprints to present to the backend host. The certificates must exist within the API Management Service.

Link copied to clipboard
val header: Map<String, String>? = null

A mapping of header parameters to pass to the backend host. The keys are the header names and the values are a comma separated string of header values. This is converted to a list before being passed to the API.

Link copied to clipboard
val query: Map<String, String>? = null

A mapping of query parameters to pass to the backend host. The keys are the query names and the values are a comma separated string of query values. This is converted to a list before being passed to the API.