Share via


RunbookCreateOrUpdateParameters Constructors

Definition

Overloads

RunbookCreateOrUpdateParameters()

Initializes a new instance of the RunbookCreateOrUpdateParameters class.

RunbookCreateOrUpdateParameters(RunbookCreateOrUpdateProperties)
RunbookCreateOrUpdateParameters(String, Nullable<Boolean>, Nullable<Boolean>, RunbookDraft, ContentLink, String, Nullable<Int32>, String, String, IDictionary<String,String>)

Initializes a new instance of the RunbookCreateOrUpdateParameters class.

RunbookCreateOrUpdateParameters()

Initializes a new instance of the RunbookCreateOrUpdateParameters class.

public RunbookCreateOrUpdateParameters ();
Public Sub New ()

Applies to

RunbookCreateOrUpdateParameters(RunbookCreateOrUpdateProperties)

public RunbookCreateOrUpdateParameters (Microsoft.Azure.Management.Automation.Models.RunbookCreateOrUpdateProperties properties);
new Microsoft.Azure.Management.Automation.Models.RunbookCreateOrUpdateParameters : Microsoft.Azure.Management.Automation.Models.RunbookCreateOrUpdateProperties -> Microsoft.Azure.Management.Automation.Models.RunbookCreateOrUpdateParameters
Public Sub New (properties As RunbookCreateOrUpdateProperties)

Parameters

Applies to

Initializes a new instance of the RunbookCreateOrUpdateParameters class.

public RunbookCreateOrUpdateParameters (string runbookType, bool? logVerbose = default, bool? logProgress = default, Microsoft.Azure.Management.Automation.Models.RunbookDraft draft = default, Microsoft.Azure.Management.Automation.Models.ContentLink publishContentLink = default, string description = default, int? logActivityTrace = default, string name = default, string location = default, System.Collections.Generic.IDictionary<string,string> tags = default);
new Microsoft.Azure.Management.Automation.Models.RunbookCreateOrUpdateParameters : string * Nullable<bool> * Nullable<bool> * Microsoft.Azure.Management.Automation.Models.RunbookDraft * Microsoft.Azure.Management.Automation.Models.ContentLink * string * Nullable<int> * string * string * System.Collections.Generic.IDictionary<string, string> -> Microsoft.Azure.Management.Automation.Models.RunbookCreateOrUpdateParameters
Public Sub New (runbookType As String, Optional logVerbose As Nullable(Of Boolean) = Nothing, Optional logProgress As Nullable(Of Boolean) = Nothing, Optional draft As RunbookDraft = Nothing, Optional publishContentLink As ContentLink = Nothing, Optional description As String = 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

runbookType
String

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

logVerbose
Nullable<Boolean>

Gets or sets verbose log option.

logProgress
Nullable<Boolean>

Gets or sets progress log option.

draft
RunbookDraft

Gets or sets the draft runbook properties.

publishContentLink
ContentLink

Gets or sets the published runbook content link.

description
String

Gets or sets the description of the runbook.

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