Interface VirtualMachineExtension.UpdateStages.WithSettings
- All Known Subinterfaces:
VirtualMachineExtension.Update
- Enclosing interface:
- VirtualMachineExtension.UpdateStages
public static interface VirtualMachineExtension.UpdateStages.WithSettings
The stage of the virtual machine extension update allowing to add or update public and private settings.
-
Method Summary
Modifier and TypeMethodDescriptionwithProtectedSetting
(String key, Object value) Specifies a private settings entry.withProtectedSettings
(HashMap<String, Object> settings) Specifies private settings.withPublicSetting
(String key, Object value) Specifies a public settings entry.withPublicSettings
(HashMap<String, Object> settings) Specifies public settings.
-
Method Details
-
withPublicSetting
Specifies a public settings entry.- Parameters:
key
- the key of a public settings entryvalue
- the value of the public settings entry- Returns:
- the next stage of the update
-
withProtectedSetting
Specifies a private settings entry.- Parameters:
key
- the key of a private settings entryvalue
- the value of the private settings entry- Returns:
- the next stage of the update
-
withPublicSettings
Specifies public settings.- Parameters:
settings
- the public settings- Returns:
- the next stage of the update
-
withProtectedSettings
Specifies private settings.- Parameters:
settings
- the private settings- Returns:
- the next stage of the update
-