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

WebhookCreateOrUpdateParameters 构造函数

定义

重载

WebhookCreateOrUpdateParameters()

初始化 WebhookCreateOrUpdateParameters 类的新实例。

WebhookCreateOrUpdateParameters(String, WebhookCreateOrUpdateProperties)
WebhookCreateOrUpdateParameters(String, Nullable<Boolean>, String, DateTimeOffset, IDictionary<String,String>, RunbookAssociationProperty, String)

初始化 WebhookCreateOrUpdateParameters 类的新实例。

WebhookCreateOrUpdateParameters()

初始化 WebhookCreateOrUpdateParameters 类的新实例。

public WebhookCreateOrUpdateParameters ();
Public Sub New ()

适用于

WebhookCreateOrUpdateParameters(String, WebhookCreateOrUpdateProperties)

public WebhookCreateOrUpdateParameters (string name, Microsoft.Azure.Management.Automation.Models.WebhookCreateOrUpdateProperties properties);
new Microsoft.Azure.Management.Automation.Models.WebhookCreateOrUpdateParameters : string * Microsoft.Azure.Management.Automation.Models.WebhookCreateOrUpdateProperties -> Microsoft.Azure.Management.Automation.Models.WebhookCreateOrUpdateParameters
Public Sub New (name As String, properties As WebhookCreateOrUpdateProperties)

参数

name
String

适用于

WebhookCreateOrUpdateParameters(String, Nullable<Boolean>, String, DateTimeOffset, IDictionary<String,String>, RunbookAssociationProperty, String)

初始化 WebhookCreateOrUpdateParameters 类的新实例。

public WebhookCreateOrUpdateParameters (string name, bool? isEnabled = default, string uri = default, DateTimeOffset expiryTime = default, System.Collections.Generic.IDictionary<string,string> parameters = default, Microsoft.Azure.Management.Automation.Models.RunbookAssociationProperty runbook = default, string runOn = default);
new Microsoft.Azure.Management.Automation.Models.WebhookCreateOrUpdateParameters : string * Nullable<bool> * string * DateTimeOffset * System.Collections.Generic.IDictionary<string, string> * Microsoft.Azure.Management.Automation.Models.RunbookAssociationProperty * string -> Microsoft.Azure.Management.Automation.Models.WebhookCreateOrUpdateParameters
Public Sub New (name As String, Optional isEnabled As Nullable(Of Boolean) = Nothing, Optional uri As String = Nothing, Optional expiryTime As DateTimeOffset = Nothing, Optional parameters As IDictionary(Of String, String) = Nothing, Optional runbook As RunbookAssociationProperty = Nothing, Optional runOn As String = Nothing)

参数

name
String

获取或设置 Webhook 的名称。

isEnabled
Nullable<Boolean>

获取或设置 webhook 的已启用标志的值。

uri
String

获取或设置 URI。

expiryTime
DateTimeOffset

获取或设置到期时间。

parameters
IDictionary<String,String>

获取或设置作业的参数。

runbook
RunbookAssociationProperty

获取或设置 Runbook。

runOn
String

获取或设置运行 Webhook 作业的混合辅助角色组的名称。

适用于