Share via


RunbookCreateOrUpdateDraftProperties Constructors

Definition

Overloads

RunbookCreateOrUpdateDraftProperties()

Initializes a new instance of the RunbookCreateOrUpdateDraftProperties class.

RunbookCreateOrUpdateDraftProperties(String, RunbookDraft)
RunbookCreateOrUpdateDraftProperties(String, RunbookDraft, Nullable<Boolean>, Nullable<Boolean>, String, Nullable<Int32>)

Initializes a new instance of the RunbookCreateOrUpdateDraftProperties class.

RunbookCreateOrUpdateDraftProperties()

Initializes a new instance of the RunbookCreateOrUpdateDraftProperties class.

public RunbookCreateOrUpdateDraftProperties ();
Public Sub New ()

Applies to

RunbookCreateOrUpdateDraftProperties(String, RunbookDraft)

public RunbookCreateOrUpdateDraftProperties (string runbookType, Microsoft.Azure.Management.Automation.Models.RunbookDraft draft);
new Microsoft.Azure.Management.Automation.Models.RunbookCreateOrUpdateDraftProperties : string * Microsoft.Azure.Management.Automation.Models.RunbookDraft -> Microsoft.Azure.Management.Automation.Models.RunbookCreateOrUpdateDraftProperties
Public Sub New (runbookType As String, draft As RunbookDraft)

Parameters

runbookType
String
draft
RunbookDraft

Applies to

RunbookCreateOrUpdateDraftProperties(String, RunbookDraft, Nullable<Boolean>, Nullable<Boolean>, String, Nullable<Int32>)

Initializes a new instance of the RunbookCreateOrUpdateDraftProperties class.

public RunbookCreateOrUpdateDraftProperties (string runbookType, Microsoft.Azure.Management.Automation.Models.RunbookDraft draft, bool? logVerbose = default, bool? logProgress = default, string description = default, int? logActivityTrace = default);
new Microsoft.Azure.Management.Automation.Models.RunbookCreateOrUpdateDraftProperties : string * Microsoft.Azure.Management.Automation.Models.RunbookDraft * Nullable<bool> * Nullable<bool> * string * Nullable<int> -> Microsoft.Azure.Management.Automation.Models.RunbookCreateOrUpdateDraftProperties
Public Sub New (runbookType As String, draft As RunbookDraft, Optional logVerbose As Nullable(Of Boolean) = Nothing, Optional logProgress As Nullable(Of Boolean) = Nothing, Optional description As String = Nothing, Optional logActivityTrace As Nullable(Of Integer) = Nothing)

Parameters

runbookType
String

Gets or sets the type of the runbook. Possible values include: 'Script', 'Graph', 'PowerShellWorkflow', 'PowerShell', 'GraphPowerShellWorkflow', 'GraphPowerShell'

draft
RunbookDraft

Gets or sets the draft runbook properties.

logVerbose
Nullable<Boolean>

Gets or sets verbose log option.

logProgress
Nullable<Boolean>

Gets or sets progress log option.

description
String

Gets or sets the description of the runbook.

logActivityTrace
Nullable<Int32>

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

Applies to