Skip to content

Commit cedfb41

Browse files
[AutoRelease] t2-elasticsan-2024-01-22-86822(can only be merged by SDK owner) (#33941)
* code and test * Update CHANGELOG.md --------- Co-authored-by: azure-sdk <PythonSdkPipelines> Co-authored-by: ChenxiJiang333 <[email protected]>
1 parent 2b67c89 commit cedfb41

File tree

8 files changed

+579
-265
lines changed

8 files changed

+579
-265
lines changed

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

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

3+
## 1.0.0 (2024-01-25)
4+
5+
### Features Added
6+
7+
- Model ElasticSanUpdate has a new parameter properties
8+
- Model PrivateLinkResource has a new parameter properties
9+
- Model VolumeGroup has a new parameter properties
10+
- Model VolumeGroupUpdate has a new parameter properties
11+
- Model VolumeUpdate has a new parameter properties
12+
13+
### Breaking Changes
14+
15+
- Model ElasticSan has a new required parameter properties
16+
- Model ElasticSan no longer has parameter availability_zones
17+
- Model ElasticSan no longer has parameter base_size_ti_b
18+
- Model ElasticSan no longer has parameter extended_capacity_size_ti_b
19+
- Model ElasticSan no longer has parameter private_endpoint_connections
20+
- Model ElasticSan no longer has parameter provisioning_state
21+
- Model ElasticSan no longer has parameter public_network_access
22+
- Model ElasticSan no longer has parameter sku
23+
- Model ElasticSan no longer has parameter total_iops
24+
- Model ElasticSan no longer has parameter total_m_bps
25+
- Model ElasticSan no longer has parameter total_size_ti_b
26+
- Model ElasticSan no longer has parameter total_volume_size_gi_b
27+
- Model ElasticSan no longer has parameter volume_group_count
28+
- Model ElasticSanUpdate no longer has parameter base_size_ti_b
29+
- Model ElasticSanUpdate no longer has parameter extended_capacity_size_ti_b
30+
- Model ElasticSanUpdate no longer has parameter public_network_access
31+
- Model PrivateEndpointConnection has a new required parameter properties
32+
- Model PrivateEndpointConnection no longer has parameter group_ids
33+
- Model PrivateEndpointConnection no longer has parameter private_endpoint
34+
- Model PrivateEndpointConnection no longer has parameter private_link_service_connection_state
35+
- Model PrivateEndpointConnection no longer has parameter provisioning_state
36+
- Model PrivateLinkResource no longer has parameter group_id
37+
- Model PrivateLinkResource no longer has parameter required_members
38+
- Model PrivateLinkResource no longer has parameter required_zone_names
39+
- Model Snapshot has a new required parameter properties
40+
- Model Snapshot no longer has parameter creation_data
41+
- Model Snapshot no longer has parameter provisioning_state
42+
- Model Snapshot no longer has parameter source_volume_size_gi_b
43+
- Model Snapshot no longer has parameter volume_name
44+
- Model Volume has a new required parameter properties
45+
- Model Volume no longer has parameter creation_data
46+
- Model Volume no longer has parameter managed_by
47+
- Model Volume no longer has parameter provisioning_state
48+
- Model Volume no longer has parameter size_gi_b
49+
- Model Volume no longer has parameter storage_target
50+
- Model Volume no longer has parameter volume_id
51+
- Model VolumeGroup no longer has parameter encryption
52+
- Model VolumeGroup no longer has parameter encryption_properties
53+
- Model VolumeGroup no longer has parameter network_acls
54+
- Model VolumeGroup no longer has parameter private_endpoint_connections
55+
- Model VolumeGroup no longer has parameter protocol_type
56+
- Model VolumeGroup no longer has parameter provisioning_state
57+
- Model VolumeGroupUpdate no longer has parameter encryption
58+
- Model VolumeGroupUpdate no longer has parameter encryption_properties
59+
- Model VolumeGroupUpdate no longer has parameter network_acls
60+
- Model VolumeGroupUpdate no longer has parameter protocol_type
61+
- Model VolumeUpdate no longer has parameter managed_by
62+
- Model VolumeUpdate no longer has parameter size_gi_b
63+
364
## 1.0.0b3 (2023-10-23)
465

566
### Features Added

sdk/elasticsan/azure-mgmt-elasticsan/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Microsoft Azure SDK for Python
22

33
This is the Microsoft Azure Elasticsan Management Client Library.
4-
This package has been tested with Python 3.7+.
4+
This package has been tested with Python 3.8+.
55
For a more complete view of Azure libraries, see the [azure sdk python release](https://aka.ms/azsdk/python/all).
66

77
## _Disclaimer_
@@ -12,7 +12,7 @@ _Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For
1212

1313
### Prerequisites
1414

15-
- Python 3.7+ is required to use this package.
15+
- Python 3.8+ is required to use this package.
1616
- [Azure subscription](https://azure.microsoft.com/free/)
1717

1818
### Install the package

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"commit": "24c9b5a8982cb081662b27ef8ab93da3389b0160",
2+
"commit": "09e36d3ffae7fa6428cef8c86f2ad7caf4704e2c",
33
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
44
"autorest": "3.9.7",
55
"use": [

sdk/elasticsan/azure-mgmt-elasticsan/azure/mgmt/elasticsan/_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 = "1.0.0b3"
9+
VERSION = "1.0.0"

sdk/elasticsan/azure-mgmt-elasticsan/azure/mgmt/elasticsan/models/__init__.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88

99
from ._models_py3 import ElasticSan
1010
from ._models_py3 import ElasticSanList
11+
from ._models_py3 import ElasticSanProperties
1112
from ._models_py3 import ElasticSanUpdate
13+
from ._models_py3 import ElasticSanUpdateProperties
1214
from ._models_py3 import EncryptionIdentity
1315
from ._models_py3 import EncryptionProperties
1416
from ._models_py3 import ErrorAdditionalInfo
@@ -25,8 +27,10 @@
2527
from ._models_py3 import PrivateEndpoint
2628
from ._models_py3 import PrivateEndpointConnection
2729
from ._models_py3 import PrivateEndpointConnectionListResult
30+
from ._models_py3 import PrivateEndpointConnectionProperties
2831
from ._models_py3 import PrivateLinkResource
2932
from ._models_py3 import PrivateLinkResourceListResult
33+
from ._models_py3 import PrivateLinkResourceProperties
3034
from ._models_py3 import PrivateLinkServiceConnectionState
3135
from ._models_py3 import ProxyResource
3236
from ._models_py3 import Resource
@@ -38,6 +42,7 @@
3842
from ._models_py3 import Snapshot
3943
from ._models_py3 import SnapshotCreationData
4044
from ._models_py3 import SnapshotList
45+
from ._models_py3 import SnapshotProperties
4146
from ._models_py3 import SourceCreationData
4247
from ._models_py3 import SystemData
4348
from ._models_py3 import TrackedResource
@@ -46,9 +51,13 @@
4651
from ._models_py3 import Volume
4752
from ._models_py3 import VolumeGroup
4853
from ._models_py3 import VolumeGroupList
54+
from ._models_py3 import VolumeGroupProperties
4955
from ._models_py3 import VolumeGroupUpdate
56+
from ._models_py3 import VolumeGroupUpdateProperties
5057
from ._models_py3 import VolumeList
58+
from ._models_py3 import VolumeProperties
5159
from ._models_py3 import VolumeUpdate
60+
from ._models_py3 import VolumeUpdateProperties
5261

5362
from ._elastic_san_mgmt_client_enums import Action
5463
from ._elastic_san_mgmt_client_enums import ActionType
@@ -73,7 +82,9 @@
7382
__all__ = [
7483
"ElasticSan",
7584
"ElasticSanList",
85+
"ElasticSanProperties",
7686
"ElasticSanUpdate",
87+
"ElasticSanUpdateProperties",
7788
"EncryptionIdentity",
7889
"EncryptionProperties",
7990
"ErrorAdditionalInfo",
@@ -90,8 +101,10 @@
90101
"PrivateEndpoint",
91102
"PrivateEndpointConnection",
92103
"PrivateEndpointConnectionListResult",
104+
"PrivateEndpointConnectionProperties",
93105
"PrivateLinkResource",
94106
"PrivateLinkResourceListResult",
107+
"PrivateLinkResourceProperties",
95108
"PrivateLinkServiceConnectionState",
96109
"ProxyResource",
97110
"Resource",
@@ -103,6 +116,7 @@
103116
"Snapshot",
104117
"SnapshotCreationData",
105118
"SnapshotList",
119+
"SnapshotProperties",
106120
"SourceCreationData",
107121
"SystemData",
108122
"TrackedResource",
@@ -111,9 +125,13 @@
111125
"Volume",
112126
"VolumeGroup",
113127
"VolumeGroupList",
128+
"VolumeGroupProperties",
114129
"VolumeGroupUpdate",
130+
"VolumeGroupUpdateProperties",
115131
"VolumeList",
132+
"VolumeProperties",
116133
"VolumeUpdate",
134+
"VolumeUpdateProperties",
117135
"Action",
118136
"ActionType",
119137
"CreatedByType",

0 commit comments

Comments
 (0)