DeploymentPropertiesArgs

data class DeploymentPropertiesArgs(val debugSetting: Output<DebugSettingArgs>? = null, val expressionEvaluationOptions: Output<ExpressionEvaluationOptionsArgs>? = null, val mode: Output<DeploymentMode>, val onErrorDeployment: Output<OnErrorDeploymentArgs>? = null, val parameters: Output<Map<String, DeploymentParameterArgs>>? = null, val parametersLink: Output<ParametersLinkArgs>? = null, val template: Output<Any>? = null, val templateLink: Output<TemplateLinkArgs>? = null) : ConvertibleToJava<DeploymentPropertiesArgs>

Deployment properties.

Constructors

Link copied to clipboard
constructor(debugSetting: Output<DebugSettingArgs>? = null, expressionEvaluationOptions: Output<ExpressionEvaluationOptionsArgs>? = null, mode: Output<DeploymentMode>, onErrorDeployment: Output<OnErrorDeploymentArgs>? = null, parameters: Output<Map<String, DeploymentParameterArgs>>? = null, parametersLink: Output<ParametersLinkArgs>? = null, template: Output<Any>? = null, templateLink: Output<TemplateLinkArgs>? = null)

Properties

Link copied to clipboard
val debugSetting: Output<DebugSettingArgs>? = null

The debug setting of the deployment.

Link copied to clipboard

Specifies whether template expressions are evaluated within the scope of the parent template or nested template. Only applicable to nested templates. If not specified, default value is outer.

Link copied to clipboard
val mode: Output<DeploymentMode>

The mode that is used to deploy resources. This value can be either Incremental or Complete. In Incremental mode, resources are deployed without deleting existing resources that are not included in the template. In Complete mode, resources are deployed and existing resources in the resource group that are not included in the template are deleted. Be careful when using Complete mode as you may unintentionally delete resources.

Link copied to clipboard

The deployment on error behavior.

Link copied to clipboard

Name and value pairs that define the deployment parameters for the template. You use this element when you want to provide the parameter values directly in the request rather than link to an existing parameter file. Use either the parametersLink property or the parameters property, but not both. It can be a JObject or a well formed JSON string.

Link copied to clipboard
val parametersLink: Output<ParametersLinkArgs>? = null

The URI of parameters file. You use this element to link to an existing parameters file. Use either the parametersLink property or the parameters property, but not both.

Link copied to clipboard
val template: Output<Any>? = null

The template content. You use this element when you want to pass the template syntax directly in the request rather than link to an existing template. It can be a JObject or well-formed JSON string. Use either the templateLink property or the template property, but not both.

Link copied to clipboard
val templateLink: Output<TemplateLinkArgs>? = null

The URI of the template. Use either the templateLink property or the template property, but not both.

Functions

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