alibabacloud-cloudfw20171207 3.6.1__py3-none-any.whl → 4.0.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.

Potentially problematic release.


This version of alibabacloud-cloudfw20171207 might be problematic. Click here for more details.

@@ -227,6 +227,8 @@ class Client(OpenApiClient):
227
227
  query['DestinationType'] = request.destination_type
228
228
  if not UtilClient.is_unset(request.direction):
229
229
  query['Direction'] = request.direction
230
+ if not UtilClient.is_unset(request.domain_resolve_type):
231
+ query['DomainResolveType'] = request.domain_resolve_type
230
232
  if not UtilClient.is_unset(request.end_time):
231
233
  query['EndTime'] = request.end_time
232
234
  if not UtilClient.is_unset(request.ip_version):
@@ -312,6 +314,8 @@ class Client(OpenApiClient):
312
314
  query['DestinationType'] = request.destination_type
313
315
  if not UtilClient.is_unset(request.direction):
314
316
  query['Direction'] = request.direction
317
+ if not UtilClient.is_unset(request.domain_resolve_type):
318
+ query['DomainResolveType'] = request.domain_resolve_type
315
319
  if not UtilClient.is_unset(request.end_time):
316
320
  query['EndTime'] = request.end_time
317
321
  if not UtilClient.is_unset(request.ip_version):
@@ -759,6 +763,8 @@ class Client(OpenApiClient):
759
763
  query['Lang'] = request.lang
760
764
  if not UtilClient.is_unset(request.task_data):
761
765
  query['TaskData'] = request.task_data
766
+ if not UtilClient.is_unset(request.time_zone):
767
+ query['TimeZone'] = request.time_zone
762
768
  req = open_api_models.OpenApiRequest(
763
769
  query=OpenApiUtilClient.query(query)
764
770
  )
@@ -796,6 +802,8 @@ class Client(OpenApiClient):
796
802
  query['Lang'] = request.lang
797
803
  if not UtilClient.is_unset(request.task_data):
798
804
  query['TaskData'] = request.task_data
805
+ if not UtilClient.is_unset(request.time_zone):
806
+ query['TimeZone'] = request.time_zone
799
807
  req = open_api_models.OpenApiRequest(
800
808
  query=OpenApiUtilClient.query(query)
801
809
  )
@@ -1043,6 +1051,8 @@ class Client(OpenApiClient):
1043
1051
  runtime: util_models.RuntimeOptions,
1044
1052
  ) -> cloudfw_20171207_models.CreateSecurityProxyResponse:
1045
1053
  """
1054
+ @summary 创建安全正向代理
1055
+
1046
1056
  @param request: CreateSecurityProxyRequest
1047
1057
  @param runtime: runtime options for this request RuntimeOptions
1048
1058
  @return: CreateSecurityProxyResponse
@@ -1096,6 +1106,8 @@ class Client(OpenApiClient):
1096
1106
  runtime: util_models.RuntimeOptions,
1097
1107
  ) -> cloudfw_20171207_models.CreateSecurityProxyResponse:
1098
1108
  """
1109
+ @summary 创建安全正向代理
1110
+
1099
1111
  @param request: CreateSecurityProxyRequest
1100
1112
  @param runtime: runtime options for this request RuntimeOptions
1101
1113
  @return: CreateSecurityProxyResponse
@@ -1148,6 +1160,8 @@ class Client(OpenApiClient):
1148
1160
  request: cloudfw_20171207_models.CreateSecurityProxyRequest,
1149
1161
  ) -> cloudfw_20171207_models.CreateSecurityProxyResponse:
1150
1162
  """
1163
+ @summary 创建安全正向代理
1164
+
1151
1165
  @param request: CreateSecurityProxyRequest
1152
1166
  @return: CreateSecurityProxyResponse
1153
1167
  """
@@ -1159,12 +1173,114 @@ class Client(OpenApiClient):
1159
1173
  request: cloudfw_20171207_models.CreateSecurityProxyRequest,
1160
1174
  ) -> cloudfw_20171207_models.CreateSecurityProxyResponse:
1161
1175
  """
1176
+ @summary 创建安全正向代理
1177
+
1162
1178
  @param request: CreateSecurityProxyRequest
1163
1179
  @return: CreateSecurityProxyResponse
1164
1180
  """
1165
1181
  runtime = util_models.RuntimeOptions()
1166
1182
  return await self.create_security_proxy_with_options_async(request, runtime)
1167
1183
 
1184
+ def create_sls_log_dispatch_with_options(
1185
+ self,
1186
+ request: cloudfw_20171207_models.CreateSlsLogDispatchRequest,
1187
+ runtime: util_models.RuntimeOptions,
1188
+ ) -> cloudfw_20171207_models.CreateSlsLogDispatchResponse:
1189
+ """
1190
+ @summary 创建云防火墙SLS日志投递
1191
+
1192
+ @param request: CreateSlsLogDispatchRequest
1193
+ @param runtime: runtime options for this request RuntimeOptions
1194
+ @return: CreateSlsLogDispatchResponse
1195
+ """
1196
+ UtilClient.validate_model(request)
1197
+ body = {}
1198
+ if not UtilClient.is_unset(request.sls_region_id):
1199
+ body['SlsRegionId'] = request.sls_region_id
1200
+ if not UtilClient.is_unset(request.ttl):
1201
+ body['Ttl'] = request.ttl
1202
+ req = open_api_models.OpenApiRequest(
1203
+ body=OpenApiUtilClient.parse_to_map(body)
1204
+ )
1205
+ params = open_api_models.Params(
1206
+ action='CreateSlsLogDispatch',
1207
+ version='2017-12-07',
1208
+ protocol='HTTPS',
1209
+ pathname='/',
1210
+ method='POST',
1211
+ auth_type='AK',
1212
+ style='RPC',
1213
+ req_body_type='formData',
1214
+ body_type='json'
1215
+ )
1216
+ return TeaCore.from_map(
1217
+ cloudfw_20171207_models.CreateSlsLogDispatchResponse(),
1218
+ self.call_api(params, req, runtime)
1219
+ )
1220
+
1221
+ async def create_sls_log_dispatch_with_options_async(
1222
+ self,
1223
+ request: cloudfw_20171207_models.CreateSlsLogDispatchRequest,
1224
+ runtime: util_models.RuntimeOptions,
1225
+ ) -> cloudfw_20171207_models.CreateSlsLogDispatchResponse:
1226
+ """
1227
+ @summary 创建云防火墙SLS日志投递
1228
+
1229
+ @param request: CreateSlsLogDispatchRequest
1230
+ @param runtime: runtime options for this request RuntimeOptions
1231
+ @return: CreateSlsLogDispatchResponse
1232
+ """
1233
+ UtilClient.validate_model(request)
1234
+ body = {}
1235
+ if not UtilClient.is_unset(request.sls_region_id):
1236
+ body['SlsRegionId'] = request.sls_region_id
1237
+ if not UtilClient.is_unset(request.ttl):
1238
+ body['Ttl'] = request.ttl
1239
+ req = open_api_models.OpenApiRequest(
1240
+ body=OpenApiUtilClient.parse_to_map(body)
1241
+ )
1242
+ params = open_api_models.Params(
1243
+ action='CreateSlsLogDispatch',
1244
+ version='2017-12-07',
1245
+ protocol='HTTPS',
1246
+ pathname='/',
1247
+ method='POST',
1248
+ auth_type='AK',
1249
+ style='RPC',
1250
+ req_body_type='formData',
1251
+ body_type='json'
1252
+ )
1253
+ return TeaCore.from_map(
1254
+ cloudfw_20171207_models.CreateSlsLogDispatchResponse(),
1255
+ await self.call_api_async(params, req, runtime)
1256
+ )
1257
+
1258
+ def create_sls_log_dispatch(
1259
+ self,
1260
+ request: cloudfw_20171207_models.CreateSlsLogDispatchRequest,
1261
+ ) -> cloudfw_20171207_models.CreateSlsLogDispatchResponse:
1262
+ """
1263
+ @summary 创建云防火墙SLS日志投递
1264
+
1265
+ @param request: CreateSlsLogDispatchRequest
1266
+ @return: CreateSlsLogDispatchResponse
1267
+ """
1268
+ runtime = util_models.RuntimeOptions()
1269
+ return self.create_sls_log_dispatch_with_options(request, runtime)
1270
+
1271
+ async def create_sls_log_dispatch_async(
1272
+ self,
1273
+ request: cloudfw_20171207_models.CreateSlsLogDispatchRequest,
1274
+ ) -> cloudfw_20171207_models.CreateSlsLogDispatchResponse:
1275
+ """
1276
+ @summary 创建云防火墙SLS日志投递
1277
+
1278
+ @param request: CreateSlsLogDispatchRequest
1279
+ @return: CreateSlsLogDispatchResponse
1280
+ """
1281
+ runtime = util_models.RuntimeOptions()
1282
+ return await self.create_sls_log_dispatch_with_options_async(request, runtime)
1283
+
1168
1284
  def create_tr_firewall_v2with_options(
1169
1285
  self,
1170
1286
  request: cloudfw_20171207_models.CreateTrFirewallV2Request,
@@ -1323,6 +1439,8 @@ class Client(OpenApiClient):
1323
1439
  runtime: util_models.RuntimeOptions,
1324
1440
  ) -> cloudfw_20171207_models.CreateTrFirewallV2RoutePolicyResponse:
1325
1441
  """
1442
+ @summary Creates a routing policy for a VPC firewall of a transit router.
1443
+
1326
1444
  @param tmp_req: CreateTrFirewallV2RoutePolicyRequest
1327
1445
  @param runtime: runtime options for this request RuntimeOptions
1328
1446
  @return: CreateTrFirewallV2RoutePolicyResponse
@@ -1374,6 +1492,8 @@ class Client(OpenApiClient):
1374
1492
  runtime: util_models.RuntimeOptions,
1375
1493
  ) -> cloudfw_20171207_models.CreateTrFirewallV2RoutePolicyResponse:
1376
1494
  """
1495
+ @summary Creates a routing policy for a VPC firewall of a transit router.
1496
+
1377
1497
  @param tmp_req: CreateTrFirewallV2RoutePolicyRequest
1378
1498
  @param runtime: runtime options for this request RuntimeOptions
1379
1499
  @return: CreateTrFirewallV2RoutePolicyResponse
@@ -1424,6 +1544,8 @@ class Client(OpenApiClient):
1424
1544
  request: cloudfw_20171207_models.CreateTrFirewallV2RoutePolicyRequest,
1425
1545
  ) -> cloudfw_20171207_models.CreateTrFirewallV2RoutePolicyResponse:
1426
1546
  """
1547
+ @summary Creates a routing policy for a VPC firewall of a transit router.
1548
+
1427
1549
  @param request: CreateTrFirewallV2RoutePolicyRequest
1428
1550
  @return: CreateTrFirewallV2RoutePolicyResponse
1429
1551
  """
@@ -1435,6 +1557,8 @@ class Client(OpenApiClient):
1435
1557
  request: cloudfw_20171207_models.CreateTrFirewallV2RoutePolicyRequest,
1436
1558
  ) -> cloudfw_20171207_models.CreateTrFirewallV2RoutePolicyResponse:
1437
1559
  """
1560
+ @summary Creates a routing policy for a VPC firewall of a transit router.
1561
+
1438
1562
  @param request: CreateTrFirewallV2RoutePolicyRequest
1439
1563
  @return: CreateTrFirewallV2RoutePolicyResponse
1440
1564
  """
@@ -1777,6 +1901,8 @@ class Client(OpenApiClient):
1777
1901
  query['Destination'] = request.destination
1778
1902
  if not UtilClient.is_unset(request.destination_type):
1779
1903
  query['DestinationType'] = request.destination_type
1904
+ if not UtilClient.is_unset(request.domain_resolve_type):
1905
+ query['DomainResolveType'] = request.domain_resolve_type
1780
1906
  if not UtilClient.is_unset(request.end_time):
1781
1907
  query['EndTime'] = request.end_time
1782
1908
  if not UtilClient.is_unset(request.lang):
@@ -1860,6 +1986,8 @@ class Client(OpenApiClient):
1860
1986
  query['Destination'] = request.destination
1861
1987
  if not UtilClient.is_unset(request.destination_type):
1862
1988
  query['DestinationType'] = request.destination_type
1989
+ if not UtilClient.is_unset(request.domain_resolve_type):
1990
+ query['DomainResolveType'] = request.domain_resolve_type
1863
1991
  if not UtilClient.is_unset(request.end_time):
1864
1992
  query['EndTime'] = request.end_time
1865
1993
  if not UtilClient.is_unset(request.lang):
@@ -2070,7 +2198,7 @@ class Client(OpenApiClient):
2070
2198
  @summary Deletes an access control policy.
2071
2199
 
2072
2200
  @description You can call the DeleteControlPolicy operation to delete an access control policy that applies to inbound or outbound traffic.
2073
- ## Limits
2201
+ ## [](#qps-)Limits
2074
2202
  You can call this operation up to 10 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
2075
2203
 
2076
2204
  @param request: DeleteControlPolicyRequest
@@ -2115,7 +2243,7 @@ class Client(OpenApiClient):
2115
2243
  @summary Deletes an access control policy.
2116
2244
 
2117
2245
  @description You can call the DeleteControlPolicy operation to delete an access control policy that applies to inbound or outbound traffic.
2118
- ## Limits
2246
+ ## [](#qps-)Limits
2119
2247
  You can call this operation up to 10 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
2120
2248
 
2121
2249
  @param request: DeleteControlPolicyRequest
@@ -2159,7 +2287,7 @@ class Client(OpenApiClient):
2159
2287
  @summary Deletes an access control policy.
2160
2288
 
2161
2289
  @description You can call the DeleteControlPolicy operation to delete an access control policy that applies to inbound or outbound traffic.
2162
- ## Limits
2290
+ ## [](#qps-)Limits
2163
2291
  You can call this operation up to 10 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
2164
2292
 
2165
2293
  @param request: DeleteControlPolicyRequest
@@ -2176,7 +2304,7 @@ class Client(OpenApiClient):
2176
2304
  @summary Deletes an access control policy.
2177
2305
 
2178
2306
  @description You can call the DeleteControlPolicy operation to delete an access control policy that applies to inbound or outbound traffic.
2179
- ## Limits
2307
+ ## [](#qps-)Limits
2180
2308
  You can call this operation up to 10 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
2181
2309
 
2182
2310
  @param request: DeleteControlPolicyRequest
@@ -2415,6 +2543,8 @@ class Client(OpenApiClient):
2415
2543
  runtime: util_models.RuntimeOptions,
2416
2544
  ) -> cloudfw_20171207_models.DeleteFirewallV2RoutePoliciesResponse:
2417
2545
  """
2546
+ @summary Deletes routing policies for a virtual private cloud (VPC) firewall of a transit router.
2547
+
2418
2548
  @param request: DeleteFirewallV2RoutePoliciesRequest
2419
2549
  @param runtime: runtime options for this request RuntimeOptions
2420
2550
  @return: DeleteFirewallV2RoutePoliciesResponse
@@ -2452,6 +2582,8 @@ class Client(OpenApiClient):
2452
2582
  runtime: util_models.RuntimeOptions,
2453
2583
  ) -> cloudfw_20171207_models.DeleteFirewallV2RoutePoliciesResponse:
2454
2584
  """
2585
+ @summary Deletes routing policies for a virtual private cloud (VPC) firewall of a transit router.
2586
+
2455
2587
  @param request: DeleteFirewallV2RoutePoliciesRequest
2456
2588
  @param runtime: runtime options for this request RuntimeOptions
2457
2589
  @return: DeleteFirewallV2RoutePoliciesResponse
@@ -2488,6 +2620,8 @@ class Client(OpenApiClient):
2488
2620
  request: cloudfw_20171207_models.DeleteFirewallV2RoutePoliciesRequest,
2489
2621
  ) -> cloudfw_20171207_models.DeleteFirewallV2RoutePoliciesResponse:
2490
2622
  """
2623
+ @summary Deletes routing policies for a virtual private cloud (VPC) firewall of a transit router.
2624
+
2491
2625
  @param request: DeleteFirewallV2RoutePoliciesRequest
2492
2626
  @return: DeleteFirewallV2RoutePoliciesResponse
2493
2627
  """
@@ -2499,6 +2633,8 @@ class Client(OpenApiClient):
2499
2633
  request: cloudfw_20171207_models.DeleteFirewallV2RoutePoliciesRequest,
2500
2634
  ) -> cloudfw_20171207_models.DeleteFirewallV2RoutePoliciesResponse:
2501
2635
  """
2636
+ @summary Deletes routing policies for a virtual private cloud (VPC) firewall of a transit router.
2637
+
2502
2638
  @param request: DeleteFirewallV2RoutePoliciesRequest
2503
2639
  @return: DeleteFirewallV2RoutePoliciesResponse
2504
2640
  """
@@ -2847,6 +2983,8 @@ class Client(OpenApiClient):
2847
2983
  runtime: util_models.RuntimeOptions,
2848
2984
  ) -> cloudfw_20171207_models.DeleteSecurityProxyResponse:
2849
2985
  """
2986
+ @summary Deletes a NAT firewall.
2987
+
2850
2988
  @param request: DeleteSecurityProxyRequest
2851
2989
  @param runtime: runtime options for this request RuntimeOptions
2852
2990
  @return: DeleteSecurityProxyResponse
@@ -2882,6 +3020,8 @@ class Client(OpenApiClient):
2882
3020
  runtime: util_models.RuntimeOptions,
2883
3021
  ) -> cloudfw_20171207_models.DeleteSecurityProxyResponse:
2884
3022
  """
3023
+ @summary Deletes a NAT firewall.
3024
+
2885
3025
  @param request: DeleteSecurityProxyRequest
2886
3026
  @param runtime: runtime options for this request RuntimeOptions
2887
3027
  @return: DeleteSecurityProxyResponse
@@ -2916,6 +3056,8 @@ class Client(OpenApiClient):
2916
3056
  request: cloudfw_20171207_models.DeleteSecurityProxyRequest,
2917
3057
  ) -> cloudfw_20171207_models.DeleteSecurityProxyResponse:
2918
3058
  """
3059
+ @summary Deletes a NAT firewall.
3060
+
2919
3061
  @param request: DeleteSecurityProxyRequest
2920
3062
  @return: DeleteSecurityProxyResponse
2921
3063
  """
@@ -2927,6 +3069,8 @@ class Client(OpenApiClient):
2927
3069
  request: cloudfw_20171207_models.DeleteSecurityProxyRequest,
2928
3070
  ) -> cloudfw_20171207_models.DeleteSecurityProxyResponse:
2929
3071
  """
3072
+ @summary Deletes a NAT firewall.
3073
+
2930
3074
  @param request: DeleteSecurityProxyRequest
2931
3075
  @return: DeleteSecurityProxyResponse
2932
3076
  """
@@ -4179,6 +4323,8 @@ class Client(OpenApiClient):
4179
4323
  runtime: util_models.RuntimeOptions,
4180
4324
  ) -> cloudfw_20171207_models.DescribeDefaultIPSConfigResponse:
4181
4325
  """
4326
+ @summary Queries the default configurations of the intrusion prevention system (IPS).
4327
+
4182
4328
  @param request: DescribeDefaultIPSConfigRequest
4183
4329
  @param runtime: runtime options for this request RuntimeOptions
4184
4330
  @return: DescribeDefaultIPSConfigResponse
@@ -4187,8 +4333,6 @@ class Client(OpenApiClient):
4187
4333
  query = {}
4188
4334
  if not UtilClient.is_unset(request.lang):
4189
4335
  query['Lang'] = request.lang
4190
- if not UtilClient.is_unset(request.source_ip):
4191
- query['SourceIp'] = request.source_ip
4192
4336
  req = open_api_models.OpenApiRequest(
4193
4337
  query=OpenApiUtilClient.query(query)
4194
4338
  )
@@ -4214,6 +4358,8 @@ class Client(OpenApiClient):
4214
4358
  runtime: util_models.RuntimeOptions,
4215
4359
  ) -> cloudfw_20171207_models.DescribeDefaultIPSConfigResponse:
4216
4360
  """
4361
+ @summary Queries the default configurations of the intrusion prevention system (IPS).
4362
+
4217
4363
  @param request: DescribeDefaultIPSConfigRequest
4218
4364
  @param runtime: runtime options for this request RuntimeOptions
4219
4365
  @return: DescribeDefaultIPSConfigResponse
@@ -4222,8 +4368,6 @@ class Client(OpenApiClient):
4222
4368
  query = {}
4223
4369
  if not UtilClient.is_unset(request.lang):
4224
4370
  query['Lang'] = request.lang
4225
- if not UtilClient.is_unset(request.source_ip):
4226
- query['SourceIp'] = request.source_ip
4227
4371
  req = open_api_models.OpenApiRequest(
4228
4372
  query=OpenApiUtilClient.query(query)
4229
4373
  )
@@ -4248,6 +4392,8 @@ class Client(OpenApiClient):
4248
4392
  request: cloudfw_20171207_models.DescribeDefaultIPSConfigRequest,
4249
4393
  ) -> cloudfw_20171207_models.DescribeDefaultIPSConfigResponse:
4250
4394
  """
4395
+ @summary Queries the default configurations of the intrusion prevention system (IPS).
4396
+
4251
4397
  @param request: DescribeDefaultIPSConfigRequest
4252
4398
  @return: DescribeDefaultIPSConfigResponse
4253
4399
  """
@@ -4259,6 +4405,8 @@ class Client(OpenApiClient):
4259
4405
  request: cloudfw_20171207_models.DescribeDefaultIPSConfigRequest,
4260
4406
  ) -> cloudfw_20171207_models.DescribeDefaultIPSConfigResponse:
4261
4407
  """
4408
+ @summary Queries the default configurations of the intrusion prevention system (IPS).
4409
+
4262
4410
  @param request: DescribeDefaultIPSConfigRequest
4263
4411
  @return: DescribeDefaultIPSConfigResponse
4264
4412
  """
@@ -5523,7 +5671,7 @@ class Client(OpenApiClient):
5523
5671
  runtime: util_models.RuntimeOptions,
5524
5672
  ) -> cloudfw_20171207_models.DescribeNatFirewallListResponse:
5525
5673
  """
5526
- @summary 获取 NAT 防火墙列表
5674
+ @summary Queries details of NAT firewalls.
5527
5675
 
5528
5676
  @param request: DescribeNatFirewallListRequest
5529
5677
  @param runtime: runtime options for this request RuntimeOptions
@@ -5578,7 +5726,7 @@ class Client(OpenApiClient):
5578
5726
  runtime: util_models.RuntimeOptions,
5579
5727
  ) -> cloudfw_20171207_models.DescribeNatFirewallListResponse:
5580
5728
  """
5581
- @summary 获取 NAT 防火墙列表
5729
+ @summary Queries details of NAT firewalls.
5582
5730
 
5583
5731
  @param request: DescribeNatFirewallListRequest
5584
5732
  @param runtime: runtime options for this request RuntimeOptions
@@ -5632,7 +5780,7 @@ class Client(OpenApiClient):
5632
5780
  request: cloudfw_20171207_models.DescribeNatFirewallListRequest,
5633
5781
  ) -> cloudfw_20171207_models.DescribeNatFirewallListResponse:
5634
5782
  """
5635
- @summary 获取 NAT 防火墙列表
5783
+ @summary Queries details of NAT firewalls.
5636
5784
 
5637
5785
  @param request: DescribeNatFirewallListRequest
5638
5786
  @return: DescribeNatFirewallListResponse
@@ -5645,7 +5793,7 @@ class Client(OpenApiClient):
5645
5793
  request: cloudfw_20171207_models.DescribeNatFirewallListRequest,
5646
5794
  ) -> cloudfw_20171207_models.DescribeNatFirewallListResponse:
5647
5795
  """
5648
- @summary 获取 NAT 防火墙列表
5796
+ @summary Queries details of NAT firewalls.
5649
5797
 
5650
5798
  @param request: DescribeNatFirewallListRequest
5651
5799
  @return: DescribeNatFirewallListResponse
@@ -6303,7 +6451,9 @@ class Client(OpenApiClient):
6303
6451
  runtime: util_models.RuntimeOptions,
6304
6452
  ) -> cloudfw_20171207_models.DescribePostpayTrafficDetailResponse:
6305
6453
  """
6306
- @summary Queries the traffic details of Cloud Firewall that uses the pay-as-you-go billing method.
6454
+ @summary Queries the details of traffic billed based on the pay-as-you-go billing method.
6455
+
6456
+ @description If you use Cloud Firewall that uses the pay-as-you-go billing method, you can call this operation to query traffic details accurate to the granularity of specific resource instances. If you use Cloud Firewall that uses the subscription billing method, you can call this operation to query the overall traffic details.
6307
6457
 
6308
6458
  @param request: DescribePostpayTrafficDetailRequest
6309
6459
  @param runtime: runtime options for this request RuntimeOptions
@@ -6352,7 +6502,9 @@ class Client(OpenApiClient):
6352
6502
  runtime: util_models.RuntimeOptions,
6353
6503
  ) -> cloudfw_20171207_models.DescribePostpayTrafficDetailResponse:
6354
6504
  """
6355
- @summary Queries the traffic details of Cloud Firewall that uses the pay-as-you-go billing method.
6505
+ @summary Queries the details of traffic billed based on the pay-as-you-go billing method.
6506
+
6507
+ @description If you use Cloud Firewall that uses the pay-as-you-go billing method, you can call this operation to query traffic details accurate to the granularity of specific resource instances. If you use Cloud Firewall that uses the subscription billing method, you can call this operation to query the overall traffic details.
6356
6508
 
6357
6509
  @param request: DescribePostpayTrafficDetailRequest
6358
6510
  @param runtime: runtime options for this request RuntimeOptions
@@ -6400,7 +6552,9 @@ class Client(OpenApiClient):
6400
6552
  request: cloudfw_20171207_models.DescribePostpayTrafficDetailRequest,
6401
6553
  ) -> cloudfw_20171207_models.DescribePostpayTrafficDetailResponse:
6402
6554
  """
6403
- @summary Queries the traffic details of Cloud Firewall that uses the pay-as-you-go billing method.
6555
+ @summary Queries the details of traffic billed based on the pay-as-you-go billing method.
6556
+
6557
+ @description If you use Cloud Firewall that uses the pay-as-you-go billing method, you can call this operation to query traffic details accurate to the granularity of specific resource instances. If you use Cloud Firewall that uses the subscription billing method, you can call this operation to query the overall traffic details.
6404
6558
 
6405
6559
  @param request: DescribePostpayTrafficDetailRequest
6406
6560
  @return: DescribePostpayTrafficDetailResponse
@@ -6413,7 +6567,9 @@ class Client(OpenApiClient):
6413
6567
  request: cloudfw_20171207_models.DescribePostpayTrafficDetailRequest,
6414
6568
  ) -> cloudfw_20171207_models.DescribePostpayTrafficDetailResponse:
6415
6569
  """
6416
- @summary Queries the traffic details of Cloud Firewall that uses the pay-as-you-go billing method.
6570
+ @summary Queries the details of traffic billed based on the pay-as-you-go billing method.
6571
+
6572
+ @description If you use Cloud Firewall that uses the pay-as-you-go billing method, you can call this operation to query traffic details accurate to the granularity of specific resource instances. If you use Cloud Firewall that uses the subscription billing method, you can call this operation to query the overall traffic details.
6417
6573
 
6418
6574
  @param request: DescribePostpayTrafficDetailRequest
6419
6575
  @return: DescribePostpayTrafficDetailResponse
@@ -6427,7 +6583,9 @@ class Client(OpenApiClient):
6427
6583
  runtime: util_models.RuntimeOptions,
6428
6584
  ) -> cloudfw_20171207_models.DescribePostpayTrafficTotalResponse:
6429
6585
  """
6430
- @summary Queries the total traffic of Cloud Firewall that uses the pay-as-you-go billing method. The traffic for each type of firewall is queried.
6586
+ @summary Queries the total volume of traffic that is billed based on the pay-as-you-go billing method, including all firewalls within the current account.
6587
+
6588
+ @description You can call this operation to query statistics of the current Cloud Firewall from the date of purchase.
6431
6589
 
6432
6590
  @param request: DescribePostpayTrafficTotalRequest
6433
6591
  @param runtime: runtime options for this request RuntimeOptions
@@ -6462,7 +6620,9 @@ class Client(OpenApiClient):
6462
6620
  runtime: util_models.RuntimeOptions,
6463
6621
  ) -> cloudfw_20171207_models.DescribePostpayTrafficTotalResponse:
6464
6622
  """
6465
- @summary Queries the total traffic of Cloud Firewall that uses the pay-as-you-go billing method. The traffic for each type of firewall is queried.
6623
+ @summary Queries the total volume of traffic that is billed based on the pay-as-you-go billing method, including all firewalls within the current account.
6624
+
6625
+ @description You can call this operation to query statistics of the current Cloud Firewall from the date of purchase.
6466
6626
 
6467
6627
  @param request: DescribePostpayTrafficTotalRequest
6468
6628
  @param runtime: runtime options for this request RuntimeOptions
@@ -6496,7 +6656,9 @@ class Client(OpenApiClient):
6496
6656
  request: cloudfw_20171207_models.DescribePostpayTrafficTotalRequest,
6497
6657
  ) -> cloudfw_20171207_models.DescribePostpayTrafficTotalResponse:
6498
6658
  """
6499
- @summary Queries the total traffic of Cloud Firewall that uses the pay-as-you-go billing method. The traffic for each type of firewall is queried.
6659
+ @summary Queries the total volume of traffic that is billed based on the pay-as-you-go billing method, including all firewalls within the current account.
6660
+
6661
+ @description You can call this operation to query statistics of the current Cloud Firewall from the date of purchase.
6500
6662
 
6501
6663
  @param request: DescribePostpayTrafficTotalRequest
6502
6664
  @return: DescribePostpayTrafficTotalResponse
@@ -6509,7 +6671,9 @@ class Client(OpenApiClient):
6509
6671
  request: cloudfw_20171207_models.DescribePostpayTrafficTotalRequest,
6510
6672
  ) -> cloudfw_20171207_models.DescribePostpayTrafficTotalResponse:
6511
6673
  """
6512
- @summary Queries the total traffic of Cloud Firewall that uses the pay-as-you-go billing method. The traffic for each type of firewall is queried.
6674
+ @summary Queries the total volume of traffic that is billed based on the pay-as-you-go billing method, including all firewalls within the current account.
6675
+
6676
+ @description You can call this operation to query statistics of the current Cloud Firewall from the date of purchase.
6513
6677
 
6514
6678
  @param request: DescribePostpayTrafficTotalRequest
6515
6679
  @return: DescribePostpayTrafficTotalResponse
@@ -7481,6 +7645,8 @@ class Client(OpenApiClient):
7481
7645
  runtime: util_models.RuntimeOptions,
7482
7646
  ) -> cloudfw_20171207_models.DescribeTrFirewallsV2RouteListResponse:
7483
7647
  """
7648
+ @summary Queries the route tables of the VPC firewalls that are created for transit routers.
7649
+
7484
7650
  @param request: DescribeTrFirewallsV2RouteListRequest
7485
7651
  @param runtime: runtime options for this request RuntimeOptions
7486
7652
  @return: DescribeTrFirewallsV2RouteListResponse
@@ -7522,6 +7688,8 @@ class Client(OpenApiClient):
7522
7688
  runtime: util_models.RuntimeOptions,
7523
7689
  ) -> cloudfw_20171207_models.DescribeTrFirewallsV2RouteListResponse:
7524
7690
  """
7691
+ @summary Queries the route tables of the VPC firewalls that are created for transit routers.
7692
+
7525
7693
  @param request: DescribeTrFirewallsV2RouteListRequest
7526
7694
  @param runtime: runtime options for this request RuntimeOptions
7527
7695
  @return: DescribeTrFirewallsV2RouteListResponse
@@ -7562,6 +7730,8 @@ class Client(OpenApiClient):
7562
7730
  request: cloudfw_20171207_models.DescribeTrFirewallsV2RouteListRequest,
7563
7731
  ) -> cloudfw_20171207_models.DescribeTrFirewallsV2RouteListResponse:
7564
7732
  """
7733
+ @summary Queries the route tables of the VPC firewalls that are created for transit routers.
7734
+
7565
7735
  @param request: DescribeTrFirewallsV2RouteListRequest
7566
7736
  @return: DescribeTrFirewallsV2RouteListResponse
7567
7737
  """
@@ -7573,6 +7743,8 @@ class Client(OpenApiClient):
7573
7743
  request: cloudfw_20171207_models.DescribeTrFirewallsV2RouteListRequest,
7574
7744
  ) -> cloudfw_20171207_models.DescribeTrFirewallsV2RouteListResponse:
7575
7745
  """
7746
+ @summary Queries the route tables of the VPC firewalls that are created for transit routers.
7747
+
7576
7748
  @param request: DescribeTrFirewallsV2RouteListRequest
7577
7749
  @return: DescribeTrFirewallsV2RouteListResponse
7578
7750
  """
@@ -9377,6 +9549,8 @@ class Client(OpenApiClient):
9377
9549
  query['GroupUuid'] = request.group_uuid
9378
9550
  if not UtilClient.is_unset(request.lang):
9379
9551
  query['Lang'] = request.lang
9552
+ if not UtilClient.is_unset(request.modify_mode):
9553
+ query['ModifyMode'] = request.modify_mode
9380
9554
  if not UtilClient.is_unset(request.source_ip):
9381
9555
  query['SourceIp'] = request.source_ip
9382
9556
  if not UtilClient.is_unset(request.tag_list):
@@ -9432,6 +9606,8 @@ class Client(OpenApiClient):
9432
9606
  query['GroupUuid'] = request.group_uuid
9433
9607
  if not UtilClient.is_unset(request.lang):
9434
9608
  query['Lang'] = request.lang
9609
+ if not UtilClient.is_unset(request.modify_mode):
9610
+ query['ModifyMode'] = request.modify_mode
9435
9611
  if not UtilClient.is_unset(request.source_ip):
9436
9612
  query['SourceIp'] = request.source_ip
9437
9613
  if not UtilClient.is_unset(request.tag_list):
@@ -9531,6 +9707,8 @@ class Client(OpenApiClient):
9531
9707
  query['DestinationType'] = request.destination_type
9532
9708
  if not UtilClient.is_unset(request.direction):
9533
9709
  query['Direction'] = request.direction
9710
+ if not UtilClient.is_unset(request.domain_resolve_type):
9711
+ query['DomainResolveType'] = request.domain_resolve_type
9534
9712
  if not UtilClient.is_unset(request.end_time):
9535
9713
  query['EndTime'] = request.end_time
9536
9714
  if not UtilClient.is_unset(request.lang):
@@ -9612,6 +9790,8 @@ class Client(OpenApiClient):
9612
9790
  query['DestinationType'] = request.destination_type
9613
9791
  if not UtilClient.is_unset(request.direction):
9614
9792
  query['Direction'] = request.direction
9793
+ if not UtilClient.is_unset(request.domain_resolve_type):
9794
+ query['DomainResolveType'] = request.domain_resolve_type
9615
9795
  if not UtilClient.is_unset(request.end_time):
9616
9796
  query['EndTime'] = request.end_time
9617
9797
  if not UtilClient.is_unset(request.lang):
@@ -9821,22 +10001,18 @@ class Client(OpenApiClient):
9821
10001
  runtime: util_models.RuntimeOptions,
9822
10002
  ) -> cloudfw_20171207_models.ModifyDefaultIPSConfigResponse:
9823
10003
  """
10004
+ @summary Modifies the default configuration of the intrusion prevention system (IPS).
10005
+
9824
10006
  @param request: ModifyDefaultIPSConfigRequest
9825
10007
  @param runtime: runtime options for this request RuntimeOptions
9826
10008
  @return: ModifyDefaultIPSConfigResponse
9827
10009
  """
9828
10010
  UtilClient.validate_model(request)
9829
10011
  query = {}
9830
- if not UtilClient.is_unset(request.ai_rules):
9831
- query['AiRules'] = request.ai_rules
9832
10012
  if not UtilClient.is_unset(request.basic_rules):
9833
10013
  query['BasicRules'] = request.basic_rules
9834
10014
  if not UtilClient.is_unset(request.cti_rules):
9835
10015
  query['CtiRules'] = request.cti_rules
9836
- if not UtilClient.is_unset(request.enable_all_patch):
9837
- query['EnableAllPatch'] = request.enable_all_patch
9838
- if not UtilClient.is_unset(request.enable_default):
9839
- query['EnableDefault'] = request.enable_default
9840
10016
  if not UtilClient.is_unset(request.lang):
9841
10017
  query['Lang'] = request.lang
9842
10018
  if not UtilClient.is_unset(request.patch_rules):
@@ -9845,8 +10021,6 @@ class Client(OpenApiClient):
9845
10021
  query['RuleClass'] = request.rule_class
9846
10022
  if not UtilClient.is_unset(request.run_mode):
9847
10023
  query['RunMode'] = request.run_mode
9848
- if not UtilClient.is_unset(request.source_ip):
9849
- query['SourceIp'] = request.source_ip
9850
10024
  req = open_api_models.OpenApiRequest(
9851
10025
  query=OpenApiUtilClient.query(query)
9852
10026
  )
@@ -9872,22 +10046,18 @@ class Client(OpenApiClient):
9872
10046
  runtime: util_models.RuntimeOptions,
9873
10047
  ) -> cloudfw_20171207_models.ModifyDefaultIPSConfigResponse:
9874
10048
  """
10049
+ @summary Modifies the default configuration of the intrusion prevention system (IPS).
10050
+
9875
10051
  @param request: ModifyDefaultIPSConfigRequest
9876
10052
  @param runtime: runtime options for this request RuntimeOptions
9877
10053
  @return: ModifyDefaultIPSConfigResponse
9878
10054
  """
9879
10055
  UtilClient.validate_model(request)
9880
10056
  query = {}
9881
- if not UtilClient.is_unset(request.ai_rules):
9882
- query['AiRules'] = request.ai_rules
9883
10057
  if not UtilClient.is_unset(request.basic_rules):
9884
10058
  query['BasicRules'] = request.basic_rules
9885
10059
  if not UtilClient.is_unset(request.cti_rules):
9886
10060
  query['CtiRules'] = request.cti_rules
9887
- if not UtilClient.is_unset(request.enable_all_patch):
9888
- query['EnableAllPatch'] = request.enable_all_patch
9889
- if not UtilClient.is_unset(request.enable_default):
9890
- query['EnableDefault'] = request.enable_default
9891
10061
  if not UtilClient.is_unset(request.lang):
9892
10062
  query['Lang'] = request.lang
9893
10063
  if not UtilClient.is_unset(request.patch_rules):
@@ -9896,8 +10066,6 @@ class Client(OpenApiClient):
9896
10066
  query['RuleClass'] = request.rule_class
9897
10067
  if not UtilClient.is_unset(request.run_mode):
9898
10068
  query['RunMode'] = request.run_mode
9899
- if not UtilClient.is_unset(request.source_ip):
9900
- query['SourceIp'] = request.source_ip
9901
10069
  req = open_api_models.OpenApiRequest(
9902
10070
  query=OpenApiUtilClient.query(query)
9903
10071
  )
@@ -9922,6 +10090,8 @@ class Client(OpenApiClient):
9922
10090
  request: cloudfw_20171207_models.ModifyDefaultIPSConfigRequest,
9923
10091
  ) -> cloudfw_20171207_models.ModifyDefaultIPSConfigResponse:
9924
10092
  """
10093
+ @summary Modifies the default configuration of the intrusion prevention system (IPS).
10094
+
9925
10095
  @param request: ModifyDefaultIPSConfigRequest
9926
10096
  @return: ModifyDefaultIPSConfigResponse
9927
10097
  """
@@ -9933,6 +10103,8 @@ class Client(OpenApiClient):
9933
10103
  request: cloudfw_20171207_models.ModifyDefaultIPSConfigRequest,
9934
10104
  ) -> cloudfw_20171207_models.ModifyDefaultIPSConfigResponse:
9935
10105
  """
10106
+ @summary Modifies the default configuration of the intrusion prevention system (IPS).
10107
+
9936
10108
  @param request: ModifyDefaultIPSConfigRequest
9937
10109
  @return: ModifyDefaultIPSConfigResponse
9938
10110
  """
@@ -10467,6 +10639,126 @@ class Client(OpenApiClient):
10467
10639
  runtime = util_models.RuntimeOptions()
10468
10640
  return await self.modify_nat_firewall_control_policy_position_with_options_async(request, runtime)
10469
10641
 
10642
+ def modify_object_group_operation_with_options(
10643
+ self,
10644
+ request: cloudfw_20171207_models.ModifyObjectGroupOperationRequest,
10645
+ runtime: util_models.RuntimeOptions,
10646
+ ) -> cloudfw_20171207_models.ModifyObjectGroupOperationResponse:
10647
+ """
10648
+ @summary 修改对象组操作
10649
+
10650
+ @param request: ModifyObjectGroupOperationRequest
10651
+ @param runtime: runtime options for this request RuntimeOptions
10652
+ @return: ModifyObjectGroupOperationResponse
10653
+ """
10654
+ UtilClient.validate_model(request)
10655
+ query = {}
10656
+ if not UtilClient.is_unset(request.comment):
10657
+ query['Comment'] = request.comment
10658
+ if not UtilClient.is_unset(request.direction):
10659
+ query['Direction'] = request.direction
10660
+ if not UtilClient.is_unset(request.lang):
10661
+ query['Lang'] = request.lang
10662
+ if not UtilClient.is_unset(request.object_list):
10663
+ query['ObjectList'] = request.object_list
10664
+ if not UtilClient.is_unset(request.object_operation):
10665
+ query['ObjectOperation'] = request.object_operation
10666
+ if not UtilClient.is_unset(request.object_type):
10667
+ query['ObjectType'] = request.object_type
10668
+ if not UtilClient.is_unset(request.source_ip):
10669
+ query['SourceIp'] = request.source_ip
10670
+ req = open_api_models.OpenApiRequest(
10671
+ query=OpenApiUtilClient.query(query)
10672
+ )
10673
+ params = open_api_models.Params(
10674
+ action='ModifyObjectGroupOperation',
10675
+ version='2017-12-07',
10676
+ protocol='HTTPS',
10677
+ pathname='/',
10678
+ method='POST',
10679
+ auth_type='AK',
10680
+ style='RPC',
10681
+ req_body_type='formData',
10682
+ body_type='json'
10683
+ )
10684
+ return TeaCore.from_map(
10685
+ cloudfw_20171207_models.ModifyObjectGroupOperationResponse(),
10686
+ self.call_api(params, req, runtime)
10687
+ )
10688
+
10689
+ async def modify_object_group_operation_with_options_async(
10690
+ self,
10691
+ request: cloudfw_20171207_models.ModifyObjectGroupOperationRequest,
10692
+ runtime: util_models.RuntimeOptions,
10693
+ ) -> cloudfw_20171207_models.ModifyObjectGroupOperationResponse:
10694
+ """
10695
+ @summary 修改对象组操作
10696
+
10697
+ @param request: ModifyObjectGroupOperationRequest
10698
+ @param runtime: runtime options for this request RuntimeOptions
10699
+ @return: ModifyObjectGroupOperationResponse
10700
+ """
10701
+ UtilClient.validate_model(request)
10702
+ query = {}
10703
+ if not UtilClient.is_unset(request.comment):
10704
+ query['Comment'] = request.comment
10705
+ if not UtilClient.is_unset(request.direction):
10706
+ query['Direction'] = request.direction
10707
+ if not UtilClient.is_unset(request.lang):
10708
+ query['Lang'] = request.lang
10709
+ if not UtilClient.is_unset(request.object_list):
10710
+ query['ObjectList'] = request.object_list
10711
+ if not UtilClient.is_unset(request.object_operation):
10712
+ query['ObjectOperation'] = request.object_operation
10713
+ if not UtilClient.is_unset(request.object_type):
10714
+ query['ObjectType'] = request.object_type
10715
+ if not UtilClient.is_unset(request.source_ip):
10716
+ query['SourceIp'] = request.source_ip
10717
+ req = open_api_models.OpenApiRequest(
10718
+ query=OpenApiUtilClient.query(query)
10719
+ )
10720
+ params = open_api_models.Params(
10721
+ action='ModifyObjectGroupOperation',
10722
+ version='2017-12-07',
10723
+ protocol='HTTPS',
10724
+ pathname='/',
10725
+ method='POST',
10726
+ auth_type='AK',
10727
+ style='RPC',
10728
+ req_body_type='formData',
10729
+ body_type='json'
10730
+ )
10731
+ return TeaCore.from_map(
10732
+ cloudfw_20171207_models.ModifyObjectGroupOperationResponse(),
10733
+ await self.call_api_async(params, req, runtime)
10734
+ )
10735
+
10736
+ def modify_object_group_operation(
10737
+ self,
10738
+ request: cloudfw_20171207_models.ModifyObjectGroupOperationRequest,
10739
+ ) -> cloudfw_20171207_models.ModifyObjectGroupOperationResponse:
10740
+ """
10741
+ @summary 修改对象组操作
10742
+
10743
+ @param request: ModifyObjectGroupOperationRequest
10744
+ @return: ModifyObjectGroupOperationResponse
10745
+ """
10746
+ runtime = util_models.RuntimeOptions()
10747
+ return self.modify_object_group_operation_with_options(request, runtime)
10748
+
10749
+ async def modify_object_group_operation_async(
10750
+ self,
10751
+ request: cloudfw_20171207_models.ModifyObjectGroupOperationRequest,
10752
+ ) -> cloudfw_20171207_models.ModifyObjectGroupOperationResponse:
10753
+ """
10754
+ @summary 修改对象组操作
10755
+
10756
+ @param request: ModifyObjectGroupOperationRequest
10757
+ @return: ModifyObjectGroupOperationResponse
10758
+ """
10759
+ runtime = util_models.RuntimeOptions()
10760
+ return await self.modify_object_group_operation_with_options_async(request, runtime)
10761
+
10470
10762
  def modify_policy_advanced_config_with_options(
10471
10763
  self,
10472
10764
  request: cloudfw_20171207_models.ModifyPolicyAdvancedConfigRequest,
@@ -10593,6 +10885,8 @@ class Client(OpenApiClient):
10593
10885
  runtime: util_models.RuntimeOptions,
10594
10886
  ) -> cloudfw_20171207_models.ModifyTrFirewallV2ConfigurationResponse:
10595
10887
  """
10888
+ @summary Modifies the configuration of a virtual private cloud (VPC) firewall that is created for a transit router.
10889
+
10596
10890
  @param request: ModifyTrFirewallV2ConfigurationRequest
10597
10891
  @param runtime: runtime options for this request RuntimeOptions
10598
10892
  @return: ModifyTrFirewallV2ConfigurationResponse
@@ -10630,6 +10924,8 @@ class Client(OpenApiClient):
10630
10924
  runtime: util_models.RuntimeOptions,
10631
10925
  ) -> cloudfw_20171207_models.ModifyTrFirewallV2ConfigurationResponse:
10632
10926
  """
10927
+ @summary Modifies the configuration of a virtual private cloud (VPC) firewall that is created for a transit router.
10928
+
10633
10929
  @param request: ModifyTrFirewallV2ConfigurationRequest
10634
10930
  @param runtime: runtime options for this request RuntimeOptions
10635
10931
  @return: ModifyTrFirewallV2ConfigurationResponse
@@ -10666,6 +10962,8 @@ class Client(OpenApiClient):
10666
10962
  request: cloudfw_20171207_models.ModifyTrFirewallV2ConfigurationRequest,
10667
10963
  ) -> cloudfw_20171207_models.ModifyTrFirewallV2ConfigurationResponse:
10668
10964
  """
10965
+ @summary Modifies the configuration of a virtual private cloud (VPC) firewall that is created for a transit router.
10966
+
10669
10967
  @param request: ModifyTrFirewallV2ConfigurationRequest
10670
10968
  @return: ModifyTrFirewallV2ConfigurationResponse
10671
10969
  """
@@ -10677,6 +10975,8 @@ class Client(OpenApiClient):
10677
10975
  request: cloudfw_20171207_models.ModifyTrFirewallV2ConfigurationRequest,
10678
10976
  ) -> cloudfw_20171207_models.ModifyTrFirewallV2ConfigurationResponse:
10679
10977
  """
10978
+ @summary Modifies the configuration of a virtual private cloud (VPC) firewall that is created for a transit router.
10979
+
10680
10980
  @param request: ModifyTrFirewallV2ConfigurationRequest
10681
10981
  @return: ModifyTrFirewallV2ConfigurationResponse
10682
10982
  """
@@ -10689,6 +10989,8 @@ class Client(OpenApiClient):
10689
10989
  runtime: util_models.RuntimeOptions,
10690
10990
  ) -> cloudfw_20171207_models.ModifyTrFirewallV2RoutePolicyScopeResponse:
10691
10991
  """
10992
+ @summary Modifies the effective scope of the routing policy created for the VPC firewall for a transit router.
10993
+
10692
10994
  @param tmp_req: ModifyTrFirewallV2RoutePolicyScopeRequest
10693
10995
  @param runtime: runtime options for this request RuntimeOptions
10694
10996
  @return: ModifyTrFirewallV2RoutePolicyScopeResponse
@@ -10738,6 +11040,8 @@ class Client(OpenApiClient):
10738
11040
  runtime: util_models.RuntimeOptions,
10739
11041
  ) -> cloudfw_20171207_models.ModifyTrFirewallV2RoutePolicyScopeResponse:
10740
11042
  """
11043
+ @summary Modifies the effective scope of the routing policy created for the VPC firewall for a transit router.
11044
+
10741
11045
  @param tmp_req: ModifyTrFirewallV2RoutePolicyScopeRequest
10742
11046
  @param runtime: runtime options for this request RuntimeOptions
10743
11047
  @return: ModifyTrFirewallV2RoutePolicyScopeResponse
@@ -10786,6 +11090,8 @@ class Client(OpenApiClient):
10786
11090
  request: cloudfw_20171207_models.ModifyTrFirewallV2RoutePolicyScopeRequest,
10787
11091
  ) -> cloudfw_20171207_models.ModifyTrFirewallV2RoutePolicyScopeResponse:
10788
11092
  """
11093
+ @summary Modifies the effective scope of the routing policy created for the VPC firewall for a transit router.
11094
+
10789
11095
  @param request: ModifyTrFirewallV2RoutePolicyScopeRequest
10790
11096
  @return: ModifyTrFirewallV2RoutePolicyScopeResponse
10791
11097
  """
@@ -10797,6 +11103,8 @@ class Client(OpenApiClient):
10797
11103
  request: cloudfw_20171207_models.ModifyTrFirewallV2RoutePolicyScopeRequest,
10798
11104
  ) -> cloudfw_20171207_models.ModifyTrFirewallV2RoutePolicyScopeResponse:
10799
11105
  """
11106
+ @summary Modifies the effective scope of the routing policy created for the VPC firewall for a transit router.
11107
+
10800
11108
  @param request: ModifyTrFirewallV2RoutePolicyScopeRequest
10801
11109
  @return: ModifyTrFirewallV2RoutePolicyScopeResponse
10802
11110
  """
@@ -11341,6 +11649,8 @@ class Client(OpenApiClient):
11341
11649
  query['Destination'] = request.destination
11342
11650
  if not UtilClient.is_unset(request.destination_type):
11343
11651
  query['DestinationType'] = request.destination_type
11652
+ if not UtilClient.is_unset(request.domain_resolve_type):
11653
+ query['DomainResolveType'] = request.domain_resolve_type
11344
11654
  if not UtilClient.is_unset(request.end_time):
11345
11655
  query['EndTime'] = request.end_time
11346
11656
  if not UtilClient.is_unset(request.lang):
@@ -11422,6 +11732,8 @@ class Client(OpenApiClient):
11422
11732
  query['Destination'] = request.destination
11423
11733
  if not UtilClient.is_unset(request.destination_type):
11424
11734
  query['DestinationType'] = request.destination_type
11735
+ if not UtilClient.is_unset(request.domain_resolve_type):
11736
+ query['DomainResolveType'] = request.domain_resolve_type
11425
11737
  if not UtilClient.is_unset(request.end_time):
11426
11738
  query['EndTime'] = request.end_time
11427
11739
  if not UtilClient.is_unset(request.lang):
@@ -11653,6 +11965,8 @@ class Client(OpenApiClient):
11653
11965
  query['Lang'] = request.lang
11654
11966
  if not UtilClient.is_unset(request.member_uid):
11655
11967
  query['MemberUid'] = request.member_uid
11968
+ if not UtilClient.is_unset(request.rule_class):
11969
+ query['RuleClass'] = request.rule_class
11656
11970
  if not UtilClient.is_unset(request.run_mode):
11657
11971
  query['RunMode'] = request.run_mode
11658
11972
  if not UtilClient.is_unset(request.source_ip):
@@ -11704,6 +12018,8 @@ class Client(OpenApiClient):
11704
12018
  query['Lang'] = request.lang
11705
12019
  if not UtilClient.is_unset(request.member_uid):
11706
12020
  query['MemberUid'] = request.member_uid
12021
+ if not UtilClient.is_unset(request.rule_class):
12022
+ query['RuleClass'] = request.rule_class
11707
12023
  if not UtilClient.is_unset(request.run_mode):
11708
12024
  query['RunMode'] = request.run_mode
11709
12025
  if not UtilClient.is_unset(request.source_ip):
@@ -12016,8 +12332,8 @@ class Client(OpenApiClient):
12016
12332
  @summary Turns off all firewall switches.
12017
12333
 
12018
12334
  @description You can call the PutDisableAllFwSwitch operation to turn off all firewall switches.
12019
- ## Limits
12020
- You can call this operation up to 10 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
12335
+ ## [](#qps-)QPS limits
12336
+ You can call this operation up to 10 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
12021
12337
 
12022
12338
  @param request: PutDisableAllFwSwitchRequest
12023
12339
  @param runtime: runtime options for this request RuntimeOptions
@@ -12059,8 +12375,8 @@ class Client(OpenApiClient):
12059
12375
  @summary Turns off all firewall switches.
12060
12376
 
12061
12377
  @description You can call the PutDisableAllFwSwitch operation to turn off all firewall switches.
12062
- ## Limits
12063
- You can call this operation up to 10 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
12378
+ ## [](#qps-)QPS limits
12379
+ You can call this operation up to 10 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
12064
12380
 
12065
12381
  @param request: PutDisableAllFwSwitchRequest
12066
12382
  @param runtime: runtime options for this request RuntimeOptions
@@ -12101,8 +12417,8 @@ class Client(OpenApiClient):
12101
12417
  @summary Turns off all firewall switches.
12102
12418
 
12103
12419
  @description You can call the PutDisableAllFwSwitch operation to turn off all firewall switches.
12104
- ## Limits
12105
- You can call this operation up to 10 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
12420
+ ## [](#qps-)QPS limits
12421
+ You can call this operation up to 10 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
12106
12422
 
12107
12423
  @param request: PutDisableAllFwSwitchRequest
12108
12424
  @return: PutDisableAllFwSwitchResponse
@@ -12118,8 +12434,8 @@ class Client(OpenApiClient):
12118
12434
  @summary Turns off all firewall switches.
12119
12435
 
12120
12436
  @description You can call the PutDisableAllFwSwitch operation to turn off all firewall switches.
12121
- ## Limits
12122
- You can call this operation up to 10 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
12437
+ ## [](#qps-)QPS limits
12438
+ You can call this operation up to 10 times per second per account. If the number of calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
12123
12439
 
12124
12440
  @param request: PutDisableAllFwSwitchRequest
12125
12441
  @return: PutDisableAllFwSwitchResponse
@@ -12509,7 +12825,7 @@ class Client(OpenApiClient):
12509
12825
  runtime: util_models.RuntimeOptions,
12510
12826
  ) -> cloudfw_20171207_models.ReleasePostInstanceResponse:
12511
12827
  """
12512
- @summary 释放按量付费实例
12828
+ @summary Releases Cloud Firewall that uses the pay-as-you-go billing method.
12513
12829
 
12514
12830
  @param request: ReleasePostInstanceRequest
12515
12831
  @param runtime: runtime options for this request RuntimeOptions
@@ -12544,7 +12860,7 @@ class Client(OpenApiClient):
12544
12860
  runtime: util_models.RuntimeOptions,
12545
12861
  ) -> cloudfw_20171207_models.ReleasePostInstanceResponse:
12546
12862
  """
12547
- @summary 释放按量付费实例
12863
+ @summary Releases Cloud Firewall that uses the pay-as-you-go billing method.
12548
12864
 
12549
12865
  @param request: ReleasePostInstanceRequest
12550
12866
  @param runtime: runtime options for this request RuntimeOptions
@@ -12578,7 +12894,7 @@ class Client(OpenApiClient):
12578
12894
  request: cloudfw_20171207_models.ReleasePostInstanceRequest,
12579
12895
  ) -> cloudfw_20171207_models.ReleasePostInstanceResponse:
12580
12896
  """
12581
- @summary 释放按量付费实例
12897
+ @summary Releases Cloud Firewall that uses the pay-as-you-go billing method.
12582
12898
 
12583
12899
  @param request: ReleasePostInstanceRequest
12584
12900
  @return: ReleasePostInstanceResponse
@@ -12591,7 +12907,7 @@ class Client(OpenApiClient):
12591
12907
  request: cloudfw_20171207_models.ReleasePostInstanceRequest,
12592
12908
  ) -> cloudfw_20171207_models.ReleasePostInstanceResponse:
12593
12909
  """
12594
- @summary 释放按量付费实例
12910
+ @summary Releases Cloud Firewall that uses the pay-as-you-go billing method.
12595
12911
 
12596
12912
  @param request: ReleasePostInstanceRequest
12597
12913
  @return: ReleasePostInstanceResponse
@@ -12825,6 +13141,8 @@ class Client(OpenApiClient):
12825
13141
  runtime: util_models.RuntimeOptions,
12826
13142
  ) -> cloudfw_20171207_models.SwitchSecurityProxyResponse:
12827
13143
  """
13144
+ @summary Enables or disables a NAT firewall.
13145
+
12828
13146
  @param request: SwitchSecurityProxyRequest
12829
13147
  @param runtime: runtime options for this request RuntimeOptions
12830
13148
  @return: SwitchSecurityProxyResponse
@@ -12862,6 +13180,8 @@ class Client(OpenApiClient):
12862
13180
  runtime: util_models.RuntimeOptions,
12863
13181
  ) -> cloudfw_20171207_models.SwitchSecurityProxyResponse:
12864
13182
  """
13183
+ @summary Enables or disables a NAT firewall.
13184
+
12865
13185
  @param request: SwitchSecurityProxyRequest
12866
13186
  @param runtime: runtime options for this request RuntimeOptions
12867
13187
  @return: SwitchSecurityProxyResponse
@@ -12898,6 +13218,8 @@ class Client(OpenApiClient):
12898
13218
  request: cloudfw_20171207_models.SwitchSecurityProxyRequest,
12899
13219
  ) -> cloudfw_20171207_models.SwitchSecurityProxyResponse:
12900
13220
  """
13221
+ @summary Enables or disables a NAT firewall.
13222
+
12901
13223
  @param request: SwitchSecurityProxyRequest
12902
13224
  @return: SwitchSecurityProxyResponse
12903
13225
  """
@@ -12909,6 +13231,8 @@ class Client(OpenApiClient):
12909
13231
  request: cloudfw_20171207_models.SwitchSecurityProxyRequest,
12910
13232
  ) -> cloudfw_20171207_models.SwitchSecurityProxyResponse:
12911
13233
  """
13234
+ @summary Enables or disables a NAT firewall.
13235
+
12912
13236
  @param request: SwitchSecurityProxyRequest
12913
13237
  @return: SwitchSecurityProxyResponse
12914
13238
  """