alibabacloud-vpc20160428 6.13.0__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 +67 -4
- {alibabacloud_vpc20160428-6.13.0.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.0.dist-info/RECORD +0 -8
- {alibabacloud_vpc20160428-6.13.0.dist-info → alibabacloud_vpc20160428-6.13.2.dist-info}/LICENSE +0 -0
- {alibabacloud_vpc20160428-6.13.0.dist-info → alibabacloud_vpc20160428-6.13.2.dist-info}/WHEEL +0 -0
- {alibabacloud_vpc20160428-6.13.0.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):
|
|
@@ -2718,8 +2718,6 @@ class AllocateIpv6InternetBandwidthRequest(TeaModel):
|
|
|
2718
2718
|
# This parameter is required.
|
|
2719
2719
|
self.ipv_6address_id = ipv_6address_id
|
|
2720
2720
|
# The ID of the IPv6 gateway.
|
|
2721
|
-
#
|
|
2722
|
-
# This parameter is required.
|
|
2723
2721
|
self.ipv_6gateway_id = ipv_6gateway_id
|
|
2724
2722
|
self.owner_account = owner_account
|
|
2725
2723
|
self.owner_id = owner_id
|
|
@@ -10982,6 +10980,7 @@ class CreateHighReliablePhysicalConnectionRequestApList(TeaModel):
|
|
|
10982
10980
|
description: str = None,
|
|
10983
10981
|
line_operator: str = None,
|
|
10984
10982
|
name: str = None,
|
|
10983
|
+
optical_module_model: str = None,
|
|
10985
10984
|
peer_location: str = None,
|
|
10986
10985
|
port_num: int = None,
|
|
10987
10986
|
region_id: str = None,
|
|
@@ -11018,6 +11017,7 @@ class CreateHighReliablePhysicalConnectionRequestApList(TeaModel):
|
|
|
11018
11017
|
#
|
|
11019
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://`.
|
|
11020
11019
|
self.name = name
|
|
11020
|
+
self.optical_module_model = optical_module_model
|
|
11021
11021
|
# The geographical location of the data center.
|
|
11022
11022
|
self.peer_location = peer_location
|
|
11023
11023
|
# The number of ports. Valid values: 2 to 16. This parameter is required only when **HighReliableType** is set to **SingleApMultiConnection**.
|
|
@@ -11052,6 +11052,8 @@ class CreateHighReliablePhysicalConnectionRequestApList(TeaModel):
|
|
|
11052
11052
|
result['LineOperator'] = self.line_operator
|
|
11053
11053
|
if self.name is not None:
|
|
11054
11054
|
result['Name'] = self.name
|
|
11055
|
+
if self.optical_module_model is not None:
|
|
11056
|
+
result['OpticalModuleModel'] = self.optical_module_model
|
|
11055
11057
|
if self.peer_location is not None:
|
|
11056
11058
|
result['PeerLocation'] = self.peer_location
|
|
11057
11059
|
if self.port_num is not None:
|
|
@@ -11076,6 +11078,8 @@ class CreateHighReliablePhysicalConnectionRequestApList(TeaModel):
|
|
|
11076
11078
|
self.line_operator = m.get('LineOperator')
|
|
11077
11079
|
if m.get('Name') is not None:
|
|
11078
11080
|
self.name = m.get('Name')
|
|
11081
|
+
if m.get('OpticalModuleModel') is not None:
|
|
11082
|
+
self.optical_module_model = m.get('OpticalModuleModel')
|
|
11079
11083
|
if m.get('PeerLocation') is not None:
|
|
11080
11084
|
self.peer_location = m.get('PeerLocation')
|
|
11081
11085
|
if m.get('PortNum') is not None:
|
|
@@ -15042,6 +15046,7 @@ class CreatePhysicalConnectionRequest(TeaModel):
|
|
|
15042
15046
|
device_advanced_capacity: List[str] = None,
|
|
15043
15047
|
line_operator: str = None,
|
|
15044
15048
|
name: str = None,
|
|
15049
|
+
optical_module_model: str = None,
|
|
15045
15050
|
owner_account: str = None,
|
|
15046
15051
|
owner_id: int = None,
|
|
15047
15052
|
peer_location: str = None,
|
|
@@ -15088,6 +15093,7 @@ class CreatePhysicalConnectionRequest(TeaModel):
|
|
|
15088
15093
|
#
|
|
15089
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://`.
|
|
15090
15095
|
self.name = name
|
|
15096
|
+
self.optical_module_model = optical_module_model
|
|
15091
15097
|
self.owner_account = owner_account
|
|
15092
15098
|
self.owner_id = owner_id
|
|
15093
15099
|
# The geographical location of the data center.
|
|
@@ -15151,6 +15157,8 @@ class CreatePhysicalConnectionRequest(TeaModel):
|
|
|
15151
15157
|
result['LineOperator'] = self.line_operator
|
|
15152
15158
|
if self.name is not None:
|
|
15153
15159
|
result['Name'] = self.name
|
|
15160
|
+
if self.optical_module_model is not None:
|
|
15161
|
+
result['OpticalModuleModel'] = self.optical_module_model
|
|
15154
15162
|
if self.owner_account is not None:
|
|
15155
15163
|
result['OwnerAccount'] = self.owner_account
|
|
15156
15164
|
if self.owner_id is not None:
|
|
@@ -15195,6 +15203,8 @@ class CreatePhysicalConnectionRequest(TeaModel):
|
|
|
15195
15203
|
self.line_operator = m.get('LineOperator')
|
|
15196
15204
|
if m.get('Name') is not None:
|
|
15197
15205
|
self.name = m.get('Name')
|
|
15206
|
+
if m.get('OpticalModuleModel') is not None:
|
|
15207
|
+
self.optical_module_model = m.get('OpticalModuleModel')
|
|
15198
15208
|
if m.get('OwnerAccount') is not None:
|
|
15199
15209
|
self.owner_account = m.get('OwnerAccount')
|
|
15200
15210
|
if m.get('OwnerId') is not None:
|
|
@@ -25584,7 +25594,7 @@ class DeleteExpressConnectRequest(TeaModel):
|
|
|
25584
25594
|
self.force = force
|
|
25585
25595
|
self.owner_account = owner_account
|
|
25586
25596
|
self.owner_id = owner_id
|
|
25587
|
-
# The ID of the region where the Express Connect instance is deployed. Call the [
|
|
25597
|
+
# The ID of the region where the Express Connect instance is deployed. Call the [DescribeRegion](https://www.alibabacloud.com/help/vpc/developer-reference/api-vpc-2016-04-28-describeregions?spm=a2c63.p38356.0.i2) operation to query the region list.
|
|
25588
25598
|
#
|
|
25589
25599
|
# This parameter is required.
|
|
25590
25600
|
self.region_id = region_id
|
|
@@ -50574,6 +50584,7 @@ class DescribePhysicalConnectionsResponseBodyPhysicalConnectionSetPhysicalConnec
|
|
|
50574
50584
|
line_operator: str = None,
|
|
50575
50585
|
loa_status: str = None,
|
|
50576
50586
|
name: str = None,
|
|
50587
|
+
optical_module_model: str = None,
|
|
50577
50588
|
order_mode: str = None,
|
|
50578
50589
|
parent_physical_connection_ali_uid: int = None,
|
|
50579
50590
|
parent_physical_connection_id: str = None,
|
|
@@ -50658,6 +50669,7 @@ class DescribePhysicalConnectionsResponseBodyPhysicalConnectionSetPhysicalConnec
|
|
|
50658
50669
|
self.loa_status = loa_status
|
|
50659
50670
|
# The name of the Express Connect circuit.
|
|
50660
50671
|
self.name = name
|
|
50672
|
+
self.optical_module_model = optical_module_model
|
|
50661
50673
|
# The payer for the hosted connection. Valid values:
|
|
50662
50674
|
#
|
|
50663
50675
|
# * **PayByPhysicalConnectionOwner**: The partner pays for the shared Express Connect circuit.
|
|
@@ -50783,6 +50795,8 @@ class DescribePhysicalConnectionsResponseBodyPhysicalConnectionSetPhysicalConnec
|
|
|
50783
50795
|
result['LoaStatus'] = self.loa_status
|
|
50784
50796
|
if self.name is not None:
|
|
50785
50797
|
result['Name'] = self.name
|
|
50798
|
+
if self.optical_module_model is not None:
|
|
50799
|
+
result['OpticalModuleModel'] = self.optical_module_model
|
|
50786
50800
|
if self.order_mode is not None:
|
|
50787
50801
|
result['OrderMode'] = self.order_mode
|
|
50788
50802
|
if self.parent_physical_connection_ali_uid is not None:
|
|
@@ -50863,6 +50877,8 @@ class DescribePhysicalConnectionsResponseBodyPhysicalConnectionSetPhysicalConnec
|
|
|
50863
50877
|
self.loa_status = m.get('LoaStatus')
|
|
50864
50878
|
if m.get('Name') is not None:
|
|
50865
50879
|
self.name = m.get('Name')
|
|
50880
|
+
if m.get('OpticalModuleModel') is not None:
|
|
50881
|
+
self.optical_module_model = m.get('OpticalModuleModel')
|
|
50866
50882
|
if m.get('OrderMode') is not None:
|
|
50867
50883
|
self.order_mode = m.get('OrderMode')
|
|
50868
50884
|
if m.get('ParentPhysicalConnectionAliUid') is not None:
|
|
@@ -75505,6 +75521,39 @@ class ListBusinessAccessPointsRequest(TeaModel):
|
|
|
75505
75521
|
return self
|
|
75506
75522
|
|
|
75507
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
|
+
|
|
75508
75557
|
class ListBusinessAccessPointsResponseBodyBusinessAccessPoints(TeaModel):
|
|
75509
75558
|
def __init__(
|
|
75510
75559
|
self,
|
|
@@ -75513,6 +75562,7 @@ class ListBusinessAccessPointsResponseBodyBusinessAccessPoints(TeaModel):
|
|
|
75513
75562
|
cloud_box_instance_ids: str = None,
|
|
75514
75563
|
latitude: float = None,
|
|
75515
75564
|
longitude: float = None,
|
|
75565
|
+
optical_module_models: List[ListBusinessAccessPointsResponseBodyBusinessAccessPointsOpticalModuleModels] = None,
|
|
75516
75566
|
support_line_operator: str = None,
|
|
75517
75567
|
support_port_types: str = None,
|
|
75518
75568
|
):
|
|
@@ -75528,6 +75578,7 @@ class ListBusinessAccessPointsResponseBodyBusinessAccessPoints(TeaModel):
|
|
|
75528
75578
|
self.latitude = latitude
|
|
75529
75579
|
# The longitude of the access point.
|
|
75530
75580
|
self.longitude = longitude
|
|
75581
|
+
self.optical_module_models = optical_module_models
|
|
75531
75582
|
# The connectivity provider of the Express Connect circuit. Valid values:
|
|
75532
75583
|
#
|
|
75533
75584
|
# * **CT**: China Telecom.
|
|
@@ -75551,7 +75602,10 @@ class ListBusinessAccessPointsResponseBodyBusinessAccessPoints(TeaModel):
|
|
|
75551
75602
|
self.support_port_types = support_port_types
|
|
75552
75603
|
|
|
75553
75604
|
def validate(self):
|
|
75554
|
-
|
|
75605
|
+
if self.optical_module_models:
|
|
75606
|
+
for k in self.optical_module_models:
|
|
75607
|
+
if k:
|
|
75608
|
+
k.validate()
|
|
75555
75609
|
|
|
75556
75610
|
def to_map(self):
|
|
75557
75611
|
_map = super().to_map()
|
|
@@ -75569,6 +75623,10 @@ class ListBusinessAccessPointsResponseBodyBusinessAccessPoints(TeaModel):
|
|
|
75569
75623
|
result['Latitude'] = self.latitude
|
|
75570
75624
|
if self.longitude is not None:
|
|
75571
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)
|
|
75572
75630
|
if self.support_line_operator is not None:
|
|
75573
75631
|
result['SupportLineOperator'] = self.support_line_operator
|
|
75574
75632
|
if self.support_port_types is not None:
|
|
@@ -75587,6 +75645,11 @@ class ListBusinessAccessPointsResponseBodyBusinessAccessPoints(TeaModel):
|
|
|
75587
75645
|
self.latitude = m.get('Latitude')
|
|
75588
75646
|
if m.get('Longitude') is not None:
|
|
75589
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))
|
|
75590
75653
|
if m.get('SupportLineOperator') is not None:
|
|
75591
75654
|
self.support_line_operator = m.get('SupportLineOperator')
|
|
75592
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=T70fAQMwDUioWScwjyQvSDSfAQv3a2aWtIZiDJ9M_HM,22
|
|
2
|
-
alibabacloud_vpc20160428/client.py,sha256=MCfVzSevWZQjuIerDEMHc7A2W8R2dnjgQG_PZmm8OEY,2885201
|
|
3
|
-
alibabacloud_vpc20160428/models.py,sha256=d89LfVrFRtryWlHkb2gcilySnR2ZVTNH7qI--FIi8Mk,4244027
|
|
4
|
-
alibabacloud_vpc20160428-6.13.0.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
-
alibabacloud_vpc20160428-6.13.0.dist-info/METADATA,sha256=4NmptmVcZhHDX9evhBhryfpwLq_YpnQz3u4bHwdGF9w,2331
|
|
6
|
-
alibabacloud_vpc20160428-6.13.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
-
alibabacloud_vpc20160428-6.13.0.dist-info/top_level.txt,sha256=aF3N1qaLDlyXEHXQ7AIBXYBUVWa-5wNpQNKhEiij7uA,25
|
|
8
|
-
alibabacloud_vpc20160428-6.13.0.dist-info/RECORD,,
|
{alibabacloud_vpc20160428-6.13.0.dist-info → alibabacloud_vpc20160428-6.13.2.dist-info}/LICENSE
RENAMED
|
File without changes
|
{alibabacloud_vpc20160428-6.13.0.dist-info → alibabacloud_vpc20160428-6.13.2.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|