alibabacloud-vpc20160428 6.7.1__py3-none-any.whl → 6.7.3__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.
@@ -2374,6 +2374,10 @@ class AllocateIpv6AddressRequest(TeaModel):
2374
2374
  tag: List[AllocateIpv6AddressRequestTag] = None,
2375
2375
  v_switch_id: str = None,
2376
2376
  ):
2377
+ # The type of the IPv6 address. Valid values:
2378
+ #
2379
+ # * IPv6Address (default): an IPv6 address.
2380
+ # * IPv6Prefix: an IPv6 CIDR block.
2377
2381
  self.address_type = address_type
2378
2382
  # The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters.
2379
2383
  #
@@ -2582,6 +2586,7 @@ class AllocateIpv6InternetBandwidthRequest(TeaModel):
2582
2586
  self,
2583
2587
  bandwidth: int = None,
2584
2588
  client_token: str = None,
2589
+ dry_run: bool = None,
2585
2590
  internet_charge_type: str = None,
2586
2591
  ipv_6address_id: str = None,
2587
2592
  ipv_6gateway_id: str = None,
@@ -2601,6 +2606,7 @@ class AllocateIpv6InternetBandwidthRequest(TeaModel):
2601
2606
  #
2602
2607
  # > 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.
2603
2608
  self.client_token = client_token
2609
+ self.dry_run = dry_run
2604
2610
  # The metering method of the Internet bandwidth for the IPv6 address. Valid values:
2605
2611
  #
2606
2612
  # * **PayByTraffic**: pay-by-data-transfer
@@ -2636,6 +2642,8 @@ class AllocateIpv6InternetBandwidthRequest(TeaModel):
2636
2642
  result['Bandwidth'] = self.bandwidth
2637
2643
  if self.client_token is not None:
2638
2644
  result['ClientToken'] = self.client_token
2645
+ if self.dry_run is not None:
2646
+ result['DryRun'] = self.dry_run
2639
2647
  if self.internet_charge_type is not None:
2640
2648
  result['InternetChargeType'] = self.internet_charge_type
2641
2649
  if self.ipv_6address_id is not None:
@@ -2660,6 +2668,8 @@ class AllocateIpv6InternetBandwidthRequest(TeaModel):
2660
2668
  self.bandwidth = m.get('Bandwidth')
2661
2669
  if m.get('ClientToken') is not None:
2662
2670
  self.client_token = m.get('ClientToken')
2671
+ if m.get('DryRun') is not None:
2672
+ self.dry_run = m.get('DryRun')
2663
2673
  if m.get('InternetChargeType') is not None:
2664
2674
  self.internet_charge_type = m.get('InternetChargeType')
2665
2675
  if m.get('Ipv6AddressId') is not None:
@@ -8647,11 +8657,26 @@ class CreateExpressConnectTrafficQosRequest(TeaModel):
8647
8657
  region_id: str = None,
8648
8658
  resource_owner_account: str = None,
8649
8659
  ):
8660
+ # The client token that is used to ensure the idempotence of the request.
8661
+ #
8662
+ # You can use the client to generate the value, but you must make sure that it is unique among different requests. The token can contain only ASCII characters.
8663
+ #
8664
+ # > If you do not specify this parameter, **ClientToken** is set to the value of **RequestId**. The value of **RequestId** in each API request may be different.
8650
8665
  self.client_token = client_token
8651
8666
  self.owner_account = owner_account
8652
8667
  self.owner_id = owner_id
8668
+ # The description of the QoS policy.
8669
+ #
8670
+ # The description must be 0 to 256 characters in length and cannot start with `http://` or `https://`.
8653
8671
  self.qos_description = qos_description
8672
+ # The name of the QoS policy.
8673
+ #
8674
+ # The name must be 0 to 128 characters in length and cannot start with `http://` or `https://`.
8654
8675
  self.qos_name = qos_name
8676
+ # The region ID of the QoS policy.
8677
+ #
8678
+ # You can call the [DescribeRegions](https://help.aliyun.com/document_detail/36063.html) operation to query the most recent region list.
8679
+ #
8655
8680
  # This parameter is required.
8656
8681
  self.region_id = region_id
8657
8682
  self.resource_owner_account = resource_owner_account
@@ -8706,7 +8731,9 @@ class CreateExpressConnectTrafficQosResponseBody(TeaModel):
8706
8731
  qos_id: str = None,
8707
8732
  request_id: str = None,
8708
8733
  ):
8734
+ # The ID of the QoS policy.
8709
8735
  self.qos_id = qos_id
8736
+ # The ID of the request.
8710
8737
  self.request_id = request_id
8711
8738
 
8712
8739
  def validate(self):
@@ -8788,16 +8815,45 @@ class CreateExpressConnectTrafficQosQueueRequest(TeaModel):
8788
8815
  region_id: str = None,
8789
8816
  resource_owner_account: str = None,
8790
8817
  ):
8818
+ # The percentage of bandwidth allocated to the QoS queue.
8819
+ #
8820
+ # * If QueueType is set to **Medium**, this parameter is required. Valid values: 1 to 100.
8821
+ # * If QueueType is set to **Default**, a value of - is returned.
8791
8822
  self.bandwidth_percent = bandwidth_percent
8823
+ # The client token that is used to ensure the idempotence of the request.
8824
+ #
8825
+ # You can use the client to generate the value, but you must make sure that it is unique among all requests. ClientToken can contain only ASCII characters.
8826
+ #
8827
+ # > If you do not specify this parameter, **ClientToken** is set to the value of **RequestId**. The value of **RequestId** for each API request may be different.
8792
8828
  self.client_token = client_token
8793
8829
  self.owner_account = owner_account
8794
8830
  self.owner_id = owner_id
8831
+ # The ID of the QoS policy.
8832
+ #
8795
8833
  # This parameter is required.
8796
8834
  self.qos_id = qos_id
8835
+ # The description of the QoS queue.
8836
+ #
8837
+ # It must be 0 to 256 characters in length and cannot start with `http://` or `https://`.
8797
8838
  self.queue_description = queue_description
8839
+ # The name of the QoS queue.
8840
+ #
8841
+ # It must be 0 to 128 characters in length and cannot start with `http://` or `https://`.
8798
8842
  self.queue_name = queue_name
8843
+ # The priority of the QoS queue. Valid values:
8844
+ #
8845
+ # * **High**\
8846
+ # * **Medium**\
8847
+ # * **Default**: default queue.
8848
+ #
8849
+ # > You cannot create a QoS queue of the default priority.
8850
+ #
8799
8851
  # This parameter is required.
8800
8852
  self.queue_type = queue_type
8853
+ # The region ID of the QoS policy.
8854
+ #
8855
+ # You can call the [DescribeRegions](https://help.aliyun.com/document_detail/36063.html) operation to query the most recent region list.
8856
+ #
8801
8857
  # This parameter is required.
8802
8858
  self.region_id = region_id
8803
8859
  self.resource_owner_account = resource_owner_account
@@ -8865,8 +8921,11 @@ class CreateExpressConnectTrafficQosQueueResponseBody(TeaModel):
8865
8921
  queue_id: str = None,
8866
8922
  request_id: str = None,
8867
8923
  ):
8924
+ # The ID of the QoS policy.
8868
8925
  self.qos_id = qos_id
8926
+ # The ID of the QoS queue.
8869
8927
  self.queue_id = queue_id
8928
+ # The request ID.
8870
8929
  self.request_id = request_id
8871
8930
 
8872
8931
  def validate(self):
@@ -8961,29 +9020,102 @@ class CreateExpressConnectTrafficQosRuleRequest(TeaModel):
8961
9020
  src_ipv_6cidr: str = None,
8962
9021
  src_port_range: str = None,
8963
9022
  ):
9023
+ # The client token that is used to ensure the idempotence of the request.
9024
+ #
9025
+ # You can use the client to generate a token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters.
9026
+ #
9027
+ # > 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.
8964
9028
  self.client_token = client_token
9029
+ # The destination IPv4 CIDR block that matches the QoS rule traffic.
9030
+ #
9031
+ # > When this parameter is unavailable, specify **SrcIPv6Cidr** or **DstIPv6Cidr**.
8965
9032
  self.dst_cidr = dst_cidr
9033
+ # The destination IPv6 CIDR block that matches the QoS rule traffic.
9034
+ #
9035
+ # > When this parameter is unavailable, specify **SrcCidr** or **DstCidr**.
8966
9036
  self.dst_ipv_6cidr = dst_ipv_6cidr
9037
+ # The range of destination ports that match the QoS rule traffic. Valid values: **0** to **65535**. If the traffic does not match, the value is -1. You can specify only one port. The start port number must be the same as the end port number. Different protocols correspond to different ports. Valid values:
9038
+ #
9039
+ # * **ALL** (uneditable): -1/-1.
9040
+ # * **ICMP(IPv4)** (uneditable): -1/-1.
9041
+ # * **ICMPv6(IPv6)** (uneditable): -1/-1.
9042
+ # * **TCP** (editable): -1/-1.
9043
+ # * **UDP** (editable): -1/-1.
9044
+ # * **GRE** (uneditable): -1/-1.
9045
+ # * **SSH** (uneditable): 22/22.
9046
+ # * **Telnet** (uneditable): 23/23.
9047
+ # * **HTTP** (uneditable): 80/80.
9048
+ # * **HTTPS** (uneditable): 443/443.
9049
+ # * **MS SQL** (uneditable): 1443/1443.
9050
+ # * **Oracle** (uneditable): 1521/1521.
9051
+ # * **MySql** (uneditable): 3306/3306.
9052
+ # * **RDP** (uneditable): 3389/3389.
9053
+ # * **PostgreSQL** (uneditable): 5432/5432.
9054
+ # * **Redis** (uneditable): 6379/6379.
8967
9055
  self.dst_port_range = dst_port_range
9056
+ # The DSCP value that matches the QoS rule traffic. Valid values: **0** to **63**. If no value is matched, the value is -1.
8968
9057
  self.match_dscp = match_dscp
8969
9058
  self.owner_account = owner_account
8970
9059
  self.owner_id = owner_id
9060
+ # The priority of the QoS rule. Valid values: **1** to **9000**. A larger value indicates a higher priority. The priority of each QoS rule must be unique in the same QoS policy.
9061
+ #
8971
9062
  # This parameter is required.
8972
9063
  self.priority = priority
9064
+ # The protocol of the QoS rule. Valid values:
9065
+ #
9066
+ # * **ALL**\
9067
+ # * **ICMP(IPv4)**\
9068
+ # * **ICMPv6(IPv6)**\
9069
+ # * **TCP**\
9070
+ # * **UDP**\
9071
+ # * **GRE**\
9072
+ # * **SSH**\
9073
+ # * **Telnet**\
9074
+ # * **HTTP**\
9075
+ # * **HTTPS**\
9076
+ # * **MS SQL**\
9077
+ # * **Oracle**\
9078
+ # * **MySql**\
9079
+ # * **RDP**\
9080
+ # * **PostgreSQL**\
9081
+ # * **Redis**\
9082
+ #
8973
9083
  # This parameter is required.
8974
9084
  self.protocol = protocol
9085
+ # The ID of the QoS policy.
9086
+ #
8975
9087
  # This parameter is required.
8976
9088
  self.qos_id = qos_id
9089
+ # The ID of the QoS queue.
9090
+ #
8977
9091
  # This parameter is required.
8978
9092
  self.queue_id = queue_id
9093
+ # The region ID of the QoS policy.
9094
+ #
9095
+ # You can call the [DescribeRegions](https://help.aliyun.com/document_detail/36063.html) operation to query the most recent region list.
9096
+ #
8979
9097
  # This parameter is required.
8980
9098
  self.region_id = region_id
9099
+ # The new DSCP value. Valid values: **0** to **63**. If you do not change the value, set the value to -1.
8981
9100
  self.remarking_dscp = remarking_dscp
8982
9101
  self.resource_owner_account = resource_owner_account
9102
+ # The description of the QoS rule.
9103
+ #
9104
+ # The description must be 0 to 256 characters in length and cannot start with `http://` or `https://`.
8983
9105
  self.rule_description = rule_description
9106
+ # The name of the QoS rule.
9107
+ #
9108
+ # The name must be 0 to 128 characters in length and cannot start with `http://` or `https://`.
8984
9109
  self.rule_name = rule_name
9110
+ # The source IPv4 CIDR block that matches the QoS rule traffic.
9111
+ #
9112
+ # > When this parameter is unavailable, specify **SrcIPv6Cidr** or **DstIPv6Cidr**.
8985
9113
  self.src_cidr = src_cidr
9114
+ # The source IPv6 CIDR block that matches the QoS rule traffic.
9115
+ #
9116
+ # > When this parameter is unavailable, specify **SrcCidr** or **DstCidr**.
8986
9117
  self.src_ipv_6cidr = src_ipv_6cidr
9118
+ # The range of source ports that match the QoS rule traffic. Valid values: **0** to **65535**. If the traffic does not match, the value is -1. You can specify only one port. The start port number must be the same as the end port number.
8987
9119
  self.src_port_range = src_port_range
8988
9120
 
8989
9121
  def validate(self):
@@ -9086,9 +9218,13 @@ class CreateExpressConnectTrafficQosRuleResponseBody(TeaModel):
9086
9218
  request_id: str = None,
9087
9219
  rule_id: str = None,
9088
9220
  ):
9221
+ # The ID of the QoS policy.
9089
9222
  self.qos_id = qos_id
9223
+ # The ID of the QoS queue.
9090
9224
  self.queue_id = queue_id
9225
+ # The request ID.
9091
9226
  self.request_id = request_id
9227
+ # The ID of the QoS rule.
9092
9228
  self.rule_id = rule_id
9093
9229
 
9094
9230
  def validate(self):
@@ -14606,16 +14742,16 @@ class CreatePhysicalConnectionSetupOrderRequest(TeaModel):
14606
14742
  #
14607
14743
  # This parameter is required.
14608
14744
  self.access_point_id = access_point_id
14609
- # Specifies whether to enable automatic payment. Valid values:
14745
+ # Specifies whether to enable automatic payments. Valid values:
14610
14746
  #
14611
14747
  # * **false** (default): disables automatic payment.
14612
- # * **true**: enables automatic payment.
14748
+ # * **true**\
14613
14749
  self.auto_pay = auto_pay
14614
14750
  # The client token that is used to ensure the idempotence of the request.
14615
14751
  #
14616
- # You can use the client to generate the value, but you must make sure that it is unique among different requests. ClientToken can contain only ASCII characters.
14752
+ # You can use the client to generate the token, but you must make sure that the token is unique among different requests. The client token can contain only ASCII characters.
14617
14753
  #
14618
- # > If you do not set this parameter, the system automatically uses **RequestId** as **ClientToken**. **RequestId** of each API request may be different.
14754
+ # > 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.
14619
14755
  self.client_token = client_token
14620
14756
  # The connectivity provider of the Express Connect circuit. Valid values:
14621
14757
  #
@@ -14630,7 +14766,7 @@ class CreatePhysicalConnectionSetupOrderRequest(TeaModel):
14630
14766
  self.line_operator = line_operator
14631
14767
  self.owner_account = owner_account
14632
14768
  self.owner_id = owner_id
14633
- # The port type. Valid values:
14769
+ # The port type of the Express Connect circuit. Valid values:
14634
14770
  #
14635
14771
  # * **100Base-T**: 100 Mbit/s copper Ethernet port
14636
14772
  # * **1000Base-T** (default): 1,000 Mbit/s copper Ethernet port
@@ -14640,9 +14776,9 @@ class CreatePhysicalConnectionSetupOrderRequest(TeaModel):
14640
14776
  # * **40GBase-LR**: 40,000 Mbit/s single-mode optical port
14641
14777
  # * **100GBase-LR**: 100,000 Mbit/s single-mode optical port
14642
14778
  #
14643
- # > Whether 40GBase-LR and 100GBase-LR ports can be created is based on resource supplies. For more information, contact your business manager.
14779
+ # > Whether 40GBase-LR and 100GBase-LR ports can be created depends on resource supplies. For more information, contact your account manager.
14644
14780
  self.port_type = port_type
14645
- # The ID of the redundant Express Connect circuit. The redundant Express Connect circuit must be in the **Allocated**, **Confirmed**, or **Enabled** state.
14781
+ # The ID of the redundant physical connection. The redundant physical connection must be in the **Allocated**, **Confirmed**, or **Enabled** state.
14646
14782
  self.redundant_physical_connection_id = redundant_physical_connection_id
14647
14783
  # The region ID of the Express Connect circuit.
14648
14784
  #
@@ -14720,11 +14856,11 @@ class CreatePhysicalConnectionSetupOrderResponseBody(TeaModel):
14720
14856
  physical_connection_id: str = None,
14721
14857
  request_id: str = None,
14722
14858
  ):
14723
- # The ID of the order.
14859
+ # The order ID.
14724
14860
  self.order_id = order_id
14725
14861
  # The ID of the Express Connect circuit.
14726
14862
  self.physical_connection_id = physical_connection_id
14727
- # The ID of the request.
14863
+ # The request ID.
14728
14864
  self.request_id = request_id
14729
14865
 
14730
14866
  def validate(self):
@@ -24163,11 +24299,22 @@ class DeleteExpressConnectTrafficQosRequest(TeaModel):
24163
24299
  region_id: str = None,
24164
24300
  resource_owner_account: str = None,
24165
24301
  ):
24302
+ # The client token that is used to ensure the idempotence of the request.
24303
+ #
24304
+ # You can use the client to generate the token, but you must make sure that the token is unique among different requests. The client token can contain only ASCII characters.
24305
+ #
24306
+ # > 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.
24166
24307
  self.client_token = client_token
24167
24308
  self.owner_account = owner_account
24168
24309
  self.owner_id = owner_id
24310
+ # The instance ID of the QoS policy.
24311
+ #
24169
24312
  # This parameter is required.
24170
24313
  self.qos_id = qos_id
24314
+ # The region ID of the QoS policy.
24315
+ #
24316
+ # You can call the [DescribeRegions](https://help.aliyun.com/document_detail/36063.html) operation to query the most recent region list.
24317
+ #
24171
24318
  # This parameter is required.
24172
24319
  self.region_id = region_id
24173
24320
  self.resource_owner_account = resource_owner_account
@@ -24217,6 +24364,7 @@ class DeleteExpressConnectTrafficQosResponseBody(TeaModel):
24217
24364
  self,
24218
24365
  request_id: str = None,
24219
24366
  ):
24367
+ # The request ID.
24220
24368
  self.request_id = request_id
24221
24369
 
24222
24370
  def validate(self):
@@ -24426,16 +24574,29 @@ class DeleteExpressConnectTrafficQosRuleRequest(TeaModel):
24426
24574
  resource_owner_account: str = None,
24427
24575
  rule_id: str = None,
24428
24576
  ):
24577
+ # The client token that is used to ensure the idempotence of the request.
24578
+ #
24579
+ # You can use the client to generate the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length.
24429
24580
  self.client_token = client_token
24430
24581
  self.owner_account = owner_account
24431
24582
  self.owner_id = owner_id
24583
+ # The ID of the QoS policy.
24584
+ #
24432
24585
  # This parameter is required.
24433
24586
  self.qos_id = qos_id
24587
+ # The ID of the QoS queue.
24588
+ #
24434
24589
  # This parameter is required.
24435
24590
  self.queue_id = queue_id
24591
+ # The region ID of the QoS policy.
24592
+ #
24593
+ # You can call the [DescribeRegions](https://help.aliyun.com/document_detail/36063.html) operation to query the most recent region list.
24594
+ #
24436
24595
  # This parameter is required.
24437
24596
  self.region_id = region_id
24438
24597
  self.resource_owner_account = resource_owner_account
24598
+ # The ID of the QoS rule.
24599
+ #
24439
24600
  # This parameter is required.
24440
24601
  self.rule_id = rule_id
24441
24602
 
@@ -24492,6 +24653,7 @@ class DeleteExpressConnectTrafficQosRuleResponseBody(TeaModel):
24492
24653
  self,
24493
24654
  request_id: str = None,
24494
24655
  ):
24656
+ # The request ID.
24495
24657
  self.request_id = request_id
24496
24658
 
24497
24659
  def validate(self):
@@ -24565,11 +24727,21 @@ class DeleteFailoverTestJobRequest(TeaModel):
24565
24727
  region_id: str = None,
24566
24728
  resource_owner_account: str = None,
24567
24729
  ):
24730
+ # The client token that is used to ensure the idempotence of the request.
24731
+ #
24732
+ # You can use the client to generate the token, but you must make sure that the token is unique among different requests. The client token can contain only ASCII characters.
24733
+ #
24734
+ # > 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.
24568
24735
  self.client_token = client_token
24736
+ # The ID of the failover test.
24737
+ #
24569
24738
  # This parameter is required.
24570
24739
  self.job_id = job_id
24571
24740
  self.owner_account = owner_account
24572
24741
  self.owner_id = owner_id
24742
+ # The region ID of the failover test.
24743
+ #
24744
+ # You can call the [DescribeRegions](https://help.aliyun.com/document_detail/36063.html) operation to query the most recent region list.
24573
24745
  self.region_id = region_id
24574
24746
  self.resource_owner_account = resource_owner_account
24575
24747
 
@@ -24618,6 +24790,7 @@ class DeleteFailoverTestJobResponseBody(TeaModel):
24618
24790
  self,
24619
24791
  request_id: str = None,
24620
24792
  ):
24793
+ # The request ID.
24621
24794
  self.request_id = request_id
24622
24795
 
24623
24796
  def validate(self):
@@ -26284,6 +26457,8 @@ class DeleteIpv6EgressOnlyRuleResponse(TeaModel):
26284
26457
  class DeleteIpv6GatewayRequest(TeaModel):
26285
26458
  def __init__(
26286
26459
  self,
26460
+ client_token: str = None,
26461
+ dry_run: bool = None,
26287
26462
  ipv_6gateway_id: str = None,
26288
26463
  owner_account: str = None,
26289
26464
  owner_id: int = None,
@@ -26291,6 +26466,8 @@ class DeleteIpv6GatewayRequest(TeaModel):
26291
26466
  resource_owner_account: str = None,
26292
26467
  resource_owner_id: int = None,
26293
26468
  ):
26469
+ self.client_token = client_token
26470
+ self.dry_run = dry_run
26294
26471
  # The ID of the IPv6 gateway that you want to delete.
26295
26472
  #
26296
26473
  # This parameter is required.
@@ -26313,6 +26490,10 @@ class DeleteIpv6GatewayRequest(TeaModel):
26313
26490
  return _map
26314
26491
 
26315
26492
  result = dict()
26493
+ if self.client_token is not None:
26494
+ result['ClientToken'] = self.client_token
26495
+ if self.dry_run is not None:
26496
+ result['DryRun'] = self.dry_run
26316
26497
  if self.ipv_6gateway_id is not None:
26317
26498
  result['Ipv6GatewayId'] = self.ipv_6gateway_id
26318
26499
  if self.owner_account is not None:
@@ -26329,6 +26510,10 @@ class DeleteIpv6GatewayRequest(TeaModel):
26329
26510
 
26330
26511
  def from_map(self, m: dict = None):
26331
26512
  m = m or dict()
26513
+ if m.get('ClientToken') is not None:
26514
+ self.client_token = m.get('ClientToken')
26515
+ if m.get('DryRun') is not None:
26516
+ self.dry_run = m.get('DryRun')
26332
26517
  if m.get('Ipv6GatewayId') is not None:
26333
26518
  self.ipv_6gateway_id = m.get('Ipv6GatewayId')
26334
26519
  if m.get('OwnerAccount') is not None:
@@ -26416,6 +26601,8 @@ class DeleteIpv6GatewayResponse(TeaModel):
26416
26601
  class DeleteIpv6InternetBandwidthRequest(TeaModel):
26417
26602
  def __init__(
26418
26603
  self,
26604
+ client_token: str = None,
26605
+ dry_run: bool = None,
26419
26606
  ipv_6address_id: str = None,
26420
26607
  ipv_6internet_bandwidth_id: str = None,
26421
26608
  owner_account: str = None,
@@ -26424,6 +26611,8 @@ class DeleteIpv6InternetBandwidthRequest(TeaModel):
26424
26611
  resource_owner_account: str = None,
26425
26612
  resource_owner_id: int = None,
26426
26613
  ):
26614
+ self.client_token = client_token
26615
+ self.dry_run = dry_run
26427
26616
  # The ID of the IPv6 address.
26428
26617
  #
26429
26618
  # > You must specify one of **Ipv6AddressId** and **Ipv6InternetBandwidthId**.
@@ -26450,6 +26639,10 @@ class DeleteIpv6InternetBandwidthRequest(TeaModel):
26450
26639
  return _map
26451
26640
 
26452
26641
  result = dict()
26642
+ if self.client_token is not None:
26643
+ result['ClientToken'] = self.client_token
26644
+ if self.dry_run is not None:
26645
+ result['DryRun'] = self.dry_run
26453
26646
  if self.ipv_6address_id is not None:
26454
26647
  result['Ipv6AddressId'] = self.ipv_6address_id
26455
26648
  if self.ipv_6internet_bandwidth_id is not None:
@@ -26468,6 +26661,10 @@ class DeleteIpv6InternetBandwidthRequest(TeaModel):
26468
26661
 
26469
26662
  def from_map(self, m: dict = None):
26470
26663
  m = m or dict()
26664
+ if m.get('ClientToken') is not None:
26665
+ self.client_token = m.get('ClientToken')
26666
+ if m.get('DryRun') is not None:
26667
+ self.dry_run = m.get('DryRun')
26471
26668
  if m.get('Ipv6AddressId') is not None:
26472
26669
  self.ipv_6address_id = m.get('Ipv6AddressId')
26473
26670
  if m.get('Ipv6InternetBandwidthId') is not None:
@@ -29451,6 +29648,8 @@ class DeleteVSwitchResponse(TeaModel):
29451
29648
  class DeleteVSwitchCidrReservationRequest(TeaModel):
29452
29649
  def __init__(
29453
29650
  self,
29651
+ client_token: str = None,
29652
+ dry_run: bool = None,
29454
29653
  owner_account: str = None,
29455
29654
  owner_id: int = None,
29456
29655
  region_id: str = None,
@@ -29458,6 +29657,8 @@ class DeleteVSwitchCidrReservationRequest(TeaModel):
29458
29657
  resource_owner_id: int = None,
29459
29658
  v_switch_cidr_reservation_id: str = None,
29460
29659
  ):
29660
+ self.client_token = client_token
29661
+ self.dry_run = dry_run
29461
29662
  self.owner_account = owner_account
29462
29663
  self.owner_id = owner_id
29463
29664
  # The ID of the region where the vSwitch is deployed.
@@ -29482,6 +29683,10 @@ class DeleteVSwitchCidrReservationRequest(TeaModel):
29482
29683
  return _map
29483
29684
 
29484
29685
  result = dict()
29686
+ if self.client_token is not None:
29687
+ result['ClientToken'] = self.client_token
29688
+ if self.dry_run is not None:
29689
+ result['DryRun'] = self.dry_run
29485
29690
  if self.owner_account is not None:
29486
29691
  result['OwnerAccount'] = self.owner_account
29487
29692
  if self.owner_id is not None:
@@ -29498,6 +29703,10 @@ class DeleteVSwitchCidrReservationRequest(TeaModel):
29498
29703
 
29499
29704
  def from_map(self, m: dict = None):
29500
29705
  m = m or dict()
29706
+ if m.get('ClientToken') is not None:
29707
+ self.client_token = m.get('ClientToken')
29708
+ if m.get('DryRun') is not None:
29709
+ self.dry_run = m.get('DryRun')
29501
29710
  if m.get('OwnerAccount') is not None:
29502
29711
  self.owner_account = m.get('OwnerAccount')
29503
29712
  if m.get('OwnerId') is not None:
@@ -30045,6 +30254,7 @@ class DeleteVirtualBorderRouterResponse(TeaModel):
30045
30254
  class DeleteVpcRequest(TeaModel):
30046
30255
  def __init__(
30047
30256
  self,
30257
+ client_token: str = None,
30048
30258
  dry_run: bool = None,
30049
30259
  force_delete: bool = None,
30050
30260
  owner_account: str = None,
@@ -30054,6 +30264,7 @@ class DeleteVpcRequest(TeaModel):
30054
30264
  resource_owner_id: int = None,
30055
30265
  vpc_id: str = None,
30056
30266
  ):
30267
+ self.client_token = client_token
30057
30268
  # Specifies whether to perform a dry run. Valid values:
30058
30269
  #
30059
30270
  # - **true**: performs a dry run. The system checks the required parameters, request syntax, and limits. If the request fails the dry run, an error message is returned. If the request passes the dry run, the `DryRunOperation` error code is returned.
@@ -30091,6 +30302,8 @@ class DeleteVpcRequest(TeaModel):
30091
30302
  return _map
30092
30303
 
30093
30304
  result = dict()
30305
+ if self.client_token is not None:
30306
+ result['ClientToken'] = self.client_token
30094
30307
  if self.dry_run is not None:
30095
30308
  result['DryRun'] = self.dry_run
30096
30309
  if self.force_delete is not None:
@@ -30111,6 +30324,8 @@ class DeleteVpcRequest(TeaModel):
30111
30324
 
30112
30325
  def from_map(self, m: dict = None):
30113
30326
  m = m or dict()
30327
+ if m.get('ClientToken') is not None:
30328
+ self.client_token = m.get('ClientToken')
30114
30329
  if m.get('DryRun') is not None:
30115
30330
  self.dry_run = m.get('DryRun')
30116
30331
  if m.get('ForceDelete') is not None:
@@ -31835,9 +32050,9 @@ class DescribeAccessPointsRequest(TeaModel):
31835
32050
  # * **en-US** (default): English
31836
32051
  self.accept_language = accept_language
31837
32052
  self.owner_id = owner_id
31838
- # The number of the page to return. Default value: **1**.
32053
+ # The page number. Default value: **1**.
31839
32054
  self.page_number = page_number
31840
- # The number of entries to return on each page. Maximum value: **50**. Default value: **10**.
32055
+ # The number of entries per page. Maximum value: **50**. Default value: **10**.
31841
32056
  self.page_size = page_size
31842
32057
  # The region ID of the access point.
31843
32058
  #
@@ -37543,15 +37758,28 @@ class DescribeExpressConnectTrafficQosRuleRequest(TeaModel):
37543
37758
  rule_id_list: List[str] = None,
37544
37759
  rule_name_list: List[str] = None,
37545
37760
  ):
37761
+ # The client token that is used to ensure the idempotence of the request.
37762
+ #
37763
+ # You can use the client to generate the value, but you must make sure that it is unique among different requests. The client token can contain only ASCII characters.
37764
+ #
37765
+ # > If you do not set this parameter, the system uses **RequestId** as **ClientToken**. **RequestId** may be different for each API request.
37546
37766
  self.client_token = client_token
37547
37767
  self.owner_account = owner_account
37548
37768
  self.owner_id = owner_id
37769
+ # The ID of the QoS policy.
37549
37770
  self.qos_id = qos_id
37771
+ # The ID of the QoS queue.
37550
37772
  self.queue_id = queue_id
37773
+ # The region ID of the QoS policy.
37774
+ #
37775
+ # You can call the [DescribeRegions](https://help.aliyun.com/document_detail/36063.html) operation to query the most recent region list.
37776
+ #
37551
37777
  # This parameter is required.
37552
37778
  self.region_id = region_id
37553
37779
  self.resource_owner_account = resource_owner_account
37780
+ # The list of QoS rule IDs.
37554
37781
  self.rule_id_list = rule_id_list
37782
+ # The list of QoS rule names.
37555
37783
  self.rule_name_list = rule_name_list
37556
37784
 
37557
37785
  def validate(self):
@@ -37626,21 +37854,87 @@ class DescribeExpressConnectTrafficQosRuleResponseBodyRuleList(TeaModel):
37626
37854
  src_port_range: str = None,
37627
37855
  status: str = None,
37628
37856
  ):
37857
+ # The destination IPv4 CIDR block that matches the QoS rule traffic.
37858
+ #
37859
+ # > When this parameter is unavailable, specify **SrcIPv6Cidr** or **DstIPv6Cidr**.
37629
37860
  self.dst_cidr = dst_cidr
37861
+ # The destination IPv6 CIDR block that matches the QoS rule traffic.
37862
+ #
37863
+ # > When this parameter is unavailable, specify **SrcCidr** or **DstCidr**.
37630
37864
  self.dst_ipv_6cidr = dst_ipv_6cidr
37865
+ # The range of destination ports that match the QoS rule traffic. Valid values: **0** to **65535**. If the traffic does not match, the value is -1. You can specify only one port. The start port number must be the same as the end port number. Different protocols correspond to different ports. Valid values:
37866
+ #
37867
+ # * **ALL** (uneditable): -1/-1.
37868
+ # * **ICMP(IPv4)** (uneditable): -1/-1.
37869
+ # * **ICMPv6(IPv6)** (uneditable): -1/-1.
37870
+ # * **TCP** (editable): -1/-1.
37871
+ # * **UDP** (editable): -1/-1.
37872
+ # * **GRE** (uneditable): -1/-1.
37873
+ # * **SSH** (uneditable): 22/22.
37874
+ # * **Telnet** (uneditable): 23/23.
37875
+ # * **HTTP** (uneditable): 80/80.
37876
+ # * **HTTPS** (uneditable): 443/443.
37877
+ # * **MS SQL** (uneditable): 1443/1443.
37878
+ # * **Oracle** (uneditable): 1521/1521.
37879
+ # * **MySql** (uneditable): 3306/3306.
37880
+ # * **RDP** (uneditable): 3389/3389.
37881
+ # * **PostgreSQL** (uneditable): 5432/5432.
37882
+ # * **Redis** (uneditable): 6379/6379.
37631
37883
  self.dst_port_range = dst_port_range
37884
+ # The DSCP value that matches the QoS rule traffic. Valid values: **0** to **63**. If no value is matched, the value is -1.
37632
37885
  self.match_dscp = match_dscp
37886
+ # The priority of the QoS rule. Valid values: **1** to **9000**. A larger value indicates a higher priority. The priority of each QoS rule must be unique in the same QoS policy.
37633
37887
  self.priority = priority
37888
+ # The protocol of the QoS rule. Valid values:
37889
+ #
37890
+ # * **ALL**\
37891
+ # * **ICMP(IPv4)**\
37892
+ # * **ICMPv6(IPv6)**\
37893
+ # * **TCP**\
37894
+ # * **UDP**\
37895
+ # * **GRE**\
37896
+ # * **SSH**\
37897
+ # * **Telnet**\
37898
+ # * **HTTP**\
37899
+ # * **HTTPS**\
37900
+ # * **MS SQL**\
37901
+ # * **Oracle**\
37902
+ # * **MySql**\
37903
+ # * **RDP**\
37904
+ # * **PostgreSQL**\
37905
+ # * **Redis**\
37634
37906
  self.protocol = protocol
37907
+ # The ID of the QoS policy.
37635
37908
  self.qos_id = qos_id
37909
+ # The ID of the QoS queue.
37636
37910
  self.queue_id = queue_id
37911
+ # The new DSCP value. Valid values: **0** to **63**. If you do not change the value, set the value to -1.
37637
37912
  self.remarking_dscp = remarking_dscp
37913
+ # The description of the QoS rule.
37914
+ #
37915
+ # The description must be 0 to 256 characters in length and cannot start with `http://` or `https://`.
37638
37916
  self.rule_description = rule_description
37917
+ # The ID of the QoS rule.
37639
37918
  self.rule_id = rule_id
37919
+ # The name of the QoS rule.
37920
+ #
37921
+ # The name must be 0 to 128 characters in length and cannot start with `http://` or `https://`.
37640
37922
  self.rule_name = rule_name
37923
+ # The source IPv4 CIDR block that matches the QoS rule traffic.
37924
+ #
37925
+ # > When this parameter is unavailable, specify **SrcIPv6Cidr** or **DstIPv6Cidr**.
37641
37926
  self.src_cidr = src_cidr
37927
+ # The source IPv6 CIDR block that matches the QoS rule traffic.
37928
+ #
37929
+ # > When this parameter is unavailable, specify **SrcCidr** or **DstCidr**.
37642
37930
  self.src_ipv_6cidr = src_ipv_6cidr
37931
+ # The range of source ports that match the QoS rule traffic. Valid values: **0** to **65535**. If the traffic does not match, the value is -1. You can specify only one port. The start port number must be the same as the end port number.
37643
37932
  self.src_port_range = src_port_range
37933
+ # The status of the QoS rule. Valid values:
37934
+ #
37935
+ # * **Normal**\
37936
+ # * **Configuring**\
37937
+ # * **Deleting**\
37644
37938
  self.status = status
37645
37939
 
37646
37940
  def validate(self):
@@ -37729,7 +38023,9 @@ class DescribeExpressConnectTrafficQosRuleResponseBody(TeaModel):
37729
38023
  request_id: str = None,
37730
38024
  rule_list: List[DescribeExpressConnectTrafficQosRuleResponseBodyRuleList] = None,
37731
38025
  ):
38026
+ # The request ID.
37732
38027
  self.request_id = request_id
38028
+ # The list of QoS rules.
37733
38029
  self.rule_list = rule_list
37734
38030
 
37735
38031
  def validate(self):
@@ -37815,11 +38111,21 @@ class DescribeFailoverTestJobRequest(TeaModel):
37815
38111
  region_id: str = None,
37816
38112
  resource_owner_account: str = None,
37817
38113
  ):
38114
+ # The client token that is used to ensure the idempotence of the request.
38115
+ #
38116
+ # You can use the client to generate the token, but you must make sure that the token is unique among different requests. The client token can contain only ASCII characters.
38117
+ #
38118
+ # > 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.
37818
38119
  self.client_token = client_token
38120
+ # The ID of the failover test.
38121
+ #
37819
38122
  # This parameter is required.
37820
38123
  self.job_id = job_id
37821
38124
  self.owner_account = owner_account
37822
38125
  self.owner_id = owner_id
38126
+ # The region ID of the failover test.
38127
+ #
38128
+ # You can call the [DescribeRegions](https://help.aliyun.com/document_detail/36063.html) operation to query the most recent region list.
37823
38129
  self.region_id = region_id
37824
38130
  self.resource_owner_account = resource_owner_account
37825
38131
 
@@ -37877,15 +38183,38 @@ class DescribeFailoverTestJobResponseBodyFailoverTestJobModel(TeaModel):
37877
38183
  status: str = None,
37878
38184
  stop_time: str = None,
37879
38185
  ):
38186
+ # The description of the failover test.
38187
+ #
38188
+ # The description must be 0 to 256 characters in length and cannot start with `http://` or `https://`.
37880
38189
  self.description = description
38190
+ # The duration of the failover test. Unit: minutes. Valid values: **1 to 4320**.
37881
38191
  self.job_duration = job_duration
38192
+ # The ID of the failover test.
37882
38193
  self.job_id = job_id
38194
+ # Indicates whether the failover test is performed immediately. Valid values:
38195
+ #
38196
+ # * **StartNow**\
38197
+ # * **StartLater**\
37883
38198
  self.job_type = job_type
38199
+ # The name of the failover test.
38200
+ #
38201
+ # The name must be 0 to 128 characters in length and cannot start with `http://` or `https://`.
37884
38202
  self.name = name
38203
+ # The IDs of failover test resources.
37885
38204
  self.resource_id = resource_id
38205
+ # The type of failover test resource. Only **PHYSICALCONNECTION** is returned.
37886
38206
  self.resource_type = resource_type
38207
+ # The start time of the failover test. The time follows the ISO 8601 standard in the YYYY-MM-DDThh:mm:ssZ format. The time is displayed in UTC.
37887
38208
  self.start_time = start_time
38209
+ # The status of the failover test. Valid values:
38210
+ #
38211
+ # * **Init**\
38212
+ # * **Starting**\
38213
+ # * **Testing**\
38214
+ # * **Stopping**\
38215
+ # * **Stopped**\
37888
38216
  self.status = status
38217
+ # The end time of the failover test. The time follows the ISO 8601 standard in the YYYY-MM-DDThh:mm:ssZ format. The time is displayed in UTC.
37889
38218
  self.stop_time = stop_time
37890
38219
 
37891
38220
  def validate(self):
@@ -37950,7 +38279,9 @@ class DescribeFailoverTestJobResponseBody(TeaModel):
37950
38279
  failover_test_job_model: DescribeFailoverTestJobResponseBodyFailoverTestJobModel = None,
37951
38280
  request_id: str = None,
37952
38281
  ):
38282
+ # The failover test.
37953
38283
  self.failover_test_job_model = failover_test_job_model
38284
+ # The request ID.
37954
38285
  self.request_id = request_id
37955
38286
 
37956
38287
  def validate(self):
@@ -38026,7 +38357,20 @@ class DescribeFailoverTestJobsRequestFilter(TeaModel):
38026
38357
  key: str = None,
38027
38358
  value: List[str] = None,
38028
38359
  ):
38360
+ # The filter key. Valid values:
38361
+ #
38362
+ # * **JobId**\
38363
+ # * **JobName**\
38364
+ # * **JobStatus**\
38365
+ # * **ResourceId**\
38366
+ # * **ResourceName**\
38367
+ # * **ResourceType**\
38368
+ #
38369
+ # > You can specify at most five different filter keys. If you specify ResourceId or ResourceName, you must also specify ResourceType. The logical operator among the filter keys is AND. Results that meet all specified filter keys are returned.
38029
38370
  self.key = key
38371
+ # The value of the filter key.
38372
+ #
38373
+ # > You can specify at most five filter values for each filter key. The logical operator among filter values is OR. If a filter value is matched, the filter key is considered matched.
38030
38374
  self.value = value
38031
38375
 
38032
38376
  def validate(self):
@@ -38065,12 +38409,22 @@ class DescribeFailoverTestJobsRequest(TeaModel):
38065
38409
  region_id: str = None,
38066
38410
  resource_owner_account: str = None,
38067
38411
  ):
38412
+ # The client token that is used to ensure the idempotence of the request.
38413
+ #
38414
+ # You can use the client to generate the token, but you must make sure that the token is unique among different requests. The client token can contain only ASCII characters.
38415
+ #
38416
+ # > 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.
38068
38417
  self.client_token = client_token
38418
+ # The filter information.
38069
38419
  self.filter = filter
38420
+ # The number of entries per page. Valid values: **1 to 100**. Default value: 20.
38070
38421
  self.max_results = max_results
38071
38422
  self.next_token = next_token
38072
38423
  self.owner_account = owner_account
38073
38424
  self.owner_id = owner_id
38425
+ # The region where you want to perform the failover test.
38426
+ #
38427
+ # You can call the [DescribeRegions](https://help.aliyun.com/document_detail/36063.html) operation to query the most recent region list.
38074
38428
  self.region_id = region_id
38075
38429
  self.resource_owner_account = resource_owner_account
38076
38430
 
@@ -38144,14 +38498,35 @@ class DescribeFailoverTestJobsResponseBodyFailoverTestJobList(TeaModel):
38144
38498
  status: str = None,
38145
38499
  stop_time: str = None,
38146
38500
  ):
38501
+ # The description of the failover test.
38502
+ #
38503
+ # The description must be 0 to 256 characters in length and cannot start with \\*\\*http:// **or** https://\\*\\*.
38147
38504
  self.description = description
38505
+ # The duration of the failover test. Unit: minutes. Valid values: **1 to 4320**.
38148
38506
  self.job_duration = job_duration
38507
+ # The ID of the failover test.
38149
38508
  self.job_id = job_id
38509
+ # Indicates whether the failover test is performed immediately. Valid values:
38510
+ #
38511
+ # * **StartNow**\
38512
+ # * **StartLater**\
38150
38513
  self.job_type = job_type
38514
+ # The name of the failover test.
38515
+ #
38516
+ # The name must be 0 to 128 characters in length and cannot start with `http://` or `https://`.
38151
38517
  self.name = name
38518
+ # The IDs of the failover test resources.
38152
38519
  self.resource_id = resource_id
38520
+ # The type of the failover test resource. Only **PHYSICALCONNECTION** is returned.
38153
38521
  self.resource_type = resource_type
38154
38522
  self.start_time = start_time
38523
+ # The status of the failover test. Valid values:
38524
+ #
38525
+ # * **Init**\
38526
+ # * **Starting**\
38527
+ # * **Testing**\
38528
+ # * **Stopping**\
38529
+ # * **Stopped**\
38155
38530
  self.status = status
38156
38531
  self.stop_time = stop_time
38157
38532
 
@@ -38222,7 +38597,9 @@ class DescribeFailoverTestJobsResponseBody(TeaModel):
38222
38597
  total_count: int = None,
38223
38598
  ):
38224
38599
  self.count = count
38600
+ # The list of failover tests.
38225
38601
  self.failover_test_job_list = failover_test_job_list
38602
+ # The number of entries per page. Valid values: **1 to 100**. Default value: 20.
38226
38603
  self.max_results = max_results
38227
38604
  self.next_token = next_token
38228
38605
  self.request_id = request_id
@@ -47343,13 +47720,13 @@ class DescribePhysicalConnectionsResponseBodyPhysicalConnectionSetPhysicalConnec
47343
47720
  key: str = None,
47344
47721
  value: str = None,
47345
47722
  ):
47346
- # The key of tag N added to the resource. You can specify at most 20 tag keys. The tag key cannot be an empty string.
47723
+ # The key of tag N added to the resource. You can specify up to 20 tag keys. The tag key cannot be an empty string.
47347
47724
  #
47348
- # It can be up to 64 characters in length and can contain digits, periods (.), underscores (_), and hyphens (-). It cannot start with `aliyun` or `acs:`, and cannot contain `http://` or `https://`.
47725
+ # The tag key can be up to 64 characters in length and can contain letters, digits, periods (.), underscores (_), and hyphens (-). It cannot start with `aliyun` or `acs:`, and cannot contain `http://` or `https://`.
47349
47726
  self.key = key
47350
- # The value of tag N added to the resource. You can specify at most 20 tag values. The tag value can be an empty string.
47727
+ # The value of tag N added to the resource. You can specify up to 20 tag values. The tag value can be an empty string.
47351
47728
  #
47352
- # It can be up to 128 characters in length and can contain digits, periods (.), underscores (_), and hyphens (-). It cannot start with `aliyun` or `acs:`, and cannot contain `http://` or `https://`.
47729
+ # The tag value can be up to 128 characters in length and can contain letters, digits, periods (.), underscores (_), and hyphens (-). It cannot start with `aliyun` or `acs:`, and cannot contain `http://` or `https://`.
47353
47730
  self.value = value
47354
47731
 
47355
47732
  def validate(self):
@@ -47453,7 +47830,7 @@ class DescribePhysicalConnectionsResponseBodyPhysicalConnectionSetPhysicalConnec
47453
47830
  vlan_id: str = None,
47454
47831
  vpconn_status: str = None,
47455
47832
  ):
47456
- # The ID of the access point.
47833
+ # The ID of the Express Connect circuit.
47457
47834
  self.access_point_id = access_point_id
47458
47835
  # The type of the access point.
47459
47836
  self.access_point_type = access_point_type
@@ -47463,13 +47840,13 @@ class DescribePhysicalConnectionsResponseBodyPhysicalConnectionSetPhysicalConnec
47463
47840
  self.ad_location = ad_location
47464
47841
  # The maximum bandwidth of the Express Connect circuit.
47465
47842
  #
47466
- # Unit: Gbit/s.
47843
+ # Unit: Mbit/s.
47467
47844
  self.bandwidth = bandwidth
47468
47845
  # The status of the Express Connect circuit. Valid values:
47469
47846
  #
47470
- # * **Normal**\
47471
- # * **FinancialLocked**\
47472
- # * **SecurityLocked**\
47847
+ # * **Normal**: enabled
47848
+ # * **FinancialLocked**: locked due to overdue payments
47849
+ # * **SecurityLocked**: locked for security reasons
47473
47850
  self.business_status = business_status
47474
47851
  # The billing method of the Express Connect circuit.
47475
47852
  #
@@ -47481,13 +47858,13 @@ class DescribePhysicalConnectionsResponseBodyPhysicalConnectionSetPhysicalConnec
47481
47858
  self.creation_time = creation_time
47482
47859
  # The description of the Express Connect circuit.
47483
47860
  self.description = description
47484
- # The time when the Express Connect circuit is enabled.
47861
+ # The time when the Express Connect circuit was enabled.
47485
47862
  self.enabled_time = enabled_time
47486
47863
  # The time when the Express Connect circuit expires.
47487
47864
  self.end_time = end_time
47488
47865
  # The estimated maximum bandwidth of the shared Express Connect circuit. The estimated bandwidth takes effect after you complete the payment.
47489
47866
  #
47490
- # **M** indicates Mbit/s and **G** indicates Gbit/s.
47867
+ # Unit: **M** (Mbit/s) and **G** (Gbit/s).
47491
47868
  self.expect_spec = expect_spec
47492
47869
  # Indicates whether the data about pending orders is returned. Valid values:
47493
47870
  #
@@ -47505,24 +47882,24 @@ class DescribePhysicalConnectionsResponseBodyPhysicalConnectionSetPhysicalConnec
47505
47882
  self.line_operator = line_operator
47506
47883
  # The status of the letter of authorization (LOA). Valid values:
47507
47884
  #
47508
- # * **Applying**\
47509
- # * **Accept**\
47510
- # * **Available**\
47511
- # * **Rejected**\
47512
- # * **Completing**\
47513
- # * **Complete**\
47514
- # * **Deleted**\
47885
+ # * **Applying**: The LOA is pending for approval.
47886
+ # * **Accept**: The LOA is approved.
47887
+ # * **Available**: The LOA is available.
47888
+ # * **Rejected**: The LOA is rejected.
47889
+ # * **Completing**: The Express Connect circuit is under construction.
47890
+ # * **Complete**: The Express Connect circuit is installed.
47891
+ # * **Deleted**: The LOA is deleted.
47515
47892
  self.loa_status = loa_status
47516
47893
  # The name of the Express Connect circuit.
47517
47894
  self.name = name
47518
- # The payer for the shared Express Connect circuit. Valid values:
47895
+ # The payer for the hosted connection. Valid values:
47519
47896
  #
47520
47897
  # * **PayByPhysicalConnectionOwner**: The partner pays for the shared Express Connect circuit.
47521
47898
  # * **PayByVirtualPhysicalConnectionOwner**: The tenant pays for the shared Express Connect circuit.
47522
47899
  self.order_mode = order_mode
47523
- # The ID of the Alibaba Cloud account to which the shared Express Connect circuit belongs.
47900
+ # The ID of the Alibaba Cloud account to which the parent Express Connect circuit belongs.
47524
47901
  self.parent_physical_connection_ali_uid = parent_physical_connection_ali_uid
47525
- # The ID of the Express Connect circuit that is used to create the hosted connection.
47902
+ # The ID of the parent Express Connect circuit.
47526
47903
  self.parent_physical_connection_id = parent_physical_connection_id
47527
47904
  # The geographical location of the data center.
47528
47905
  self.peer_location = peer_location
@@ -47530,7 +47907,7 @@ class DescribePhysicalConnectionsResponseBodyPhysicalConnectionSetPhysicalConnec
47530
47907
  self.physical_connection_id = physical_connection_id
47531
47908
  # The ID of the port on the access device.
47532
47909
  self.port_number = port_number
47533
- # The port type. Valid values:
47910
+ # The port type of the Express Connect circuit. Valid values:
47534
47911
  #
47535
47912
  # * **100Base-T**: 100 Mbit/s copper Ethernet port
47536
47913
  # * **1000Base-T**: 1,000 Mbit/s copper Ethernet port
@@ -47540,15 +47917,16 @@ class DescribePhysicalConnectionsResponseBodyPhysicalConnectionSetPhysicalConnec
47540
47917
  # * **40GBase-LR**: 40,000 Mbit/s single-mode optical port
47541
47918
  # * **100GBase-LR**: 100,000 Mbit/s single-mode optical port
47542
47919
  #
47543
- # > To create ports of 40GBase-LR and 100GBase-LR, you must first contact your account manager.
47920
+ # > Whether 40GBase-LR and 100GBase-LR ports can be created depends on resource supplies. For more information, contact your account manager.
47544
47921
  self.port_type = port_type
47545
47922
  # The type of the Express Connect circuit. Valid values:
47546
47923
  #
47547
47924
  # * **VirtualPhysicalConnection**: shared Express Connect circuit
47548
47925
  # * **PhysicalConnection**: dedicated Express Connect circuit
47549
47926
  self.product_type = product_type
47927
+ # The ID of the QoS policy.
47550
47928
  self.qos_id = qos_id
47551
- # The ID of the redundant Express Connect circuit.
47929
+ # The ID of the standby Express Connect circuit.
47552
47930
  self.redundant_physical_connection_id = redundant_physical_connection_id
47553
47931
  # The time when the pending order takes effect.
47554
47932
  self.reservation_active_time = reservation_active_time
@@ -47558,9 +47936,9 @@ class DescribePhysicalConnectionsResponseBodyPhysicalConnectionSetPhysicalConnec
47558
47936
  self.reservation_internet_charge_type = reservation_internet_charge_type
47559
47937
  # The type of the pending order.
47560
47938
  #
47561
- # If the value is set to **RENEW**, it indicates that the order is placed for service renewal.
47939
+ # If the value is **RENEW**, it indicates that the order is placed for service renewal.
47562
47940
  self.reservation_order_type = reservation_order_type
47563
- # The ID of the resource group to which the ACL belongs.
47941
+ # The resource group ID to which the instance belongs.
47564
47942
  self.resource_group_id = resource_group_id
47565
47943
  # The specification of the Express Connect circuit.
47566
47944
  #
@@ -47568,27 +47946,27 @@ class DescribePhysicalConnectionsResponseBodyPhysicalConnectionSetPhysicalConnec
47568
47946
  self.spec = spec
47569
47947
  # The status of the Express Connect circuit. Valid values:
47570
47948
  #
47571
- # * **Initial**: The application is under review.
47572
- # * **Approved**: The application is approved.
47573
- # * **Allocating**: The system is allocating resources.
47574
- # * **Allocated**: The Express Connect circuit is under construction.
47575
- # * **Confirmed**: The Express Connect circuit is pending for user confirmation.
47576
- # * **Enabled**: The Express Connect circuit is enabled.
47577
- # * **Rejected**: The application is rejected.
47578
- # * **Canceled**: The application is canceled.
47579
- # * **Allocation Failed**: The system failed to allocate resources.
47580
- # * **Terminating**: The Express Connect circuit is being disabled.
47581
- # * **Terminated**: The Express Connect circuit is disabled.
47949
+ # * **Initial**\
47950
+ # * **Approved**\
47951
+ # * **Allocating**\
47952
+ # * **Allocated**\
47953
+ # * **Confirmed**\
47954
+ # * **Enabled**\
47955
+ # * **Rejected**\
47956
+ # * **Canceled**\
47957
+ # * **Allocation Failed**\
47958
+ # * **Terminating**\
47959
+ # * **Terminated**\
47582
47960
  self.status = status
47583
- # The tag list.
47961
+ # The tags that are added to the cluster.
47584
47962
  self.tags = tags
47585
47963
  # The type of resource to which the Express Connect circuit is connected. Only **VPC** may be returned.
47586
47964
  self.type = type
47587
- # The number of hosted connections that are established over the Express Connect circuit.
47965
+ # The number of Express Connect circuits that are established.
47588
47966
  self.virtual_physical_connection_count = virtual_physical_connection_count
47589
47967
  # The VLAN ID of the shared Express Connect circuit.
47590
47968
  self.vlan_id = vlan_id
47591
- # The status of the hosted connection. Valid values:
47969
+ # The status of the shared Express Connect circuit. Valid values:
47592
47970
  #
47593
47971
  # * **Confirmed**\
47594
47972
  # * **UnConfirmed**\
@@ -47902,6 +48280,7 @@ class DescribePhysicalConnectionsResponse(TeaModel):
47902
48280
  class DescribePublicIpAddressRequest(TeaModel):
47903
48281
  def __init__(
47904
48282
  self,
48283
+ ip_version: str = None,
47905
48284
  owner_account: str = None,
47906
48285
  owner_id: int = None,
47907
48286
  page_number: int = None,
@@ -47910,6 +48289,7 @@ class DescribePublicIpAddressRequest(TeaModel):
47910
48289
  resource_owner_account: str = None,
47911
48290
  resource_owner_id: int = None,
47912
48291
  ):
48292
+ self.ip_version = ip_version
47913
48293
  self.owner_account = owner_account
47914
48294
  self.owner_id = owner_id
47915
48295
  # The page number. Default value: **1**.
@@ -47934,6 +48314,8 @@ class DescribePublicIpAddressRequest(TeaModel):
47934
48314
  return _map
47935
48315
 
47936
48316
  result = dict()
48317
+ if self.ip_version is not None:
48318
+ result['IpVersion'] = self.ip_version
47937
48319
  if self.owner_account is not None:
47938
48320
  result['OwnerAccount'] = self.owner_account
47939
48321
  if self.owner_id is not None:
@@ -47952,6 +48334,8 @@ class DescribePublicIpAddressRequest(TeaModel):
47952
48334
 
47953
48335
  def from_map(self, m: dict = None):
47954
48336
  m = m or dict()
48337
+ if m.get('IpVersion') is not None:
48338
+ self.ip_version = m.get('IpVersion')
47955
48339
  if m.get('OwnerAccount') is not None:
47956
48340
  self.owner_account = m.get('OwnerAccount')
47957
48341
  if m.get('OwnerId') is not None:
@@ -56057,7 +56441,7 @@ class DescribeVirtualBorderRoutersRequest(TeaModel):
56057
56441
  self.owner_id = owner_id
56058
56442
  # The page number. Default value: **1**.
56059
56443
  self.page_number = page_number
56060
- # The number of entries per page. Valid values: **1 to 50**. Default value: **10**.
56444
+ # The number of entries per page. Maximum value: **50**. Default value: **10**.
56061
56445
  self.page_size = page_size
56062
56446
  # The ID of the region in which the VBR is deployed. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/36063.html) operation to obtain the region ID.
56063
56447
  #
@@ -56152,16 +56536,16 @@ class DescribeVirtualBorderRoutersResponseBodyVirtualBorderRouterSetVirtualBorde
56152
56536
  cen_owner_id: int = None,
56153
56537
  cen_status: str = None,
56154
56538
  ):
56155
- # The ID of the CEN instance.
56539
+ # The CEN instance ID.
56156
56540
  self.cen_id = cen_id
56157
- # The ID of the Alibaba Cloud account to which the CEN instance belongs.
56541
+ # The ID of the account to which the CEN instance belongs.
56158
56542
  self.cen_owner_id = cen_owner_id
56159
56543
  # The status of the CEN instance. Valid values:
56160
56544
  #
56161
- # * **Attached**: The VBR is attached to the CEN instance.
56162
- # * **Attaching**: The VBR is being attached to the CEN instance.
56163
- # * **Detached**: The VBR is detached from the CEN instance.
56164
- # * **Detaching**: The VBR is being detached from the CEN instance.
56545
+ # * **Attached**\
56546
+ # * **Attaching**\
56547
+ # * **Detached**\
56548
+ # * **Detaching**\
56165
56549
  # * If no value is returned, the VBR is not attached to a CEN instance.
56166
56550
  self.cen_status = cen_status
56167
56551
 
@@ -56247,39 +56631,39 @@ class DescribeVirtualBorderRoutersResponseBodyVirtualBorderRouterSetVirtualBorde
56247
56631
  vlan_id: str = None,
56248
56632
  vlan_interface_id: str = None,
56249
56633
  ):
56250
- # The circuit code of the Express Connect circuit. The circuit code is provided by the ISP.
56634
+ # The circuit code of the Express Connect circuit, which is provided by the connectivity provider.
56251
56635
  self.circuit_code = circuit_code
56252
56636
  # Indicates whether IPv6 is enabled. Valid values:
56253
56637
  #
56254
56638
  # * **true**\
56255
56639
  # * **false**\
56256
56640
  self.enable_ipv_6 = enable_ipv_6
56257
- # The IPv4 address of the gateway device on the Alibaba Cloud side.
56641
+ # The IPv4 address of the VBR on the Alibaba Cloud side.
56258
56642
  self.local_gateway_ip = local_gateway_ip
56259
- # The IPv6 address of the gateway device on the Alibaba Cloud side.
56643
+ # The IPv6 address of the VBR on the Alibaba Cloud side.
56260
56644
  self.local_ipv_6gateway_ip = local_ipv_6gateway_ip
56261
- # The IPv4 address of the gateway device on the user side.
56645
+ # The IPv4 address of the VBR on the user side.
56262
56646
  self.peer_gateway_ip = peer_gateway_ip
56263
- # The IPv6 address of the gateway device on the user side.
56647
+ # The IPv6 address of the VBR on the user side.
56264
56648
  self.peer_ipv_6gateway_ip = peer_ipv_6gateway_ip
56265
- # The subnet mask for the IPv6 addresses of the gateway devices on the Alibaba Cloud side and on the user side.
56649
+ # The subnet mask for the IPv6 addresses on the user side and on the Alibaba Cloud side.
56266
56650
  #
56267
- # The two IPv6 addresses must fall within the same subnet.
56651
+ # Both IPv6 addresses must belong to the same subnet.
56268
56652
  self.peering_ipv_6subnet_mask = peering_ipv_6subnet_mask
56269
- # The subnet mask for the IPv4 addresses of the gateway devices on the Alibaba Cloud side and on the user side.
56653
+ # The subnet mask for the IPv4 addresses of the VBR on the user side and on the Alibaba Cloud side.
56270
56654
  #
56271
- # The two IPv4 addresses must fall within the same subnet.
56655
+ # Both IPv4 addresses must belong to the same subnet.
56272
56656
  self.peering_subnet_mask = peering_subnet_mask
56273
- # The business status of the Express Connect circuit.
56657
+ # The business status of the Express Connect circuit. Valid values:
56274
56658
  #
56275
56659
  # * **Normal:** The Express Connect circuit is running as normal.
56276
56660
  # * **FinancialLocked:** The Express Connect circuit is locked due to overdue payments.
56277
56661
  self.physical_connection_business_status = physical_connection_business_status
56278
56662
  # The ID of the Express Connect circuit.
56279
56663
  self.physical_connection_id = physical_connection_id
56280
- # The ID of the Alibaba Cloud account to which the Express Connect circuit belongs.
56664
+ # The ID of the account to which the Express Connect circuit belongs.
56281
56665
  self.physical_connection_owner_uid = physical_connection_owner_uid
56282
- # The status of the Express Connect circuit.
56666
+ # The status of the Express Connect circuit. Valid values:
56283
56667
  #
56284
56668
  # * **Initial:** The application is under review.
56285
56669
  # * **Approved**: The application is approved.
@@ -56295,15 +56679,15 @@ class DescribeVirtualBorderRoutersResponseBodyVirtualBorderRouterSetVirtualBorde
56295
56679
  # The status of the VBR. Valid values:
56296
56680
  #
56297
56681
  # * **unconfirmed**\
56298
- # * **active**\
56682
+ # * **active:**\
56299
56683
  # * **terminating**\
56300
56684
  # * **terminated**\
56301
56685
  # * **recovering**\
56302
- # * **deleting**\
56686
+ # * **deleting:**\
56303
56687
  self.status = status
56304
56688
  # The VLAN ID of the VBR.
56305
56689
  self.vlan_id = vlan_id
56306
- # The ID of the VBR interface, which can be used as the next hop of a VBR route.
56690
+ # The ID of the VBR interface, which can be used as a next hop of a VBR route.
56307
56691
  self.vlan_interface_id = vlan_interface_id
56308
56692
 
56309
56693
  def validate(self):
@@ -56423,9 +56807,9 @@ class DescribeVirtualBorderRoutersResponseBodyVirtualBorderRouterSetVirtualBorde
56423
56807
  key: str = None,
56424
56808
  value: str = None,
56425
56809
  ):
56426
- # The tag key.
56810
+ # The tag key of the resource.
56427
56811
  self.key = key
56428
- # The tag value.
56812
+ # The tag value of the resource.
56429
56813
  self.value = value
56430
56814
 
56431
56815
  def validate(self):
@@ -56534,15 +56918,15 @@ class DescribeVirtualBorderRoutersResponseBodyVirtualBorderRouterSetVirtualBorde
56534
56918
  ):
56535
56919
  # The ID of the access point.
56536
56920
  self.access_point_id = access_point_id
56537
- # The time when the VBR was first activated.
56921
+ # The time when the VBR was activated for the first time.
56538
56922
  self.activation_time = activation_time
56539
56923
  # The information about the Cloud Enterprise Network (CEN) instance to which the VBR is attached.
56540
56924
  self.associated_cens = associated_cens
56541
56925
  # The information about the Express Connect circuit that is associated with the VBR.
56542
56926
  self.associated_physical_connections = associated_physical_connections
56543
- # The bandwidth of the VBR. Unit: Mbit/s.
56927
+ # The bandwidth value of the VBR. Unit: Mbit/s.
56544
56928
  self.bandwidth = bandwidth
56545
- # The circuit code of the Express Connect circuit. The circuit code is provided by the Internet service provider (ISP).
56929
+ # The circuit code of the Express Connect circuit, which is provided by the connectivity provider.
56546
56930
  self.circuit_code = circuit_code
56547
56931
  # The ID of the cloud box.
56548
56932
  self.cloud_box_instance_id = cloud_box_instance_id
@@ -56556,9 +56940,17 @@ class DescribeVirtualBorderRoutersResponseBodyVirtualBorderRouterSetVirtualBorde
56556
56940
  #
56557
56941
  # Valid values: **3 to 10**.
56558
56942
  self.detect_multiplier = detect_multiplier
56559
- # The ID of the ECC instance.
56943
+ # The ID of the Express Cloud Connect (ECC) instance.
56560
56944
  self.ecc_id = ecc_id
56945
+ # The status of the ECR. Valid values:
56946
+ #
56947
+ # * **Attached**\
56948
+ # * **Attaching**\
56949
+ # * **Detached**\
56950
+ # * **Detaching**\
56951
+ # * If no value is returned, the VBR is not attached to a CEN instance.
56561
56952
  self.ecr_attatch_status = ecr_attatch_status
56953
+ # The ID of the Express Connect Router (ECR).
56562
56954
  self.ecr_id = ecr_id
56563
56955
  self.ecr_owner_id = ecr_owner_id
56564
56956
  # Indicates whether IPv6 is enabled. Valid values:
@@ -56566,41 +56958,41 @@ class DescribeVirtualBorderRoutersResponseBodyVirtualBorderRouterSetVirtualBorde
56566
56958
  # * **true**\
56567
56959
  # * **false**\
56568
56960
  self.enable_ipv_6 = enable_ipv_6
56569
- # The IPv4 address of the gateway device on the Alibaba Cloud side.
56961
+ # The IPv4 address of the VBR on the Alibaba Cloud side.
56570
56962
  self.local_gateway_ip = local_gateway_ip
56571
- # The IPv6 address of the gateway device on the Alibaba Cloud side.
56963
+ # The IPv6 address of the VBR on the Alibaba Cloud side.
56572
56964
  self.local_ipv_6gateway_ip = local_ipv_6gateway_ip
56573
56965
  # The time interval to receive BFD packets. Valid values: **200 to 1000**. Unit: milliseconds.
56574
56966
  self.min_rx_interval = min_rx_interval
56575
56967
  # The time interval to send Bidirectional Forwarding Detection (BFD) packets. Valid values: **200 to 1000**. Unit: milliseconds.
56576
56968
  self.min_tx_interval = min_tx_interval
56577
- # The name of the VBR.
56969
+ # The VBR name.
56578
56970
  self.name = name
56579
56971
  # The billing method of the VBR. Valid values:
56580
56972
  #
56581
- # * **PrePaid**: subscription. If you choose this billing method, make sure that your Alibaba Cloud account supports balance payments or credit payments.
56582
- # * **PostPaid**: pay-as-you-go
56973
+ # * **PrePaid:** subscription. If you choose this billing method, make sure that your account supports balance payments or credit payments.
56974
+ # * **PostPaid:** pay-as-you-go.
56583
56975
  self.pconn_vbr_charge_type = pconn_vbr_charge_type
56584
56976
  # The time when the VBR expires.
56585
56977
  self.pconn_vbr_expire_time = pconn_vbr_expire_time
56586
- # The IPv4 address of the gateway device on the user side.
56978
+ # The IPv4 address of the VBR on the user side.
56587
56979
  self.peer_gateway_ip = peer_gateway_ip
56588
- # The IPv6 address of the gateway device on the user side.
56980
+ # The IPv6 address of the VBR on the user side.
56589
56981
  self.peer_ipv_6gateway_ip = peer_ipv_6gateway_ip
56590
- # The subnet mask of the IPv6 addresses configured on the user side and Alibaba Cloud side.
56982
+ # The subnet mask for the IPv6 addresses on the user side and on the Alibaba Cloud side.
56591
56983
  self.peering_ipv_6subnet_mask = peering_ipv_6subnet_mask
56592
- # The subnet mask of the IPv4 addresses configured on the user side and Alibaba Cloud side.
56984
+ # The subnet mask for the IPv4 addresses on the Alibaba Cloud side and on the user side.
56593
56985
  self.peering_subnet_mask = peering_subnet_mask
56594
- # The business status of the Express Connect circuit.
56986
+ # The business status of the Express Connect circuit. Valid values:
56595
56987
  #
56596
- # * **Normal:** The Express Connect circuit is running asnormal.
56988
+ # * **Normal:** The Express Connect circuit is running as normal.
56597
56989
  # * **FinancialLocked:** The Express Connect circuit is locked due to overdue payments.
56598
56990
  self.physical_connection_business_status = physical_connection_business_status
56599
56991
  # The ID of the Express Connect circuit to which the VBR belongs.
56600
56992
  self.physical_connection_id = physical_connection_id
56601
- # The ID of the Alibaba Cloud account to which the Express Connect circuit belongs.
56993
+ # The ID of the account to which the Express Connect circuit belongs.
56602
56994
  self.physical_connection_owner_uid = physical_connection_owner_uid
56603
- # The status of the Express Connect circuit.
56995
+ # The status of the Express Connect circuit. Valid values:
56604
56996
  #
56605
56997
  # * **Initial:** The application is under review.
56606
56998
  # * **Approved**: The application is approved.
@@ -56613,12 +57005,20 @@ class DescribeVirtualBorderRoutersResponseBodyVirtualBorderRouterSetVirtualBorde
56613
57005
  # * **Allocation Failed:** The system failed to allocate resources.
56614
57006
  # * **Terminated:** The Express Connect circuit is disabled.
56615
57007
  self.physical_connection_status = physical_connection_status
56616
- # The time when the status of the VBR last changed from **terminated** to **active**.
57008
+ # The last time when the status of the VBR changed from **terminated** to **active**.
56617
57009
  self.recovery_time = recovery_time
56618
- # The ID of the resource group.
57010
+ # The resource group ID.
57011
+ #
57012
+ # For more information about resource groups, see [Resource groups](https://help.aliyun.com/document_detail/94475.html).
56619
57013
  self.resource_group_id = resource_group_id
56620
- # The ID of the VBR route table.
57014
+ # The ID of the route table of the VBR.
56621
57015
  self.route_table_id = route_table_id
57016
+ # Indicates whether to allow service access between data centers. Valid values:
57017
+ #
57018
+ # * **true**\
57019
+ # * **false**\
57020
+ #
57021
+ # > If no value is returned, service access between data centers is not allowed.
56622
57022
  self.sitelink_enable = sitelink_enable
56623
57023
  # The status of the VBR. Valid values:
56624
57024
  #
@@ -56627,13 +57027,13 @@ class DescribeVirtualBorderRoutersResponseBodyVirtualBorderRouterSetVirtualBorde
56627
57027
  # * **terminating**\
56628
57028
  # * **terminated**\
56629
57029
  # * **recovering**\
56630
- # * **deleting**\
57030
+ # * **deleting:**\
56631
57031
  self.status = status
56632
- # The tags.
57032
+ # The tag of the resource.
56633
57033
  self.tags = tags
56634
- # The time when the VBR was last disabled.
57034
+ # The last time when the VBR was terminated.
56635
57035
  self.termination_time = termination_time
56636
- # The type of the VBR.
57036
+ # The VBR type.
56637
57037
  self.type = type
56638
57038
  # The VBR ID.
56639
57039
  self.vbr_id = vbr_id
@@ -56882,7 +57282,7 @@ class DescribeVirtualBorderRoutersResponseBody(TeaModel):
56882
57282
  self.request_id = request_id
56883
57283
  # The number of entries returned.
56884
57284
  self.total_count = total_count
56885
- # The information about the queried VBR.
57285
+ # The information about the VBR.
56886
57286
  self.virtual_border_router_set = virtual_border_router_set
56887
57287
 
56888
57288
  def validate(self):
@@ -75864,7 +76264,7 @@ class ListPublicIpAddressPoolsResponseBodyPublicIpAddressPoolList(TeaModel):
75864
76264
  tags: List[ListPublicIpAddressPoolsResponseBodyPublicIpAddressPoolListTags] = None,
75865
76265
  total_ip_num: int = None,
75866
76266
  used_ip_num: int = None,
75867
- user_type: bool = None,
76267
+ user_type: str = None,
75868
76268
  zones: List[str] = None,
75869
76269
  ):
75870
76270
  # The service type of the IP address pool.
@@ -81422,7 +81822,9 @@ class ModifyExpressConnectTrafficQosRequestAddInstanceList(TeaModel):
81422
81822
  instance_id: str = None,
81423
81823
  instance_type: str = None,
81424
81824
  ):
81825
+ # The ID of the instance to be associated.
81425
81826
  self.instance_id = instance_id
81827
+ # The type of instance to be associated. Set the value to **PHYSICALCONNECTION**.
81426
81828
  self.instance_type = instance_type
81427
81829
 
81428
81830
  def validate(self):
@@ -81455,7 +81857,9 @@ class ModifyExpressConnectTrafficQosRequestRemoveInstanceList(TeaModel):
81455
81857
  instance_id: str = None,
81456
81858
  instance_type: str = None,
81457
81859
  ):
81860
+ # The ID of the associated instance.
81458
81861
  self.instance_id = instance_id
81862
+ # The type of the associated instance. Set the value to **PHYSICALCONNECTION**.
81459
81863
  self.instance_type = instance_type
81460
81864
 
81461
81865
  def validate(self):
@@ -81496,16 +81900,31 @@ class ModifyExpressConnectTrafficQosRequest(TeaModel):
81496
81900
  remove_instance_list: List[ModifyExpressConnectTrafficQosRequestRemoveInstanceList] = None,
81497
81901
  resource_owner_account: str = None,
81498
81902
  ):
81903
+ # The instances to be added. Ignore this parameter if no instances are to be added.
81499
81904
  self.add_instance_list = add_instance_list
81905
+ # The client token that is used to ensure the idempotence of the request.
81906
+ #
81907
+ # You can use the client to generate the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters.
81908
+ #
81909
+ # > 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.
81500
81910
  self.client_token = client_token
81501
81911
  self.owner_account = owner_account
81502
81912
  self.owner_id = owner_id
81913
+ # The description of the QoS policy.
81503
81914
  self.qos_description = qos_description
81915
+ # The ID of the QoS policy.
81916
+ #
81504
81917
  # This parameter is required.
81505
81918
  self.qos_id = qos_id
81919
+ # The name of the QoS policy.
81506
81920
  self.qos_name = qos_name
81921
+ # The region ID of the resource.
81922
+ #
81923
+ # You can call the [DescribeRegions](https://help.aliyun.com/document_detail/36063.html) operation to query the most recent region list.
81924
+ #
81507
81925
  # This parameter is required.
81508
81926
  self.region_id = region_id
81927
+ # The instances to be removed. Ignore this parameter if no instances are to be removed.
81509
81928
  self.remove_instance_list = remove_instance_list
81510
81929
  self.resource_owner_account = resource_owner_account
81511
81930
 
@@ -81587,6 +82006,7 @@ class ModifyExpressConnectTrafficQosResponseBody(TeaModel):
81587
82006
  self,
81588
82007
  request_id: str = None,
81589
82008
  ):
82009
+ # The request ID.
81590
82010
  self.request_id = request_id
81591
82011
 
81592
82012
  def validate(self):
@@ -81664,16 +82084,39 @@ class ModifyExpressConnectTrafficQosQueueRequest(TeaModel):
81664
82084
  region_id: str = None,
81665
82085
  resource_owner_account: str = None,
81666
82086
  ):
82087
+ # The percentage of bandwidth allocated to the QoS queue.
82088
+ #
82089
+ # * If QueueType is set to **Medium**, this parameter is required. Valid values: 1 to 100.
82090
+ # * If QueueType is set to **Default**, a value of - is returned.
81667
82091
  self.bandwidth_percent = bandwidth_percent
82092
+ # The client token that is used to ensure the idempotence of the request.
82093
+ #
82094
+ # You can use the client to generate the value, but you must ensure that the value is unique among all requests. The client token can contain only ASCII characters.
82095
+ #
82096
+ # > If you do not set this parameter, the system uses **RequestId** as **ClientToken**. **RequestId** might be different for each API request.
81668
82097
  self.client_token = client_token
81669
82098
  self.owner_account = owner_account
81670
82099
  self.owner_id = owner_id
82100
+ # The ID of the QoS policy.
82101
+ #
81671
82102
  # This parameter is required.
81672
82103
  self.qos_id = qos_id
82104
+ # The description of the QoS queue.
82105
+ #
82106
+ # The description must be 0 to 256 characters in length and cannot start with `http://` or `https://`.
81673
82107
  self.queue_description = queue_description
82108
+ # The ID of the QoS queue.
82109
+ #
81674
82110
  # This parameter is required.
81675
82111
  self.queue_id = queue_id
82112
+ # The name of the QoS queue.
82113
+ #
82114
+ # The name must be 0 to 128 characters in length and cannot start with `http://` or `https://`.
81676
82115
  self.queue_name = queue_name
82116
+ # The region ID of the QoS policy.
82117
+ #
82118
+ # You can call the [DescribeRegions](https://help.aliyun.com/document_detail/36063.html) operation to query the most recent region list.
82119
+ #
81677
82120
  # This parameter is required.
81678
82121
  self.region_id = region_id
81679
82122
  self.resource_owner_account = resource_owner_account
@@ -81739,6 +82182,7 @@ class ModifyExpressConnectTrafficQosQueueResponseBody(TeaModel):
81739
82182
  self,
81740
82183
  request_id: str = None,
81741
82184
  ):
82185
+ # The request ID.
81742
82186
  self.request_id = request_id
81743
82187
 
81744
82188
  def validate(self):
@@ -81826,29 +82270,100 @@ class ModifyExpressConnectTrafficQosRuleRequest(TeaModel):
81826
82270
  src_ipv_6cidr: str = None,
81827
82271
  src_port_range: str = None,
81828
82272
  ):
82273
+ # The client token that is used to ensure the idempotence of the request.
82274
+ #
82275
+ # You can use the client to generate the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length.
81829
82276
  self.client_token = client_token
82277
+ # The destination IPv4 CIDR block that matches the QoS rule traffic.
82278
+ #
82279
+ # > When this parameter is unavailable, specify **SrcIPv6Cidr** or **DstIPv6Cidr**.
81830
82280
  self.dst_cidr = dst_cidr
82281
+ # The destination IPv6 CIDR block that matches the QoS rule traffic.
82282
+ #
82283
+ # > When this parameter is unavailable, specify **SrcCidr** or **DstCidr**.
81831
82284
  self.dst_ipv_6cidr = dst_ipv_6cidr
82285
+ # The range of destination ports that match the QoS rule traffic. Valid values: **0** to **65535**. If the traffic does not match, the value is -1. You can specify only one port. The start port number must be the same as the end port number. Different protocols correspond to different ports. Valid values:
82286
+ #
82287
+ # * **ALL** (uneditable): -1/-1.
82288
+ # * **ICMP(IPv4)** (uneditable): -1/-1.
82289
+ # * **ICMPv6(IPv6)** (uneditable): -1/-1.
82290
+ # * **TCP** (editable): -1/-1.
82291
+ # * **UDP** (editable): -1/-1.
82292
+ # * **GRE** (uneditable): -1/-1.
82293
+ # * **SSH** (uneditable): 22/22.
82294
+ # * **Telnet** (uneditable): 23/23.
82295
+ # * **HTTP** (uneditable): 80/80.
82296
+ # * **HTTPS** (uneditable): 443/443.
82297
+ # * **MS SQL** (uneditable): 1443/1443.
82298
+ # * **Oracle** (uneditable): 1521/1521.
82299
+ # * **MySql** (uneditable): 3306/3306.
82300
+ # * **RDP** (uneditable): 3389/3389.
82301
+ # * **PostgreSQL** (uneditable): 5432/5432.
82302
+ # * **Redis** (uneditable): 6379/6379.
81832
82303
  self.dst_port_range = dst_port_range
82304
+ # The DSCP value that matches the QoS rule traffic. Valid values: **0** to **63**. If no value is matched, the value is -1.
81833
82305
  self.match_dscp = match_dscp
81834
82306
  self.owner_account = owner_account
81835
82307
  self.owner_id = owner_id
82308
+ # The priority of the QoS rule. Valid values: **1** to **9000**. A larger value indicates a higher priority. The priority of each QoS rule must be unique in the same QoS policy.
81836
82309
  self.priority = priority
82310
+ # The protocol of the QoS rule. Valid values:
82311
+ #
82312
+ # * **ALL**\
82313
+ # * **ICMP(IPv4)**\
82314
+ # * **ICMPv6(IPv6)**\
82315
+ # * **TCP**\
82316
+ # * **UDP**\
82317
+ # * **GRE**\
82318
+ # * **SSH**\
82319
+ # * **Telnet**\
82320
+ # * **HTTP**\
82321
+ # * **HTTPS**\
82322
+ # * **MS SQL**\
82323
+ # * **Oracle**\
82324
+ # * **MySql**\
82325
+ # * **RDP**\
82326
+ # * **PostgreSQL**\
82327
+ # * **Redis**\
81837
82328
  self.protocol = protocol
82329
+ # The ID of the QoS policy.
82330
+ #
81838
82331
  # This parameter is required.
81839
82332
  self.qos_id = qos_id
82333
+ # The ID of the QoS queue.
82334
+ #
81840
82335
  # This parameter is required.
81841
82336
  self.queue_id = queue_id
82337
+ # The region ID of the QoS policy.
82338
+ #
82339
+ # You can call the [DescribeRegions](https://help.aliyun.com/document_detail/36063.html) operation to query the most recent region list.
82340
+ #
81842
82341
  # This parameter is required.
81843
82342
  self.region_id = region_id
82343
+ # The new DSCP value. Valid values: **0** to **63**. If you do not change the value, set the value to -1.
81844
82344
  self.remarking_dscp = remarking_dscp
81845
82345
  self.resource_owner_account = resource_owner_account
82346
+ # The description of the QoS rule.
82347
+ #
82348
+ # The description must be 0 to 256 characters in length and cannot start with `http://` or `https://`.
81846
82349
  self.rule_description = rule_description
82350
+ # The ID of the QoS rule.
82351
+ #
81847
82352
  # This parameter is required.
81848
82353
  self.rule_id = rule_id
82354
+ # The name of the QoS rule.
82355
+ #
82356
+ # The name must be 0 to 128 characters in length and cannot start with `http://` or `https://`.
81849
82357
  self.rule_name = rule_name
82358
+ # The source IPv4 CIDR block that matches the QoS rule traffic.
82359
+ #
82360
+ # > When this parameter is unavailable, specify **SrcIPv6Cidr** or **DstIPv6Cidr**.
81850
82361
  self.src_cidr = src_cidr
82362
+ # The source IPv6 CIDR block that matches the QoS rule traffic.
82363
+ #
82364
+ # > When this parameter is unavailable, specify **SrcCidr** or **DstCidr**.
81851
82365
  self.src_ipv_6cidr = src_ipv_6cidr
82366
+ # The range of source ports that match the QoS rule traffic. Valid values: **0** to **65535**. If the traffic does not match, the value is -1. You can specify only one port. The start port number must be the same as the end port number.
81852
82367
  self.src_port_range = src_port_range
81853
82368
 
81854
82369
  def validate(self):
@@ -81952,6 +82467,7 @@ class ModifyExpressConnectTrafficQosRuleResponseBody(TeaModel):
81952
82467
  self,
81953
82468
  request_id: str = None,
81954
82469
  ):
82470
+ # The request ID.
81955
82471
  self.request_id = request_id
81956
82472
 
81957
82473
  def validate(self):
@@ -83933,7 +84449,9 @@ class ModifyIPv6TranslatorEntryResponse(TeaModel):
83933
84449
  class ModifyIpv6AddressAttributeRequest(TeaModel):
83934
84450
  def __init__(
83935
84451
  self,
84452
+ client_token: str = None,
83936
84453
  description: str = None,
84454
+ dry_run: bool = None,
83937
84455
  ipv_6address_id: str = None,
83938
84456
  name: str = None,
83939
84457
  owner_account: str = None,
@@ -83942,10 +84460,12 @@ class ModifyIpv6AddressAttributeRequest(TeaModel):
83942
84460
  resource_owner_account: str = None,
83943
84461
  resource_owner_id: int = None,
83944
84462
  ):
84463
+ self.client_token = client_token
83945
84464
  # The description of the IPv6 address.
83946
84465
  #
83947
84466
  # It must be 2 to 256 characters in length, and can contain letters, digits, periods (.), underscores (_), and hyphens (-). It must start with a letter. The name must start with a letter and cannot start with `http://` or `https://`.
83948
84467
  self.description = description
84468
+ self.dry_run = dry_run
83949
84469
  # The ID of the IPv6 address.
83950
84470
  #
83951
84471
  # This parameter is required.
@@ -83972,8 +84492,12 @@ class ModifyIpv6AddressAttributeRequest(TeaModel):
83972
84492
  return _map
83973
84493
 
83974
84494
  result = dict()
84495
+ if self.client_token is not None:
84496
+ result['ClientToken'] = self.client_token
83975
84497
  if self.description is not None:
83976
84498
  result['Description'] = self.description
84499
+ if self.dry_run is not None:
84500
+ result['DryRun'] = self.dry_run
83977
84501
  if self.ipv_6address_id is not None:
83978
84502
  result['Ipv6AddressId'] = self.ipv_6address_id
83979
84503
  if self.name is not None:
@@ -83992,8 +84516,12 @@ class ModifyIpv6AddressAttributeRequest(TeaModel):
83992
84516
 
83993
84517
  def from_map(self, m: dict = None):
83994
84518
  m = m or dict()
84519
+ if m.get('ClientToken') is not None:
84520
+ self.client_token = m.get('ClientToken')
83995
84521
  if m.get('Description') is not None:
83996
84522
  self.description = m.get('Description')
84523
+ if m.get('DryRun') is not None:
84524
+ self.dry_run = m.get('DryRun')
83997
84525
  if m.get('Ipv6AddressId') is not None:
83998
84526
  self.ipv_6address_id = m.get('Ipv6AddressId')
83999
84527
  if m.get('Name') is not None:
@@ -84083,7 +84611,9 @@ class ModifyIpv6AddressAttributeResponse(TeaModel):
84083
84611
  class ModifyIpv6GatewayAttributeRequest(TeaModel):
84084
84612
  def __init__(
84085
84613
  self,
84614
+ client_token: str = None,
84086
84615
  description: str = None,
84616
+ dry_run: bool = None,
84087
84617
  ipv_6gateway_id: str = None,
84088
84618
  name: str = None,
84089
84619
  owner_account: str = None,
@@ -84092,8 +84622,10 @@ class ModifyIpv6GatewayAttributeRequest(TeaModel):
84092
84622
  resource_owner_account: str = None,
84093
84623
  resource_owner_id: int = None,
84094
84624
  ):
84625
+ self.client_token = client_token
84095
84626
  # The description of the IPv6 gateway.
84096
84627
  self.description = description
84628
+ self.dry_run = dry_run
84097
84629
  # The ID of the IPv6 gateway that you want to modify.
84098
84630
  #
84099
84631
  # This parameter is required.
@@ -84120,8 +84652,12 @@ class ModifyIpv6GatewayAttributeRequest(TeaModel):
84120
84652
  return _map
84121
84653
 
84122
84654
  result = dict()
84655
+ if self.client_token is not None:
84656
+ result['ClientToken'] = self.client_token
84123
84657
  if self.description is not None:
84124
84658
  result['Description'] = self.description
84659
+ if self.dry_run is not None:
84660
+ result['DryRun'] = self.dry_run
84125
84661
  if self.ipv_6gateway_id is not None:
84126
84662
  result['Ipv6GatewayId'] = self.ipv_6gateway_id
84127
84663
  if self.name is not None:
@@ -84140,8 +84676,12 @@ class ModifyIpv6GatewayAttributeRequest(TeaModel):
84140
84676
 
84141
84677
  def from_map(self, m: dict = None):
84142
84678
  m = m or dict()
84679
+ if m.get('ClientToken') is not None:
84680
+ self.client_token = m.get('ClientToken')
84143
84681
  if m.get('Description') is not None:
84144
84682
  self.description = m.get('Description')
84683
+ if m.get('DryRun') is not None:
84684
+ self.dry_run = m.get('DryRun')
84145
84685
  if m.get('Ipv6GatewayId') is not None:
84146
84686
  self.ipv_6gateway_id = m.get('Ipv6GatewayId')
84147
84687
  if m.get('Name') is not None:
@@ -84233,6 +84773,7 @@ class ModifyIpv6InternetBandwidthRequest(TeaModel):
84233
84773
  self,
84234
84774
  bandwidth: int = None,
84235
84775
  client_token: str = None,
84776
+ dry_run: bool = None,
84236
84777
  ipv_6address_id: str = None,
84237
84778
  ipv_6internet_bandwidth_id: str = None,
84238
84779
  owner_account: str = None,
@@ -84254,6 +84795,7 @@ class ModifyIpv6InternetBandwidthRequest(TeaModel):
84254
84795
  #
84255
84796
  # > 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.
84256
84797
  self.client_token = client_token
84798
+ self.dry_run = dry_run
84257
84799
  # The ID of the IPv6 address.
84258
84800
  #
84259
84801
  # > You must specify one of **Ipv6AddressId** and **Ipv6InternetBandwidthId**.
@@ -84282,6 +84824,8 @@ class ModifyIpv6InternetBandwidthRequest(TeaModel):
84282
84824
  result['Bandwidth'] = self.bandwidth
84283
84825
  if self.client_token is not None:
84284
84826
  result['ClientToken'] = self.client_token
84827
+ if self.dry_run is not None:
84828
+ result['DryRun'] = self.dry_run
84285
84829
  if self.ipv_6address_id is not None:
84286
84830
  result['Ipv6AddressId'] = self.ipv_6address_id
84287
84831
  if self.ipv_6internet_bandwidth_id is not None:
@@ -84304,6 +84848,8 @@ class ModifyIpv6InternetBandwidthRequest(TeaModel):
84304
84848
  self.bandwidth = m.get('Bandwidth')
84305
84849
  if m.get('ClientToken') is not None:
84306
84850
  self.client_token = m.get('ClientToken')
84851
+ if m.get('DryRun') is not None:
84852
+ self.dry_run = m.get('DryRun')
84307
84853
  if m.get('Ipv6AddressId') is not None:
84308
84854
  self.ipv_6address_id = m.get('Ipv6AddressId')
84309
84855
  if m.get('Ipv6InternetBandwidthId') is not None:
@@ -88190,6 +88736,8 @@ class ModifyVSwitchAttributeResponse(TeaModel):
88190
88736
  class ModifyVSwitchCidrReservationAttributeRequest(TeaModel):
88191
88737
  def __init__(
88192
88738
  self,
88739
+ client_token: str = None,
88740
+ dry_run: bool = None,
88193
88741
  owner_account: str = None,
88194
88742
  owner_id: int = None,
88195
88743
  region_id: str = None,
@@ -88199,6 +88747,8 @@ class ModifyVSwitchCidrReservationAttributeRequest(TeaModel):
88199
88747
  v_switch_cidr_reservation_id: str = None,
88200
88748
  v_switch_cidr_reservation_name: str = None,
88201
88749
  ):
88750
+ self.client_token = client_token
88751
+ self.dry_run = dry_run
88202
88752
  self.owner_account = owner_account
88203
88753
  self.owner_id = owner_id
88204
88754
  # The ID of the region where the vSwitch is deployed.
@@ -88231,6 +88781,10 @@ class ModifyVSwitchCidrReservationAttributeRequest(TeaModel):
88231
88781
  return _map
88232
88782
 
88233
88783
  result = dict()
88784
+ if self.client_token is not None:
88785
+ result['ClientToken'] = self.client_token
88786
+ if self.dry_run is not None:
88787
+ result['DryRun'] = self.dry_run
88234
88788
  if self.owner_account is not None:
88235
88789
  result['OwnerAccount'] = self.owner_account
88236
88790
  if self.owner_id is not None:
@@ -88251,6 +88805,10 @@ class ModifyVSwitchCidrReservationAttributeRequest(TeaModel):
88251
88805
 
88252
88806
  def from_map(self, m: dict = None):
88253
88807
  m = m or dict()
88808
+ if m.get('ClientToken') is not None:
88809
+ self.client_token = m.get('ClientToken')
88810
+ if m.get('DryRun') is not None:
88811
+ self.dry_run = m.get('DryRun')
88254
88812
  if m.get('OwnerAccount') is not None:
88255
88813
  self.owner_account = m.get('OwnerAccount')
88256
88814
  if m.get('OwnerId') is not None:
@@ -96332,11 +96890,21 @@ class StartFailoverTestJobRequest(TeaModel):
96332
96890
  region_id: str = None,
96333
96891
  resource_owner_account: str = None,
96334
96892
  ):
96893
+ # The client token that is used to ensure the idempotence of the request.
96894
+ #
96895
+ # You can use the client to generate the token, but you must make sure that the token is unique among different requests. The client token can contain only ASCII characters.
96896
+ #
96897
+ # > 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.
96335
96898
  self.client_token = client_token
96899
+ # The ID of the failover test.
96900
+ #
96336
96901
  # This parameter is required.
96337
96902
  self.job_id = job_id
96338
96903
  self.owner_account = owner_account
96339
96904
  self.owner_id = owner_id
96905
+ # The region ID of the failover test.
96906
+ #
96907
+ # You can call the [DescribeRegions](https://help.aliyun.com/document_detail/36063.html) operation to query the most recent region list.
96340
96908
  self.region_id = region_id
96341
96909
  self.resource_owner_account = resource_owner_account
96342
96910
 
@@ -96385,6 +96953,7 @@ class StartFailoverTestJobResponseBody(TeaModel):
96385
96953
  self,
96386
96954
  request_id: str = None,
96387
96955
  ):
96956
+ # The request ID.
96388
96957
  self.request_id = request_id
96389
96958
 
96390
96959
  def validate(self):