DataLakeStoreFileSystemManagementClient (stable:2016-11-01)

2025/09/19 • 3 new methods

FileSystem_SetFileExpiry (new)
Description Sets or removes the expiration time on the specified file. This operation can only be executed against files. Folders are not supported.
Reference Link ¶

⚼ Request

PUT:  /WebHdfsExt/{path}
{
path: string ,
expiryOption: string ,
expireTime: integer ,
op: string ,
api-version: string ,
}

⚐ Response (200)

{}

⚐ Response (default)

{
remoteException:
{
exception: string ,
javaClassName: string ,
message: string ,
}
,
}
FileSystem_ConcurrentAppend (new)
Description Appends to the specified file, optionally first creating the file if it does not yet exist. This method supports multiple concurrent appends to the file. NOTE: The target must not contain data added by Create or normal (serial) Append. ConcurrentAppend and Append cannot be used interchangeably; once a target file has been modified using either of these append options, the other append option cannot be used on the target file. ConcurrentAppend does not guarantee order and can result in duplicated data landing in the target file.
Reference Link ¶

⚼ Request

POST:  /WebHdfsExt/{path}
{
path: string ,
streamContents: object ,
appendMode: string ,
op: string ,
Transfer-Encoding: string ,
syncFlag: string ,
api-version: string ,
}

⚐ Response (200)

{}

⚐ Response (default)

{
remoteException:
{
exception: string ,
javaClassName: string ,
message: string ,
}
,
}
FileSystem_CheckAccess (new)
Description Checks if the specified access is available at the given path.
Reference Link ¶

⚼ Request

GET:  /webhdfs/v1/{path}
{
path: string ,
fsaction: string ,
op: string ,
api-version: string ,
}

⚐ Response (200)

{}

⚐ Response (default)

{
remoteException:
{
exception: string ,
javaClassName: string ,
message: string ,
}
,
}