tccli 3.0.1364.1__py2.py3-none-any.whl → 3.0.1365.1__py2.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.
Files changed (36) hide show
  1. tccli/__init__.py +1 -1
  2. tccli/services/autoscaling/v20180419/api.json +1 -1
  3. tccli/services/cdn/cdn_client.py +161 -1380
  4. tccli/services/cdn/v20180606/api.json +5302 -9471
  5. tccli/services/cdn/v20180606/examples.json +0 -184
  6. tccli/services/cfs/v20190719/api.json +7 -7
  7. tccli/services/cls/v20201016/api.json +17 -13
  8. tccli/services/dlc/dlc_client.py +1622 -403
  9. tccli/services/dlc/v20210125/api.json +10882 -8052
  10. tccli/services/dlc/v20210125/examples.json +184 -0
  11. tccli/services/emr/v20190103/api.json +1 -1
  12. tccli/services/es/v20250101/api.json +38 -1
  13. tccli/services/ess/ess_client.py +110 -4
  14. tccli/services/ess/v20201111/api.json +354 -1
  15. tccli/services/ess/v20201111/examples.json +16 -0
  16. tccli/services/hunyuan/hunyuan_client.py +73 -179
  17. tccli/services/hunyuan/v20230901/api.json +0 -190
  18. tccli/services/hunyuan/v20230901/examples.json +0 -16
  19. tccli/services/monitor/v20180724/api.json +2 -2
  20. tccli/services/mps/v20190612/api.json +5 -5
  21. tccli/services/mqtt/v20240516/api.json +84 -0
  22. tccli/services/ocr/v20181119/api.json +3 -3
  23. tccli/services/ssl/v20191205/api.json +3 -3
  24. tccli/services/teo/teo_client.py +1266 -206
  25. tccli/services/teo/v20220901/api.json +1794 -112
  26. tccli/services/teo/v20220901/examples.json +160 -0
  27. tccli/services/tione/v20211111/api.json +10 -0
  28. tccli/services/trtc/v20190722/api.json +40 -7
  29. tccli/services/waf/v20180125/api.json +499 -0
  30. tccli/services/waf/v20180125/examples.json +32 -0
  31. tccli/services/waf/waf_client.py +224 -12
  32. {tccli-3.0.1364.1.dist-info → tccli-3.0.1365.1.dist-info}/METADATA +2 -2
  33. {tccli-3.0.1364.1.dist-info → tccli-3.0.1365.1.dist-info}/RECORD +36 -36
  34. {tccli-3.0.1364.1.dist-info → tccli-3.0.1365.1.dist-info}/WHEEL +0 -0
  35. {tccli-3.0.1364.1.dist-info → tccli-3.0.1365.1.dist-info}/entry_points.txt +0 -0
  36. {tccli-3.0.1364.1.dist-info → tccli-3.0.1365.1.dist-info}/license_files/LICENSE +0 -0
@@ -69,6 +69,58 @@ def doDescribeAttackType(args, parsed_globals):
69
69
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
70
70
 
71
71
 
72
+ def doDescribePeakPoints(args, parsed_globals):
73
+ g_param = parse_global_arg(parsed_globals)
74
+
75
+ if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
76
+ cred = credential.CVMRoleCredential()
77
+ elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
78
+ cred = credential.STSAssumeRoleCredential(
79
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
80
+ g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
81
+ )
82
+ elif os.getenv(OptionsDefine.ENV_TKE_REGION) and os.getenv(OptionsDefine.ENV_TKE_PROVIDER_ID) and os.getenv(OptionsDefine.ENV_TKE_WEB_IDENTITY_TOKEN_FILE) and os.getenv(OptionsDefine.ENV_TKE_ROLE_ARN):
83
+ cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
84
+ else:
85
+ cred = credential.Credential(
86
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
87
+ )
88
+ http_profile = HttpProfile(
89
+ reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
90
+ reqMethod="POST",
91
+ endpoint=g_param[OptionsDefine.Endpoint],
92
+ proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
93
+ )
94
+ profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
95
+ if g_param[OptionsDefine.Language]:
96
+ profile.language = g_param[OptionsDefine.Language]
97
+ mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
98
+ client = mod.WafClient(cred, g_param[OptionsDefine.Region], profile)
99
+ client._sdkVersion += ("_CLI_" + __version__)
100
+ models = MODELS_MAP[g_param[OptionsDefine.Version]]
101
+ model = models.DescribePeakPointsRequest()
102
+ model.from_json_string(json.dumps(args))
103
+ start_time = time.time()
104
+ while True:
105
+ rsp = client.DescribePeakPoints(model)
106
+ result = rsp.to_json_string()
107
+ try:
108
+ json_obj = json.loads(result)
109
+ except TypeError as e:
110
+ json_obj = json.loads(result.decode('utf-8')) # python3.3
111
+ if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
112
+ break
113
+ cur_time = time.time()
114
+ if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
115
+ raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
116
+ (g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
117
+ search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
118
+ else:
119
+ print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
120
+ time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
121
+ FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
122
+
123
+
72
124
  def doDescribeDomainDetailsClb(args, parsed_globals):
73
125
  g_param = parse_global_arg(parsed_globals)
74
126
 
@@ -381,6 +433,58 @@ def doDeleteIpAccessControl(args, parsed_globals):
381
433
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
382
434
 
383
435
 
436
+ def doDeleteOwaspWhiteRule(args, parsed_globals):
437
+ g_param = parse_global_arg(parsed_globals)
438
+
439
+ if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
440
+ cred = credential.CVMRoleCredential()
441
+ elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
442
+ cred = credential.STSAssumeRoleCredential(
443
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
444
+ g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
445
+ )
446
+ elif os.getenv(OptionsDefine.ENV_TKE_REGION) and os.getenv(OptionsDefine.ENV_TKE_PROVIDER_ID) and os.getenv(OptionsDefine.ENV_TKE_WEB_IDENTITY_TOKEN_FILE) and os.getenv(OptionsDefine.ENV_TKE_ROLE_ARN):
447
+ cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
448
+ else:
449
+ cred = credential.Credential(
450
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
451
+ )
452
+ http_profile = HttpProfile(
453
+ reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
454
+ reqMethod="POST",
455
+ endpoint=g_param[OptionsDefine.Endpoint],
456
+ proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
457
+ )
458
+ profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
459
+ if g_param[OptionsDefine.Language]:
460
+ profile.language = g_param[OptionsDefine.Language]
461
+ mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
462
+ client = mod.WafClient(cred, g_param[OptionsDefine.Region], profile)
463
+ client._sdkVersion += ("_CLI_" + __version__)
464
+ models = MODELS_MAP[g_param[OptionsDefine.Version]]
465
+ model = models.DeleteOwaspWhiteRuleRequest()
466
+ model.from_json_string(json.dumps(args))
467
+ start_time = time.time()
468
+ while True:
469
+ rsp = client.DeleteOwaspWhiteRule(model)
470
+ result = rsp.to_json_string()
471
+ try:
472
+ json_obj = json.loads(result)
473
+ except TypeError as e:
474
+ json_obj = json.loads(result.decode('utf-8')) # python3.3
475
+ if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
476
+ break
477
+ cur_time = time.time()
478
+ if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
479
+ raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
480
+ (g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
481
+ search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
482
+ else:
483
+ print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
484
+ time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
485
+ FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
486
+
487
+
384
488
  def doDescribeAreaBanAreas(args, parsed_globals):
385
489
  g_param = parse_global_arg(parsed_globals)
386
490
 
@@ -1889,7 +1993,7 @@ def doDeleteAntiInfoLeakRule(args, parsed_globals):
1889
1993
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
1890
1994
 
1891
1995
 
1892
- def doDescribePeakPoints(args, parsed_globals):
1996
+ def doCreateOwaspWhiteRule(args, parsed_globals):
1893
1997
  g_param = parse_global_arg(parsed_globals)
1894
1998
 
1895
1999
  if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
@@ -1918,11 +2022,11 @@ def doDescribePeakPoints(args, parsed_globals):
1918
2022
  client = mod.WafClient(cred, g_param[OptionsDefine.Region], profile)
1919
2023
  client._sdkVersion += ("_CLI_" + __version__)
1920
2024
  models = MODELS_MAP[g_param[OptionsDefine.Version]]
1921
- model = models.DescribePeakPointsRequest()
2025
+ model = models.CreateOwaspWhiteRuleRequest()
1922
2026
  model.from_json_string(json.dumps(args))
1923
2027
  start_time = time.time()
1924
2028
  while True:
1925
- rsp = client.DescribePeakPoints(model)
2029
+ rsp = client.CreateOwaspWhiteRule(model)
1926
2030
  result = rsp.to_json_string()
1927
2031
  try:
1928
2032
  json_obj = json.loads(result)
@@ -3553,6 +3657,58 @@ def doDescribeAttackOverview(args, parsed_globals):
3553
3657
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
3554
3658
 
3555
3659
 
3660
+ def doModifyOwaspWhiteRule(args, parsed_globals):
3661
+ g_param = parse_global_arg(parsed_globals)
3662
+
3663
+ if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
3664
+ cred = credential.CVMRoleCredential()
3665
+ elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
3666
+ cred = credential.STSAssumeRoleCredential(
3667
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
3668
+ g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
3669
+ )
3670
+ elif os.getenv(OptionsDefine.ENV_TKE_REGION) and os.getenv(OptionsDefine.ENV_TKE_PROVIDER_ID) and os.getenv(OptionsDefine.ENV_TKE_WEB_IDENTITY_TOKEN_FILE) and os.getenv(OptionsDefine.ENV_TKE_ROLE_ARN):
3671
+ cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
3672
+ else:
3673
+ cred = credential.Credential(
3674
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
3675
+ )
3676
+ http_profile = HttpProfile(
3677
+ reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
3678
+ reqMethod="POST",
3679
+ endpoint=g_param[OptionsDefine.Endpoint],
3680
+ proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
3681
+ )
3682
+ profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
3683
+ if g_param[OptionsDefine.Language]:
3684
+ profile.language = g_param[OptionsDefine.Language]
3685
+ mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
3686
+ client = mod.WafClient(cred, g_param[OptionsDefine.Region], profile)
3687
+ client._sdkVersion += ("_CLI_" + __version__)
3688
+ models = MODELS_MAP[g_param[OptionsDefine.Version]]
3689
+ model = models.ModifyOwaspWhiteRuleRequest()
3690
+ model.from_json_string(json.dumps(args))
3691
+ start_time = time.time()
3692
+ while True:
3693
+ rsp = client.ModifyOwaspWhiteRule(model)
3694
+ result = rsp.to_json_string()
3695
+ try:
3696
+ json_obj = json.loads(result)
3697
+ except TypeError as e:
3698
+ json_obj = json.loads(result.decode('utf-8')) # python3.3
3699
+ if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
3700
+ break
3701
+ cur_time = time.time()
3702
+ if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
3703
+ raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
3704
+ (g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
3705
+ search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
3706
+ else:
3707
+ print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
3708
+ time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
3709
+ FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
3710
+
3711
+
3556
3712
  def doDescribeAttackWhiteRule(args, parsed_globals):
3557
3713
  g_param = parse_global_arg(parsed_globals)
3558
3714
 
@@ -3761,7 +3917,7 @@ def doDescribePolicyStatus(args, parsed_globals):
3761
3917
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
3762
3918
 
3763
3919
 
3764
- def doDescribeSession(args, parsed_globals):
3920
+ def doDescribeBotSceneList(args, parsed_globals):
3765
3921
  g_param = parse_global_arg(parsed_globals)
3766
3922
 
3767
3923
  if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
@@ -3790,11 +3946,11 @@ def doDescribeSession(args, parsed_globals):
3790
3946
  client = mod.WafClient(cred, g_param[OptionsDefine.Region], profile)
3791
3947
  client._sdkVersion += ("_CLI_" + __version__)
3792
3948
  models = MODELS_MAP[g_param[OptionsDefine.Version]]
3793
- model = models.DescribeSessionRequest()
3949
+ model = models.DescribeBotSceneListRequest()
3794
3950
  model.from_json_string(json.dumps(args))
3795
3951
  start_time = time.time()
3796
3952
  while True:
3797
- rsp = client.DescribeSession(model)
3953
+ rsp = client.DescribeBotSceneList(model)
3798
3954
  result = rsp.to_json_string()
3799
3955
  try:
3800
3956
  json_obj = json.loads(result)
@@ -4177,6 +4333,58 @@ def doDescribeCiphersDetail(args, parsed_globals):
4177
4333
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
4178
4334
 
4179
4335
 
4336
+ def doDescribeOwaspWhiteRules(args, parsed_globals):
4337
+ g_param = parse_global_arg(parsed_globals)
4338
+
4339
+ if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
4340
+ cred = credential.CVMRoleCredential()
4341
+ elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
4342
+ cred = credential.STSAssumeRoleCredential(
4343
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
4344
+ g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
4345
+ )
4346
+ elif os.getenv(OptionsDefine.ENV_TKE_REGION) and os.getenv(OptionsDefine.ENV_TKE_PROVIDER_ID) and os.getenv(OptionsDefine.ENV_TKE_WEB_IDENTITY_TOKEN_FILE) and os.getenv(OptionsDefine.ENV_TKE_ROLE_ARN):
4347
+ cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
4348
+ else:
4349
+ cred = credential.Credential(
4350
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
4351
+ )
4352
+ http_profile = HttpProfile(
4353
+ reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
4354
+ reqMethod="POST",
4355
+ endpoint=g_param[OptionsDefine.Endpoint],
4356
+ proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
4357
+ )
4358
+ profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
4359
+ if g_param[OptionsDefine.Language]:
4360
+ profile.language = g_param[OptionsDefine.Language]
4361
+ mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
4362
+ client = mod.WafClient(cred, g_param[OptionsDefine.Region], profile)
4363
+ client._sdkVersion += ("_CLI_" + __version__)
4364
+ models = MODELS_MAP[g_param[OptionsDefine.Version]]
4365
+ model = models.DescribeOwaspWhiteRulesRequest()
4366
+ model.from_json_string(json.dumps(args))
4367
+ start_time = time.time()
4368
+ while True:
4369
+ rsp = client.DescribeOwaspWhiteRules(model)
4370
+ result = rsp.to_json_string()
4371
+ try:
4372
+ json_obj = json.loads(result)
4373
+ except TypeError as e:
4374
+ json_obj = json.loads(result.decode('utf-8')) # python3.3
4375
+ if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
4376
+ break
4377
+ cur_time = time.time()
4378
+ if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
4379
+ raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
4380
+ (g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
4381
+ search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
4382
+ else:
4383
+ print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
4384
+ time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
4385
+ FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
4386
+
4387
+
4180
4388
  def doModifyAreaBanStatus(args, parsed_globals):
4181
4389
  g_param = parse_global_arg(parsed_globals)
4182
4390
 
@@ -7193,7 +7401,7 @@ def doDescribeWafAutoDenyStatus(args, parsed_globals):
7193
7401
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
7194
7402
 
7195
7403
 
7196
- def doDescribeBotSceneList(args, parsed_globals):
7404
+ def doDescribeSession(args, parsed_globals):
7197
7405
  g_param = parse_global_arg(parsed_globals)
7198
7406
 
7199
7407
  if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
@@ -7222,11 +7430,11 @@ def doDescribeBotSceneList(args, parsed_globals):
7222
7430
  client = mod.WafClient(cred, g_param[OptionsDefine.Region], profile)
7223
7431
  client._sdkVersion += ("_CLI_" + __version__)
7224
7432
  models = MODELS_MAP[g_param[OptionsDefine.Version]]
7225
- model = models.DescribeBotSceneListRequest()
7433
+ model = models.DescribeSessionRequest()
7226
7434
  model.from_json_string(json.dumps(args))
7227
7435
  start_time = time.time()
7228
7436
  while True:
7229
- rsp = client.DescribeBotSceneList(model)
7437
+ rsp = client.DescribeSession(model)
7230
7438
  result = rsp.to_json_string()
7231
7439
  try:
7232
7440
  json_obj = json.loads(result)
@@ -8557,12 +8765,14 @@ MODELS_MAP = {
8557
8765
 
8558
8766
  ACTION_MAP = {
8559
8767
  "DescribeAttackType": doDescribeAttackType,
8768
+ "DescribePeakPoints": doDescribePeakPoints,
8560
8769
  "DescribeDomainDetailsClb": doDescribeDomainDetailsClb,
8561
8770
  "AddAntiInfoLeakRules": doAddAntiInfoLeakRules,
8562
8771
  "DescribeAccessIndex": doDescribeAccessIndex,
8563
8772
  "GetAttackTotalCount": doGetAttackTotalCount,
8564
8773
  "DescribeBatchIpAccessControl": doDescribeBatchIpAccessControl,
8565
8774
  "DeleteIpAccessControl": doDeleteIpAccessControl,
8775
+ "DeleteOwaspWhiteRule": doDeleteOwaspWhiteRule,
8566
8776
  "DescribeAreaBanAreas": doDescribeAreaBanAreas,
8567
8777
  "ModifyCustomRule": doModifyCustomRule,
8568
8778
  "DescribeFindDomainList": doDescribeFindDomainList,
@@ -8592,7 +8802,7 @@ ACTION_MAP = {
8592
8802
  "DescribeWebshellStatus": doDescribeWebshellStatus,
8593
8803
  "DescribeDomainWhiteRules": doDescribeDomainWhiteRules,
8594
8804
  "DeleteAntiInfoLeakRule": doDeleteAntiInfoLeakRule,
8595
- "DescribePeakPoints": doDescribePeakPoints,
8805
+ "CreateOwaspWhiteRule": doCreateOwaspWhiteRule,
8596
8806
  "ModifyAreaBanAreas": doModifyAreaBanAreas,
8597
8807
  "CreateDeals": doCreateDeals,
8598
8808
  "DescribeAreaBanSupportAreas": doDescribeAreaBanSupportAreas,
@@ -8624,11 +8834,12 @@ ACTION_MAP = {
8624
8834
  "DeleteAttackDownloadRecord": doDeleteAttackDownloadRecord,
8625
8835
  "DescribeCustomRuleList": doDescribeCustomRuleList,
8626
8836
  "DescribeAttackOverview": doDescribeAttackOverview,
8837
+ "ModifyOwaspWhiteRule": doModifyOwaspWhiteRule,
8627
8838
  "DescribeAttackWhiteRule": doDescribeAttackWhiteRule,
8628
8839
  "DescribeHosts": doDescribeHosts,
8629
8840
  "AddSpartaProtection": doAddSpartaProtection,
8630
8841
  "DescribePolicyStatus": doDescribePolicyStatus,
8631
- "DescribeSession": doDescribeSession,
8842
+ "DescribeBotSceneList": doDescribeBotSceneList,
8632
8843
  "DescribeTopAttackDomain": doDescribeTopAttackDomain,
8633
8844
  "ModifyBotSceneStatus": doModifyBotSceneStatus,
8634
8845
  "ModifyHost": doModifyHost,
@@ -8636,6 +8847,7 @@ ACTION_MAP = {
8636
8847
  "DescribeTlsVersion": doDescribeTlsVersion,
8637
8848
  "ModifyProtectionStatus": doModifyProtectionStatus,
8638
8849
  "DescribeCiphersDetail": doDescribeCiphersDetail,
8850
+ "DescribeOwaspWhiteRules": doDescribeOwaspWhiteRules,
8639
8851
  "ModifyAreaBanStatus": doModifyAreaBanStatus,
8640
8852
  "ModifyIpAccessControl": doModifyIpAccessControl,
8641
8853
  "DescribeAntiFakeRules": doDescribeAntiFakeRules,
@@ -8694,7 +8906,7 @@ ACTION_MAP = {
8694
8906
  "ModifyApiAnalyzeStatus": doModifyApiAnalyzeStatus,
8695
8907
  "ModifyAreaBanRule": doModifyAreaBanRule,
8696
8908
  "DescribeWafAutoDenyStatus": doDescribeWafAutoDenyStatus,
8697
- "DescribeBotSceneList": doDescribeBotSceneList,
8909
+ "DescribeSession": doDescribeSession,
8698
8910
  "ModifyCustomWhiteRuleStatus": doModifyCustomWhiteRuleStatus,
8699
8911
  "DescribePorts": doDescribePorts,
8700
8912
  "ModifyHostMode": doModifyHostMode,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tccli
3
- Version: 3.0.1364.1
3
+ Version: 3.0.1365.1
4
4
  Summary: Universal Command Line Environment for Tencent Cloud
5
5
  Project-URL: Bug Tracker, https://github.com/TencentCloud/tencentcloud-cli/issues
6
6
  Project-URL: Homepage, https://github.com/TencentCloud/tencentcloud-cli
@@ -13,7 +13,7 @@ Classifier: Programming Language :: Python :: 2.7
13
13
  Classifier: Programming Language :: Python :: 3
14
14
  Requires-Dist: jmespath==0.10.0
15
15
  Requires-Dist: six==1.16.0
16
- Requires-Dist: tencentcloud-sdk-python>=3.0.1364
16
+ Requires-Dist: tencentcloud-sdk-python>=3.0.1365
17
17
  Description-Content-Type: text/markdown
18
18
 
19
19
  # 命令行工具简介
@@ -1,4 +1,4 @@
1
- tccli/__init__.py,sha256=CmD2fY9AM-9U7RQvLp3c-giaf2y2_5Kqo5uBwEcsv7Q,27
1
+ tccli/__init__.py,sha256=XebieKa1h4WXl0UEiR8gBALxo1iV1YH9P7XLDBOzWGI,27
2
2
  tccli/argparser.py,sha256=WtfpBhj2R6JHSzagy6w6Q4y3YVmyIC_yK80w3tqBPgU,5589
3
3
  tccli/argument.py,sha256=ZtVo3AySpzM-Hw6_hPdU27FjUsc8QPB2fIuLy7JSBAk,8091
4
4
  tccli/base_command.py,sha256=rFWNAwfS0GA6LLGNOM-iPI0RV81Jag5cZn536ZQN0pw,2859
@@ -127,7 +127,7 @@ tccli/services/asw/v20200722/api.json,sha256=LB_fJylnafgidz8JY0_VUH2rbGlttV7yQMp
127
127
  tccli/services/asw/v20200722/examples.json,sha256=vy7eefBxeogPGaergIHhM7kRZg13QZz4sPxS-daHBV8,15044
128
128
  tccli/services/autoscaling/__init__.py,sha256=ehT8TTIZwn3a9MLUnT2wDV_T7luS4lb-4DYWUYQ4tJc,101
129
129
  tccli/services/autoscaling/autoscaling_client.py,sha256=KK7xae1b_alFNKf0LXQzd6D4YXM259iBECJNeUpUoTY,187137
130
- tccli/services/autoscaling/v20180419/api.json,sha256=G0x3xMiH6HvCOgo1QK_Lq4F2l0nAOe94f-wLwHdEe7E,380589
130
+ tccli/services/autoscaling/v20180419/api.json,sha256=lVUxUg7TKd_0_olcj6lFqWRtnorSRO1qQ7BLQpu6js0,380604
131
131
  tccli/services/autoscaling/v20180419/examples.json,sha256=YrjQOHxf5X0TmXOmE4v12fVbJV8W9kiGwFS5Kpxr3AM,92167
132
132
  tccli/services/ba/__init__.py,sha256=Ciy9Ux8dr3wSCp6YmkZ-gqoEFwZyrQCRNXnZY2Ppts8,83
133
133
  tccli/services/ba/ba_client.py,sha256=vlsp5mwinuKF6GARMgT0FPR9MkYCBpdxgyBZ1dL-62c,15372
@@ -234,9 +234,9 @@ tccli/services/cdc/cdc_client.py,sha256=vm_lqOzTBqCIgnOgFnvJofiuYgix_WuRB5Zjrgjm
234
234
  tccli/services/cdc/v20201214/api.json,sha256=NMHztzSDy0wI9Ubw2y5U8T9sT7ASvukYMXyCnhjuuHY,130651
235
235
  tccli/services/cdc/v20201214/examples.json,sha256=Ul160Jd_QKajRHymlw2RyT1_i7LTD4aEpGeiJeazclw,99330
236
236
  tccli/services/cdn/__init__.py,sha256=Agk_ooNm4XDpmFiuEBddbgRoBheED_39r3sMiWylgG0,85
237
- tccli/services/cdn/cdn_client.py,sha256=-JJ_Gy8rHIzdEmtTuJgNs2LnqhXZqDreK4YaLdDMcfM,255818
238
- tccli/services/cdn/v20180606/api.json,sha256=xbCMJGiZOATvS-X0dZ2-d8st4WTaQhW5zdkCKpZbmtg,654152
239
- tccli/services/cdn/v20180606/examples.json,sha256=dRKlQsm18VjB1xIqeresCgAbCngNWqG01PQEZqedi5U,95249
237
+ tccli/services/cdn/cdn_client.py,sha256=WVWgyvU1hy7pZ9XqbtzUQu0Lcsa8yRznZLZ4-QQF80k,184952
238
+ tccli/services/cdn/v20180606/api.json,sha256=4KiPbfcakF-w2233FVIgc_CdNz3Cur7BMDrCGhQ0F-4,509423
239
+ tccli/services/cdn/v20180606/examples.json,sha256=7TWauvxPA7Xmttj6G6L2DXi8YNcq8L-Bs_2MO3SPDdk,73342
240
240
  tccli/services/cds/__init__.py,sha256=ChlmM6HfgQsURTBA8nwQoJC5FZaAk9LqXvotfJGK2h8,85
241
241
  tccli/services/cds/cds_client.py,sha256=XL29-fg8yn4nTcGmNtwE6Y0R1UDrZcDMvg07EMmcya0,21781
242
242
  tccli/services/cds/v20180420/api.json,sha256=f5Jp-2SnF48ra2ozEYCCk3bSs2SguQAbYRnBVRi98Pk,19324
@@ -263,7 +263,7 @@ tccli/services/cfg/v20210820/api.json,sha256=0scuCxCgqhxSP_BMqKC_Scfsp5LRQZYQwxQ
263
263
  tccli/services/cfg/v20210820/examples.json,sha256=FtRok_PmGICP6v8DvHTc8gG4d0aZvUVKKTCf4NFZxYM,66763
264
264
  tccli/services/cfs/__init__.py,sha256=VecrEhD_8cXfLCyCp9tLj9wbK9uN67huo5TyZPczt3w,85
265
265
  tccli/services/cfs/cfs_client.py,sha256=1IShXBR6oH8ENiV34SXTE9Lr_YdKsPOWVKx3OYCJoKg,182805
266
- tccli/services/cfs/v20190719/api.json,sha256=MSzlJWBMperGdMxij92jYVQP7mi7f85VFAQfplp2YwY,215660
266
+ tccli/services/cfs/v20190719/api.json,sha256=RzI8Kozv5BFA1J6WDYF2tKa7CyErInUO5JxXdP9DInk,215798
267
267
  tccli/services/cfs/v20190719/examples.json,sha256=9ANDcHF_m19-HuX0qeeEq9Fgc2u3AEeQ5FslgEBEl4I,47946
268
268
  tccli/services/cfw/__init__.py,sha256=2hNwXcNofHJCalk9HHEbOcgYz6XKuYmZk_iBroa5YsY,85
269
269
  tccli/services/cfw/cfw_client.py,sha256=MX6GZWZSZspVLTGRzvMjWBwTXjp6h7K5Pn5eBYXs-z0,362711
@@ -319,7 +319,7 @@ tccli/services/cloudstudio/v20230508/api.json,sha256=XpMQtPxoc7Yf50dXUjbFsfTIjTi
319
319
  tccli/services/cloudstudio/v20230508/examples.json,sha256=rCX90ZBO7QdGd1uXPQBGlLsz-ncTN74qY6h5JoygFG4,5772
320
320
  tccli/services/cls/__init__.py,sha256=emWEmdULub91gG47BRE9u44cHrFt8L4KRduipQx_MfQ,85
321
321
  tccli/services/cls/cls_client.py,sha256=YET0ZSZaY1WvYTQnfh9N5KRzWfc1FWArpTbqb4uFNdk,358228
322
- tccli/services/cls/v20201016/api.json,sha256=sHFSGydA8ufJDDJYaGyLEebyGbbyHkzJJM9ZK0ADQoA,604777
322
+ tccli/services/cls/v20201016/api.json,sha256=R051kM50gzKYEZr3Jqmd37SAkOeQGpDuuxaAgJJNKOA,605585
323
323
  tccli/services/cls/v20201016/examples.json,sha256=pOVd83ZEA4hiH0NS_XoiF8VBDxuEnvTu692GdKEkLug,223684
324
324
  tccli/services/cme/__init__.py,sha256=JUEIsQ1dWJHSubFZl7yjNuEMYMdDiyVRMv7YUiZcz4s,85
325
325
  tccli/services/cme/cme_client.py,sha256=p9r6vilE1ho9gjfGuxj43OtOY-ZpytsWqJkAotCQc2I,160356
@@ -404,9 +404,9 @@ tccli/services/dcdb/dcdb_client.py,sha256=CKESatIzyqv0OyuZnEjiYYs-9WCD8cKQElqM0A
404
404
  tccli/services/dcdb/v20180411/api.json,sha256=ncUp_e4XGj223ZZs5zz5mVZ7nkG_pX2sNUD2WNTEDFc,349675
405
405
  tccli/services/dcdb/v20180411/examples.json,sha256=kaflM97qkkXjjsnFfY1CuNicOeXQrq8weg3-oNhndOU,74894
406
406
  tccli/services/dlc/__init__.py,sha256=Pt7cRkf9EvW5Zp2SZeVE-_cF_YHO7ORkFXK7qsTnkiA,85
407
- tccli/services/dlc/dlc_client.py,sha256=nvpcT4cer80HERZ1pYJ1DRsehRkR6Pc8HdqjM3Q4OoA,471116
408
- tccli/services/dlc/v20210125/api.json,sha256=F7xwqgqeSkwveuvPyDk81R6TwrsyKhwpBPFD4L0j1mU,702981
409
- tccli/services/dlc/v20210125/examples.json,sha256=R3oZg1kc7_DU8oIJyglkh6lEjGJAtVf4rH2dWkml6v4,211249
407
+ tccli/services/dlc/dlc_client.py,sha256=c_VQD6RdgSbgKAwkqSsMZ8iq7SqDyJPnEehlCfwNGio,543587
408
+ tccli/services/dlc/v20210125/api.json,sha256=J9EIuexCXETUB_HUqJCm-C44WGtmXDDDf4mZy6zi-c8,798674
409
+ tccli/services/dlc/v20210125/examples.json,sha256=hzGISv91wSJzZf51uP6BATSewjZ5slKUo3Bt1qj8aoo,232836
410
410
  tccli/services/dnspod/__init__.py,sha256=4t9Zk1hkia8MrDbtWW-XP9aCXYNWqafFaB1NKh5Ebfc,91
411
411
  tccli/services/dnspod/dnspod_client.py,sha256=GzMZaFpphMk8CUtJdkaN7pRZHiNHTtLIpkaO11coLhA,288217
412
412
  tccli/services/dnspod/v20210323/api.json,sha256=otNkx2sHL9qRjo6J_o1GIZUB0ZQcXgs_cfnXnJr3ag4,368309
@@ -461,18 +461,18 @@ tccli/services/eis/v20210601/api.json,sha256=g4AJCtbcKsD7SK1PNkOi3otPkTgRrzkfsBo
461
461
  tccli/services/eis/v20210601/examples.json,sha256=0AzvsX5xN4sc7M4GKxa888M0-rOayfoPeR26AKgLXCw,5943
462
462
  tccli/services/emr/__init__.py,sha256=CuCQwSW5RgNZF9gAIua1frYRqyXro0GUikyCRDqmWs8,85
463
463
  tccli/services/emr/emr_client.py,sha256=yD_C-7rWB6f1NziPsVxwva6W1gLgfsWzO8cBykRkY6I,282124
464
- tccli/services/emr/v20190103/api.json,sha256=tIBKm9y5fpsZn8vyQwS2LAL-uCpbJvu02yDY3hhpaVE,720515
464
+ tccli/services/emr/v20190103/api.json,sha256=BvhqHRNAgGfH7qr85Eyf1hML7RpjQo9EJSirLZ8UtEg,720507
465
465
  tccli/services/emr/v20190103/examples.json,sha256=2vQwgaS8QkYrZMG-gVfYYmC34I-AXgjZqQTdrLOOPjw,231977
466
466
  tccli/services/es/__init__.py,sha256=Tgbj2S-AFcftz26Uaksp0nrbDZShO6QOdNN89tFu9s0,83
467
467
  tccli/services/es/es_client.py,sha256=Ao-JGT4zJ5265l1GqLG_u_PyabqZFWkKK5aSOUeEjhE,223190
468
468
  tccli/services/es/v20180416/api.json,sha256=DPxd13DNWOaRyiKOvHH1PKhzfdlYlrVInKjf-q2oNu8,386167
469
469
  tccli/services/es/v20180416/examples.json,sha256=p3P02B9d56YWAjBLUlbvTopgoJetlDyrO-wpl6fXx78,85429
470
- tccli/services/es/v20250101/api.json,sha256=6ApMZurS-JEMaYK_U9Y3LQu_t_7SS0jcSb3yEdJ54Ak,44158
470
+ tccli/services/es/v20250101/api.json,sha256=b-hQQYe0CL80_58Mn5SXU-2AJ8uk2NPEns5EvB7VQy4,45131
471
471
  tccli/services/es/v20250101/examples.json,sha256=-nFkbGAQxC7olk9r7qz9Qy785h5Xw5r5o0WD4rn1gRY,9273
472
472
  tccli/services/ess/__init__.py,sha256=heBHzUKDuNxQ68yNutgyA8stCndyFWqYJqiQFozTiDs,85
473
- tccli/services/ess/ess_client.py,sha256=mi410F5XYsmAv2XApu_LUwMsWNQ3wJsbrEreP2Jy0tE,361609
474
- tccli/services/ess/v20201111/api.json,sha256=0GNzi_CLQtt-aJFHWkyr3qqcXHnud_aqHSRmrWfpJbQ,927119
475
- tccli/services/ess/v20201111/examples.json,sha256=jox5s9os7NlSlI3L4hD9bpzYvu8iGUH4nyX-wRyfs64,643716
473
+ tccli/services/ess/ess_client.py,sha256=lyHDaxloTPPW9m6cbVtEZsngrQILuU4K6TKxsUAly18,367878
474
+ tccli/services/ess/v20201111/api.json,sha256=pxoXyHZSICW_wmqnGGzHXAY8W6BNuvqfYt6xVxp05Wk,943290
475
+ tccli/services/ess/v20201111/examples.json,sha256=tYj8q1R9WcTuzuH8INtVvg8T_TrXXWodnNXb_aTHoA0,646467
476
476
  tccli/services/essbasic/__init__.py,sha256=Uh5kuYtJvJ4F1S2w-19_B6a_JMF1ubh8Se-7p5LA0PE,95
477
477
  tccli/services/essbasic/essbasic_client.py,sha256=5utXm-W3PYIRivS0Y5xKAab09Maoq4-_RMHme3qfc1U,461899
478
478
  tccli/services/essbasic/v20201222/api.json,sha256=8yA-0DwpjBAZajDJnp3flQ2xn1sdkZMVQcvegUcemSM,184116
@@ -534,9 +534,9 @@ tccli/services/hcm/hcm_client.py,sha256=T66Eory7Lo0ihyPZ6Kcf9bTTGMIGh4axhsnKod7j
534
534
  tccli/services/hcm/v20181106/api.json,sha256=9Jxpj-fhbXJGkO_nCVUL4nlhcfMICA3snOG9aZdmdwM,10974
535
535
  tccli/services/hcm/v20181106/examples.json,sha256=TKTLt4hcnqYSjpxTCwtJyoFUc2I23ySZL0Ar-aa6v98,1466
536
536
  tccli/services/hunyuan/__init__.py,sha256=ZWaLaByP6wMQSS7nntZKqol4lzuJKslQFdB4Bv3kYwU,93
537
- tccli/services/hunyuan/hunyuan_client.py,sha256=OlWBAyeSjZESeOAt_1PK3DwFhB3ZOkjCmIjknVE1nys,76967
538
- tccli/services/hunyuan/v20230901/api.json,sha256=8GIN1rnfnSecJA20-ihmmbQGW0Hy8JtgiVHkH21VKZw,173879
539
- tccli/services/hunyuan/v20230901/examples.json,sha256=-TezFNLdMPXj7mo-kgXFU3Oi7OFXNECyd9-t6GLGzec,89725
537
+ tccli/services/hunyuan/hunyuan_client.py,sha256=_WIyso98xj55DT7YpmOrLfH9WqBMmZoVyRixZf51HZ4,70770
538
+ tccli/services/hunyuan/v20230901/api.json,sha256=7LrRLn2icH8NnGUGqYe66KQc3KfYn8Dcva5O3R8EYZw,167269
539
+ tccli/services/hunyuan/v20230901/examples.json,sha256=lSVAAwSu8HGPFogdpUsp7V0lSppmpivR6DN06SHmHrE,88126
540
540
  tccli/services/iai/__init__.py,sha256=pyYHUQUj82fBZdJ7cEUsTpy6VP8aU0siS32k7-3aM9Q,85
541
541
  tccli/services/iai/iai_client.py,sha256=IryMgPQWFloo5XG7rLHiQXAOp4OIRYmqlYX1RvOnbqg,117289
542
542
  tccli/services/iai/v20180301/api.json,sha256=8x6tB7HWQfrblcWZQGUThyiM3rE0Dnsc35DfQGMpJy8,195095
@@ -681,17 +681,17 @@ tccli/services/mongodb/v20190725/api.json,sha256=o1-XW5wKvDEkv3UGN0pTd4dfznFNsV9
681
681
  tccli/services/mongodb/v20190725/examples.json,sha256=OUYMxhcdCYNUMb-Sg7PO7TJZ0EzQczFpqjpV6uGJmkA,70558
682
682
  tccli/services/monitor/__init__.py,sha256=Fqyy64XBMByiqJHyjxbaJeQDJAGMyktujsYRmXhosc8,93
683
683
  tccli/services/monitor/monitor_client.py,sha256=nJcmd61mwTx1FbRFHaJaM1zGcvEqKzLkBumL8Bmz3cE,530798
684
- tccli/services/monitor/v20180724/api.json,sha256=LI8wzZ07euDfcZOFxmTjvl8zT0bdQONnvoWuxlV_quI,764754
684
+ tccli/services/monitor/v20180724/api.json,sha256=ezCnmAnE5fkSPuGJme3BxXE2VZwviEfuk_WDfHECkYI,764712
685
685
  tccli/services/monitor/v20180724/examples.json,sha256=7ElA6cjCKenz0tXfwQDpTeAaol0bxQaNu1k0_3ZMvKg,291228
686
686
  tccli/services/monitor/v20230616/api.json,sha256=eHSlhfvgT0JF1L8m916C_j3VFRgXXggpIggL1D18qII,4085
687
687
  tccli/services/monitor/v20230616/examples.json,sha256=IUk1Py3tMmQ3pemhisNxJ1wR0ApZQlKBtrypMGpOkrc,656
688
688
  tccli/services/mps/__init__.py,sha256=4M5o2xc0u3rqtgz_5an9Qxw2QaOqwBq8Fjc3IB64p2o,85
689
689
  tccli/services/mps/mps_client.py,sha256=EZU43D3hRH-1_CkaPt9lF-yK1cMPt7jH3YO25640HAQ,417575
690
- tccli/services/mps/v20190612/api.json,sha256=5MWsytQ59E1MbjFqb4kB48KQN7sEyN9gwggNSBk6rQk,1269262
690
+ tccli/services/mps/v20190612/api.json,sha256=BpBu7mYIu3bQPb7fzdMR5te8Ueb_9wtuqYbMS6ZvjfQ,1269417
691
691
  tccli/services/mps/v20190612/examples.json,sha256=6eVSsXW7uRWJ3xu2bs-ZNdIODCXygW5R3f26go_vPLQ,337752
692
692
  tccli/services/mqtt/__init__.py,sha256=zchTxfWVKqmIOpb6siJtQcRDR5OfcpauX-ONDH5g32w,87
693
693
  tccli/services/mqtt/mqtt_client.py,sha256=x7-CQDnzUfGS8nAPyqcykQkg6mTlWtP6QebhzTbQyvc,173580
694
- tccli/services/mqtt/v20240516/api.json,sha256=mwRfP-dfe3-cC6H7KecfwlRsRMooL7tSITvWcR5cd2o,202872
694
+ tccli/services/mqtt/v20240516/api.json,sha256=Xlg_I0O1WoXZlxvRCZSSDghuqLHyZcNgiGz4uNNtgtM,205352
695
695
  tccli/services/mqtt/v20240516/examples.json,sha256=gTAtC089EoFb3ukJd0iLFyV1wJk0ytQOiA_opHNaUfs,51076
696
696
  tccli/services/mrs/__init__.py,sha256=Vwc_ClNX27xapevic8Icf1ien9RVCMPqPag9PyUNnos,85
697
697
  tccli/services/mrs/mrs_client.py,sha256=JO-NYjLppMRLo0E3u7-4gHzhLjx-QSucnQcHsJqkU8s,39983
@@ -719,7 +719,7 @@ tccli/services/oceanus/v20190422/api.json,sha256=OkeC5u0i2dA0WQtXYu644YB_uha16-m
719
719
  tccli/services/oceanus/v20190422/examples.json,sha256=VQDSTQARFa_rJWRhoHNXR-rLeKctJdhSFuglpvpMNQM,55299
720
720
  tccli/services/ocr/__init__.py,sha256=1UdHN9VtB5qVwAn2FMefSi4BhMTJOjmFgYZT-zTEVBM,85
721
721
  tccli/services/ocr/ocr_client.py,sha256=oxSILWIDLuLYDgNPqE4LW4j9XyhTfQ-oQ7FrHhPCn7k,277127
722
- tccli/services/ocr/v20181119/api.json,sha256=xgyGgpsXzFtmmmWLXxXMtcMicP9mMB8w5e5zk2Bd0uU,881375
722
+ tccli/services/ocr/v20181119/api.json,sha256=-4uRWQHUXJcmrEOdvGTHBBIhsDibzstss1js-vLb9Wc,881587
723
723
  tccli/services/ocr/v20181119/examples.json,sha256=LYSfEogTohDy0VXKEx3lL2-WwddfCE7Lz__roe1MB0Q,511138
724
724
  tccli/services/omics/__init__.py,sha256=2Uhk7Pv4ejuVCryMqNlAdn8xPMdHO2Hr4500KAZ0W-M,89
725
725
  tccli/services/omics/omics_client.py,sha256=FMdcSDblBVzrf_RsMH7SCUVr3kFj8M24Eet4gyeeu2w,67560
@@ -803,7 +803,7 @@ tccli/services/ssa/v20180608/api.json,sha256=2jvRkOmXnFKAbUWZMpqZdiY_tumtVhyz5kp
803
803
  tccli/services/ssa/v20180608/examples.json,sha256=6TFZaFVxa__xrzCihEi4SSkAQ9URq8ldR3HaaUJcE6k,47697
804
804
  tccli/services/ssl/__init__.py,sha256=BZHCAj_E_M5K1SujuuI6TBJEy2nYKGk7Y-qJMYnLK2g,85
805
805
  tccli/services/ssl/ssl_client.py,sha256=Jr62Mp1YqI6DazlbeKn_pBWalu6hsSK5lNCgpL3Buhw,218567
806
- tccli/services/ssl/v20191205/api.json,sha256=D17WjKWScWGwITVsm9xgUPjloZG9jB-ZzcMzo_mmdHw,439185
806
+ tccli/services/ssl/v20191205/api.json,sha256=Q5pLRoZX32x5zSopg3K4dNEqvpWU2R1buyGhHJL4_3s,439236
807
807
  tccli/services/ssl/v20191205/examples.json,sha256=-r1jAnCBaZUBN0m3-_oHxN3409yF6Tp4_V2nzhVTwXQ,152934
808
808
  tccli/services/sslpod/__init__.py,sha256=858zxBvS1grgBtnEH4XSc8iJ_0iDyHzX_mYAtWEBWZ4,91
809
809
  tccli/services/sslpod/sslpod_client.py,sha256=ohum3vf8QXPwhbKuIuq-5JQ0nGZ1hVZGphUQdIB4Las,36907
@@ -898,11 +898,11 @@ tccli/services/tem/v20201221/examples.json,sha256=ao0z-UqkWKJzTWrTjfgp6CpRd5ncdx
898
898
  tccli/services/tem/v20210701/api.json,sha256=U-lS-7YBy1qjdCmAgd2X7x9doqqCRVJQaf1rxEQAhRY,277875
899
899
  tccli/services/tem/v20210701/examples.json,sha256=HHVgUeOVUd82OtzRgaEzVPW4nDgwQvYHjIKGv_qUHGI,94189
900
900
  tccli/services/teo/__init__.py,sha256=nvzcUSkSQuTftWEJ399BUZpUk_0jEq-l97539DwbAwM,85
901
- tccli/services/teo/teo_client.py,sha256=z54cdjr8Svma1ICcw9qmOhXXGdPFXIG_IFhGCA_6Pv4,530310
901
+ tccli/services/teo/teo_client.py,sha256=fVs-07PcU_egEJFaJKWZ6BYJyaUhXUz9O39uuHIsJ9c,593075
902
902
  tccli/services/teo/v20220106/api.json,sha256=63ORoUfXCcQ9gb6UrJdHcwFdDI9CC2UtfdzbifNcRjM,29865
903
903
  tccli/services/teo/v20220106/examples.json,sha256=2s6dgk31pZ26N8hrFLCmQzVocmsC_QK1dO8WVBdJ8A0,5325
904
- tccli/services/teo/v20220901/api.json,sha256=un7hWDhw11ToziE69S7E5XxOqo-MrVtFKcVzB44Tuxo,1057450
905
- tccli/services/teo/v20220901/examples.json,sha256=annfowzYUInTyn99gR5zsUgAubDa5ioNKLufyOL4NiY,500973
904
+ tccli/services/teo/v20220901/api.json,sha256=yRcsIRsFa82Z0SUiFkQ64cJuVFcDAeY-Gy4BW9OGGAc,1116245
905
+ tccli/services/teo/v20220901/examples.json,sha256=97nQLydFGx91AtH7XPfYuDoW1IaLqMOz82iIf8xiYo8,517847
906
906
  tccli/services/thpc/__init__.py,sha256=NancJ76I7PbEBt7VJCaGnBsfMEZm2ezBvYqwxyLbLHo,87
907
907
  tccli/services/thpc/thpc_client.py,sha256=RSdVO4cpbP1bCk3W7r-sfXvXdiig1y4Vh9C70tN4kR0,83835
908
908
  tccli/services/thpc/v20211109/api.json,sha256=5SyMj_kKwhJ9pjs2VStJJAgqDKOh8ppMnOi2VxYyrW0,42495
@@ -923,7 +923,7 @@ tccli/services/tione/__init__.py,sha256=hVHB2cJpskiRtSHmEaJj2ZcjQp28c17sepm54VgF
923
923
  tccli/services/tione/tione_client.py,sha256=_lzcfTPHtTe-itKI8VhEZDvWLG-rarvP-1TKWiycRVE,233328
924
924
  tccli/services/tione/v20191022/api.json,sha256=7biq3rk4PQ9PQUBwejJq53Y5bzvqORGEEN9qa5Qcq64,92493
925
925
  tccli/services/tione/v20191022/examples.json,sha256=LtNx7sWmCWw6ainTScVqvf_m0K2m7ODoww5abjIDCx8,18334
926
- tccli/services/tione/v20211111/api.json,sha256=sOb5wjSuSUHU_lZjILFsRuCgxflxSN1j_1e-wCbl17I,445113
926
+ tccli/services/tione/v20211111/api.json,sha256=9opn5aMQJQ3SYHTCT6osC0g58mBC1SOYlVmhCtDr0oY,445421
927
927
  tccli/services/tione/v20211111/examples.json,sha256=GgKotnojIwiqrg_Ht6Wce1LYLQhNtIJA6qvJcntyHW0,98026
928
928
  tccli/services/tiw/__init__.py,sha256=pxcn8QU1Y-TCrQaoFjHVj8Z-6hkXLuNmVN3aqtbGhcw,85
929
929
  tccli/services/tiw/tiw_client.py,sha256=2JRtvC9oLEFc-XKqqAMBoa9PNWkyRoWbwUpcMSJP4tE,114901
@@ -971,7 +971,7 @@ tccli/services/trro/v20220325/api.json,sha256=6SOiB5tz4PkSaMOZsEzVPNHl3Pwk0QF0U6
971
971
  tccli/services/trro/v20220325/examples.json,sha256=I-aK5HhxwVte-HvPeQDvcEAlX-oco-bnSZqkLzyvSOg,62845
972
972
  tccli/services/trtc/__init__.py,sha256=7xXIF66WdJHGVIhfHKFx2VYimlxZ_z3QOeJBUJ2P_MQ,87
973
973
  tccli/services/trtc/trtc_client.py,sha256=mkWsnfZCbSlvc4rTPP9VOwD52ixXFEFoQ6RTNDTYIv8,220180
974
- tccli/services/trtc/v20190722/api.json,sha256=vMNC1AKy7LFJPMuFlYUEcsxGtWp2HoSZjWR4SPSTD7w,406170
974
+ tccli/services/trtc/v20190722/api.json,sha256=9cdKt0lLyN6Jlqm9lgq3zAIDSQ3GPBmI5fs29805ZTE,407278
975
975
  tccli/services/trtc/v20190722/examples.json,sha256=6B9cauMj-sSToULfaAwKJS-mvf9oeEOpocv2Mb15azQ,124146
976
976
  tccli/services/tse/__init__.py,sha256=3Y4ZA_IFX8df4-ir1I9p0u4ksAywRrtd2CAvJ5yKyz0,85
977
977
  tccli/services/tse/tse_client.py,sha256=12oA6Y7x9dySY_XClSkOJMX27wMZS5OAeFjDoNf3Y3s,383576
@@ -1042,9 +1042,9 @@ tccli/services/vtc/vtc_client.py,sha256=SDOemVAlHeeWy63SQJuLiCycChZr9OjytqHa3rii
1042
1042
  tccli/services/vtc/v20240223/api.json,sha256=JZYqcsJcDWpLXzX1576kBt3b-J01ucjoRgB7BqOd_5k,18790
1043
1043
  tccli/services/vtc/v20240223/examples.json,sha256=-wjnqZEVLvLJZmHyDf_UY2G6Rp2QPNVwKJYejRMfP1c,6587
1044
1044
  tccli/services/waf/__init__.py,sha256=CQIYSctAXRbX8x5xidAj7CBzOVIdMOZJQ0e6ENff3HU,85
1045
- tccli/services/waf/waf_client.py,sha256=oDK8LsWs-n_2V3x1LCOt48x1wyQkXxHJla_85qgInvw,514139
1046
- tccli/services/waf/v20180125/api.json,sha256=AaY7X89UhQCWRPcR5ulFEybDPfzE1yVfRqOObUd0804,839743
1047
- tccli/services/waf/v20180125/examples.json,sha256=mMDBGuzuTs2XAesRwWy7LGLhjNLKNhQs9vkVDp0-cPo,244512
1045
+ tccli/services/waf/waf_client.py,sha256=Ql2nAv1qo8RzkH3u4Oy9z0FovlZKYWfCuejaqfRcbG4,526542
1046
+ tccli/services/waf/v20180125/api.json,sha256=00OkRbuG4zHO_jcyDWrnAkLwfEUwoiXFXncTVdwzS7I,856023
1047
+ tccli/services/waf/v20180125/examples.json,sha256=K_bsoF1oPfSgiyS0k9FBnY_UMrKtHy-HJ_mNw10AirU,247735
1048
1048
  tccli/services/wav/__init__.py,sha256=iOdPQbxYh0cdKcDo0kRWmQMiCl38owcMur1PRm3R6R8,85
1049
1049
  tccli/services/wav/wav_client.py,sha256=yS19S4YsQD0nnBB2mCvZn3vBHCsxNw4e64rZiJ2x8Qo,86768
1050
1050
  tccli/services/wav/v20210129/api.json,sha256=aKaIw_FZPNpt4Xrxp0N-ak4CfzLrLNb_zK3i4dcjUuo,184384
@@ -1079,8 +1079,8 @@ tccli/services/yunsou/v20180504/api.json,sha256=2808fil5p3pTEJ3SqXEEq7eSrASZOiv8
1079
1079
  tccli/services/yunsou/v20180504/examples.json,sha256=Jg4WuqS_Wxl7eTBMbzjem65FuUZQi3qq3xtlBNFZlTU,11870
1080
1080
  tccli/services/yunsou/v20191115/api.json,sha256=r_p7c7fMNylQVDpSN0CkUB4Cx1nYW1lI3BM_Zi50FNs,15932
1081
1081
  tccli/services/yunsou/v20191115/examples.json,sha256=vN5MzexHVPMckm4MbnXNiOe3KKiVchvf4_uLpjOskuk,3983
1082
- tccli-3.0.1364.1.dist-info/METADATA,sha256=PmKDVXBrrjVVWTt_0XbLZTou_CIrMCdJfK1wzbs8y0M,16406
1083
- tccli-3.0.1364.1.dist-info/WHEEL,sha256=HyPWovjK_wfsxZqVnw7Bu5rgKxNh3Nm__lHm0ALDcb4,101
1084
- tccli-3.0.1364.1.dist-info/entry_points.txt,sha256=9ZzsXxi7Xj3ZneT7VxRVJpFvnmdEOeysh999_0gWVvo,85
1085
- tccli-3.0.1364.1.dist-info/license_files/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
1086
- tccli-3.0.1364.1.dist-info/RECORD,,
1082
+ tccli-3.0.1365.1.dist-info/METADATA,sha256=M4FuO7Tek_CBo21IZejiagOOZlyQvnaESf9MVmJQ8sw,16406
1083
+ tccli-3.0.1365.1.dist-info/WHEEL,sha256=HyPWovjK_wfsxZqVnw7Bu5rgKxNh3Nm__lHm0ALDcb4,101
1084
+ tccli-3.0.1365.1.dist-info/entry_points.txt,sha256=9ZzsXxi7Xj3ZneT7VxRVJpFvnmdEOeysh999_0gWVvo,85
1085
+ tccli-3.0.1365.1.dist-info/license_files/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
1086
+ tccli-3.0.1365.1.dist-info/RECORD,,