Interface Registry.UpdateStages.WithWebhook
-
- All Known Subinterfaces:
Registry.Update
- Enclosing interface:
- Registry.UpdateStages
public static interface Registry.UpdateStages.WithWebhookThe stage of the container registry update allowing to add or remove a webhook.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Webhook.UpdateDefinitionStages.Blank<Registry.Update>defineWebhook(String name)Begins the definition of a new webhook to be added to this container registry.Webhook.UpdateResourceStages.Blank<Registry.Update>updateWebhook(String name)Begins the description of an update of an existing webhook of this container registry.Registry.UpdatewithoutWebhook(String name)Removes a webhook from the container registry.
-
-
-
Method Detail
-
defineWebhook
Webhook.UpdateDefinitionStages.Blank<Registry.Update> defineWebhook(String name)
Begins the definition of a new webhook to be added to this container registry.- Parameters:
name- the name of the new webhook- Returns:
- the first stage of the new webhook definition
-
withoutWebhook
Registry.Update withoutWebhook(String name)
Removes a webhook from the container registry.- Parameters:
name- name of the webhook to remove- Returns:
- the next stage of the container registry update
-
updateWebhook
Webhook.UpdateResourceStages.Blank<Registry.Update> updateWebhook(String name)
Begins the description of an update of an existing webhook of this container registry.- Parameters:
name- the name of an existing webhook- Returns:
- the first stage of the webhook update description
-
-