alibabacloud-vpc20160428 6.6.7__py3-none-any.whl → 6.6.8__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.
@@ -1 +1 @@
1
- __version__ = '6.6.7'
1
+ __version__ = '6.6.8'
@@ -18210,6 +18210,8 @@ class Client(OpenApiClient):
18210
18210
  query['ClientToken'] = request.client_token
18211
18211
  if not UtilClient.is_unset(request.dry_run):
18212
18212
  query['DryRun'] = request.dry_run
18213
+ if not UtilClient.is_unset(request.internet_mode):
18214
+ query['InternetMode'] = request.internet_mode
18213
18215
  if not UtilClient.is_unset(request.ipv_4gateway_id):
18214
18216
  query['Ipv4GatewayId'] = request.ipv_4gateway_id
18215
18217
  if not UtilClient.is_unset(request.owner_account):
@@ -18268,6 +18270,8 @@ class Client(OpenApiClient):
18268
18270
  query['ClientToken'] = request.client_token
18269
18271
  if not UtilClient.is_unset(request.dry_run):
18270
18272
  query['DryRun'] = request.dry_run
18273
+ if not UtilClient.is_unset(request.internet_mode):
18274
+ query['InternetMode'] = request.internet_mode
18271
18275
  if not UtilClient.is_unset(request.ipv_4gateway_id):
18272
18276
  query['Ipv4GatewayId'] = request.ipv_4gateway_id
18273
18277
  if not UtilClient.is_unset(request.owner_account):
@@ -28935,11 +28939,14 @@ class Client(OpenApiClient):
28935
28939
  runtime: util_models.RuntimeOptions,
28936
28940
  ) -> vpc_20160428_models.DescribeRouteTablesResponse:
28937
28941
  """
28942
+ @deprecated OpenAPI DescribeRouteTables is deprecated, please use Vpc::2016-04-28::DescribeRouteTableList instead.
28943
+
28938
28944
  @summary Queries route tables.
28939
28945
 
28940
28946
  @param request: DescribeRouteTablesRequest
28941
28947
  @param runtime: runtime options for this request RuntimeOptions
28942
28948
  @return: DescribeRouteTablesResponse
28949
+ Deprecated
28943
28950
  """
28944
28951
  UtilClient.validate_model(request)
28945
28952
  query = {}
@@ -28996,11 +29003,14 @@ class Client(OpenApiClient):
28996
29003
  runtime: util_models.RuntimeOptions,
28997
29004
  ) -> vpc_20160428_models.DescribeRouteTablesResponse:
28998
29005
  """
29006
+ @deprecated OpenAPI DescribeRouteTables is deprecated, please use Vpc::2016-04-28::DescribeRouteTableList instead.
29007
+
28999
29008
  @summary Queries route tables.
29000
29009
 
29001
29010
  @param request: DescribeRouteTablesRequest
29002
29011
  @param runtime: runtime options for this request RuntimeOptions
29003
29012
  @return: DescribeRouteTablesResponse
29013
+ Deprecated
29004
29014
  """
29005
29015
  UtilClient.validate_model(request)
29006
29016
  query = {}
@@ -29056,10 +29066,13 @@ class Client(OpenApiClient):
29056
29066
  request: vpc_20160428_models.DescribeRouteTablesRequest,
29057
29067
  ) -> vpc_20160428_models.DescribeRouteTablesResponse:
29058
29068
  """
29069
+ @deprecated OpenAPI DescribeRouteTables is deprecated, please use Vpc::2016-04-28::DescribeRouteTableList instead.
29070
+
29059
29071
  @summary Queries route tables.
29060
29072
 
29061
29073
  @param request: DescribeRouteTablesRequest
29062
29074
  @return: DescribeRouteTablesResponse
29075
+ Deprecated
29063
29076
  """
29064
29077
  runtime = util_models.RuntimeOptions()
29065
29078
  return self.describe_route_tables_with_options(request, runtime)
@@ -29069,10 +29082,13 @@ class Client(OpenApiClient):
29069
29082
  request: vpc_20160428_models.DescribeRouteTablesRequest,
29070
29083
  ) -> vpc_20160428_models.DescribeRouteTablesResponse:
29071
29084
  """
29085
+ @deprecated OpenAPI DescribeRouteTables is deprecated, please use Vpc::2016-04-28::DescribeRouteTableList instead.
29086
+
29072
29087
  @summary Queries route tables.
29073
29088
 
29074
29089
  @param request: DescribeRouteTablesRequest
29075
29090
  @return: DescribeRouteTablesResponse
29091
+ Deprecated
29076
29092
  """
29077
29093
  runtime = util_models.RuntimeOptions()
29078
29094
  return await self.describe_route_tables_with_options_async(request, runtime)
@@ -25963,6 +25963,7 @@ class DeleteIpv4GatewayRequest(TeaModel):
25963
25963
  self,
25964
25964
  client_token: str = None,
25965
25965
  dry_run: bool = None,
25966
+ internet_mode: str = None,
25966
25967
  ipv_4gateway_id: str = None,
25967
25968
  owner_account: str = None,
25968
25969
  owner_id: int = None,
@@ -25981,6 +25982,7 @@ class DeleteIpv4GatewayRequest(TeaModel):
25981
25982
  # * **true**: performs only a dry run, without performing the actual request. The system checks the request for potential issues, including missing parameter values, incorrect request syntax, and service limits. If the request fails the dry run, an error message is returned. If the request passes the dry run, the `DryRunOperation` error code is returned.
25982
25983
  # * **false** (default): performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
25983
25984
  self.dry_run = dry_run
25985
+ self.internet_mode = internet_mode
25984
25986
  # The ID of the IPv4 gateway that you want to delete.
25985
25987
  #
25986
25988
  # This parameter is required.
@@ -26009,6 +26011,8 @@ class DeleteIpv4GatewayRequest(TeaModel):
26009
26011
  result['ClientToken'] = self.client_token
26010
26012
  if self.dry_run is not None:
26011
26013
  result['DryRun'] = self.dry_run
26014
+ if self.internet_mode is not None:
26015
+ result['InternetMode'] = self.internet_mode
26012
26016
  if self.ipv_4gateway_id is not None:
26013
26017
  result['Ipv4GatewayId'] = self.ipv_4gateway_id
26014
26018
  if self.owner_account is not None:
@@ -26029,6 +26033,8 @@ class DeleteIpv4GatewayRequest(TeaModel):
26029
26033
  self.client_token = m.get('ClientToken')
26030
26034
  if m.get('DryRun') is not None:
26031
26035
  self.dry_run = m.get('DryRun')
26036
+ if m.get('InternetMode') is not None:
26037
+ self.internet_mode = m.get('InternetMode')
26032
26038
  if m.get('Ipv4GatewayId') is not None:
26033
26039
  self.ipv_4gateway_id = m.get('Ipv4GatewayId')
26034
26040
  if m.get('OwnerAccount') is not None:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud-vpc20160428
3
- Version: 6.6.7
3
+ Version: 6.6.8
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,8 @@
1
+ alibabacloud_vpc20160428/__init__.py,sha256=os30UpKzjKlKPj8QkbvLJmR9B6vr36vn5ZPP7R6JP5U,21
2
+ alibabacloud_vpc20160428/client.py,sha256=5eiJhSikw72TmsOzJatElgdAUdumIU4w_8agzJ5F9FI,2775123
3
+ alibabacloud_vpc20160428/models.py,sha256=ctdkX26aaUgFSlrUWc-g4Gtays615dUTnlo_8yj3HqY,3939924
4
+ alibabacloud_vpc20160428-6.6.8.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
5
+ alibabacloud_vpc20160428-6.6.8.dist-info/METADATA,sha256=jvCfFiiU54LfRI0F72buOHXoUMgy663X0mNGK-1Yt94,2301
6
+ alibabacloud_vpc20160428-6.6.8.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
7
+ alibabacloud_vpc20160428-6.6.8.dist-info/top_level.txt,sha256=aF3N1qaLDlyXEHXQ7AIBXYBUVWa-5wNpQNKhEiij7uA,25
8
+ alibabacloud_vpc20160428-6.6.8.dist-info/RECORD,,
@@ -1,8 +0,0 @@
1
- alibabacloud_vpc20160428/__init__.py,sha256=jhM2Ovs9vYcekr1sXA1KmP10k1B9nPHCpA_ebOm9BcQ,21
2
- alibabacloud_vpc20160428/client.py,sha256=dpUfgaNtR6SB8PJkda3GUOscTHsZPVhztu_XukTnNBU,2774285
3
- alibabacloud_vpc20160428/models.py,sha256=QqdWcdlO70ROCh77Wj5uoyOdUCFim4rF8Yz-9v7iRTg,3939646
4
- alibabacloud_vpc20160428-6.6.7.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
5
- alibabacloud_vpc20160428-6.6.7.dist-info/METADATA,sha256=C8Bhf89ymvD1cIQcRLfV4tb52C2e9GGfN4MXySzbTXA,2301
6
- alibabacloud_vpc20160428-6.6.7.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
7
- alibabacloud_vpc20160428-6.6.7.dist-info/top_level.txt,sha256=aF3N1qaLDlyXEHXQ7AIBXYBUVWa-5wNpQNKhEiij7uA,25
8
- alibabacloud_vpc20160428-6.6.7.dist-info/RECORD,,