OptionsArgs

data class OptionsArgs(val asyncOptions: Output<List<AsyncOptionsArgs>>? = null, val inputMappings: Output<List<InputMappingArgs>>? = null, val validationOptions: Output<ValidationOptionsArgs>? = null, val virtualProperties: Output<String>? = null) : ConvertibleToJava<OptionsArgs>

Options allows customized resource handling by Deployment Manager.

Constructors

Link copied to clipboard
fun OptionsArgs(asyncOptions: Output<List<AsyncOptionsArgs>>? = null, inputMappings: Output<List<InputMappingArgs>>? = null, validationOptions: Output<ValidationOptionsArgs>? = null, virtualProperties: Output<String>? = null)

Functions

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

Properties

Link copied to clipboard
val asyncOptions: Output<List<AsyncOptionsArgs>>? = null

Options regarding how to thread async requests.

Link copied to clipboard
val inputMappings: Output<List<InputMappingArgs>>? = null

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
val virtualProperties: Output<String>? = null

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