Compartir a través de


WhatIfChange Constructores

Definición

Sobrecargas

WhatIfChange()

Inicializa una nueva instancia de la clase WhatIfChange.

WhatIfChange(String, ChangeType, String, Object, Object, IList<WhatIfPropertyChange>)

Inicializa una nueva instancia de la clase WhatIfChange.

WhatIfChange()

Inicializa una nueva instancia de la clase WhatIfChange.

public WhatIfChange ();
Public Sub New ()

Se aplica a

WhatIfChange(String, ChangeType, String, Object, Object, IList<WhatIfPropertyChange>)

Inicializa una nueva instancia de la clase WhatIfChange.

public WhatIfChange (string resourceId, Microsoft.Azure.Management.ResourceManager.Fluent.Models.ChangeType changeType, string unsupportedReason = default, object before = default, object after = default, System.Collections.Generic.IList<Microsoft.Azure.Management.ResourceManager.Fluent.Models.WhatIfPropertyChange> delta = default);
new Microsoft.Azure.Management.ResourceManager.Fluent.Models.WhatIfChange : string * Microsoft.Azure.Management.ResourceManager.Fluent.Models.ChangeType * string * obj * obj * System.Collections.Generic.IList<Microsoft.Azure.Management.ResourceManager.Fluent.Models.WhatIfPropertyChange> -> Microsoft.Azure.Management.ResourceManager.Fluent.Models.WhatIfChange
Public Sub New (resourceId As String, changeType As ChangeType, Optional unsupportedReason As String = Nothing, Optional before As Object = Nothing, Optional after As Object = Nothing, Optional delta As IList(Of WhatIfPropertyChange) = Nothing)

Parámetros

resourceId
String

Id. de recurso

changeType
ChangeType

Tipo de cambio que se realizará en el recurso cuando se ejecute la implementación. Entre los valores posibles se incluyen: 'Create', 'Delete', 'Ignore', 'Deploy', 'NoChange', 'Modify', 'Unsupported'

unsupportedReason
String

Explicación sobre por qué el recurso no es compatible con What-If.

before
Object

Instantánea del recurso antes de ejecutar la implementación.

after
Object

Instantánea prevista del recurso después de ejecutar la implementación.

delta
IList<WhatIfPropertyChange>

Cambios previstos en las propiedades de recursos.

Se aplica a