Share via


RunbookUpdateParameters Constructors

Definition

Overloads

RunbookUpdateParameters()

Initializes a new instance of the RunbookUpdateParameters class.

RunbookUpdateParameters(String, Nullable<Boolean>, Nullable<Boolean>, Nullable<Int32>, String, String, IDictionary<String,String>)

Initializes a new instance of the RunbookUpdateParameters class.

RunbookUpdateParameters()

Initializes a new instance of the RunbookUpdateParameters class.

public RunbookUpdateParameters ();
Public Sub New ()

Applies to

RunbookUpdateParameters(String, Nullable<Boolean>, Nullable<Boolean>, Nullable<Int32>, String, String, IDictionary<String,String>)

Initializes a new instance of the RunbookUpdateParameters class.

public RunbookUpdateParameters (string description = default, bool? logVerbose = default, bool? logProgress = default, int? logActivityTrace = default, string name = default, string location = default, System.Collections.Generic.IDictionary<string,string> tags = default);
new Microsoft.Azure.Management.Automation.Models.RunbookUpdateParameters : string * Nullable<bool> * Nullable<bool> * Nullable<int> * string * string * System.Collections.Generic.IDictionary<string, string> -> Microsoft.Azure.Management.Automation.Models.RunbookUpdateParameters
Public Sub New (Optional description As String = Nothing, Optional logVerbose As Nullable(Of Boolean) = Nothing, Optional logProgress As Nullable(Of Boolean) = Nothing, Optional logActivityTrace As Nullable(Of Integer) = Nothing, Optional name As String = Nothing, Optional location As String = Nothing, Optional tags As IDictionary(Of String, String) = Nothing)

Parameters

description
String

Gets or sets the description of the runbook.

logVerbose
Nullable<Boolean>

Gets or sets verbose log option.

logProgress
Nullable<Boolean>

Gets or sets progress log option.

logActivityTrace
Nullable<Int32>

Gets or sets the activity-level tracing options of the runbook.

name
String

Gets or sets the name of the resource.

location
String

Gets or sets the location of the resource.

tags
IDictionary<String,String>

Gets or sets the tags attached to the resource.

Applies to