Webhook Construtores
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
Webhook() |
Inicializa uma nova instância da classe Webhook. |
Webhook(String, IList<String>, String, String, String, IDictionary<String,String>, SystemData, String, String, String) |
Inicializa uma nova instância da classe Webhook. |
Webhook()
Inicializa uma nova instância da classe Webhook.
public Webhook ();
Public Sub New ()
Aplica-se a
Webhook(String, IList<String>, String, String, String, IDictionary<String,String>, SystemData, String, String, String)
Inicializa uma nova instância da classe Webhook.
public Webhook (string location, System.Collections.Generic.IList<string> actions, string id = default, string name = default, string type = default, System.Collections.Generic.IDictionary<string,string> tags = default, Microsoft.Azure.Management.ContainerRegistry.Models.SystemData systemData = default, string status = default, string scope = default, string provisioningState = default);
new Microsoft.Azure.Management.ContainerRegistry.Models.Webhook : string * System.Collections.Generic.IList<string> * string * string * string * System.Collections.Generic.IDictionary<string, string> * Microsoft.Azure.Management.ContainerRegistry.Models.SystemData * string * string * string -> Microsoft.Azure.Management.ContainerRegistry.Models.Webhook
Public Sub New (location As String, actions As IList(Of String), Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional tags As IDictionary(Of String, String) = Nothing, Optional systemData As SystemData = Nothing, Optional status As String = Nothing, Optional scope As String = Nothing, Optional provisioningState As String = Nothing)
Parâmetros
- location
- String
A localização do recurso. Isso não pode ser alterado depois que o recurso é criado.
- id
- String
A ID do recurso.
- name
- String
O nome do recurso.
- type
- String
Tipo do recurso.
- tags
- IDictionary<String,String>
As marcas do recurso.
- systemData
- SystemData
Metadados relativos à criação e à última modificação do recurso.
- status
- String
O status do webhook no momento em que a operação foi chamada. Os valores possíveis incluem: 'enabled', 'disabled'
- scope
- String
O escopo dos repositórios em que o evento pode ser disparado. Por exemplo, 'foo:*' significa eventos para todas as marcas no repositório 'foo'. 'foo:bar' significa eventos apenas para 'foo:bar'. 'foo' é equivalente a 'foo:latest'. Vazio significa todos os eventos.
- provisioningState
- String
O estado de provisionamento do webhook no momento em que a operação foi chamada. Os valores possíveis incluem: 'Criando', 'Atualizando', 'Excluindo', 'Êxito', 'Falha', 'Cancelado'
Aplica-se a
Azure SDK for .NET