ConfigurationInfoArgs

data class ConfigurationInfoArgs(val action: Output<Either<String, ActionType>>? = null, val additionalConfigurations: Output<Map<String, String>>? = null, val customizedKeys: Output<Map<String, String>>? = null, val daprProperties: Output<DaprPropertiesArgs>? = null, val deleteOrUpdateBehavior: Output<Either<String, DeleteOrUpdateBehavior>>? = null) : ConvertibleToJava<ConfigurationInfoArgs>

The configuration information, used to generate configurations or save to applications

Constructors

Link copied to clipboard
constructor(action: Output<Either<String, ActionType>>? = null, additionalConfigurations: Output<Map<String, String>>? = null, customizedKeys: Output<Map<String, String>>? = null, daprProperties: Output<DaprPropertiesArgs>? = null, deleteOrUpdateBehavior: Output<Either<String, DeleteOrUpdateBehavior>>? = null)

Properties

Link copied to clipboard
val action: Output<Either<String, ActionType>>? = null

Optional, indicate whether to apply configurations on source application. If enable, generate configurations and applied to the source application. Default is enable. If optOut, no configuration change will be made on source.

Link copied to clipboard
val additionalConfigurations: Output<Map<String, String>>? = null

A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this property is to full fill more customized configurations

Link copied to clipboard
val customizedKeys: Output<Map<String, String>>? = null

Optional. A dictionary of default key name and customized key name mapping. If not specified, default key name will be used for generate configurations

Link copied to clipboard
val daprProperties: Output<DaprPropertiesArgs>? = null

Indicates some additional properties for dapr client type

Link copied to clipboard

Indicates whether to clean up previous operation when Linker is updating or deleting

Functions

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