Interface BatchAIFileServer.DefinitionStages.WithDataDisks
- All Known Subinterfaces:
BatchAIFileServer.Definition
,BatchAIFileServer.DefinitionStages.Blank
- Enclosing interface:
- BatchAIFileServer.DefinitionStages
public static interface BatchAIFileServer.DefinitionStages.WithDataDisks
This stage of a Batch AI file server definition allows to specify data disks parameters.
-
Method Summary
Modifier and TypeMethodDescriptionwithDataDisks
(int diskSizeInGB, int diskCount, StorageAccountType storageAccountType) Specifies settings for the data disks which would be created for the file server.withDataDisks
(int diskSizeInGB, int diskCount, StorageAccountType storageAccountType, CachingType cachingType) Specifies settings for the data disks which would be created for the file server.
-
Method Details
-
withDataDisks
BatchAIFileServer.DefinitionStages.WithVMSize withDataDisks(int diskSizeInGB, int diskCount, StorageAccountType storageAccountType) Specifies settings for the data disks which would be created for the file server.- Parameters:
diskSizeInGB
- initial disk size in GB for blank data disksdiskCount
- number of data disks to be attached to the VM. RAID level 0 will be applied in the case of multiple disks.storageAccountType
- type of storage account to be used on the disk- Returns:
- the next stage of the definition
-
withDataDisks
BatchAIFileServer.DefinitionStages.WithVMSize withDataDisks(int diskSizeInGB, int diskCount, StorageAccountType storageAccountType, CachingType cachingType) Specifies settings for the data disks which would be created for the file server.- Parameters:
diskSizeInGB
- initial disk size in GB for blank data disks.diskCount
- number of data disks to be attached to the VM. RAID level 0 will be applied in the case of multiple disks.storageAccountType
- type of storage account to be used on the diskcachingType
- caching type- Returns:
- the next stage of the definition
-