VirtualMachineInstallPatchesResult コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
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 == true の場合に発生します。
- patches
- IList<PatchInstallationDetail>
操作中にインストールされたパッチ。
- error
- ApiError
操作の実行中に発生したエラー。 details 配列には、それらのリストが含まれています。
適用対象
Azure SDK for .NET