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
Original file line number Diff line number Diff line change
Expand Up @@ -1001,7 +1001,7 @@ class FileShare(AzureEntityResource):
:type metadata: dict[str, str]
:param share_quota: The maximum size of the share, in gigabytes. Must be
greater than 0, and less than or equal to 5TB (5120). For Large File
Shares, the maximum size is 100000.
Shares, the maximum size is 102400.
:type share_quota: int
"""

Expand All @@ -1011,7 +1011,7 @@ class FileShare(AzureEntityResource):
'type': {'readonly': True},
'etag': {'readonly': True},
'last_modified_time': {'readonly': True},
'share_quota': {'maximum': 100000, 'minimum': 1},
'share_quota': {'maximum': 102400, 'minimum': 1},
}

_attribute_map = {
Expand Down Expand Up @@ -1055,7 +1055,7 @@ class FileShareItem(AzureEntityResource):
:type metadata: dict[str, str]
:param share_quota: The maximum size of the share, in gigabytes. Must be
greater than 0, and less than or equal to 5TB (5120). For Large File
Shares, the maximum size is 100000.
Shares, the maximum size is 102400.
:type share_quota: int
"""

Expand All @@ -1065,7 +1065,7 @@ class FileShareItem(AzureEntityResource):
'type': {'readonly': True},
'etag': {'readonly': True},
'last_modified_time': {'readonly': True},
'share_quota': {'maximum': 100000, 'minimum': 1},
'share_quota': {'maximum': 102400, 'minimum': 1},
}

_attribute_map = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1001,7 +1001,7 @@ class FileShare(AzureEntityResource):
:type metadata: dict[str, str]
:param share_quota: The maximum size of the share, in gigabytes. Must be
greater than 0, and less than or equal to 5TB (5120). For Large File
Shares, the maximum size is 100000.
Shares, the maximum size is 102400.
:type share_quota: int
"""

Expand All @@ -1011,7 +1011,7 @@ class FileShare(AzureEntityResource):
'type': {'readonly': True},
'etag': {'readonly': True},
'last_modified_time': {'readonly': True},
'share_quota': {'maximum': 100000, 'minimum': 1},
'share_quota': {'maximum': 102400, 'minimum': 1},
}

_attribute_map = {
Expand Down Expand Up @@ -1055,7 +1055,7 @@ class FileShareItem(AzureEntityResource):
:type metadata: dict[str, str]
:param share_quota: The maximum size of the share, in gigabytes. Must be
greater than 0, and less than or equal to 5TB (5120). For Large File
Shares, the maximum size is 100000.
Shares, the maximum size is 102400.
:type share_quota: int
"""

Expand All @@ -1065,7 +1065,7 @@ class FileShareItem(AzureEntityResource):
'type': {'readonly': True},
'etag': {'readonly': True},
'last_modified_time': {'readonly': True},
'share_quota': {'maximum': 100000, 'minimum': 1},
'share_quota': {'maximum': 102400, 'minimum': 1},
}

_attribute_map = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def create(
:type metadata: dict[str, str]
:param share_quota: The maximum size of the share, in gigabytes. Must
be greater than 0, and less than or equal to 5TB (5120). For Large
File Shares, the maximum size is 100000.
File Shares, the maximum size is 102400.
:type share_quota: int
:param dict custom_headers: headers that will be added to the request
:param bool raw: returns the direct response alongside the
Expand Down Expand Up @@ -237,7 +237,7 @@ def update(
:type metadata: dict[str, str]
:param share_quota: The maximum size of the share, in gigabytes. Must
be greater than 0, and less than or equal to 5TB (5120). For Large
File Shares, the maximum size is 100000.
File Shares, the maximum size is 102400.
:type share_quota: int
:param dict custom_headers: headers that will be added to the request
:param bool raw: returns the direct response alongside the
Expand Down