Interface VirtualMachineExtension.DefinitionStages.WithTags<ParentT>
-
- Type Parameters:
ParentT- the stage of the parent definition to return to after attaching this definition
- All Known Subinterfaces:
VirtualMachineExtension.Definition<ParentT>,VirtualMachineExtension.DefinitionStages.WithAttach<ParentT>
- Enclosing interface:
- VirtualMachineExtension.DefinitionStages
public static interface VirtualMachineExtension.DefinitionStages.WithTags<ParentT>The stage of the virtual machine extension definition allowing to specify the tags.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VirtualMachineExtension.DefinitionStages.WithAttach<ParentT>withTag(String key, String value)Adds a tag to the virtual machine extension.VirtualMachineExtension.DefinitionStages.WithAttach<ParentT>withTags(Map<String,String> tags)Specifies tags for the virtual machine extension.
-
-
-
Method Detail
-
withTags
VirtualMachineExtension.DefinitionStages.WithAttach<ParentT> withTags(Map<String,String> tags)
Specifies tags for the virtual machine extension.- Parameters:
tags- the tags to associate- Returns:
- the next stage of the definition
-
withTag
VirtualMachineExtension.DefinitionStages.WithAttach<ParentT> 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 definition
-
-