ServiceCorsConfigurationInfoResponse

data class ServiceCorsConfigurationInfoResponse(val allowCredentials: Boolean? = null, val headers: List<String>? = null, val maxAge: Double? = null, val methods: List<String>? = null, val origins: List<String>? = null)

The settings for the CORS configuration of the service instance.

Constructors

Link copied to clipboard
constructor(allowCredentials: Boolean? = null, headers: List<String>? = null, maxAge: Double? = null, methods: List<String>? = null, origins: List<String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

If credentials are allowed via CORS.

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

The headers to be allowed via CORS.

Link copied to clipboard
val maxAge: Double? = null

The max age to be allowed via CORS.

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

The methods to be allowed via CORS.

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

The origins to be allowed via CORS.