alibabacloud-vpc20160428 6.6.0__py3-none-any.whl → 6.6.1__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 +15 -1
- {alibabacloud_vpc20160428-6.6.0.dist-info → alibabacloud_vpc20160428-6.6.1.dist-info}/METADATA +1 -1
- alibabacloud_vpc20160428-6.6.1.dist-info/RECORD +8 -0
- alibabacloud_vpc20160428-6.6.0.dist-info/RECORD +0 -8
- {alibabacloud_vpc20160428-6.6.0.dist-info → alibabacloud_vpc20160428-6.6.1.dist-info}/LICENSE +0 -0
- {alibabacloud_vpc20160428-6.6.0.dist-info → alibabacloud_vpc20160428-6.6.1.dist-info}/WHEEL +0 -0
- {alibabacloud_vpc20160428-6.6.0.dist-info → alibabacloud_vpc20160428-6.6.1.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '6.6.
|
|
1
|
+
__version__ = '6.6.1'
|
|
@@ -3477,6 +3477,8 @@ class Client(OpenApiClient):
|
|
|
3477
3477
|
query['ResourceOwnerId'] = request.resource_owner_id
|
|
3478
3478
|
if not UtilClient.is_unset(request.secondary_cidr_block):
|
|
3479
3479
|
query['SecondaryCidrBlock'] = request.secondary_cidr_block
|
|
3480
|
+
if not UtilClient.is_unset(request.secondary_cidr_mask):
|
|
3481
|
+
query['SecondaryCidrMask'] = request.secondary_cidr_mask
|
|
3480
3482
|
if not UtilClient.is_unset(request.vpc_id):
|
|
3481
3483
|
query['VpcId'] = request.vpc_id
|
|
3482
3484
|
req = open_api_models.OpenApiRequest(
|
|
@@ -3538,6 +3540,8 @@ class Client(OpenApiClient):
|
|
|
3538
3540
|
query['ResourceOwnerId'] = request.resource_owner_id
|
|
3539
3541
|
if not UtilClient.is_unset(request.secondary_cidr_block):
|
|
3540
3542
|
query['SecondaryCidrBlock'] = request.secondary_cidr_block
|
|
3543
|
+
if not UtilClient.is_unset(request.secondary_cidr_mask):
|
|
3544
|
+
query['SecondaryCidrMask'] = request.secondary_cidr_mask
|
|
3541
3545
|
if not UtilClient.is_unset(request.vpc_id):
|
|
3542
3546
|
query['VpcId'] = request.vpc_id
|
|
3543
3547
|
req = open_api_models.OpenApiRequest(
|
|
@@ -12686,6 +12690,8 @@ class Client(OpenApiClient):
|
|
|
12686
12690
|
query['DryRun'] = request.dry_run
|
|
12687
12691
|
if not UtilClient.is_unset(request.enable_ipv_6):
|
|
12688
12692
|
query['EnableIpv6'] = request.enable_ipv_6
|
|
12693
|
+
if not UtilClient.is_unset(request.ipv_4cidr_mask):
|
|
12694
|
+
query['Ipv4CidrMask'] = request.ipv_4cidr_mask
|
|
12689
12695
|
if not UtilClient.is_unset(request.ipv_4ipam_pool_id):
|
|
12690
12696
|
query['Ipv4IpamPoolId'] = request.ipv_4ipam_pool_id
|
|
12691
12697
|
if not UtilClient.is_unset(request.ipv_6cidr_block):
|
|
@@ -12762,6 +12768,8 @@ class Client(OpenApiClient):
|
|
|
12762
12768
|
query['DryRun'] = request.dry_run
|
|
12763
12769
|
if not UtilClient.is_unset(request.enable_ipv_6):
|
|
12764
12770
|
query['EnableIpv6'] = request.enable_ipv_6
|
|
12771
|
+
if not UtilClient.is_unset(request.ipv_4cidr_mask):
|
|
12772
|
+
query['Ipv4CidrMask'] = request.ipv_4cidr_mask
|
|
12765
12773
|
if not UtilClient.is_unset(request.ipv_4ipam_pool_id):
|
|
12766
12774
|
query['Ipv4IpamPoolId'] = request.ipv_4ipam_pool_id
|
|
12767
12775
|
if not UtilClient.is_unset(request.ipv_6cidr_block):
|
|
@@ -4566,6 +4566,7 @@ class AssociateVpcCidrBlockRequest(TeaModel):
|
|
|
4566
4566
|
resource_owner_account: str = None,
|
|
4567
4567
|
resource_owner_id: int = None,
|
|
4568
4568
|
secondary_cidr_block: str = None,
|
|
4569
|
+
secondary_cidr_mask: int = None,
|
|
4569
4570
|
vpc_id: str = None,
|
|
4570
4571
|
):
|
|
4571
4572
|
# The IPv6 CIDR block to be added.
|
|
@@ -4608,6 +4609,7 @@ class AssociateVpcCidrBlockRequest(TeaModel):
|
|
|
4608
4609
|
#
|
|
4609
4610
|
# > You must and can specify only one of **SecondaryCidrBlock** and **Ipv6CidrBlock**.
|
|
4610
4611
|
self.secondary_cidr_block = secondary_cidr_block
|
|
4612
|
+
self.secondary_cidr_mask = secondary_cidr_mask
|
|
4611
4613
|
# The ID of the VPC to which you want to add a secondary CIDR block.
|
|
4612
4614
|
self.vpc_id = vpc_id
|
|
4613
4615
|
|
|
@@ -4640,6 +4642,8 @@ class AssociateVpcCidrBlockRequest(TeaModel):
|
|
|
4640
4642
|
result['ResourceOwnerId'] = self.resource_owner_id
|
|
4641
4643
|
if self.secondary_cidr_block is not None:
|
|
4642
4644
|
result['SecondaryCidrBlock'] = self.secondary_cidr_block
|
|
4645
|
+
if self.secondary_cidr_mask is not None:
|
|
4646
|
+
result['SecondaryCidrMask'] = self.secondary_cidr_mask
|
|
4643
4647
|
if self.vpc_id is not None:
|
|
4644
4648
|
result['VpcId'] = self.vpc_id
|
|
4645
4649
|
return result
|
|
@@ -4666,6 +4670,8 @@ class AssociateVpcCidrBlockRequest(TeaModel):
|
|
|
4666
4670
|
self.resource_owner_id = m.get('ResourceOwnerId')
|
|
4667
4671
|
if m.get('SecondaryCidrBlock') is not None:
|
|
4668
4672
|
self.secondary_cidr_block = m.get('SecondaryCidrBlock')
|
|
4673
|
+
if m.get('SecondaryCidrMask') is not None:
|
|
4674
|
+
self.secondary_cidr_mask = m.get('SecondaryCidrMask')
|
|
4669
4675
|
if m.get('VpcId') is not None:
|
|
4670
4676
|
self.vpc_id = m.get('VpcId')
|
|
4671
4677
|
return self
|
|
@@ -19369,6 +19375,7 @@ class CreateVpcRequest(TeaModel):
|
|
|
19369
19375
|
description: str = None,
|
|
19370
19376
|
dry_run: bool = None,
|
|
19371
19377
|
enable_ipv_6: bool = None,
|
|
19378
|
+
ipv_4cidr_mask: int = None,
|
|
19372
19379
|
ipv_4ipam_pool_id: str = None,
|
|
19373
19380
|
ipv_6cidr_block: str = None,
|
|
19374
19381
|
ipv_6isp: str = None,
|
|
@@ -19407,6 +19414,7 @@ class CreateVpcRequest(TeaModel):
|
|
|
19407
19414
|
# * **false** (default)
|
|
19408
19415
|
# * **true**\
|
|
19409
19416
|
self.enable_ipv_6 = enable_ipv_6
|
|
19417
|
+
self.ipv_4cidr_mask = ipv_4cidr_mask
|
|
19410
19418
|
# The ID of the IP Address Manager (IPAM) pool of the IPv4 type.
|
|
19411
19419
|
self.ipv_4ipam_pool_id = ipv_4ipam_pool_id
|
|
19412
19420
|
# The IPv6 CIDR block of the VPC.
|
|
@@ -19465,6 +19473,8 @@ class CreateVpcRequest(TeaModel):
|
|
|
19465
19473
|
result['DryRun'] = self.dry_run
|
|
19466
19474
|
if self.enable_ipv_6 is not None:
|
|
19467
19475
|
result['EnableIpv6'] = self.enable_ipv_6
|
|
19476
|
+
if self.ipv_4cidr_mask is not None:
|
|
19477
|
+
result['Ipv4CidrMask'] = self.ipv_4cidr_mask
|
|
19468
19478
|
if self.ipv_4ipam_pool_id is not None:
|
|
19469
19479
|
result['Ipv4IpamPoolId'] = self.ipv_4ipam_pool_id
|
|
19470
19480
|
if self.ipv_6cidr_block is not None:
|
|
@@ -19505,6 +19515,8 @@ class CreateVpcRequest(TeaModel):
|
|
|
19505
19515
|
self.dry_run = m.get('DryRun')
|
|
19506
19516
|
if m.get('EnableIpv6') is not None:
|
|
19507
19517
|
self.enable_ipv_6 = m.get('EnableIpv6')
|
|
19518
|
+
if m.get('Ipv4CidrMask') is not None:
|
|
19519
|
+
self.ipv_4cidr_mask = m.get('Ipv4CidrMask')
|
|
19508
19520
|
if m.get('Ipv4IpamPoolId') is not None:
|
|
19509
19521
|
self.ipv_4ipam_pool_id = m.get('Ipv4IpamPoolId')
|
|
19510
19522
|
if m.get('Ipv6CidrBlock') is not None:
|
|
@@ -57011,7 +57023,9 @@ class DescribeVpcAttributeResponseBody(TeaModel):
|
|
|
57011
57023
|
# * **Deleted**\
|
|
57012
57024
|
# * **Pending**\
|
|
57013
57025
|
self.dhcp_options_set_status = dhcp_options_set_status
|
|
57014
|
-
#
|
|
57026
|
+
# Indicates whether the VPC enables IPv6 .
|
|
57027
|
+
# - true
|
|
57028
|
+
# - false
|
|
57015
57029
|
self.enabled_ipv_6 = enabled_ipv_6
|
|
57016
57030
|
# The ID of the IPv4 gateway.
|
|
57017
57031
|
self.ipv_4gateway_id = ipv_4gateway_id
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
alibabacloud_vpc20160428/__init__.py,sha256=Xm9qluGy-HnL6tXSY0IyzCOHRx15u3rD1IBe1ifo7_E,21
|
|
2
|
+
alibabacloud_vpc20160428/client.py,sha256=kvYgyvp2wy6hBV7wvUB6IOLhltYHnptM7QXcBMQ7gDc,2500432
|
|
3
|
+
alibabacloud_vpc20160428/models.py,sha256=it3BrMhhZrmqUPOv0dKjL3nP9Ryia2xEZEedHrAIJMg,3860308
|
|
4
|
+
alibabacloud_vpc20160428-6.6.1.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
+
alibabacloud_vpc20160428-6.6.1.dist-info/METADATA,sha256=WxPY5iVOp6dL7H6cvaOK91VLGkxQji66YM9SUIIamF8,2301
|
|
6
|
+
alibabacloud_vpc20160428-6.6.1.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
7
|
+
alibabacloud_vpc20160428-6.6.1.dist-info/top_level.txt,sha256=aF3N1qaLDlyXEHXQ7AIBXYBUVWa-5wNpQNKhEiij7uA,25
|
|
8
|
+
alibabacloud_vpc20160428-6.6.1.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
alibabacloud_vpc20160428/__init__.py,sha256=AUHNVDx6XhDCOBEathC9tEMoeawRC-IJUj4AA0kBOto,21
|
|
2
|
-
alibabacloud_vpc20160428/client.py,sha256=AcKvKUtC6XH-OaHZY9znSNl9tyr3LsSczmqUGMvJ5PM,2499926
|
|
3
|
-
alibabacloud_vpc20160428/models.py,sha256=zdS0B9ple-OratgH_UaTK65Aa41GuIKaSCHYJTItOwk,3859639
|
|
4
|
-
alibabacloud_vpc20160428-6.6.0.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
-
alibabacloud_vpc20160428-6.6.0.dist-info/METADATA,sha256=mxmKy9eJcFBmT5lFP4j05RNVHGYmqn6qBNEq5rFeP4Q,2301
|
|
6
|
-
alibabacloud_vpc20160428-6.6.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
7
|
-
alibabacloud_vpc20160428-6.6.0.dist-info/top_level.txt,sha256=aF3N1qaLDlyXEHXQ7AIBXYBUVWa-5wNpQNKhEiij7uA,25
|
|
8
|
-
alibabacloud_vpc20160428-6.6.0.dist-info/RECORD,,
|
{alibabacloud_vpc20160428-6.6.0.dist-info → alibabacloud_vpc20160428-6.6.1.dist-info}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|
{alibabacloud_vpc20160428-6.6.0.dist-info → alibabacloud_vpc20160428-6.6.1.dist-info}/top_level.txt
RENAMED
|
File without changes
|