Interface VirtualMachine.UpdateStages.WithBootDiagnostics
-
- All Known Subinterfaces:
VirtualMachine.Update,VirtualMachine.UpdateStages.WithSystemAssignedIdentityBasedAccessOrUpdate
- Enclosing interface:
- VirtualMachine.UpdateStages
public static interface VirtualMachine.UpdateStages.WithBootDiagnosticsThe stage of the virtual machine definition allowing to enable boot diagnostics.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VirtualMachine.UpdatewithBootDiagnostics()Specifies that boot diagnostics needs to be enabled in the virtual machine.VirtualMachine.UpdatewithBootDiagnostics(Creatable<StorageAccount> creatable)Specifies that boot diagnostics needs to be enabled in the virtual machine.VirtualMachine.UpdatewithBootDiagnostics(StorageAccount storageAccount)Specifies that boot diagnostics needs to be enabled in the virtual machine.VirtualMachine.UpdatewithBootDiagnostics(String storageAccountBlobEndpointUri)Specifies that boot diagnostics needs to be enabled in the virtual machine.VirtualMachine.UpdatewithBootDiagnosticsOnManagedStorageAccount()Specifies that boot diagnostics needs to be enabled in the virtual machine.VirtualMachine.UpdatewithoutBootDiagnostics()Specifies that boot diagnostics needs to be disabled in the virtual machine.
-
-
-
Method Detail
-
withBootDiagnosticsOnManagedStorageAccount
VirtualMachine.Update withBootDiagnosticsOnManagedStorageAccount()
Specifies that boot diagnostics needs to be enabled in the virtual machine. Managed storage account is used.- Returns:
- the next stage of the update
-
withBootDiagnostics
VirtualMachine.Update withBootDiagnostics()
Specifies that boot diagnostics needs to be enabled in the virtual machine.- Returns:
- the next stage of the update
-
withBootDiagnostics
VirtualMachine.Update withBootDiagnostics(Creatable<StorageAccount> creatable)
Specifies that boot diagnostics needs to be enabled in the virtual machine.- Parameters:
creatable- the storage account to be created and used for store the boot diagnostics- Returns:
- the next stage of the update
-
withBootDiagnostics
VirtualMachine.Update withBootDiagnostics(StorageAccount storageAccount)
Specifies that boot diagnostics needs to be enabled in the virtual machine.- Parameters:
storageAccount- an existing storage account to be uses to store the boot diagnostics- Returns:
- the next stage of the update
-
withBootDiagnostics
VirtualMachine.Update withBootDiagnostics(String storageAccountBlobEndpointUri)
Specifies that boot diagnostics needs to be enabled in the virtual machine.- Parameters:
storageAccountBlobEndpointUri- a storage account blob endpoint to store the boot diagnostics- Returns:
- the next stage of the update
-
withoutBootDiagnostics
VirtualMachine.Update withoutBootDiagnostics()
Specifies that boot diagnostics needs to be disabled in the virtual machine.- Returns:
- the next stage of the update
-
-