alibabacloud-vpc20160428 6.6.7__py3-none-any.whl → 6.7.0__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 +284 -0
- alibabacloud_vpc20160428/models.py +331 -23
- {alibabacloud_vpc20160428-6.6.7.dist-info → alibabacloud_vpc20160428-6.7.0.dist-info}/METADATA +2 -2
- alibabacloud_vpc20160428-6.7.0.dist-info/RECORD +8 -0
- alibabacloud_vpc20160428-6.6.7.dist-info/RECORD +0 -8
- {alibabacloud_vpc20160428-6.6.7.dist-info → alibabacloud_vpc20160428-6.7.0.dist-info}/LICENSE +0 -0
- {alibabacloud_vpc20160428-6.6.7.dist-info → alibabacloud_vpc20160428-6.7.0.dist-info}/WHEEL +0 -0
- {alibabacloud_vpc20160428-6.6.7.dist-info → alibabacloud_vpc20160428-6.7.0.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '6.
|
|
1
|
+
__version__ = '6.7.0'
|
|
@@ -1897,6 +1897,8 @@ class Client(OpenApiClient):
|
|
|
1897
1897
|
"""
|
|
1898
1898
|
UtilClient.validate_model(request)
|
|
1899
1899
|
query = {}
|
|
1900
|
+
if not UtilClient.is_unset(request.address_type):
|
|
1901
|
+
query['AddressType'] = request.address_type
|
|
1900
1902
|
if not UtilClient.is_unset(request.client_token):
|
|
1901
1903
|
query['ClientToken'] = request.client_token
|
|
1902
1904
|
if not UtilClient.is_unset(request.dry_run):
|
|
@@ -1958,6 +1960,8 @@ class Client(OpenApiClient):
|
|
|
1958
1960
|
"""
|
|
1959
1961
|
UtilClient.validate_model(request)
|
|
1960
1962
|
query = {}
|
|
1963
|
+
if not UtilClient.is_unset(request.address_type):
|
|
1964
|
+
query['AddressType'] = request.address_type
|
|
1961
1965
|
if not UtilClient.is_unset(request.client_token):
|
|
1962
1966
|
query['ClientToken'] = request.client_token
|
|
1963
1967
|
if not UtilClient.is_unset(request.dry_run):
|
|
@@ -10645,6 +10649,8 @@ class Client(OpenApiClient):
|
|
|
10645
10649
|
runtime: util_models.RuntimeOptions,
|
|
10646
10650
|
) -> vpc_20160428_models.CreatePhysicalConnectionSetupOrderResponse:
|
|
10647
10651
|
"""
|
|
10652
|
+
@summary 创建端口初装费订单
|
|
10653
|
+
|
|
10648
10654
|
@param request: CreatePhysicalConnectionSetupOrderRequest
|
|
10649
10655
|
@param runtime: runtime options for this request RuntimeOptions
|
|
10650
10656
|
@return: CreatePhysicalConnectionSetupOrderResponse
|
|
@@ -10700,6 +10706,8 @@ class Client(OpenApiClient):
|
|
|
10700
10706
|
runtime: util_models.RuntimeOptions,
|
|
10701
10707
|
) -> vpc_20160428_models.CreatePhysicalConnectionSetupOrderResponse:
|
|
10702
10708
|
"""
|
|
10709
|
+
@summary 创建端口初装费订单
|
|
10710
|
+
|
|
10703
10711
|
@param request: CreatePhysicalConnectionSetupOrderRequest
|
|
10704
10712
|
@param runtime: runtime options for this request RuntimeOptions
|
|
10705
10713
|
@return: CreatePhysicalConnectionSetupOrderResponse
|
|
@@ -10754,6 +10762,8 @@ class Client(OpenApiClient):
|
|
|
10754
10762
|
request: vpc_20160428_models.CreatePhysicalConnectionSetupOrderRequest,
|
|
10755
10763
|
) -> vpc_20160428_models.CreatePhysicalConnectionSetupOrderResponse:
|
|
10756
10764
|
"""
|
|
10765
|
+
@summary 创建端口初装费订单
|
|
10766
|
+
|
|
10757
10767
|
@param request: CreatePhysicalConnectionSetupOrderRequest
|
|
10758
10768
|
@return: CreatePhysicalConnectionSetupOrderResponse
|
|
10759
10769
|
"""
|
|
@@ -10765,6 +10775,8 @@ class Client(OpenApiClient):
|
|
|
10765
10775
|
request: vpc_20160428_models.CreatePhysicalConnectionSetupOrderRequest,
|
|
10766
10776
|
) -> vpc_20160428_models.CreatePhysicalConnectionSetupOrderResponse:
|
|
10767
10777
|
"""
|
|
10778
|
+
@summary 创建端口初装费订单
|
|
10779
|
+
|
|
10768
10780
|
@param request: CreatePhysicalConnectionSetupOrderRequest
|
|
10769
10781
|
@return: CreatePhysicalConnectionSetupOrderResponse
|
|
10770
10782
|
"""
|
|
@@ -18210,6 +18222,8 @@ class Client(OpenApiClient):
|
|
|
18210
18222
|
query['ClientToken'] = request.client_token
|
|
18211
18223
|
if not UtilClient.is_unset(request.dry_run):
|
|
18212
18224
|
query['DryRun'] = request.dry_run
|
|
18225
|
+
if not UtilClient.is_unset(request.internet_mode):
|
|
18226
|
+
query['InternetMode'] = request.internet_mode
|
|
18213
18227
|
if not UtilClient.is_unset(request.ipv_4gateway_id):
|
|
18214
18228
|
query['Ipv4GatewayId'] = request.ipv_4gateway_id
|
|
18215
18229
|
if not UtilClient.is_unset(request.owner_account):
|
|
@@ -18268,6 +18282,8 @@ class Client(OpenApiClient):
|
|
|
18268
18282
|
query['ClientToken'] = request.client_token
|
|
18269
18283
|
if not UtilClient.is_unset(request.dry_run):
|
|
18270
18284
|
query['DryRun'] = request.dry_run
|
|
18285
|
+
if not UtilClient.is_unset(request.internet_mode):
|
|
18286
|
+
query['InternetMode'] = request.internet_mode
|
|
18271
18287
|
if not UtilClient.is_unset(request.ipv_4gateway_id):
|
|
18272
18288
|
query['Ipv4GatewayId'] = request.ipv_4gateway_id
|
|
18273
18289
|
if not UtilClient.is_unset(request.owner_account):
|
|
@@ -27075,6 +27091,8 @@ class Client(OpenApiClient):
|
|
|
27075
27091
|
"""
|
|
27076
27092
|
UtilClient.validate_model(request)
|
|
27077
27093
|
query = {}
|
|
27094
|
+
if not UtilClient.is_unset(request.address_type):
|
|
27095
|
+
query['AddressType'] = request.address_type
|
|
27078
27096
|
if not UtilClient.is_unset(request.associated_instance_id):
|
|
27079
27097
|
query['AssociatedInstanceId'] = request.associated_instance_id
|
|
27080
27098
|
if not UtilClient.is_unset(request.associated_instance_type):
|
|
@@ -27150,6 +27168,8 @@ class Client(OpenApiClient):
|
|
|
27150
27168
|
"""
|
|
27151
27169
|
UtilClient.validate_model(request)
|
|
27152
27170
|
query = {}
|
|
27171
|
+
if not UtilClient.is_unset(request.address_type):
|
|
27172
|
+
query['AddressType'] = request.address_type
|
|
27153
27173
|
if not UtilClient.is_unset(request.associated_instance_id):
|
|
27154
27174
|
query['AssociatedInstanceId'] = request.associated_instance_id
|
|
27155
27175
|
if not UtilClient.is_unset(request.associated_instance_type):
|
|
@@ -27243,6 +27263,8 @@ class Client(OpenApiClient):
|
|
|
27243
27263
|
runtime: util_models.RuntimeOptions,
|
|
27244
27264
|
) -> vpc_20160428_models.DescribeIpv6EgressOnlyRulesResponse:
|
|
27245
27265
|
"""
|
|
27266
|
+
@summary 查询创建的仅主动出规则。
|
|
27267
|
+
|
|
27246
27268
|
@param request: DescribeIpv6EgressOnlyRulesRequest
|
|
27247
27269
|
@param runtime: runtime options for this request RuntimeOptions
|
|
27248
27270
|
@return: DescribeIpv6EgressOnlyRulesResponse
|
|
@@ -27300,6 +27322,8 @@ class Client(OpenApiClient):
|
|
|
27300
27322
|
runtime: util_models.RuntimeOptions,
|
|
27301
27323
|
) -> vpc_20160428_models.DescribeIpv6EgressOnlyRulesResponse:
|
|
27302
27324
|
"""
|
|
27325
|
+
@summary 查询创建的仅主动出规则。
|
|
27326
|
+
|
|
27303
27327
|
@param request: DescribeIpv6EgressOnlyRulesRequest
|
|
27304
27328
|
@param runtime: runtime options for this request RuntimeOptions
|
|
27305
27329
|
@return: DescribeIpv6EgressOnlyRulesResponse
|
|
@@ -27356,6 +27380,8 @@ class Client(OpenApiClient):
|
|
|
27356
27380
|
request: vpc_20160428_models.DescribeIpv6EgressOnlyRulesRequest,
|
|
27357
27381
|
) -> vpc_20160428_models.DescribeIpv6EgressOnlyRulesResponse:
|
|
27358
27382
|
"""
|
|
27383
|
+
@summary 查询创建的仅主动出规则。
|
|
27384
|
+
|
|
27359
27385
|
@param request: DescribeIpv6EgressOnlyRulesRequest
|
|
27360
27386
|
@return: DescribeIpv6EgressOnlyRulesResponse
|
|
27361
27387
|
"""
|
|
@@ -27367,6 +27393,8 @@ class Client(OpenApiClient):
|
|
|
27367
27393
|
request: vpc_20160428_models.DescribeIpv6EgressOnlyRulesRequest,
|
|
27368
27394
|
) -> vpc_20160428_models.DescribeIpv6EgressOnlyRulesResponse:
|
|
27369
27395
|
"""
|
|
27396
|
+
@summary 查询创建的仅主动出规则。
|
|
27397
|
+
|
|
27370
27398
|
@param request: DescribeIpv6EgressOnlyRulesRequest
|
|
27371
27399
|
@return: DescribeIpv6EgressOnlyRulesResponse
|
|
27372
27400
|
"""
|
|
@@ -28935,11 +28963,14 @@ class Client(OpenApiClient):
|
|
|
28935
28963
|
runtime: util_models.RuntimeOptions,
|
|
28936
28964
|
) -> vpc_20160428_models.DescribeRouteTablesResponse:
|
|
28937
28965
|
"""
|
|
28966
|
+
@deprecated OpenAPI DescribeRouteTables is deprecated, please use Vpc::2016-04-28::DescribeRouteTableList instead.
|
|
28967
|
+
|
|
28938
28968
|
@summary Queries route tables.
|
|
28939
28969
|
|
|
28940
28970
|
@param request: DescribeRouteTablesRequest
|
|
28941
28971
|
@param runtime: runtime options for this request RuntimeOptions
|
|
28942
28972
|
@return: DescribeRouteTablesResponse
|
|
28973
|
+
Deprecated
|
|
28943
28974
|
"""
|
|
28944
28975
|
UtilClient.validate_model(request)
|
|
28945
28976
|
query = {}
|
|
@@ -28996,11 +29027,14 @@ class Client(OpenApiClient):
|
|
|
28996
29027
|
runtime: util_models.RuntimeOptions,
|
|
28997
29028
|
) -> vpc_20160428_models.DescribeRouteTablesResponse:
|
|
28998
29029
|
"""
|
|
29030
|
+
@deprecated OpenAPI DescribeRouteTables is deprecated, please use Vpc::2016-04-28::DescribeRouteTableList instead.
|
|
29031
|
+
|
|
28999
29032
|
@summary Queries route tables.
|
|
29000
29033
|
|
|
29001
29034
|
@param request: DescribeRouteTablesRequest
|
|
29002
29035
|
@param runtime: runtime options for this request RuntimeOptions
|
|
29003
29036
|
@return: DescribeRouteTablesResponse
|
|
29037
|
+
Deprecated
|
|
29004
29038
|
"""
|
|
29005
29039
|
UtilClient.validate_model(request)
|
|
29006
29040
|
query = {}
|
|
@@ -29056,10 +29090,13 @@ class Client(OpenApiClient):
|
|
|
29056
29090
|
request: vpc_20160428_models.DescribeRouteTablesRequest,
|
|
29057
29091
|
) -> vpc_20160428_models.DescribeRouteTablesResponse:
|
|
29058
29092
|
"""
|
|
29093
|
+
@deprecated OpenAPI DescribeRouteTables is deprecated, please use Vpc::2016-04-28::DescribeRouteTableList instead.
|
|
29094
|
+
|
|
29059
29095
|
@summary Queries route tables.
|
|
29060
29096
|
|
|
29061
29097
|
@param request: DescribeRouteTablesRequest
|
|
29062
29098
|
@return: DescribeRouteTablesResponse
|
|
29099
|
+
Deprecated
|
|
29063
29100
|
"""
|
|
29064
29101
|
runtime = util_models.RuntimeOptions()
|
|
29065
29102
|
return self.describe_route_tables_with_options(request, runtime)
|
|
@@ -29069,10 +29106,13 @@ class Client(OpenApiClient):
|
|
|
29069
29106
|
request: vpc_20160428_models.DescribeRouteTablesRequest,
|
|
29070
29107
|
) -> vpc_20160428_models.DescribeRouteTablesResponse:
|
|
29071
29108
|
"""
|
|
29109
|
+
@deprecated OpenAPI DescribeRouteTables is deprecated, please use Vpc::2016-04-28::DescribeRouteTableList instead.
|
|
29110
|
+
|
|
29072
29111
|
@summary Queries route tables.
|
|
29073
29112
|
|
|
29074
29113
|
@param request: DescribeRouteTablesRequest
|
|
29075
29114
|
@return: DescribeRouteTablesResponse
|
|
29115
|
+
Deprecated
|
|
29076
29116
|
"""
|
|
29077
29117
|
runtime = util_models.RuntimeOptions()
|
|
29078
29118
|
return await self.describe_route_tables_with_options_async(request, runtime)
|
|
@@ -35541,6 +35581,126 @@ class Client(OpenApiClient):
|
|
|
35541
35581
|
runtime = util_models.RuntimeOptions()
|
|
35542
35582
|
return await self.get_physical_connection_service_status_with_options_async(request, runtime)
|
|
35543
35583
|
|
|
35584
|
+
def get_public_ip_address_pool_service_status_with_options(
|
|
35585
|
+
self,
|
|
35586
|
+
request: vpc_20160428_models.GetPublicIpAddressPoolServiceStatusRequest,
|
|
35587
|
+
runtime: util_models.RuntimeOptions,
|
|
35588
|
+
) -> vpc_20160428_models.GetPublicIpAddressPoolServiceStatusResponse:
|
|
35589
|
+
"""
|
|
35590
|
+
@summary 查询IP地址池功能的开通状态。
|
|
35591
|
+
|
|
35592
|
+
@param request: GetPublicIpAddressPoolServiceStatusRequest
|
|
35593
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
35594
|
+
@return: GetPublicIpAddressPoolServiceStatusResponse
|
|
35595
|
+
"""
|
|
35596
|
+
UtilClient.validate_model(request)
|
|
35597
|
+
query = {}
|
|
35598
|
+
if not UtilClient.is_unset(request.client_token):
|
|
35599
|
+
query['ClientToken'] = request.client_token
|
|
35600
|
+
if not UtilClient.is_unset(request.owner_account):
|
|
35601
|
+
query['OwnerAccount'] = request.owner_account
|
|
35602
|
+
if not UtilClient.is_unset(request.owner_id):
|
|
35603
|
+
query['OwnerId'] = request.owner_id
|
|
35604
|
+
if not UtilClient.is_unset(request.region_id):
|
|
35605
|
+
query['RegionId'] = request.region_id
|
|
35606
|
+
if not UtilClient.is_unset(request.region_id):
|
|
35607
|
+
query['RegionId'] = request.region_id
|
|
35608
|
+
if not UtilClient.is_unset(request.resource_owner_account):
|
|
35609
|
+
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
35610
|
+
if not UtilClient.is_unset(request.resource_owner_id):
|
|
35611
|
+
query['ResourceOwnerId'] = request.resource_owner_id
|
|
35612
|
+
req = open_api_models.OpenApiRequest(
|
|
35613
|
+
query=OpenApiUtilClient.query(query)
|
|
35614
|
+
)
|
|
35615
|
+
params = open_api_models.Params(
|
|
35616
|
+
action='GetPublicIpAddressPoolServiceStatus',
|
|
35617
|
+
version='2016-04-28',
|
|
35618
|
+
protocol='HTTPS',
|
|
35619
|
+
pathname='/',
|
|
35620
|
+
method='POST',
|
|
35621
|
+
auth_type='AK',
|
|
35622
|
+
style='RPC',
|
|
35623
|
+
req_body_type='formData',
|
|
35624
|
+
body_type='json'
|
|
35625
|
+
)
|
|
35626
|
+
return TeaCore.from_map(
|
|
35627
|
+
vpc_20160428_models.GetPublicIpAddressPoolServiceStatusResponse(),
|
|
35628
|
+
self.call_api(params, req, runtime)
|
|
35629
|
+
)
|
|
35630
|
+
|
|
35631
|
+
async def get_public_ip_address_pool_service_status_with_options_async(
|
|
35632
|
+
self,
|
|
35633
|
+
request: vpc_20160428_models.GetPublicIpAddressPoolServiceStatusRequest,
|
|
35634
|
+
runtime: util_models.RuntimeOptions,
|
|
35635
|
+
) -> vpc_20160428_models.GetPublicIpAddressPoolServiceStatusResponse:
|
|
35636
|
+
"""
|
|
35637
|
+
@summary 查询IP地址池功能的开通状态。
|
|
35638
|
+
|
|
35639
|
+
@param request: GetPublicIpAddressPoolServiceStatusRequest
|
|
35640
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
35641
|
+
@return: GetPublicIpAddressPoolServiceStatusResponse
|
|
35642
|
+
"""
|
|
35643
|
+
UtilClient.validate_model(request)
|
|
35644
|
+
query = {}
|
|
35645
|
+
if not UtilClient.is_unset(request.client_token):
|
|
35646
|
+
query['ClientToken'] = request.client_token
|
|
35647
|
+
if not UtilClient.is_unset(request.owner_account):
|
|
35648
|
+
query['OwnerAccount'] = request.owner_account
|
|
35649
|
+
if not UtilClient.is_unset(request.owner_id):
|
|
35650
|
+
query['OwnerId'] = request.owner_id
|
|
35651
|
+
if not UtilClient.is_unset(request.region_id):
|
|
35652
|
+
query['RegionId'] = request.region_id
|
|
35653
|
+
if not UtilClient.is_unset(request.region_id):
|
|
35654
|
+
query['RegionId'] = request.region_id
|
|
35655
|
+
if not UtilClient.is_unset(request.resource_owner_account):
|
|
35656
|
+
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
35657
|
+
if not UtilClient.is_unset(request.resource_owner_id):
|
|
35658
|
+
query['ResourceOwnerId'] = request.resource_owner_id
|
|
35659
|
+
req = open_api_models.OpenApiRequest(
|
|
35660
|
+
query=OpenApiUtilClient.query(query)
|
|
35661
|
+
)
|
|
35662
|
+
params = open_api_models.Params(
|
|
35663
|
+
action='GetPublicIpAddressPoolServiceStatus',
|
|
35664
|
+
version='2016-04-28',
|
|
35665
|
+
protocol='HTTPS',
|
|
35666
|
+
pathname='/',
|
|
35667
|
+
method='POST',
|
|
35668
|
+
auth_type='AK',
|
|
35669
|
+
style='RPC',
|
|
35670
|
+
req_body_type='formData',
|
|
35671
|
+
body_type='json'
|
|
35672
|
+
)
|
|
35673
|
+
return TeaCore.from_map(
|
|
35674
|
+
vpc_20160428_models.GetPublicIpAddressPoolServiceStatusResponse(),
|
|
35675
|
+
await self.call_api_async(params, req, runtime)
|
|
35676
|
+
)
|
|
35677
|
+
|
|
35678
|
+
def get_public_ip_address_pool_service_status(
|
|
35679
|
+
self,
|
|
35680
|
+
request: vpc_20160428_models.GetPublicIpAddressPoolServiceStatusRequest,
|
|
35681
|
+
) -> vpc_20160428_models.GetPublicIpAddressPoolServiceStatusResponse:
|
|
35682
|
+
"""
|
|
35683
|
+
@summary 查询IP地址池功能的开通状态。
|
|
35684
|
+
|
|
35685
|
+
@param request: GetPublicIpAddressPoolServiceStatusRequest
|
|
35686
|
+
@return: GetPublicIpAddressPoolServiceStatusResponse
|
|
35687
|
+
"""
|
|
35688
|
+
runtime = util_models.RuntimeOptions()
|
|
35689
|
+
return self.get_public_ip_address_pool_service_status_with_options(request, runtime)
|
|
35690
|
+
|
|
35691
|
+
async def get_public_ip_address_pool_service_status_async(
|
|
35692
|
+
self,
|
|
35693
|
+
request: vpc_20160428_models.GetPublicIpAddressPoolServiceStatusRequest,
|
|
35694
|
+
) -> vpc_20160428_models.GetPublicIpAddressPoolServiceStatusResponse:
|
|
35695
|
+
"""
|
|
35696
|
+
@summary 查询IP地址池功能的开通状态。
|
|
35697
|
+
|
|
35698
|
+
@param request: GetPublicIpAddressPoolServiceStatusRequest
|
|
35699
|
+
@return: GetPublicIpAddressPoolServiceStatusResponse
|
|
35700
|
+
"""
|
|
35701
|
+
runtime = util_models.RuntimeOptions()
|
|
35702
|
+
return await self.get_public_ip_address_pool_service_status_with_options_async(request, runtime)
|
|
35703
|
+
|
|
35544
35704
|
def get_traffic_mirror_service_status_with_options(
|
|
35545
35705
|
self,
|
|
35546
35706
|
request: vpc_20160428_models.GetTrafficMirrorServiceStatusRequest,
|
|
@@ -44559,6 +44719,8 @@ class Client(OpenApiClient):
|
|
|
44559
44719
|
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
44560
44720
|
if not UtilClient.is_unset(request.resource_owner_id):
|
|
44561
44721
|
query['ResourceOwnerId'] = request.resource_owner_id
|
|
44722
|
+
if not UtilClient.is_unset(request.route_propagation_enable):
|
|
44723
|
+
query['RoutePropagationEnable'] = request.route_propagation_enable
|
|
44562
44724
|
if not UtilClient.is_unset(request.route_table_id):
|
|
44563
44725
|
query['RouteTableId'] = request.route_table_id
|
|
44564
44726
|
if not UtilClient.is_unset(request.route_table_name):
|
|
@@ -44610,6 +44772,8 @@ class Client(OpenApiClient):
|
|
|
44610
44772
|
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
44611
44773
|
if not UtilClient.is_unset(request.resource_owner_id):
|
|
44612
44774
|
query['ResourceOwnerId'] = request.resource_owner_id
|
|
44775
|
+
if not UtilClient.is_unset(request.route_propagation_enable):
|
|
44776
|
+
query['RoutePropagationEnable'] = request.route_propagation_enable
|
|
44613
44777
|
if not UtilClient.is_unset(request.route_table_id):
|
|
44614
44778
|
query['RouteTableId'] = request.route_table_id
|
|
44615
44779
|
if not UtilClient.is_unset(request.route_table_name):
|
|
@@ -48429,6 +48593,126 @@ class Client(OpenApiClient):
|
|
|
48429
48593
|
runtime = util_models.RuntimeOptions()
|
|
48430
48594
|
return await self.open_physical_connection_service_with_options_async(request, runtime)
|
|
48431
48595
|
|
|
48596
|
+
def open_public_ip_address_pool_service_with_options(
|
|
48597
|
+
self,
|
|
48598
|
+
request: vpc_20160428_models.OpenPublicIpAddressPoolServiceRequest,
|
|
48599
|
+
runtime: util_models.RuntimeOptions,
|
|
48600
|
+
) -> vpc_20160428_models.OpenPublicIpAddressPoolServiceResponse:
|
|
48601
|
+
"""
|
|
48602
|
+
@summary 开通IP地址池功能。
|
|
48603
|
+
|
|
48604
|
+
@param request: OpenPublicIpAddressPoolServiceRequest
|
|
48605
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
48606
|
+
@return: OpenPublicIpAddressPoolServiceResponse
|
|
48607
|
+
"""
|
|
48608
|
+
UtilClient.validate_model(request)
|
|
48609
|
+
query = {}
|
|
48610
|
+
if not UtilClient.is_unset(request.client_token):
|
|
48611
|
+
query['ClientToken'] = request.client_token
|
|
48612
|
+
if not UtilClient.is_unset(request.owner_account):
|
|
48613
|
+
query['OwnerAccount'] = request.owner_account
|
|
48614
|
+
if not UtilClient.is_unset(request.owner_id):
|
|
48615
|
+
query['OwnerId'] = request.owner_id
|
|
48616
|
+
if not UtilClient.is_unset(request.region_id):
|
|
48617
|
+
query['RegionId'] = request.region_id
|
|
48618
|
+
if not UtilClient.is_unset(request.region_id):
|
|
48619
|
+
query['RegionId'] = request.region_id
|
|
48620
|
+
if not UtilClient.is_unset(request.resource_owner_account):
|
|
48621
|
+
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
48622
|
+
if not UtilClient.is_unset(request.resource_owner_id):
|
|
48623
|
+
query['ResourceOwnerId'] = request.resource_owner_id
|
|
48624
|
+
req = open_api_models.OpenApiRequest(
|
|
48625
|
+
query=OpenApiUtilClient.query(query)
|
|
48626
|
+
)
|
|
48627
|
+
params = open_api_models.Params(
|
|
48628
|
+
action='OpenPublicIpAddressPoolService',
|
|
48629
|
+
version='2016-04-28',
|
|
48630
|
+
protocol='HTTPS',
|
|
48631
|
+
pathname='/',
|
|
48632
|
+
method='POST',
|
|
48633
|
+
auth_type='AK',
|
|
48634
|
+
style='RPC',
|
|
48635
|
+
req_body_type='formData',
|
|
48636
|
+
body_type='json'
|
|
48637
|
+
)
|
|
48638
|
+
return TeaCore.from_map(
|
|
48639
|
+
vpc_20160428_models.OpenPublicIpAddressPoolServiceResponse(),
|
|
48640
|
+
self.call_api(params, req, runtime)
|
|
48641
|
+
)
|
|
48642
|
+
|
|
48643
|
+
async def open_public_ip_address_pool_service_with_options_async(
|
|
48644
|
+
self,
|
|
48645
|
+
request: vpc_20160428_models.OpenPublicIpAddressPoolServiceRequest,
|
|
48646
|
+
runtime: util_models.RuntimeOptions,
|
|
48647
|
+
) -> vpc_20160428_models.OpenPublicIpAddressPoolServiceResponse:
|
|
48648
|
+
"""
|
|
48649
|
+
@summary 开通IP地址池功能。
|
|
48650
|
+
|
|
48651
|
+
@param request: OpenPublicIpAddressPoolServiceRequest
|
|
48652
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
48653
|
+
@return: OpenPublicIpAddressPoolServiceResponse
|
|
48654
|
+
"""
|
|
48655
|
+
UtilClient.validate_model(request)
|
|
48656
|
+
query = {}
|
|
48657
|
+
if not UtilClient.is_unset(request.client_token):
|
|
48658
|
+
query['ClientToken'] = request.client_token
|
|
48659
|
+
if not UtilClient.is_unset(request.owner_account):
|
|
48660
|
+
query['OwnerAccount'] = request.owner_account
|
|
48661
|
+
if not UtilClient.is_unset(request.owner_id):
|
|
48662
|
+
query['OwnerId'] = request.owner_id
|
|
48663
|
+
if not UtilClient.is_unset(request.region_id):
|
|
48664
|
+
query['RegionId'] = request.region_id
|
|
48665
|
+
if not UtilClient.is_unset(request.region_id):
|
|
48666
|
+
query['RegionId'] = request.region_id
|
|
48667
|
+
if not UtilClient.is_unset(request.resource_owner_account):
|
|
48668
|
+
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
48669
|
+
if not UtilClient.is_unset(request.resource_owner_id):
|
|
48670
|
+
query['ResourceOwnerId'] = request.resource_owner_id
|
|
48671
|
+
req = open_api_models.OpenApiRequest(
|
|
48672
|
+
query=OpenApiUtilClient.query(query)
|
|
48673
|
+
)
|
|
48674
|
+
params = open_api_models.Params(
|
|
48675
|
+
action='OpenPublicIpAddressPoolService',
|
|
48676
|
+
version='2016-04-28',
|
|
48677
|
+
protocol='HTTPS',
|
|
48678
|
+
pathname='/',
|
|
48679
|
+
method='POST',
|
|
48680
|
+
auth_type='AK',
|
|
48681
|
+
style='RPC',
|
|
48682
|
+
req_body_type='formData',
|
|
48683
|
+
body_type='json'
|
|
48684
|
+
)
|
|
48685
|
+
return TeaCore.from_map(
|
|
48686
|
+
vpc_20160428_models.OpenPublicIpAddressPoolServiceResponse(),
|
|
48687
|
+
await self.call_api_async(params, req, runtime)
|
|
48688
|
+
)
|
|
48689
|
+
|
|
48690
|
+
def open_public_ip_address_pool_service(
|
|
48691
|
+
self,
|
|
48692
|
+
request: vpc_20160428_models.OpenPublicIpAddressPoolServiceRequest,
|
|
48693
|
+
) -> vpc_20160428_models.OpenPublicIpAddressPoolServiceResponse:
|
|
48694
|
+
"""
|
|
48695
|
+
@summary 开通IP地址池功能。
|
|
48696
|
+
|
|
48697
|
+
@param request: OpenPublicIpAddressPoolServiceRequest
|
|
48698
|
+
@return: OpenPublicIpAddressPoolServiceResponse
|
|
48699
|
+
"""
|
|
48700
|
+
runtime = util_models.RuntimeOptions()
|
|
48701
|
+
return self.open_public_ip_address_pool_service_with_options(request, runtime)
|
|
48702
|
+
|
|
48703
|
+
async def open_public_ip_address_pool_service_async(
|
|
48704
|
+
self,
|
|
48705
|
+
request: vpc_20160428_models.OpenPublicIpAddressPoolServiceRequest,
|
|
48706
|
+
) -> vpc_20160428_models.OpenPublicIpAddressPoolServiceResponse:
|
|
48707
|
+
"""
|
|
48708
|
+
@summary 开通IP地址池功能。
|
|
48709
|
+
|
|
48710
|
+
@param request: OpenPublicIpAddressPoolServiceRequest
|
|
48711
|
+
@return: OpenPublicIpAddressPoolServiceResponse
|
|
48712
|
+
"""
|
|
48713
|
+
runtime = util_models.RuntimeOptions()
|
|
48714
|
+
return await self.open_public_ip_address_pool_service_with_options_async(request, runtime)
|
|
48715
|
+
|
|
48432
48716
|
def open_traffic_mirror_service_with_options(
|
|
48433
48717
|
self,
|
|
48434
48718
|
request: vpc_20160428_models.OpenTrafficMirrorServiceRequest,
|
|
@@ -2359,6 +2359,7 @@ class AllocateIpv6AddressRequestTag(TeaModel):
|
|
|
2359
2359
|
class AllocateIpv6AddressRequest(TeaModel):
|
|
2360
2360
|
def __init__(
|
|
2361
2361
|
self,
|
|
2362
|
+
address_type: str = None,
|
|
2362
2363
|
client_token: str = None,
|
|
2363
2364
|
dry_run: bool = None,
|
|
2364
2365
|
ipv_6address: str = None,
|
|
@@ -2373,6 +2374,7 @@ class AllocateIpv6AddressRequest(TeaModel):
|
|
|
2373
2374
|
tag: List[AllocateIpv6AddressRequestTag] = None,
|
|
2374
2375
|
v_switch_id: str = None,
|
|
2375
2376
|
):
|
|
2377
|
+
self.address_type = address_type
|
|
2376
2378
|
# The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters.
|
|
2377
2379
|
#
|
|
2378
2380
|
# > If you do not specify this parameter, the system automatically uses the **request ID** as the **client token**. The **request ID** may be different for each request.
|
|
@@ -2417,6 +2419,8 @@ class AllocateIpv6AddressRequest(TeaModel):
|
|
|
2417
2419
|
return _map
|
|
2418
2420
|
|
|
2419
2421
|
result = dict()
|
|
2422
|
+
if self.address_type is not None:
|
|
2423
|
+
result['AddressType'] = self.address_type
|
|
2420
2424
|
if self.client_token is not None:
|
|
2421
2425
|
result['ClientToken'] = self.client_token
|
|
2422
2426
|
if self.dry_run is not None:
|
|
@@ -2449,6 +2453,8 @@ class AllocateIpv6AddressRequest(TeaModel):
|
|
|
2449
2453
|
|
|
2450
2454
|
def from_map(self, m: dict = None):
|
|
2451
2455
|
m = m or dict()
|
|
2456
|
+
if m.get('AddressType') is not None:
|
|
2457
|
+
self.address_type = m.get('AddressType')
|
|
2452
2458
|
if m.get('ClientToken') is not None:
|
|
2453
2459
|
self.client_token = m.get('ClientToken')
|
|
2454
2460
|
if m.get('DryRun') is not None:
|
|
@@ -25963,6 +25969,7 @@ class DeleteIpv4GatewayRequest(TeaModel):
|
|
|
25963
25969
|
self,
|
|
25964
25970
|
client_token: str = None,
|
|
25965
25971
|
dry_run: bool = None,
|
|
25972
|
+
internet_mode: str = None,
|
|
25966
25973
|
ipv_4gateway_id: str = None,
|
|
25967
25974
|
owner_account: str = None,
|
|
25968
25975
|
owner_id: int = None,
|
|
@@ -25981,6 +25988,7 @@ class DeleteIpv4GatewayRequest(TeaModel):
|
|
|
25981
25988
|
# * **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
25989
|
# * **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
25990
|
self.dry_run = dry_run
|
|
25991
|
+
self.internet_mode = internet_mode
|
|
25984
25992
|
# The ID of the IPv4 gateway that you want to delete.
|
|
25985
25993
|
#
|
|
25986
25994
|
# This parameter is required.
|
|
@@ -26009,6 +26017,8 @@ class DeleteIpv4GatewayRequest(TeaModel):
|
|
|
26009
26017
|
result['ClientToken'] = self.client_token
|
|
26010
26018
|
if self.dry_run is not None:
|
|
26011
26019
|
result['DryRun'] = self.dry_run
|
|
26020
|
+
if self.internet_mode is not None:
|
|
26021
|
+
result['InternetMode'] = self.internet_mode
|
|
26012
26022
|
if self.ipv_4gateway_id is not None:
|
|
26013
26023
|
result['Ipv4GatewayId'] = self.ipv_4gateway_id
|
|
26014
26024
|
if self.owner_account is not None:
|
|
@@ -26029,6 +26039,8 @@ class DeleteIpv4GatewayRequest(TeaModel):
|
|
|
26029
26039
|
self.client_token = m.get('ClientToken')
|
|
26030
26040
|
if m.get('DryRun') is not None:
|
|
26031
26041
|
self.dry_run = m.get('DryRun')
|
|
26042
|
+
if m.get('InternetMode') is not None:
|
|
26043
|
+
self.internet_mode = m.get('InternetMode')
|
|
26032
26044
|
if m.get('Ipv4GatewayId') is not None:
|
|
26033
26045
|
self.ipv_4gateway_id = m.get('Ipv4GatewayId')
|
|
26034
26046
|
if m.get('OwnerAccount') is not None:
|
|
@@ -30499,7 +30511,7 @@ class DeleteVpnAttachmentRequest(TeaModel):
|
|
|
30499
30511
|
# > If you do not specify this parameter, the system automatically uses the **request ID** as the **client token**. The **request ID** may be different for each request.
|
|
30500
30512
|
self.client_token = client_token
|
|
30501
30513
|
self.owner_account = owner_account
|
|
30502
|
-
# The ID of the
|
|
30514
|
+
# The region ID of the IPsec-VPN connection.
|
|
30503
30515
|
#
|
|
30504
30516
|
# You can call the [DescribeRegions](https://help.aliyun.com/document_detail/36063.html) operation to query the most recent region list.
|
|
30505
30517
|
#
|
|
@@ -42395,6 +42407,7 @@ class DescribeIpv6AddressesRequestTag(TeaModel):
|
|
|
42395
42407
|
class DescribeIpv6AddressesRequest(TeaModel):
|
|
42396
42408
|
def __init__(
|
|
42397
42409
|
self,
|
|
42410
|
+
address_type: str = None,
|
|
42398
42411
|
associated_instance_id: str = None,
|
|
42399
42412
|
associated_instance_type: str = None,
|
|
42400
42413
|
include_reservation_data: bool = None,
|
|
@@ -42416,6 +42429,7 @@ class DescribeIpv6AddressesRequest(TeaModel):
|
|
|
42416
42429
|
v_switch_id: str = None,
|
|
42417
42430
|
vpc_id: str = None,
|
|
42418
42431
|
):
|
|
42432
|
+
self.address_type = address_type
|
|
42419
42433
|
# The ID of the instance that is assigned the IPv6 address.
|
|
42420
42434
|
self.associated_instance_id = associated_instance_id
|
|
42421
42435
|
# The type of instance associated with the IPv6 address. Valid values:
|
|
@@ -42483,6 +42497,8 @@ class DescribeIpv6AddressesRequest(TeaModel):
|
|
|
42483
42497
|
return _map
|
|
42484
42498
|
|
|
42485
42499
|
result = dict()
|
|
42500
|
+
if self.address_type is not None:
|
|
42501
|
+
result['AddressType'] = self.address_type
|
|
42486
42502
|
if self.associated_instance_id is not None:
|
|
42487
42503
|
result['AssociatedInstanceId'] = self.associated_instance_id
|
|
42488
42504
|
if self.associated_instance_type is not None:
|
|
@@ -42529,6 +42545,8 @@ class DescribeIpv6AddressesRequest(TeaModel):
|
|
|
42529
42545
|
|
|
42530
42546
|
def from_map(self, m: dict = None):
|
|
42531
42547
|
m = m or dict()
|
|
42548
|
+
if m.get('AddressType') is not None:
|
|
42549
|
+
self.address_type = m.get('AddressType')
|
|
42532
42550
|
if m.get('AssociatedInstanceId') is not None:
|
|
42533
42551
|
self.associated_instance_id = m.get('AssociatedInstanceId')
|
|
42534
42552
|
if m.get('AssociatedInstanceType') is not None:
|
|
@@ -42760,6 +42778,7 @@ class DescribeIpv6AddressesResponseBodyIpv6AddressesIpv6AddressTags(TeaModel):
|
|
|
42760
42778
|
class DescribeIpv6AddressesResponseBodyIpv6AddressesIpv6Address(TeaModel):
|
|
42761
42779
|
def __init__(
|
|
42762
42780
|
self,
|
|
42781
|
+
address_type: str = None,
|
|
42763
42782
|
allocation_time: str = None,
|
|
42764
42783
|
associated_instance_id: str = None,
|
|
42765
42784
|
associated_instance_type: str = None,
|
|
@@ -42779,6 +42798,7 @@ class DescribeIpv6AddressesResponseBodyIpv6AddressesIpv6Address(TeaModel):
|
|
|
42779
42798
|
v_switch_id: str = None,
|
|
42780
42799
|
vpc_id: str = None,
|
|
42781
42800
|
):
|
|
42801
|
+
self.address_type = address_type
|
|
42782
42802
|
# The time when the IPv6 address was created.
|
|
42783
42803
|
self.allocation_time = allocation_time
|
|
42784
42804
|
# The ID of the instance associated with the IPv6 address.
|
|
@@ -42842,6 +42862,8 @@ class DescribeIpv6AddressesResponseBodyIpv6AddressesIpv6Address(TeaModel):
|
|
|
42842
42862
|
return _map
|
|
42843
42863
|
|
|
42844
42864
|
result = dict()
|
|
42865
|
+
if self.address_type is not None:
|
|
42866
|
+
result['AddressType'] = self.address_type
|
|
42845
42867
|
if self.allocation_time is not None:
|
|
42846
42868
|
result['AllocationTime'] = self.allocation_time
|
|
42847
42869
|
if self.associated_instance_id is not None:
|
|
@@ -42882,6 +42904,8 @@ class DescribeIpv6AddressesResponseBodyIpv6AddressesIpv6Address(TeaModel):
|
|
|
42882
42904
|
|
|
42883
42905
|
def from_map(self, m: dict = None):
|
|
42884
42906
|
m = m or dict()
|
|
42907
|
+
if m.get('AddressType') is not None:
|
|
42908
|
+
self.address_type = m.get('AddressType')
|
|
42885
42909
|
if m.get('AllocationTime') is not None:
|
|
42886
42910
|
self.allocation_time = m.get('AllocationTime')
|
|
42887
42911
|
if m.get('AssociatedInstanceId') is not None:
|
|
@@ -54841,6 +54865,12 @@ class DescribeVSwitchesRequest(TeaModel):
|
|
|
54841
54865
|
# * **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.
|
|
54842
54866
|
# * **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.
|
|
54843
54867
|
self.dry_run = dry_run
|
|
54868
|
+
# Specifies whether to query vSwitches with IPv6 enabled in the region. Valid values:
|
|
54869
|
+
#
|
|
54870
|
+
# * **true**\
|
|
54871
|
+
# * **false**\
|
|
54872
|
+
#
|
|
54873
|
+
# If you do not set this parameter, the system queries all vSwitches in the specified region by default.
|
|
54844
54874
|
self.enable_ipv_6 = enable_ipv_6
|
|
54845
54875
|
# Specifies whether to query the default vSwitches in the specified region. Valid values:
|
|
54846
54876
|
#
|
|
@@ -54851,9 +54881,9 @@ class DescribeVSwitchesRequest(TeaModel):
|
|
|
54851
54881
|
self.is_default = is_default
|
|
54852
54882
|
self.owner_account = owner_account
|
|
54853
54883
|
self.owner_id = owner_id
|
|
54854
|
-
# The
|
|
54884
|
+
# The page number. Default value: **1**.
|
|
54855
54885
|
self.page_number = page_number
|
|
54856
|
-
# The number of entries
|
|
54886
|
+
# The number of entries per page. Maximum value: **50**. Default value: **10**.
|
|
54857
54887
|
self.page_size = page_size
|
|
54858
54888
|
# The region ID of the vSwitch. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/36063.html) operation to query the most recent region list.
|
|
54859
54889
|
#
|
|
@@ -62537,9 +62567,9 @@ class DescribeVpnGatewayResponseBodyTagsTag(TeaModel):
|
|
|
62537
62567
|
key: str = None,
|
|
62538
62568
|
value: str = None,
|
|
62539
62569
|
):
|
|
62540
|
-
# The
|
|
62570
|
+
# The tag key.
|
|
62541
62571
|
self.key = key
|
|
62542
|
-
# The
|
|
62572
|
+
# The tag value.
|
|
62543
62573
|
self.value = value
|
|
62544
62574
|
|
|
62545
62575
|
def validate(self):
|
|
@@ -62670,6 +62700,7 @@ class DescribeVpnGatewayResponseBody(TeaModel):
|
|
|
62670
62700
|
#
|
|
62671
62701
|
# This value is a UNIX timestamp representing the number of milliseconds that have elapsed since the epoch time January 1, 1970, 00:00:00 UTC.
|
|
62672
62702
|
self.end_time = end_time
|
|
62703
|
+
# The ENIs created by the system for the VPN gateway.
|
|
62673
62704
|
self.eni_instance_ids = eni_instance_ids
|
|
62674
62705
|
# * If the VPN gateway supports IPsec-VPN connections in single-tunnel mode, the address is the IP address of the VPN gateway and can be used to create an IPsec-VPN connection or an SSL-VPN connection.
|
|
62675
62706
|
#
|
|
@@ -63359,9 +63390,9 @@ class DescribeVpnGatewaysResponseBodyVpnGatewaysVpnGatewayReservationData(TeaMod
|
|
|
63359
63390
|
self.reservation_ipsec = reservation_ipsec
|
|
63360
63391
|
# The maximum number of concurrent SSL-VPN connections of the pending order.
|
|
63361
63392
|
self.reservation_max_connections = reservation_max_connections
|
|
63362
|
-
# The type of the
|
|
63393
|
+
# The type of the order that has not taken effect. Valid values:
|
|
63363
63394
|
#
|
|
63364
|
-
# * **RENEWCHANGE**: renewal with
|
|
63395
|
+
# * **RENEWCHANGE**: renewal with upgrade or downgrade
|
|
63365
63396
|
# * **TEMP_UPGRADE**: temporary upgrade
|
|
63366
63397
|
# * **RENEW**: renewal
|
|
63367
63398
|
self.reservation_order_type = reservation_order_type
|
|
@@ -63374,8 +63405,8 @@ class DescribeVpnGatewaysResponseBodyVpnGatewaysVpnGatewayReservationData(TeaMod
|
|
|
63374
63405
|
self.reservation_ssl = reservation_ssl
|
|
63375
63406
|
# The status of the pending order.
|
|
63376
63407
|
#
|
|
63377
|
-
# * **1**: indicates that the order
|
|
63378
|
-
# * **2**: indicates that the order
|
|
63408
|
+
# * **1**: indicates that the order for renewal or the order for renewal with a specification change has not taken effect.
|
|
63409
|
+
# * **2**: indicates that the order of the temporary upgrade has taken effect. After the temporary upgrade expires, the system restores the VPN gateway to its previous specifications. In this case, the values of **ReservationIpsec**, **ReservationMaxConnections**, **ReservationSpec**, and **ReservationSsl** indicate the previous specifications of the VPN gateway.
|
|
63379
63410
|
self.status = status
|
|
63380
63411
|
|
|
63381
63412
|
def validate(self):
|
|
@@ -63523,15 +63554,15 @@ class DescribeVpnGatewaysResponseBodyVpnGatewaysVpnGateway(TeaModel):
|
|
|
63523
63554
|
vpn_gateway_id: str = None,
|
|
63524
63555
|
vpn_type: str = None,
|
|
63525
63556
|
):
|
|
63526
|
-
# Indicates whether
|
|
63557
|
+
# Indicates whether BGP routes are automatically advertised to the VPC.
|
|
63527
63558
|
#
|
|
63528
63559
|
# * **true**\
|
|
63529
63560
|
# * **false**\
|
|
63530
63561
|
self.auto_propagate = auto_propagate
|
|
63531
|
-
# The payment status of the VPN gateway.
|
|
63562
|
+
# The payment status of the VPN gateway.
|
|
63532
63563
|
#
|
|
63533
|
-
# * **Normal
|
|
63534
|
-
# * **FinancialLocked
|
|
63564
|
+
# * **Normal**\
|
|
63565
|
+
# * **FinancialLocked**\
|
|
63535
63566
|
self.business_status = business_status
|
|
63536
63567
|
# The billing method of the VPN gateway.
|
|
63537
63568
|
#
|
|
@@ -63553,13 +63584,14 @@ class DescribeVpnGatewaysResponseBodyVpnGatewaysVpnGateway(TeaModel):
|
|
|
63553
63584
|
self.disaster_recovery_vswitch_id = disaster_recovery_vswitch_id
|
|
63554
63585
|
# The BGP status of the VPN gateway. Valid values:
|
|
63555
63586
|
#
|
|
63556
|
-
# * **true
|
|
63557
|
-
# * **false
|
|
63587
|
+
# * **true**\
|
|
63588
|
+
# * **false**\
|
|
63558
63589
|
self.enable_bgp = enable_bgp
|
|
63559
63590
|
# The timestamp generated when the VPN gateway expires. Unit: milliseconds.
|
|
63560
63591
|
#
|
|
63561
63592
|
# This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.
|
|
63562
63593
|
self.end_time = end_time
|
|
63594
|
+
# The ENIs created by the system for the VPN gateway.
|
|
63563
63595
|
self.eni_instance_ids = eni_instance_ids
|
|
63564
63596
|
# * If the VPN gateway supports IPsec-VPN connections in single-tunnel mode, the value of this parameter is the IP address of the VPN gateway, which can be used to create IPsec-VPN or SSL-VPN connections.
|
|
63565
63597
|
#
|
|
@@ -63579,9 +63611,9 @@ class DescribeVpnGatewaysResponseBodyVpnGatewaysVpnGateway(TeaModel):
|
|
|
63579
63611
|
# * **public**\
|
|
63580
63612
|
# * **private**\
|
|
63581
63613
|
self.network_type = network_type
|
|
63582
|
-
# The pending orders.
|
|
63614
|
+
# The information about pending orders.
|
|
63583
63615
|
#
|
|
63584
|
-
# >
|
|
63616
|
+
# > This parameter is returned only if **IncludeReservationData** is set to **true**.
|
|
63585
63617
|
self.reservation_data = reservation_data
|
|
63586
63618
|
# The ID of the resource group to which the VPN gateway belongs.
|
|
63587
63619
|
#
|
|
@@ -63628,11 +63660,11 @@ class DescribeVpnGatewaysResponseBodyVpnGatewaysVpnGateway(TeaModel):
|
|
|
63628
63660
|
# * **VpnNewImage**: indicates whether the VPN gateway is upgraded. Valid values:
|
|
63629
63661
|
#
|
|
63630
63662
|
# * **true**\
|
|
63631
|
-
# * **false
|
|
63663
|
+
# * **false**: does not query only SQL statements that need to be optimized.
|
|
63632
63664
|
#
|
|
63633
63665
|
# * **description**: the description of the VPN gateway. This parameter is only for internal use.
|
|
63634
63666
|
#
|
|
63635
|
-
# * **VpnVersion**: the version
|
|
63667
|
+
# * **VpnVersion**: the version of the VPN gateway.
|
|
63636
63668
|
self.tag = tag
|
|
63637
63669
|
# The tags that are added to the VPN gateway.
|
|
63638
63670
|
self.tags = tags
|
|
@@ -63642,7 +63674,7 @@ class DescribeVpnGatewaysResponseBodyVpnGatewaysVpnGateway(TeaModel):
|
|
|
63642
63674
|
self.vpc_id = vpc_id
|
|
63643
63675
|
# The ID of the VPN gateway.
|
|
63644
63676
|
self.vpn_gateway_id = vpn_gateway_id
|
|
63645
|
-
# The type of
|
|
63677
|
+
# The type of VPN gateway.
|
|
63646
63678
|
#
|
|
63647
63679
|
# Only **Normal** may be returned, which indicates a standard VPN gateway.
|
|
63648
63680
|
self.vpn_type = vpn_type
|
|
@@ -69133,6 +69165,138 @@ class GetPhysicalConnectionServiceStatusResponse(TeaModel):
|
|
|
69133
69165
|
return self
|
|
69134
69166
|
|
|
69135
69167
|
|
|
69168
|
+
class GetPublicIpAddressPoolServiceStatusRequest(TeaModel):
|
|
69169
|
+
def __init__(
|
|
69170
|
+
self,
|
|
69171
|
+
client_token: str = None,
|
|
69172
|
+
owner_account: str = None,
|
|
69173
|
+
owner_id: int = None,
|
|
69174
|
+
region_id: str = None,
|
|
69175
|
+
resource_owner_account: str = None,
|
|
69176
|
+
resource_owner_id: int = None,
|
|
69177
|
+
):
|
|
69178
|
+
self.client_token = client_token
|
|
69179
|
+
self.owner_account = owner_account
|
|
69180
|
+
self.owner_id = owner_id
|
|
69181
|
+
# This parameter is required.
|
|
69182
|
+
self.region_id = region_id
|
|
69183
|
+
self.resource_owner_account = resource_owner_account
|
|
69184
|
+
self.resource_owner_id = resource_owner_id
|
|
69185
|
+
|
|
69186
|
+
def validate(self):
|
|
69187
|
+
pass
|
|
69188
|
+
|
|
69189
|
+
def to_map(self):
|
|
69190
|
+
_map = super().to_map()
|
|
69191
|
+
if _map is not None:
|
|
69192
|
+
return _map
|
|
69193
|
+
|
|
69194
|
+
result = dict()
|
|
69195
|
+
if self.client_token is not None:
|
|
69196
|
+
result['ClientToken'] = self.client_token
|
|
69197
|
+
if self.owner_account is not None:
|
|
69198
|
+
result['OwnerAccount'] = self.owner_account
|
|
69199
|
+
if self.owner_id is not None:
|
|
69200
|
+
result['OwnerId'] = self.owner_id
|
|
69201
|
+
if self.region_id is not None:
|
|
69202
|
+
result['RegionId'] = self.region_id
|
|
69203
|
+
if self.resource_owner_account is not None:
|
|
69204
|
+
result['ResourceOwnerAccount'] = self.resource_owner_account
|
|
69205
|
+
if self.resource_owner_id is not None:
|
|
69206
|
+
result['ResourceOwnerId'] = self.resource_owner_id
|
|
69207
|
+
return result
|
|
69208
|
+
|
|
69209
|
+
def from_map(self, m: dict = None):
|
|
69210
|
+
m = m or dict()
|
|
69211
|
+
if m.get('ClientToken') is not None:
|
|
69212
|
+
self.client_token = m.get('ClientToken')
|
|
69213
|
+
if m.get('OwnerAccount') is not None:
|
|
69214
|
+
self.owner_account = m.get('OwnerAccount')
|
|
69215
|
+
if m.get('OwnerId') is not None:
|
|
69216
|
+
self.owner_id = m.get('OwnerId')
|
|
69217
|
+
if m.get('RegionId') is not None:
|
|
69218
|
+
self.region_id = m.get('RegionId')
|
|
69219
|
+
if m.get('ResourceOwnerAccount') is not None:
|
|
69220
|
+
self.resource_owner_account = m.get('ResourceOwnerAccount')
|
|
69221
|
+
if m.get('ResourceOwnerId') is not None:
|
|
69222
|
+
self.resource_owner_id = m.get('ResourceOwnerId')
|
|
69223
|
+
return self
|
|
69224
|
+
|
|
69225
|
+
|
|
69226
|
+
class GetPublicIpAddressPoolServiceStatusResponseBody(TeaModel):
|
|
69227
|
+
def __init__(
|
|
69228
|
+
self,
|
|
69229
|
+
enabled: bool = None,
|
|
69230
|
+
request_id: str = None,
|
|
69231
|
+
):
|
|
69232
|
+
self.enabled = enabled
|
|
69233
|
+
self.request_id = request_id
|
|
69234
|
+
|
|
69235
|
+
def validate(self):
|
|
69236
|
+
pass
|
|
69237
|
+
|
|
69238
|
+
def to_map(self):
|
|
69239
|
+
_map = super().to_map()
|
|
69240
|
+
if _map is not None:
|
|
69241
|
+
return _map
|
|
69242
|
+
|
|
69243
|
+
result = dict()
|
|
69244
|
+
if self.enabled is not None:
|
|
69245
|
+
result['Enabled'] = self.enabled
|
|
69246
|
+
if self.request_id is not None:
|
|
69247
|
+
result['RequestId'] = self.request_id
|
|
69248
|
+
return result
|
|
69249
|
+
|
|
69250
|
+
def from_map(self, m: dict = None):
|
|
69251
|
+
m = m or dict()
|
|
69252
|
+
if m.get('Enabled') is not None:
|
|
69253
|
+
self.enabled = m.get('Enabled')
|
|
69254
|
+
if m.get('RequestId') is not None:
|
|
69255
|
+
self.request_id = m.get('RequestId')
|
|
69256
|
+
return self
|
|
69257
|
+
|
|
69258
|
+
|
|
69259
|
+
class GetPublicIpAddressPoolServiceStatusResponse(TeaModel):
|
|
69260
|
+
def __init__(
|
|
69261
|
+
self,
|
|
69262
|
+
headers: Dict[str, str] = None,
|
|
69263
|
+
status_code: int = None,
|
|
69264
|
+
body: GetPublicIpAddressPoolServiceStatusResponseBody = None,
|
|
69265
|
+
):
|
|
69266
|
+
self.headers = headers
|
|
69267
|
+
self.status_code = status_code
|
|
69268
|
+
self.body = body
|
|
69269
|
+
|
|
69270
|
+
def validate(self):
|
|
69271
|
+
if self.body:
|
|
69272
|
+
self.body.validate()
|
|
69273
|
+
|
|
69274
|
+
def to_map(self):
|
|
69275
|
+
_map = super().to_map()
|
|
69276
|
+
if _map is not None:
|
|
69277
|
+
return _map
|
|
69278
|
+
|
|
69279
|
+
result = dict()
|
|
69280
|
+
if self.headers is not None:
|
|
69281
|
+
result['headers'] = self.headers
|
|
69282
|
+
if self.status_code is not None:
|
|
69283
|
+
result['statusCode'] = self.status_code
|
|
69284
|
+
if self.body is not None:
|
|
69285
|
+
result['body'] = self.body.to_map()
|
|
69286
|
+
return result
|
|
69287
|
+
|
|
69288
|
+
def from_map(self, m: dict = None):
|
|
69289
|
+
m = m or dict()
|
|
69290
|
+
if m.get('headers') is not None:
|
|
69291
|
+
self.headers = m.get('headers')
|
|
69292
|
+
if m.get('statusCode') is not None:
|
|
69293
|
+
self.status_code = m.get('statusCode')
|
|
69294
|
+
if m.get('body') is not None:
|
|
69295
|
+
temp_model = GetPublicIpAddressPoolServiceStatusResponseBody()
|
|
69296
|
+
self.body = temp_model.from_map(m['body'])
|
|
69297
|
+
return self
|
|
69298
|
+
|
|
69299
|
+
|
|
69136
69300
|
class GetTrafficMirrorServiceStatusRequest(TeaModel):
|
|
69137
69301
|
def __init__(
|
|
69138
69302
|
self,
|
|
@@ -79727,7 +79891,7 @@ class ModifyBgpGroupAttributeRequest(TeaModel):
|
|
|
79727
79891
|
# Specifies whether to clear the secret key. Valid values:
|
|
79728
79892
|
#
|
|
79729
79893
|
# * **true**\
|
|
79730
|
-
# * **false
|
|
79894
|
+
# * **false** (default)
|
|
79731
79895
|
self.clear_auth_key = clear_auth_key
|
|
79732
79896
|
# The client token that is used to ensure the idempotence of the request.
|
|
79733
79897
|
#
|
|
@@ -79739,12 +79903,12 @@ class ModifyBgpGroupAttributeRequest(TeaModel):
|
|
|
79739
79903
|
#
|
|
79740
79904
|
# The description must be 2 to 256 characters in length. It must start with a letter and cannot start with `http://` or `https://`.
|
|
79741
79905
|
self.description = description
|
|
79742
|
-
# Specifies whether to use a fake
|
|
79906
|
+
# Specifies whether to use a fake AS number. Valid values:
|
|
79743
79907
|
#
|
|
79744
79908
|
# * **false** (default)
|
|
79745
79909
|
# * **true**\
|
|
79746
79910
|
#
|
|
79747
|
-
# >
|
|
79911
|
+
# > A router that runs BGP typically belongs to only one AS. If you need to replace an AS with a new one, but you cannot immediately modify BGP configurations due to business requirements, you can specify a fake AS number to establish a connection with the local end. This ensures service continuity in scenarios such as AS migration or AS merging.
|
|
79748
79912
|
self.is_fake_asn = is_fake_asn
|
|
79749
79913
|
# The custom autonomous system number (ASN) of the BGP on the Alibaba Cloud side. Valid values:
|
|
79750
79914
|
#
|
|
@@ -85632,6 +85796,7 @@ class ModifyRouteTableAttributesRequest(TeaModel):
|
|
|
85632
85796
|
region_id: str = None,
|
|
85633
85797
|
resource_owner_account: str = None,
|
|
85634
85798
|
resource_owner_id: int = None,
|
|
85799
|
+
route_propagation_enable: bool = None,
|
|
85635
85800
|
route_table_id: str = None,
|
|
85636
85801
|
route_table_name: str = None,
|
|
85637
85802
|
):
|
|
@@ -85649,6 +85814,7 @@ class ModifyRouteTableAttributesRequest(TeaModel):
|
|
|
85649
85814
|
self.region_id = region_id
|
|
85650
85815
|
self.resource_owner_account = resource_owner_account
|
|
85651
85816
|
self.resource_owner_id = resource_owner_id
|
|
85817
|
+
self.route_propagation_enable = route_propagation_enable
|
|
85652
85818
|
# The ID of the route table.
|
|
85653
85819
|
#
|
|
85654
85820
|
# This parameter is required.
|
|
@@ -85679,6 +85845,8 @@ class ModifyRouteTableAttributesRequest(TeaModel):
|
|
|
85679
85845
|
result['ResourceOwnerAccount'] = self.resource_owner_account
|
|
85680
85846
|
if self.resource_owner_id is not None:
|
|
85681
85847
|
result['ResourceOwnerId'] = self.resource_owner_id
|
|
85848
|
+
if self.route_propagation_enable is not None:
|
|
85849
|
+
result['RoutePropagationEnable'] = self.route_propagation_enable
|
|
85682
85850
|
if self.route_table_id is not None:
|
|
85683
85851
|
result['RouteTableId'] = self.route_table_id
|
|
85684
85852
|
if self.route_table_name is not None:
|
|
@@ -85699,6 +85867,8 @@ class ModifyRouteTableAttributesRequest(TeaModel):
|
|
|
85699
85867
|
self.resource_owner_account = m.get('ResourceOwnerAccount')
|
|
85700
85868
|
if m.get('ResourceOwnerId') is not None:
|
|
85701
85869
|
self.resource_owner_id = m.get('ResourceOwnerId')
|
|
85870
|
+
if m.get('RoutePropagationEnable') is not None:
|
|
85871
|
+
self.route_propagation_enable = m.get('RoutePropagationEnable')
|
|
85702
85872
|
if m.get('RouteTableId') is not None:
|
|
85703
85873
|
self.route_table_id = m.get('RouteTableId')
|
|
85704
85874
|
if m.get('RouteTableName') is not None:
|
|
@@ -93137,6 +93307,144 @@ class OpenPhysicalConnectionServiceResponse(TeaModel):
|
|
|
93137
93307
|
return self
|
|
93138
93308
|
|
|
93139
93309
|
|
|
93310
|
+
class OpenPublicIpAddressPoolServiceRequest(TeaModel):
|
|
93311
|
+
def __init__(
|
|
93312
|
+
self,
|
|
93313
|
+
client_token: str = None,
|
|
93314
|
+
owner_account: str = None,
|
|
93315
|
+
owner_id: int = None,
|
|
93316
|
+
region_id: str = None,
|
|
93317
|
+
resource_owner_account: str = None,
|
|
93318
|
+
resource_owner_id: int = None,
|
|
93319
|
+
):
|
|
93320
|
+
self.client_token = client_token
|
|
93321
|
+
self.owner_account = owner_account
|
|
93322
|
+
self.owner_id = owner_id
|
|
93323
|
+
# This parameter is required.
|
|
93324
|
+
self.region_id = region_id
|
|
93325
|
+
self.resource_owner_account = resource_owner_account
|
|
93326
|
+
self.resource_owner_id = resource_owner_id
|
|
93327
|
+
|
|
93328
|
+
def validate(self):
|
|
93329
|
+
pass
|
|
93330
|
+
|
|
93331
|
+
def to_map(self):
|
|
93332
|
+
_map = super().to_map()
|
|
93333
|
+
if _map is not None:
|
|
93334
|
+
return _map
|
|
93335
|
+
|
|
93336
|
+
result = dict()
|
|
93337
|
+
if self.client_token is not None:
|
|
93338
|
+
result['ClientToken'] = self.client_token
|
|
93339
|
+
if self.owner_account is not None:
|
|
93340
|
+
result['OwnerAccount'] = self.owner_account
|
|
93341
|
+
if self.owner_id is not None:
|
|
93342
|
+
result['OwnerId'] = self.owner_id
|
|
93343
|
+
if self.region_id is not None:
|
|
93344
|
+
result['RegionId'] = self.region_id
|
|
93345
|
+
if self.resource_owner_account is not None:
|
|
93346
|
+
result['ResourceOwnerAccount'] = self.resource_owner_account
|
|
93347
|
+
if self.resource_owner_id is not None:
|
|
93348
|
+
result['ResourceOwnerId'] = self.resource_owner_id
|
|
93349
|
+
return result
|
|
93350
|
+
|
|
93351
|
+
def from_map(self, m: dict = None):
|
|
93352
|
+
m = m or dict()
|
|
93353
|
+
if m.get('ClientToken') is not None:
|
|
93354
|
+
self.client_token = m.get('ClientToken')
|
|
93355
|
+
if m.get('OwnerAccount') is not None:
|
|
93356
|
+
self.owner_account = m.get('OwnerAccount')
|
|
93357
|
+
if m.get('OwnerId') is not None:
|
|
93358
|
+
self.owner_id = m.get('OwnerId')
|
|
93359
|
+
if m.get('RegionId') is not None:
|
|
93360
|
+
self.region_id = m.get('RegionId')
|
|
93361
|
+
if m.get('ResourceOwnerAccount') is not None:
|
|
93362
|
+
self.resource_owner_account = m.get('ResourceOwnerAccount')
|
|
93363
|
+
if m.get('ResourceOwnerId') is not None:
|
|
93364
|
+
self.resource_owner_id = m.get('ResourceOwnerId')
|
|
93365
|
+
return self
|
|
93366
|
+
|
|
93367
|
+
|
|
93368
|
+
class OpenPublicIpAddressPoolServiceResponseBody(TeaModel):
|
|
93369
|
+
def __init__(
|
|
93370
|
+
self,
|
|
93371
|
+
code: str = None,
|
|
93372
|
+
message: str = None,
|
|
93373
|
+
request_id: str = None,
|
|
93374
|
+
):
|
|
93375
|
+
self.code = code
|
|
93376
|
+
self.message = message
|
|
93377
|
+
self.request_id = request_id
|
|
93378
|
+
|
|
93379
|
+
def validate(self):
|
|
93380
|
+
pass
|
|
93381
|
+
|
|
93382
|
+
def to_map(self):
|
|
93383
|
+
_map = super().to_map()
|
|
93384
|
+
if _map is not None:
|
|
93385
|
+
return _map
|
|
93386
|
+
|
|
93387
|
+
result = dict()
|
|
93388
|
+
if self.code is not None:
|
|
93389
|
+
result['Code'] = self.code
|
|
93390
|
+
if self.message is not None:
|
|
93391
|
+
result['Message'] = self.message
|
|
93392
|
+
if self.request_id is not None:
|
|
93393
|
+
result['RequestId'] = self.request_id
|
|
93394
|
+
return result
|
|
93395
|
+
|
|
93396
|
+
def from_map(self, m: dict = None):
|
|
93397
|
+
m = m or dict()
|
|
93398
|
+
if m.get('Code') is not None:
|
|
93399
|
+
self.code = m.get('Code')
|
|
93400
|
+
if m.get('Message') is not None:
|
|
93401
|
+
self.message = m.get('Message')
|
|
93402
|
+
if m.get('RequestId') is not None:
|
|
93403
|
+
self.request_id = m.get('RequestId')
|
|
93404
|
+
return self
|
|
93405
|
+
|
|
93406
|
+
|
|
93407
|
+
class OpenPublicIpAddressPoolServiceResponse(TeaModel):
|
|
93408
|
+
def __init__(
|
|
93409
|
+
self,
|
|
93410
|
+
headers: Dict[str, str] = None,
|
|
93411
|
+
status_code: int = None,
|
|
93412
|
+
body: OpenPublicIpAddressPoolServiceResponseBody = None,
|
|
93413
|
+
):
|
|
93414
|
+
self.headers = headers
|
|
93415
|
+
self.status_code = status_code
|
|
93416
|
+
self.body = body
|
|
93417
|
+
|
|
93418
|
+
def validate(self):
|
|
93419
|
+
if self.body:
|
|
93420
|
+
self.body.validate()
|
|
93421
|
+
|
|
93422
|
+
def to_map(self):
|
|
93423
|
+
_map = super().to_map()
|
|
93424
|
+
if _map is not None:
|
|
93425
|
+
return _map
|
|
93426
|
+
|
|
93427
|
+
result = dict()
|
|
93428
|
+
if self.headers is not None:
|
|
93429
|
+
result['headers'] = self.headers
|
|
93430
|
+
if self.status_code is not None:
|
|
93431
|
+
result['statusCode'] = self.status_code
|
|
93432
|
+
if self.body is not None:
|
|
93433
|
+
result['body'] = self.body.to_map()
|
|
93434
|
+
return result
|
|
93435
|
+
|
|
93436
|
+
def from_map(self, m: dict = None):
|
|
93437
|
+
m = m or dict()
|
|
93438
|
+
if m.get('headers') is not None:
|
|
93439
|
+
self.headers = m.get('headers')
|
|
93440
|
+
if m.get('statusCode') is not None:
|
|
93441
|
+
self.status_code = m.get('statusCode')
|
|
93442
|
+
if m.get('body') is not None:
|
|
93443
|
+
temp_model = OpenPublicIpAddressPoolServiceResponseBody()
|
|
93444
|
+
self.body = temp_model.from_map(m['body'])
|
|
93445
|
+
return self
|
|
93446
|
+
|
|
93447
|
+
|
|
93140
93448
|
class OpenTrafficMirrorServiceRequest(TeaModel):
|
|
93141
93449
|
def __init__(
|
|
93142
93450
|
self,
|
{alibabacloud_vpc20160428-6.6.7.dist-info → alibabacloud_vpc20160428-6.7.0.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: alibabacloud-vpc20160428
|
|
3
|
-
Version: 6.
|
|
3
|
+
Version: 6.7.0
|
|
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
|
|
@@ -21,7 +21,7 @@ Classifier: Topic :: Software Development
|
|
|
21
21
|
Requires-Python: >=3.6
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
23
|
Requires-Dist: alibabacloud-tea-util <1.0.0,>=0.3.12
|
|
24
|
-
Requires-Dist: alibabacloud-tea-openapi <1.0.0,>=0.3.
|
|
24
|
+
Requires-Dist: alibabacloud-tea-openapi <1.0.0,>=0.3.10
|
|
25
25
|
Requires-Dist: alibabacloud-openapi-util <1.0.0,>=0.2.1
|
|
26
26
|
Requires-Dist: alibabacloud-endpoint-util <1.0.0,>=0.0.3
|
|
27
27
|
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
alibabacloud_vpc20160428/__init__.py,sha256=xM2hV6LmQ47yDT_biggvt8zrXzW-SXtygqm6emy2o9g,21
|
|
2
|
+
alibabacloud_vpc20160428/client.py,sha256=U2WIxgOQtWIeZW4pV1oIw1CQlz6td9Ja-SzPY5-PmMo,2786841
|
|
3
|
+
alibabacloud_vpc20160428/models.py,sha256=48KtgV3uHAH_-PetE8piqmGqFt77BR0z8NNYvMFfihQ,3950087
|
|
4
|
+
alibabacloud_vpc20160428-6.7.0.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
+
alibabacloud_vpc20160428-6.7.0.dist-info/METADATA,sha256=_Do9onGUnfVIwXzxWGhE_6FqRaTOAcPtznME4Fg1ohU,2302
|
|
6
|
+
alibabacloud_vpc20160428-6.7.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
7
|
+
alibabacloud_vpc20160428-6.7.0.dist-info/top_level.txt,sha256=aF3N1qaLDlyXEHXQ7AIBXYBUVWa-5wNpQNKhEiij7uA,25
|
|
8
|
+
alibabacloud_vpc20160428-6.7.0.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,,
|
{alibabacloud_vpc20160428-6.6.7.dist-info → alibabacloud_vpc20160428-6.7.0.dist-info}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|
{alibabacloud_vpc20160428-6.6.7.dist-info → alibabacloud_vpc20160428-6.7.0.dist-info}/top_level.txt
RENAMED
|
File without changes
|