alibabacloud-vpc20160428 6.11.3__tar.gz → 6.11.5__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.11.3 → alibabacloud_vpc20160428-6.11.5}/ChangeLog.md +10 -0
  2. {alibabacloud_vpc20160428-6.11.3 → alibabacloud_vpc20160428-6.11.5}/PKG-INFO +1 -1
  3. alibabacloud_vpc20160428-6.11.5/alibabacloud_vpc20160428/__init__.py +1 -0
  4. {alibabacloud_vpc20160428-6.11.3 → alibabacloud_vpc20160428-6.11.5}/alibabacloud_vpc20160428/client.py +8 -4
  5. {alibabacloud_vpc20160428-6.11.3 → alibabacloud_vpc20160428-6.11.5}/alibabacloud_vpc20160428/models.py +36 -3
  6. {alibabacloud_vpc20160428-6.11.3 → alibabacloud_vpc20160428-6.11.5}/alibabacloud_vpc20160428.egg-info/PKG-INFO +1 -1
  7. {alibabacloud_vpc20160428-6.11.3 → alibabacloud_vpc20160428-6.11.5}/setup.py +1 -1
  8. alibabacloud_vpc20160428-6.11.3/alibabacloud_vpc20160428/__init__.py +0 -1
  9. {alibabacloud_vpc20160428-6.11.3 → alibabacloud_vpc20160428-6.11.5}/LICENSE +0 -0
  10. {alibabacloud_vpc20160428-6.11.3 → alibabacloud_vpc20160428-6.11.5}/MANIFEST.in +0 -0
  11. {alibabacloud_vpc20160428-6.11.3 → alibabacloud_vpc20160428-6.11.5}/README-CN.md +0 -0
  12. {alibabacloud_vpc20160428-6.11.3 → alibabacloud_vpc20160428-6.11.5}/README.md +0 -0
  13. {alibabacloud_vpc20160428-6.11.3 → alibabacloud_vpc20160428-6.11.5}/alibabacloud_vpc20160428.egg-info/SOURCES.txt +0 -0
  14. {alibabacloud_vpc20160428-6.11.3 → alibabacloud_vpc20160428-6.11.5}/alibabacloud_vpc20160428.egg-info/dependency_links.txt +0 -0
  15. {alibabacloud_vpc20160428-6.11.3 → alibabacloud_vpc20160428-6.11.5}/alibabacloud_vpc20160428.egg-info/requires.txt +0 -0
  16. {alibabacloud_vpc20160428-6.11.3 → alibabacloud_vpc20160428-6.11.5}/alibabacloud_vpc20160428.egg-info/top_level.txt +0 -0
  17. {alibabacloud_vpc20160428-6.11.3 → alibabacloud_vpc20160428-6.11.5}/setup.cfg +0 -0
@@ -1,3 +1,13 @@
1
+ 2025-04-01 Version: 6.11.4
2
+ - Update API DeleteVSwitch: add request parameters DryRun.
3
+
4
+
5
+ 2025-03-26 Version: 6.11.3
6
+ - Update API AllocateEipAddress: add request parameters Tag.
7
+ - Update API AllocateEipAddressPro: add request parameters Tag.
8
+ - Update API CreateCommonBandwidthPackage: add request parameters Tag.
9
+
10
+
1
11
  2025-02-27 Version: 6.11.2
2
12
  - Generated python 2016-04-28 for Vpc.
3
13
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud_vpc20160428
3
- Version: 6.11.3
3
+ Version: 6.11.5
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.11.5'
@@ -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
@@ -45354,6 +45360,7 @@ class DescribeIpv6GatewayAttributeResponseBody(TeaModel):
45354
45360
  instance_charge_type: str = None,
45355
45361
  ipv_6gateway_id: str = None,
45356
45362
  name: str = None,
45363
+ owner_id: str = None,
45357
45364
  region_id: str = None,
45358
45365
  request_id: str = None,
45359
45366
  resource_group_id: str = None,
@@ -45383,6 +45390,7 @@ class DescribeIpv6GatewayAttributeResponseBody(TeaModel):
45383
45390
  self.ipv_6gateway_id = ipv_6gateway_id
45384
45391
  # The name of the IPv6 gateway.
45385
45392
  self.name = name
45393
+ self.owner_id = owner_id
45386
45394
  # The ID of the region where the IPv6 gateway is deployed.
45387
45395
  self.region_id = region_id
45388
45396
  # The ID of the request.
@@ -45425,6 +45433,8 @@ class DescribeIpv6GatewayAttributeResponseBody(TeaModel):
45425
45433
  result['Ipv6GatewayId'] = self.ipv_6gateway_id
45426
45434
  if self.name is not None:
45427
45435
  result['Name'] = self.name
45436
+ if self.owner_id is not None:
45437
+ result['OwnerId'] = self.owner_id
45428
45438
  if self.region_id is not None:
45429
45439
  result['RegionId'] = self.region_id
45430
45440
  if self.request_id is not None:
@@ -45457,6 +45467,8 @@ class DescribeIpv6GatewayAttributeResponseBody(TeaModel):
45457
45467
  self.ipv_6gateway_id = m.get('Ipv6GatewayId')
45458
45468
  if m.get('Name') is not None:
45459
45469
  self.name = m.get('Name')
45470
+ if m.get('OwnerId') is not None:
45471
+ self.owner_id = m.get('OwnerId')
45460
45472
  if m.get('RegionId') is not None:
45461
45473
  self.region_id = m.get('RegionId')
45462
45474
  if m.get('RequestId') is not None:
@@ -45746,6 +45758,7 @@ class DescribeIpv6GatewaysResponseBodyIpv6GatewaysIpv6Gateway(TeaModel):
45746
45758
  instance_charge_type: str = None,
45747
45759
  ipv_6gateway_id: str = None,
45748
45760
  name: str = None,
45761
+ owner_id: str = None,
45749
45762
  region_id: str = None,
45750
45763
  resource_group_id: str = None,
45751
45764
  status: str = None,
@@ -45772,6 +45785,7 @@ class DescribeIpv6GatewaysResponseBodyIpv6GatewaysIpv6Gateway(TeaModel):
45772
45785
  self.ipv_6gateway_id = ipv_6gateway_id
45773
45786
  # The name of the IPv6 gateway.
45774
45787
  self.name = name
45788
+ self.owner_id = owner_id
45775
45789
  # The ID of the region in which the IPv6 gateway is deployed.
45776
45790
  self.region_id = region_id
45777
45791
  # The resource group ID.
@@ -45810,6 +45824,8 @@ class DescribeIpv6GatewaysResponseBodyIpv6GatewaysIpv6Gateway(TeaModel):
45810
45824
  result['Ipv6GatewayId'] = self.ipv_6gateway_id
45811
45825
  if self.name is not None:
45812
45826
  result['Name'] = self.name
45827
+ if self.owner_id is not None:
45828
+ result['OwnerId'] = self.owner_id
45813
45829
  if self.region_id is not None:
45814
45830
  result['RegionId'] = self.region_id
45815
45831
  if self.resource_group_id is not None:
@@ -45838,6 +45854,8 @@ class DescribeIpv6GatewaysResponseBodyIpv6GatewaysIpv6Gateway(TeaModel):
45838
45854
  self.ipv_6gateway_id = m.get('Ipv6GatewayId')
45839
45855
  if m.get('Name') is not None:
45840
45856
  self.name = m.get('Name')
45857
+ if m.get('OwnerId') is not None:
45858
+ self.owner_id = m.get('OwnerId')
45841
45859
  if m.get('RegionId') is not None:
45842
45860
  self.region_id = m.get('RegionId')
45843
45861
  if m.get('ResourceGroupId') is not None:
@@ -106391,8 +106409,12 @@ class WithdrawVpcPublishedRouteEntriesRequestRouteEntries(TeaModel):
106391
106409
  destination_cidr_block: str = None,
106392
106410
  route_table_id: str = None,
106393
106411
  ):
106412
+ # The destination CIDR block
106413
+ #
106394
106414
  # This parameter is required.
106395
106415
  self.destination_cidr_block = destination_cidr_block
106416
+ # The ID of the route table.
106417
+ #
106396
106418
  # This parameter is required.
106397
106419
  self.route_table_id = route_table_id
106398
106420
 
@@ -106433,15 +106455,25 @@ class WithdrawVpcPublishedRouteEntriesRequest(TeaModel):
106433
106455
  target_instance_id: str = None,
106434
106456
  target_type: str = None,
106435
106457
  ):
106458
+ # Specifies whether to perform only a dry run, without performing the actual request. Valid values:
106459
+ #
106460
+ # * **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.
106461
+ # * **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
106462
  self.dry_run = dry_run
106437
106463
  self.owner_account = owner_account
106438
106464
  self.owner_id = owner_id
106465
+ # The ID of the region. Call the DescribeRegions operation to access it.
106439
106466
  self.region_id = region_id
106440
106467
  self.resource_owner_account = resource_owner_account
106441
106468
  self.resource_owner_id = resource_owner_id
106469
+ # The route entries to be withdrawn. Maximum value: 50.
106442
106470
  self.route_entries = route_entries
106471
+ # Target instance ID.
106472
+ #
106443
106473
  # This parameter is required.
106444
106474
  self.target_instance_id = target_instance_id
106475
+ # The type of target instance.
106476
+ #
106445
106477
  # This parameter is required.
106446
106478
  self.target_type = target_type
106447
106479
 
@@ -106510,6 +106542,7 @@ class WithdrawVpcPublishedRouteEntriesResponseBody(TeaModel):
106510
106542
  self,
106511
106543
  request_id: str = None,
106512
106544
  ):
106545
+ # The request ID.
106513
106546
  self.request_id = request_id
106514
106547
 
106515
106548
  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.5
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 26/03/2025
27
+ Created on 14/04/2025
28
28
 
29
29
  @author: Alibaba Cloud SDK
30
30
  """
@@ -1 +0,0 @@
1
- __version__ = '6.11.3'