Interface Webhook.UpdateDefinitionStages.WithTags<ParentT>
-
- Type Parameters:
ParentT- the stage of the parent definition to return to after attaching this definition
- All Known Subinterfaces:
Webhook.UpdateDefinition<ParentT>,Webhook.UpdateDefinitionStages.WithAttach<ParentT>
- Enclosing interface:
- Webhook.UpdateDefinitionStages
public static interface Webhook.UpdateDefinitionStages.WithTags<ParentT>The stage of the webhook definition allowing to specify the tags.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Webhook.UpdateDefinitionStages.WithAttach<ParentT>withTag(String key, String value)Adds a tag to the webhook.Webhook.UpdateDefinitionStages.WithAttach<ParentT>withTags(Map<String,String> tags)Specifies tags for the webhook.
-
-
-
Method Detail
-
withTags
Webhook.UpdateDefinitionStages.WithAttach<ParentT> withTags(Map<String,String> tags)
Specifies tags for the webhook.- Parameters:
tags- aMapof tags- Returns:
- the next stage of the definition
-
withTag
Webhook.UpdateDefinitionStages.WithAttach<ParentT> withTag(String key, String value)
Adds a tag to the webhook.- Parameters:
key- the key for the tagvalue- the value for the tag- Returns:
- the next stage of the definition
-
-