Share via


RunbookDraft Constructors

Definition

Overloads

RunbookDraft()

Initializes a new instance of the RunbookDraft class.

RunbookDraft(Nullable<Boolean>, ContentLink, DateTimeOffset, DateTimeOffset, IDictionary<String,RunbookParameter>, IList<String>)

Initializes a new instance of the RunbookDraft class.

RunbookDraft()

Initializes a new instance of the RunbookDraft class.

public RunbookDraft ();
Public Sub New ()

Applies to

Initializes a new instance of the RunbookDraft class.

public RunbookDraft (bool? inEdit = default, Microsoft.Azure.Management.Automation.Models.ContentLink draftContentLink = default, DateTimeOffset creationTime = default, DateTimeOffset lastModifiedTime = default, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.Automation.Models.RunbookParameter> parameters = default, System.Collections.Generic.IList<string> outputTypes = default);
new Microsoft.Azure.Management.Automation.Models.RunbookDraft : Nullable<bool> * Microsoft.Azure.Management.Automation.Models.ContentLink * DateTimeOffset * DateTimeOffset * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.Automation.Models.RunbookParameter> * System.Collections.Generic.IList<string> -> Microsoft.Azure.Management.Automation.Models.RunbookDraft
Public Sub New (Optional inEdit As Nullable(Of Boolean) = Nothing, Optional draftContentLink As ContentLink = Nothing, Optional creationTime As DateTimeOffset = Nothing, Optional lastModifiedTime As DateTimeOffset = Nothing, Optional parameters As IDictionary(Of String, RunbookParameter) = Nothing, Optional outputTypes As IList(Of String) = Nothing)

Parameters

inEdit
Nullable<Boolean>

Gets or sets whether runbook is in edit mode.

draftContentLink
ContentLink

Gets or sets the draft runbook content link.

creationTime
DateTimeOffset

Gets or sets the creation time of the runbook draft.

lastModifiedTime
DateTimeOffset

Gets or sets the last modified time of the runbook draft.

parameters
IDictionary<String,RunbookParameter>

Gets or sets the runbook draft parameters.

outputTypes
IList<String>

Gets or sets the runbook output types.

Applies to