alibabacloud-vpc20160428 6.12.0__py3-none-any.whl → 6.13.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 +504 -24
- alibabacloud_vpc20160428/models.py +1455 -456
- {alibabacloud_vpc20160428-6.12.0.dist-info → alibabacloud_vpc20160428-6.13.0.dist-info}/METADATA +1 -1
- alibabacloud_vpc20160428-6.13.0.dist-info/RECORD +8 -0
- alibabacloud_vpc20160428-6.12.0.dist-info/RECORD +0 -8
- {alibabacloud_vpc20160428-6.12.0.dist-info → alibabacloud_vpc20160428-6.13.0.dist-info}/LICENSE +0 -0
- {alibabacloud_vpc20160428-6.12.0.dist-info → alibabacloud_vpc20160428-6.13.0.dist-info}/WHEEL +0 -0
- {alibabacloud_vpc20160428-6.12.0.dist-info → alibabacloud_vpc20160428-6.13.0.dist-info}/top_level.txt +0 -0
|
@@ -4121,6 +4121,8 @@ class Client(OpenApiClient):
|
|
|
4121
4121
|
runtime: util_models.RuntimeOptions,
|
|
4122
4122
|
) -> vpc_20160428_models.AttachDhcpOptionsSetToVpcResponse:
|
|
4123
4123
|
"""
|
|
4124
|
+
@summary 将DHCP选项集与VPC关联
|
|
4125
|
+
|
|
4124
4126
|
@description The **AttachDhcpOptionsSetToVpc** operation is asynchronous. After you send the request, the system returns a request ID. However, the operation is still being performed in the system background. You can call the [DescribeVpcAttribute](https://help.aliyun.com/document_detail/94565.html) operation to query the status of a DHCP options set:
|
|
4125
4127
|
If the DHCP options set is in the **Pending** state, the DHCP options set is being associated.
|
|
4126
4128
|
If the DHCP options set is in the **InUse** state, the DHCP options set is associated.
|
|
@@ -4175,6 +4177,8 @@ class Client(OpenApiClient):
|
|
|
4175
4177
|
runtime: util_models.RuntimeOptions,
|
|
4176
4178
|
) -> vpc_20160428_models.AttachDhcpOptionsSetToVpcResponse:
|
|
4177
4179
|
"""
|
|
4180
|
+
@summary 将DHCP选项集与VPC关联
|
|
4181
|
+
|
|
4178
4182
|
@description The **AttachDhcpOptionsSetToVpc** operation is asynchronous. After you send the request, the system returns a request ID. However, the operation is still being performed in the system background. You can call the [DescribeVpcAttribute](https://help.aliyun.com/document_detail/94565.html) operation to query the status of a DHCP options set:
|
|
4179
4183
|
If the DHCP options set is in the **Pending** state, the DHCP options set is being associated.
|
|
4180
4184
|
If the DHCP options set is in the **InUse** state, the DHCP options set is associated.
|
|
@@ -4228,6 +4232,8 @@ class Client(OpenApiClient):
|
|
|
4228
4232
|
request: vpc_20160428_models.AttachDhcpOptionsSetToVpcRequest,
|
|
4229
4233
|
) -> vpc_20160428_models.AttachDhcpOptionsSetToVpcResponse:
|
|
4230
4234
|
"""
|
|
4235
|
+
@summary 将DHCP选项集与VPC关联
|
|
4236
|
+
|
|
4231
4237
|
@description The **AttachDhcpOptionsSetToVpc** operation is asynchronous. After you send the request, the system returns a request ID. However, the operation is still being performed in the system background. You can call the [DescribeVpcAttribute](https://help.aliyun.com/document_detail/94565.html) operation to query the status of a DHCP options set:
|
|
4232
4238
|
If the DHCP options set is in the **Pending** state, the DHCP options set is being associated.
|
|
4233
4239
|
If the DHCP options set is in the **InUse** state, the DHCP options set is associated.
|
|
@@ -4244,6 +4250,8 @@ class Client(OpenApiClient):
|
|
|
4244
4250
|
request: vpc_20160428_models.AttachDhcpOptionsSetToVpcRequest,
|
|
4245
4251
|
) -> vpc_20160428_models.AttachDhcpOptionsSetToVpcResponse:
|
|
4246
4252
|
"""
|
|
4253
|
+
@summary 将DHCP选项集与VPC关联
|
|
4254
|
+
|
|
4247
4255
|
@description The **AttachDhcpOptionsSetToVpc** operation is asynchronous. After you send the request, the system returns a request ID. However, the operation is still being performed in the system background. You can call the [DescribeVpcAttribute](https://help.aliyun.com/document_detail/94565.html) operation to query the status of a DHCP options set:
|
|
4248
4256
|
If the DHCP options set is in the **Pending** state, the DHCP options set is being associated.
|
|
4249
4257
|
If the DHCP options set is in the **InUse** state, the DHCP options set is associated.
|
|
@@ -10653,6 +10661,10 @@ class Client(OpenApiClient):
|
|
|
10653
10661
|
query = {}
|
|
10654
10662
|
if not UtilClient.is_unset(request.auto_pay):
|
|
10655
10663
|
query['AutoPay'] = request.auto_pay
|
|
10664
|
+
if not UtilClient.is_unset(request.auto_renew):
|
|
10665
|
+
query['AutoRenew'] = request.auto_renew
|
|
10666
|
+
if not UtilClient.is_unset(request.auto_renew_duration):
|
|
10667
|
+
query['AutoRenewDuration'] = request.auto_renew_duration
|
|
10656
10668
|
if not UtilClient.is_unset(request.client_token):
|
|
10657
10669
|
query['ClientToken'] = request.client_token
|
|
10658
10670
|
if not UtilClient.is_unset(request.instance_charge_type):
|
|
@@ -10710,6 +10722,10 @@ class Client(OpenApiClient):
|
|
|
10710
10722
|
query = {}
|
|
10711
10723
|
if not UtilClient.is_unset(request.auto_pay):
|
|
10712
10724
|
query['AutoPay'] = request.auto_pay
|
|
10725
|
+
if not UtilClient.is_unset(request.auto_renew):
|
|
10726
|
+
query['AutoRenew'] = request.auto_renew
|
|
10727
|
+
if not UtilClient.is_unset(request.auto_renew_duration):
|
|
10728
|
+
query['AutoRenewDuration'] = request.auto_renew_duration
|
|
10713
10729
|
if not UtilClient.is_unset(request.client_token):
|
|
10714
10730
|
query['ClientToken'] = request.client_token
|
|
10715
10731
|
if not UtilClient.is_unset(request.instance_charge_type):
|
|
@@ -12251,8 +12267,8 @@ class Client(OpenApiClient):
|
|
|
12251
12267
|
If the VPN gateway is in the **updating** state, the SSL server is being created.
|
|
12252
12268
|
If the VPN gateway is in the **active** state, the SSL server is created.
|
|
12253
12269
|
You cannot repeatedly call the **CreateSslVpnServer** operation within the specified period of time.
|
|
12254
|
-
### [](#)Prerequisite
|
|
12255
|
-
A VPN gateway is created, and the SSL-VPN feature is enabled for the VPN gateway. For more information, see [CreateVpnGateway](https://help.aliyun.com/document_detail/2794049.html).
|
|
12270
|
+
### [](#prerequisite)[](#)Prerequisite
|
|
12271
|
+
A VPN gateway is created, and the SSL-VPN feature is enabled for the VPN gateway. For more information, see [CreateVpnGateway](https://help.aliyun.com/document_detail/2794049.html) .
|
|
12256
12272
|
If you want to enable two-factor authentication for the SSL server, make sure that the VPN gateway supports two-factor authentication. You may need to upgrade the VPN gateway. For more information, see [Two-factor authentication supports IDaaS EIAM 2.0](https://help.aliyun.com/document_detail/2785320.html).
|
|
12257
12273
|
|
|
12258
12274
|
@param request: CreateSslVpnServerRequest
|
|
@@ -12330,8 +12346,8 @@ class Client(OpenApiClient):
|
|
|
12330
12346
|
If the VPN gateway is in the **updating** state, the SSL server is being created.
|
|
12331
12347
|
If the VPN gateway is in the **active** state, the SSL server is created.
|
|
12332
12348
|
You cannot repeatedly call the **CreateSslVpnServer** operation within the specified period of time.
|
|
12333
|
-
### [](#)Prerequisite
|
|
12334
|
-
A VPN gateway is created, and the SSL-VPN feature is enabled for the VPN gateway. For more information, see [CreateVpnGateway](https://help.aliyun.com/document_detail/2794049.html).
|
|
12349
|
+
### [](#prerequisite)[](#)Prerequisite
|
|
12350
|
+
A VPN gateway is created, and the SSL-VPN feature is enabled for the VPN gateway. For more information, see [CreateVpnGateway](https://help.aliyun.com/document_detail/2794049.html) .
|
|
12335
12351
|
If you want to enable two-factor authentication for the SSL server, make sure that the VPN gateway supports two-factor authentication. You may need to upgrade the VPN gateway. For more information, see [Two-factor authentication supports IDaaS EIAM 2.0](https://help.aliyun.com/document_detail/2785320.html).
|
|
12336
12352
|
|
|
12337
12353
|
@param request: CreateSslVpnServerRequest
|
|
@@ -12408,8 +12424,8 @@ class Client(OpenApiClient):
|
|
|
12408
12424
|
If the VPN gateway is in the **updating** state, the SSL server is being created.
|
|
12409
12425
|
If the VPN gateway is in the **active** state, the SSL server is created.
|
|
12410
12426
|
You cannot repeatedly call the **CreateSslVpnServer** operation within the specified period of time.
|
|
12411
|
-
### [](#)Prerequisite
|
|
12412
|
-
A VPN gateway is created, and the SSL-VPN feature is enabled for the VPN gateway. For more information, see [CreateVpnGateway](https://help.aliyun.com/document_detail/2794049.html).
|
|
12427
|
+
### [](#prerequisite)[](#)Prerequisite
|
|
12428
|
+
A VPN gateway is created, and the SSL-VPN feature is enabled for the VPN gateway. For more information, see [CreateVpnGateway](https://help.aliyun.com/document_detail/2794049.html) .
|
|
12413
12429
|
If you want to enable two-factor authentication for the SSL server, make sure that the VPN gateway supports two-factor authentication. You may need to upgrade the VPN gateway. For more information, see [Two-factor authentication supports IDaaS EIAM 2.0](https://help.aliyun.com/document_detail/2785320.html).
|
|
12414
12430
|
|
|
12415
12431
|
@param request: CreateSslVpnServerRequest
|
|
@@ -12429,8 +12445,8 @@ class Client(OpenApiClient):
|
|
|
12429
12445
|
If the VPN gateway is in the **updating** state, the SSL server is being created.
|
|
12430
12446
|
If the VPN gateway is in the **active** state, the SSL server is created.
|
|
12431
12447
|
You cannot repeatedly call the **CreateSslVpnServer** operation within the specified period of time.
|
|
12432
|
-
### [](#)Prerequisite
|
|
12433
|
-
A VPN gateway is created, and the SSL-VPN feature is enabled for the VPN gateway. For more information, see [CreateVpnGateway](https://help.aliyun.com/document_detail/2794049.html).
|
|
12448
|
+
### [](#prerequisite)[](#)Prerequisite
|
|
12449
|
+
A VPN gateway is created, and the SSL-VPN feature is enabled for the VPN gateway. For more information, see [CreateVpnGateway](https://help.aliyun.com/document_detail/2794049.html) .
|
|
12434
12450
|
If you want to enable two-factor authentication for the SSL server, make sure that the VPN gateway supports two-factor authentication. You may need to upgrade the VPN gateway. For more information, see [Two-factor authentication supports IDaaS EIAM 2.0](https://help.aliyun.com/document_detail/2785320.html).
|
|
12435
12451
|
|
|
12436
12452
|
@param request: CreateSslVpnServerRequest
|
|
@@ -16687,6 +16703,130 @@ class Client(OpenApiClient):
|
|
|
16687
16703
|
runtime = util_models.RuntimeOptions()
|
|
16688
16704
|
return await self.delete_dhcp_options_set_with_options_async(request, runtime)
|
|
16689
16705
|
|
|
16706
|
+
def delete_express_connect_with_options(
|
|
16707
|
+
self,
|
|
16708
|
+
request: vpc_20160428_models.DeleteExpressConnectRequest,
|
|
16709
|
+
runtime: util_models.RuntimeOptions,
|
|
16710
|
+
) -> vpc_20160428_models.DeleteExpressConnectResponse:
|
|
16711
|
+
"""
|
|
16712
|
+
@summary Deletes a Express Connect instance, including the initiator and acceptor.
|
|
16713
|
+
|
|
16714
|
+
@param request: DeleteExpressConnectRequest
|
|
16715
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
16716
|
+
@return: DeleteExpressConnectResponse
|
|
16717
|
+
"""
|
|
16718
|
+
UtilClient.validate_model(request)
|
|
16719
|
+
query = {}
|
|
16720
|
+
if not UtilClient.is_unset(request.client_token):
|
|
16721
|
+
query['ClientToken'] = request.client_token
|
|
16722
|
+
if not UtilClient.is_unset(request.force):
|
|
16723
|
+
query['Force'] = request.force
|
|
16724
|
+
if not UtilClient.is_unset(request.owner_account):
|
|
16725
|
+
query['OwnerAccount'] = request.owner_account
|
|
16726
|
+
if not UtilClient.is_unset(request.owner_id):
|
|
16727
|
+
query['OwnerId'] = request.owner_id
|
|
16728
|
+
if not UtilClient.is_unset(request.region_id):
|
|
16729
|
+
query['RegionId'] = request.region_id
|
|
16730
|
+
if not UtilClient.is_unset(request.resource_owner_account):
|
|
16731
|
+
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
16732
|
+
if not UtilClient.is_unset(request.resource_owner_id):
|
|
16733
|
+
query['ResourceOwnerId'] = request.resource_owner_id
|
|
16734
|
+
if not UtilClient.is_unset(request.router_interface_id):
|
|
16735
|
+
query['RouterInterfaceId'] = request.router_interface_id
|
|
16736
|
+
req = open_api_models.OpenApiRequest(
|
|
16737
|
+
query=OpenApiUtilClient.query(query)
|
|
16738
|
+
)
|
|
16739
|
+
params = open_api_models.Params(
|
|
16740
|
+
action='DeleteExpressConnect',
|
|
16741
|
+
version='2016-04-28',
|
|
16742
|
+
protocol='HTTPS',
|
|
16743
|
+
pathname='/',
|
|
16744
|
+
method='POST',
|
|
16745
|
+
auth_type='AK',
|
|
16746
|
+
style='RPC',
|
|
16747
|
+
req_body_type='formData',
|
|
16748
|
+
body_type='json'
|
|
16749
|
+
)
|
|
16750
|
+
return TeaCore.from_map(
|
|
16751
|
+
vpc_20160428_models.DeleteExpressConnectResponse(),
|
|
16752
|
+
self.call_api(params, req, runtime)
|
|
16753
|
+
)
|
|
16754
|
+
|
|
16755
|
+
async def delete_express_connect_with_options_async(
|
|
16756
|
+
self,
|
|
16757
|
+
request: vpc_20160428_models.DeleteExpressConnectRequest,
|
|
16758
|
+
runtime: util_models.RuntimeOptions,
|
|
16759
|
+
) -> vpc_20160428_models.DeleteExpressConnectResponse:
|
|
16760
|
+
"""
|
|
16761
|
+
@summary Deletes a Express Connect instance, including the initiator and acceptor.
|
|
16762
|
+
|
|
16763
|
+
@param request: DeleteExpressConnectRequest
|
|
16764
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
16765
|
+
@return: DeleteExpressConnectResponse
|
|
16766
|
+
"""
|
|
16767
|
+
UtilClient.validate_model(request)
|
|
16768
|
+
query = {}
|
|
16769
|
+
if not UtilClient.is_unset(request.client_token):
|
|
16770
|
+
query['ClientToken'] = request.client_token
|
|
16771
|
+
if not UtilClient.is_unset(request.force):
|
|
16772
|
+
query['Force'] = request.force
|
|
16773
|
+
if not UtilClient.is_unset(request.owner_account):
|
|
16774
|
+
query['OwnerAccount'] = request.owner_account
|
|
16775
|
+
if not UtilClient.is_unset(request.owner_id):
|
|
16776
|
+
query['OwnerId'] = request.owner_id
|
|
16777
|
+
if not UtilClient.is_unset(request.region_id):
|
|
16778
|
+
query['RegionId'] = request.region_id
|
|
16779
|
+
if not UtilClient.is_unset(request.resource_owner_account):
|
|
16780
|
+
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
16781
|
+
if not UtilClient.is_unset(request.resource_owner_id):
|
|
16782
|
+
query['ResourceOwnerId'] = request.resource_owner_id
|
|
16783
|
+
if not UtilClient.is_unset(request.router_interface_id):
|
|
16784
|
+
query['RouterInterfaceId'] = request.router_interface_id
|
|
16785
|
+
req = open_api_models.OpenApiRequest(
|
|
16786
|
+
query=OpenApiUtilClient.query(query)
|
|
16787
|
+
)
|
|
16788
|
+
params = open_api_models.Params(
|
|
16789
|
+
action='DeleteExpressConnect',
|
|
16790
|
+
version='2016-04-28',
|
|
16791
|
+
protocol='HTTPS',
|
|
16792
|
+
pathname='/',
|
|
16793
|
+
method='POST',
|
|
16794
|
+
auth_type='AK',
|
|
16795
|
+
style='RPC',
|
|
16796
|
+
req_body_type='formData',
|
|
16797
|
+
body_type='json'
|
|
16798
|
+
)
|
|
16799
|
+
return TeaCore.from_map(
|
|
16800
|
+
vpc_20160428_models.DeleteExpressConnectResponse(),
|
|
16801
|
+
await self.call_api_async(params, req, runtime)
|
|
16802
|
+
)
|
|
16803
|
+
|
|
16804
|
+
def delete_express_connect(
|
|
16805
|
+
self,
|
|
16806
|
+
request: vpc_20160428_models.DeleteExpressConnectRequest,
|
|
16807
|
+
) -> vpc_20160428_models.DeleteExpressConnectResponse:
|
|
16808
|
+
"""
|
|
16809
|
+
@summary Deletes a Express Connect instance, including the initiator and acceptor.
|
|
16810
|
+
|
|
16811
|
+
@param request: DeleteExpressConnectRequest
|
|
16812
|
+
@return: DeleteExpressConnectResponse
|
|
16813
|
+
"""
|
|
16814
|
+
runtime = util_models.RuntimeOptions()
|
|
16815
|
+
return self.delete_express_connect_with_options(request, runtime)
|
|
16816
|
+
|
|
16817
|
+
async def delete_express_connect_async(
|
|
16818
|
+
self,
|
|
16819
|
+
request: vpc_20160428_models.DeleteExpressConnectRequest,
|
|
16820
|
+
) -> vpc_20160428_models.DeleteExpressConnectResponse:
|
|
16821
|
+
"""
|
|
16822
|
+
@summary Deletes a Express Connect instance, including the initiator and acceptor.
|
|
16823
|
+
|
|
16824
|
+
@param request: DeleteExpressConnectRequest
|
|
16825
|
+
@return: DeleteExpressConnectResponse
|
|
16826
|
+
"""
|
|
16827
|
+
runtime = util_models.RuntimeOptions()
|
|
16828
|
+
return await self.delete_express_connect_with_options_async(request, runtime)
|
|
16829
|
+
|
|
16690
16830
|
def delete_express_connect_traffic_qos_with_options(
|
|
16691
16831
|
self,
|
|
16692
16832
|
request: vpc_20160428_models.DeleteExpressConnectTrafficQosRequest,
|
|
@@ -26527,6 +26667,122 @@ class Client(OpenApiClient):
|
|
|
26527
26667
|
runtime = util_models.RuntimeOptions()
|
|
26528
26668
|
return await self.describe_grant_rules_to_cen_with_options_async(request, runtime)
|
|
26529
26669
|
|
|
26670
|
+
def describe_grant_rules_to_ecr_with_options(
|
|
26671
|
+
self,
|
|
26672
|
+
request: vpc_20160428_models.DescribeGrantRulesToEcrRequest,
|
|
26673
|
+
runtime: util_models.RuntimeOptions,
|
|
26674
|
+
) -> vpc_20160428_models.DescribeGrantRulesToEcrResponse:
|
|
26675
|
+
"""
|
|
26676
|
+
@summary Queries the cross-account authorization list of an Express Connect Router (ECR).
|
|
26677
|
+
|
|
26678
|
+
@param request: DescribeGrantRulesToEcrRequest
|
|
26679
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
26680
|
+
@return: DescribeGrantRulesToEcrResponse
|
|
26681
|
+
"""
|
|
26682
|
+
UtilClient.validate_model(request)
|
|
26683
|
+
query = {}
|
|
26684
|
+
if not UtilClient.is_unset(request.instance_id):
|
|
26685
|
+
query['InstanceId'] = request.instance_id
|
|
26686
|
+
if not UtilClient.is_unset(request.page_number):
|
|
26687
|
+
query['PageNumber'] = request.page_number
|
|
26688
|
+
if not UtilClient.is_unset(request.page_size):
|
|
26689
|
+
query['PageSize'] = request.page_size
|
|
26690
|
+
if not UtilClient.is_unset(request.region_id):
|
|
26691
|
+
query['RegionId'] = request.region_id
|
|
26692
|
+
if not UtilClient.is_unset(request.resource_group_id):
|
|
26693
|
+
query['ResourceGroupId'] = request.resource_group_id
|
|
26694
|
+
if not UtilClient.is_unset(request.tags):
|
|
26695
|
+
query['Tags'] = request.tags
|
|
26696
|
+
req = open_api_models.OpenApiRequest(
|
|
26697
|
+
query=OpenApiUtilClient.query(query)
|
|
26698
|
+
)
|
|
26699
|
+
params = open_api_models.Params(
|
|
26700
|
+
action='DescribeGrantRulesToEcr',
|
|
26701
|
+
version='2016-04-28',
|
|
26702
|
+
protocol='HTTPS',
|
|
26703
|
+
pathname='/',
|
|
26704
|
+
method='POST',
|
|
26705
|
+
auth_type='AK',
|
|
26706
|
+
style='RPC',
|
|
26707
|
+
req_body_type='formData',
|
|
26708
|
+
body_type='json'
|
|
26709
|
+
)
|
|
26710
|
+
return TeaCore.from_map(
|
|
26711
|
+
vpc_20160428_models.DescribeGrantRulesToEcrResponse(),
|
|
26712
|
+
self.call_api(params, req, runtime)
|
|
26713
|
+
)
|
|
26714
|
+
|
|
26715
|
+
async def describe_grant_rules_to_ecr_with_options_async(
|
|
26716
|
+
self,
|
|
26717
|
+
request: vpc_20160428_models.DescribeGrantRulesToEcrRequest,
|
|
26718
|
+
runtime: util_models.RuntimeOptions,
|
|
26719
|
+
) -> vpc_20160428_models.DescribeGrantRulesToEcrResponse:
|
|
26720
|
+
"""
|
|
26721
|
+
@summary Queries the cross-account authorization list of an Express Connect Router (ECR).
|
|
26722
|
+
|
|
26723
|
+
@param request: DescribeGrantRulesToEcrRequest
|
|
26724
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
26725
|
+
@return: DescribeGrantRulesToEcrResponse
|
|
26726
|
+
"""
|
|
26727
|
+
UtilClient.validate_model(request)
|
|
26728
|
+
query = {}
|
|
26729
|
+
if not UtilClient.is_unset(request.instance_id):
|
|
26730
|
+
query['InstanceId'] = request.instance_id
|
|
26731
|
+
if not UtilClient.is_unset(request.page_number):
|
|
26732
|
+
query['PageNumber'] = request.page_number
|
|
26733
|
+
if not UtilClient.is_unset(request.page_size):
|
|
26734
|
+
query['PageSize'] = request.page_size
|
|
26735
|
+
if not UtilClient.is_unset(request.region_id):
|
|
26736
|
+
query['RegionId'] = request.region_id
|
|
26737
|
+
if not UtilClient.is_unset(request.resource_group_id):
|
|
26738
|
+
query['ResourceGroupId'] = request.resource_group_id
|
|
26739
|
+
if not UtilClient.is_unset(request.tags):
|
|
26740
|
+
query['Tags'] = request.tags
|
|
26741
|
+
req = open_api_models.OpenApiRequest(
|
|
26742
|
+
query=OpenApiUtilClient.query(query)
|
|
26743
|
+
)
|
|
26744
|
+
params = open_api_models.Params(
|
|
26745
|
+
action='DescribeGrantRulesToEcr',
|
|
26746
|
+
version='2016-04-28',
|
|
26747
|
+
protocol='HTTPS',
|
|
26748
|
+
pathname='/',
|
|
26749
|
+
method='POST',
|
|
26750
|
+
auth_type='AK',
|
|
26751
|
+
style='RPC',
|
|
26752
|
+
req_body_type='formData',
|
|
26753
|
+
body_type='json'
|
|
26754
|
+
)
|
|
26755
|
+
return TeaCore.from_map(
|
|
26756
|
+
vpc_20160428_models.DescribeGrantRulesToEcrResponse(),
|
|
26757
|
+
await self.call_api_async(params, req, runtime)
|
|
26758
|
+
)
|
|
26759
|
+
|
|
26760
|
+
def describe_grant_rules_to_ecr(
|
|
26761
|
+
self,
|
|
26762
|
+
request: vpc_20160428_models.DescribeGrantRulesToEcrRequest,
|
|
26763
|
+
) -> vpc_20160428_models.DescribeGrantRulesToEcrResponse:
|
|
26764
|
+
"""
|
|
26765
|
+
@summary Queries the cross-account authorization list of an Express Connect Router (ECR).
|
|
26766
|
+
|
|
26767
|
+
@param request: DescribeGrantRulesToEcrRequest
|
|
26768
|
+
@return: DescribeGrantRulesToEcrResponse
|
|
26769
|
+
"""
|
|
26770
|
+
runtime = util_models.RuntimeOptions()
|
|
26771
|
+
return self.describe_grant_rules_to_ecr_with_options(request, runtime)
|
|
26772
|
+
|
|
26773
|
+
async def describe_grant_rules_to_ecr_async(
|
|
26774
|
+
self,
|
|
26775
|
+
request: vpc_20160428_models.DescribeGrantRulesToEcrRequest,
|
|
26776
|
+
) -> vpc_20160428_models.DescribeGrantRulesToEcrResponse:
|
|
26777
|
+
"""
|
|
26778
|
+
@summary Queries the cross-account authorization list of an Express Connect Router (ECR).
|
|
26779
|
+
|
|
26780
|
+
@param request: DescribeGrantRulesToEcrRequest
|
|
26781
|
+
@return: DescribeGrantRulesToEcrResponse
|
|
26782
|
+
"""
|
|
26783
|
+
runtime = util_models.RuntimeOptions()
|
|
26784
|
+
return await self.describe_grant_rules_to_ecr_with_options_async(request, runtime)
|
|
26785
|
+
|
|
26530
26786
|
def describe_ha_vips_with_options(
|
|
26531
26787
|
self,
|
|
26532
26788
|
request: vpc_20160428_models.DescribeHaVipsRequest,
|
|
@@ -27981,7 +28237,7 @@ class Client(OpenApiClient):
|
|
|
27981
28237
|
runtime: util_models.RuntimeOptions,
|
|
27982
28238
|
) -> vpc_20160428_models.DescribeNatGatewayAssociateNetworkInterfacesResponse:
|
|
27983
28239
|
"""
|
|
27984
|
-
@summary
|
|
28240
|
+
@summary Queries elastic network interfaces (ENIs) associated with a virtual private cloud (VPC) NAT gateway when the VPC NAT gateway serves as a PrivateLink service resource. This feature is not publicly available.
|
|
27985
28241
|
|
|
27986
28242
|
@param request: DescribeNatGatewayAssociateNetworkInterfacesRequest
|
|
27987
28243
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -28040,7 +28296,7 @@ class Client(OpenApiClient):
|
|
|
28040
28296
|
runtime: util_models.RuntimeOptions,
|
|
28041
28297
|
) -> vpc_20160428_models.DescribeNatGatewayAssociateNetworkInterfacesResponse:
|
|
28042
28298
|
"""
|
|
28043
|
-
@summary
|
|
28299
|
+
@summary Queries elastic network interfaces (ENIs) associated with a virtual private cloud (VPC) NAT gateway when the VPC NAT gateway serves as a PrivateLink service resource. This feature is not publicly available.
|
|
28044
28300
|
|
|
28045
28301
|
@param request: DescribeNatGatewayAssociateNetworkInterfacesRequest
|
|
28046
28302
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -28098,7 +28354,7 @@ class Client(OpenApiClient):
|
|
|
28098
28354
|
request: vpc_20160428_models.DescribeNatGatewayAssociateNetworkInterfacesRequest,
|
|
28099
28355
|
) -> vpc_20160428_models.DescribeNatGatewayAssociateNetworkInterfacesResponse:
|
|
28100
28356
|
"""
|
|
28101
|
-
@summary
|
|
28357
|
+
@summary Queries elastic network interfaces (ENIs) associated with a virtual private cloud (VPC) NAT gateway when the VPC NAT gateway serves as a PrivateLink service resource. This feature is not publicly available.
|
|
28102
28358
|
|
|
28103
28359
|
@param request: DescribeNatGatewayAssociateNetworkInterfacesRequest
|
|
28104
28360
|
@return: DescribeNatGatewayAssociateNetworkInterfacesResponse
|
|
@@ -28111,7 +28367,7 @@ class Client(OpenApiClient):
|
|
|
28111
28367
|
request: vpc_20160428_models.DescribeNatGatewayAssociateNetworkInterfacesRequest,
|
|
28112
28368
|
) -> vpc_20160428_models.DescribeNatGatewayAssociateNetworkInterfacesResponse:
|
|
28113
28369
|
"""
|
|
28114
|
-
@summary
|
|
28370
|
+
@summary Queries elastic network interfaces (ENIs) associated with a virtual private cloud (VPC) NAT gateway when the VPC NAT gateway serves as a PrivateLink service resource. This feature is not publicly available.
|
|
28115
28371
|
|
|
28116
28372
|
@param request: DescribeNatGatewayAssociateNetworkInterfacesRequest
|
|
28117
28373
|
@return: DescribeNatGatewayAssociateNetworkInterfacesResponse
|
|
@@ -32089,7 +32345,7 @@ class Client(OpenApiClient):
|
|
|
32089
32345
|
runtime: util_models.RuntimeOptions,
|
|
32090
32346
|
) -> vpc_20160428_models.DescribeVpcGrantRulesToEcrResponse:
|
|
32091
32347
|
"""
|
|
32092
|
-
@summary
|
|
32348
|
+
@summary Queries the cross-account authorization information of an ECR for a specified network instance.
|
|
32093
32349
|
|
|
32094
32350
|
@param request: DescribeVpcGrantRulesToEcrRequest
|
|
32095
32351
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -32148,7 +32404,7 @@ class Client(OpenApiClient):
|
|
|
32148
32404
|
runtime: util_models.RuntimeOptions,
|
|
32149
32405
|
) -> vpc_20160428_models.DescribeVpcGrantRulesToEcrResponse:
|
|
32150
32406
|
"""
|
|
32151
|
-
@summary
|
|
32407
|
+
@summary Queries the cross-account authorization information of an ECR for a specified network instance.
|
|
32152
32408
|
|
|
32153
32409
|
@param request: DescribeVpcGrantRulesToEcrRequest
|
|
32154
32410
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -32206,7 +32462,7 @@ class Client(OpenApiClient):
|
|
|
32206
32462
|
request: vpc_20160428_models.DescribeVpcGrantRulesToEcrRequest,
|
|
32207
32463
|
) -> vpc_20160428_models.DescribeVpcGrantRulesToEcrResponse:
|
|
32208
32464
|
"""
|
|
32209
|
-
@summary
|
|
32465
|
+
@summary Queries the cross-account authorization information of an ECR for a specified network instance.
|
|
32210
32466
|
|
|
32211
32467
|
@param request: DescribeVpcGrantRulesToEcrRequest
|
|
32212
32468
|
@return: DescribeVpcGrantRulesToEcrResponse
|
|
@@ -32219,7 +32475,7 @@ class Client(OpenApiClient):
|
|
|
32219
32475
|
request: vpc_20160428_models.DescribeVpcGrantRulesToEcrRequest,
|
|
32220
32476
|
) -> vpc_20160428_models.DescribeVpcGrantRulesToEcrResponse:
|
|
32221
32477
|
"""
|
|
32222
|
-
@summary
|
|
32478
|
+
@summary Queries the cross-account authorization information of an ECR for a specified network instance.
|
|
32223
32479
|
|
|
32224
32480
|
@param request: DescribeVpcGrantRulesToEcrRequest
|
|
32225
32481
|
@return: DescribeVpcGrantRulesToEcrResponse
|
|
@@ -37563,6 +37819,102 @@ class Client(OpenApiClient):
|
|
|
37563
37819
|
runtime = util_models.RuntimeOptions()
|
|
37564
37820
|
return await self.list_business_access_points_with_options_async(request, runtime)
|
|
37565
37821
|
|
|
37822
|
+
def list_business_regions_with_options(
|
|
37823
|
+
self,
|
|
37824
|
+
request: vpc_20160428_models.ListBusinessRegionsRequest,
|
|
37825
|
+
runtime: util_models.RuntimeOptions,
|
|
37826
|
+
) -> vpc_20160428_models.ListBusinessRegionsResponse:
|
|
37827
|
+
"""
|
|
37828
|
+
@summary Query the list of regions available for an Express Connect circuit.
|
|
37829
|
+
|
|
37830
|
+
@param request: ListBusinessRegionsRequest
|
|
37831
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
37832
|
+
@return: ListBusinessRegionsResponse
|
|
37833
|
+
"""
|
|
37834
|
+
UtilClient.validate_model(request)
|
|
37835
|
+
query = {}
|
|
37836
|
+
if not UtilClient.is_unset(request.accept_language):
|
|
37837
|
+
query['AcceptLanguage'] = request.accept_language
|
|
37838
|
+
req = open_api_models.OpenApiRequest(
|
|
37839
|
+
query=OpenApiUtilClient.query(query)
|
|
37840
|
+
)
|
|
37841
|
+
params = open_api_models.Params(
|
|
37842
|
+
action='ListBusinessRegions',
|
|
37843
|
+
version='2016-04-28',
|
|
37844
|
+
protocol='HTTPS',
|
|
37845
|
+
pathname='/',
|
|
37846
|
+
method='POST',
|
|
37847
|
+
auth_type='AK',
|
|
37848
|
+
style='RPC',
|
|
37849
|
+
req_body_type='formData',
|
|
37850
|
+
body_type='json'
|
|
37851
|
+
)
|
|
37852
|
+
return TeaCore.from_map(
|
|
37853
|
+
vpc_20160428_models.ListBusinessRegionsResponse(),
|
|
37854
|
+
self.call_api(params, req, runtime)
|
|
37855
|
+
)
|
|
37856
|
+
|
|
37857
|
+
async def list_business_regions_with_options_async(
|
|
37858
|
+
self,
|
|
37859
|
+
request: vpc_20160428_models.ListBusinessRegionsRequest,
|
|
37860
|
+
runtime: util_models.RuntimeOptions,
|
|
37861
|
+
) -> vpc_20160428_models.ListBusinessRegionsResponse:
|
|
37862
|
+
"""
|
|
37863
|
+
@summary Query the list of regions available for an Express Connect circuit.
|
|
37864
|
+
|
|
37865
|
+
@param request: ListBusinessRegionsRequest
|
|
37866
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
37867
|
+
@return: ListBusinessRegionsResponse
|
|
37868
|
+
"""
|
|
37869
|
+
UtilClient.validate_model(request)
|
|
37870
|
+
query = {}
|
|
37871
|
+
if not UtilClient.is_unset(request.accept_language):
|
|
37872
|
+
query['AcceptLanguage'] = request.accept_language
|
|
37873
|
+
req = open_api_models.OpenApiRequest(
|
|
37874
|
+
query=OpenApiUtilClient.query(query)
|
|
37875
|
+
)
|
|
37876
|
+
params = open_api_models.Params(
|
|
37877
|
+
action='ListBusinessRegions',
|
|
37878
|
+
version='2016-04-28',
|
|
37879
|
+
protocol='HTTPS',
|
|
37880
|
+
pathname='/',
|
|
37881
|
+
method='POST',
|
|
37882
|
+
auth_type='AK',
|
|
37883
|
+
style='RPC',
|
|
37884
|
+
req_body_type='formData',
|
|
37885
|
+
body_type='json'
|
|
37886
|
+
)
|
|
37887
|
+
return TeaCore.from_map(
|
|
37888
|
+
vpc_20160428_models.ListBusinessRegionsResponse(),
|
|
37889
|
+
await self.call_api_async(params, req, runtime)
|
|
37890
|
+
)
|
|
37891
|
+
|
|
37892
|
+
def list_business_regions(
|
|
37893
|
+
self,
|
|
37894
|
+
request: vpc_20160428_models.ListBusinessRegionsRequest,
|
|
37895
|
+
) -> vpc_20160428_models.ListBusinessRegionsResponse:
|
|
37896
|
+
"""
|
|
37897
|
+
@summary Query the list of regions available for an Express Connect circuit.
|
|
37898
|
+
|
|
37899
|
+
@param request: ListBusinessRegionsRequest
|
|
37900
|
+
@return: ListBusinessRegionsResponse
|
|
37901
|
+
"""
|
|
37902
|
+
runtime = util_models.RuntimeOptions()
|
|
37903
|
+
return self.list_business_regions_with_options(request, runtime)
|
|
37904
|
+
|
|
37905
|
+
async def list_business_regions_async(
|
|
37906
|
+
self,
|
|
37907
|
+
request: vpc_20160428_models.ListBusinessRegionsRequest,
|
|
37908
|
+
) -> vpc_20160428_models.ListBusinessRegionsResponse:
|
|
37909
|
+
"""
|
|
37910
|
+
@summary Query the list of regions available for an Express Connect circuit.
|
|
37911
|
+
|
|
37912
|
+
@param request: ListBusinessRegionsRequest
|
|
37913
|
+
@return: ListBusinessRegionsResponse
|
|
37914
|
+
"""
|
|
37915
|
+
runtime = util_models.RuntimeOptions()
|
|
37916
|
+
return await self.list_business_regions_with_options_async(request, runtime)
|
|
37917
|
+
|
|
37566
37918
|
def list_dhcp_options_sets_with_options(
|
|
37567
37919
|
self,
|
|
37568
37920
|
request: vpc_20160428_models.ListDhcpOptionsSetsRequest,
|
|
@@ -38751,6 +39103,8 @@ class Client(OpenApiClient):
|
|
|
38751
39103
|
query['ClientToken'] = request.client_token
|
|
38752
39104
|
if not UtilClient.is_unset(request.dry_run):
|
|
38753
39105
|
query['DryRun'] = request.dry_run
|
|
39106
|
+
if not UtilClient.is_unset(request.ip_origin):
|
|
39107
|
+
query['IpOrigin'] = request.ip_origin
|
|
38754
39108
|
if not UtilClient.is_unset(request.max_results):
|
|
38755
39109
|
query['MaxResults'] = request.max_results
|
|
38756
39110
|
if not UtilClient.is_unset(request.nat_gateway_id):
|
|
@@ -38814,6 +39168,8 @@ class Client(OpenApiClient):
|
|
|
38814
39168
|
query['ClientToken'] = request.client_token
|
|
38815
39169
|
if not UtilClient.is_unset(request.dry_run):
|
|
38816
39170
|
query['DryRun'] = request.dry_run
|
|
39171
|
+
if not UtilClient.is_unset(request.ip_origin):
|
|
39172
|
+
query['IpOrigin'] = request.ip_origin
|
|
38817
39173
|
if not UtilClient.is_unset(request.max_results):
|
|
38818
39174
|
query['MaxResults'] = request.max_results
|
|
38819
39175
|
if not UtilClient.is_unset(request.nat_gateway_id):
|
|
@@ -38885,6 +39241,126 @@ class Client(OpenApiClient):
|
|
|
38885
39241
|
runtime = util_models.RuntimeOptions()
|
|
38886
39242
|
return await self.list_nat_ips_with_options_async(request, runtime)
|
|
38887
39243
|
|
|
39244
|
+
def list_physical_connection_features_with_options(
|
|
39245
|
+
self,
|
|
39246
|
+
request: vpc_20160428_models.ListPhysicalConnectionFeaturesRequest,
|
|
39247
|
+
runtime: util_models.RuntimeOptions,
|
|
39248
|
+
) -> vpc_20160428_models.ListPhysicalConnectionFeaturesResponse:
|
|
39249
|
+
"""
|
|
39250
|
+
@summary Querying the connection features supported by a Express Connect circuit.
|
|
39251
|
+
|
|
39252
|
+
@param request: ListPhysicalConnectionFeaturesRequest
|
|
39253
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
39254
|
+
@return: ListPhysicalConnectionFeaturesResponse
|
|
39255
|
+
"""
|
|
39256
|
+
UtilClient.validate_model(request)
|
|
39257
|
+
query = {}
|
|
39258
|
+
if not UtilClient.is_unset(request.client_token):
|
|
39259
|
+
query['ClientToken'] = request.client_token
|
|
39260
|
+
if not UtilClient.is_unset(request.owner_account):
|
|
39261
|
+
query['OwnerAccount'] = request.owner_account
|
|
39262
|
+
if not UtilClient.is_unset(request.owner_id):
|
|
39263
|
+
query['OwnerId'] = request.owner_id
|
|
39264
|
+
if not UtilClient.is_unset(request.physical_connection_id):
|
|
39265
|
+
query['PhysicalConnectionId'] = request.physical_connection_id
|
|
39266
|
+
if not UtilClient.is_unset(request.region_id):
|
|
39267
|
+
query['RegionId'] = request.region_id
|
|
39268
|
+
if not UtilClient.is_unset(request.resource_owner_account):
|
|
39269
|
+
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
39270
|
+
if not UtilClient.is_unset(request.resource_owner_id):
|
|
39271
|
+
query['ResourceOwnerId'] = request.resource_owner_id
|
|
39272
|
+
req = open_api_models.OpenApiRequest(
|
|
39273
|
+
query=OpenApiUtilClient.query(query)
|
|
39274
|
+
)
|
|
39275
|
+
params = open_api_models.Params(
|
|
39276
|
+
action='ListPhysicalConnectionFeatures',
|
|
39277
|
+
version='2016-04-28',
|
|
39278
|
+
protocol='HTTPS',
|
|
39279
|
+
pathname='/',
|
|
39280
|
+
method='POST',
|
|
39281
|
+
auth_type='AK',
|
|
39282
|
+
style='RPC',
|
|
39283
|
+
req_body_type='formData',
|
|
39284
|
+
body_type='json'
|
|
39285
|
+
)
|
|
39286
|
+
return TeaCore.from_map(
|
|
39287
|
+
vpc_20160428_models.ListPhysicalConnectionFeaturesResponse(),
|
|
39288
|
+
self.call_api(params, req, runtime)
|
|
39289
|
+
)
|
|
39290
|
+
|
|
39291
|
+
async def list_physical_connection_features_with_options_async(
|
|
39292
|
+
self,
|
|
39293
|
+
request: vpc_20160428_models.ListPhysicalConnectionFeaturesRequest,
|
|
39294
|
+
runtime: util_models.RuntimeOptions,
|
|
39295
|
+
) -> vpc_20160428_models.ListPhysicalConnectionFeaturesResponse:
|
|
39296
|
+
"""
|
|
39297
|
+
@summary Querying the connection features supported by a Express Connect circuit.
|
|
39298
|
+
|
|
39299
|
+
@param request: ListPhysicalConnectionFeaturesRequest
|
|
39300
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
39301
|
+
@return: ListPhysicalConnectionFeaturesResponse
|
|
39302
|
+
"""
|
|
39303
|
+
UtilClient.validate_model(request)
|
|
39304
|
+
query = {}
|
|
39305
|
+
if not UtilClient.is_unset(request.client_token):
|
|
39306
|
+
query['ClientToken'] = request.client_token
|
|
39307
|
+
if not UtilClient.is_unset(request.owner_account):
|
|
39308
|
+
query['OwnerAccount'] = request.owner_account
|
|
39309
|
+
if not UtilClient.is_unset(request.owner_id):
|
|
39310
|
+
query['OwnerId'] = request.owner_id
|
|
39311
|
+
if not UtilClient.is_unset(request.physical_connection_id):
|
|
39312
|
+
query['PhysicalConnectionId'] = request.physical_connection_id
|
|
39313
|
+
if not UtilClient.is_unset(request.region_id):
|
|
39314
|
+
query['RegionId'] = request.region_id
|
|
39315
|
+
if not UtilClient.is_unset(request.resource_owner_account):
|
|
39316
|
+
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
39317
|
+
if not UtilClient.is_unset(request.resource_owner_id):
|
|
39318
|
+
query['ResourceOwnerId'] = request.resource_owner_id
|
|
39319
|
+
req = open_api_models.OpenApiRequest(
|
|
39320
|
+
query=OpenApiUtilClient.query(query)
|
|
39321
|
+
)
|
|
39322
|
+
params = open_api_models.Params(
|
|
39323
|
+
action='ListPhysicalConnectionFeatures',
|
|
39324
|
+
version='2016-04-28',
|
|
39325
|
+
protocol='HTTPS',
|
|
39326
|
+
pathname='/',
|
|
39327
|
+
method='POST',
|
|
39328
|
+
auth_type='AK',
|
|
39329
|
+
style='RPC',
|
|
39330
|
+
req_body_type='formData',
|
|
39331
|
+
body_type='json'
|
|
39332
|
+
)
|
|
39333
|
+
return TeaCore.from_map(
|
|
39334
|
+
vpc_20160428_models.ListPhysicalConnectionFeaturesResponse(),
|
|
39335
|
+
await self.call_api_async(params, req, runtime)
|
|
39336
|
+
)
|
|
39337
|
+
|
|
39338
|
+
def list_physical_connection_features(
|
|
39339
|
+
self,
|
|
39340
|
+
request: vpc_20160428_models.ListPhysicalConnectionFeaturesRequest,
|
|
39341
|
+
) -> vpc_20160428_models.ListPhysicalConnectionFeaturesResponse:
|
|
39342
|
+
"""
|
|
39343
|
+
@summary Querying the connection features supported by a Express Connect circuit.
|
|
39344
|
+
|
|
39345
|
+
@param request: ListPhysicalConnectionFeaturesRequest
|
|
39346
|
+
@return: ListPhysicalConnectionFeaturesResponse
|
|
39347
|
+
"""
|
|
39348
|
+
runtime = util_models.RuntimeOptions()
|
|
39349
|
+
return self.list_physical_connection_features_with_options(request, runtime)
|
|
39350
|
+
|
|
39351
|
+
async def list_physical_connection_features_async(
|
|
39352
|
+
self,
|
|
39353
|
+
request: vpc_20160428_models.ListPhysicalConnectionFeaturesRequest,
|
|
39354
|
+
) -> vpc_20160428_models.ListPhysicalConnectionFeaturesResponse:
|
|
39355
|
+
"""
|
|
39356
|
+
@summary Querying the connection features supported by a Express Connect circuit.
|
|
39357
|
+
|
|
39358
|
+
@param request: ListPhysicalConnectionFeaturesRequest
|
|
39359
|
+
@return: ListPhysicalConnectionFeaturesResponse
|
|
39360
|
+
"""
|
|
39361
|
+
runtime = util_models.RuntimeOptions()
|
|
39362
|
+
return await self.list_physical_connection_features_with_options_async(request, runtime)
|
|
39363
|
+
|
|
38888
39364
|
def list_prefix_lists_with_options(
|
|
38889
39365
|
self,
|
|
38890
39366
|
request: vpc_20160428_models.ListPrefixListsRequest,
|
|
@@ -47337,6 +47813,8 @@ class Client(OpenApiClient):
|
|
|
47337
47813
|
query['MinRxInterval'] = request.min_rx_interval
|
|
47338
47814
|
if not UtilClient.is_unset(request.min_tx_interval):
|
|
47339
47815
|
query['MinTxInterval'] = request.min_tx_interval
|
|
47816
|
+
if not UtilClient.is_unset(request.mtu):
|
|
47817
|
+
query['Mtu'] = request.mtu
|
|
47340
47818
|
if not UtilClient.is_unset(request.name):
|
|
47341
47819
|
query['Name'] = request.name
|
|
47342
47820
|
if not UtilClient.is_unset(request.owner_account):
|
|
@@ -47426,6 +47904,8 @@ class Client(OpenApiClient):
|
|
|
47426
47904
|
query['MinRxInterval'] = request.min_rx_interval
|
|
47427
47905
|
if not UtilClient.is_unset(request.min_tx_interval):
|
|
47428
47906
|
query['MinTxInterval'] = request.min_tx_interval
|
|
47907
|
+
if not UtilClient.is_unset(request.mtu):
|
|
47908
|
+
query['Mtu'] = request.mtu
|
|
47429
47909
|
if not UtilClient.is_unset(request.name):
|
|
47430
47910
|
query['Name'] = request.name
|
|
47431
47911
|
if not UtilClient.is_unset(request.owner_account):
|
|
@@ -49611,7 +50091,7 @@ class Client(OpenApiClient):
|
|
|
49611
50091
|
runtime: util_models.RuntimeOptions,
|
|
49612
50092
|
) -> vpc_20160428_models.OpenPublicIpAddressPoolServiceResponse:
|
|
49613
50093
|
"""
|
|
49614
|
-
@summary
|
|
50094
|
+
@summary Enables the IP address pool feature.
|
|
49615
50095
|
|
|
49616
50096
|
@param request: OpenPublicIpAddressPoolServiceRequest
|
|
49617
50097
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -49658,7 +50138,7 @@ class Client(OpenApiClient):
|
|
|
49658
50138
|
runtime: util_models.RuntimeOptions,
|
|
49659
50139
|
) -> vpc_20160428_models.OpenPublicIpAddressPoolServiceResponse:
|
|
49660
50140
|
"""
|
|
49661
|
-
@summary
|
|
50141
|
+
@summary Enables the IP address pool feature.
|
|
49662
50142
|
|
|
49663
50143
|
@param request: OpenPublicIpAddressPoolServiceRequest
|
|
49664
50144
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -49704,7 +50184,7 @@ class Client(OpenApiClient):
|
|
|
49704
50184
|
request: vpc_20160428_models.OpenPublicIpAddressPoolServiceRequest,
|
|
49705
50185
|
) -> vpc_20160428_models.OpenPublicIpAddressPoolServiceResponse:
|
|
49706
50186
|
"""
|
|
49707
|
-
@summary
|
|
50187
|
+
@summary Enables the IP address pool feature.
|
|
49708
50188
|
|
|
49709
50189
|
@param request: OpenPublicIpAddressPoolServiceRequest
|
|
49710
50190
|
@return: OpenPublicIpAddressPoolServiceResponse
|
|
@@ -49717,7 +50197,7 @@ class Client(OpenApiClient):
|
|
|
49717
50197
|
request: vpc_20160428_models.OpenPublicIpAddressPoolServiceRequest,
|
|
49718
50198
|
) -> vpc_20160428_models.OpenPublicIpAddressPoolServiceResponse:
|
|
49719
50199
|
"""
|
|
49720
|
-
@summary
|
|
50200
|
+
@summary Enables the IP address pool feature.
|
|
49721
50201
|
|
|
49722
50202
|
@param request: OpenPublicIpAddressPoolServiceRequest
|
|
49723
50203
|
@return: OpenPublicIpAddressPoolServiceResponse
|
|
@@ -53023,7 +53503,7 @@ class Client(OpenApiClient):
|
|
|
53023
53503
|
runtime: util_models.RuntimeOptions,
|
|
53024
53504
|
) -> vpc_20160428_models.TransformEipSegmentToPublicIpAddressPoolResponse:
|
|
53025
53505
|
"""
|
|
53026
|
-
@summary Migrate contiguous EIP
|
|
53506
|
+
@summary Migrate a contiguous EIP group to an IP address pool.
|
|
53027
53507
|
|
|
53028
53508
|
@param request: TransformEipSegmentToPublicIpAddressPoolRequest
|
|
53029
53509
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -53068,7 +53548,7 @@ class Client(OpenApiClient):
|
|
|
53068
53548
|
runtime: util_models.RuntimeOptions,
|
|
53069
53549
|
) -> vpc_20160428_models.TransformEipSegmentToPublicIpAddressPoolResponse:
|
|
53070
53550
|
"""
|
|
53071
|
-
@summary Migrate contiguous EIP
|
|
53551
|
+
@summary Migrate a contiguous EIP group to an IP address pool.
|
|
53072
53552
|
|
|
53073
53553
|
@param request: TransformEipSegmentToPublicIpAddressPoolRequest
|
|
53074
53554
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -53112,7 +53592,7 @@ class Client(OpenApiClient):
|
|
|
53112
53592
|
request: vpc_20160428_models.TransformEipSegmentToPublicIpAddressPoolRequest,
|
|
53113
53593
|
) -> vpc_20160428_models.TransformEipSegmentToPublicIpAddressPoolResponse:
|
|
53114
53594
|
"""
|
|
53115
|
-
@summary Migrate contiguous EIP
|
|
53595
|
+
@summary Migrate a contiguous EIP group to an IP address pool.
|
|
53116
53596
|
|
|
53117
53597
|
@param request: TransformEipSegmentToPublicIpAddressPoolRequest
|
|
53118
53598
|
@return: TransformEipSegmentToPublicIpAddressPoolResponse
|
|
@@ -53125,7 +53605,7 @@ class Client(OpenApiClient):
|
|
|
53125
53605
|
request: vpc_20160428_models.TransformEipSegmentToPublicIpAddressPoolRequest,
|
|
53126
53606
|
) -> vpc_20160428_models.TransformEipSegmentToPublicIpAddressPoolResponse:
|
|
53127
53607
|
"""
|
|
53128
|
-
@summary Migrate contiguous EIP
|
|
53608
|
+
@summary Migrate a contiguous EIP group to an IP address pool.
|
|
53129
53609
|
|
|
53130
53610
|
@param request: TransformEipSegmentToPublicIpAddressPoolRequest
|
|
53131
53611
|
@return: TransformEipSegmentToPublicIpAddressPoolResponse
|