Skip to content

Commit 61c6dfa

Browse files
authored
Release v2.0.4 of storage v2018-11-09 (#19)
1 parent bd54825 commit 61c6dfa

Some content is hidden

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

53 files changed

+19268
-2
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.2.4
22+
+++++
23+
* Add new API version support:
24+
- 2018-11-09
25+
2126
0.2.3
2227
+++++
2328
* Add new API version support:
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__ = '2.0.1'
9+
10+
# x-ms-version for storage service.
11+
X_MS_VERSION = '2018-11-09'
12+
13+
# internal configurations, should not be changed
14+
_LARGE_BLOB_UPLOAD_MAX_READ_BUFFER_SIZE = 4 * 1024 * 1024

0 commit comments

Comments
 (0)