Share via


WebhookCreateOrUpdateParameters Constructors

Definition

Overloads

WebhookCreateOrUpdateParameters()

Initializes a new instance of the WebhookCreateOrUpdateParameters class.

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

Initializes a new instance of the WebhookCreateOrUpdateParameters class.

WebhookCreateOrUpdateParameters()

Initializes a new instance of the WebhookCreateOrUpdateParameters class.

public WebhookCreateOrUpdateParameters ();
Public Sub New ()

Applies to

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)

Parameters

name
String

Applies to

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

Initializes a new instance of the WebhookCreateOrUpdateParameters class.

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)

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.

uri
String

Gets or sets the uri.

expiryTime
DateTimeOffset

Gets or sets the expiry time.

parameters
IDictionary<String,String>

Gets or sets the parameters of the job.

runbook
RunbookAssociationProperty

Gets or sets the runbook.

runOn
String

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

Applies to