Skip to content

Commit bd1a242

Browse files
williexutroydai
authored andcommitted
Integrate storage data plane SDK 1.1.0 (#13)
1 parent aa837c8 commit bd1a242

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+17415
-1
lines changed

README.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ Handles multi-API versions of Azure Storage Data Plane originally from https://g
1818
Change Log
1919
----------
2020

21+
0.1.8
22+
+++++
23+
* Upgrade:
24+
- 2017-07-29 (from 0.37.1 to 1.1.0)
25+
2126
0.1.7
2227
+++++
2328
* Upgrade:
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# -------------------------------------------------------------------------
2+
# Copyright (c) Microsoft Corporation. All rights reserved.
3+
# Licensed under the MIT License. See License.txt in the project root for
4+
# license information.
5+
# --------------------------------------------------------------------------
6+
from .appendblobservice import AppendBlobService
7+
from .blockblobservice import BlockBlobService
8+
from .models import (
9+
Container,
10+
ContainerProperties,
11+
Blob,
12+
BlobProperties,
13+
BlobBlock,
14+
BlobBlockList,
15+
PageRange,
16+
ContentSettings,
17+
CopyProperties,
18+
ContainerPermissions,
19+
BlobPermissions,
20+
_LeaseActions,
21+
AppendBlockProperties,
22+
PageBlobProperties,
23+
ResourceProperties,
24+
Include,
25+
SequenceNumberAction,
26+
BlockListType,
27+
PublicAccess,
28+
BlobPrefix,
29+
DeleteSnapshot,
30+
)
31+
from .pageblobservice import PageBlobService
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# -------------------------------------------------------------------------
2+
# Copyright (c) Microsoft Corporation. All rights reserved.
3+
# Licensed under the MIT License. See License.txt in the project root for
4+
# license information.
5+
# --------------------------------------------------------------------------
6+
7+
__author__ = 'Microsoft Corp. <[email protected]>'
8+
__version__ = '1.1.0'
9+
10+
# x-ms-version for storage service.
11+
X_MS_VERSION = '2017-07-29'
12+
13+
# internal configurations, should not be changed
14+
_LARGE_BLOB_UPLOAD_MAX_READ_BUFFER_SIZE = 4 * 1024 * 1024

0 commit comments

Comments
 (0)