Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added support for HNS soft delete #20353

Merged
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
8cf858c
Added support for HNS soft delete
gapra-msft Apr 2, 2021
f80977e
changed doc inline names
gapra-msft Apr 2, 2021
64a4f29
more doc
gapra-msft Apr 2, 2021
6993052
doic
gapra-msft Apr 2, 2021
c31127d
Merge branch 'feature/storage/stg77' into storage/hnsSoftDelete
gapra-msft Apr 2, 2021
4190761
Merge branch 'feature/storage/stg77' into storage/hnsSoftDelete
gapra-msft Apr 13, 2021
c0297d0
Merge branch 'feature/storage/stg77' into storage/hnsSoftDelete
gapra-msft Apr 13, 2021
8f7ef88
Fixed samples for build
gapra-msft Apr 13, 2021
36e73c5
Merge branch 'feature/storage/stg77' into storage/hnsSoftDelete
gapra-msft Apr 19, 2021
6a59d66
Fixed build issue
gapra-msft Apr 19, 2021
f01ebb4
removed pom dep
gapra-msft Apr 19, 2021
e4e8c65
test record and analyze
gapra-msft Apr 19, 2021
32e8483
java 11 fix
gapra-msft Apr 19, 2021
d113a57
updated test records
gapra-msft Apr 20, 2021
abbde58
Use utf8 charset
gapra-msft Apr 20, 2021
e77936e
trying again
gapra-msft Apr 20, 2021
2968e46
fixed other encode issue
gapra-msft Apr 20, 2021
0e7b146
replace recordings
gapra-msft Apr 20, 2021
27766af
Addressed comments from review
gapra-msft Apr 20, 2021
c9a393b
Added support for page size
gapra-msft Apr 21, 2021
4b6f45d
Added documentation for restorePath exception cases
gapra-msft Apr 21, 2021
8c09f77
Add context support for listDeletedPaths
gapra-msft Apr 21, 2021
bd63047
made model classes final, removed listdeletedpaths type
gapra-msft Apr 21, 2021
0f44d71
javadoc fix
gapra-msft Apr 21, 2021
5106e95
rename name to path in PathDeletedItem
gapra-msft Apr 21, 2021
bc67e6d
updated test record
gapra-msft Apr 21, 2021
e035dd1
Added static website support
gapra-msft Apr 22, 2021
50fb66e
Added static website test recording
gapra-msft Apr 22, 2021
0beb4a2
regenerated and renamed APi to undelete
gapra-msft Apr 23, 2021
37c0f63
removed extra getProperties call
gapra-msft Apr 23, 2021
c1aea95
fixed order of params after generation
gapra-msft Apr 23, 2021
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
Prev Previous commit
Next Next commit
Addressed comments from review
  • Loading branch information
gapra-msft committed Apr 20, 2021
commit 27766af2c1ec69d3a88bd29a0a47306efbd8c7a1
Original file line number Diff line number Diff line change
Expand Up @@ -885,7 +885,8 @@ Mono<Response<DataLakePathAsyncClient>> restorePathWithResponse(String deletedPa

context = context == null ? Context.NONE : context;
String blobUrl = DataLakeImplUtils.endpointToDesiredEndpoint(blobDataLakeStorageFs.getUrl(), "blob", "dfs");
//blobUrl = StorageImplUtils.appendToUrlPath(blobUrl, deletedPath).toString();

// This instance is to have a datalake impl that points to the blob endpoint
AzureDataLakeStorageRestAPIImpl blobDataLakeStoragePath = new AzureDataLakeStorageRestAPIImplBuilder()
.pipeline(blobDataLakeStorageFs.getHttpPipeline())
.url(blobUrl)
Expand Down