次の方法で共有


WhatIfChange コンストラクター

定義

オーバーロード

WhatIfChange()

WhatIfChange クラスの新しいインスタンスを初期化します。

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

WhatIfChange クラスの新しいインスタンスを初期化します。

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

WhatIfChange クラスの新しいインスタンスを初期化します。

WhatIfChange()

WhatIfChange クラスの新しいインスタンスを初期化します。

public WhatIfChange ();
Public Sub New ()

適用対象

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

WhatIfChange クラスの新しいインスタンスを初期化します。

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

パラメーター

resourceId
String

Resource ID

changeType
ChangeType

デプロイの実行時にリソースに対して行われる変更の種類。 指定できる値は、'Create'、'Delete'、'Ignore'、'Deploy'、'NoChange'、'Modify' です。

before
Object

デプロイが実行される前のリソースのスナップショット。

after
Object

デプロイの実行後に予測されるリソースのスナップショット。

delta
IList<WhatIfPropertyChange>

リソース プロパティに対する予測された変更。

適用対象

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

WhatIfChange クラスの新しいインスタンスを初期化します。

public WhatIfChange (string resourceId, Microsoft.Azure.Management.ResourceManager.Models.ChangeType changeType, string unsupportedReason = default, object before = default, object after = default, System.Collections.Generic.IList<Microsoft.Azure.Management.ResourceManager.Models.WhatIfPropertyChange> delta = default);
new Microsoft.Azure.Management.ResourceManager.Models.WhatIfChange : string * Microsoft.Azure.Management.ResourceManager.Models.ChangeType * string * obj * obj * System.Collections.Generic.IList<Microsoft.Azure.Management.ResourceManager.Models.WhatIfPropertyChange> -> Microsoft.Azure.Management.ResourceManager.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)

パラメーター

resourceId
String

Resource ID

changeType
ChangeType

デプロイの実行時にリソースに対して行われる変更の種類。 使用可能な値には、'Create'、'Delete'、'Ignore'、'Deploy'、'NoChange'、'Modify'、'Unsupported' などがあります。

unsupportedReason
String

What-If でリソースがサポートされていない理由に関する説明。

before
Object

デプロイが実行される前のリソースのスナップショット。

after
Object

デプロイの実行後に予測されるリソースのスナップショット。

delta
IList<WhatIfPropertyChange>

リソース プロパティに対する予測された変更。

適用対象