alibabacloud-vpc20160428 6.11.3__py3-none-any.whl → 6.11.4__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.11.3'
1
+ __version__ = '6.11.4'
@@ -23134,6 +23134,8 @@ class Client(OpenApiClient):
23134
23134
  """
23135
23135
  UtilClient.validate_model(request)
23136
23136
  query = {}
23137
+ if not UtilClient.is_unset(request.dry_run):
23138
+ query['DryRun'] = request.dry_run
23137
23139
  if not UtilClient.is_unset(request.owner_account):
23138
23140
  query['OwnerAccount'] = request.owner_account
23139
23141
  if not UtilClient.is_unset(request.owner_id):
@@ -23194,6 +23196,8 @@ class Client(OpenApiClient):
23194
23196
  """
23195
23197
  UtilClient.validate_model(request)
23196
23198
  query = {}
23199
+ if not UtilClient.is_unset(request.dry_run):
23200
+ query['DryRun'] = request.dry_run
23197
23201
  if not UtilClient.is_unset(request.owner_account):
23198
23202
  query['OwnerAccount'] = request.owner_account
23199
23203
  if not UtilClient.is_unset(request.owner_id):
@@ -61075,7 +61079,7 @@ class Client(OpenApiClient):
61075
61079
  runtime: util_models.RuntimeOptions,
61076
61080
  ) -> vpc_20160428_models.WithdrawVpcPublishedRouteEntriesResponse:
61077
61081
  """
61078
- @summary 撤回VPC已发布路由
61082
+ @summary Withdraw advertised Virtual Private Cloud (VPC) routes.
61079
61083
 
61080
61084
  @param request: WithdrawVpcPublishedRouteEntriesRequest
61081
61085
  @param runtime: runtime options for this request RuntimeOptions
@@ -61134,7 +61138,7 @@ class Client(OpenApiClient):
61134
61138
  runtime: util_models.RuntimeOptions,
61135
61139
  ) -> vpc_20160428_models.WithdrawVpcPublishedRouteEntriesResponse:
61136
61140
  """
61137
- @summary 撤回VPC已发布路由
61141
+ @summary Withdraw advertised Virtual Private Cloud (VPC) routes.
61138
61142
 
61139
61143
  @param request: WithdrawVpcPublishedRouteEntriesRequest
61140
61144
  @param runtime: runtime options for this request RuntimeOptions
@@ -61192,7 +61196,7 @@ class Client(OpenApiClient):
61192
61196
  request: vpc_20160428_models.WithdrawVpcPublishedRouteEntriesRequest,
61193
61197
  ) -> vpc_20160428_models.WithdrawVpcPublishedRouteEntriesResponse:
61194
61198
  """
61195
- @summary 撤回VPC已发布路由
61199
+ @summary Withdraw advertised Virtual Private Cloud (VPC) routes.
61196
61200
 
61197
61201
  @param request: WithdrawVpcPublishedRouteEntriesRequest
61198
61202
  @return: WithdrawVpcPublishedRouteEntriesResponse
@@ -61205,7 +61209,7 @@ class Client(OpenApiClient):
61205
61209
  request: vpc_20160428_models.WithdrawVpcPublishedRouteEntriesRequest,
61206
61210
  ) -> vpc_20160428_models.WithdrawVpcPublishedRouteEntriesResponse:
61207
61211
  """
61208
- @summary 撤回VPC已发布路由
61212
+ @summary Withdraw advertised Virtual Private Cloud (VPC) routes.
61209
61213
 
61210
61214
  @param request: WithdrawVpcPublishedRouteEntriesRequest
61211
61215
  @return: WithdrawVpcPublishedRouteEntriesResponse
@@ -30591,6 +30591,7 @@ class DeleteTrafficMirrorSessionResponse(TeaModel):
30591
30591
  class DeleteVSwitchRequest(TeaModel):
30592
30592
  def __init__(
30593
30593
  self,
30594
+ dry_run: bool = None,
30594
30595
  owner_account: str = None,
30595
30596
  owner_id: int = None,
30596
30597
  region_id: str = None,
@@ -30598,6 +30599,7 @@ class DeleteVSwitchRequest(TeaModel):
30598
30599
  resource_owner_id: int = None,
30599
30600
  v_switch_id: str = None,
30600
30601
  ):
30602
+ self.dry_run = dry_run
30601
30603
  self.owner_account = owner_account
30602
30604
  self.owner_id = owner_id
30603
30605
  # The region ID of the vSwitch.
@@ -30620,6 +30622,8 @@ class DeleteVSwitchRequest(TeaModel):
30620
30622
  return _map
30621
30623
 
30622
30624
  result = dict()
30625
+ if self.dry_run is not None:
30626
+ result['DryRun'] = self.dry_run
30623
30627
  if self.owner_account is not None:
30624
30628
  result['OwnerAccount'] = self.owner_account
30625
30629
  if self.owner_id is not None:
@@ -30636,6 +30640,8 @@ class DeleteVSwitchRequest(TeaModel):
30636
30640
 
30637
30641
  def from_map(self, m: dict = None):
30638
30642
  m = m or dict()
30643
+ if m.get('DryRun') is not None:
30644
+ self.dry_run = m.get('DryRun')
30639
30645
  if m.get('OwnerAccount') is not None:
30640
30646
  self.owner_account = m.get('OwnerAccount')
30641
30647
  if m.get('OwnerId') is not None:
@@ -33851,9 +33857,9 @@ class DescribeBgpNetworksRequest(TeaModel):
33851
33857
  ):
33852
33858
  self.owner_account = owner_account
33853
33859
  self.owner_id = owner_id
33854
- # The page number. Default value: **1**.
33860
+ # The number of the returned page. Default value: **1**.
33855
33861
  self.page_number = page_number
33856
- # The number of entries per page. Maximum value: **50**. Default value: **10**.
33862
+ # The number of entries per page. The maximum value is **50**. Default value: **10**.
33857
33863
  self.page_size = page_size
33858
33864
  # The region ID of the BGP group.
33859
33865
  #
@@ -34007,7 +34013,7 @@ class DescribeBgpNetworksResponseBody(TeaModel):
34007
34013
  request_id: str = None,
34008
34014
  total_count: int = None,
34009
34015
  ):
34010
- # The BGP network.
34016
+ # BGP networks.
34011
34017
  self.bgp_networks = bgp_networks
34012
34018
  # The page number.
34013
34019
  self.page_number = page_number
@@ -106391,8 +106397,12 @@ class WithdrawVpcPublishedRouteEntriesRequestRouteEntries(TeaModel):
106391
106397
  destination_cidr_block: str = None,
106392
106398
  route_table_id: str = None,
106393
106399
  ):
106400
+ # The destination CIDR block
106401
+ #
106394
106402
  # This parameter is required.
106395
106403
  self.destination_cidr_block = destination_cidr_block
106404
+ # The ID of the route table.
106405
+ #
106396
106406
  # This parameter is required.
106397
106407
  self.route_table_id = route_table_id
106398
106408
 
@@ -106433,15 +106443,25 @@ class WithdrawVpcPublishedRouteEntriesRequest(TeaModel):
106433
106443
  target_instance_id: str = None,
106434
106444
  target_type: str = None,
106435
106445
  ):
106446
+ # Specifies whether to perform only a dry run, without performing the actual request. Valid values:
106447
+ #
106448
+ # * **true**: performs only a dry run. 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.
106449
+ # * **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.
106436
106450
  self.dry_run = dry_run
106437
106451
  self.owner_account = owner_account
106438
106452
  self.owner_id = owner_id
106453
+ # The ID of the region. Call the DescribeRegions operation to access it.
106439
106454
  self.region_id = region_id
106440
106455
  self.resource_owner_account = resource_owner_account
106441
106456
  self.resource_owner_id = resource_owner_id
106457
+ # The route entries to be withdrawn. Maximum value: 50.
106442
106458
  self.route_entries = route_entries
106459
+ # Target instance ID.
106460
+ #
106443
106461
  # This parameter is required.
106444
106462
  self.target_instance_id = target_instance_id
106463
+ # The type of target instance.
106464
+ #
106445
106465
  # This parameter is required.
106446
106466
  self.target_type = target_type
106447
106467
 
@@ -106510,6 +106530,7 @@ class WithdrawVpcPublishedRouteEntriesResponseBody(TeaModel):
106510
106530
  self,
106511
106531
  request_id: str = None,
106512
106532
  ):
106533
+ # The request ID.
106513
106534
  self.request_id = request_id
106514
106535
 
106515
106536
  def validate(self):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud-vpc20160428
3
- Version: 6.11.3
3
+ Version: 6.11.4
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=Y_SZ959-AHxD16LrkFukLBcR4WN5KZe6pk1r6qDBzMg,22
2
+ alibabacloud_vpc20160428/client.py,sha256=y-5gQNxy4CCxRNBPufzrasKX4ud5fDpMx1p3TCtIbAA,3108561
3
+ alibabacloud_vpc20160428/models.py,sha256=nep_IxInaC-5MFSiEWXctxvDAAjzL7QYUK2TGsI_Frk,4171629
4
+ alibabacloud_vpc20160428-6.11.4.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
5
+ alibabacloud_vpc20160428-6.11.4.dist-info/METADATA,sha256=IbQRFG1mr6n1Sv6lE6n1lbavLd31L7Rwyr5VZktYeck,2331
6
+ alibabacloud_vpc20160428-6.11.4.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
7
+ alibabacloud_vpc20160428-6.11.4.dist-info/top_level.txt,sha256=aF3N1qaLDlyXEHXQ7AIBXYBUVWa-5wNpQNKhEiij7uA,25
8
+ alibabacloud_vpc20160428-6.11.4.dist-info/RECORD,,
@@ -1,8 +0,0 @@
1
- alibabacloud_vpc20160428/__init__.py,sha256=ZT5szFOff5TEbea1DoyWW7ljI8bfomqkts0qxejhByw,22
2
- alibabacloud_vpc20160428/client.py,sha256=anPZf7TS6kiyW0nkh4m8pCv7wATbOgrXl6ssVbrLSbM,3108239
3
- alibabacloud_vpc20160428/models.py,sha256=iMliWw1YjRB63ZBvsixzOFq7ii_qIJZhGPgDzD7ptDo,4170391
4
- alibabacloud_vpc20160428-6.11.3.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
5
- alibabacloud_vpc20160428-6.11.3.dist-info/METADATA,sha256=iVhDdnlO1QgxUuJ-WK-P6Xp2FWJiVRwgVcLA997fJPc,2331
6
- alibabacloud_vpc20160428-6.11.3.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
7
- alibabacloud_vpc20160428-6.11.3.dist-info/top_level.txt,sha256=aF3N1qaLDlyXEHXQ7AIBXYBUVWa-5wNpQNKhEiij7uA,25
8
- alibabacloud_vpc20160428-6.11.3.dist-info/RECORD,,