Skip to content

Commit 29ec90c

Browse files
authored
Update to use v1.3.0 of storage sdk (#14)
* replaced sdk * updated imports to relative * rename folder
1 parent 5e58566 commit 29ec90c

Some content is hidden

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

52 files changed

+17815
-1
lines changed

README.rst

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

21+
22+
0.2.1
23+
+++++
24+
* Upgrade:
25+
- 2018-03-28 (from 1.1.0 to 1.3.0)
26+
2127
0.1.8
2228
+++++
2329
* Upgrade:
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#-------------------------------------------------------------------------
2+
# Copyright (c) Microsoft. All rights reserved.
3+
#
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
#--------------------------------------------------------------------------
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.3.0'
9+
10+
# x-ms-version for storage service.
11+
X_MS_VERSION = '2018-03-28'
12+
13+
# internal configurations, should not be changed
14+
_LARGE_BLOB_UPLOAD_MAX_READ_BUFFER_SIZE = 4 * 1024 * 1024

0 commit comments

Comments
 (0)