Interface GalleryImage.DefinitionStages.WithRecommendedVMConfiguration
-
- All Known Subinterfaces:
GalleryImage.Definition,GalleryImage.DefinitionStages.WithCreate
- Enclosing interface:
- GalleryImage.DefinitionStages
public static interface GalleryImage.DefinitionStages.WithRecommendedVMConfigurationThe stage of the gallery image definition allowing to specify recommended configuration for the virtual machine.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GalleryImage.DefinitionStages.WithCreatewithRecommendedConfigurationForVirtualMachine(RecommendedMachineConfiguration recommendedConfig)Specifies recommended configuration for the virtual machine based on the image.GalleryImage.DefinitionStages.WithCreatewithRecommendedCPUsCountForVirtualMachine(int minCount, int maxCount)Specifies the recommended virtual CUPs for the virtual machine bases on the image.GalleryImage.DefinitionStages.WithCreatewithRecommendedMaximumCPUsCountForVirtualMachine(int maxCount)Specifies the recommended maximum number of virtual CUPs for the virtual machine bases on this image.GalleryImage.DefinitionStages.WithCreatewithRecommendedMaximumMemoryForVirtualMachine(int maxMB)Specifies the recommended maximum memory for the virtual machine bases on the image.GalleryImage.DefinitionStages.WithCreatewithRecommendedMemoryForVirtualMachine(int minMB, int maxMB)Specifies the recommended memory for the virtual machine bases on the image.GalleryImage.DefinitionStages.WithCreatewithRecommendedMinimumCPUsCountForVirtualMachine(int minCount)Specifies the recommended minimum number of virtual CUPs for the virtual machine bases on the image.GalleryImage.DefinitionStages.WithCreatewithRecommendedMinimumMemoryForVirtualMachine(int minMB)Specifies the recommended minimum memory for the virtual machine bases on the image.
-
-
-
Method Detail
-
withRecommendedMinimumCPUsCountForVirtualMachine
GalleryImage.DefinitionStages.WithCreate withRecommendedMinimumCPUsCountForVirtualMachine(int minCount)
Specifies the recommended minimum number of virtual CUPs for the virtual machine bases on the image.- Parameters:
minCount- the minimum number of virtual CPUs- Returns:
- the next definition stage
-
withRecommendedMaximumCPUsCountForVirtualMachine
GalleryImage.DefinitionStages.WithCreate withRecommendedMaximumCPUsCountForVirtualMachine(int maxCount)
Specifies the recommended maximum number of virtual CUPs for the virtual machine bases on this image.- Parameters:
maxCount- the maximum number of virtual CPUs- Returns:
- the next definition stage
-
withRecommendedCPUsCountForVirtualMachine
GalleryImage.DefinitionStages.WithCreate withRecommendedCPUsCountForVirtualMachine(int minCount, int maxCount)
Specifies the recommended virtual CUPs for the virtual machine bases on the image.- Parameters:
minCount- the minimum number of virtual CPUsmaxCount- the maximum number of virtual CPUs- Returns:
- the next definition stage
-
withRecommendedMinimumMemoryForVirtualMachine
GalleryImage.DefinitionStages.WithCreate withRecommendedMinimumMemoryForVirtualMachine(int minMB)
Specifies the recommended minimum memory for the virtual machine bases on the image.- Parameters:
minMB- the minimum memory in MB- Returns:
- the next definition stage
-
withRecommendedMaximumMemoryForVirtualMachine
GalleryImage.DefinitionStages.WithCreate withRecommendedMaximumMemoryForVirtualMachine(int maxMB)
Specifies the recommended maximum memory for the virtual machine bases on the image.- Parameters:
maxMB- the maximum memory in MB- Returns:
- the next definition stage
-
withRecommendedMemoryForVirtualMachine
GalleryImage.DefinitionStages.WithCreate withRecommendedMemoryForVirtualMachine(int minMB, int maxMB)
Specifies the recommended memory for the virtual machine bases on the image.- Parameters:
minMB- the minimum memory in MBmaxMB- the maximum memory in MB- Returns:
- the next definition stage
-
withRecommendedConfigurationForVirtualMachine
GalleryImage.DefinitionStages.WithCreate withRecommendedConfigurationForVirtualMachine(RecommendedMachineConfiguration recommendedConfig)
Specifies recommended configuration for the virtual machine based on the image.- Parameters:
recommendedConfig- the recommended configuration- Returns:
- the next definition stage
-
-