Interface GalleryImage.DefinitionStages.WithRecommendedVMConfiguration
- All Known Subinterfaces:
GalleryImage.Definition
,GalleryImage.DefinitionStages.WithCreate
- Enclosing interface:
- GalleryImage.DefinitionStages
public static interface GalleryImage.DefinitionStages.WithRecommendedVMConfiguration
The stage of the gallery image definition allowing to specify recommended
configuration for the virtual machine.
-
Method Summary
Modifier and TypeMethodDescriptionwithRecommendedConfigurationForVirtualMachine
(RecommendedMachineConfiguration recommendedConfig) Specifies recommended configuration for the virtual machine based on the image.withRecommendedCPUsCountForVirtualMachine
(int minCount, int maxCount) Specifies the recommended virtual CUPs for the virtual machine bases on the image.withRecommendedMaximumCPUsCountForVirtualMachine
(int maxCount) Specifies the recommended maximum number of virtual CUPs for the virtual machine bases on this image.Specifies the recommended maximum memory for the virtual machine bases on the image.withRecommendedMemoryForVirtualMachine
(int minMB, int maxMB) Specifies the recommended memory for the virtual machine bases on the image.withRecommendedMinimumCPUsCountForVirtualMachine
(int minCount) Specifies the recommended minimum number of virtual CUPs for the virtual machine bases on the image.Specifies the recommended minimum memory for the virtual machine bases on the image.
-
Method Details
-
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
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
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
-