BackendCredentialsArgs

data class BackendCredentialsArgs(val authorization: Output<BackendCredentialsAuthorizationArgs>? = null, val certificates: Output<List<String>>? = null, val header: Output<Map<String, String>>? = null, val query: Output<Map<String, String>>? = null) : ConvertibleToJava<BackendCredentialsArgs>

Constructors

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

Properties

Link copied to clipboard

An authorization block as defined below.

Link copied to clipboard
val certificates: Output<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: Output<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: Output<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.

Functions

Link copied to clipboard
open override fun toJava(): BackendCredentialsArgs