OptionsResponse

data class OptionsResponse(val asyncOptions: List<AsyncOptionsResponse>, val inputMappings: List<InputMappingResponse>, val validationOptions: ValidationOptionsResponse, val virtualProperties: String)

Options allows customized resource handling by Deployment Manager.

Constructors

Link copied to clipboard
fun OptionsResponse(asyncOptions: List<AsyncOptionsResponse>, inputMappings: List<InputMappingResponse>, validationOptions: ValidationOptionsResponse, virtualProperties: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Options regarding how to thread async requests.

Link copied to clipboard

The mappings that apply for requests.

Link copied to clipboard

Options for how to validate and process properties on a resource.

Link copied to clipboard

Additional properties block described as a jsonSchema, these properties will never be part of the json payload, but they can be consumed by InputMappings, this must be a valid json schema draft-04. The properties specified here will be decouple in a different section. This schema will be merged to the schema validation, and properties here will be extracted From the payload and consumed explicitly by InputMappings. ex: field1: type: string field2: type: number