Interface Registries.WebhooksClient
- Enclosing interface:
- Registries
public static interface Registries.WebhooksClient
Grouping of registry webhook actions.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Deletes a webhook from the container registry.rx.Completable
deleteAsync
(String resourceGroupName, String registryName, String webhookName) Deletes a webhook from the container registry.Gets the properties of the specified webhook.rx.Observable<Webhook>
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
Gets the properties of the specified webhook.- Parameters:
resourceGroupName
- the resource group nameregistryName
- the registry namewebhookName
- the name of the webhook- Returns:
- the Webhook object if successful
-
getAsync
@Beta(V1_4_0) rx.Observable<Webhook> getAsync(String resourceGroupName, String registryName, String webhookName) Gets the properties of the specified webhook.- Parameters:
resourceGroupName
- the resource group nameregistryName
- the registry namewebhookName
- the name of the webhook- Returns:
- a representation of the future computation of this call, returning the Webhook object
-
delete
Deletes a webhook from the container registry.- Parameters:
resourceGroupName
- the resource group nameregistryName
- the registry namewebhookName
- the name of the webhook
-
deleteAsync
@Beta(V1_4_0) rx.Completable deleteAsync(String resourceGroupName, String registryName, String webhookName) Deletes a webhook from the container registry.- Parameters:
resourceGroupName
- the resource group nameregistryName
- the registry namewebhookName
- the name of the webhook- Returns:
- a representation of the future computation of this call
-
list
@Beta(V1_4_0) com.microsoft.azure.PagedList<Webhook> list(String resourceGroupName, String registryName) Lists all the webhooks for the container registry.- Parameters:
resourceGroupName
- the resource group nameregistryName
- the registry name- Returns:
- the list of all the webhooks for the specified container registry
-
listAsync
Lists all the webhooks for the container registry.- Parameters:
resourceGroupName
- the resource group nameregistryName
- the registry name- Returns:
- a representation of the future computation of this call, returning the list of all the webhooks for the specified container registry
-