Interface VirtualMachine.UpdateStages.WithSecurityFeatures
- All Known Subinterfaces:
VirtualMachine.Update,VirtualMachine.UpdateStages.WithSystemAssignedIdentityBasedAccessOrUpdate
- Enclosing interface:
VirtualMachine.UpdateStages
public static interface VirtualMachine.UpdateStages.WithSecurityFeatures
The stage of the VM update allowing to change security features.
-
Method Summary
Modifier and TypeMethodDescriptionDisables secure boot feature.Disables vTPM feature.Enables secure boot feature.withVTpm()Enables vTPM feature.
-
Method Details
-
withSecureBoot
VirtualMachine.Update withSecureBoot()Enables secure boot feature.Your VM's security type should be set in order to enable this feature. After changing security features, a restart is required for your VM to take effect.
- Returns:
- the next stage of the update
-
withoutSecureBoot
VirtualMachine.Update withoutSecureBoot()Disables secure boot feature.After changing security features, a restart is required for your VM to take effect.
- Returns:
- the next stage of the update
-
withVTpm
VirtualMachine.Update withVTpm()Enables vTPM feature.Your VM's security type should be set in order to enable this feature. After changing security features, a restart is required for your VM to take effect.
- Returns:
- the next stage of the update
-
withoutVTpm
VirtualMachine.Update withoutVTpm()Disables vTPM feature.After changing security features, a restart is required for your VM to take effect.
- Returns:
- the next stage of the update
-