你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

RunbookCreateOrUpdateDraftProperties 构造函数

定义

重载

RunbookCreateOrUpdateDraftProperties()

初始化 RunbookCreateOrUpdateDraftProperties 类的新实例。

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

初始化 RunbookCreateOrUpdateDraftProperties 类的新实例。

RunbookCreateOrUpdateDraftProperties()

初始化 RunbookCreateOrUpdateDraftProperties 类的新实例。

public RunbookCreateOrUpdateDraftProperties ();
Public Sub New ()

适用于

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)

参数

runbookType
String
draft
RunbookDraft

适用于

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

初始化 RunbookCreateOrUpdateDraftProperties 类的新实例。

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)

参数

runbookType
String

获取或设置 Runbook 的类型。 可能的值包括:“Script”、“Graph”、“PowerShellWorkflow”、“PowerShell”、“GraphPowerShellWorkflow”、“GraphPowerShell”

draft
RunbookDraft

获取或设置草稿 Runbook 属性。

logVerbose
Nullable<Boolean>

获取或设置详细日志选项。

logProgress
Nullable<Boolean>

获取或设置进度日志选项。

description
String

获取或设置 Runbook 的说明。

logActivityTrace
Nullable<Int32>

获取或设置 Runbook 的活动级跟踪选项。

适用于