WebhookInner Constructors

Definition

Overloads

WebhookInner()

Initializes a new instance of the WebhookInner class.

WebhookInner(IList<String>, String, String, String, String, IDictionary<String,String>, String, String, String)

Initializes a new instance of the WebhookInner class.

WebhookInner()

Initializes a new instance of the WebhookInner class.

public WebhookInner ();
Public Sub New ()

Applies to

WebhookInner(IList<String>, String, String, String, String, IDictionary<String,String>, String, String, String)

Initializes a new instance of the WebhookInner class.

public WebhookInner (System.Collections.Generic.IList<string> actions, string location = default, string id = default, string name = default, string type = default, System.Collections.Generic.IDictionary<string,string> tags = default, string status = default, string scope = default, string provisioningState = default);
new Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.WebhookInner : System.Collections.Generic.IList<string> * string * string * string * string * System.Collections.Generic.IDictionary<string, string> * string * string * string -> Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.WebhookInner
Public Sub New (actions As IList(Of String), Optional location As String = Nothing, Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional tags As IDictionary(Of String, String) = Nothing, Optional status As String = Nothing, Optional scope As String = Nothing, Optional provisioningState As String = Nothing)

Parameters

actions
IList<String>

The list of actions that trigger the webhook to post notifications.

location
String
id
String
name
String
type
String
status
String

The status of the webhook at the time the operation was called. Possible values include: 'enabled', 'disabled'

scope
String

The scope of repositories where the event can be triggered. For example, 'foo:*' means events for all tags under repository 'foo'. 'foo:bar' means events for 'foo:bar' only. 'foo' is equivalent to 'foo:latest'. Empty means all events.

provisioningState
String

The provisioning state of the webhook at the time the operation was called. Possible values include: 'Creating', 'Updating', 'Deleting', 'Succeeded', 'Failed', 'Canceled'

Applies to