alibabacloud-vpc20160428 6.9.1__py3-none-any.whl → 6.9.3__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 +8 -0
- alibabacloud_vpc20160428/models.py +18 -2
- {alibabacloud_vpc20160428-6.9.1.dist-info → alibabacloud_vpc20160428-6.9.3.dist-info}/METADATA +1 -1
- alibabacloud_vpc20160428-6.9.3.dist-info/RECORD +8 -0
- alibabacloud_vpc20160428-6.9.1.dist-info/RECORD +0 -8
- {alibabacloud_vpc20160428-6.9.1.dist-info → alibabacloud_vpc20160428-6.9.3.dist-info}/LICENSE +0 -0
- {alibabacloud_vpc20160428-6.9.1.dist-info → alibabacloud_vpc20160428-6.9.3.dist-info}/WHEEL +0 -0
- {alibabacloud_vpc20160428-6.9.1.dist-info → alibabacloud_vpc20160428-6.9.3.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '6.9.
|
|
1
|
+
__version__ = '6.9.3'
|
|
@@ -44977,6 +44977,8 @@ class Client(OpenApiClient):
|
|
|
44977
44977
|
query = {}
|
|
44978
44978
|
if not UtilClient.is_unset(request.description):
|
|
44979
44979
|
query['Description'] = request.description
|
|
44980
|
+
if not UtilClient.is_unset(request.destination_cidr_block):
|
|
44981
|
+
query['DestinationCidrBlock'] = request.destination_cidr_block
|
|
44980
44982
|
if not UtilClient.is_unset(request.new_next_hop_id):
|
|
44981
44983
|
query['NewNextHopId'] = request.new_next_hop_id
|
|
44982
44984
|
if not UtilClient.is_unset(request.new_next_hop_type):
|
|
@@ -44995,6 +44997,8 @@ class Client(OpenApiClient):
|
|
|
44995
44997
|
query['RouteEntryId'] = request.route_entry_id
|
|
44996
44998
|
if not UtilClient.is_unset(request.route_entry_name):
|
|
44997
44999
|
query['RouteEntryName'] = request.route_entry_name
|
|
45000
|
+
if not UtilClient.is_unset(request.route_table_id):
|
|
45001
|
+
query['RouteTableId'] = request.route_table_id
|
|
44998
45002
|
req = open_api_models.OpenApiRequest(
|
|
44999
45003
|
query=OpenApiUtilClient.query(query)
|
|
45000
45004
|
)
|
|
@@ -45032,6 +45036,8 @@ class Client(OpenApiClient):
|
|
|
45032
45036
|
query = {}
|
|
45033
45037
|
if not UtilClient.is_unset(request.description):
|
|
45034
45038
|
query['Description'] = request.description
|
|
45039
|
+
if not UtilClient.is_unset(request.destination_cidr_block):
|
|
45040
|
+
query['DestinationCidrBlock'] = request.destination_cidr_block
|
|
45035
45041
|
if not UtilClient.is_unset(request.new_next_hop_id):
|
|
45036
45042
|
query['NewNextHopId'] = request.new_next_hop_id
|
|
45037
45043
|
if not UtilClient.is_unset(request.new_next_hop_type):
|
|
@@ -45050,6 +45056,8 @@ class Client(OpenApiClient):
|
|
|
45050
45056
|
query['RouteEntryId'] = request.route_entry_id
|
|
45051
45057
|
if not UtilClient.is_unset(request.route_entry_name):
|
|
45052
45058
|
query['RouteEntryName'] = request.route_entry_name
|
|
45059
|
+
if not UtilClient.is_unset(request.route_table_id):
|
|
45060
|
+
query['RouteTableId'] = request.route_table_id
|
|
45053
45061
|
req = open_api_models.OpenApiRequest(
|
|
45054
45062
|
query=OpenApiUtilClient.query(query)
|
|
45055
45063
|
)
|
|
@@ -80637,9 +80637,11 @@ class ListVpcPublishedRouteEntriesResponseBodyRouteEntriesRoutePublishTargets(Te
|
|
|
80637
80637
|
def __init__(
|
|
80638
80638
|
self,
|
|
80639
80639
|
publish_status: str = None,
|
|
80640
|
+
publish_target_instance_id: str = None,
|
|
80640
80641
|
publish_target_type: str = None,
|
|
80641
80642
|
):
|
|
80642
80643
|
self.publish_status = publish_status
|
|
80644
|
+
self.publish_target_instance_id = publish_target_instance_id
|
|
80643
80645
|
self.publish_target_type = publish_target_type
|
|
80644
80646
|
|
|
80645
80647
|
def validate(self):
|
|
@@ -80653,6 +80655,8 @@ class ListVpcPublishedRouteEntriesResponseBodyRouteEntriesRoutePublishTargets(Te
|
|
|
80653
80655
|
result = dict()
|
|
80654
80656
|
if self.publish_status is not None:
|
|
80655
80657
|
result['PublishStatus'] = self.publish_status
|
|
80658
|
+
if self.publish_target_instance_id is not None:
|
|
80659
|
+
result['PublishTargetInstanceId'] = self.publish_target_instance_id
|
|
80656
80660
|
if self.publish_target_type is not None:
|
|
80657
80661
|
result['PublishTargetType'] = self.publish_target_type
|
|
80658
80662
|
return result
|
|
@@ -80661,6 +80665,8 @@ class ListVpcPublishedRouteEntriesResponseBodyRouteEntriesRoutePublishTargets(Te
|
|
|
80661
80665
|
m = m or dict()
|
|
80662
80666
|
if m.get('PublishStatus') is not None:
|
|
80663
80667
|
self.publish_status = m.get('PublishStatus')
|
|
80668
|
+
if m.get('PublishTargetInstanceId') is not None:
|
|
80669
|
+
self.publish_target_instance_id = m.get('PublishTargetInstanceId')
|
|
80664
80670
|
if m.get('PublishTargetType') is not None:
|
|
80665
80671
|
self.publish_target_type = m.get('PublishTargetType')
|
|
80666
80672
|
return self
|
|
@@ -86961,6 +86967,7 @@ class ModifyRouteEntryRequest(TeaModel):
|
|
|
86961
86967
|
def __init__(
|
|
86962
86968
|
self,
|
|
86963
86969
|
description: str = None,
|
|
86970
|
+
destination_cidr_block: str = None,
|
|
86964
86971
|
new_next_hop_id: str = None,
|
|
86965
86972
|
new_next_hop_type: str = None,
|
|
86966
86973
|
owner_account: str = None,
|
|
@@ -86970,11 +86977,13 @@ class ModifyRouteEntryRequest(TeaModel):
|
|
|
86970
86977
|
resource_owner_id: int = None,
|
|
86971
86978
|
route_entry_id: str = None,
|
|
86972
86979
|
route_entry_name: str = None,
|
|
86980
|
+
route_table_id: str = None,
|
|
86973
86981
|
):
|
|
86974
86982
|
# The description of the route entry.
|
|
86975
86983
|
#
|
|
86976
86984
|
# The description must be 1 to 256 characters in length, and cannot start with `http://` or `https://`.
|
|
86977
86985
|
self.description = description
|
|
86986
|
+
self.destination_cidr_block = destination_cidr_block
|
|
86978
86987
|
# The ID of the new next hop instance.
|
|
86979
86988
|
self.new_next_hop_id = new_next_hop_id
|
|
86980
86989
|
# The new next hop type of the route.
|
|
@@ -86990,13 +86999,12 @@ class ModifyRouteEntryRequest(TeaModel):
|
|
|
86990
86999
|
self.resource_owner_account = resource_owner_account
|
|
86991
87000
|
self.resource_owner_id = resource_owner_id
|
|
86992
87001
|
# The ID of the custom route entry.
|
|
86993
|
-
#
|
|
86994
|
-
# This parameter is required.
|
|
86995
87002
|
self.route_entry_id = route_entry_id
|
|
86996
87003
|
# The name of the route entry.
|
|
86997
87004
|
#
|
|
86998
87005
|
# The name must be 1 to 128 characters in length, and cannot start with `http://` or `https://`.
|
|
86999
87006
|
self.route_entry_name = route_entry_name
|
|
87007
|
+
self.route_table_id = route_table_id
|
|
87000
87008
|
|
|
87001
87009
|
def validate(self):
|
|
87002
87010
|
pass
|
|
@@ -87009,6 +87017,8 @@ class ModifyRouteEntryRequest(TeaModel):
|
|
|
87009
87017
|
result = dict()
|
|
87010
87018
|
if self.description is not None:
|
|
87011
87019
|
result['Description'] = self.description
|
|
87020
|
+
if self.destination_cidr_block is not None:
|
|
87021
|
+
result['DestinationCidrBlock'] = self.destination_cidr_block
|
|
87012
87022
|
if self.new_next_hop_id is not None:
|
|
87013
87023
|
result['NewNextHopId'] = self.new_next_hop_id
|
|
87014
87024
|
if self.new_next_hop_type is not None:
|
|
@@ -87027,12 +87037,16 @@ class ModifyRouteEntryRequest(TeaModel):
|
|
|
87027
87037
|
result['RouteEntryId'] = self.route_entry_id
|
|
87028
87038
|
if self.route_entry_name is not None:
|
|
87029
87039
|
result['RouteEntryName'] = self.route_entry_name
|
|
87040
|
+
if self.route_table_id is not None:
|
|
87041
|
+
result['RouteTableId'] = self.route_table_id
|
|
87030
87042
|
return result
|
|
87031
87043
|
|
|
87032
87044
|
def from_map(self, m: dict = None):
|
|
87033
87045
|
m = m or dict()
|
|
87034
87046
|
if m.get('Description') is not None:
|
|
87035
87047
|
self.description = m.get('Description')
|
|
87048
|
+
if m.get('DestinationCidrBlock') is not None:
|
|
87049
|
+
self.destination_cidr_block = m.get('DestinationCidrBlock')
|
|
87036
87050
|
if m.get('NewNextHopId') is not None:
|
|
87037
87051
|
self.new_next_hop_id = m.get('NewNextHopId')
|
|
87038
87052
|
if m.get('NewNextHopType') is not None:
|
|
@@ -87051,6 +87065,8 @@ class ModifyRouteEntryRequest(TeaModel):
|
|
|
87051
87065
|
self.route_entry_id = m.get('RouteEntryId')
|
|
87052
87066
|
if m.get('RouteEntryName') is not None:
|
|
87053
87067
|
self.route_entry_name = m.get('RouteEntryName')
|
|
87068
|
+
if m.get('RouteTableId') is not None:
|
|
87069
|
+
self.route_table_id = m.get('RouteTableId')
|
|
87054
87070
|
return self
|
|
87055
87071
|
|
|
87056
87072
|
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
alibabacloud_vpc20160428/__init__.py,sha256=yjWufU9xSywMjfXINz0GMXlLhlo5FiuIz6abTgaHYwA,21
|
|
2
|
+
alibabacloud_vpc20160428/client.py,sha256=AM1IrV78R_iIcr9y3H9mXfSQFVe5IIJO18GO13xsdd0,2822525
|
|
3
|
+
alibabacloud_vpc20160428/models.py,sha256=5PE3xwjOg3CH3PsRJUsnnCPQb4Jr1JfuZdlTeMMCSrw,4024827
|
|
4
|
+
alibabacloud_vpc20160428-6.9.3.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
+
alibabacloud_vpc20160428-6.9.3.dist-info/METADATA,sha256=64EZp47oXikAiBT8uuygOTZUR32TAq0xTfjjyc79G2I,2330
|
|
6
|
+
alibabacloud_vpc20160428-6.9.3.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
+
alibabacloud_vpc20160428-6.9.3.dist-info/top_level.txt,sha256=aF3N1qaLDlyXEHXQ7AIBXYBUVWa-5wNpQNKhEiij7uA,25
|
|
8
|
+
alibabacloud_vpc20160428-6.9.3.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
alibabacloud_vpc20160428/__init__.py,sha256=t8Ah38paXRn8o23-f_ZfT2Me5tMPtvOztxeQ--XD-uM,21
|
|
2
|
-
alibabacloud_vpc20160428/client.py,sha256=vHGfVC9gQlgGnc_Co-UDau8bWpDqd0_fQvnzMIqblSU,2822001
|
|
3
|
-
alibabacloud_vpc20160428/models.py,sha256=SHg0qiafV2vw9oslsaSMEs32HndSLIL5X23YQMyDLUk,4023847
|
|
4
|
-
alibabacloud_vpc20160428-6.9.1.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
-
alibabacloud_vpc20160428-6.9.1.dist-info/METADATA,sha256=pjQwduFYEtH8oddM924hFtsanyiWMVxAF0Vuaw-iGpM,2330
|
|
6
|
-
alibabacloud_vpc20160428-6.9.1.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
-
alibabacloud_vpc20160428-6.9.1.dist-info/top_level.txt,sha256=aF3N1qaLDlyXEHXQ7AIBXYBUVWa-5wNpQNKhEiij7uA,25
|
|
8
|
-
alibabacloud_vpc20160428-6.9.1.dist-info/RECORD,,
|
{alibabacloud_vpc20160428-6.9.1.dist-info → alibabacloud_vpc20160428-6.9.3.dist-info}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|
{alibabacloud_vpc20160428-6.9.1.dist-info → alibabacloud_vpc20160428-6.9.3.dist-info}/top_level.txt
RENAMED
|
File without changes
|