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
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-blob/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 12.25.1 (Unreleased)
## 12.25.1 (2025-03-27)

### Other Changes
- Updated dependency for `azure-storage-file-datalake` type hints.
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-file-datalake/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 12.20.0 (Unreleased)
## 12.20.0 (2025-03-27)

### Features Added
- Updated type hints across the entire package and enabled MyPy to run during CI. Some public types may have been adjusted if they were previously erroneous or incomplete.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1296,23 +1296,23 @@ class StaticWebsite(GenStaticWebsite):

enabled: bool
"""Indicates whether this account is hosting a static website. The default value is `False`."""
index_document: str
index_document: Optional[str]
"""The default name of the index page under each directory."""
error_document404_path: str
error_document404_path: Optional[str]
"""The absolute path of the custom 404 page."""
default_index_document_path: str
default_index_document_path: Optional[str]
"""Absolute path of the default index page."""

def __init__(self, **kwargs: Any) -> None:
self.enabled = kwargs.get('enabled', False)
if self.enabled:
self.index_document = kwargs.get('index_document') # type: ignore [assignment]
self.error_document404_path = kwargs.get('error_document404_path') # type: ignore [assignment]
self.default_index_document_path = kwargs.get('default_index_document_path') # type: ignore [assignment]
self.index_document = kwargs.get('index_document')
self.error_document404_path = kwargs.get('error_document404_path')
self.default_index_document_path = kwargs.get('default_index_document_path')
else:
self.index_document = None # type: ignore [assignment]
self.error_document404_path = None # type: ignore [assignment]
self.default_index_document_path = None # type: ignore [assignment]
self.index_document = None
self.error_document404_path = None
self.default_index_document_path = None

@classmethod
def _from_generated(cls, generated):
Expand Down