Share via


WebhookUpdateParameters Constructors

Definition

Overloads

WebhookUpdateParameters()

Initializes a new instance of the WebhookUpdateParameters class.

WebhookUpdateParameters(String, Nullable<Boolean>, String, IDictionary<String,String>, String)

Initializes a new instance of the WebhookUpdateParameters class.

WebhookUpdateParameters()

Initializes a new instance of the WebhookUpdateParameters class.

public WebhookUpdateParameters ();
Public Sub New ()

Applies to

WebhookUpdateParameters(String, Nullable<Boolean>, String, IDictionary<String,String>, String)

Initializes a new instance of the WebhookUpdateParameters class.

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

Parameters

name
String

Gets or sets the name of the webhook.

isEnabled
Nullable<Boolean>

Gets or sets the value of the enabled flag of webhook.

runOn
String

Gets or sets the name of the hybrid worker group the webhook job will run on.

parameters
IDictionary<String,String>

Gets or sets the parameters of the job.

description
String

Gets or sets the description of the webhook.

Applies to