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

[Storage] [Typing] [File Share] _models.py and aio equivalent #36393

Merged
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
a780241
typed models up to ShareProtocolSettings
weirongw23-msft Jun 24, 2024
bb0be2e
Merge branch 'feature/storage-file-share-typing' into weirongw23/file…
weirongw23-msft Jun 26, 2024
f68e758
work in progress
weirongw23-msft Jun 26, 2024
46d46ec
more work in progress
weirongw23-msft Jun 26, 2024
f72c8ba
Merge branch 'feature/storage-file-share-typing' into weirongw23/file…
weirongw23-msft Jun 26, 2024
b19d882
changes to models
weirongw23-msft Jul 1, 2024
6465add
typed _models.py and added misc fixes to mypy errors
weirongw23-msft Jul 9, 2024
3495528
share name is technically not None since it's populated later, so its…
weirongw23-msft Jul 9, 2024
93f2eee
typed .../aio/_models.py
weirongw23-msft Jul 9, 2024
ae6f98b
fixed typo
weirongw23-msft Jul 9, 2024
da70cad
Merge branch 'feature/storage-file-share-typing' into weirongw23/file…
weirongw23-msft Jul 9, 2024
7442265
Merge branch 'feature/storage-file-share-typing' into weirongw23/file…
weirongw23-msft Jul 9, 2024
3c5db41
swapped order of variable datetime and destination snapshot
weirongw23-msft Jul 9, 2024
184b79c
Merge branch 'feature/storage-file-share-typing' into weirongw23/file…
weirongw23-msft Jul 10, 2024
d286129
fixed copy properties' id type
weirongw23-msft Jul 17, 2024
05f643b
removed 'required' in keywords and params
weirongw23-msft Jul 17, 2024
7c834d4
converted to Self in classmethod return types, modified list to List …
weirongw23-msft Jul 17, 2024
e602fc1
removed optional typing from keywords as they're optional by nature
weirongw23-msft Jul 17, 2024
fc815e9
spacing and lots of optional dilemma :)
weirongw23-msft Jul 17, 2024
aed30e8
fixed wrong import order
weirongw23-msft Jul 17, 2024
96d37f3
create gets the same love in cvar docs
weirongw23-msft Jul 17, 2024
c4ae04d
merge conflicts from typing feature branch
weirongw23-msft Aug 1, 2024
0f29f59
fixed type for last_reconnect_time cvar and id typo in handle
weirongw23-msft Aug 6, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ def list_directories_and_files(
:param str name_starts_with:
Filters the results to return only entities whose names
begin with the specified prefix.
:keyword list[str] include:
:keyword List[str] include:
Include this parameter to specify one or more datasets to include in the response.
Possible str values are "timestamps", "Etag", "Attributes", "PermissionKey".

Expand Down
Loading