Interface KubernetesClusterAgentPool.UpdateStages.WithTags<ParentT>
-
- Type Parameters:
ParentT- the stage of the container service definition to return to after attaching this definition
- All Known Subinterfaces:
KubernetesClusterAgentPool.Update<ParentT>
- Enclosing interface:
- KubernetesClusterAgentPool.UpdateStages
public static interface KubernetesClusterAgentPool.UpdateStages.WithTags<ParentT>The stage of a container service agent pool update allowing to specify tags.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description KubernetesClusterAgentPool.Update<ParentT>withoutTag(String key)Removes a tag from the agents.KubernetesClusterAgentPool.Update<ParentT>withTag(String key, String value)Adds a tag to the agents.KubernetesClusterAgentPool.Update<ParentT>withTags(Map<String,String> tags)Specifies tags for the agents.
-
-
-
Method Detail
-
withTags
KubernetesClusterAgentPool.Update<ParentT> withTags(Map<String,String> tags)
Specifies tags for the agents.- Parameters:
tags- tags indexed by name- Returns:
- the next stage of the update
-
withTag
KubernetesClusterAgentPool.Update<ParentT> withTag(String key, String value)
Adds a tag to the agents.- Parameters:
key- the key for the tagvalue- the value for the tag- Returns:
- the next stage of the update
-
withoutTag
KubernetesClusterAgentPool.Update<ParentT> withoutTag(String key)
Removes a tag from the agents.- Parameters:
key- the key of the tag to remove- Returns:
- the next stage of the update
-
-