DataLakePathCreateOptions Class
- java.
lang. Object - com.
azure. storage. file. datalake. options. DataLakePathCreateOptions
- com.
public class DataLakePathCreateOptions
Extended options that may be passed when creating a datalake resource.
Constructor Summary
Constructor | Description |
---|---|
DataLakePathCreateOptions() |
Optional parameters for creating a file or directory. |
Method Summary
Modifier and Type | Method and Description |
---|---|
List<Path |
getAccessControlList()
Gets the POSIX access control list for the file/directory. |
String |
getEncryptionContext()
Encryption context that is set on the file. |
String |
getGroup()
Gets the name of owning group of the file/directory. |
Integer |
getLeaseDuration()
Gets the lease duration in seconds. |
Map<String,String> |
getMetadata()
Gets the metadata associated with the datalake path. |
String |
getOwner()
Gets the name of owner of the file/directory. |
Path |
getPathHttpHeaders()
Gets the http header properties. |
String |
getPermissions()
Gets the POSIX access permissions for the file owner, the file owning group, and others. |
String |
getProposedLeaseId()
Gets the proposed lease ID. |
Data |
getRequestConditions()
Optional DataLakeRequestConditions conditions on the creation of this file or directory. |
Data |
getScheduleDeletionOptions()
Gets the DataLakePathScheduleDeletionOptions set on the path. |
String |
getSourceLeaseId()
Gets the source lease ID. |
String |
getUmask()
Gets the umask restricts the permissions of the file or directory to be created. |
Data |
setAccessControlList(List<PathAccessControlEntry> accessControl)
Optional. |
Data |
setEncryptionContext(String encryptionContext)
Optional encryption context that can be set on the file. |
Data |
setGroup(String group)
Optional. |
Data |
setLeaseDuration(Integer duration)
Optional. |
Data |
setMetadata(Map<String,String> metadata)
Optional custom metadata to set for this file or directory. |
Data |
setOwner(String owner)
Optional. |
Data |
setPathHttpHeaders(PathHttpHeaders headers)
Optional standard HTTP header properties that can be set for the new file or directory. |
Data |
setPermissions(String permissions)
Sets POSIX access permissions for the file owner, the file owning group, and others. |
Data |
setProposedLeaseId(String leaseId)
Optional. |
Data |
setRequestConditions(DataLakeRequestConditions requestConditions)
Optional DataLakeRequestConditions conditions on the creation of this file or directory. |
Data |
setScheduleDeletionOptions(DataLakePathScheduleDeletionOptions deletionOptions)
Scheduled deletion options to set on the path. |
Data |
setSourceLeaseId(String leaseId)
Sets the source lease ID. |
Data |
setUmask(String umask)
When creating a file or directory and the parent folder does not have a default ACL, the umask restricts the permissions of the file or directory to be created. |
Methods inherited from java.lang.Object
Constructor Details
DataLakePathCreateOptions
public DataLakePathCreateOptions()
Optional parameters for creating a file or directory.
Method Details
getAccessControlList
public List
Gets the POSIX access control list for the file/directory.
Returns:
getEncryptionContext
public String getEncryptionContext()
Encryption context that is set on the file.
Returns:
getGroup
public String getGroup()
Gets the name of owning group of the file/directory.
Returns:
getLeaseDuration
public Integer getLeaseDuration()
Gets the lease duration in seconds.
Returns:
getMetadata
public Map
Gets the metadata associated with the datalake path.
Returns:
getOwner
public String getOwner()
Gets the name of owner of the file/directory.
Returns:
getPathHttpHeaders
public PathHttpHeaders getPathHttpHeaders()
Gets the http header properties.
Returns:
getPermissions
public String getPermissions()
Gets the POSIX access permissions for the file owner, the file owning group, and others. Each class may be granted read, write, or execute permission. The sticky bit is also supported. Both symbolic (rwxrw-rw-) and 4-digit octal notation (e.g. 0766) are supported.
Returns:
getProposedLeaseId
public String getProposedLeaseId()
Gets the proposed lease ID.
Returns:
getRequestConditions
public DataLakeRequestConditions getRequestConditions()
Optional DataLakeRequestConditions conditions on the creation of this file or directory.
Returns:
getScheduleDeletionOptions
public DataLakePathScheduleDeletionOptions getScheduleDeletionOptions()
Gets the DataLakePathScheduleDeletionOptions set on the path.
Returns:
getSourceLeaseId
public String getSourceLeaseId()
Gets the source lease ID.
Returns:
getUmask
public String getUmask()
Gets the umask restricts the permissions of the file or directory to be created. The resulting permission is given by p bitwise-and ^u, where p is the permission and u is the umask. For example, if p is 0777 and u is 0057, then the resulting permission is 0720. The default permission is 0777 for a directory and 0666 for a file. The default umask is 0027. The umask must be specified in 4-digit octal notation (e.g. 0766).
Returns:
setAccessControlList
public DataLakePathCreateOptions setAccessControlList(List
Optional. The POSIX access control list for the file or directory.
Parameters:
Returns:
setEncryptionContext
public DataLakePathCreateOptions setEncryptionContext(String encryptionContext)
Optional encryption context that can be set on the file. Encryption context is intended to store metadata that can be used to decrypt the blob.
Parameters:
Returns:
setGroup
public DataLakePathCreateOptions setGroup(String group)
Optional. Sets the owning group of the file/directory.
Parameters:
Returns:
setLeaseDuration
public DataLakePathCreateOptions setLeaseDuration(Integer duration)
Optional. Specifies the duration of the lease, in seconds, or specify -1 for a lease that never expires. A non-infinite lease can be between 15 and 60 seconds. Does not apply to directories. Sets the lease duration.
Parameters:
Returns:
setMetadata
public DataLakePathCreateOptions setMetadata(Map
Optional custom metadata to set for this file or directory.
Parameters:
Returns:
setOwner
public DataLakePathCreateOptions setOwner(String owner)
Optional. Sets the owner of the file/directory.
Parameters:
Returns:
setPathHttpHeaders
public DataLakePathCreateOptions setPathHttpHeaders(PathHttpHeaders headers)
Optional standard HTTP header properties that can be set for the new file or directory.
Parameters:
Returns:
setPermissions
public DataLakePathCreateOptions setPermissions(String permissions)
Sets POSIX access permissions for the file owner, the file owning group, and others. Each class may be granted read, write, or execute permission. The sticky bit is also supported. Both symbolic (rwxrw-rw-) and 4-digit octal notation (e.g. 0766) are supported.
Parameters:
Returns:
setProposedLeaseId
public DataLakePathCreateOptions setProposedLeaseId(String leaseId)
Optional. Sets proposed lease ID. Does not apply to directories.
Parameters:
Returns:
setRequestConditions
public DataLakePathCreateOptions setRequestConditions(DataLakeRequestConditions requestConditions)
Optional DataLakeRequestConditions conditions on the creation of this file or directory. Sets the request conditions.
Parameters:
Returns:
setScheduleDeletionOptions
public DataLakePathCreateOptions setScheduleDeletionOptions(DataLakePathScheduleDeletionOptions deletionOptions)
Scheduled deletion options to set on the path.
Parameters:
Returns:
setSourceLeaseId
public DataLakePathCreateOptions setSourceLeaseId(String leaseId)
Sets the source lease ID.
Parameters:
Returns:
setUmask
public DataLakePathCreateOptions setUmask(String umask)
When creating a file or directory and the parent folder does not have a default ACL, the umask restricts the permissions of the file or directory to be created. The resulting permission is given by p bitwise-and ^u, where p is the permission and u is the umask. For example, if p is 0777 and u is 0057, then the resulting permission is 0720. The default permission is 0777 for a directory and 0666 for a file. The default umask is 0027. The umask must be specified in 4-digit octal notation (e.g. 0766).
Parameters:
Returns:
Applies to
Azure SDK for Java