Options Args
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
constructor(asyncOptions: Output<List<AsyncOptionsArgs>>? = null, inputMappings: Output<List<InputMappingArgs>>? = null, validationOptions: Output<ValidationOptionsArgs>? = null, virtualProperties: Output<String>? = null)
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