forked from Azure/azure-sdk-for-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bdc4bf7
commit 21e800b
Showing
31 changed files
with
620 additions
and
23 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
sdk/storage/azure-storage-blob-changefeed/out/azure/__init__.pyi
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Stubs for azure (Python 3) | ||
# | ||
# NOTE: This dynamically typed stub was automatically generated by stubgen. | ||
|
||
__path__: str |
5 changes: 5 additions & 0 deletions
5
sdk/storage/azure-storage-blob-changefeed/out/azure/storage/__init__.pyi
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Stubs for azure.storage (Python 3) | ||
# | ||
# NOTE: This dynamically typed stub was automatically generated by stubgen. | ||
|
||
__path__: str |
5 changes: 5 additions & 0 deletions
5
sdk/storage/azure-storage-blob-changefeed/out/azure/storage/blobchangefeed/__init__.pyi
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Stubs for azure.storage.blobchangefeed (Python 3) | ||
# | ||
# NOTE: This dynamically typed stub was automatically generated by stubgen. | ||
|
||
from ._change_feed_client import ChangeFeedClient as ChangeFeedClient |
15 changes: 15 additions & 0 deletions
15
...ge/azure-storage-blob-changefeed/out/azure/storage/blobchangefeed/_change_feed_client.pyi
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Stubs for azure.storage.blobchangefeed._change_feed_client (Python 3) | ||
# | ||
# NOTE: This dynamically typed stub was automatically generated by stubgen. | ||
|
||
from ._models import ChangeFeedPaged | ||
from azure.core.paging import ItemPaged | ||
from azure.storage.blob import BlobServiceClient | ||
from datetime import datetime | ||
from typing import Any, Optional | ||
|
||
class ChangeFeedClient: | ||
def __init__(self, account_url: str, credential: Optional[Any]=..., **kwargs: Any) -> None: ... | ||
@classmethod | ||
def from_connection_string(cls: Any, conn_str: str, credential: Optional[Any]=..., **kwargs: Any) -> BlobServiceClient: ... | ||
def list_changes(self, start_time: Optional[datetime]=..., end_time: Optional[datetime]=..., **kwargs: Any) -> ItemPaged[BlobProperties]: ... |
72 changes: 72 additions & 0 deletions
72
sdk/storage/azure-storage-blob-changefeed/out/azure/storage/blobchangefeed/_models.pyi
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
# Stubs for azure.storage.blobchangefeed._models (Python 3) | ||
# | ||
# NOTE: This dynamically typed stub was automatically generated by stubgen. | ||
|
||
from azure.core.paging import PageIterator | ||
from typing import Any, Optional | ||
|
||
SEGMENT_COMMON_PATH: str | ||
PATH_DELIMITER: str | ||
|
||
class ChangeFeedPaged(PageIterator): | ||
results_per_page: Any = ... | ||
current_page: Any = ... | ||
def __init__(self, container_client: Any, results_per_page: Optional[Any] = ..., start_time: Optional[Any] = ..., end_time: Optional[Any] = ..., continuation_token: Optional[Any] = ...) -> None: ... | ||
|
||
class ChangeFeed: | ||
client: Any = ... | ||
page_size: Any = ... | ||
unprocessed_segment_paths: Any = ... | ||
current_segment: Any = ... | ||
start_time: Any = ... | ||
end_time: Any = ... | ||
cursor: Any = ... | ||
def __init__(self, client: Any, page_size: Any, start_time: Optional[Any] = ..., end_time: Optional[Any] = ..., cf_cursor: Optional[Any] = ...) -> None: ... | ||
def __iter__(self): ... | ||
def __next__(self): ... | ||
next: Any = ... | ||
|
||
class Segment: | ||
client: Any = ... | ||
segment_path: Any = ... | ||
page_size: Any = ... | ||
shards: Any = ... | ||
cursor: Any = ... | ||
def __init__(self, client: Any, segment_path: Any, page_size: Any, segment_cursor: Optional[Any] = ...) -> None: ... | ||
def __iter__(self): ... | ||
def __next__(self): ... | ||
next: Any = ... | ||
|
||
class Shard: | ||
client: Any = ... | ||
shard_path: Any = ... | ||
current_chunk: Any = ... | ||
unprocessed_chunk_path_props: Any = ... | ||
cursor: Any = ... | ||
def __init__(self, client: Any, shard_path: Any, shard_cursor: Optional[Any] = ...) -> None: ... | ||
def __iter__(self): ... | ||
def __next__(self): ... | ||
next: Any = ... | ||
|
||
class Chunk: | ||
client: Any = ... | ||
chunk_path: Any = ... | ||
file_reader: Any = ... | ||
cursor: Any = ... | ||
def __init__(self, client: Any, chunk_path: Any, chunk_cursor: Optional[Any] = ...) -> None: ... | ||
def __iter__(self): ... | ||
def __next__(self): ... | ||
next: Any = ... | ||
|
||
class ChangeFeedStreamer: | ||
event_position: Any = ... | ||
block_count: Any = ... | ||
def __init__(self, blob_client: Any, chunk_file_start: int = ..., block_count: int = ...) -> None: ... | ||
def __len__(self): ... | ||
def __iter__(self): ... | ||
def seekable(self): ... | ||
def next(self): ... | ||
def tell(self): ... | ||
def seek(self, offset: Any, whence: int = ...) -> None: ... | ||
def read(self, size: Any): ... | ||
def track_event_position(self) -> None: ... |
5 changes: 5 additions & 0 deletions
5
sdk/storage/azure-storage-blob-changefeed/out/azure/storage/blobchangefeed/_version.pyi
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Stubs for azure.storage.blobchangefeed._version (Python 3) | ||
# | ||
# NOTE: This dynamically typed stub was automatically generated by stubgen. | ||
|
||
VERSION: str |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Stubs for setup (Python 3) | ||
# | ||
# NOTE: This dynamically typed stub was automatically generated by stubgen. | ||
|
||
from typing import Any | ||
|
||
PACKAGE_NAME: str | ||
NAMESPACE_NAME: str | ||
PACKAGE_PPRINT_NAME: str | ||
package_folder_path: Any | ||
ver: Any | ||
version: Any |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.