alibabacloud-vpc20160428 6.13.1__py3-none-any.whl → 6.13.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- alibabacloud_vpc20160428/__init__.py +1 -1
- alibabacloud_vpc20160428/client.py +4 -0
- alibabacloud_vpc20160428/models.py +66 -1
- {alibabacloud_vpc20160428-6.13.1.dist-info → alibabacloud_vpc20160428-6.13.2.dist-info}/METADATA +1 -1
- alibabacloud_vpc20160428-6.13.2.dist-info/RECORD +8 -0
- alibabacloud_vpc20160428-6.13.1.dist-info/RECORD +0 -8
- {alibabacloud_vpc20160428-6.13.1.dist-info → alibabacloud_vpc20160428-6.13.2.dist-info}/LICENSE +0 -0
- {alibabacloud_vpc20160428-6.13.1.dist-info → alibabacloud_vpc20160428-6.13.2.dist-info}/WHEEL +0 -0
- {alibabacloud_vpc20160428-6.13.1.dist-info → alibabacloud_vpc20160428-6.13.2.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '6.13.
|
|
1
|
+
__version__ = '6.13.2'
|
|
@@ -10486,6 +10486,8 @@ class Client(OpenApiClient):
|
|
|
10486
10486
|
query['LineOperator'] = request.line_operator
|
|
10487
10487
|
if not UtilClient.is_unset(request.name):
|
|
10488
10488
|
query['Name'] = request.name
|
|
10489
|
+
if not UtilClient.is_unset(request.optical_module_model):
|
|
10490
|
+
query['OpticalModuleModel'] = request.optical_module_model
|
|
10489
10491
|
if not UtilClient.is_unset(request.owner_account):
|
|
10490
10492
|
query['OwnerAccount'] = request.owner_account
|
|
10491
10493
|
if not UtilClient.is_unset(request.owner_id):
|
|
@@ -10564,6 +10566,8 @@ class Client(OpenApiClient):
|
|
|
10564
10566
|
query['LineOperator'] = request.line_operator
|
|
10565
10567
|
if not UtilClient.is_unset(request.name):
|
|
10566
10568
|
query['Name'] = request.name
|
|
10569
|
+
if not UtilClient.is_unset(request.optical_module_model):
|
|
10570
|
+
query['OpticalModuleModel'] = request.optical_module_model
|
|
10567
10571
|
if not UtilClient.is_unset(request.owner_account):
|
|
10568
10572
|
query['OwnerAccount'] = request.owner_account
|
|
10569
10573
|
if not UtilClient.is_unset(request.owner_id):
|
|
@@ -10980,6 +10980,7 @@ class CreateHighReliablePhysicalConnectionRequestApList(TeaModel):
|
|
|
10980
10980
|
description: str = None,
|
|
10981
10981
|
line_operator: str = None,
|
|
10982
10982
|
name: str = None,
|
|
10983
|
+
optical_module_model: str = None,
|
|
10983
10984
|
peer_location: str = None,
|
|
10984
10985
|
port_num: int = None,
|
|
10985
10986
|
region_id: str = None,
|
|
@@ -11016,6 +11017,7 @@ class CreateHighReliablePhysicalConnectionRequestApList(TeaModel):
|
|
|
11016
11017
|
#
|
|
11017
11018
|
# The name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). It must start with a letter but cannot start with `http://` or` https://`.
|
|
11018
11019
|
self.name = name
|
|
11020
|
+
self.optical_module_model = optical_module_model
|
|
11019
11021
|
# The geographical location of the data center.
|
|
11020
11022
|
self.peer_location = peer_location
|
|
11021
11023
|
# The number of ports. Valid values: 2 to 16. This parameter is required only when **HighReliableType** is set to **SingleApMultiConnection**.
|
|
@@ -11050,6 +11052,8 @@ class CreateHighReliablePhysicalConnectionRequestApList(TeaModel):
|
|
|
11050
11052
|
result['LineOperator'] = self.line_operator
|
|
11051
11053
|
if self.name is not None:
|
|
11052
11054
|
result['Name'] = self.name
|
|
11055
|
+
if self.optical_module_model is not None:
|
|
11056
|
+
result['OpticalModuleModel'] = self.optical_module_model
|
|
11053
11057
|
if self.peer_location is not None:
|
|
11054
11058
|
result['PeerLocation'] = self.peer_location
|
|
11055
11059
|
if self.port_num is not None:
|
|
@@ -11074,6 +11078,8 @@ class CreateHighReliablePhysicalConnectionRequestApList(TeaModel):
|
|
|
11074
11078
|
self.line_operator = m.get('LineOperator')
|
|
11075
11079
|
if m.get('Name') is not None:
|
|
11076
11080
|
self.name = m.get('Name')
|
|
11081
|
+
if m.get('OpticalModuleModel') is not None:
|
|
11082
|
+
self.optical_module_model = m.get('OpticalModuleModel')
|
|
11077
11083
|
if m.get('PeerLocation') is not None:
|
|
11078
11084
|
self.peer_location = m.get('PeerLocation')
|
|
11079
11085
|
if m.get('PortNum') is not None:
|
|
@@ -15040,6 +15046,7 @@ class CreatePhysicalConnectionRequest(TeaModel):
|
|
|
15040
15046
|
device_advanced_capacity: List[str] = None,
|
|
15041
15047
|
line_operator: str = None,
|
|
15042
15048
|
name: str = None,
|
|
15049
|
+
optical_module_model: str = None,
|
|
15043
15050
|
owner_account: str = None,
|
|
15044
15051
|
owner_id: int = None,
|
|
15045
15052
|
peer_location: str = None,
|
|
@@ -15086,6 +15093,7 @@ class CreatePhysicalConnectionRequest(TeaModel):
|
|
|
15086
15093
|
#
|
|
15087
15094
|
# The name must be 2 to 128 characters in length, and can contain letters, digits, underscores (_), and hyphens (-). The name must start with a letter but cannot start with `http://` or `https://`.
|
|
15088
15095
|
self.name = name
|
|
15096
|
+
self.optical_module_model = optical_module_model
|
|
15089
15097
|
self.owner_account = owner_account
|
|
15090
15098
|
self.owner_id = owner_id
|
|
15091
15099
|
# The geographical location of the data center.
|
|
@@ -15149,6 +15157,8 @@ class CreatePhysicalConnectionRequest(TeaModel):
|
|
|
15149
15157
|
result['LineOperator'] = self.line_operator
|
|
15150
15158
|
if self.name is not None:
|
|
15151
15159
|
result['Name'] = self.name
|
|
15160
|
+
if self.optical_module_model is not None:
|
|
15161
|
+
result['OpticalModuleModel'] = self.optical_module_model
|
|
15152
15162
|
if self.owner_account is not None:
|
|
15153
15163
|
result['OwnerAccount'] = self.owner_account
|
|
15154
15164
|
if self.owner_id is not None:
|
|
@@ -15193,6 +15203,8 @@ class CreatePhysicalConnectionRequest(TeaModel):
|
|
|
15193
15203
|
self.line_operator = m.get('LineOperator')
|
|
15194
15204
|
if m.get('Name') is not None:
|
|
15195
15205
|
self.name = m.get('Name')
|
|
15206
|
+
if m.get('OpticalModuleModel') is not None:
|
|
15207
|
+
self.optical_module_model = m.get('OpticalModuleModel')
|
|
15196
15208
|
if m.get('OwnerAccount') is not None:
|
|
15197
15209
|
self.owner_account = m.get('OwnerAccount')
|
|
15198
15210
|
if m.get('OwnerId') is not None:
|
|
@@ -50572,6 +50584,7 @@ class DescribePhysicalConnectionsResponseBodyPhysicalConnectionSetPhysicalConnec
|
|
|
50572
50584
|
line_operator: str = None,
|
|
50573
50585
|
loa_status: str = None,
|
|
50574
50586
|
name: str = None,
|
|
50587
|
+
optical_module_model: str = None,
|
|
50575
50588
|
order_mode: str = None,
|
|
50576
50589
|
parent_physical_connection_ali_uid: int = None,
|
|
50577
50590
|
parent_physical_connection_id: str = None,
|
|
@@ -50656,6 +50669,7 @@ class DescribePhysicalConnectionsResponseBodyPhysicalConnectionSetPhysicalConnec
|
|
|
50656
50669
|
self.loa_status = loa_status
|
|
50657
50670
|
# The name of the Express Connect circuit.
|
|
50658
50671
|
self.name = name
|
|
50672
|
+
self.optical_module_model = optical_module_model
|
|
50659
50673
|
# The payer for the hosted connection. Valid values:
|
|
50660
50674
|
#
|
|
50661
50675
|
# * **PayByPhysicalConnectionOwner**: The partner pays for the shared Express Connect circuit.
|
|
@@ -50781,6 +50795,8 @@ class DescribePhysicalConnectionsResponseBodyPhysicalConnectionSetPhysicalConnec
|
|
|
50781
50795
|
result['LoaStatus'] = self.loa_status
|
|
50782
50796
|
if self.name is not None:
|
|
50783
50797
|
result['Name'] = self.name
|
|
50798
|
+
if self.optical_module_model is not None:
|
|
50799
|
+
result['OpticalModuleModel'] = self.optical_module_model
|
|
50784
50800
|
if self.order_mode is not None:
|
|
50785
50801
|
result['OrderMode'] = self.order_mode
|
|
50786
50802
|
if self.parent_physical_connection_ali_uid is not None:
|
|
@@ -50861,6 +50877,8 @@ class DescribePhysicalConnectionsResponseBodyPhysicalConnectionSetPhysicalConnec
|
|
|
50861
50877
|
self.loa_status = m.get('LoaStatus')
|
|
50862
50878
|
if m.get('Name') is not None:
|
|
50863
50879
|
self.name = m.get('Name')
|
|
50880
|
+
if m.get('OpticalModuleModel') is not None:
|
|
50881
|
+
self.optical_module_model = m.get('OpticalModuleModel')
|
|
50864
50882
|
if m.get('OrderMode') is not None:
|
|
50865
50883
|
self.order_mode = m.get('OrderMode')
|
|
50866
50884
|
if m.get('ParentPhysicalConnectionAliUid') is not None:
|
|
@@ -75503,6 +75521,39 @@ class ListBusinessAccessPointsRequest(TeaModel):
|
|
|
75503
75521
|
return self
|
|
75504
75522
|
|
|
75505
75523
|
|
|
75524
|
+
class ListBusinessAccessPointsResponseBodyBusinessAccessPointsOpticalModuleModels(TeaModel):
|
|
75525
|
+
def __init__(
|
|
75526
|
+
self,
|
|
75527
|
+
optical_module_model: str = None,
|
|
75528
|
+
port_type: str = None,
|
|
75529
|
+
):
|
|
75530
|
+
self.optical_module_model = optical_module_model
|
|
75531
|
+
self.port_type = port_type
|
|
75532
|
+
|
|
75533
|
+
def validate(self):
|
|
75534
|
+
pass
|
|
75535
|
+
|
|
75536
|
+
def to_map(self):
|
|
75537
|
+
_map = super().to_map()
|
|
75538
|
+
if _map is not None:
|
|
75539
|
+
return _map
|
|
75540
|
+
|
|
75541
|
+
result = dict()
|
|
75542
|
+
if self.optical_module_model is not None:
|
|
75543
|
+
result['OpticalModuleModel'] = self.optical_module_model
|
|
75544
|
+
if self.port_type is not None:
|
|
75545
|
+
result['PortType'] = self.port_type
|
|
75546
|
+
return result
|
|
75547
|
+
|
|
75548
|
+
def from_map(self, m: dict = None):
|
|
75549
|
+
m = m or dict()
|
|
75550
|
+
if m.get('OpticalModuleModel') is not None:
|
|
75551
|
+
self.optical_module_model = m.get('OpticalModuleModel')
|
|
75552
|
+
if m.get('PortType') is not None:
|
|
75553
|
+
self.port_type = m.get('PortType')
|
|
75554
|
+
return self
|
|
75555
|
+
|
|
75556
|
+
|
|
75506
75557
|
class ListBusinessAccessPointsResponseBodyBusinessAccessPoints(TeaModel):
|
|
75507
75558
|
def __init__(
|
|
75508
75559
|
self,
|
|
@@ -75511,6 +75562,7 @@ class ListBusinessAccessPointsResponseBodyBusinessAccessPoints(TeaModel):
|
|
|
75511
75562
|
cloud_box_instance_ids: str = None,
|
|
75512
75563
|
latitude: float = None,
|
|
75513
75564
|
longitude: float = None,
|
|
75565
|
+
optical_module_models: List[ListBusinessAccessPointsResponseBodyBusinessAccessPointsOpticalModuleModels] = None,
|
|
75514
75566
|
support_line_operator: str = None,
|
|
75515
75567
|
support_port_types: str = None,
|
|
75516
75568
|
):
|
|
@@ -75526,6 +75578,7 @@ class ListBusinessAccessPointsResponseBodyBusinessAccessPoints(TeaModel):
|
|
|
75526
75578
|
self.latitude = latitude
|
|
75527
75579
|
# The longitude of the access point.
|
|
75528
75580
|
self.longitude = longitude
|
|
75581
|
+
self.optical_module_models = optical_module_models
|
|
75529
75582
|
# The connectivity provider of the Express Connect circuit. Valid values:
|
|
75530
75583
|
#
|
|
75531
75584
|
# * **CT**: China Telecom.
|
|
@@ -75549,7 +75602,10 @@ class ListBusinessAccessPointsResponseBodyBusinessAccessPoints(TeaModel):
|
|
|
75549
75602
|
self.support_port_types = support_port_types
|
|
75550
75603
|
|
|
75551
75604
|
def validate(self):
|
|
75552
|
-
|
|
75605
|
+
if self.optical_module_models:
|
|
75606
|
+
for k in self.optical_module_models:
|
|
75607
|
+
if k:
|
|
75608
|
+
k.validate()
|
|
75553
75609
|
|
|
75554
75610
|
def to_map(self):
|
|
75555
75611
|
_map = super().to_map()
|
|
@@ -75567,6 +75623,10 @@ class ListBusinessAccessPointsResponseBodyBusinessAccessPoints(TeaModel):
|
|
|
75567
75623
|
result['Latitude'] = self.latitude
|
|
75568
75624
|
if self.longitude is not None:
|
|
75569
75625
|
result['Longitude'] = self.longitude
|
|
75626
|
+
result['OpticalModuleModels'] = []
|
|
75627
|
+
if self.optical_module_models is not None:
|
|
75628
|
+
for k in self.optical_module_models:
|
|
75629
|
+
result['OpticalModuleModels'].append(k.to_map() if k else None)
|
|
75570
75630
|
if self.support_line_operator is not None:
|
|
75571
75631
|
result['SupportLineOperator'] = self.support_line_operator
|
|
75572
75632
|
if self.support_port_types is not None:
|
|
@@ -75585,6 +75645,11 @@ class ListBusinessAccessPointsResponseBodyBusinessAccessPoints(TeaModel):
|
|
|
75585
75645
|
self.latitude = m.get('Latitude')
|
|
75586
75646
|
if m.get('Longitude') is not None:
|
|
75587
75647
|
self.longitude = m.get('Longitude')
|
|
75648
|
+
self.optical_module_models = []
|
|
75649
|
+
if m.get('OpticalModuleModels') is not None:
|
|
75650
|
+
for k in m.get('OpticalModuleModels'):
|
|
75651
|
+
temp_model = ListBusinessAccessPointsResponseBodyBusinessAccessPointsOpticalModuleModels()
|
|
75652
|
+
self.optical_module_models.append(temp_model.from_map(k))
|
|
75588
75653
|
if m.get('SupportLineOperator') is not None:
|
|
75589
75654
|
self.support_line_operator = m.get('SupportLineOperator')
|
|
75590
75655
|
if m.get('SupportPortTypes') is not None:
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
alibabacloud_vpc20160428/__init__.py,sha256=9DXMT8BJjQtbOIREBjZFKPfCLhSd8NFTdfF-oesGzew,22
|
|
2
|
+
alibabacloud_vpc20160428/client.py,sha256=yh-__866a2VOwfHsgK6gRwjptde0KoZjAVtj7HvI_hY,2885475
|
|
3
|
+
alibabacloud_vpc20160428/models.py,sha256=CcFgwrW9-cTpVFz_EdcGO3Us4F44fzUsD-Es3ubXyLQ,4246950
|
|
4
|
+
alibabacloud_vpc20160428-6.13.2.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
+
alibabacloud_vpc20160428-6.13.2.dist-info/METADATA,sha256=DDbYXUjdpy9RXGYUjbvQP43GTRQTOPxTtBnUbbgbsAQ,2331
|
|
6
|
+
alibabacloud_vpc20160428-6.13.2.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
+
alibabacloud_vpc20160428-6.13.2.dist-info/top_level.txt,sha256=aF3N1qaLDlyXEHXQ7AIBXYBUVWa-5wNpQNKhEiij7uA,25
|
|
8
|
+
alibabacloud_vpc20160428-6.13.2.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
alibabacloud_vpc20160428/__init__.py,sha256=x0W3y687hnu6CNAcyuQ7jcxfLFu1U-wH3IkC6GsJYkY,22
|
|
2
|
-
alibabacloud_vpc20160428/client.py,sha256=MCfVzSevWZQjuIerDEMHc7A2W8R2dnjgQG_PZmm8OEY,2885201
|
|
3
|
-
alibabacloud_vpc20160428/models.py,sha256=OsYMQrmNah3GRfCe8rs-aoJMW9QDZps31vVeBcM3ldo,4244086
|
|
4
|
-
alibabacloud_vpc20160428-6.13.1.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
-
alibabacloud_vpc20160428-6.13.1.dist-info/METADATA,sha256=GMZZYpPQKf3I3kaeKYPUw2BITtnjBbC81QQ9VnCRa0o,2331
|
|
6
|
-
alibabacloud_vpc20160428-6.13.1.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
-
alibabacloud_vpc20160428-6.13.1.dist-info/top_level.txt,sha256=aF3N1qaLDlyXEHXQ7AIBXYBUVWa-5wNpQNKhEiij7uA,25
|
|
8
|
-
alibabacloud_vpc20160428-6.13.1.dist-info/RECORD,,
|
{alibabacloud_vpc20160428-6.13.1.dist-info → alibabacloud_vpc20160428-6.13.2.dist-info}/LICENSE
RENAMED
|
File without changes
|
{alibabacloud_vpc20160428-6.13.1.dist-info → alibabacloud_vpc20160428-6.13.2.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|