次の方法で共有


VirtualMachineInstallPatchesResult コンストラクター

定義

オーバーロード

VirtualMachineInstallPatchesResult()

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

VirtualMachineInstallPatchesResult(String, String, String, Nullable<Boolean>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, IList<PatchInstallationDetail>, Nullable<DateTime>, ApiError)

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

VirtualMachineInstallPatchesResult()

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

public VirtualMachineInstallPatchesResult();
Public Sub New ()

適用対象

VirtualMachineInstallPatchesResult(String, String, String, Nullable<Boolean>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, IList<PatchInstallationDetail>, Nullable<DateTime>, ApiError)

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

public VirtualMachineInstallPatchesResult(string status = default, string installationActivityId = default, string rebootStatus = default, bool? maintenanceWindowExceeded = default, int? excludedPatchCount = default, int? notSelectedPatchCount = default, int? pendingPatchCount = default, int? installedPatchCount = default, int? failedPatchCount = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Compute.Models.PatchInstallationDetail> patches = default, DateTime? startDateTime = default, Microsoft.Azure.Management.Compute.Models.ApiError error = default);
new Microsoft.Azure.Management.Compute.Models.VirtualMachineInstallPatchesResult : string * string * string * Nullable<bool> * Nullable<int> * Nullable<int> * Nullable<int> * Nullable<int> * Nullable<int> * System.Collections.Generic.IList<Microsoft.Azure.Management.Compute.Models.PatchInstallationDetail> * Nullable<DateTime> * Microsoft.Azure.Management.Compute.Models.ApiError -> Microsoft.Azure.Management.Compute.Models.VirtualMachineInstallPatchesResult
Public Sub New (Optional status As String = Nothing, Optional installationActivityId As String = Nothing, Optional rebootStatus As String = Nothing, Optional maintenanceWindowExceeded As Nullable(Of Boolean) = Nothing, Optional excludedPatchCount As Nullable(Of Integer) = Nothing, Optional notSelectedPatchCount As Nullable(Of Integer) = Nothing, Optional pendingPatchCount As Nullable(Of Integer) = Nothing, Optional installedPatchCount As Nullable(Of Integer) = Nothing, Optional failedPatchCount As Nullable(Of Integer) = Nothing, Optional patches As IList(Of PatchInstallationDetail) = Nothing, Optional startDateTime As Nullable(Of DateTime) = Nothing, Optional error As ApiError = Nothing)

パラメーター

status
String

操作の全体的な成功または失敗の状態。 操作が完了するまで、"InProgress" のままです。 その時点で、"Failed"、"Succeeded"、"Unknown"、または "CompletedWithWarnings" になります。 指定できる値は、'Unknown'、'InProgress'、'Failed'、'Succeeded'、'CompletedWithWarnings' です。

installationActivityId
String

この結果を生成した操作のアクティビティ ID。 これは、CRP と拡張機能のログ間で相互に関連付けるために使用されます。

rebootStatus
String

操作が完了した後の VM の再起動状態。 指定できる値は、'Unknown'、'NotNeeded'、'Required'、'Started'、'Failed'、'Completed' です。

maintenanceWindowExceeded
Nullable<Boolean>

操作が目的のすべてのアクションを完了する前に時間が切れるかどうか。

excludedPatchCount
Nullable<Int32>

ユーザーがインストールをブロックしたためにインストールされなかったパッチの数。

notSelectedPatchCount
Nullable<Int32>

インストール可能として検出されたが、操作の条件を満たしていなかったパッチの数。

pendingPatchCount
Nullable<Int32>

インストール条件を満たしていると識別されたが、インストールできなかったパッチの数。 通常、これは maintenanceWindowExceeded == true の場合に発生します。

installedPatchCount
Nullable<Int32>

正常にインストールされたパッチの数。

failedPatchCount
Nullable<Int32>

何らかの問題が原因でインストールできなかったパッチの数。 詳細については、「エラー」を参照してください。

patches
IList<PatchInstallationDetail>

操作中にインストールされたパッチ。

startDateTime
Nullable<DateTime>

操作が開始されたときの UTC タイムスタンプ。

error
ApiError

操作の実行中に発生したエラー。 details 配列には、それらのリストが含まれています。

適用対象