alibabacloud-vpc20160428 6.10.3__tar.gz → 6.11.0__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.
- {alibabacloud_vpc20160428-6.10.3 → alibabacloud_vpc20160428-6.11.0}/PKG-INFO +1 -1
- alibabacloud_vpc20160428-6.11.0/alibabacloud_vpc20160428/__init__.py +1 -0
- {alibabacloud_vpc20160428-6.10.3 → alibabacloud_vpc20160428-6.11.0}/alibabacloud_vpc20160428/client.py +200 -24
- {alibabacloud_vpc20160428-6.10.3 → alibabacloud_vpc20160428-6.11.0}/alibabacloud_vpc20160428/models.py +300 -64
- {alibabacloud_vpc20160428-6.10.3 → alibabacloud_vpc20160428-6.11.0}/alibabacloud_vpc20160428.egg-info/PKG-INFO +1 -1
- {alibabacloud_vpc20160428-6.10.3 → alibabacloud_vpc20160428-6.11.0}/setup.py +1 -1
- alibabacloud_vpc20160428-6.10.3/alibabacloud_vpc20160428/__init__.py +0 -1
- {alibabacloud_vpc20160428-6.10.3 → alibabacloud_vpc20160428-6.11.0}/ChangeLog.md +0 -0
- {alibabacloud_vpc20160428-6.10.3 → alibabacloud_vpc20160428-6.11.0}/LICENSE +0 -0
- {alibabacloud_vpc20160428-6.10.3 → alibabacloud_vpc20160428-6.11.0}/MANIFEST.in +0 -0
- {alibabacloud_vpc20160428-6.10.3 → alibabacloud_vpc20160428-6.11.0}/README-CN.md +0 -0
- {alibabacloud_vpc20160428-6.10.3 → alibabacloud_vpc20160428-6.11.0}/README.md +0 -0
- {alibabacloud_vpc20160428-6.10.3 → alibabacloud_vpc20160428-6.11.0}/alibabacloud_vpc20160428.egg-info/SOURCES.txt +0 -0
- {alibabacloud_vpc20160428-6.10.3 → alibabacloud_vpc20160428-6.11.0}/alibabacloud_vpc20160428.egg-info/dependency_links.txt +0 -0
- {alibabacloud_vpc20160428-6.10.3 → alibabacloud_vpc20160428-6.11.0}/alibabacloud_vpc20160428.egg-info/requires.txt +0 -0
- {alibabacloud_vpc20160428-6.10.3 → alibabacloud_vpc20160428-6.11.0}/alibabacloud_vpc20160428.egg-info/top_level.txt +0 -0
- {alibabacloud_vpc20160428-6.10.3 → alibabacloud_vpc20160428-6.11.0}/setup.cfg +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '6.11.0'
|
|
@@ -8215,6 +8215,8 @@ class Client(OpenApiClient):
|
|
|
8215
8215
|
query['ResourceType'] = request.resource_type
|
|
8216
8216
|
if not UtilClient.is_unset(request.tag):
|
|
8217
8217
|
query['Tag'] = request.tag
|
|
8218
|
+
if not UtilClient.is_unset(request.traffic_analyzer_id):
|
|
8219
|
+
query['TrafficAnalyzerId'] = request.traffic_analyzer_id
|
|
8218
8220
|
if not UtilClient.is_unset(request.traffic_path):
|
|
8219
8221
|
query['TrafficPath'] = request.traffic_path
|
|
8220
8222
|
if not UtilClient.is_unset(request.traffic_type):
|
|
@@ -8292,6 +8294,8 @@ class Client(OpenApiClient):
|
|
|
8292
8294
|
query['ResourceType'] = request.resource_type
|
|
8293
8295
|
if not UtilClient.is_unset(request.tag):
|
|
8294
8296
|
query['Tag'] = request.tag
|
|
8297
|
+
if not UtilClient.is_unset(request.traffic_analyzer_id):
|
|
8298
|
+
query['TrafficAnalyzerId'] = request.traffic_analyzer_id
|
|
8295
8299
|
if not UtilClient.is_unset(request.traffic_path):
|
|
8296
8300
|
query['TrafficPath'] = request.traffic_path
|
|
8297
8301
|
if not UtilClient.is_unset(request.traffic_type):
|
|
@@ -12961,7 +12965,9 @@ class Client(OpenApiClient):
|
|
|
12961
12965
|
runtime: util_models.RuntimeOptions,
|
|
12962
12966
|
) -> vpc_20160428_models.CreateSslVpnClientCertResponse:
|
|
12963
12967
|
"""
|
|
12964
|
-
@summary
|
|
12968
|
+
@summary Creates an SSL client certificate.
|
|
12969
|
+
|
|
12970
|
+
@description Before you create an SSL client certificate, make sure that an SSL server is created on the VPN gateway. For more information, see [CreateSslVpnServer](https://help.aliyun.com/document_detail/2794075.html).
|
|
12965
12971
|
|
|
12966
12972
|
@param request: CreateSslVpnClientCertRequest
|
|
12967
12973
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -13016,7 +13022,9 @@ class Client(OpenApiClient):
|
|
|
13016
13022
|
runtime: util_models.RuntimeOptions,
|
|
13017
13023
|
) -> vpc_20160428_models.CreateSslVpnClientCertResponse:
|
|
13018
13024
|
"""
|
|
13019
|
-
@summary
|
|
13025
|
+
@summary Creates an SSL client certificate.
|
|
13026
|
+
|
|
13027
|
+
@description Before you create an SSL client certificate, make sure that an SSL server is created on the VPN gateway. For more information, see [CreateSslVpnServer](https://help.aliyun.com/document_detail/2794075.html).
|
|
13020
13028
|
|
|
13021
13029
|
@param request: CreateSslVpnClientCertRequest
|
|
13022
13030
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -13070,7 +13078,9 @@ class Client(OpenApiClient):
|
|
|
13070
13078
|
request: vpc_20160428_models.CreateSslVpnClientCertRequest,
|
|
13071
13079
|
) -> vpc_20160428_models.CreateSslVpnClientCertResponse:
|
|
13072
13080
|
"""
|
|
13073
|
-
@summary
|
|
13081
|
+
@summary Creates an SSL client certificate.
|
|
13082
|
+
|
|
13083
|
+
@description Before you create an SSL client certificate, make sure that an SSL server is created on the VPN gateway. For more information, see [CreateSslVpnServer](https://help.aliyun.com/document_detail/2794075.html).
|
|
13074
13084
|
|
|
13075
13085
|
@param request: CreateSslVpnClientCertRequest
|
|
13076
13086
|
@return: CreateSslVpnClientCertResponse
|
|
@@ -13083,7 +13093,9 @@ class Client(OpenApiClient):
|
|
|
13083
13093
|
request: vpc_20160428_models.CreateSslVpnClientCertRequest,
|
|
13084
13094
|
) -> vpc_20160428_models.CreateSslVpnClientCertResponse:
|
|
13085
13095
|
"""
|
|
13086
|
-
@summary
|
|
13096
|
+
@summary Creates an SSL client certificate.
|
|
13097
|
+
|
|
13098
|
+
@description Before you create an SSL client certificate, make sure that an SSL server is created on the VPN gateway. For more information, see [CreateSslVpnServer](https://help.aliyun.com/document_detail/2794075.html).
|
|
13087
13099
|
|
|
13088
13100
|
@param request: CreateSslVpnClientCertRequest
|
|
13089
13101
|
@return: CreateSslVpnClientCertResponse
|
|
@@ -22295,10 +22307,14 @@ class Client(OpenApiClient):
|
|
|
22295
22307
|
"""
|
|
22296
22308
|
@summary Deletes an SSL client certificate.
|
|
22297
22309
|
|
|
22298
|
-
@description
|
|
22310
|
+
@description If you delete an SSL client certificate, all SSL-VPN client connections to the SSL server are disconnected. You need to reinitiate connections from SSL clients.
|
|
22311
|
+
For example, SSL client certificate 1 and SSL client certificate 2 are created on an SSL server. After you delete certificate 1, all client connections associated with certificate 1 and certificate 2 are disconnected from the SSL server.
|
|
22312
|
+
If clients associated with certificate 1 require SSL-VPN connections, you need to install other certificates on the clients and reinitiate connections from the clients.
|
|
22313
|
+
If clients associated with certificate 2 require SSL-VPN connections, you can directly reinitiate connections from the clients.
|
|
22314
|
+
**DeleteSslVpnClientCert** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [DescribeVpnGateway](https://help.aliyun.com/document_detail/2794055.html) operation to query the status of the task.
|
|
22299
22315
|
If the VPN gateway is in the **updating** state, the SSL client certificate is being deleted.
|
|
22300
22316
|
If the VPN gateway is in the **active** state, the SSL client certificate is deleted.
|
|
22301
|
-
You cannot
|
|
22317
|
+
You cannot call **DeleteSslVpnClientCert** within the specified period of time.
|
|
22302
22318
|
|
|
22303
22319
|
@param request: DeleteSslVpnClientCertRequest
|
|
22304
22320
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -22353,10 +22369,14 @@ class Client(OpenApiClient):
|
|
|
22353
22369
|
"""
|
|
22354
22370
|
@summary Deletes an SSL client certificate.
|
|
22355
22371
|
|
|
22356
|
-
@description
|
|
22372
|
+
@description If you delete an SSL client certificate, all SSL-VPN client connections to the SSL server are disconnected. You need to reinitiate connections from SSL clients.
|
|
22373
|
+
For example, SSL client certificate 1 and SSL client certificate 2 are created on an SSL server. After you delete certificate 1, all client connections associated with certificate 1 and certificate 2 are disconnected from the SSL server.
|
|
22374
|
+
If clients associated with certificate 1 require SSL-VPN connections, you need to install other certificates on the clients and reinitiate connections from the clients.
|
|
22375
|
+
If clients associated with certificate 2 require SSL-VPN connections, you can directly reinitiate connections from the clients.
|
|
22376
|
+
**DeleteSslVpnClientCert** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [DescribeVpnGateway](https://help.aliyun.com/document_detail/2794055.html) operation to query the status of the task.
|
|
22357
22377
|
If the VPN gateway is in the **updating** state, the SSL client certificate is being deleted.
|
|
22358
22378
|
If the VPN gateway is in the **active** state, the SSL client certificate is deleted.
|
|
22359
|
-
You cannot
|
|
22379
|
+
You cannot call **DeleteSslVpnClientCert** within the specified period of time.
|
|
22360
22380
|
|
|
22361
22381
|
@param request: DeleteSslVpnClientCertRequest
|
|
22362
22382
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -22410,10 +22430,14 @@ class Client(OpenApiClient):
|
|
|
22410
22430
|
"""
|
|
22411
22431
|
@summary Deletes an SSL client certificate.
|
|
22412
22432
|
|
|
22413
|
-
@description
|
|
22433
|
+
@description If you delete an SSL client certificate, all SSL-VPN client connections to the SSL server are disconnected. You need to reinitiate connections from SSL clients.
|
|
22434
|
+
For example, SSL client certificate 1 and SSL client certificate 2 are created on an SSL server. After you delete certificate 1, all client connections associated with certificate 1 and certificate 2 are disconnected from the SSL server.
|
|
22435
|
+
If clients associated with certificate 1 require SSL-VPN connections, you need to install other certificates on the clients and reinitiate connections from the clients.
|
|
22436
|
+
If clients associated with certificate 2 require SSL-VPN connections, you can directly reinitiate connections from the clients.
|
|
22437
|
+
**DeleteSslVpnClientCert** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [DescribeVpnGateway](https://help.aliyun.com/document_detail/2794055.html) operation to query the status of the task.
|
|
22414
22438
|
If the VPN gateway is in the **updating** state, the SSL client certificate is being deleted.
|
|
22415
22439
|
If the VPN gateway is in the **active** state, the SSL client certificate is deleted.
|
|
22416
|
-
You cannot
|
|
22440
|
+
You cannot call **DeleteSslVpnClientCert** within the specified period of time.
|
|
22417
22441
|
|
|
22418
22442
|
@param request: DeleteSslVpnClientCertRequest
|
|
22419
22443
|
@return: DeleteSslVpnClientCertResponse
|
|
@@ -22428,10 +22452,14 @@ class Client(OpenApiClient):
|
|
|
22428
22452
|
"""
|
|
22429
22453
|
@summary Deletes an SSL client certificate.
|
|
22430
22454
|
|
|
22431
|
-
@description
|
|
22455
|
+
@description If you delete an SSL client certificate, all SSL-VPN client connections to the SSL server are disconnected. You need to reinitiate connections from SSL clients.
|
|
22456
|
+
For example, SSL client certificate 1 and SSL client certificate 2 are created on an SSL server. After you delete certificate 1, all client connections associated with certificate 1 and certificate 2 are disconnected from the SSL server.
|
|
22457
|
+
If clients associated with certificate 1 require SSL-VPN connections, you need to install other certificates on the clients and reinitiate connections from the clients.
|
|
22458
|
+
If clients associated with certificate 2 require SSL-VPN connections, you can directly reinitiate connections from the clients.
|
|
22459
|
+
**DeleteSslVpnClientCert** is an asynchronous operation. After a request is sent, the system returns a request ID and runs the task in the background. You can call the [DescribeVpnGateway](https://help.aliyun.com/document_detail/2794055.html) operation to query the status of the task.
|
|
22432
22460
|
If the VPN gateway is in the **updating** state, the SSL client certificate is being deleted.
|
|
22433
22461
|
If the VPN gateway is in the **active** state, the SSL client certificate is deleted.
|
|
22434
|
-
You cannot
|
|
22462
|
+
You cannot call **DeleteSslVpnClientCert** within the specified period of time.
|
|
22435
22463
|
|
|
22436
22464
|
@param request: DeleteSslVpnClientCertRequest
|
|
22437
22465
|
@return: DeleteSslVpnClientCertResponse
|
|
@@ -35525,7 +35553,7 @@ class Client(OpenApiClient):
|
|
|
35525
35553
|
runtime: util_models.RuntimeOptions,
|
|
35526
35554
|
) -> vpc_20160428_models.DescribeVpnGatewayAvailableZonesResponse:
|
|
35527
35555
|
"""
|
|
35528
|
-
@summary
|
|
35556
|
+
@summary Queries zones that support IPsec-VPN connections in a region.
|
|
35529
35557
|
|
|
35530
35558
|
@param request: DescribeVpnGatewayAvailableZonesRequest
|
|
35531
35559
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -35564,7 +35592,7 @@ class Client(OpenApiClient):
|
|
|
35564
35592
|
runtime: util_models.RuntimeOptions,
|
|
35565
35593
|
) -> vpc_20160428_models.DescribeVpnGatewayAvailableZonesResponse:
|
|
35566
35594
|
"""
|
|
35567
|
-
@summary
|
|
35595
|
+
@summary Queries zones that support IPsec-VPN connections in a region.
|
|
35568
35596
|
|
|
35569
35597
|
@param request: DescribeVpnGatewayAvailableZonesRequest
|
|
35570
35598
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -35602,7 +35630,7 @@ class Client(OpenApiClient):
|
|
|
35602
35630
|
request: vpc_20160428_models.DescribeVpnGatewayAvailableZonesRequest,
|
|
35603
35631
|
) -> vpc_20160428_models.DescribeVpnGatewayAvailableZonesResponse:
|
|
35604
35632
|
"""
|
|
35605
|
-
@summary
|
|
35633
|
+
@summary Queries zones that support IPsec-VPN connections in a region.
|
|
35606
35634
|
|
|
35607
35635
|
@param request: DescribeVpnGatewayAvailableZonesRequest
|
|
35608
35636
|
@return: DescribeVpnGatewayAvailableZonesResponse
|
|
@@ -35615,7 +35643,7 @@ class Client(OpenApiClient):
|
|
|
35615
35643
|
request: vpc_20160428_models.DescribeVpnGatewayAvailableZonesRequest,
|
|
35616
35644
|
) -> vpc_20160428_models.DescribeVpnGatewayAvailableZonesResponse:
|
|
35617
35645
|
"""
|
|
35618
|
-
@summary
|
|
35646
|
+
@summary Queries zones that support IPsec-VPN connections in a region.
|
|
35619
35647
|
|
|
35620
35648
|
@param request: DescribeVpnGatewayAvailableZonesRequest
|
|
35621
35649
|
@return: DescribeVpnGatewayAvailableZonesResponse
|
|
@@ -44877,6 +44905,142 @@ class Client(OpenApiClient):
|
|
|
44877
44905
|
runtime = util_models.RuntimeOptions()
|
|
44878
44906
|
return await self.modify_eip_address_attribute_with_options_async(request, runtime)
|
|
44879
44907
|
|
|
44908
|
+
def modify_eip_forward_mode_with_options(
|
|
44909
|
+
self,
|
|
44910
|
+
request: vpc_20160428_models.ModifyEipForwardModeRequest,
|
|
44911
|
+
runtime: util_models.RuntimeOptions,
|
|
44912
|
+
) -> vpc_20160428_models.ModifyEipForwardModeResponse:
|
|
44913
|
+
"""
|
|
44914
|
+
@summary 修改eip转发类型
|
|
44915
|
+
|
|
44916
|
+
@param request: ModifyEipForwardModeRequest
|
|
44917
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
44918
|
+
@return: ModifyEipForwardModeResponse
|
|
44919
|
+
"""
|
|
44920
|
+
UtilClient.validate_model(request)
|
|
44921
|
+
query = {}
|
|
44922
|
+
if not UtilClient.is_unset(request.client_token):
|
|
44923
|
+
query['ClientToken'] = request.client_token
|
|
44924
|
+
if not UtilClient.is_unset(request.instance_id):
|
|
44925
|
+
query['InstanceId'] = request.instance_id
|
|
44926
|
+
if not UtilClient.is_unset(request.mode):
|
|
44927
|
+
query['Mode'] = request.mode
|
|
44928
|
+
if not UtilClient.is_unset(request.owner_id):
|
|
44929
|
+
query['OwnerId'] = request.owner_id
|
|
44930
|
+
if not UtilClient.is_unset(request.region_id):
|
|
44931
|
+
query['RegionId'] = request.region_id
|
|
44932
|
+
if not UtilClient.is_unset(request.region_id):
|
|
44933
|
+
query['RegionId'] = request.region_id
|
|
44934
|
+
if not UtilClient.is_unset(request.resource_owner_account):
|
|
44935
|
+
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
44936
|
+
if not UtilClient.is_unset(request.resource_owner_id):
|
|
44937
|
+
query['ResourceOwnerId'] = request.resource_owner_id
|
|
44938
|
+
req = open_api_models.OpenApiRequest(
|
|
44939
|
+
query=OpenApiUtilClient.query(query)
|
|
44940
|
+
)
|
|
44941
|
+
params = open_api_models.Params(
|
|
44942
|
+
action='ModifyEipForwardMode',
|
|
44943
|
+
version='2016-04-28',
|
|
44944
|
+
protocol='HTTPS',
|
|
44945
|
+
pathname='/',
|
|
44946
|
+
method='POST',
|
|
44947
|
+
auth_type='AK',
|
|
44948
|
+
style='RPC',
|
|
44949
|
+
req_body_type='formData',
|
|
44950
|
+
body_type='json'
|
|
44951
|
+
)
|
|
44952
|
+
if UtilClient.is_unset(self._signature_version) or not UtilClient.equal_string(self._signature_version, 'v4'):
|
|
44953
|
+
return TeaCore.from_map(
|
|
44954
|
+
vpc_20160428_models.ModifyEipForwardModeResponse(),
|
|
44955
|
+
self.call_api(params, req, runtime)
|
|
44956
|
+
)
|
|
44957
|
+
else:
|
|
44958
|
+
return TeaCore.from_map(
|
|
44959
|
+
vpc_20160428_models.ModifyEipForwardModeResponse(),
|
|
44960
|
+
self.execute(params, req, runtime)
|
|
44961
|
+
)
|
|
44962
|
+
|
|
44963
|
+
async def modify_eip_forward_mode_with_options_async(
|
|
44964
|
+
self,
|
|
44965
|
+
request: vpc_20160428_models.ModifyEipForwardModeRequest,
|
|
44966
|
+
runtime: util_models.RuntimeOptions,
|
|
44967
|
+
) -> vpc_20160428_models.ModifyEipForwardModeResponse:
|
|
44968
|
+
"""
|
|
44969
|
+
@summary 修改eip转发类型
|
|
44970
|
+
|
|
44971
|
+
@param request: ModifyEipForwardModeRequest
|
|
44972
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
44973
|
+
@return: ModifyEipForwardModeResponse
|
|
44974
|
+
"""
|
|
44975
|
+
UtilClient.validate_model(request)
|
|
44976
|
+
query = {}
|
|
44977
|
+
if not UtilClient.is_unset(request.client_token):
|
|
44978
|
+
query['ClientToken'] = request.client_token
|
|
44979
|
+
if not UtilClient.is_unset(request.instance_id):
|
|
44980
|
+
query['InstanceId'] = request.instance_id
|
|
44981
|
+
if not UtilClient.is_unset(request.mode):
|
|
44982
|
+
query['Mode'] = request.mode
|
|
44983
|
+
if not UtilClient.is_unset(request.owner_id):
|
|
44984
|
+
query['OwnerId'] = request.owner_id
|
|
44985
|
+
if not UtilClient.is_unset(request.region_id):
|
|
44986
|
+
query['RegionId'] = request.region_id
|
|
44987
|
+
if not UtilClient.is_unset(request.region_id):
|
|
44988
|
+
query['RegionId'] = request.region_id
|
|
44989
|
+
if not UtilClient.is_unset(request.resource_owner_account):
|
|
44990
|
+
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
44991
|
+
if not UtilClient.is_unset(request.resource_owner_id):
|
|
44992
|
+
query['ResourceOwnerId'] = request.resource_owner_id
|
|
44993
|
+
req = open_api_models.OpenApiRequest(
|
|
44994
|
+
query=OpenApiUtilClient.query(query)
|
|
44995
|
+
)
|
|
44996
|
+
params = open_api_models.Params(
|
|
44997
|
+
action='ModifyEipForwardMode',
|
|
44998
|
+
version='2016-04-28',
|
|
44999
|
+
protocol='HTTPS',
|
|
45000
|
+
pathname='/',
|
|
45001
|
+
method='POST',
|
|
45002
|
+
auth_type='AK',
|
|
45003
|
+
style='RPC',
|
|
45004
|
+
req_body_type='formData',
|
|
45005
|
+
body_type='json'
|
|
45006
|
+
)
|
|
45007
|
+
if UtilClient.is_unset(self._signature_version) or not UtilClient.equal_string(self._signature_version, 'v4'):
|
|
45008
|
+
return TeaCore.from_map(
|
|
45009
|
+
vpc_20160428_models.ModifyEipForwardModeResponse(),
|
|
45010
|
+
await self.call_api_async(params, req, runtime)
|
|
45011
|
+
)
|
|
45012
|
+
else:
|
|
45013
|
+
return TeaCore.from_map(
|
|
45014
|
+
vpc_20160428_models.ModifyEipForwardModeResponse(),
|
|
45015
|
+
await self.execute_async(params, req, runtime)
|
|
45016
|
+
)
|
|
45017
|
+
|
|
45018
|
+
def modify_eip_forward_mode(
|
|
45019
|
+
self,
|
|
45020
|
+
request: vpc_20160428_models.ModifyEipForwardModeRequest,
|
|
45021
|
+
) -> vpc_20160428_models.ModifyEipForwardModeResponse:
|
|
45022
|
+
"""
|
|
45023
|
+
@summary 修改eip转发类型
|
|
45024
|
+
|
|
45025
|
+
@param request: ModifyEipForwardModeRequest
|
|
45026
|
+
@return: ModifyEipForwardModeResponse
|
|
45027
|
+
"""
|
|
45028
|
+
runtime = util_models.RuntimeOptions()
|
|
45029
|
+
return self.modify_eip_forward_mode_with_options(request, runtime)
|
|
45030
|
+
|
|
45031
|
+
async def modify_eip_forward_mode_async(
|
|
45032
|
+
self,
|
|
45033
|
+
request: vpc_20160428_models.ModifyEipForwardModeRequest,
|
|
45034
|
+
) -> vpc_20160428_models.ModifyEipForwardModeResponse:
|
|
45035
|
+
"""
|
|
45036
|
+
@summary 修改eip转发类型
|
|
45037
|
+
|
|
45038
|
+
@param request: ModifyEipForwardModeRequest
|
|
45039
|
+
@return: ModifyEipForwardModeResponse
|
|
45040
|
+
"""
|
|
45041
|
+
runtime = util_models.RuntimeOptions()
|
|
45042
|
+
return await self.modify_eip_forward_mode_with_options_async(request, runtime)
|
|
45043
|
+
|
|
44880
45044
|
def modify_express_cloud_connection_attribute_with_options(
|
|
44881
45045
|
self,
|
|
44882
45046
|
request: vpc_20160428_models.ModifyExpressCloudConnectionAttributeRequest,
|
|
@@ -45664,6 +45828,10 @@ class Client(OpenApiClient):
|
|
|
45664
45828
|
query['AggregationInterval'] = request.aggregation_interval
|
|
45665
45829
|
if not UtilClient.is_unset(request.description):
|
|
45666
45830
|
query['Description'] = request.description
|
|
45831
|
+
if not UtilClient.is_unset(request.disable_log_delivery):
|
|
45832
|
+
query['DisableLogDelivery'] = request.disable_log_delivery
|
|
45833
|
+
if not UtilClient.is_unset(request.enable_traffic_analyze):
|
|
45834
|
+
query['EnableTrafficAnalyze'] = request.enable_traffic_analyze
|
|
45667
45835
|
if not UtilClient.is_unset(request.flow_log_id):
|
|
45668
45836
|
query['FlowLogId'] = request.flow_log_id
|
|
45669
45837
|
if not UtilClient.is_unset(request.flow_log_name):
|
|
@@ -45680,6 +45848,8 @@ class Client(OpenApiClient):
|
|
|
45680
45848
|
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
45681
45849
|
if not UtilClient.is_unset(request.resource_owner_id):
|
|
45682
45850
|
query['ResourceOwnerId'] = request.resource_owner_id
|
|
45851
|
+
if not UtilClient.is_unset(request.traffic_analyzer_id):
|
|
45852
|
+
query['TrafficAnalyzerId'] = request.traffic_analyzer_id
|
|
45683
45853
|
req = open_api_models.OpenApiRequest(
|
|
45684
45854
|
query=OpenApiUtilClient.query(query)
|
|
45685
45855
|
)
|
|
@@ -45728,6 +45898,10 @@ class Client(OpenApiClient):
|
|
|
45728
45898
|
query['AggregationInterval'] = request.aggregation_interval
|
|
45729
45899
|
if not UtilClient.is_unset(request.description):
|
|
45730
45900
|
query['Description'] = request.description
|
|
45901
|
+
if not UtilClient.is_unset(request.disable_log_delivery):
|
|
45902
|
+
query['DisableLogDelivery'] = request.disable_log_delivery
|
|
45903
|
+
if not UtilClient.is_unset(request.enable_traffic_analyze):
|
|
45904
|
+
query['EnableTrafficAnalyze'] = request.enable_traffic_analyze
|
|
45731
45905
|
if not UtilClient.is_unset(request.flow_log_id):
|
|
45732
45906
|
query['FlowLogId'] = request.flow_log_id
|
|
45733
45907
|
if not UtilClient.is_unset(request.flow_log_name):
|
|
@@ -45744,6 +45918,8 @@ class Client(OpenApiClient):
|
|
|
45744
45918
|
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
45745
45919
|
if not UtilClient.is_unset(request.resource_owner_id):
|
|
45746
45920
|
query['ResourceOwnerId'] = request.resource_owner_id
|
|
45921
|
+
if not UtilClient.is_unset(request.traffic_analyzer_id):
|
|
45922
|
+
query['TrafficAnalyzerId'] = request.traffic_analyzer_id
|
|
45747
45923
|
req = open_api_models.OpenApiRequest(
|
|
45748
45924
|
query=OpenApiUtilClient.query(query)
|
|
45749
45925
|
)
|
|
@@ -47655,7 +47831,7 @@ class Client(OpenApiClient):
|
|
|
47655
47831
|
runtime: util_models.RuntimeOptions,
|
|
47656
47832
|
) -> vpc_20160428_models.ModifyIpv6InternetBandwidthResponse:
|
|
47657
47833
|
"""
|
|
47658
|
-
@summary Modifies the Internet bandwidth
|
|
47834
|
+
@summary Modifies the Internet bandwidth of an IPv6 address.
|
|
47659
47835
|
|
|
47660
47836
|
@description You cannot repeatedly call the *ModifyIpv6InternetBandwidth** operation to modify the Internet bandwidth value of an IPv6 CIDR block within the specified period of time.
|
|
47661
47837
|
|
|
@@ -47720,7 +47896,7 @@ class Client(OpenApiClient):
|
|
|
47720
47896
|
runtime: util_models.RuntimeOptions,
|
|
47721
47897
|
) -> vpc_20160428_models.ModifyIpv6InternetBandwidthResponse:
|
|
47722
47898
|
"""
|
|
47723
|
-
@summary Modifies the Internet bandwidth
|
|
47899
|
+
@summary Modifies the Internet bandwidth of an IPv6 address.
|
|
47724
47900
|
|
|
47725
47901
|
@description You cannot repeatedly call the *ModifyIpv6InternetBandwidth** operation to modify the Internet bandwidth value of an IPv6 CIDR block within the specified period of time.
|
|
47726
47902
|
|
|
@@ -47784,7 +47960,7 @@ class Client(OpenApiClient):
|
|
|
47784
47960
|
request: vpc_20160428_models.ModifyIpv6InternetBandwidthRequest,
|
|
47785
47961
|
) -> vpc_20160428_models.ModifyIpv6InternetBandwidthResponse:
|
|
47786
47962
|
"""
|
|
47787
|
-
@summary Modifies the Internet bandwidth
|
|
47963
|
+
@summary Modifies the Internet bandwidth of an IPv6 address.
|
|
47788
47964
|
|
|
47789
47965
|
@description You cannot repeatedly call the *ModifyIpv6InternetBandwidth** operation to modify the Internet bandwidth value of an IPv6 CIDR block within the specified period of time.
|
|
47790
47966
|
|
|
@@ -47799,7 +47975,7 @@ class Client(OpenApiClient):
|
|
|
47799
47975
|
request: vpc_20160428_models.ModifyIpv6InternetBandwidthRequest,
|
|
47800
47976
|
) -> vpc_20160428_models.ModifyIpv6InternetBandwidthResponse:
|
|
47801
47977
|
"""
|
|
47802
|
-
@summary Modifies the Internet bandwidth
|
|
47978
|
+
@summary Modifies the Internet bandwidth of an IPv6 address.
|
|
47803
47979
|
|
|
47804
47980
|
@description You cannot repeatedly call the *ModifyIpv6InternetBandwidth** operation to modify the Internet bandwidth value of an IPv6 CIDR block within the specified period of time.
|
|
47805
47981
|
|
|
@@ -56939,7 +57115,7 @@ class Client(OpenApiClient):
|
|
|
56939
57115
|
runtime: util_models.RuntimeOptions,
|
|
56940
57116
|
) -> vpc_20160428_models.TransformEipSegmentToPublicIpAddressPoolResponse:
|
|
56941
57117
|
"""
|
|
56942
|
-
@summary
|
|
57118
|
+
@summary Migrate contiguous EIP groups to IP address pool by calling TransformEipSegmentToPublicIpAddressPool.
|
|
56943
57119
|
|
|
56944
57120
|
@param request: TransformEipSegmentToPublicIpAddressPoolRequest
|
|
56945
57121
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -56990,7 +57166,7 @@ class Client(OpenApiClient):
|
|
|
56990
57166
|
runtime: util_models.RuntimeOptions,
|
|
56991
57167
|
) -> vpc_20160428_models.TransformEipSegmentToPublicIpAddressPoolResponse:
|
|
56992
57168
|
"""
|
|
56993
|
-
@summary
|
|
57169
|
+
@summary Migrate contiguous EIP groups to IP address pool by calling TransformEipSegmentToPublicIpAddressPool.
|
|
56994
57170
|
|
|
56995
57171
|
@param request: TransformEipSegmentToPublicIpAddressPoolRequest
|
|
56996
57172
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -57040,7 +57216,7 @@ class Client(OpenApiClient):
|
|
|
57040
57216
|
request: vpc_20160428_models.TransformEipSegmentToPublicIpAddressPoolRequest,
|
|
57041
57217
|
) -> vpc_20160428_models.TransformEipSegmentToPublicIpAddressPoolResponse:
|
|
57042
57218
|
"""
|
|
57043
|
-
@summary
|
|
57219
|
+
@summary Migrate contiguous EIP groups to IP address pool by calling TransformEipSegmentToPublicIpAddressPool.
|
|
57044
57220
|
|
|
57045
57221
|
@param request: TransformEipSegmentToPublicIpAddressPoolRequest
|
|
57046
57222
|
@return: TransformEipSegmentToPublicIpAddressPoolResponse
|
|
@@ -57053,7 +57229,7 @@ class Client(OpenApiClient):
|
|
|
57053
57229
|
request: vpc_20160428_models.TransformEipSegmentToPublicIpAddressPoolRequest,
|
|
57054
57230
|
) -> vpc_20160428_models.TransformEipSegmentToPublicIpAddressPoolResponse:
|
|
57055
57231
|
"""
|
|
57056
|
-
@summary
|
|
57232
|
+
@summary Migrate contiguous EIP groups to IP address pool by calling TransformEipSegmentToPublicIpAddressPool.
|
|
57057
57233
|
|
|
57058
57234
|
@param request: TransformEipSegmentToPublicIpAddressPoolRequest
|
|
57059
57235
|
@return: TransformEipSegmentToPublicIpAddressPoolResponse
|
|
@@ -2609,6 +2609,10 @@ class AllocateIpv6InternetBandwidthRequest(TeaModel):
|
|
|
2609
2609
|
#
|
|
2610
2610
|
# > 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.
|
|
2611
2611
|
self.client_token = client_token
|
|
2612
|
+
# Specifies whether to perform only a dry run, without performing the actual request. Valid values:
|
|
2613
|
+
#
|
|
2614
|
+
# * **true**: performs only a dry run. The system checks the request for potential issues, including invalid AccessKey pairs, unauthorized RAM users, and missing parameter values. 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.
|
|
2615
|
+
# * **false**: sends the API request. After the request passes the check, a 2XX HTTP status code is returned and the route table is associated. This is the default value.
|
|
2612
2616
|
self.dry_run = dry_run
|
|
2613
2617
|
# The metering method of the Internet bandwidth for the IPv6 address. Valid values:
|
|
2614
2618
|
#
|
|
@@ -9646,6 +9650,7 @@ class CreateFlowLogRequest(TeaModel):
|
|
|
9646
9650
|
resource_owner_id: int = None,
|
|
9647
9651
|
resource_type: str = None,
|
|
9648
9652
|
tag: List[CreateFlowLogRequestTag] = None,
|
|
9653
|
+
traffic_analyzer_id: str = None,
|
|
9649
9654
|
traffic_path: List[str] = None,
|
|
9650
9655
|
traffic_type: str = None,
|
|
9651
9656
|
):
|
|
@@ -9665,8 +9670,6 @@ class CreateFlowLogRequest(TeaModel):
|
|
|
9665
9670
|
# * The name can contain only lowercase letters, digits, hyphens (-), and underscores (_).
|
|
9666
9671
|
# * The name must start and end with a lowercase letter or a digit.
|
|
9667
9672
|
# * The name must be 3 to 63 characters in length.
|
|
9668
|
-
#
|
|
9669
|
-
# This parameter is required.
|
|
9670
9673
|
self.log_store_name = log_store_name
|
|
9671
9674
|
self.owner_account = owner_account
|
|
9672
9675
|
self.owner_id = owner_id
|
|
@@ -9675,8 +9678,6 @@ class CreateFlowLogRequest(TeaModel):
|
|
|
9675
9678
|
# * The name can contain only lowercase letters, digits, and hyphens (-).
|
|
9676
9679
|
# * The name must start and end with a lowercase letter or a digit.
|
|
9677
9680
|
# * The name must be 3 to 63 characters in length.
|
|
9678
|
-
#
|
|
9679
|
-
# This parameter is required.
|
|
9680
9681
|
self.project_name = project_name
|
|
9681
9682
|
# The ID of the region where you want to create the flow log. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/36063.html) operation to query the most recent region list.
|
|
9682
9683
|
#
|
|
@@ -9700,6 +9701,7 @@ class CreateFlowLogRequest(TeaModel):
|
|
|
9700
9701
|
self.resource_type = resource_type
|
|
9701
9702
|
# The tag of the resource.
|
|
9702
9703
|
self.tag = tag
|
|
9704
|
+
self.traffic_analyzer_id = traffic_analyzer_id
|
|
9703
9705
|
# The scope of the traffic that you want to capture. Valid values:
|
|
9704
9706
|
#
|
|
9705
9707
|
# * **all**: all traffic.
|
|
@@ -9758,6 +9760,8 @@ class CreateFlowLogRequest(TeaModel):
|
|
|
9758
9760
|
if self.tag is not None:
|
|
9759
9761
|
for k in self.tag:
|
|
9760
9762
|
result['Tag'].append(k.to_map() if k else None)
|
|
9763
|
+
if self.traffic_analyzer_id is not None:
|
|
9764
|
+
result['TrafficAnalyzerId'] = self.traffic_analyzer_id
|
|
9761
9765
|
if self.traffic_path is not None:
|
|
9762
9766
|
result['TrafficPath'] = self.traffic_path
|
|
9763
9767
|
if self.traffic_type is not None:
|
|
@@ -9799,6 +9803,8 @@ class CreateFlowLogRequest(TeaModel):
|
|
|
9799
9803
|
for k in m.get('Tag'):
|
|
9800
9804
|
temp_model = CreateFlowLogRequestTag()
|
|
9801
9805
|
self.tag.append(temp_model.from_map(k))
|
|
9806
|
+
if m.get('TrafficAnalyzerId') is not None:
|
|
9807
|
+
self.traffic_analyzer_id = m.get('TrafficAnalyzerId')
|
|
9802
9808
|
if m.get('TrafficPath') is not None:
|
|
9803
9809
|
self.traffic_path = m.get('TrafficPath')
|
|
9804
9810
|
if m.get('TrafficType') is not None:
|
|
@@ -40292,6 +40298,7 @@ class DescribeFlowLogsResponseBodyFlowLogsFlowLog(TeaModel):
|
|
|
40292
40298
|
service_type: str = None,
|
|
40293
40299
|
status: str = None,
|
|
40294
40300
|
tags: DescribeFlowLogsResponseBodyFlowLogsFlowLogTags = None,
|
|
40301
|
+
traffic_analyzer_id: str = None,
|
|
40295
40302
|
traffic_path: DescribeFlowLogsResponseBodyFlowLogsFlowLogTrafficPath = None,
|
|
40296
40303
|
traffic_type: str = None,
|
|
40297
40304
|
):
|
|
@@ -40352,6 +40359,7 @@ class DescribeFlowLogsResponseBodyFlowLogsFlowLog(TeaModel):
|
|
|
40352
40359
|
self.status = status
|
|
40353
40360
|
# The list of tags.
|
|
40354
40361
|
self.tags = tags
|
|
40362
|
+
self.traffic_analyzer_id = traffic_analyzer_id
|
|
40355
40363
|
# The sampling scope of the traffic that is collected. Valid values:
|
|
40356
40364
|
#
|
|
40357
40365
|
# * **all** (default value): all traffic
|
|
@@ -40414,6 +40422,8 @@ class DescribeFlowLogsResponseBodyFlowLogsFlowLog(TeaModel):
|
|
|
40414
40422
|
result['Status'] = self.status
|
|
40415
40423
|
if self.tags is not None:
|
|
40416
40424
|
result['Tags'] = self.tags.to_map()
|
|
40425
|
+
if self.traffic_analyzer_id is not None:
|
|
40426
|
+
result['TrafficAnalyzerId'] = self.traffic_analyzer_id
|
|
40417
40427
|
if self.traffic_path is not None:
|
|
40418
40428
|
result['TrafficPath'] = self.traffic_path.to_map()
|
|
40419
40429
|
if self.traffic_type is not None:
|
|
@@ -40459,6 +40469,8 @@ class DescribeFlowLogsResponseBodyFlowLogsFlowLog(TeaModel):
|
|
|
40459
40469
|
if m.get('Tags') is not None:
|
|
40460
40470
|
temp_model = DescribeFlowLogsResponseBodyFlowLogsFlowLogTags()
|
|
40461
40471
|
self.tags = temp_model.from_map(m['Tags'])
|
|
40472
|
+
if m.get('TrafficAnalyzerId') is not None:
|
|
40473
|
+
self.traffic_analyzer_id = m.get('TrafficAnalyzerId')
|
|
40462
40474
|
if m.get('TrafficPath') is not None:
|
|
40463
40475
|
temp_model = DescribeFlowLogsResponseBodyFlowLogsFlowLogTrafficPath()
|
|
40464
40476
|
self.traffic_path = temp_model.from_map(m['TrafficPath'])
|
|
@@ -51060,9 +51072,13 @@ class DescribeRouteTableListRequestTag(TeaModel):
|
|
|
51060
51072
|
key: str = None,
|
|
51061
51073
|
value: str = None,
|
|
51062
51074
|
):
|
|
51063
|
-
# The
|
|
51075
|
+
# The value of tag N to add to the resource. You can specify up to 20 tag values. The tag value can be an empty string.
|
|
51076
|
+
#
|
|
51077
|
+
# The tag value can be up to 128 characters in length. It cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
|
|
51064
51078
|
self.key = key
|
|
51065
|
-
# The
|
|
51079
|
+
# The value of tag N to add to the resource. You can specify up to 20 tag values. The tag value can be an empty string.
|
|
51080
|
+
#
|
|
51081
|
+
# The tag value can be up to 128 characters in length. It cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
|
|
51066
51082
|
self.value = value
|
|
51067
51083
|
|
|
51068
51084
|
def validate(self):
|
|
@@ -51110,40 +51126,41 @@ class DescribeRouteTableListRequest(TeaModel):
|
|
|
51110
51126
|
):
|
|
51111
51127
|
self.owner_account = owner_account
|
|
51112
51128
|
self.owner_id = owner_id
|
|
51113
|
-
# The
|
|
51114
|
-
#
|
|
51115
|
-
# The tag value can be up to 128 characters in length. It cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
|
|
51129
|
+
# The number of the returned page. Default value: **1**.
|
|
51116
51130
|
self.page_number = page_number
|
|
51117
|
-
# The
|
|
51118
|
-
#
|
|
51119
|
-
# * **System**\
|
|
51120
|
-
# * **Custom**\
|
|
51131
|
+
# The number of entries per page. Maximum value: **50**. Default value: **10**.
|
|
51121
51132
|
self.page_size = page_size
|
|
51122
|
-
# The
|
|
51133
|
+
# The region ID of the VPC to which the route table belongs.
|
|
51134
|
+
#
|
|
51135
|
+
# You can call [DescribeRegions](https://www.alibabacloud.com/help/vpc/developer-reference/api-vpc-2016-04-28-describeregions) to query the most recent region list.
|
|
51123
51136
|
#
|
|
51124
51137
|
# This parameter is required.
|
|
51125
51138
|
self.region_id = region_id
|
|
51126
|
-
# The
|
|
51139
|
+
# The ID of the resource group to which the route table belongs.
|
|
51127
51140
|
self.resource_group_id = resource_group_id
|
|
51128
51141
|
self.resource_owner_account = resource_owner_account
|
|
51129
51142
|
self.resource_owner_id = resource_owner_id
|
|
51130
|
-
# The
|
|
51143
|
+
# The ID of the route table.
|
|
51131
51144
|
self.route_table_id = route_table_id
|
|
51132
|
-
# The
|
|
51133
|
-
#
|
|
51134
|
-
# The tag key can be up to 128 characters in length. It cannot start with `aliyun` or `acs:`, and cannot contain `http://` or `https://`.
|
|
51145
|
+
# The name of the route table.
|
|
51135
51146
|
self.route_table_name = route_table_name
|
|
51136
|
-
# The
|
|
51137
|
-
self.route_table_type = route_table_type
|
|
51138
|
-
# The region ID of the VPC to which the route table belongs.
|
|
51147
|
+
# The type of the route table.
|
|
51139
51148
|
#
|
|
51140
|
-
#
|
|
51149
|
+
# * **System**\
|
|
51150
|
+
# * **Custom**\
|
|
51151
|
+
self.route_table_type = route_table_type
|
|
51152
|
+
# The ID of vRouter to which the route table belongs.
|
|
51141
51153
|
self.router_id = router_id
|
|
51142
|
-
# The
|
|
51154
|
+
# The type of the router to which the route table belongs. Valid value:
|
|
51155
|
+
#
|
|
51156
|
+
# * **VRouter** (default): a vRouter
|
|
51157
|
+
# * **VBR**: a VBR
|
|
51143
51158
|
self.router_type = router_type
|
|
51144
|
-
# The page number.
|
|
51145
|
-
self.tag = tag
|
|
51146
51159
|
# The tags of the resource.
|
|
51160
|
+
self.tag = tag
|
|
51161
|
+
# The ID of the VPC to which the route table belongs.
|
|
51162
|
+
#
|
|
51163
|
+
# When this parameter is set, the value of **RouterType** is automatically assigned to **VRouter**.
|
|
51147
51164
|
self.vpc_id = vpc_id
|
|
51148
51165
|
|
|
51149
51166
|
def validate(self):
|
|
@@ -51263,13 +51280,9 @@ class DescribeRouteTableListResponseBodyRouterTableListRouterTableListTypeTagsTa
|
|
|
51263
51280
|
key: str = None,
|
|
51264
51281
|
value: str = None,
|
|
51265
51282
|
):
|
|
51266
|
-
# The key of tag
|
|
51267
|
-
#
|
|
51268
|
-
# The tag key can be up to 128 characters in length. It cannot start with aliyun or acs:, and cannot contain http:// or https://.
|
|
51283
|
+
# The key of the tag that is added to the route table.
|
|
51269
51284
|
self.key = key
|
|
51270
|
-
# The value of tag
|
|
51271
|
-
#
|
|
51272
|
-
# The tag value can be up to 128 characters in length. It cannot start with aliyun or acs: and cannot contain http:// or https://.
|
|
51285
|
+
# The value of the tag that is added to the route table.
|
|
51273
51286
|
self.value = value
|
|
51274
51287
|
|
|
51275
51288
|
def validate(self):
|
|
@@ -51378,44 +51391,55 @@ class DescribeRouteTableListResponseBodyRouterTableListRouterTableListType(TeaMo
|
|
|
51378
51391
|
v_switch_ids: DescribeRouteTableListResponseBodyRouterTableListRouterTableListTypeVSwitchIds = None,
|
|
51379
51392
|
vpc_id: str = None,
|
|
51380
51393
|
):
|
|
51381
|
-
# The
|
|
51382
|
-
self.associate_type = associate_type
|
|
51383
|
-
# The type of the router to which the route table belongs. Valid values:
|
|
51394
|
+
# The type of the cloud resource with which the route table is associated. Valid values:
|
|
51384
51395
|
#
|
|
51385
|
-
# * **
|
|
51386
|
-
# * **
|
|
51396
|
+
# * **VSwitch**: vSwitch
|
|
51397
|
+
# * **Gateway**: IPv4 gateway
|
|
51398
|
+
self.associate_type = associate_type
|
|
51399
|
+
# The time when the route table was created.
|
|
51387
51400
|
self.creation_time = creation_time
|
|
51388
|
-
# The information about the
|
|
51401
|
+
# The information about the route table.
|
|
51389
51402
|
self.description = description
|
|
51390
51403
|
# The detailed information about the IPv4 gateway.
|
|
51391
51404
|
self.gateway_ids = gateway_ids
|
|
51392
|
-
# The
|
|
51405
|
+
# The ID of the Alibaba Cloud account to which the route table belongs.
|
|
51393
51406
|
self.owner_id = owner_id
|
|
51394
|
-
# The
|
|
51407
|
+
# The ID of the resource group to which the route table belongs.
|
|
51395
51408
|
self.resource_group_id = resource_group_id
|
|
51396
51409
|
# Whether to receive the propagation routes. Valid Values:
|
|
51397
51410
|
#
|
|
51398
|
-
# * **
|
|
51411
|
+
# * **true**: received.
|
|
51399
51412
|
#
|
|
51400
|
-
# * **
|
|
51413
|
+
# * **false**: not received.
|
|
51401
51414
|
self.route_propagation_enable = route_propagation_enable
|
|
51402
|
-
# The
|
|
51415
|
+
# The ID of the route table.
|
|
51403
51416
|
self.route_table_id = route_table_id
|
|
51404
51417
|
# The name of the route table.
|
|
51405
51418
|
self.route_table_name = route_table_name
|
|
51406
|
-
# The
|
|
51419
|
+
# The type of the route table. Valid values:
|
|
51420
|
+
#
|
|
51421
|
+
# * **Custom**\
|
|
51422
|
+
# * **System**\
|
|
51407
51423
|
self.route_table_type = route_table_type
|
|
51408
|
-
# The
|
|
51424
|
+
# The ID of the vRouter to which the route table belongs.
|
|
51409
51425
|
self.router_id = router_id
|
|
51410
|
-
# The
|
|
51426
|
+
# The type of the vRouter to which the route table belongs. Valid values:
|
|
51427
|
+
#
|
|
51428
|
+
# - **VRouter**: a vRouter.
|
|
51429
|
+
#
|
|
51430
|
+
# - **VBR**: a VBR.
|
|
51411
51431
|
self.router_type = router_type
|
|
51412
|
-
# The
|
|
51432
|
+
# The status of the route table. Valid values:
|
|
51433
|
+
#
|
|
51434
|
+
# * **Pending**\
|
|
51435
|
+
# * **Available**\
|
|
51436
|
+
# * **Deleting**\
|
|
51413
51437
|
self.status = status
|
|
51414
51438
|
# The tags.
|
|
51415
51439
|
self.tags = tags
|
|
51416
51440
|
# The vSwitch IDs.
|
|
51417
51441
|
self.v_switch_ids = v_switch_ids
|
|
51418
|
-
# The ID of the
|
|
51442
|
+
# The ID of the VPC to which the route table belongs.
|
|
51419
51443
|
self.vpc_id = vpc_id
|
|
51420
51444
|
|
|
51421
51445
|
def validate(self):
|
|
@@ -51550,18 +51574,15 @@ class DescribeRouteTableListResponseBody(TeaModel):
|
|
|
51550
51574
|
router_table_list: DescribeRouteTableListResponseBodyRouterTableList = None,
|
|
51551
51575
|
total_count: int = None,
|
|
51552
51576
|
):
|
|
51553
|
-
# The
|
|
51577
|
+
# The page number.
|
|
51554
51578
|
self.page_number = page_number
|
|
51555
|
-
# The
|
|
51556
|
-
#
|
|
51557
|
-
# * **VSwitch**: vSwitch
|
|
51558
|
-
# * **Gateway**: IPv4 gateway
|
|
51579
|
+
# The number of entries per page.
|
|
51559
51580
|
self.page_size = page_size
|
|
51560
|
-
# The ID
|
|
51581
|
+
# The request ID.
|
|
51561
51582
|
self.request_id = request_id
|
|
51562
|
-
# The
|
|
51583
|
+
# The detailed information about the route tables.
|
|
51563
51584
|
self.router_table_list = router_table_list
|
|
51564
|
-
# The
|
|
51585
|
+
# The total number of entries returned.
|
|
51565
51586
|
self.total_count = total_count
|
|
51566
51587
|
|
|
51567
51588
|
def validate(self):
|
|
@@ -65364,13 +65385,35 @@ class DescribeVpnGatewayAvailableZonesRequest(TeaModel):
|
|
|
65364
65385
|
resource_owner_id: int = None,
|
|
65365
65386
|
spec: str = None,
|
|
65366
65387
|
):
|
|
65388
|
+
# The language in which the returned results are displayed. Valid values:
|
|
65389
|
+
#
|
|
65390
|
+
# * **zh-CN**: Chinese
|
|
65391
|
+
# * **en-US** (default): English
|
|
65367
65392
|
self.accept_language = accept_language
|
|
65368
65393
|
self.owner_account = owner_account
|
|
65369
65394
|
self.owner_id = owner_id
|
|
65395
|
+
# The region ID.
|
|
65396
|
+
#
|
|
65370
65397
|
# This parameter is required.
|
|
65371
65398
|
self.region_id = region_id
|
|
65372
65399
|
self.resource_owner_account = resource_owner_account
|
|
65373
65400
|
self.resource_owner_id = resource_owner_id
|
|
65401
|
+
# The bandwidth specification.
|
|
65402
|
+
#
|
|
65403
|
+
# * If an IPsec-VPN connection can be associated with the VPN gateway, this parameter specifies the bandwidth specification of the VPN gateway.
|
|
65404
|
+
# * In scenarios where an IPsec-VPN connection can be associated with a transit router. This parameter specifies the bandwidth specification supported by an IPsec-VPN connection.
|
|
65405
|
+
#
|
|
65406
|
+
# Different bandwidth specifications may affect returned zone information. Valid values:
|
|
65407
|
+
#
|
|
65408
|
+
# * **5M**\
|
|
65409
|
+
# * **10M**\
|
|
65410
|
+
# * **20M**\
|
|
65411
|
+
# * **50M**\
|
|
65412
|
+
# * **100M**\
|
|
65413
|
+
# * **200M**\
|
|
65414
|
+
# * **500M**\
|
|
65415
|
+
# * **1000M**\
|
|
65416
|
+
#
|
|
65374
65417
|
# This parameter is required.
|
|
65375
65418
|
self.spec = spec
|
|
65376
65419
|
|
|
@@ -65424,7 +65467,9 @@ class DescribeVpnGatewayAvailableZonesResponseBodyAvailableZoneIdList(TeaModel):
|
|
|
65424
65467
|
zone_id: str = None,
|
|
65425
65468
|
zone_name: str = None,
|
|
65426
65469
|
):
|
|
65470
|
+
# The zone ID.
|
|
65427
65471
|
self.zone_id = zone_id
|
|
65472
|
+
# The zone name.
|
|
65428
65473
|
self.zone_name = zone_name
|
|
65429
65474
|
|
|
65430
65475
|
def validate(self):
|
|
@@ -65458,8 +65503,11 @@ class DescribeVpnGatewayAvailableZonesResponseBody(TeaModel):
|
|
|
65458
65503
|
region_id: str = None,
|
|
65459
65504
|
request_id: str = None,
|
|
65460
65505
|
):
|
|
65506
|
+
# The zones.
|
|
65461
65507
|
self.available_zone_id_list = available_zone_id_list
|
|
65508
|
+
# The region ID.
|
|
65462
65509
|
self.region_id = region_id
|
|
65510
|
+
# The request ID.
|
|
65463
65511
|
self.request_id = request_id
|
|
65464
65512
|
|
|
65465
65513
|
def validate(self):
|
|
@@ -66737,8 +66785,17 @@ class DescribeVpnRouteEntriesResponseBodyVpnRouteCountsVpnRouteCount(TeaModel):
|
|
|
66737
66785
|
route_entry_type: str = None,
|
|
66738
66786
|
source: str = None,
|
|
66739
66787
|
):
|
|
66788
|
+
# The number of route entries.
|
|
66740
66789
|
self.route_count = route_count
|
|
66790
|
+
# The route type. Valid values:
|
|
66791
|
+
#
|
|
66792
|
+
# * **custom** (default): destination-based route.
|
|
66793
|
+
# * **bgp** : BGP route entry.
|
|
66741
66794
|
self.route_entry_type = route_entry_type
|
|
66795
|
+
# The source of the BGP route. Valid values:
|
|
66796
|
+
#
|
|
66797
|
+
# * **CLOUD**: advertised from a cloud service associated with the VPN gateway.
|
|
66798
|
+
# * **VPN_BGP**: indicates that the current route is learned by using BGP of the VPN gateway. For example, the BGP is used to learn the route of the on-premises data center.
|
|
66742
66799
|
self.source = source
|
|
66743
66800
|
|
|
66744
66801
|
def validate(self):
|
|
@@ -66839,7 +66896,10 @@ class DescribeVpnRouteEntriesResponseBodyVpnRouteEntriesVpnRouteEntry(TeaModel):
|
|
|
66839
66896
|
# * **Custom**: custom
|
|
66840
66897
|
# * **System**: system
|
|
66841
66898
|
self.route_entry_type = route_entry_type
|
|
66842
|
-
# The source
|
|
66899
|
+
# The source of the BGP route. Valid values:
|
|
66900
|
+
#
|
|
66901
|
+
# * **CLOUD**: advertised from a cloud service associated with the VPN gateway.
|
|
66902
|
+
# * **VPN_BGP**: indicates that the current route is learned by using BGP of the VPN gateway. For example, the BGP is used to learn the route of the on-premises data center.
|
|
66843
66903
|
self.source = source
|
|
66844
66904
|
# The status of the route entry. Valid values:
|
|
66845
66905
|
#
|
|
@@ -66967,8 +67027,11 @@ class DescribeVpnRouteEntriesResponseBody(TeaModel):
|
|
|
66967
67027
|
self.request_id = request_id
|
|
66968
67028
|
# The total number of entries returned.
|
|
66969
67029
|
self.total_count = total_count
|
|
67030
|
+
# The information about route entries of the VPN gateway in dual-tunnel mode.
|
|
67031
|
+
#
|
|
67032
|
+
# > This parameter is returned only if the VPN gateway supports IPsec-VPN connections in dual-tunnel mode.
|
|
66970
67033
|
self.vpn_route_counts = vpn_route_counts
|
|
66971
|
-
# The
|
|
67034
|
+
# The route entry list.
|
|
66972
67035
|
self.vpn_route_entries = vpn_route_entries
|
|
66973
67036
|
|
|
66974
67037
|
def validate(self):
|
|
@@ -68729,9 +68792,9 @@ class DissociateVpnGatewayWithCertificateRequest(TeaModel):
|
|
|
68729
68792
|
region_id: str = None,
|
|
68730
68793
|
vpn_gateway_id: str = None,
|
|
68731
68794
|
):
|
|
68732
|
-
# The certificate
|
|
68795
|
+
# The ID of the certificate.
|
|
68733
68796
|
#
|
|
68734
|
-
# >
|
|
68797
|
+
# > The certificate ID refers to the ID generated after the SSL certificate is associated with the VPN gateway. It is not the ID of the SSL certificate.
|
|
68735
68798
|
#
|
|
68736
68799
|
# This parameter is required.
|
|
68737
68800
|
self.certificate_id = certificate_id
|
|
@@ -75884,7 +75947,7 @@ class ListIpsecServersRequest(TeaModel):
|
|
|
75884
75947
|
self.ipsec_server_id = ipsec_server_id
|
|
75885
75948
|
# The name of the IPsec server.
|
|
75886
75949
|
#
|
|
75887
|
-
# The name must be 1 to 100 characters in length
|
|
75950
|
+
# The name must be 1 to 100 characters in length.
|
|
75888
75951
|
self.ipsec_server_name = ipsec_server_name
|
|
75889
75952
|
# The number of entries to return on each page. Valid values: **1** to **20**. Default value: **10**.
|
|
75890
75953
|
self.max_results = max_results
|
|
@@ -75901,9 +75964,7 @@ class ListIpsecServersRequest(TeaModel):
|
|
|
75901
75964
|
self.region_id = region_id
|
|
75902
75965
|
# The ID of the resource group to which the IPsec server belongs.
|
|
75903
75966
|
#
|
|
75904
|
-
# The IPsec server
|
|
75905
|
-
#
|
|
75906
|
-
# You can call the [DescribeVpnGateway](https://help.aliyun.com/document_detail/2526915.html) operation to query the ID of the resource group to which the VPN gateway instance belongs.
|
|
75967
|
+
# The IPsec server and its associated VPN gateway belong to the same resource group. You can call [DescribeVpnGateway](https://help.aliyun.com/document_detail/2794055.html) to query the ID of the resource group to which the VPN gateway belongs.
|
|
75907
75968
|
self.resource_group_id = resource_group_id
|
|
75908
75969
|
# The ID of the VPN gateway.
|
|
75909
75970
|
self.vpn_gateway_id = vpn_gateway_id
|
|
@@ -83872,6 +83933,140 @@ class ModifyEipAddressAttributeResponse(TeaModel):
|
|
|
83872
83933
|
return self
|
|
83873
83934
|
|
|
83874
83935
|
|
|
83936
|
+
class ModifyEipForwardModeRequest(TeaModel):
|
|
83937
|
+
def __init__(
|
|
83938
|
+
self,
|
|
83939
|
+
client_token: str = None,
|
|
83940
|
+
instance_id: str = None,
|
|
83941
|
+
mode: str = None,
|
|
83942
|
+
owner_id: int = None,
|
|
83943
|
+
region_id: str = None,
|
|
83944
|
+
resource_owner_account: str = None,
|
|
83945
|
+
resource_owner_id: int = None,
|
|
83946
|
+
):
|
|
83947
|
+
self.client_token = client_token
|
|
83948
|
+
# This parameter is required.
|
|
83949
|
+
self.instance_id = instance_id
|
|
83950
|
+
# This parameter is required.
|
|
83951
|
+
self.mode = mode
|
|
83952
|
+
self.owner_id = owner_id
|
|
83953
|
+
# This parameter is required.
|
|
83954
|
+
self.region_id = region_id
|
|
83955
|
+
self.resource_owner_account = resource_owner_account
|
|
83956
|
+
self.resource_owner_id = resource_owner_id
|
|
83957
|
+
|
|
83958
|
+
def validate(self):
|
|
83959
|
+
pass
|
|
83960
|
+
|
|
83961
|
+
def to_map(self):
|
|
83962
|
+
_map = super().to_map()
|
|
83963
|
+
if _map is not None:
|
|
83964
|
+
return _map
|
|
83965
|
+
|
|
83966
|
+
result = dict()
|
|
83967
|
+
if self.client_token is not None:
|
|
83968
|
+
result['ClientToken'] = self.client_token
|
|
83969
|
+
if self.instance_id is not None:
|
|
83970
|
+
result['InstanceId'] = self.instance_id
|
|
83971
|
+
if self.mode is not None:
|
|
83972
|
+
result['Mode'] = self.mode
|
|
83973
|
+
if self.owner_id is not None:
|
|
83974
|
+
result['OwnerId'] = self.owner_id
|
|
83975
|
+
if self.region_id is not None:
|
|
83976
|
+
result['RegionId'] = self.region_id
|
|
83977
|
+
if self.resource_owner_account is not None:
|
|
83978
|
+
result['ResourceOwnerAccount'] = self.resource_owner_account
|
|
83979
|
+
if self.resource_owner_id is not None:
|
|
83980
|
+
result['ResourceOwnerId'] = self.resource_owner_id
|
|
83981
|
+
return result
|
|
83982
|
+
|
|
83983
|
+
def from_map(self, m: dict = None):
|
|
83984
|
+
m = m or dict()
|
|
83985
|
+
if m.get('ClientToken') is not None:
|
|
83986
|
+
self.client_token = m.get('ClientToken')
|
|
83987
|
+
if m.get('InstanceId') is not None:
|
|
83988
|
+
self.instance_id = m.get('InstanceId')
|
|
83989
|
+
if m.get('Mode') is not None:
|
|
83990
|
+
self.mode = m.get('Mode')
|
|
83991
|
+
if m.get('OwnerId') is not None:
|
|
83992
|
+
self.owner_id = m.get('OwnerId')
|
|
83993
|
+
if m.get('RegionId') is not None:
|
|
83994
|
+
self.region_id = m.get('RegionId')
|
|
83995
|
+
if m.get('ResourceOwnerAccount') is not None:
|
|
83996
|
+
self.resource_owner_account = m.get('ResourceOwnerAccount')
|
|
83997
|
+
if m.get('ResourceOwnerId') is not None:
|
|
83998
|
+
self.resource_owner_id = m.get('ResourceOwnerId')
|
|
83999
|
+
return self
|
|
84000
|
+
|
|
84001
|
+
|
|
84002
|
+
class ModifyEipForwardModeResponseBody(TeaModel):
|
|
84003
|
+
def __init__(
|
|
84004
|
+
self,
|
|
84005
|
+
request_id: str = None,
|
|
84006
|
+
):
|
|
84007
|
+
self.request_id = request_id
|
|
84008
|
+
|
|
84009
|
+
def validate(self):
|
|
84010
|
+
pass
|
|
84011
|
+
|
|
84012
|
+
def to_map(self):
|
|
84013
|
+
_map = super().to_map()
|
|
84014
|
+
if _map is not None:
|
|
84015
|
+
return _map
|
|
84016
|
+
|
|
84017
|
+
result = dict()
|
|
84018
|
+
if self.request_id is not None:
|
|
84019
|
+
result['RequestId'] = self.request_id
|
|
84020
|
+
return result
|
|
84021
|
+
|
|
84022
|
+
def from_map(self, m: dict = None):
|
|
84023
|
+
m = m or dict()
|
|
84024
|
+
if m.get('RequestId') is not None:
|
|
84025
|
+
self.request_id = m.get('RequestId')
|
|
84026
|
+
return self
|
|
84027
|
+
|
|
84028
|
+
|
|
84029
|
+
class ModifyEipForwardModeResponse(TeaModel):
|
|
84030
|
+
def __init__(
|
|
84031
|
+
self,
|
|
84032
|
+
headers: Dict[str, str] = None,
|
|
84033
|
+
status_code: int = None,
|
|
84034
|
+
body: ModifyEipForwardModeResponseBody = None,
|
|
84035
|
+
):
|
|
84036
|
+
self.headers = headers
|
|
84037
|
+
self.status_code = status_code
|
|
84038
|
+
self.body = body
|
|
84039
|
+
|
|
84040
|
+
def validate(self):
|
|
84041
|
+
if self.body:
|
|
84042
|
+
self.body.validate()
|
|
84043
|
+
|
|
84044
|
+
def to_map(self):
|
|
84045
|
+
_map = super().to_map()
|
|
84046
|
+
if _map is not None:
|
|
84047
|
+
return _map
|
|
84048
|
+
|
|
84049
|
+
result = dict()
|
|
84050
|
+
if self.headers is not None:
|
|
84051
|
+
result['headers'] = self.headers
|
|
84052
|
+
if self.status_code is not None:
|
|
84053
|
+
result['statusCode'] = self.status_code
|
|
84054
|
+
if self.body is not None:
|
|
84055
|
+
result['body'] = self.body.to_map()
|
|
84056
|
+
return result
|
|
84057
|
+
|
|
84058
|
+
def from_map(self, m: dict = None):
|
|
84059
|
+
m = m or dict()
|
|
84060
|
+
if m.get('headers') is not None:
|
|
84061
|
+
self.headers = m.get('headers')
|
|
84062
|
+
if m.get('statusCode') is not None:
|
|
84063
|
+
self.status_code = m.get('statusCode')
|
|
84064
|
+
if m.get('body') is not None:
|
|
84065
|
+
temp_model = ModifyEipForwardModeResponseBody()
|
|
84066
|
+
self.body = temp_model.from_map(m['body'])
|
|
84067
|
+
return self
|
|
84068
|
+
|
|
84069
|
+
|
|
83875
84070
|
class ModifyExpressCloudConnectionAttributeRequest(TeaModel):
|
|
83876
84071
|
def __init__(
|
|
83877
84072
|
self,
|
|
@@ -84898,6 +85093,8 @@ class ModifyFlowLogAttributeRequest(TeaModel):
|
|
|
84898
85093
|
self,
|
|
84899
85094
|
aggregation_interval: int = None,
|
|
84900
85095
|
description: str = None,
|
|
85096
|
+
disable_log_delivery: str = None,
|
|
85097
|
+
enable_traffic_analyze: str = None,
|
|
84901
85098
|
flow_log_id: str = None,
|
|
84902
85099
|
flow_log_name: str = None,
|
|
84903
85100
|
ip_version: str = None,
|
|
@@ -84906,6 +85103,7 @@ class ModifyFlowLogAttributeRequest(TeaModel):
|
|
|
84906
85103
|
region_id: str = None,
|
|
84907
85104
|
resource_owner_account: str = None,
|
|
84908
85105
|
resource_owner_id: int = None,
|
|
85106
|
+
traffic_analyzer_id: str = None,
|
|
84909
85107
|
):
|
|
84910
85108
|
# The new sampling interval of the flow log. Unit: minutes. Valid values: **1**, **5**, and **10**.
|
|
84911
85109
|
self.aggregation_interval = aggregation_interval
|
|
@@ -84913,6 +85111,8 @@ class ModifyFlowLogAttributeRequest(TeaModel):
|
|
|
84913
85111
|
#
|
|
84914
85112
|
# The description must be 1 to 256 characters in length and cannot start with `http://` or `https://`.
|
|
84915
85113
|
self.description = description
|
|
85114
|
+
self.disable_log_delivery = disable_log_delivery
|
|
85115
|
+
self.enable_traffic_analyze = enable_traffic_analyze
|
|
84916
85116
|
# The ID of the flow log.
|
|
84917
85117
|
#
|
|
84918
85118
|
# This parameter is required.
|
|
@@ -84932,6 +85132,7 @@ class ModifyFlowLogAttributeRequest(TeaModel):
|
|
|
84932
85132
|
self.region_id = region_id
|
|
84933
85133
|
self.resource_owner_account = resource_owner_account
|
|
84934
85134
|
self.resource_owner_id = resource_owner_id
|
|
85135
|
+
self.traffic_analyzer_id = traffic_analyzer_id
|
|
84935
85136
|
|
|
84936
85137
|
def validate(self):
|
|
84937
85138
|
pass
|
|
@@ -84946,6 +85147,10 @@ class ModifyFlowLogAttributeRequest(TeaModel):
|
|
|
84946
85147
|
result['AggregationInterval'] = self.aggregation_interval
|
|
84947
85148
|
if self.description is not None:
|
|
84948
85149
|
result['Description'] = self.description
|
|
85150
|
+
if self.disable_log_delivery is not None:
|
|
85151
|
+
result['DisableLogDelivery'] = self.disable_log_delivery
|
|
85152
|
+
if self.enable_traffic_analyze is not None:
|
|
85153
|
+
result['EnableTrafficAnalyze'] = self.enable_traffic_analyze
|
|
84949
85154
|
if self.flow_log_id is not None:
|
|
84950
85155
|
result['FlowLogId'] = self.flow_log_id
|
|
84951
85156
|
if self.flow_log_name is not None:
|
|
@@ -84962,6 +85167,8 @@ class ModifyFlowLogAttributeRequest(TeaModel):
|
|
|
84962
85167
|
result['ResourceOwnerAccount'] = self.resource_owner_account
|
|
84963
85168
|
if self.resource_owner_id is not None:
|
|
84964
85169
|
result['ResourceOwnerId'] = self.resource_owner_id
|
|
85170
|
+
if self.traffic_analyzer_id is not None:
|
|
85171
|
+
result['TrafficAnalyzerId'] = self.traffic_analyzer_id
|
|
84965
85172
|
return result
|
|
84966
85173
|
|
|
84967
85174
|
def from_map(self, m: dict = None):
|
|
@@ -84970,6 +85177,10 @@ class ModifyFlowLogAttributeRequest(TeaModel):
|
|
|
84970
85177
|
self.aggregation_interval = m.get('AggregationInterval')
|
|
84971
85178
|
if m.get('Description') is not None:
|
|
84972
85179
|
self.description = m.get('Description')
|
|
85180
|
+
if m.get('DisableLogDelivery') is not None:
|
|
85181
|
+
self.disable_log_delivery = m.get('DisableLogDelivery')
|
|
85182
|
+
if m.get('EnableTrafficAnalyze') is not None:
|
|
85183
|
+
self.enable_traffic_analyze = m.get('EnableTrafficAnalyze')
|
|
84973
85184
|
if m.get('FlowLogId') is not None:
|
|
84974
85185
|
self.flow_log_id = m.get('FlowLogId')
|
|
84975
85186
|
if m.get('FlowLogName') is not None:
|
|
@@ -84986,6 +85197,8 @@ class ModifyFlowLogAttributeRequest(TeaModel):
|
|
|
84986
85197
|
self.resource_owner_account = m.get('ResourceOwnerAccount')
|
|
84987
85198
|
if m.get('ResourceOwnerId') is not None:
|
|
84988
85199
|
self.resource_owner_id = m.get('ResourceOwnerId')
|
|
85200
|
+
if m.get('TrafficAnalyzerId') is not None:
|
|
85201
|
+
self.traffic_analyzer_id = m.get('TrafficAnalyzerId')
|
|
84989
85202
|
return self
|
|
84990
85203
|
|
|
84991
85204
|
|
|
@@ -87189,6 +87402,10 @@ class ModifyIpv6InternetBandwidthRequest(TeaModel):
|
|
|
87189
87402
|
#
|
|
87190
87403
|
# > 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.
|
|
87191
87404
|
self.client_token = client_token
|
|
87405
|
+
# Specifies whether to perform a dry run, without sending the actual request. Valid values:
|
|
87406
|
+
#
|
|
87407
|
+
# * **true**: pre-checks the request but does not create the IPv4 gateway. 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 code is returned. If the request passes the dry run, the `DryRunOperation` error code is returned.
|
|
87408
|
+
# * **false** (default): sends the API request. After the request passes the check, an HTTP 2xx status code is returned and the IPv4 gateway is created.
|
|
87192
87409
|
self.dry_run = dry_run
|
|
87193
87410
|
# The ID of the IPv6 address.
|
|
87194
87411
|
#
|
|
@@ -101273,13 +101490,29 @@ class TransformEipSegmentToPublicIpAddressPoolRequest(TeaModel):
|
|
|
101273
101490
|
region_id: str = None,
|
|
101274
101491
|
resource_group_id: str = None,
|
|
101275
101492
|
):
|
|
101493
|
+
# The client token that is used to ensure the idempotence of the request.
|
|
101494
|
+
#
|
|
101495
|
+
# You can use the client to generate the token, but you must make sure that the token is unique among all requests. The token can contain only ASCII characters.
|
|
101496
|
+
#
|
|
101497
|
+
# > If you do not specify this parameter, the system automatically uses the **request ID** as the **client token**. The **request ID** is different for each request.
|
|
101276
101498
|
self.client_token = client_token
|
|
101499
|
+
# The description of the IP address pool.
|
|
101500
|
+
#
|
|
101501
|
+
# The description must be 0 to 256 characters in length and cannot start with `http://` or `https://`.
|
|
101277
101502
|
self.description = description
|
|
101503
|
+
# The ID of the contiguous EIP group to be migrated.
|
|
101504
|
+
#
|
|
101278
101505
|
# This parameter is required.
|
|
101279
101506
|
self.instance_id = instance_id
|
|
101507
|
+
# The name of the IP address pool.
|
|
101508
|
+
#
|
|
101509
|
+
# The name must be 0 to 128 characters in length and cannot start with `http://` or `https://`.
|
|
101280
101510
|
self.name = name
|
|
101511
|
+
# The ID of the region to which the contiguous EIP group belongs. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/36063.html) operation to query the most recent region list.
|
|
101512
|
+
#
|
|
101281
101513
|
# This parameter is required.
|
|
101282
101514
|
self.region_id = region_id
|
|
101515
|
+
# The ID of the resource group to which the address pool belongs.
|
|
101283
101516
|
self.resource_group_id = resource_group_id
|
|
101284
101517
|
|
|
101285
101518
|
def validate(self):
|
|
@@ -101329,8 +101562,11 @@ class TransformEipSegmentToPublicIpAddressPoolResponseBody(TeaModel):
|
|
|
101329
101562
|
request_id: str = None,
|
|
101330
101563
|
resource_group_id: str = None,
|
|
101331
101564
|
):
|
|
101565
|
+
# The ID of the IP address pool.
|
|
101332
101566
|
self.public_ip_address_pool_id = public_ip_address_pool_id
|
|
101567
|
+
# The request ID.
|
|
101333
101568
|
self.request_id = request_id
|
|
101569
|
+
# The ID of the resource group to which the IP address pool belongs.
|
|
101334
101570
|
self.resource_group_id = resource_group_id
|
|
101335
101571
|
|
|
101336
101572
|
def validate(self):
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '6.10.3'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|