Interface VirtualMachineExtension.UpdateStages.WithTags
-
- All Known Subinterfaces:
VirtualMachineExtension.Update
- Enclosing interface:
- VirtualMachineExtension.UpdateStages
public static interface VirtualMachineExtension.UpdateStages.WithTagsThe stage of the virtual machine extension update allowing to add or update tags.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VirtualMachineExtension.UpdatewithoutTag(String key)Removes a tag from the virtual machine extension.VirtualMachineExtension.UpdatewithTag(String key, String value)Adds a tag to the virtual machine extension.VirtualMachineExtension.UpdatewithTags(Map<String,String> tags)Specifies tags for the virtual machine extension.
-
-
-
Method Detail
-
withTags
VirtualMachineExtension.Update withTags(Map<String,String> tags)
Specifies tags for the virtual machine extension.- Parameters:
tags- tags indexed by name- Returns:
- the next stage of the update
-
withTag
VirtualMachineExtension.Update withTag(String key, String value)
Adds a tag to the virtual machine extension.- Parameters:
key- the key for the tagvalue- the value for the tag- Returns:
- the next stage of the update
-
withoutTag
VirtualMachineExtension.Update withoutTag(String key)
Removes a tag from the virtual machine extension.- Parameters:
key- the key of the tag to remove- Returns:
- the next stage of the update
-
-