Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .vscode/cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,12 @@
"numofmessages"
]
},
{
"filename": "**/sdk/storage/azure-storage-files-shares/**/*",
"words": [
"mibps"
]
},
{
"filename": "**/cmake-modules/**/*",
"words": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,8 @@ namespace Azure { namespace Storage { namespace Files { namespace DataLake {
* @brief Renames a file. By default, the destination is overwritten and
* if the destination already exists and has a lease the lease is broken.
* @param fileName The file that gets renamed.
* @param destinationFilePath The path of the file the source file is renaming to.
* @param destinationFilePath The path of the file the source file is renaming to. The
* destination is an absolute path under the root of the file system, without leading slash.
* @param options Optional parameters to rename a file.
* @param context Context for cancelling long running operations.
* @return Azure::Response<DataLakeFileClient> The client targets the renamed file.
Expand All @@ -140,6 +141,7 @@ namespace Azure { namespace Storage { namespace Files { namespace DataLake {
* if the destination already exists and has a lease the lease is broken.
* @param subdirectoryName The subdirectory that gets renamed.
* @param destinationDirectoryPath The destinationPath the source subdirectory is renaming to.
* The destination is an absolute path under the root of the file system, without leading slash.
* @param options Optional parameters to rename a directory.
* @param context Context for cancelling long running operations.
* @return Azure::Response<DataLakeDirectoryClient> The client targets the renamed
Expand Down
10 changes: 10 additions & 0 deletions sdk/storage/azure-storage-files-shares/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@

### Features Added

- Bumped up API version to `2021-06-08`.
- Added fields `ProvisionedBandwidthMBps`, `EnabledProtocols` and `RootSquash` in `ShareItemDetails` and `ShareProperties`.
- Added support for listing files with extended information.
- Added new APIs:
- ShareDirectoryClient::RenameFile()
- ShareDirectoryClient::RenameSubdirectory()
- ShareLeaseClient::Renew()
- Added support for specifying last written time when uploading file range.
- Added support for specifying file changed time when creating/copying file or setting file properties.

### Breaking Changes

### Bugs Fixed
Expand Down
Loading