Interface WebhookOperations


@Beta(V1_4_0) public interface WebhookOperations
Grouping of container registry webhook actions.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    delete(String webhookName)
    Deletes a webhook from the container registry.
    rx.Completable
    deleteAsync(String webhookName)
    Deletes a webhook from the container registry.
    get(String webhookName)
    Gets the properties of the specified webhook.
    rx.Observable<Webhook>
    getAsync(String webhookName)
    Gets the properties of the specified webhook.
    com.microsoft.azure.PagedList<Webhook>
    Lists all the webhooks for the container registry.
    rx.Observable<Webhook>
    Lists all the webhooks for the container registry.
  • Method Details

    • get

      Webhook get(String webhookName)
      Gets the properties of the specified webhook.
      Parameters:
      webhookName - the name of the webhook
      Returns:
      the Webhook object if successful
    • getAsync

      rx.Observable<Webhook> getAsync(String webhookName)
      Gets the properties of the specified webhook.
      Parameters:
      webhookName - the name of the webhook
      Returns:
      a representation of the future computation of this call, returning the Webhook object
    • delete

      void delete(String webhookName)
      Deletes a webhook from the container registry.
      Parameters:
      webhookName - the name of the webhook
    • deleteAsync

      rx.Completable deleteAsync(String webhookName)
      Deletes a webhook from the container registry.
      Parameters:
      webhookName - the name of the webhook
      Returns:
      a representation of the future computation of this call
    • list

      com.microsoft.azure.PagedList<Webhook> list()
      Lists all the webhooks for the container registry.
      Returns:
      the list of all the webhooks for the specified container registry
    • listAsync

      @Beta(V1_4_0) rx.Observable<Webhook> listAsync()
      Lists all the webhooks for the container registry.
      Returns:
      a representation of the future computation of this call, returning the list of all the webhooks for the specified container registry