Skip to content

Commit dcf55cf

Browse files
authored
initial commit (Azure#48285)
1 parent 41c122a commit dcf55cf

File tree

1 file changed

+20
-5
lines changed

1 file changed

+20
-5
lines changed

sdk/storage/Azure.Storage.Blobs/src/BlockBlobClient.cs

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1829,9 +1829,12 @@ private async Task<Response<BlockInfo>> StageBlockFromUriInternal(
18291829
/// this by specifying whether to commit a block from the committed
18301830
/// block list or from the uncommitted block list, or to commit the
18311831
/// most recently uploaded version of the block, whichever list it
1832-
/// may belong to. Any blocks not specified in the block list and
1832+
/// may belong to. Any blocks not specified in the block list are
18331833
/// permanently deleted.
18341834
///
1835+
/// Note: Uncommitted blocks will expire and be permanently deleted after 7 days.
1836+
/// Blocks that are committed to a blob do not expire.
1837+
///
18351838
/// For more information, see
18361839
/// <see href="https://docs.microsoft.com/rest/api/storageservices/put-block-list">
18371840
/// Put Block List</see>.
@@ -1886,9 +1889,12 @@ public virtual Response<BlobContentInfo> CommitBlockList(
18861889
/// this by specifying whether to commit a block from the committed
18871890
/// block list or from the uncommitted block list, or to commit the
18881891
/// most recently uploaded version of the block, whichever list it
1889-
/// may belong to. Any blocks not specified in the block list and
1892+
/// may belong to. Any blocks not specified in the block list are
18901893
/// permanently deleted.
18911894
///
1895+
/// Note: Uncommitted blocks will expire and be permanently deleted after 7 days.
1896+
/// Blocks that are committed to a blob do not expire.
1897+
///
18921898
/// For more information, see
18931899
/// <see href="https://docs.microsoft.com/rest/api/storageservices/put-block-list">
18941900
/// Put Block List</see>.
@@ -1959,9 +1965,12 @@ public virtual Response<BlobContentInfo> CommitBlockList(
19591965
/// this by specifying whether to commit a block from the committed
19601966
/// block list or from the uncommitted block list, or to commit the
19611967
/// most recently uploaded version of the block, whichever list it
1962-
/// may belong to. Any blocks not specified in the block list and
1968+
/// may belong to. Any blocks not specified in the block list are
19631969
/// permanently deleted.
19641970
///
1971+
/// Note: Uncommitted blocks will expire and be permanently deleted after 7 days.
1972+
/// Blocks that are committed to a blob do not expire.
1973+
///
19651974
/// For more information, see
19661975
/// <see href="https://docs.microsoft.com/rest/api/storageservices/put-block-list">
19671976
/// Put Block List</see>.
@@ -2016,9 +2025,12 @@ await CommitBlockListInternal(
20162025
/// this by specifying whether to commit a block from the committed
20172026
/// block list or from the uncommitted block list, or to commit the
20182027
/// most recently uploaded version of the block, whichever list it
2019-
/// may belong to. Any blocks not specified in the block list and
2028+
/// may belong to. Any blocks not specified in the block list are
20202029
/// permanently deleted.
20212030
///
2031+
/// Note: Uncommitted blocks will expire and be permanently deleted after 7 days.
2032+
/// Blocks that are committed to a blob do not expire.
2033+
///
20222034
/// For more information, see
20232035
/// <see href="https://docs.microsoft.com/rest/api/storageservices/put-block-list">
20242036
/// Put Block List</see>.
@@ -2089,9 +2101,12 @@ await CommitBlockListInternal(
20892101
/// this by specifying whether to commit a block from the committed
20902102
/// block list or from the uncommitted block list, or to commit the
20912103
/// most recently uploaded version of the block, whichever list it
2092-
/// may belong to. Any blocks not specified in the block list and
2104+
/// may belong to. Any blocks not specified in the block list are
20932105
/// permanently deleted.
20942106
///
2107+
/// Note: Uncommitted blocks will expire and be permanently deleted after 7 days.
2108+
/// Blocks that are committed to a blob do not expire.
2109+
///
20952110
/// For more information, see
20962111
/// <see href="https://docs.microsoft.com/rest/api/storageservices/put-block-list">
20972112
/// Put Block List</see>.

0 commit comments

Comments
 (0)