ArmDeploymentWhatIfProperties Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Deployment What-if properties.
public class ArmDeploymentWhatIfProperties : Azure.ResourceManager.Resources.Models.ArmDeploymentProperties, System.ClientModel.Primitives.IJsonModel<Azure.ResourceManager.Resources.Models.ArmDeploymentWhatIfProperties>, System.ClientModel.Primitives.IPersistableModel<Azure.ResourceManager.Resources.Models.ArmDeploymentWhatIfProperties>
public class ArmDeploymentWhatIfProperties : Azure.ResourceManager.Resources.Models.ArmDeploymentProperties
type ArmDeploymentWhatIfProperties = class
inherit ArmDeploymentProperties
interface IJsonModel<ArmDeploymentWhatIfProperties>
interface IPersistableModel<ArmDeploymentWhatIfProperties>
type ArmDeploymentWhatIfProperties = class
inherit ArmDeploymentProperties
Public Class ArmDeploymentWhatIfProperties
Inherits ArmDeploymentProperties
Implements IJsonModel(Of ArmDeploymentWhatIfProperties), IPersistableModel(Of ArmDeploymentWhatIfProperties)
Public Class ArmDeploymentWhatIfProperties
Inherits ArmDeploymentProperties
- Inheritance
- Implements
Constructors
ArmDeploymentWhatIfProperties(ArmDeploymentMode) |
Initializes a new instance of ArmDeploymentWhatIfProperties. |
Properties
DebugSettingDetailLevel |
Specifies the type of information to log for debugging. The permitted values are none, requestContent, responseContent, or both requestContent and responseContent separated by a comma. The default is none. When setting this value, carefully consider the type of information you are passing in during deployment. By logging information about the request or response, you could potentially expose sensitive data that is retrieved through the deployment operations. (Inherited from ArmDeploymentProperties) |
ErrorDeployment |
The deployment on error behavior. (Inherited from ArmDeploymentProperties) |
ExpressionEvaluationScope |
The scope to be used for evaluation of parameters, variables and functions in a nested template. (Inherited from ArmDeploymentProperties) |
Mode |
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. (Inherited from ArmDeploymentProperties) |
Parameters |
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. To assign an object to this property use FromObjectAsJson<T>(T, JsonSerializerOptions). To assign an already formatted json string to this property use FromString(String). Examples:
|
ParametersLink |
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. (Inherited from ArmDeploymentProperties) |
Template |
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. To assign an object to this property use FromObjectAsJson<T>(T, JsonSerializerOptions). To assign an already formatted json string to this property use FromString(String). Examples:
|
TemplateLink |
The URI of the template. Use either the templateLink property or the template property, but not both. (Inherited from ArmDeploymentProperties) |
WhatIfResultFormat |
The format of the What-If results. |
Explicit Interface Implementations
Applies to
Azure SDK for .NET