tccli 3.0.859.1__py2.py3-none-any.whl → 3.0.861.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.
@@ -210,6 +210,22 @@
210
210
  "title": "Waf IP封堵状态查询"
211
211
  }
212
212
  ],
213
+ "DescribePeakPoints": [
214
+ {
215
+ "document": "",
216
+ "input": "POST / HTTP/1.1\nHost: waf.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribePeakPoints\n<公共请求参数>\n\n{\n \"FromTime\": \"2021-07-21 00:00:00\",\n \"ToTime\": \"2021-07-21 23:59:59\"\n}",
217
+ "output": "{\n \"Response\": {\n \"Points\": [\n {\n \"Time\": 1626908400,\n \"Access\": 0,\n \"BotAccess\": 0,\n \"Attack\": 0,\n \"Cc\": 0,\n \"Down\": 0,\n \"Up\": 0\n },\n {\n \"Time\": 1626908460,\n \"Access\": 0,\n \"BotAccess\": 0,\n \"Attack\": 0,\n \"Cc\": 0,\n \"Down\": 0,\n \"Up\": 0\n },\n {\n \"Time\": 1626908520,\n \"Access\": 0,\n \"BotAccess\": 0,\n \"Attack\": 0,\n \"Cc\": 0,\n \"Down\": 0,\n \"Up\": 0\n },\n {\n \"Time\": 1626908580,\n \"Access\": 0,\n \"BotAccess\": 0,\n \"Attack\": 0,\n \"Cc\": 0,\n \"Down\": 0,\n \"Up\": 0\n },\n {\n \"Time\": 1626908640,\n \"Access\": 0,\n \"BotAccess\": 0,\n \"Attack\": 0,\n \"Cc\": 0,\n \"Down\": 0,\n \"Up\": 0\n },\n {\n \"Time\": 1626908700,\n \"Access\": 0,\n \"BotAccess\": 0,\n \"Attack\": 0,\n \"Cc\": 0,\n \"Down\": 0,\n \"Up\": 0\n },\n {\n \"Time\": 1626908760,\n \"Access\": 0,\n \"BotAccess\": 0,\n \"Attack\": 0,\n \"Cc\": 0,\n \"Down\": 0,\n \"Up\": 0\n },\n {\n \"Time\": 1626908820,\n \"Access\": 0,\n \"BotAccess\": 0,\n \"Attack\": 0,\n \"Cc\": 0,\n \"Down\": 0,\n \"Up\": 0\n },\n {\n \"Time\": 1626908880,\n \"Access\": 0,\n \"BotAccess\": 0,\n \"Attack\": 0,\n \"Cc\": 0,\n \"Down\": 0,\n \"Up\": 0\n },\n {\n \"Time\": 1626908940,\n \"Access\": 0,\n \"BotAccess\": 0,\n \"Attack\": 0,\n \"Cc\": 0,\n \"Down\": 0,\n \"Up\": 0\n },\n {\n \"Time\": 1626909000,\n \"Access\": 0,\n \"BotAccess\": 0,\n \"Attack\": 0,\n \"Cc\": 0,\n \"Down\": 0,\n \"Up\": 0\n }\n ],\n \"RequestId\": \"fuqian-test\"\n }\n}",
218
+ "title": "查询业务和攻击概要趋势"
219
+ }
220
+ ],
221
+ "DescribePeakValue": [
222
+ {
223
+ "document": "获取业务和攻击概览峰值",
224
+ "input": "https://waf.tencentcloudapi.com/?Action=DescribePeakValue\n&FromTime=2019-12-30 00:00:00\n&ToTime=2019-12-30 23:59:59\n&Domain=abc.qcloudwaf.com\n&<公共请求参数>",
225
+ "output": "{\n \"Response\": {\n \"Access\": 0,\n \"Up\": 0,\n \"Down\": 0,\n \"Attack\": 0,\n \"Cc\": 0,\n \"RequestId\": \"xxxx-xxxx-xxxxx\"\n }\n}",
226
+ "title": "获取业务和攻击概览峰值"
227
+ }
228
+ ],
213
229
  "DescribePolicyStatus": [
214
230
  {
215
231
  "document": "",
@@ -1005,7 +1005,7 @@ def doDescribeAccessFastAnalysis(args, parsed_globals):
1005
1005
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
1006
1006
 
1007
1007
 
1008
- def doModifyCustomRuleStatus(args, parsed_globals):
1008
+ def doDescribePeakPoints(args, parsed_globals):
1009
1009
  g_param = parse_global_arg(parsed_globals)
1010
1010
 
1011
1011
  if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
@@ -1034,11 +1034,11 @@ def doModifyCustomRuleStatus(args, parsed_globals):
1034
1034
  client = mod.WafClient(cred, g_param[OptionsDefine.Region], profile)
1035
1035
  client._sdkVersion += ("_CLI_" + __version__)
1036
1036
  models = MODELS_MAP[g_param[OptionsDefine.Version]]
1037
- model = models.ModifyCustomRuleStatusRequest()
1037
+ model = models.DescribePeakPointsRequest()
1038
1038
  model.from_json_string(json.dumps(args))
1039
1039
  start_time = time.time()
1040
1040
  while True:
1041
- rsp = client.ModifyCustomRuleStatus(model)
1041
+ rsp = client.DescribePeakPoints(model)
1042
1042
  result = rsp.to_json_string()
1043
1043
  try:
1044
1044
  json_obj = json.loads(result)
@@ -1317,7 +1317,7 @@ def doDescribeIpHitItems(args, parsed_globals):
1317
1317
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
1318
1318
 
1319
1319
 
1320
- def doSwitchDomainRules(args, parsed_globals):
1320
+ def doModifyCustomRuleStatus(args, parsed_globals):
1321
1321
  g_param = parse_global_arg(parsed_globals)
1322
1322
 
1323
1323
  if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
@@ -1346,11 +1346,63 @@ def doSwitchDomainRules(args, parsed_globals):
1346
1346
  client = mod.WafClient(cred, g_param[OptionsDefine.Region], profile)
1347
1347
  client._sdkVersion += ("_CLI_" + __version__)
1348
1348
  models = MODELS_MAP[g_param[OptionsDefine.Version]]
1349
- model = models.SwitchDomainRulesRequest()
1349
+ model = models.ModifyCustomRuleStatusRequest()
1350
1350
  model.from_json_string(json.dumps(args))
1351
1351
  start_time = time.time()
1352
1352
  while True:
1353
- rsp = client.SwitchDomainRules(model)
1353
+ rsp = client.ModifyCustomRuleStatus(model)
1354
+ result = rsp.to_json_string()
1355
+ try:
1356
+ json_obj = json.loads(result)
1357
+ except TypeError as e:
1358
+ json_obj = json.loads(result.decode('utf-8')) # python3.3
1359
+ if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
1360
+ break
1361
+ cur_time = time.time()
1362
+ if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
1363
+ raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
1364
+ (g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
1365
+ search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
1366
+ else:
1367
+ print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
1368
+ time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
1369
+ FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
1370
+
1371
+
1372
+ def doDescribePeakValue(args, parsed_globals):
1373
+ g_param = parse_global_arg(parsed_globals)
1374
+
1375
+ if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
1376
+ cred = credential.CVMRoleCredential()
1377
+ elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
1378
+ cred = credential.STSAssumeRoleCredential(
1379
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
1380
+ g_param[OptionsDefine.RoleSessionName.replace('-', '_')]
1381
+ )
1382
+ elif os.getenv(OptionsDefine.ENV_TKE_REGION) and os.getenv(OptionsDefine.ENV_TKE_PROVIDER_ID) and os.getenv(OptionsDefine.ENV_TKE_IDENTITY_TOKEN_FILE) and os.getenv(OptionsDefine.ENV_TKE_ROLE_ARN):
1383
+ cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
1384
+ else:
1385
+ cred = credential.Credential(
1386
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
1387
+ )
1388
+ http_profile = HttpProfile(
1389
+ reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
1390
+ reqMethod="POST",
1391
+ endpoint=g_param[OptionsDefine.Endpoint],
1392
+ proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
1393
+ )
1394
+ profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
1395
+ if g_param[OptionsDefine.Language]:
1396
+ profile.language = g_param[OptionsDefine.Language]
1397
+ mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
1398
+ client = mod.WafClient(cred, g_param[OptionsDefine.Region], profile)
1399
+ client._sdkVersion += ("_CLI_" + __version__)
1400
+ models = MODELS_MAP[g_param[OptionsDefine.Version]]
1401
+ model = models.DescribePeakValueRequest()
1402
+ model.from_json_string(json.dumps(args))
1403
+ start_time = time.time()
1404
+ while True:
1405
+ rsp = client.DescribePeakValue(model)
1354
1406
  result = rsp.to_json_string()
1355
1407
  try:
1356
1408
  json_obj = json.loads(result)
@@ -2201,6 +2253,58 @@ def doAddDomainWhiteRule(args, parsed_globals):
2201
2253
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
2202
2254
 
2203
2255
 
2256
+ def doSwitchDomainRules(args, parsed_globals):
2257
+ g_param = parse_global_arg(parsed_globals)
2258
+
2259
+ if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
2260
+ cred = credential.CVMRoleCredential()
2261
+ elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
2262
+ cred = credential.STSAssumeRoleCredential(
2263
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
2264
+ g_param[OptionsDefine.RoleSessionName.replace('-', '_')]
2265
+ )
2266
+ elif os.getenv(OptionsDefine.ENV_TKE_REGION) and os.getenv(OptionsDefine.ENV_TKE_PROVIDER_ID) and os.getenv(OptionsDefine.ENV_TKE_IDENTITY_TOKEN_FILE) and os.getenv(OptionsDefine.ENV_TKE_ROLE_ARN):
2267
+ cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
2268
+ else:
2269
+ cred = credential.Credential(
2270
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
2271
+ )
2272
+ http_profile = HttpProfile(
2273
+ reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
2274
+ reqMethod="POST",
2275
+ endpoint=g_param[OptionsDefine.Endpoint],
2276
+ proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
2277
+ )
2278
+ profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
2279
+ if g_param[OptionsDefine.Language]:
2280
+ profile.language = g_param[OptionsDefine.Language]
2281
+ mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
2282
+ client = mod.WafClient(cred, g_param[OptionsDefine.Region], profile)
2283
+ client._sdkVersion += ("_CLI_" + __version__)
2284
+ models = MODELS_MAP[g_param[OptionsDefine.Version]]
2285
+ model = models.SwitchDomainRulesRequest()
2286
+ model.from_json_string(json.dumps(args))
2287
+ start_time = time.time()
2288
+ while True:
2289
+ rsp = client.SwitchDomainRules(model)
2290
+ result = rsp.to_json_string()
2291
+ try:
2292
+ json_obj = json.loads(result)
2293
+ except TypeError as e:
2294
+ json_obj = json.loads(result.decode('utf-8')) # python3.3
2295
+ if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
2296
+ break
2297
+ cur_time = time.time()
2298
+ if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
2299
+ raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
2300
+ (g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
2301
+ search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
2302
+ else:
2303
+ print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
2304
+ time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
2305
+ FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
2306
+
2307
+
2204
2308
  def doDescribeDomainWhiteRules(args, parsed_globals):
2205
2309
  g_param = parse_global_arg(parsed_globals)
2206
2310
 
@@ -2387,13 +2491,14 @@ ACTION_MAP = {
2387
2491
  "DescribeUserCdcClbWafRegions": doDescribeUserCdcClbWafRegions,
2388
2492
  "ModifyDomainWhiteRule": doModifyDomainWhiteRule,
2389
2493
  "DescribeAccessFastAnalysis": doDescribeAccessFastAnalysis,
2390
- "ModifyCustomRuleStatus": doModifyCustomRuleStatus,
2494
+ "DescribePeakPoints": doDescribePeakPoints,
2391
2495
  "DescribeWafAutoDenyStatus": doDescribeWafAutoDenyStatus,
2392
2496
  "GetAttackDownloadRecords": doGetAttackDownloadRecords,
2393
2497
  "AddCustomRule": doAddCustomRule,
2394
2498
  "DescribeIpAccessControl": doDescribeIpAccessControl,
2395
2499
  "DescribeIpHitItems": doDescribeIpHitItems,
2396
- "SwitchDomainRules": doSwitchDomainRules,
2500
+ "ModifyCustomRuleStatus": doModifyCustomRuleStatus,
2501
+ "DescribePeakValue": doDescribePeakValue,
2397
2502
  "ModifyWafThreatenIntelligence": doModifyWafThreatenIntelligence,
2398
2503
  "DescribeRuleLimit": doDescribeRuleLimit,
2399
2504
  "ModifyWafAutoDenyRules": doModifyWafAutoDenyRules,
@@ -2410,6 +2515,7 @@ ACTION_MAP = {
2410
2515
  "DescribePolicyStatus": doDescribePolicyStatus,
2411
2516
  "PostAttackDownloadTask": doPostAttackDownloadTask,
2412
2517
  "AddDomainWhiteRule": doAddDomainWhiteRule,
2518
+ "SwitchDomainRules": doSwitchDomainRules,
2413
2519
  "DescribeDomainWhiteRules": doDescribeDomainWhiteRules,
2414
2520
  "DescribeCustomWhiteRule": doDescribeCustomWhiteRule,
2415
2521
  "UpsertIpAccessControl": doUpsertIpAccessControl,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tccli
3
- Version: 3.0.859.1
3
+ Version: 3.0.861.1
4
4
  Summary: Universal Command Line Environment for Tencent Cloud
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-cli.git
6
6
  Author: Tencent Cloud
@@ -21,7 +21,7 @@ Classifier: Programming Language :: Python :: 3.3
21
21
  Classifier: Programming Language :: Python :: 3.4
22
22
  Classifier: Programming Language :: Python :: 3.5
23
23
  Classifier: Programming Language :: Python :: 3.6
24
- Requires-Dist: tencentcloud-sdk-python (>=3.0.859)
24
+ Requires-Dist: tencentcloud-sdk-python (>=3.0.861)
25
25
  Requires-Dist: jmespath (==0.10.0)
26
26
  Requires-Dist: six (==1.16.0)
27
27
 
@@ -1,4 +1,4 @@
1
- tccli/__init__.py,sha256=sr_cPcUUzi7xmz-Nn7NDTsJCPR0vyLEp2zjEXuqX3og,26
1
+ tccli/__init__.py,sha256=YxcjRBOfEBx-EnWYKxmhNvNL3VgVGW7IdcZ5uo-ZOFE,26
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
@@ -211,7 +211,7 @@ tccli/services/cdc/v20201214/api.json,sha256=fELKqQHoLW90SpkjJZ4PT9RhMmupRJ_uo3C
211
211
  tccli/services/cdc/v20201214/examples.json,sha256=Btzc2VKMQ1452MPAyX-8yMur-6o-YYPAbkgobccCjNQ,21941
212
212
  tccli/services/cdn/__init__.py,sha256=Agk_ooNm4XDpmFiuEBddbgRoBheED_39r3sMiWylgG0,85
213
213
  tccli/services/cdn/cdn_client.py,sha256=0IygdGuJhpEQp54qHs6t-rDSRwUnU8bJTzqaCMkyWYA,248567
214
- tccli/services/cdn/v20180606/api.json,sha256=dddfehy6e-Z-uWip1BWddyOp2HB6DuXyNFSLMR4r1Uc,584941
214
+ tccli/services/cdn/v20180606/api.json,sha256=U20cLmoatX-AU8aEfD9eIMf0hUYmS9jt-q05gbFXXco,584947
215
215
  tccli/services/cdn/v20180606/examples.json,sha256=R4jNUEJ_fFLwzQHY9UuIazfAdw29wAOJP_2bPQfCyLw,88508
216
216
  tccli/services/cds/__init__.py,sha256=ChlmM6HfgQsURTBA8nwQoJC5FZaAk9LqXvotfJGK2h8,85
217
217
  tccli/services/cds/cds_client.py,sha256=MQroSm-PPrDbgbGCW5sakzGBNqqMoLRoMBQQAaW2pvA,23896
@@ -226,9 +226,9 @@ tccli/services/cfg/cfg_client.py,sha256=6TywqKVcoxlWPCWKJZKbrkFWe2F7I22LA79g-QMt
226
226
  tccli/services/cfg/v20210820/api.json,sha256=bDqIBuWCMytgs9exF4XA6ncw6LP56JPRUKq8eakuLfo,69908
227
227
  tccli/services/cfg/v20210820/examples.json,sha256=AfXQyPT8N83wDyRxQ2K2qobFGW5Oo2S8eryoHoArc_k,19483
228
228
  tccli/services/cfs/__init__.py,sha256=VecrEhD_8cXfLCyCp9tLj9wbK9uN67huo5TyZPczt3w,85
229
- tccli/services/cfs/cfs_client.py,sha256=sVq7IqPVgGdP16Kd-RQAQi3209F1o-JMBk-OTIeMRIA,112337
230
- tccli/services/cfs/v20190719/api.json,sha256=oeAA66oqdw57h8fuGTRA-pPqGPw3VRxd1mIhjS_2058,109206
231
- tccli/services/cfs/v20190719/examples.json,sha256=gIzs4a10WwEu7CYvP-sB-avu_bNgI-HsFWu-loaM_nM,26441
229
+ tccli/services/cfs/cfs_client.py,sha256=edI91bZn7eSLCxvrsjqnGbhpdmRkDWn3rs2x0duA590,127582
230
+ tccli/services/cfs/v20190719/api.json,sha256=B4iCsM0uVgIjr-rlWMF1kmN6B1rb5qU07-ok32Cc5H8,129666
231
+ tccli/services/cfs/v20190719/examples.json,sha256=mMUWgI8fwg3UvYy2oPq0ef0B3cl0Qgcv6aMK0pbp0vE,30879
232
232
  tccli/services/cfw/__init__.py,sha256=2hNwXcNofHJCalk9HHEbOcgYz6XKuYmZk_iBroa5YsY,85
233
233
  tccli/services/cfw/cfw_client.py,sha256=fitAM-Jy-EuNV4SkadNlgt2VJuNR7CPq0O4VOxeGizc,222706
234
234
  tccli/services/cfw/v20190904/api.json,sha256=S8GrjW4x2cWJSfg6757EupipnCTWKUJWCcHiryflhqk,256681
@@ -307,7 +307,7 @@ tccli/services/cvm/v20170312/api.json,sha256=D-S15ApF7aUvJ_94DQ0Ukf4IRwseUhDVJzx
307
307
  tccli/services/cvm/v20170312/examples.json,sha256=d00bxv99Epluwm8I0_QFQ5JpxcFlp1yS8L98I6sJc7k,124113
308
308
  tccli/services/cwp/__init__.py,sha256=VzfiK7QzpNmTiO4zrmILRFSkKMJka8elLwzYLTjUPFw,85
309
309
  tccli/services/cwp/cwp_client.py,sha256=A6HeWQijvgNkXSCqAvayop5UZn27vlrmvA4CsUgQONs,839400
310
- tccli/services/cwp/v20180228/api.json,sha256=rkQqApCvJptUg8dyMMPB1c9d6itG6f6DdryriAZMjXg,1046877
310
+ tccli/services/cwp/v20180228/api.json,sha256=_iSn9U3Pw8FNZj7Wd9tLvNuKj8eg720r_-J61KPcawM,1046915
311
311
  tccli/services/cwp/v20180228/examples.json,sha256=6jKViSt8RQqAoy_OtQmg0YsVKVGDMn740IE1e7quQVk,285230
312
312
  tccli/services/cws/__init__.py,sha256=sBc-PJIZWjB5UHi4aHmxAAC9ahEHw5zyRGdUsH1fEoA,85
313
313
  tccli/services/cws/cws_client.py,sha256=KkwMmRa9jY3knZNx8nbnvz3aRpsYFGCD5-8obVuGaqQ,63123
@@ -412,9 +412,9 @@ tccli/services/es/es_client.py,sha256=n2J6pSE0u-ROFYTxQ0_9SU9N7QlxDlhExFYBc0IseH
412
412
  tccli/services/es/v20180416/api.json,sha256=ZkllEw0NJrhJXqGe7me5_ebKQqelyVy9erLcxn-4PZA,204775
413
413
  tccli/services/es/v20180416/examples.json,sha256=8Ycu-y_0R2cXm2U6PlimB4IUSb2zIF1FWv9mta8r4a4,42643
414
414
  tccli/services/ess/__init__.py,sha256=heBHzUKDuNxQ68yNutgyA8stCndyFWqYJqiQFozTiDs,85
415
- tccli/services/ess/ess_client.py,sha256=-oOjI2Pz0C1oSibyhNwXQAeWATuERw7qhuwEmjsdYyc,136944
416
- tccli/services/ess/v20201111/api.json,sha256=DbRaKZ6T6Aw31ZOlyibVrzFkucXmUavJKYVIPdXoUCo,221454
417
- tccli/services/ess/v20201111/examples.json,sha256=6gPLgmXer--kdTdU2_2QFVvkXxBiZYDOiBvPYQugmgA,77962
415
+ tccli/services/ess/ess_client.py,sha256=soROj4ZcfcY0EM7rcX01EsjxiQMYx0JEXrKX9yAbDig,143202
416
+ tccli/services/ess/v20201111/api.json,sha256=1TmQ4sVhT-hma4E2mCcmE_cVYM3k446tCV3x8iH5qqw,225743
417
+ tccli/services/ess/v20201111/examples.json,sha256=1qvqpMH6F3Sx3M0pjBx89SMIDwS4W1ahG6UQsF6KJjw,80584
418
418
  tccli/services/essbasic/__init__.py,sha256=Uh5kuYtJvJ4F1S2w-19_B6a_JMF1ubh8Se-7p5LA0PE,95
419
419
  tccli/services/essbasic/essbasic_client.py,sha256=HlQTj3-2sc-gIuoJLBmBTbUoNiw0xo2J4YL2EmgqIgM,296583
420
420
  tccli/services/essbasic/v20201222/api.json,sha256=HEcYY208pKQB5nFuzhgBrZxbFH5EY9tedE5bBuAqjRY,194941
@@ -429,7 +429,7 @@ tccli/services/facefusion/v20220927/api.json,sha256=XX_aBTgD_b2-F8rZAiu08wNezMVO
429
429
  tccli/services/facefusion/v20220927/examples.json,sha256=GGB1rYigRbh3spugjccng-EcXX0XJb2yMIUXR7IVUS0,5114
430
430
  tccli/services/faceid/__init__.py,sha256=zbcAvv37wx7NH6hsSFPSCqgR2ih1UiQOdqNfmitdeVY,91
431
431
  tccli/services/faceid/faceid_client.py,sha256=SLLGqh9BYWVK-wUzfwHH3P7QUqvGNG-43Y42_BDwF7o,105894
432
- tccli/services/faceid/v20180301/api.json,sha256=seg1Kjf3uvIcLRZ8GeMBHpxTXC-HIFqotzwNLBsf2qY,163852
432
+ tccli/services/faceid/v20180301/api.json,sha256=HzBUlfKrZ-prRu4eBHGFFXmhtQvXV0sZy4X8TfPgV2c,165153
433
433
  tccli/services/faceid/v20180301/examples.json,sha256=lEPAlB3JdFgTlKbtbKcQlGJ6miF7-K6r6kMrS7Tw0Ko,33906
434
434
  tccli/services/fmu/__init__.py,sha256=uYgLsNe53oF1T-qH3hFFAdGC7d9SKthtORQ7dLiPfx8,85
435
435
  tccli/services/fmu/fmu_client.py,sha256=0dMahf-zOySeycoroO1daH9ADXDrJ5kv2Dg5sGCAB2k,35627
@@ -504,9 +504,9 @@ tccli/services/iir/v20200417/examples.json,sha256=zXKIItNi68s0CuXszpMPzC_0-i_G7y
504
504
  tccli/services/ims/__init__.py,sha256=sO7sILwkAJxSi_iUxr_upneXgs5V7jyqCExDuLT4irA,85
505
505
  tccli/services/ims/ims_client.py,sha256=NyqEWL2OQzkYODg6Xp_G9KBbc-c27oFVmkQECLsggiQ,11761
506
506
  tccli/services/ims/v20200713/api.json,sha256=PkfbTMIDO_Qg0IoNBSzsUXYiy3XMrlZ4Sx4hiVUvoiA,32674
507
- tccli/services/ims/v20200713/examples.json,sha256=TZm7SBJQcxhwk8fdDv4KT1yzoaoc6L7izGur2dnm1SM,3858
507
+ tccli/services/ims/v20200713/examples.json,sha256=JnIKXbJoEcUeHFMMQ27C0Z_1LcF3WPuOdYO8r1Ja5mo,3921
508
508
  tccli/services/ims/v20201229/api.json,sha256=uzmWv_n-g_rn33bI4LLS6Cw4fmO1OCcuXq9KozIsg8I,56998
509
- tccli/services/ims/v20201229/examples.json,sha256=9pOVz6PeQ8eoFe3W49i1EHKKIXyhnS8R4hpB5AQAtJI,3295
509
+ tccli/services/ims/v20201229/examples.json,sha256=i_sVdTM-9bLi0-LpZJHvcB4DU9fCvR-F5XAnBlPR-F8,3409
510
510
  tccli/services/intlpartnersmgt/__init__.py,sha256=E8B98vxps9z6xicQ7HBfjtRPNewdCb9ym-oSYM0a_5c,109
511
511
  tccli/services/intlpartnersmgt/intlpartnersmgt_client.py,sha256=r37h0TWnXJtBIIxp7hXfPRKBLPR7t1sVKzbhsNz06VU,39217
512
512
  tccli/services/iot/__init__.py,sha256=VWHJfpa2sPAtd3HH8b9emPlGCada72BQ9Q2rg5KxHno,85
@@ -623,7 +623,7 @@ tccli/services/mrs/v20200910/api.json,sha256=Ss5CkkN_uez6Elf4KlopHRYetWujqrmp2L_
623
623
  tccli/services/mrs/v20200910/examples.json,sha256=K-yq9QsXCAOFSGHtG7cAW2BoN4e72XRP-fUFHoy8VG8,140874
624
624
  tccli/services/ms/__init__.py,sha256=JqihrSVQHDfhGPtvf-gDtLEmfnD6ihFXsQbLVLPw5RI,83
625
625
  tccli/services/ms/ms_client.py,sha256=HkzKwEcADSgzgKBmDeVxM6pHnScNhFdrD7jSWivHh8M,57496
626
- tccli/services/ms/v20180408/api.json,sha256=k7EE0yawicrxs7XFsIvQpnWGL_0OdBLMjvZvAKhudNU,90358
626
+ tccli/services/ms/v20180408/api.json,sha256=Hqqi37_dDG4m8UsqfAjhFo9D9_vbuBqW5849zSfvXOE,90534
627
627
  tccli/services/ms/v20180408/examples.json,sha256=KeFp_cFOm72V7E_sjPnqiyvzhd5aMXLDE2k1DpptUDc,24436
628
628
  tccli/services/msp/__init__.py,sha256=0k_5yz4kYV72TCSBHRT9p4FBqtVxKOiOrNCR-QXcjEA,85
629
629
  tccli/services/msp/msp_client.py,sha256=3XNCDsWR9b-3e5cG2ZqQ9kkO9oF7R2Hj1Y0s8oMDhMA,26880
@@ -700,9 +700,9 @@ tccli/services/rp/rp_client.py,sha256=VNo8_lAVQFTyzWHNlriCQCGTBmpC8IAmROCi4-b7Fw
700
700
  tccli/services/rp/v20200224/api.json,sha256=nfQMujjNk3f8NaBRfB1gLkmPEZtvlkboH5283h-NqpE,11103
701
701
  tccli/services/rp/v20200224/examples.json,sha256=QaAcie5M2OtqjfF8P-exCfQuWn5ICVMMwosEqrzt-Qs,717
702
702
  tccli/services/rum/__init__.py,sha256=oXPEbf66MAqanykJb83RnJ91vuz5r2Pw0_FavDgj_vc,85
703
- tccli/services/rum/rum_client.py,sha256=TulvIN9pzCYOHwNJJ62oaQnpCX_xCE5Xp4JgGraGIqA,191401
704
- tccli/services/rum/v20210622/api.json,sha256=eOCMfXE27aLjPo6_e18ZVTjGmkukkCT7FkOX2ziIaz8,211150
705
- tccli/services/rum/v20210622/examples.json,sha256=uszCjU6Q8KQwmjPpfbMbE_bxUEHs8zeSadxzBSkNP1g,46588
703
+ tccli/services/rum/rum_client.py,sha256=_CU3UCW2qZGMjj3DCejR7UJEkoA22YoArzOjFLCJ4Tw,203742
704
+ tccli/services/rum/v20210622/api.json,sha256=YrFwOOrqzaZSZpLaVSeMGjn3onKEa3qoWLplNHv3Dq4,225602
705
+ tccli/services/rum/v20210622/examples.json,sha256=NF_tmwMFnDco1CFp_edYur59MxizFXXYSJiZOZ5nPgE,57662
706
706
  tccli/services/scf/__init__.py,sha256=3faZHXJgI7IwnqjGNKVPOIQ6ZW08wo8kgTLRpok8ZMc,85
707
707
  tccli/services/scf/scf_client.py,sha256=xrpQy7HI0ZNzDgNBECMGeGjnF0JczzgxheJ7Q931kc4,142277
708
708
  tccli/services/scf/v20180416/api.json,sha256=seCTz0BiOUFlVVNOlruQh556nvwKPWOmZyk-qSJmr6c,205635
@@ -924,9 +924,9 @@ tccli/services/trdp/trdp_client.py,sha256=zmMaNBmQ6rMvoyErwZAOPgHTGQXGCfUf4tDlT_
924
924
  tccli/services/trdp/v20220726/api.json,sha256=05_s4N1rvc2LerAfZqPx0YWQI5zp4vHVgq6xC6TKVz0,28414
925
925
  tccli/services/trdp/v20220726/examples.json,sha256=P0dCwSSJOPSy3XZ8_Ueb8WsWRGNT-C02xSxpL0QbsxA,2955
926
926
  tccli/services/trp/__init__.py,sha256=T-R-mOKU-Yw3iE6Me6WIUj0jVKRMD9-sTiAfkNGZvPo,85
927
- tccli/services/trp/trp_client.py,sha256=ty8d6xJlQuk3UB-2Y_j3jikviGcC_9BzaNyDWqdYeMU,139173
928
- tccli/services/trp/v20210515/api.json,sha256=AZ_BJDDy5MjsoDTG3UWMLs7nxALYf0qbPCWaw9V--6g,157696
929
- tccli/services/trp/v20210515/examples.json,sha256=whaMFn0yhCDKKUhH3vJTzX-i--kgZEKKrDFjY_1VatQ,33885
927
+ tccli/services/trp/trp_client.py,sha256=cUuAwTwGD3e-j3lasGP8vD0MSQHa3Lo0KHXpv-ukQI4,151379
928
+ tccli/services/trp/v20210515/api.json,sha256=bYMwT0I1agG5MyODdbcsA14j61JVT6eotWXhTQHOqXY,165799
929
+ tccli/services/trp/v20210515/examples.json,sha256=zsV5u7dRpHdoZbezuuQYVadFHmgNXVO4aqIUFGOYOX4,37811
930
930
  tccli/services/trro/__init__.py,sha256=XhKF8MouhlSO5dKFVj8HOszEhQHW81KHh7uk959DhE4,87
931
931
  tccli/services/trro/trro_client.py,sha256=l7lBZeNROC0jzNG2Tuo2kVW6q3xlKfMF8cF7ObOHmJU,75369
932
932
  tccli/services/trro/v20220325/api.json,sha256=7O9brz2ZPjj5M3VKguO0EBK9Qeo20r2WS17mWlzK2vw,69455
@@ -982,9 +982,9 @@ tccli/services/vrs/vrs_client.py,sha256=ap5LHh8v9R_YPcYi1oL_1fWaWgWB9AguwgnMPBIb
982
982
  tccli/services/vrs/v20200824/api.json,sha256=Hd6jfYqzrI_8ztZjxbh_05_i8FRLCwCgGXh3V2IR1O4,16062
983
983
  tccli/services/vrs/v20200824/examples.json,sha256=BeYxa7olWn1fMlTeDYHZVu6j-N6mcxzxrInSKen9ZTI,3091
984
984
  tccli/services/waf/__init__.py,sha256=CQIYSctAXRbX8x5xidAj7CBzOVIdMOZJQ0e6ENff3HU,85
985
- tccli/services/waf/waf_client.py,sha256=yNuLWsKFJ_eXdVeRrficspoQhxYM-NKbYmmi3dd0CGY,142922
986
- tccli/services/waf/v20180125/api.json,sha256=7q_kqPaDIuL05VDt6xejw_-CyWghCsV6kPUyvAY7zvA,185208
987
- tccli/services/waf/v20180125/examples.json,sha256=wMfFxaUT-5MFTuO2fWqRj-Zr5UI92nF1AAtpZKz5TPE,77709
985
+ tccli/services/waf/waf_client.py,sha256=YFsgBs4rFNzYiWAigOsfQumzxuZfsCycgtLtcgDVoZE,149005
986
+ tccli/services/waf/v20180125/api.json,sha256=4RgLcroeS86ReOpvv5GNqoE-dJ8_Gh0CHhAIk7poi_4,193717
987
+ tccli/services/waf/v20180125/examples.json,sha256=iaoLxHbUO9h8E7nd8Qcj0Yd_RUhG4UTa3Ue1P_-K_rE,81562
988
988
  tccli/services/wav/__init__.py,sha256=iOdPQbxYh0cdKcDo0kRWmQMiCl38owcMur1PRm3R6R8,85
989
989
  tccli/services/wav/wav_client.py,sha256=YGwUq_INt2sN1ZUsQq8bW4Z19WEqWilR2MPfKk5PBeQ,78863
990
990
  tccli/services/wav/v20210129/api.json,sha256=Lipl4OmvrZBVJzsVRQaPgU9c4_87AkbJGjnijYXcGSM,150077
@@ -1019,9 +1019,9 @@ tccli/services/zj/__init__.py,sha256=JNIWOLhm9nZkkFNXz2J4MacFeVh0gxpH05Lv99NyB98
1019
1019
  tccli/services/zj/zj_client.py,sha256=csVqRzSKo0qCw53zWR5nz0Bt4ReeHCcQnXOva_xnpvs,69153
1020
1020
  tccli/services/zj/v20190121/api.json,sha256=d4VP5xLrZfFNG8OPq3cx9M23YE5l5_L0muV-e9EYeUY,70794
1021
1021
  tccli/services/zj/v20190121/examples.json,sha256=vKIKHNqLjELXPXi6gRh5INQ0X0yKATVPnL_3ak3qYh8,14226
1022
- tccli-3.0.859.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
1023
- tccli-3.0.859.1.dist-info/METADATA,sha256=Sr_1Akvx1E-LipXtj94HkBgV0H-CUT802nzt6k1C27w,1038
1024
- tccli-3.0.859.1.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
1025
- tccli-3.0.859.1.dist-info/entry_points.txt,sha256=YAy1-SmtjTpXdLZ9IbG4-dvy-0YgudLZHkUQf1IdnA0,86
1026
- tccli-3.0.859.1.dist-info/top_level.txt,sha256=gYFrQRE3IqZ_46Syp-vkVwwvNaYEtKcM4fE_C4Puomk,6
1027
- tccli-3.0.859.1.dist-info/RECORD,,
1022
+ tccli-3.0.861.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
1023
+ tccli-3.0.861.1.dist-info/METADATA,sha256=nPpMeM--c-8R-91aH1LBB7RhLvuUPTCG25rewBoPgjo,1038
1024
+ tccli-3.0.861.1.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
1025
+ tccli-3.0.861.1.dist-info/entry_points.txt,sha256=YAy1-SmtjTpXdLZ9IbG4-dvy-0YgudLZHkUQf1IdnA0,86
1026
+ tccli-3.0.861.1.dist-info/top_level.txt,sha256=gYFrQRE3IqZ_46Syp-vkVwwvNaYEtKcM4fE_C4Puomk,6
1027
+ tccli-3.0.861.1.dist-info/RECORD,,