Skip to content

Commit 9d63a2d

Browse files
azure-sdkChenxiJiang333msyyc
authored
[AutoRelease] t2-storage-2024-06-27-00088(can only be merged by SDK owner) (#36262)
* code and test * update-changelog * Update CHANGELOG.md * update-testcase --------- Co-authored-by: azure-sdk <PythonSdkPipelines> Co-authored-by: ChenxiJiang333 <[email protected]> Co-authored-by: Yuchao Yan <[email protected]>
1 parent a4dddb0 commit 9d63a2d

File tree

36 files changed

+109
-50
lines changed

36 files changed

+109
-50
lines changed

sdk/storage/azure-mgmt-storage/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Release History
22

3+
## 21.2.1 (2024-06-27)
4+
5+
### Bugs Fixed
6+
7+
- Fix signature `maxpagesize` type of Operation StorageTaskAssignmentInstancesReportOperations.list from str to int
8+
- Fix signature `maxpagesize` type of Operation StorageTaskAssignmentsInstancesReportOperations.list from str to int
9+
- Fix signature `maxpagesize` type of Operation StorageTaskAssignmentsOperations.list from str to int
10+
311
## 21.2.0 (2024-06-17)
412

513
### Features Added

sdk/storage/azure-mgmt-storage/_meta.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2-
"commit": "b22c642b361e6d6e7d72a2347a09b0bcf6075d70",
2+
"commit": "43f10d3b8bacd5fc6b01254b5050c613f26c3573",
33
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
44
"autorest": "3.10.2",
55
"use": [
6-
"@autorest/[email protected].16",
6+
"@autorest/[email protected].19",
77
"@autorest/[email protected]"
88
],
9-
"autorest_command": "autorest specification/storage/resource-manager/readme.md --generate-sample=True --include-x-ms-examples-original-file=True --python --python-sdks-folder=/home/vsts/work/1/azure-sdk-for-python/sdk --use=@autorest/[email protected].16 --use=@autorest/[email protected] --version=3.10.2 --version-tolerant=False",
9+
"autorest_command": "autorest specification/storage/resource-manager/readme.md --generate-sample=True --include-x-ms-examples-original-file=True --python --python-sdks-folder=/home/vsts/work/1/azure-sdk-for-python/sdk --use=@autorest/[email protected].19 --use=@autorest/[email protected] --version=3.10.2 --version-tolerant=False",
1010
"readme": "specification/storage/resource-manager/readme.md",
1111
"package-2023-01": "2023-07-20 11:56:40 -0700 3e6b4ddca225530c27273d0f816466a905c0151b Microsoft.Storage/stable/2023-01-01/table.json",
1212
"package-2022-09": "2022-11-13 19:43:16 -0800 da0cfefaa0e6c237e1e3819f1cb2e11d7606878d Microsoft.Storage/stable/2022-09-01/table.json",
@@ -29,5 +29,5 @@
2929
"package-2016-12": "2020-05-21 10:20:08 +0200 db0f437ba79086e20570d648fe932c4266e7a7ed Microsoft.Storage/stable/2016-12-01/storage.json",
3030
"package-2016-01": "2019-06-26 12:38:19 -0400 26df0a691d94445b2c96d348f5ecc31f6f9a2099 Microsoft.Storage/stable/2016-01-01/storage.json",
3131
"package-2015-06": "2019-06-26 12:38:19 -0400 26df0a691d94445b2c96d348f5ecc31f6f9a2099 Microsoft.Storage/stable/2015-06-15/storage.json",
32-
"package-2023-05": "2024-06-04 20:39:42 -0700 09c187c9589a143a477ed02c6639e914a4818179 Microsoft.Storage/stable/2023-05-01/storageTaskAssignments.json"
32+
"package-2023-05": "2024-06-26 09:32:01 -0700 db377f47cf7bf53bf077aa42967112a9783980d5 Microsoft.Storage/stable/2023-05-01/storageTaskAssignments.json"
3333
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"AssetsRepo": "Azure/azure-sdk-assets",
3+
"AssetsRepoPrefixPath": "python",
4+
"TagPrefix": "python/storage/azure-mgmt-storage",
5+
"Tag": "python/storage/azure-mgmt-storage_745b7ea500"
6+
}

sdk/storage/azure-mgmt-storage/azure/mgmt/storage/_serialization.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1447,7 +1447,7 @@ def _deserialize(self, target_obj, data):
14471447
elif isinstance(response, type) and issubclass(response, Enum):
14481448
return self.deserialize_enum(data, response)
14491449

1450-
if data is None:
1450+
if data is None or data is CoreNull:
14511451
return data
14521452
try:
14531453
attributes = response._attribute_map # type: ignore

sdk/storage/azure-mgmt-storage/azure/mgmt/storage/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
# license information.
66
# --------------------------------------------------------------------------
77

8-
VERSION = "21.2.0"
8+
VERSION = "21.2.1"

sdk/storage/azure-mgmt-storage/azure/mgmt/storage/v2015_06_15/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
VERSION = "21.2.0"
9+
VERSION = "21.2.1"

sdk/storage/azure-mgmt-storage/azure/mgmt/storage/v2016_01_01/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
VERSION = "21.2.0"
9+
VERSION = "21.2.1"

sdk/storage/azure-mgmt-storage/azure/mgmt/storage/v2016_12_01/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
VERSION = "21.2.0"
9+
VERSION = "21.2.1"

sdk/storage/azure-mgmt-storage/azure/mgmt/storage/v2017_06_01/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
VERSION = "21.2.0"
9+
VERSION = "21.2.1"

sdk/storage/azure-mgmt-storage/azure/mgmt/storage/v2017_10_01/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
VERSION = "21.2.0"
9+
VERSION = "21.2.1"

0 commit comments

Comments
 (0)