WhatIfPropertyChange Constructors
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.
Overloads
WhatIfPropertyChange() |
Initializes a new instance of the WhatIfPropertyChange class. |
WhatIfPropertyChange(String, PropertyChangeType, Object, Object, IList<WhatIfPropertyChange>) |
Initializes a new instance of the WhatIfPropertyChange class. |
WhatIfPropertyChange()
Initializes a new instance of the WhatIfPropertyChange class.
public WhatIfPropertyChange ();
Public Sub New ()
Applies to
WhatIfPropertyChange(String, PropertyChangeType, Object, Object, IList<WhatIfPropertyChange>)
Initializes a new instance of the WhatIfPropertyChange class.
public WhatIfPropertyChange (string path, Microsoft.Azure.Management.ResourceManager.Models.PropertyChangeType propertyChangeType, object before = default, object after = default, System.Collections.Generic.IList<Microsoft.Azure.Management.ResourceManager.Models.WhatIfPropertyChange> children = default);
new Microsoft.Azure.Management.ResourceManager.Models.WhatIfPropertyChange : string * Microsoft.Azure.Management.ResourceManager.Models.PropertyChangeType * obj * obj * System.Collections.Generic.IList<Microsoft.Azure.Management.ResourceManager.Models.WhatIfPropertyChange> -> Microsoft.Azure.Management.ResourceManager.Models.WhatIfPropertyChange
Public Sub New (path As String, propertyChangeType As PropertyChangeType, Optional before As Object = Nothing, Optional after As Object = Nothing, Optional children As IList(Of WhatIfPropertyChange) = Nothing)
Parameters
- path
- String
The path of the property.
- propertyChangeType
- PropertyChangeType
The type of property change. Possible values include: 'Create', 'Delete', 'Modify', 'Array', 'NoEffect'
- before
- Object
The value of the property before the deployment is executed.
- after
- Object
The value of the property after the deployment is executed.
- children
- IList<WhatIfPropertyChange>
Nested property changes.
Applies to
Azure SDK for .NET