次の方法で共有


InputPatchConfiguration コンストラクター

定義

オーバーロード

InputPatchConfiguration()

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

InputPatchConfiguration(String, InputWindowsParameters, InputLinuxParameters, IList<TaskProperties>, IList<TaskProperties>)

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

InputPatchConfiguration()

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

public InputPatchConfiguration ();
Public Sub New ()

適用対象

InputPatchConfiguration(String, InputWindowsParameters, InputLinuxParameters, IList<TaskProperties>, IList<TaskProperties>)

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

public InputPatchConfiguration (string rebootSetting = default, Microsoft.Azure.Management.Maintenance.Models.InputWindowsParameters windowsParameters = default, Microsoft.Azure.Management.Maintenance.Models.InputLinuxParameters linuxParameters = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Maintenance.Models.TaskProperties> preTasks = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Maintenance.Models.TaskProperties> postTasks = default);
new Microsoft.Azure.Management.Maintenance.Models.InputPatchConfiguration : string * Microsoft.Azure.Management.Maintenance.Models.InputWindowsParameters * Microsoft.Azure.Management.Maintenance.Models.InputLinuxParameters * System.Collections.Generic.IList<Microsoft.Azure.Management.Maintenance.Models.TaskProperties> * System.Collections.Generic.IList<Microsoft.Azure.Management.Maintenance.Models.TaskProperties> -> Microsoft.Azure.Management.Maintenance.Models.InputPatchConfiguration
Public Sub New (Optional rebootSetting As String = Nothing, Optional windowsParameters As InputWindowsParameters = Nothing, Optional linuxParameters As InputLinuxParameters = Nothing, Optional preTasks As IList(Of TaskProperties) = Nothing, Optional postTasks As IList(Of TaskProperties) = Nothing)

パラメーター

rebootSetting
String

パッチ操作が完了した後にマシンを再起動するかどうかに基づいて、ユーザーが定義した再起動優先設定が可能です。 指定できる値は、'IfRequired'、'Never'、'Always' です。

windowsParameters
InputWindowsParameters

Windows マシンの修正プログラムの適用に固有の入力パラメーター。 Linux マシンの場合は、このプロパティを渡さないでください。

linuxParameters
InputLinuxParameters

Linux マシンの修正プログラムに固有の入力パラメーター。 Windows マシンの場合は、このプロパティを渡さないでください。

preTasks
IList<TaskProperties>

事前タスクの一覧。 例: [{'source' :'runbook', 'taskScope': 'Global', 'parameters': { 'arg1': 'value1'}}]

postTasks
IList<TaskProperties>

投稿タスクの一覧。 例: [{'source' :'runbook', 'taskScope': 'Resource', 'parameters': { 'arg1': 'value1'}}]

適用対象