Class ResourceFile
- java.lang.Object
-
- com.microsoft.azure.management.batch.ResourceFile
-
public class ResourceFile extends Object
A file to be downloaded from Azure blob storage to a compute node.
-
-
Constructor Summary
Constructors Constructor Description ResourceFile()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringblobSource()Get the blobSource value.StringfileMode()Get the fileMode value.StringfilePath()Get the filePath value.ResourceFilewithBlobSource(String blobSource)Set the blobSource value.ResourceFilewithFileMode(String fileMode)Set the fileMode value.ResourceFilewithFilePath(String filePath)Set the filePath value.
-
-
-
Method Detail
-
blobSource
public String blobSource()
Get the blobSource value.- Returns:
- the blobSource value
-
withBlobSource
public ResourceFile withBlobSource(String blobSource)
Set the blobSource value.- Parameters:
blobSource- the blobSource value to set- Returns:
- the ResourceFile object itself.
-
filePath
public String filePath()
Get the filePath value.- Returns:
- the filePath value
-
withFilePath
public ResourceFile withFilePath(String filePath)
Set the filePath value.- Parameters:
filePath- the filePath value to set- Returns:
- the ResourceFile object itself.
-
fileMode
public String fileMode()
Get the fileMode value.- Returns:
- the fileMode value
-
withFileMode
public ResourceFile withFileMode(String fileMode)
Set the fileMode value.- Parameters:
fileMode- the fileMode value to set- Returns:
- the ResourceFile object itself.
-
-