Share via


TaskProperties Constructors

Definition

Overloads

TaskProperties()

Initializes a new instance of the TaskProperties class.

TaskProperties(IDictionary<String,String>, String, String)

Initializes a new instance of the TaskProperties class.

TaskProperties()

Initializes a new instance of the TaskProperties class.

public TaskProperties ();
Public Sub New ()

Applies to

TaskProperties(IDictionary<String,String>, String, String)

Initializes a new instance of the TaskProperties class.

public TaskProperties (System.Collections.Generic.IDictionary<string,string> parameters = default, string source = default, string taskScope = default);
new Microsoft.Azure.Management.Maintenance.Models.TaskProperties : System.Collections.Generic.IDictionary<string, string> * string * string -> Microsoft.Azure.Management.Maintenance.Models.TaskProperties
Public Sub New (Optional parameters As IDictionary(Of String, String) = Nothing, Optional source As String = Nothing, Optional taskScope As String = Nothing)

Parameters

parameters
IDictionary<String,String>

Gets or sets the parameters of the task.

source
String

Gets or sets the name of the runbook.

taskScope
String

Global Task execute once when schedule trigger. Resource task execute for each VM. Possible values include: 'Global', 'Resource'

Applies to