Interface SpringApp.DefinitionStages.WithDisk
-
- All Known Subinterfaces:
SpringApp.Definition,SpringApp.DefinitionStages.WithCreate
- Enclosing interface:
- SpringApp.DefinitionStages
public static interface SpringApp.DefinitionStages.WithDiskThe stage of a spring app definition allowing to specify the disk.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SpringApp.DefinitionStages.WithCreatewithPersistentDisk(int sizeInGB, String mountPath)Specifies the persistent disk for the spring app.SpringApp.DefinitionStages.WithCreatewithTemporaryDisk(int sizeInGB, String mountPath)Specifies the temporary disk for the spring app.
-
-
-
Method Detail
-
withTemporaryDisk
SpringApp.DefinitionStages.WithCreate withTemporaryDisk(int sizeInGB, String mountPath)
Specifies the temporary disk for the spring app.- Parameters:
sizeInGB- the size of the diskmountPath- the mount path of the disk- Returns:
- the next stage of spring app definition
-
withPersistentDisk
SpringApp.DefinitionStages.WithCreate withPersistentDisk(int sizeInGB, String mountPath)
Specifies the persistent disk for the spring app.- Parameters:
sizeInGB- the size of the diskmountPath- the mount path of the disk- Returns:
- the next stage of spring app definition
-
-