tccli 3.0.1102.1__py2.py3-none-any.whl → 3.0.1103.1__py2.py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (45) hide show
  1. tccli/__init__.py +1 -1
  2. tccli/examples/iotexplorer/v20190423/CreateTRTCSignaturesWithRoomId.md +30 -0
  3. tccli/examples/iotexplorer/v20190423/DescribeCloudStorageAIServiceTask.md +36 -0
  4. tccli/examples/iotexplorer/v20190423/DescribeCloudStorageAIServiceTasks.md +3 -0
  5. tccli/examples/iotexplorer/v20190423/DismissRoomByStrRoomIdFromTRTC.md +20 -0
  6. tccli/examples/iotexplorer/v20190423/GenerateCloudStorageAIServiceTaskFileURL.md +24 -0
  7. tccli/examples/iotexplorer/v20190423/RemoveUserByRoomIdFromTRTC.md +21 -0
  8. tccli/examples/lighthouse/v20200324/DescribeInstancesDeniedActions.md +11 -6
  9. tccli/examples/mrs/v20200910/DrugInstructionObject.md +0 -0
  10. tccli/examples/waf/v20180125/CreateIpAccessControl.md +27 -0
  11. tccli/examples/waf/v20180125/DeleteIpAccessControlV2.md +25 -0
  12. tccli/examples/waf/v20180125/ImportIpAccessControl.md +30 -0
  13. tccli/examples/waf/v20180125/ModifyIpAccessControl.md +28 -0
  14. tccli/services/captcha/v20190722/api.json +2 -2
  15. tccli/services/ccc/v20200210/api.json +3 -3
  16. tccli/services/clb/v20180317/api.json +1 -1
  17. tccli/services/cls/v20201016/api.json +1 -1
  18. tccli/services/dlc/v20210125/api.json +70 -1
  19. tccli/services/fmu/v20191213/api.json +1 -1
  20. tccli/services/iotexplorer/iotexplorer_client.py +298 -33
  21. tccli/services/iotexplorer/v20190423/api.json +359 -20
  22. tccli/services/iotexplorer/v20190423/examples.json +41 -1
  23. tccli/services/iss/v20230517/api.json +10 -0
  24. tccli/services/lighthouse/v20200324/api.json +30 -28
  25. tccli/services/lighthouse/v20200324/examples.json +3 -3
  26. tccli/services/lke/v20231130/api.json +1 -1
  27. tccli/services/mrs/mrs_client.py +53 -0
  28. tccli/services/mrs/v20200910/api.json +1649 -415
  29. tccli/services/mrs/v20200910/examples.json +8 -0
  30. tccli/services/ocr/v20181119/api.json +1 -1
  31. tccli/services/rce/rce_client.py +0 -53
  32. tccli/services/rce/v20201103/api.json +0 -197
  33. tccli/services/rce/v20201103/examples.json +0 -8
  34. tccli/services/tdmq/v20200217/api.json +30 -0
  35. tccli/services/tke/v20180525/api.json +1 -1
  36. tccli/services/trtc/v20190722/api.json +1 -1
  37. tccli/services/tse/v20201207/api.json +2 -2
  38. tccli/services/waf/v20180125/api.json +396 -0
  39. tccli/services/waf/v20180125/examples.json +32 -0
  40. tccli/services/waf/waf_client.py +216 -4
  41. {tccli-3.0.1102.1.dist-info → tccli-3.0.1103.1.dist-info}/METADATA +2 -2
  42. {tccli-3.0.1102.1.dist-info → tccli-3.0.1103.1.dist-info}/RECORD +45 -35
  43. {tccli-3.0.1102.1.dist-info → tccli-3.0.1103.1.dist-info}/WHEEL +0 -0
  44. {tccli-3.0.1102.1.dist-info → tccli-3.0.1103.1.dist-info}/entry_points.txt +0 -0
  45. {tccli-3.0.1102.1.dist-info → tccli-3.0.1103.1.dist-info}/license_files/LICENSE +0 -0
@@ -485,6 +485,58 @@ def doModifyCustomRule(args, parsed_globals):
485
485
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
486
486
 
487
487
 
488
+ def doDescribeFindDomainList(args, parsed_globals):
489
+ g_param = parse_global_arg(parsed_globals)
490
+
491
+ if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
492
+ cred = credential.CVMRoleCredential()
493
+ elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
494
+ cred = credential.STSAssumeRoleCredential(
495
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
496
+ g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
497
+ )
498
+ 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):
499
+ cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
500
+ else:
501
+ cred = credential.Credential(
502
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
503
+ )
504
+ http_profile = HttpProfile(
505
+ reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
506
+ reqMethod="POST",
507
+ endpoint=g_param[OptionsDefine.Endpoint],
508
+ proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
509
+ )
510
+ profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
511
+ if g_param[OptionsDefine.Language]:
512
+ profile.language = g_param[OptionsDefine.Language]
513
+ mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
514
+ client = mod.WafClient(cred, g_param[OptionsDefine.Region], profile)
515
+ client._sdkVersion += ("_CLI_" + __version__)
516
+ models = MODELS_MAP[g_param[OptionsDefine.Version]]
517
+ model = models.DescribeFindDomainListRequest()
518
+ model.from_json_string(json.dumps(args))
519
+ start_time = time.time()
520
+ while True:
521
+ rsp = client.DescribeFindDomainList(model)
522
+ result = rsp.to_json_string()
523
+ try:
524
+ json_obj = json.loads(result)
525
+ except TypeError as e:
526
+ json_obj = json.loads(result.decode('utf-8')) # python3.3
527
+ if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
528
+ break
529
+ cur_time = time.time()
530
+ if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
531
+ raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
532
+ (g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
533
+ search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
534
+ else:
535
+ print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
536
+ time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
537
+ FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
538
+
539
+
488
540
  def doModifyInstanceQpsLimit(args, parsed_globals):
489
541
  g_param = parse_global_arg(parsed_globals)
490
542
 
@@ -2461,6 +2513,58 @@ def doDescribeCertificateVerifyResult(args, parsed_globals):
2461
2513
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
2462
2514
 
2463
2515
 
2516
+ def doDeleteIpAccessControlV2(args, parsed_globals):
2517
+ g_param = parse_global_arg(parsed_globals)
2518
+
2519
+ if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
2520
+ cred = credential.CVMRoleCredential()
2521
+ elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
2522
+ cred = credential.STSAssumeRoleCredential(
2523
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
2524
+ g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
2525
+ )
2526
+ 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):
2527
+ cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
2528
+ else:
2529
+ cred = credential.Credential(
2530
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
2531
+ )
2532
+ http_profile = HttpProfile(
2533
+ reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
2534
+ reqMethod="POST",
2535
+ endpoint=g_param[OptionsDefine.Endpoint],
2536
+ proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
2537
+ )
2538
+ profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
2539
+ if g_param[OptionsDefine.Language]:
2540
+ profile.language = g_param[OptionsDefine.Language]
2541
+ mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
2542
+ client = mod.WafClient(cred, g_param[OptionsDefine.Region], profile)
2543
+ client._sdkVersion += ("_CLI_" + __version__)
2544
+ models = MODELS_MAP[g_param[OptionsDefine.Version]]
2545
+ model = models.DeleteIpAccessControlV2Request()
2546
+ model.from_json_string(json.dumps(args))
2547
+ start_time = time.time()
2548
+ while True:
2549
+ rsp = client.DeleteIpAccessControlV2(model)
2550
+ result = rsp.to_json_string()
2551
+ try:
2552
+ json_obj = json.loads(result)
2553
+ except TypeError as e:
2554
+ json_obj = json.loads(result.decode('utf-8')) # python3.3
2555
+ if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
2556
+ break
2557
+ cur_time = time.time()
2558
+ if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
2559
+ raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
2560
+ (g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
2561
+ search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
2562
+ else:
2563
+ print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
2564
+ time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
2565
+ FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
2566
+
2567
+
2464
2568
  def doSwitchElasticMode(args, parsed_globals):
2465
2569
  g_param = parse_global_arg(parsed_globals)
2466
2570
 
@@ -3501,6 +3605,58 @@ def doModifyAreaBanStatus(args, parsed_globals):
3501
3605
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
3502
3606
 
3503
3607
 
3608
+ def doModifyIpAccessControl(args, parsed_globals):
3609
+ g_param = parse_global_arg(parsed_globals)
3610
+
3611
+ if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
3612
+ cred = credential.CVMRoleCredential()
3613
+ elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
3614
+ cred = credential.STSAssumeRoleCredential(
3615
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
3616
+ g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
3617
+ )
3618
+ 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):
3619
+ cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
3620
+ else:
3621
+ cred = credential.Credential(
3622
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
3623
+ )
3624
+ http_profile = HttpProfile(
3625
+ reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
3626
+ reqMethod="POST",
3627
+ endpoint=g_param[OptionsDefine.Endpoint],
3628
+ proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
3629
+ )
3630
+ profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
3631
+ if g_param[OptionsDefine.Language]:
3632
+ profile.language = g_param[OptionsDefine.Language]
3633
+ mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
3634
+ client = mod.WafClient(cred, g_param[OptionsDefine.Region], profile)
3635
+ client._sdkVersion += ("_CLI_" + __version__)
3636
+ models = MODELS_MAP[g_param[OptionsDefine.Version]]
3637
+ model = models.ModifyIpAccessControlRequest()
3638
+ model.from_json_string(json.dumps(args))
3639
+ start_time = time.time()
3640
+ while True:
3641
+ rsp = client.ModifyIpAccessControl(model)
3642
+ result = rsp.to_json_string()
3643
+ try:
3644
+ json_obj = json.loads(result)
3645
+ except TypeError as e:
3646
+ json_obj = json.loads(result.decode('utf-8')) # python3.3
3647
+ if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
3648
+ break
3649
+ cur_time = time.time()
3650
+ if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
3651
+ raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
3652
+ (g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
3653
+ search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
3654
+ else:
3655
+ print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
3656
+ time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
3657
+ FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
3658
+
3659
+
3504
3660
  def doDescribeAntiFakeRules(args, parsed_globals):
3505
3661
  g_param = parse_global_arg(parsed_globals)
3506
3662
 
@@ -3553,7 +3709,7 @@ def doDescribeAntiFakeRules(args, parsed_globals):
3553
3709
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
3554
3710
 
3555
3711
 
3556
- def doDescribeFindDomainList(args, parsed_globals):
3712
+ def doImportIpAccessControl(args, parsed_globals):
3557
3713
  g_param = parse_global_arg(parsed_globals)
3558
3714
 
3559
3715
  if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
@@ -3582,11 +3738,11 @@ def doDescribeFindDomainList(args, parsed_globals):
3582
3738
  client = mod.WafClient(cred, g_param[OptionsDefine.Region], profile)
3583
3739
  client._sdkVersion += ("_CLI_" + __version__)
3584
3740
  models = MODELS_MAP[g_param[OptionsDefine.Version]]
3585
- model = models.DescribeFindDomainListRequest()
3741
+ model = models.ImportIpAccessControlRequest()
3586
3742
  model.from_json_string(json.dumps(args))
3587
3743
  start_time = time.time()
3588
3744
  while True:
3589
- rsp = client.DescribeFindDomainList(model)
3745
+ rsp = client.ImportIpAccessControl(model)
3590
3746
  result = rsp.to_json_string()
3591
3747
  try:
3592
3748
  json_obj = json.loads(result)
@@ -3865,6 +4021,58 @@ def doModifyAntiInfoLeakRules(args, parsed_globals):
3865
4021
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
3866
4022
 
3867
4023
 
4024
+ def doCreateIpAccessControl(args, parsed_globals):
4025
+ g_param = parse_global_arg(parsed_globals)
4026
+
4027
+ if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
4028
+ cred = credential.CVMRoleCredential()
4029
+ elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
4030
+ cred = credential.STSAssumeRoleCredential(
4031
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
4032
+ g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
4033
+ )
4034
+ 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):
4035
+ cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
4036
+ else:
4037
+ cred = credential.Credential(
4038
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
4039
+ )
4040
+ http_profile = HttpProfile(
4041
+ reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
4042
+ reqMethod="POST",
4043
+ endpoint=g_param[OptionsDefine.Endpoint],
4044
+ proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
4045
+ )
4046
+ profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
4047
+ if g_param[OptionsDefine.Language]:
4048
+ profile.language = g_param[OptionsDefine.Language]
4049
+ mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
4050
+ client = mod.WafClient(cred, g_param[OptionsDefine.Region], profile)
4051
+ client._sdkVersion += ("_CLI_" + __version__)
4052
+ models = MODELS_MAP[g_param[OptionsDefine.Version]]
4053
+ model = models.CreateIpAccessControlRequest()
4054
+ model.from_json_string(json.dumps(args))
4055
+ start_time = time.time()
4056
+ while True:
4057
+ rsp = client.CreateIpAccessControl(model)
4058
+ result = rsp.to_json_string()
4059
+ try:
4060
+ json_obj = json.loads(result)
4061
+ except TypeError as e:
4062
+ json_obj = json.loads(result.decode('utf-8')) # python3.3
4063
+ if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
4064
+ break
4065
+ cur_time = time.time()
4066
+ if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
4067
+ raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
4068
+ (g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
4069
+ search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
4070
+ else:
4071
+ print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
4072
+ time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
4073
+ FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
4074
+
4075
+
3868
4076
  def doAddAntiFakeUrl(args, parsed_globals):
3869
4077
  g_param = parse_global_arg(parsed_globals)
3870
4078
 
@@ -6953,6 +7161,7 @@ ACTION_MAP = {
6953
7161
  "DeleteIpAccessControl": doDeleteIpAccessControl,
6954
7162
  "DescribeAntiInfoLeakRules": doDescribeAntiInfoLeakRules,
6955
7163
  "ModifyCustomRule": doModifyCustomRule,
7164
+ "DescribeFindDomainList": doDescribeFindDomainList,
6956
7165
  "ModifyInstanceQpsLimit": doModifyInstanceQpsLimit,
6957
7166
  "DescribeSpartaProtectionInfo": doDescribeSpartaProtectionInfo,
6958
7167
  "DescribeAutoDenyIP": doDescribeAutoDenyIP,
@@ -6991,6 +7200,7 @@ ACTION_MAP = {
6991
7200
  "DescribePeakPoints": doDescribePeakPoints,
6992
7201
  "ModifyCustomWhiteRule": doModifyCustomWhiteRule,
6993
7202
  "DescribeCertificateVerifyResult": doDescribeCertificateVerifyResult,
7203
+ "DeleteIpAccessControlV2": doDeleteIpAccessControlV2,
6994
7204
  "SwitchElasticMode": doSwitchElasticMode,
6995
7205
  "ModifyInstanceRenewFlag": doModifyInstanceRenewFlag,
6996
7206
  "DescribeUserLevel": doDescribeUserLevel,
@@ -7011,13 +7221,15 @@ ACTION_MAP = {
7011
7221
  "ModifyProtectionStatus": doModifyProtectionStatus,
7012
7222
  "DescribeCiphersDetail": doDescribeCiphersDetail,
7013
7223
  "ModifyAreaBanStatus": doModifyAreaBanStatus,
7224
+ "ModifyIpAccessControl": doModifyIpAccessControl,
7014
7225
  "DescribeAntiFakeRules": doDescribeAntiFakeRules,
7015
- "DescribeFindDomainList": doDescribeFindDomainList,
7226
+ "ImportIpAccessControl": doImportIpAccessControl,
7016
7227
  "DeleteDomainWhiteRules": doDeleteDomainWhiteRules,
7017
7228
  "DescribeAccessHistogram": doDescribeAccessHistogram,
7018
7229
  "DeleteDownloadRecord": doDeleteDownloadRecord,
7019
7230
  "DescribeTlsVersion": doDescribeTlsVersion,
7020
7231
  "ModifyAntiInfoLeakRules": doModifyAntiInfoLeakRules,
7232
+ "CreateIpAccessControl": doCreateIpAccessControl,
7021
7233
  "AddAntiFakeUrl": doAddAntiFakeUrl,
7022
7234
  "DescribeFlowTrend": doDescribeFlowTrend,
7023
7235
  "DescribeAntiFakeUrl": doDescribeAntiFakeUrl,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tccli
3
- Version: 3.0.1102.1
3
+ Version: 3.0.1103.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.1102
16
+ Requires-Dist: tencentcloud-sdk-python>=3.0.1103
17
17
  Description-Content-Type: text/markdown
18
18
 
19
19
  # 命令行工具简介
@@ -1,4 +1,4 @@
1
- tccli/__init__.py,sha256=8hV1t1OUo9-HFyMaOOKYxLmpAFfKngIaTfTk3ABmT5Y,27
1
+ tccli/__init__.py,sha256=hgugiO1myQW5f9Mr52yXPGlGnmD1h-R8Y6w0ubFpCyU,27
2
2
  tccli/argparser.py,sha256=iFaw_iIMdyVwUdcv2_2OHQfe7-7j9yGzoOgXgXswoBo,5555
3
3
  tccli/argument.py,sha256=ZtVo3AySpzM-Hw6_hPdU27FjUsc8QPB2fIuLy7JSBAk,8091
4
4
  tccli/base_command.py,sha256=rFWNAwfS0GA6LLGNOM-iPI0RV81Jag5cZn536ZQN0pw,2859
@@ -5430,6 +5430,7 @@ tccli/examples/iotexplorer/v20190423/CreatePositionFence.md,sha256=3pmLFbfBpqd8m
5430
5430
  tccli/examples/iotexplorer/v20190423/CreatePositionSpace.md,sha256=UzI-WYoiBphN-qUciQAwpvKn8UPQnj2iAgAF7EEALQ0,443
5431
5431
  tccli/examples/iotexplorer/v20190423/CreateProject.md,sha256=rNxKYG3pAb_WMW5gDpX8ccNrI5jXxr-H9Bff26If87I,528
5432
5432
  tccli/examples/iotexplorer/v20190423/CreateStudioProduct.md,sha256=eosdp5iBO_kRwMBlTmlp1yDhLPsQw_-kj2anPWE2cmY,975
5433
+ tccli/examples/iotexplorer/v20190423/CreateTRTCSignaturesWithRoomId.md,sha256=kclJl1C4XF2nVWXO6o6VLYhGNxziUfOS-8rMDJkHXFc,1035
5433
5434
  tccli/examples/iotexplorer/v20190423/CreateTopicPolicy.md,sha256=Hmu2p2I-Dm5v1fqQ9QAnyYSV99J-toqxkoGcHJCv4f0,290
5434
5435
  tccli/examples/iotexplorer/v20190423/CreateTopicRule.md,sha256=okPM1s55IlTT4xUze-Dxb6qYf-epJKL7lq0k_BTGAwQ,499
5435
5436
  tccli/examples/iotexplorer/v20190423/DeleteCloudStorageEvent.md,sha256=1W9e8QeYkCFcMP6Cu5ER8YkyNvlQHrnSWuTirJMNlj8,341
@@ -5449,7 +5450,8 @@ tccli/examples/iotexplorer/v20190423/DescribeBindedProducts.md,sha256=EMRn7Cr7hS
5449
5450
  tccli/examples/iotexplorer/v20190423/DescribeCloudStorage.md,sha256=qe5lWKm4ZRZpEu28aWGCw5_VmG7ClJSKKIQ48pQ3vjY,458
5450
5451
  tccli/examples/iotexplorer/v20190423/DescribeCloudStorageAIService.md,sha256=KqECDvpVNVwoMoRKMT1NsMSntIJLop2XeC6gSwYmHhI,428
5451
5452
  tccli/examples/iotexplorer/v20190423/DescribeCloudStorageAIServiceCallback.md,sha256=KFFUkN4oEhLyQFSTKNKSaxGGuGXE3LO6qQB_VWNHM88,399
5452
- tccli/examples/iotexplorer/v20190423/DescribeCloudStorageAIServiceTasks.md,sha256=-vQyUhw0mlOYVKIoJK7KulsZ5fkaz2ZAbDs5eLRkNHY,950
5453
+ tccli/examples/iotexplorer/v20190423/DescribeCloudStorageAIServiceTask.md,sha256=qBrl1rRC3ZdWzR-tkJANzrs_msi-kz0SdHC0-uRpN3M,810
5454
+ tccli/examples/iotexplorer/v20190423/DescribeCloudStorageAIServiceTasks.md,sha256=HxeJSLE8lp7qrR6g7wNgupvGnHZV6-fbzFfh3GxLk5c,1029
5453
5455
  tccli/examples/iotexplorer/v20190423/DescribeCloudStorageDate.md,sha256=4E5J6sLUFnF1M1b0MldMfPZpvZQa-oZ3i6B4M2RPrP0,353
5454
5456
  tccli/examples/iotexplorer/v20190423/DescribeCloudStorageEvents.md,sha256=n9vNr6GgcUfi053Aqy567847Ru2wD5AaaI4BYz5kFro,4059
5455
5457
  tccli/examples/iotexplorer/v20190423/DescribeCloudStorageMultiThumbnail.md,sha256=GhU7SLoxFZr4JKJYkqg8kFXB91FvmNeuQDBLLj6go3I,557
@@ -5490,8 +5492,10 @@ tccli/examples/iotexplorer/v20190423/DescribeTopicPolicy.md,sha256=0MPYpfWVXfjVZ
5490
5492
  tccli/examples/iotexplorer/v20190423/DescribeTopicRule.md,sha256=esReHJWkAWOIbOAdFJvmF8yWi81ELzbkImfLiGmpZoU,533
5491
5493
  tccli/examples/iotexplorer/v20190423/DirectBindDeviceInFamily.md,sha256=qpp9tULh6LtX0HHuAVPDbL35WeBiC-uR-oAWImV2X4A,760
5492
5494
  tccli/examples/iotexplorer/v20190423/DisableTopicRule.md,sha256=2-OX-ORMuNfIWsQwwHqSAOSmLKV54K6z4UDFGlrygCo,242
5495
+ tccli/examples/iotexplorer/v20190423/DismissRoomByStrRoomIdFromTRTC.md,sha256=L0OD5k-nYtp4HZy7kpDvjkuiJwrwCgx1eqnFF6itK70,247
5493
5496
  tccli/examples/iotexplorer/v20190423/EnableTopicRule.md,sha256=HYtzswn2rJBgKiNXIKBd3-_UfN8R85ob8M5bd46Iv0E,241
5494
5497
  tccli/examples/iotexplorer/v20190423/GenSingleDeviceSignatureOfPublic.md,sha256=1MjheqUpDoOibrFTzfLVsC1k9becPYfWZAjKPylhgD4,531
5498
+ tccli/examples/iotexplorer/v20190423/GenerateCloudStorageAIServiceTaskFileURL.md,sha256=JhpA4He7J0Zagg6qEtghXeS6VsjilXOfRMSfyHjEewY,477
5495
5499
  tccli/examples/iotexplorer/v20190423/GenerateSignedVideoURL.md,sha256=gvZlt2Fl5j2PGqudw0uwmX6zwYnDtUeOvxKQdUBICNA,403
5496
5500
  tccli/examples/iotexplorer/v20190423/GetBatchProductionsList.md,sha256=YVGKEvzmiRX6RoBW9NXUpa0v7JaHStYwJQeGo9CFl7E,581
5497
5501
  tccli/examples/iotexplorer/v20190423/GetCOSURL.md,sha256=O8whrebczPfjPFZJ_zUisQeywXA_y9fXUfHqlEFC4e0,279
@@ -5527,6 +5531,7 @@ tccli/examples/iotexplorer/v20190423/PublishBroadcastMessage.md,sha256=sntezjw4y
5527
5531
  tccli/examples/iotexplorer/v20190423/PublishMessage.md,sha256=YKUySaCoFeejNsl7vqdso4zIuZeQtOVsK3X8N158utY,832
5528
5532
  tccli/examples/iotexplorer/v20190423/PublishRRPCMessage.md,sha256=qqdSomBWLngZtRSJ8zqswakr1Kz3P3PFo6Qlix8N788,356
5529
5533
  tccli/examples/iotexplorer/v20190423/ReleaseStudioProduct.md,sha256=LCkcCStPXhHAKEXf2ogUT_hz2OolMI9ZZ2Shs5DLG0M,285
5534
+ tccli/examples/iotexplorer/v20190423/RemoveUserByRoomIdFromTRTC.md,sha256=0qcYJJHo3t-N5WwnwE8vXfXSU50pVwucxizLYE-xkW8,269
5530
5535
  tccli/examples/iotexplorer/v20190423/ResetCloudStorage.md,sha256=An2y1nUhYGQJtX0cyxo9rxuqbkdT2vcFkLND1jxy5Tg,251
5531
5536
  tccli/examples/iotexplorer/v20190423/ResetCloudStorageEvent.md,sha256=oboSFaxCig5Yrnlt7tDYrTP5SjHTwPr3Y_aigdYsMPs,256
5532
5537
  tccli/examples/iotexplorer/v20190423/SearchPositionSpace.md,sha256=blN4MYDqGSxMfPIPCG3Xn6jNb1oAKyANGFd1Gy9g6N4,764
@@ -6218,7 +6223,7 @@ tccli/examples/lighthouse/v20200324/DescribeGeneralResourceQuotas.md,sha256=nTw9
6218
6223
  tccli/examples/lighthouse/v20200324/DescribeInstanceLoginKeyPairAttribute.md,sha256=Vg7_H8VZ80xW_SXEt_oVYqgFakPWp0Yzz-WnDlGLp6E,320
6219
6224
  tccli/examples/lighthouse/v20200324/DescribeInstanceVncUrl.md,sha256=8fNDAKTM08fToAn6eP2OaCdJo7DpPOZiZPPH9ez3sfU,593
6220
6225
  tccli/examples/lighthouse/v20200324/DescribeInstances.md,sha256=hh_YxRADuyzyiRCBaB3SDY72R0Or67X5-JPGNWFVy4o,2232
6221
- tccli/examples/lighthouse/v20200324/DescribeInstancesDeniedActions.md,sha256=0jqH7vlSJBIH2DAjfD__3EDpW2BiaTU63cnqNjynEXk,761
6226
+ tccli/examples/lighthouse/v20200324/DescribeInstancesDeniedActions.md,sha256=jceuWjZkKHikuPbuV0sT1FoWfla95rhi_IgQPuLlAKc,1061
6222
6227
  tccli/examples/lighthouse/v20200324/DescribeInstancesDiskNum.md,sha256=1KVpp11wXw8Y7hiGl5y7dJJjexUgUILLNmgwq78YBQw,490
6223
6228
  tccli/examples/lighthouse/v20200324/DescribeInstancesReturnable.md,sha256=sXcgQA_5KbX_DTl8ZhhxogfbWaPu4weOHzoGN6DP7A0,764
6224
6229
  tccli/examples/lighthouse/v20200324/DescribeInstancesTrafficPackages.md,sha256=yrVprxssLW0v4MVvAa-7S9ypi9OR9ZIhfvxPP-ZJxyM,1715
@@ -6993,6 +6998,7 @@ tccli/examples/mps/v20190612/ResetWorkflow.md,sha256=az21QH5nmO9xW0Ny9Ml_NQAUQ2x
6993
6998
  tccli/examples/mps/v20190612/StartStreamLinkFlow.md,sha256=3t6VKn_Kxsy8tX84FNhLqgckXVG0nm72i7prQ6CsgHY,196
6994
6999
  tccli/examples/mps/v20190612/StopStreamLinkFlow.md,sha256=VExfU6xAW40aQMLXXnfsG0f_vrlzIO-FAhMwv5DFPmo,195
6995
7000
  tccli/examples/mps/v20190612/WithdrawsWatermark.md,sha256=ZzqKwGmuSQBo40PGQus_HS5je_K547GzMSiM6eMQEko,536
7001
+ tccli/examples/mrs/v20200910/DrugInstructionObject.md,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6996
7002
  tccli/examples/mrs/v20200910/ImageMask.md,sha256=vuPkiwwqFUA8WXcWo5GkYwnq8h6D7pgj0iqbVL2HS7Y,376
6997
7003
  tccli/examples/mrs/v20200910/ImageMaskAsync.md,sha256=zMumSRlS7GWr-NVqjWUk82IvO_fDn7CDGhMZvUeQqIE,382
6998
7004
  tccli/examples/mrs/v20200910/ImageMaskAsyncGetResult.md,sha256=xpfgshzqvil1KgJnOsPn3aNPTL7NWncipmptVu3smvk,261
@@ -11068,6 +11074,7 @@ tccli/examples/waf/v20180125/CreateAccessExport.md,sha256=yoaeBkgcrOrE3e-KM3IgpP
11068
11074
  tccli/examples/waf/v20180125/CreateAttackDownloadTask.md,sha256=hFbPmUg9czH8Vwdxl3NYWWZRTtie0QddvBLQYzIlv5M,375
11069
11075
  tccli/examples/waf/v20180125/CreateDeals.md,sha256=xkwOKOTSx8elrCaSfbT6Q4Gvxu3NFUPIhNcNXSsG5RA,932
11070
11076
  tccli/examples/waf/v20180125/CreateHost.md,sha256=a79_ztorX2hNPc3nUbqfvsVR0YHPIvF2MrM7h0DzVec,1040
11077
+ tccli/examples/waf/v20180125/CreateIpAccessControl.md,sha256=yXhp9gMh7vyzpu-3Hbfa8g8rwX7v22q_Jgw3FKLW0zs,406
11071
11078
  tccli/examples/waf/v20180125/DeleteAccessExport.md,sha256=-6Wl2xeogdF4R0igQpqpXqNo6XKdVhLeE4CESrMXnVk,333
11072
11079
  tccli/examples/waf/v20180125/DeleteAntiFakeUrl.md,sha256=Fd9Eik4zbJYeZWW33p8eJAP7z4pwAivFU5kK5RwnMk0,255
11073
11080
  tccli/examples/waf/v20180125/DeleteAntiInfoLeakRule.md,sha256=6XxdYVumte8X-sa2vf2zr7MRkkdC5aJD15RxieVYrzo,273
@@ -11080,6 +11087,7 @@ tccli/examples/waf/v20180125/DeleteDomainWhiteRules.md,sha256=Kmcfzky7L83P-z4I5A
11080
11087
  tccli/examples/waf/v20180125/DeleteDownloadRecord.md,sha256=kbGUGWhVCKuals2ePYtS0QGc2jEK5CnN01RUZpwvqc4,228
11081
11088
  tccli/examples/waf/v20180125/DeleteHost.md,sha256=46Tw47vxsyvjCnPu4hcBepKg1oC0CouWKdKZtaXrrlk,457
11082
11089
  tccli/examples/waf/v20180125/DeleteIpAccessControl.md,sha256=oEAkcxjEqXvSObLnjfRJvd5MWrZuZsNE9G_JhuADtVs,381
11090
+ tccli/examples/waf/v20180125/DeleteIpAccessControlV2.md,sha256=XwsvFoGFuFgXUWYv5uA95ebwvsgaF_ZsPjGfRYZl5Go,347
11083
11091
  tccli/examples/waf/v20180125/DeleteSession.md,sha256=6AXTZZeVrfqJVUupWbBn_zHAdjBhDOuptMRcQ5G9qGw,290
11084
11092
  tccli/examples/waf/v20180125/DeleteSpartaProtection.md,sha256=Mgc3lau07HnYLktjEk-RxqkHcyM6BMD25XiwA32Kxms,283
11085
11093
  tccli/examples/waf/v20180125/DescribeAccessExports.md,sha256=EB9A3IIa8IgzZsP-_GO6rRO7rP-FntNSBamQbUieVyM,1355
@@ -11147,6 +11155,7 @@ tccli/examples/waf/v20180125/GetAttackDownloadRecords.md,sha256=YNO5ZHr4y6oHyX9J
11147
11155
  tccli/examples/waf/v20180125/GetAttackHistogram.md,sha256=iWiEJUa6y6wafsr-a2461txWb28Z-u0Ck5rfRIl0n7M,3195
11148
11156
  tccli/examples/waf/v20180125/GetAttackTotalCount.md,sha256=4FtD6EI-3ne5duUnSnZTVGIDARbmEgmJ8TJOxaP0Hxg,370
11149
11157
  tccli/examples/waf/v20180125/GetInstanceQpsLimit.md,sha256=9cXGlQCw-F_TzG4EHGwIdAVfvOfXkxodgVB_sUtcLSs,379
11158
+ tccli/examples/waf/v20180125/ImportIpAccessControl.md,sha256=v7wQbH4tWLwoaD5B-wSinqRUC59VPqE-V4JvV4RxhmM,512
11150
11159
  tccli/examples/waf/v20180125/ModifyAccessPeriod.md,sha256=4mqUF-AY8UuknO0DKDR1w9fjvWhkSjgRci6eaYHKFc0,290
11151
11160
  tccli/examples/waf/v20180125/ModifyAntiFakeUrl.md,sha256=lbuj73VPG2sxwItNOYwZ2Mifv7X5sfWQdmaKMKh71Ss,354
11152
11161
  tccli/examples/waf/v20180125/ModifyAntiFakeUrlStatus.md,sha256=GSI-m1IFWnXMw9RHItgxwlqhbYAj0IjgfGpVLwr2l_Y,282
@@ -11173,6 +11182,7 @@ tccli/examples/waf/v20180125/ModifyInstanceElasticMode.md,sha256=GR_jxd3XSj46YHT
11173
11182
  tccli/examples/waf/v20180125/ModifyInstanceName.md,sha256=ESAwxt3jRBpP0Cml2_po3V_yiipt_18cNdINeBGSIWI,290
11174
11183
  tccli/examples/waf/v20180125/ModifyInstanceQpsLimit.md,sha256=bxV4Ebh2EMbtxHOJyFXSIIiRap4emn5uTiBm4x5LBT8,305
11175
11184
  tccli/examples/waf/v20180125/ModifyInstanceRenewFlag.md,sha256=3SAYjhMtDC9_DeZA2v2SurbSwM2amFieBeezqu5FEWo,286
11185
+ tccli/examples/waf/v20180125/ModifyIpAccessControl.md,sha256=jyRnNqPbh_3FwytvcuYXf_ZHgf_ATE0K0rWNmsLOghM,414
11176
11186
  tccli/examples/waf/v20180125/ModifyModuleStatus.md,sha256=wMFrBJqlAEUPU4dfUN2G5QfJKhrxyLUINemjkHT9h_E,353
11177
11187
  tccli/examples/waf/v20180125/ModifyObject.md,sha256=jXBdKy7LpP0LfB0ta4dYy97tIZxLnQQjqKWX6pCU8RU,321
11178
11188
  tccli/examples/waf/v20180125/ModifyProtectionStatus.md,sha256=TCKhONb4rZgUEuQYafDqBPgMDBkBjIBQqRlABJRVCxk,266
@@ -12134,7 +12144,7 @@ tccli/services/cam/v20190116/api.json,sha256=DqQfSK8N6WvJRpGR5dm1LeZ1TRkRmp6V_QM
12134
12144
  tccli/services/cam/v20190116/examples.json,sha256=ttse22TO3SsygmfbYZSgNX_dzRQXjrXANg8SG5Q2gj4,61570
12135
12145
  tccli/services/captcha/__init__.py,sha256=lvxdx7C0BO16NXoYwblhqeEgKSKpT5swiysVLdkUvcQ,93
12136
12146
  tccli/services/captcha/captcha_client.py,sha256=_XEGDa6Rlj29BkgS_20IsUQza7uOMFaEpGEF37qAXG0,61748
12137
- tccli/services/captcha/v20190722/api.json,sha256=BrQfgXKbEcP12Uq0q7ylLxfIJX2tCDwEkJu2V4Eg2tw,100278
12147
+ tccli/services/captcha/v20190722/api.json,sha256=vN_ZAw-Rz0_2Y_b4cffhvAp4OQj_keYG1x4wujJe748,100282
12138
12148
  tccli/services/captcha/v20190722/examples.json,sha256=iAKXnxdrp3YNfVDrDYtT69dWRLugIIfECVews5DvPd8,17776
12139
12149
  tccli/services/car/__init__.py,sha256=jHj_UydXB-rvbtJEAdThJkeOkpEfWQGsSTtYh8z34ss,85
12140
12150
  tccli/services/car/car_client.py,sha256=NSb4YkIgCAovqCcDNFqoWQVG9ILf08DLo_wcFCFs8q0,24069
@@ -12150,7 +12160,7 @@ tccli/services/cbs/v20170312/api.json,sha256=Stw-3rGVr2x8PBI_rLmvwkDYFIuSIYink7c
12150
12160
  tccli/services/cbs/v20170312/examples.json,sha256=sVY3OvJ_LSM-QzujqRKaw6O-no4wT_qECVGAITuyjck,40357
12151
12161
  tccli/services/ccc/__init__.py,sha256=wR36QP35wizc6U55yXrZrY_2HiEVnzYPRWgGN_kkLxo,85
12152
12162
  tccli/services/ccc/ccc_client.py,sha256=atvBP9bsylC50wTXgfzGz6PdfM1NB_N30Q_g_WXsHOU,182661
12153
- tccli/services/ccc/v20200210/api.json,sha256=Wx5gVpYSvwBncefqC1axANDbwrH0dQQQE5Cxl9XdSnk,265128
12163
+ tccli/services/ccc/v20200210/api.json,sha256=TkeWp1lhK0k8CDVprPz7rQQPvAr7OeWsZtBqTqmewHw,265770
12154
12164
  tccli/services/ccc/v20200210/examples.json,sha256=AUv01CrWQWwoyFPCnaHvlt_ea-e3kQQ4FeiRMjCoEkA,60611
12155
12165
  tccli/services/cdb/__init__.py,sha256=9Jk9tAMP2ZM_xOG77GvqXL1q3UfwYTEos6_P6xzpTiM,85
12156
12166
  tccli/services/cdb/cdb_client.py,sha256=y1rHyC-yn4bROlxey7WK4_htIOE6XpB7T53Zm9AA7Rc,513780
@@ -12222,7 +12232,7 @@ tccli/services/ckafka/v20190819/api.json,sha256=6jebXEwkRQKUWzxtx69lRtOEwRSh71tW
12222
12232
  tccli/services/ckafka/v20190819/examples.json,sha256=mNcdN35xKUPoBeUTjZhLetzs-ExPcCNUwE5tCowxC28,123644
12223
12233
  tccli/services/clb/__init__.py,sha256=iG2aiZhDOcK4l_2Wkxs57qF1Y4lmv7RxRSPcG9paDk0,85
12224
12234
  tccli/services/clb/clb_client.py,sha256=5K-_M9jBlaBpjBPPoR2OZX3IuDa8xXvKXtLyEiburiI,272894
12225
- tccli/services/clb/v20180317/api.json,sha256=vg2JCpdGPSCg7OmbTHYQrduL0Hb-ITi_ochlLYZ1slg,430748
12235
+ tccli/services/clb/v20180317/api.json,sha256=zY_-G8yJJxA0VIBADVCS3qO7gXHFIL941lDu70cqq5s,430790
12226
12236
  tccli/services/clb/v20180317/examples.json,sha256=G4YgnYhEzg-H_cp1wZppZ56xfNF3I_bAexhCuf0N23A,126033
12227
12237
  tccli/services/cloudaudit/__init__.py,sha256=U19yTW3yEQAaf_W0xT0bk9VNlbfkqqw8owcFSSO7iFs,99
12228
12238
  tccli/services/cloudaudit/cloudaudit_client.py,sha256=IdxAxwGk5H0QooS9KBANCt-fIqsuBPgjkDoePPwtJCU,64107
@@ -12238,7 +12248,7 @@ tccli/services/cloudstudio/v20230508/api.json,sha256=XfRs31gZJT7hw9evM2g1ANArzHR
12238
12248
  tccli/services/cloudstudio/v20230508/examples.json,sha256=XXpDCtNUiK9__-_4bdbT4XTvDaGPPKOP7kGMIwMYW30,5455
12239
12249
  tccli/services/cls/__init__.py,sha256=emWEmdULub91gG47BRE9u44cHrFt8L4KRduipQx_MfQ,85
12240
12250
  tccli/services/cls/cls_client.py,sha256=1uNbiCWo7CtfPNsXdvBdiYNTR018uIqhtQc6IK3QyoQ,304865
12241
- tccli/services/cls/v20201016/api.json,sha256=9twP8m6G-3UnA5RIM_peKxu4g4I-vqClfeXi8udZrsw,514989
12251
+ tccli/services/cls/v20201016/api.json,sha256=KkkQtESRj2wKo4Rv_Ys4ZceX9JvtQ-a_uDC5c3L_BCw,514154
12242
12252
  tccli/services/cls/v20201016/examples.json,sha256=R1K9wn7aucEZGheiD4_TYhdrG2a3WtIvE4L9cfaCFmk,197565
12243
12253
  tccli/services/cme/__init__.py,sha256=JUEIsQ1dWJHSubFZl7yjNuEMYMdDiyVRMv7YUiZcz4s,85
12244
12254
  tccli/services/cme/cme_client.py,sha256=I0EfukJ3DMhKfOXq4I1nZ2Tp4597B3hzycqVQd_EBqM,159812
@@ -12320,7 +12330,7 @@ tccli/services/dcdb/v20180411/api.json,sha256=O34yaclmYgf_S2ohNymLZ0c7fNSXrle_XK
12320
12330
  tccli/services/dcdb/v20180411/examples.json,sha256=UduKGSVdMIb9gd6yOapjaBcJw9J1KR9Towr-UujSl6g,67066
12321
12331
  tccli/services/dlc/__init__.py,sha256=Pt7cRkf9EvW5Zp2SZeVE-_cF_YHO7ORkFXK7qsTnkiA,85
12322
12332
  tccli/services/dlc/dlc_client.py,sha256=j1SZyAJeCVFTaN8q5Fv6oH5JP-ok4DafP7xKX52un6Y,389650
12323
- tccli/services/dlc/v20210125/api.json,sha256=qn1IVkDlMX8yf7lh3raOZr1Pw-FAQpMohjNQlc35KTU,580057
12333
+ tccli/services/dlc/v20210125/api.json,sha256=Peh-p3bZpaXqM9qJP9ag16c-5l1g4n7K4sfMGN9X3Is,582539
12324
12334
  tccli/services/dlc/v20210125/examples.json,sha256=yYoSRj2oLSYQeT18peNCsLp9CAIL2Gr5uSm1OYOjegU,173164
12325
12335
  tccli/services/dnspod/__init__.py,sha256=4t9Zk1hkia8MrDbtWW-XP9aCXYNWqafFaB1NKh5Ebfc,91
12326
12336
  tccli/services/dnspod/dnspod_client.py,sha256=ysRRgNrVCPK5ETdSF0bGqB_idBRTjwvW_hCmx33zuO0,231753
@@ -12408,7 +12418,7 @@ tccli/services/faceid/v20180301/api.json,sha256=EVZYCvxDEKtRAc0VZ7iKuU5JgFuzquzi
12408
12418
  tccli/services/faceid/v20180301/examples.json,sha256=9q0Uv8yTZRYsIJHt7tnGgVAH0cYSHHp7wWf7N0DayuQ,40296
12409
12419
  tccli/services/fmu/__init__.py,sha256=uYgLsNe53oF1T-qH3hFFAdGC7d9SKthtORQ7dLiPfx8,85
12410
12420
  tccli/services/fmu/fmu_client.py,sha256=8BCV5LAHPDHw8O749qGM5hthX50xVO5d76fZmWKSlbQ,36237
12411
- tccli/services/fmu/v20191213/api.json,sha256=UT-gBGO76LixdAkvswoJZbHCH_ULYr3igPBS0Whmo3Y,36602
12421
+ tccli/services/fmu/v20191213/api.json,sha256=Z0bAeJNxImh9Wn9HLcr-l4z-Z7cwl5q3r6lUaqxu4e4,36606
12412
12422
  tccli/services/fmu/v20191213/examples.json,sha256=0LwVkK2grAatiLacy922r7G8mh_AK9gIqbkeI3Cql6g,9301
12413
12423
  tccli/services/ft/__init__.py,sha256=FlI-QcwcQHoxaFleuIyQjWFQ_GkhaHnqCff27T4yPwY,83
12414
12424
  tccli/services/ft/ft_client.py,sha256=NCpZH-dr__sBS0GMvdyv6caBp6dTqyktJPUzx-Nn0JI,23961
@@ -12505,9 +12515,9 @@ tccli/services/iotcloud/v20180614/examples.json,sha256=AwfWtQ_qZr8SGnhFLXRjowwtm
12505
12515
  tccli/services/iotcloud/v20210408/api.json,sha256=XObAuTU57geJw1nSzW7xMOQGlGbT9pNJOZHZL4qx0jE,220925
12506
12516
  tccli/services/iotcloud/v20210408/examples.json,sha256=YyQWed32XTz3uEq2qhzx-PLFsL-JPV5onzu86QzMxa4,52138
12507
12517
  tccli/services/iotexplorer/__init__.py,sha256=nyHgP2MNjW7AjPBVM_OQXZ53QOGgNAogZb3jbm7PSd0,101
12508
- tccli/services/iotexplorer/iotexplorer_client.py,sha256=ewW0PxuPIdaa3UkEBchCsW_3-u8euhO-xnDib3s-qhU,391168
12509
- tccli/services/iotexplorer/v20190423/api.json,sha256=JIWJ8bwO5N-64nqms6gTAPUcIen1UoFEaluPU32Y6OE,378550
12510
- tccli/services/iotexplorer/v20190423/examples.json,sha256=1Vlt86SyVNFRoc4xtFEmZFMC-3SqbZMhINoR5KV7biU,112789
12518
+ tccli/services/iotexplorer/iotexplorer_client.py,sha256=ATAXf84RD5OGvGCl4xggizTu5MZ8m4AN0HkOGJ5_tKM,406988
12519
+ tccli/services/iotexplorer/v20190423/api.json,sha256=SSqGVH6zxvEH90sP3lsVLmV1Pf9KNLDc6QwQazG70G0,389986
12520
+ tccli/services/iotexplorer/v20190423/examples.json,sha256=TR4RFhRgDn5a8-4nXXKmWT__KF53ZRj4miIB9YUEcqg,116864
12511
12521
  tccli/services/iottid/__init__.py,sha256=Cv5v-9LmxYZb4Z2ifR8l7vJjP8qESiQYXG4QC54GNBM,91
12512
12522
  tccli/services/iottid/iottid_client.py,sha256=UhmuWRNivsVwX57HxQ7y-XUXyuxW1en5YlHQLCuBxNA,33328
12513
12523
  tccli/services/iottid/v20190411/api.json,sha256=tI00843oF1iBgrCeMTfh8SGo-u3sygP5MKPGWfAKhqo,16287
@@ -12532,7 +12542,7 @@ tccli/services/irp/v20220805/api.json,sha256=8IuTarPH5o2qlZYOMc-AmL3uQRrXErKVtRU
12532
12542
  tccli/services/irp/v20220805/examples.json,sha256=uJGF5e7ruKl-Sd4wOnjmJ1TWF4m0NYINbWJzT-K0NHs,9638
12533
12543
  tccli/services/iss/__init__.py,sha256=NVoSqiEr6LSi4FkSNJu9Umy_kXle33km39CSW45g3so,85
12534
12544
  tccli/services/iss/iss_client.py,sha256=FNrWIP7gOa10Y210c65Dt914-tEv9C98YV-g1YBh-tc,258841
12535
- tccli/services/iss/v20230517/api.json,sha256=Jrix4J5_TDIEwOmhOz6-22H5r_f68GAnthKwzW4XQEg,349260
12545
+ tccli/services/iss/v20230517/api.json,sha256=P1FAFosSDkawNg6EkRxDh2KZTzi6-zBOnF1pOMv40E8,349603
12536
12546
  tccli/services/iss/v20230517/examples.json,sha256=47jADTPEIkcmdI1ujktGXrVUMHxJqjL0WW3iZgIPvVE,111228
12537
12547
  tccli/services/ivld/__init__.py,sha256=kohm2-CC27w5MyivVgx973ymg0QkpbAjj_GJm9TN2Z4,87
12538
12548
  tccli/services/ivld/ivld_client.py,sha256=K2DP5ukyvURIh9UIZdne0RQpYnQk4t2goBtyxkhCD4U,82664
@@ -12552,15 +12562,15 @@ tccli/services/lcic/v20220817/api.json,sha256=lWdLZ-b-NltSAbYuHgJVY_ghVn6dcV6KDV
12552
12562
  tccli/services/lcic/v20220817/examples.json,sha256=5Z-y4nxBnoYP2yrPkBj22kMkdJlfchah6L9kZ91nIKA,50538
12553
12563
  tccli/services/lighthouse/__init__.py,sha256=mthGX-k-GPfpudeGSVAEXUMitx-xg7Aw2ZcXxrjf_78,99
12554
12564
  tccli/services/lighthouse/lighthouse_client.py,sha256=rEbJoZeoN4IXJ9jsTZZiRy1BCqYReO-E7dX9Xw3cmFs,344732
12555
- tccli/services/lighthouse/v20200324/api.json,sha256=sR5-1y8j1vQ2Js4yj9LFvjwBce9ADhaMIcIwhTf9SsY,360274
12556
- tccli/services/lighthouse/v20200324/examples.json,sha256=Qod1h-HFHjQzu2M7VuS4oitxdKVtPOD5hh6djMDJxq4,132257
12565
+ tccli/services/lighthouse/v20200324/api.json,sha256=zdb_3mFN_xW_ojJXzMeU2-gQPYZLq3beCLudBXf6vhQ,362030
12566
+ tccli/services/lighthouse/v20200324/examples.json,sha256=rKWgvnaaFUeT6HBxI5xzKUFNOtVA2awvuyYdY4dxpJY,132662
12557
12567
  tccli/services/live/__init__.py,sha256=RcvY72t1P1PSv7r9d9SCa9Iv7qvP8ok30HwiMcPVAs4,87
12558
12568
  tccli/services/live/live_client.py,sha256=4tp_VNlbokCssfXtq7ifcHsNjklYQwALe-2sT4rjQmQ,485731
12559
12569
  tccli/services/live/v20180801/api.json,sha256=RfxpVVUg_kCvdnko8qduxaWmidwfB_Lo8hVD_OLuVFY,632355
12560
12570
  tccli/services/live/v20180801/examples.json,sha256=AfppxqBwiLO-MIA8BC8MeVOFVfbLpMJP6nuKjZwuLiE,126828
12561
12571
  tccli/services/lke/__init__.py,sha256=GKvpxCc-YzK4HVgYFq-aLRxZ1WW4MjpKLIqJNqecz_c,85
12562
12572
  tccli/services/lke/lke_client.py,sha256=ZH7PhKEz5sVRgEnP4FmTOZ_9p-oKd6X334WUJ2rmGsg,235902
12563
- tccli/services/lke/v20231130/api.json,sha256=7PDLHqBYP1q1VCAm7D9yZMJvDYAluH7H1iTRB6wE4fw,286306
12573
+ tccli/services/lke/v20231130/api.json,sha256=P3SzsQc_SyIwfAArOSQ_JPSlefokbGjrB4CzpTBDWj8,286356
12564
12574
  tccli/services/lke/v20231130/examples.json,sha256=y24I-l4_zwppfm_lcA3N8BM9Bmk1WLJfzbRyLAmR83Y,68856
12565
12575
  tccli/services/lowcode/__init__.py,sha256=Kwnfhcs3YjlqMpMouELxDMbP4F0BLDwcaqTPutTSvDs,93
12566
12576
  tccli/services/lowcode/lowcode_client.py,sha256=mk1eMWo8vZK0nJ8y6jtYIvoUnvkgMJv-W-1i20SzMaw,8716
@@ -12615,9 +12625,9 @@ tccli/services/mps/mps_client.py,sha256=oFBSX-yuW-VsS6fQjR5pmlNKKLDaj-TMN3-Ri5I7
12615
12625
  tccli/services/mps/v20190612/api.json,sha256=j8378ul0tPFLrZSglxVMO-aHT4ih1fZIJRp1KCHQSNY,963163
12616
12626
  tccli/services/mps/v20190612/examples.json,sha256=mPaGmir0Yd18t-Y0pJGGExLffmit_CoSPaS5HrLMaM4,205375
12617
12627
  tccli/services/mrs/__init__.py,sha256=Vwc_ClNX27xapevic8Icf1ien9RVCMPqPag9PyUNnos,85
12618
- tccli/services/mrs/mrs_client.py,sha256=pCccAqOB304F9UXvoXdmwHmvA_Nyq4cduKhCbvPhLjQ,36337
12619
- tccli/services/mrs/v20200910/api.json,sha256=Qi_RGWA2ioupmX42Z3mkplu-E_FLdgysPtZOPZsrDSw,478669
12620
- tccli/services/mrs/v20200910/examples.json,sha256=_jB_btfdDDRCnYHXi8_1u0vywC_CFhD2H79GquQ2qo8,142384
12628
+ tccli/services/mrs/mrs_client.py,sha256=gkJ5KxNkknL-NkxVnYJOPl0J63RMByeEGagfjqOtqqg,39439
12629
+ tccli/services/mrs/v20200910/api.json,sha256=j-ZNO7t0OKEMd6Ff26T-v_xEt0qp0p5-qR9cJXjEsGs,519677
12630
+ tccli/services/mrs/v20200910/examples.json,sha256=ryKjNlna3sAROf0s8xjruAvopnCW5yszcMCeBVs1sJM,229636
12621
12631
  tccli/services/ms/__init__.py,sha256=JqihrSVQHDfhGPtvf-gDtLEmfnD6ihFXsQbLVLPw5RI,83
12622
12632
  tccli/services/ms/ms_client.py,sha256=pm0W8AGO8_W9fC55lMTjjZaDMVKzqPfM97E5RZZ8uRs,76993
12623
12633
  tccli/services/ms/v20180408/api.json,sha256=-dhT99MnQiQ5E4P60nFxaH5l1VgMhtJ1W1WCRzpu-vM,152453
@@ -12644,7 +12654,7 @@ tccli/services/oceanus/v20190422/api.json,sha256=NSluDO9KFHpE9dVOMBFgJoxM8qT88Yu
12644
12654
  tccli/services/oceanus/v20190422/examples.json,sha256=qcKM-kj7kJVYjNKraB6sYf4GIBxKYqyFuxi8P1d6Fk4,48148
12645
12655
  tccli/services/ocr/__init__.py,sha256=1UdHN9VtB5qVwAn2FMefSi4BhMTJOjmFgYZT-zTEVBM,85
12646
12656
  tccli/services/ocr/ocr_client.py,sha256=L3ZoHryCN1ZyIY_0VswbE80oVIoY3XD7G7w4l6lWYSc,267687
12647
- tccli/services/ocr/v20181119/api.json,sha256=c-p8mnh3RQOGEuzPQoOXMaODzhQQ9C4S-7E6yROW3zk,750001
12657
+ tccli/services/ocr/v20181119/api.json,sha256=jcnpMzqs-82ART4AuAyzYlO9w2SOYJERTeODa_kO8B4,750090
12648
12658
  tccli/services/ocr/v20181119/examples.json,sha256=EW6ubIF1MEl21ph96zNpqh2dsR0fSuXzbh4K9BLW2tA,557448
12649
12659
  tccli/services/omics/__init__.py,sha256=2Uhk7Pv4ejuVCryMqNlAdn8xPMdHO2Hr4500KAZ0W-M,89
12650
12660
  tccli/services/omics/omics_client.py,sha256=D589nMlFbMtuOazg_7UEh3YYfTHvnDwjI-0JMjifdaY,67016
@@ -12677,9 +12687,9 @@ tccli/services/pts/pts_client.py,sha256=0jr8Z7uzPgwSvyYh9HfcOygeOLXvt7hXvfVKi0El
12677
12687
  tccli/services/pts/v20210728/api.json,sha256=dfDWhXxX86Yk1kVFmFstAT1RsQHLILd8bDUysiDRV7A,235342
12678
12688
  tccli/services/pts/v20210728/examples.json,sha256=tExQvvX2cjrAmaCKqD-2BoDbr6LSppKd5G_PfHh4BHM,86306
12679
12689
  tccli/services/rce/__init__.py,sha256=hA0_efK_b48bYi70kHNZugvJchdDwQNHYJofWYNzyKo,85
12680
- tccli/services/rce/rce_client.py,sha256=bmPA8pkk9ba5smv9WqLgQ5H-0swhkmxODM4mFLn9eOo,14863
12681
- tccli/services/rce/v20201103/api.json,sha256=VZVZfeOI6-I9AAWTouQd0tivlX2_TUqSM7FdkMFSXTY,36436
12682
- tccli/services/rce/v20201103/examples.json,sha256=PWr4uqsdMuvWtiXbSbq9UloBPwBIL1Ubp7pRsgNVmMU,8959
12690
+ tccli/services/rce/rce_client.py,sha256=tZPajW6Fdwt-FPQsazAtvzZr2WEi7-TCX7yWleHUPcY,11776
12691
+ tccli/services/rce/v20201103/api.json,sha256=dKjd_y0eQb2qrlDkCSroCdxatiQa1uoVzaSR-i-61oY,30499
12692
+ tccli/services/rce/v20201103/examples.json,sha256=nGPxqB5Pk-zZclJjIKCMINHfvK5ngZ3AUg5DOTuUPU4,1933
12683
12693
  tccli/services/redis/__init__.py,sha256=LzB8_p66HdHV32O1SzEXmHhzIe3zOiQGyLwhFG-9lec,89
12684
12694
  tccli/services/redis/redis_client.py,sha256=QR338SMAtqet8MsW3GeKWTUl7_tBlYYo7Ip4WZFYEOg,307154
12685
12695
  tccli/services/redis/v20180412/api.json,sha256=0UWv47nmi3ZsQb6D8ds7DJS5EwK8tfjO6As3nfdYM-I,389886
@@ -12842,7 +12852,7 @@ tccli/services/tdid/v20210519/api.json,sha256=Dm3nYEa2tmHePBuNsBQGToKDva4RFM8owA
12842
12852
  tccli/services/tdid/v20210519/examples.json,sha256=FjpsInkWmiZt2D9dpaKkNEgW3jbZPeyDvaehoxVLYo8,30480
12843
12853
  tccli/services/tdmq/__init__.py,sha256=hUEvNe0wVZ-2llVzccRfgnnLOuVpvOKGrjZgxqGezoE,87
12844
12854
  tccli/services/tdmq/tdmq_client.py,sha256=RHkGss-ND5mF79LFh_meOuCj2z-AVS45YtmSXQr13N4,409454
12845
- tccli/services/tdmq/v20200217/api.json,sha256=QVp1MLDcQcOHKb7hg8yim9ngVPYaXDVAf6G6qlUX0p0,612180
12855
+ tccli/services/tdmq/v20200217/api.json,sha256=2tuAjNUyBOcL62vduZkYilBaZEeED7dzHfkk7gxy5_0,613241
12846
12856
  tccli/services/tdmq/v20200217/examples.json,sha256=b_g5omFhyQgjRq81XN7inNePwB5y0On4snuh7eWbCGE,126629
12847
12857
  tccli/services/tds/__init__.py,sha256=9OVD7X4uTflzpnFGVXJ05cxikZAvBEsl-zr9t8WVdfQ,85
12848
12858
  tccli/services/tds/tds_client.py,sha256=BBhSxC0YpHqui48GQd1YRN209DeY7B5rVxQPFceLq04,17940
@@ -12904,7 +12914,7 @@ tccli/services/tiw/v20190919/api.json,sha256=c5Ecm2NbrEjsbrPN7jJ8R0AaE3QwZ3xnVLq
12904
12914
  tccli/services/tiw/v20190919/examples.json,sha256=WaA43CeC-HN0ZRBwn173qIu0us_J_4eabeHVUYtH_dc,53985
12905
12915
  tccli/services/tke/__init__.py,sha256=7R7ljco3cOJ2rceMbHur-sjpljFjutvZXAUnXQubtEM,85
12906
12916
  tccli/services/tke/tke_client.py,sha256=st9cbKf9DzCKmcBWnV2zGhiHXZVv_BT50V4c3Uc2E3Y,694970
12907
- tccli/services/tke/v20180525/api.json,sha256=ZC5DFDL7SsIHXF12KHOHewRDY4hFcXOdRkV07UWgzjc,848353
12917
+ tccli/services/tke/v20180525/api.json,sha256=sk6ypwgAc2Jp-nRm7WM0QbTtp-zurWkQoAPIa_v9fpU,848228
12908
12918
  tccli/services/tke/v20180525/examples.json,sha256=-tfdvTc67-glS3omNRf1YV0NrtMp39E1VZyF6T8dGV4,228001
12909
12919
  tccli/services/tke/v20220501/api.json,sha256=7orhHFi26tKEGMLIOl59pr8RFZGpi9lDf3e2zClTYLE,48877
12910
12920
  tccli/services/tke/v20220501/examples.json,sha256=YTToK1GczzV6DRHUlInkzNNotQ5OAlqDW8iNLalNp64,11578
@@ -12944,11 +12954,11 @@ tccli/services/trro/v20220325/api.json,sha256=1Nsj-eeqRgZIWOyRK3hFAJ_EVKbntbNgl6
12944
12954
  tccli/services/trro/v20220325/examples.json,sha256=yCyfGjK3YydF8fEGrURk5unyndVEqYokeB4gZOCR08Q,18659
12945
12955
  tccli/services/trtc/__init__.py,sha256=7xXIF66WdJHGVIhfHKFx2VYimlxZ_z3QOeJBUJ2P_MQ,87
12946
12956
  tccli/services/trtc/trtc_client.py,sha256=37kFvYl34t2VjduZVXoonDliYfHol2SzRv6tsXrpIxs,148392
12947
- tccli/services/trtc/v20190722/api.json,sha256=GTU3eTjLPVERd8yXvzpWTYvA0CrGjB5v7_qSyVKbMpQ,281498
12957
+ tccli/services/trtc/v20190722/api.json,sha256=WIpiiDkSVEvemW19pretYCMp5pVzvAoM-st0KT40w7Y,281412
12948
12958
  tccli/services/trtc/v20190722/examples.json,sha256=wEjZstR8-DehZ2NW55H0StPm1doppGxZUPLckLIRuV4,98097
12949
12959
  tccli/services/tse/__init__.py,sha256=3Y4ZA_IFX8df4-ir1I9p0u4ksAywRrtd2CAvJ5yKyz0,85
12950
12960
  tccli/services/tse/tse_client.py,sha256=dB6fIYbGz01ZbcK6tPBI3lRYavc6fgVZfzKNqIczQ0s,354664
12951
- tccli/services/tse/v20201207/api.json,sha256=0mlPBL875akq2EpoV-3edNYh0jou10yLDF860nPob6M,525169
12961
+ tccli/services/tse/v20201207/api.json,sha256=we5DxQ-pH6nYFVWLfrRQ7TbtgcvturI8g5hEkUs8aMQ,525466
12952
12962
  tccli/services/tse/v20201207/examples.json,sha256=JM058O1rixNw-4KUUOHx4XCB8E6dIZ1KT6Zi1-mYoy8,118890
12953
12963
  tccli/services/tsf/__init__.py,sha256=hvORrthG6YRLLU39wB0CxW441UZHSkET1ZA8mIpSq5Y,85
12954
12964
  tccli/services/tsf/tsf_client.py,sha256=9H_V78wa_UYpseMvjjOpodQhkAoe8Rbdsi8zKJhKU64,683210
@@ -12993,9 +13003,9 @@ tccli/services/vrs/vrs_client.py,sha256=GoEtSeQJUcGDUenhtMEXSM0UvCGBZe-hx068V6TA
12993
13003
  tccli/services/vrs/v20200824/api.json,sha256=toHb50Fe4RFoooOmYa_Jw8GN15HpOqDZn7eLZ2xwSpc,26863
12994
13004
  tccli/services/vrs/v20200824/examples.json,sha256=zNgua2_MxYfCDKMGBoVEdhrhsLnkBrszj9mh8UmS6hY,5824
12995
13005
  tccli/services/waf/__init__.py,sha256=CQIYSctAXRbX8x5xidAj7CBzOVIdMOZJQ0e6ENff3HU,85
12996
- tccli/services/waf/waf_client.py,sha256=OwSJs2yKRcpIOu1exM4TIW2dRY9AIqCunTwWvmLQ40E,417353
12997
- tccli/services/waf/v20180125/api.json,sha256=hRq5zlkwecRIOsueMSLbDFZJVApmTMBR_Px4g4649kY,588512
12998
- tccli/services/waf/v20180125/examples.json,sha256=9gcGaaV6h8OHAU4w3DZQU9HJGBlh9IL49KwPI8Kmxmg,156500
13006
+ tccli/services/waf/waf_client.py,sha256=P0GsWPje1iHkHn9N0ilSuym1zu8HhnMwWVA9tID-Xx4,429771
13007
+ tccli/services/waf/v20180125/api.json,sha256=cT1L5_QABp3KHf2eCA28g_16imgR6gYvwFTavj1IC8A,601274
13008
+ tccli/services/waf/v20180125/examples.json,sha256=gLEYdAFKI8H-kx0F7TXItMMl0GaGgZgxBdkY6L4yH-0,159335
12999
13009
  tccli/services/wav/__init__.py,sha256=iOdPQbxYh0cdKcDo0kRWmQMiCl38owcMur1PRm3R6R8,85
13000
13010
  tccli/services/wav/wav_client.py,sha256=KfvA5VHhN0HlAa70HjkAs8KkC_GfMzTM4vjlDWXIxVQ,86224
13001
13011
  tccli/services/wav/v20210129/api.json,sha256=GKTYbYztrP-UP5qTQ8_N6U0bcIBt_1wlxpgVDNEFWXI,184058
@@ -13030,8 +13040,8 @@ tccli/services/yunsou/v20180504/api.json,sha256=2808fil5p3pTEJ3SqXEEq7eSrASZOiv8
13030
13040
  tccli/services/yunsou/v20180504/examples.json,sha256=Jg4WuqS_Wxl7eTBMbzjem65FuUZQi3qq3xtlBNFZlTU,11870
13031
13041
  tccli/services/yunsou/v20191115/api.json,sha256=r_p7c7fMNylQVDpSN0CkUB4Cx1nYW1lI3BM_Zi50FNs,15932
13032
13042
  tccli/services/yunsou/v20191115/examples.json,sha256=vN5MzexHVPMckm4MbnXNiOe3KKiVchvf4_uLpjOskuk,3983
13033
- tccli-3.0.1102.1.dist-info/METADATA,sha256=qgDvLYEiUabzdEFnbAHt3QN3IRyQYWcWZeKaTpI_Bpw,16172
13034
- tccli-3.0.1102.1.dist-info/WHEEL,sha256=HyPWovjK_wfsxZqVnw7Bu5rgKxNh3Nm__lHm0ALDcb4,101
13035
- tccli-3.0.1102.1.dist-info/entry_points.txt,sha256=9ZzsXxi7Xj3ZneT7VxRVJpFvnmdEOeysh999_0gWVvo,85
13036
- tccli-3.0.1102.1.dist-info/license_files/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
13037
- tccli-3.0.1102.1.dist-info/RECORD,,
13043
+ tccli-3.0.1103.1.dist-info/METADATA,sha256=JWklxNQP75lvBd8d-IhBy1w4lTbstnnn1rMJGsnCCgE,16172
13044
+ tccli-3.0.1103.1.dist-info/WHEEL,sha256=HyPWovjK_wfsxZqVnw7Bu5rgKxNh3Nm__lHm0ALDcb4,101
13045
+ tccli-3.0.1103.1.dist-info/entry_points.txt,sha256=9ZzsXxi7Xj3ZneT7VxRVJpFvnmdEOeysh999_0gWVvo,85
13046
+ tccli-3.0.1103.1.dist-info/license_files/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
13047
+ tccli-3.0.1103.1.dist-info/RECORD,,