alibabacloud-vpc20160428 6.9.1__tar.gz → 6.9.2__tar.gz

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.
Files changed (17) hide show
  1. {alibabacloud_vpc20160428-6.9.1 → alibabacloud_vpc20160428-6.9.2}/ChangeLog.md +7 -0
  2. {alibabacloud_vpc20160428-6.9.1 → alibabacloud_vpc20160428-6.9.2}/PKG-INFO +1 -1
  3. alibabacloud_vpc20160428-6.9.2/alibabacloud_vpc20160428/__init__.py +1 -0
  4. {alibabacloud_vpc20160428-6.9.1 → alibabacloud_vpc20160428-6.9.2}/alibabacloud_vpc20160428/client.py +8 -0
  5. {alibabacloud_vpc20160428-6.9.1 → alibabacloud_vpc20160428-6.9.2}/alibabacloud_vpc20160428/models.py +12 -2
  6. {alibabacloud_vpc20160428-6.9.1 → alibabacloud_vpc20160428-6.9.2}/alibabacloud_vpc20160428.egg-info/PKG-INFO +1 -1
  7. {alibabacloud_vpc20160428-6.9.1 → alibabacloud_vpc20160428-6.9.2}/setup.py +1 -1
  8. alibabacloud_vpc20160428-6.9.1/alibabacloud_vpc20160428/__init__.py +0 -1
  9. {alibabacloud_vpc20160428-6.9.1 → alibabacloud_vpc20160428-6.9.2}/LICENSE +0 -0
  10. {alibabacloud_vpc20160428-6.9.1 → alibabacloud_vpc20160428-6.9.2}/MANIFEST.in +0 -0
  11. {alibabacloud_vpc20160428-6.9.1 → alibabacloud_vpc20160428-6.9.2}/README-CN.md +0 -0
  12. {alibabacloud_vpc20160428-6.9.1 → alibabacloud_vpc20160428-6.9.2}/README.md +0 -0
  13. {alibabacloud_vpc20160428-6.9.1 → alibabacloud_vpc20160428-6.9.2}/alibabacloud_vpc20160428.egg-info/SOURCES.txt +0 -0
  14. {alibabacloud_vpc20160428-6.9.1 → alibabacloud_vpc20160428-6.9.2}/alibabacloud_vpc20160428.egg-info/dependency_links.txt +0 -0
  15. {alibabacloud_vpc20160428-6.9.1 → alibabacloud_vpc20160428-6.9.2}/alibabacloud_vpc20160428.egg-info/requires.txt +0 -0
  16. {alibabacloud_vpc20160428-6.9.1 → alibabacloud_vpc20160428-6.9.2}/alibabacloud_vpc20160428.egg-info/top_level.txt +0 -0
  17. {alibabacloud_vpc20160428-6.9.1 → alibabacloud_vpc20160428-6.9.2}/setup.cfg +0 -0
@@ -1,3 +1,10 @@
1
+ 2024-08-27 Version: 6.9.1
2
+ - Update API CreateVpc: add param EnableDnsHostname.
3
+ - Update API DescribeVpcAttribute: update response param.
4
+ - Update API DescribeVpcs: update response param.
5
+ - Update API ModifyVpcAttribute: add param EnableDnsHostname.
6
+
7
+
1
8
  2024-08-19 Version: 6.9.0
2
9
  - Support API ListVpcPublishedRouteEntries.
3
10
  - Support API PublishVpcRouteEntries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud_vpc20160428
3
- Version: 6.9.1
3
+ Version: 6.9.2
4
4
  Summary: Alibaba Cloud Virtual Private Cloud (20160428) SDK Library for Python
5
5
  Home-page: https://github.com/aliyun/alibabacloud-python-sdk
6
6
  Author: Alibaba Cloud SDK
@@ -0,0 +1 @@
1
+ __version__ = '6.9.2'
@@ -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
  )
@@ -86961,6 +86961,7 @@ class ModifyRouteEntryRequest(TeaModel):
86961
86961
  def __init__(
86962
86962
  self,
86963
86963
  description: str = None,
86964
+ destination_cidr_block: str = None,
86964
86965
  new_next_hop_id: str = None,
86965
86966
  new_next_hop_type: str = None,
86966
86967
  owner_account: str = None,
@@ -86970,11 +86971,13 @@ class ModifyRouteEntryRequest(TeaModel):
86970
86971
  resource_owner_id: int = None,
86971
86972
  route_entry_id: str = None,
86972
86973
  route_entry_name: str = None,
86974
+ route_table_id: str = None,
86973
86975
  ):
86974
86976
  # The description of the route entry.
86975
86977
  #
86976
86978
  # The description must be 1 to 256 characters in length, and cannot start with `http://` or `https://`.
86977
86979
  self.description = description
86980
+ self.destination_cidr_block = destination_cidr_block
86978
86981
  # The ID of the new next hop instance.
86979
86982
  self.new_next_hop_id = new_next_hop_id
86980
86983
  # The new next hop type of the route.
@@ -86990,13 +86993,12 @@ class ModifyRouteEntryRequest(TeaModel):
86990
86993
  self.resource_owner_account = resource_owner_account
86991
86994
  self.resource_owner_id = resource_owner_id
86992
86995
  # The ID of the custom route entry.
86993
- #
86994
- # This parameter is required.
86995
86996
  self.route_entry_id = route_entry_id
86996
86997
  # The name of the route entry.
86997
86998
  #
86998
86999
  # The name must be 1 to 128 characters in length, and cannot start with `http://` or `https://`.
86999
87000
  self.route_entry_name = route_entry_name
87001
+ self.route_table_id = route_table_id
87000
87002
 
87001
87003
  def validate(self):
87002
87004
  pass
@@ -87009,6 +87011,8 @@ class ModifyRouteEntryRequest(TeaModel):
87009
87011
  result = dict()
87010
87012
  if self.description is not None:
87011
87013
  result['Description'] = self.description
87014
+ if self.destination_cidr_block is not None:
87015
+ result['DestinationCidrBlock'] = self.destination_cidr_block
87012
87016
  if self.new_next_hop_id is not None:
87013
87017
  result['NewNextHopId'] = self.new_next_hop_id
87014
87018
  if self.new_next_hop_type is not None:
@@ -87027,12 +87031,16 @@ class ModifyRouteEntryRequest(TeaModel):
87027
87031
  result['RouteEntryId'] = self.route_entry_id
87028
87032
  if self.route_entry_name is not None:
87029
87033
  result['RouteEntryName'] = self.route_entry_name
87034
+ if self.route_table_id is not None:
87035
+ result['RouteTableId'] = self.route_table_id
87030
87036
  return result
87031
87037
 
87032
87038
  def from_map(self, m: dict = None):
87033
87039
  m = m or dict()
87034
87040
  if m.get('Description') is not None:
87035
87041
  self.description = m.get('Description')
87042
+ if m.get('DestinationCidrBlock') is not None:
87043
+ self.destination_cidr_block = m.get('DestinationCidrBlock')
87036
87044
  if m.get('NewNextHopId') is not None:
87037
87045
  self.new_next_hop_id = m.get('NewNextHopId')
87038
87046
  if m.get('NewNextHopType') is not None:
@@ -87051,6 +87059,8 @@ class ModifyRouteEntryRequest(TeaModel):
87051
87059
  self.route_entry_id = m.get('RouteEntryId')
87052
87060
  if m.get('RouteEntryName') is not None:
87053
87061
  self.route_entry_name = m.get('RouteEntryName')
87062
+ if m.get('RouteTableId') is not None:
87063
+ self.route_table_id = m.get('RouteTableId')
87054
87064
  return self
87055
87065
 
87056
87066
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud-vpc20160428
3
- Version: 6.9.1
3
+ Version: 6.9.2
4
4
  Summary: Alibaba Cloud Virtual Private Cloud (20160428) SDK Library for Python
5
5
  Home-page: https://github.com/aliyun/alibabacloud-python-sdk
6
6
  Author: Alibaba Cloud SDK
@@ -24,7 +24,7 @@ from setuptools import setup, find_packages
24
24
  """
25
25
  setup module for alibabacloud_vpc20160428.
26
26
 
27
- Created on 27/08/2024
27
+ Created on 29/08/2024
28
28
 
29
29
  @author: Alibaba Cloud SDK
30
30
  """
@@ -1 +0,0 @@
1
- __version__ = '6.9.1'