tccli 3.0.1277.1__py2.py3-none-any.whl → 3.0.1278.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.
tccli/__init__.py CHANGED
@@ -1 +1 @@
1
- __version__ = '3.0.1277.1'
1
+ __version__ = '3.0.1278.1'
@@ -1761,6 +1761,15 @@
1761
1761
  "name": "Affinity",
1762
1762
  "required": false,
1763
1763
  "type": "int"
1764
+ },
1765
+ {
1766
+ "disabled": false,
1767
+ "document": "标签描述列表。通过指定该参数可以绑定标签到置放群组。",
1768
+ "example": "[ { \"ResourceType\": \"ps\", \"Tags\": [ { \"Key\": \"myTag\", \"Value\": \"cloud\" } ] } ]",
1769
+ "member": "TagSpecification",
1770
+ "name": "TagSpecification",
1771
+ "required": false,
1772
+ "type": "list"
1764
1773
  }
1765
1774
  ],
1766
1775
  "type": "object"
@@ -3253,6 +3262,15 @@
3253
3262
  "name": "Limit",
3254
3263
  "required": false,
3255
3264
  "type": "int"
3265
+ },
3266
+ {
3267
+ "disabled": false,
3268
+ "document": "<li><strong>tag-key</strong></li>\n<p style=\"padding-left: 30px;\">按照【<strong>标签键</strong>】进行过滤。</p><p style=\"padding-left: 30px;\">类型:String</p><p style=\"padding-left: 30px;\">必选:否</p>\n<li><strong>tag-value</strong></li> <p style=\"padding-left: 30px;\">按照【<strong>标签值</strong>】进行过滤。</p><p style=\"padding-left: 30px;\">类型:String</p><p style=\"padding-left: 30px;\">必选:否</p>\n<li><strong>tag:tag-key</strong></li> <p style=\"padding-left: 30px;\">按照【<strong>标签键值对</strong>】进行过滤。tag-key使用具体的标签键进行替换。</p><p style=\"padding-left: 30px;\">类型:String</p><p style=\"padding-left: 30px;\">必选:否</p>\n每次请求的`Filters`的上限为10,`Filter.Values`的上限为5。",
3269
+ "example": "[ { \"Name\": \"tag-key \", \"Values\": [ \"myTag\" ] } ]",
3270
+ "member": "Filter",
3271
+ "name": "Filters",
3272
+ "required": false,
3273
+ "type": "list"
3256
3274
  }
3257
3275
  ],
3258
3276
  "type": "object"
@@ -4822,23 +4840,33 @@
4822
4840
  },
4823
4841
  {
4824
4842
  "disabled": false,
4825
- "document": "分散置放群组内,云服务器id列表。\n注意:此字段可能返回 null,表示取不到有效值。",
4843
+ "document": "分散置放群组内,云服务器id列表。",
4826
4844
  "example": "[\"ins-19029pru\"]",
4827
4845
  "member": "string",
4828
4846
  "name": "InstanceIds",
4829
4847
  "output_required": true,
4830
4848
  "type": "list",
4831
- "value_allowed_null": true
4849
+ "value_allowed_null": false
4832
4850
  },
4833
4851
  {
4834
4852
  "disabled": false,
4835
- "document": "分散置放群组创建时间。\n注意:此字段可能返回 null,表示取不到有效值。",
4853
+ "document": "分散置放群组创建时间。",
4836
4854
  "example": "\"2021-04-27T08:49:34Z\"",
4837
4855
  "member": "datetime_iso",
4838
4856
  "name": "CreateTime",
4839
4857
  "output_required": true,
4840
4858
  "type": "string",
4841
- "value_allowed_null": true
4859
+ "value_allowed_null": false
4860
+ },
4861
+ {
4862
+ "disabled": false,
4863
+ "document": "置放群组关联的标签列表。",
4864
+ "example": "无",
4865
+ "member": "Tag",
4866
+ "name": "Tags",
4867
+ "output_required": false,
4868
+ "type": "list",
4869
+ "value_allowed_null": false
4842
4870
  }
4843
4871
  ],
4844
4872
  "usage": "out"
@@ -2357,7 +2357,7 @@ def doModifyResourceScheduler(args, parsed_globals):
2357
2357
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
2358
2358
 
2359
2359
 
2360
- def doDescribeNodeResourceConfigFast(args, parsed_globals):
2360
+ def doModifySLInstanceBasic(args, parsed_globals):
2361
2361
  g_param = parse_global_arg(parsed_globals)
2362
2362
 
2363
2363
  if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
@@ -2386,11 +2386,11 @@ def doDescribeNodeResourceConfigFast(args, parsed_globals):
2386
2386
  client = mod.EmrClient(cred, g_param[OptionsDefine.Region], profile)
2387
2387
  client._sdkVersion += ("_CLI_" + __version__)
2388
2388
  models = MODELS_MAP[g_param[OptionsDefine.Version]]
2389
- model = models.DescribeNodeResourceConfigFastRequest()
2389
+ model = models.ModifySLInstanceBasicRequest()
2390
2390
  model.from_json_string(json.dumps(args))
2391
2391
  start_time = time.time()
2392
2392
  while True:
2393
- rsp = client.DescribeNodeResourceConfigFast(model)
2393
+ rsp = client.ModifySLInstanceBasic(model)
2394
2394
  result = rsp.to_json_string()
2395
2395
  try:
2396
2396
  json_obj = json.loads(result)
@@ -3293,6 +3293,58 @@ def doDescribeNodeDataDisks(args, parsed_globals):
3293
3293
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
3294
3294
 
3295
3295
 
3296
+ def doDescribeNodeResourceConfigFast(args, parsed_globals):
3297
+ g_param = parse_global_arg(parsed_globals)
3298
+
3299
+ if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
3300
+ cred = credential.CVMRoleCredential()
3301
+ elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
3302
+ cred = credential.STSAssumeRoleCredential(
3303
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
3304
+ g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
3305
+ )
3306
+ 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):
3307
+ cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
3308
+ else:
3309
+ cred = credential.Credential(
3310
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
3311
+ )
3312
+ http_profile = HttpProfile(
3313
+ reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
3314
+ reqMethod="POST",
3315
+ endpoint=g_param[OptionsDefine.Endpoint],
3316
+ proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
3317
+ )
3318
+ profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
3319
+ if g_param[OptionsDefine.Language]:
3320
+ profile.language = g_param[OptionsDefine.Language]
3321
+ mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
3322
+ client = mod.EmrClient(cred, g_param[OptionsDefine.Region], profile)
3323
+ client._sdkVersion += ("_CLI_" + __version__)
3324
+ models = MODELS_MAP[g_param[OptionsDefine.Version]]
3325
+ model = models.DescribeNodeResourceConfigFastRequest()
3326
+ model.from_json_string(json.dumps(args))
3327
+ start_time = time.time()
3328
+ while True:
3329
+ rsp = client.DescribeNodeResourceConfigFast(model)
3330
+ result = rsp.to_json_string()
3331
+ try:
3332
+ json_obj = json.loads(result)
3333
+ except TypeError as e:
3334
+ json_obj = json.loads(result.decode('utf-8')) # python3.3
3335
+ if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
3336
+ break
3337
+ cur_time = time.time()
3338
+ if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
3339
+ raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
3340
+ (g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
3341
+ search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
3342
+ else:
3343
+ print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
3344
+ time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
3345
+ FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
3346
+
3347
+
3296
3348
  def doDescribeAutoScaleStrategies(args, parsed_globals):
3297
3349
  g_param = parse_global_arg(parsed_globals)
3298
3350
 
@@ -4077,7 +4129,7 @@ ACTION_MAP = {
4077
4129
  "DescribeInstanceRenewNodes": doDescribeInstanceRenewNodes,
4078
4130
  "DescribeHDFSStorageInfo": doDescribeHDFSStorageInfo,
4079
4131
  "ModifyResourceScheduler": doModifyResourceScheduler,
4080
- "DescribeNodeResourceConfigFast": doDescribeNodeResourceConfigFast,
4132
+ "ModifySLInstanceBasic": doModifySLInstanceBasic,
4081
4133
  "DescribeResourceScheduleDiffDetail": doDescribeResourceScheduleDiffDetail,
4082
4134
  "SyncPodState": doSyncPodState,
4083
4135
  "DescribeSparkQueries": doDescribeSparkQueries,
@@ -4095,6 +4147,7 @@ ACTION_MAP = {
4095
4147
  "TerminateInstance": doTerminateInstance,
4096
4148
  "ModifySLInstance": doModifySLInstance,
4097
4149
  "DescribeNodeDataDisks": doDescribeNodeDataDisks,
4150
+ "DescribeNodeResourceConfigFast": doDescribeNodeResourceConfigFast,
4098
4151
  "DescribeAutoScaleStrategies": doDescribeAutoScaleStrategies,
4099
4152
  "DescribeGlobalConfig": doDescribeGlobalConfig,
4100
4153
  "DescribeAutoScaleGroupGlobalConf": doDescribeAutoScaleGroupGlobalConf,
@@ -434,6 +434,13 @@
434
434
  "output": "ModifySLInstanceResponse",
435
435
  "status": "online"
436
436
  },
437
+ "ModifySLInstanceBasic": {
438
+ "document": "serverless hbase修改实例名称",
439
+ "input": "ModifySLInstanceBasicRequest",
440
+ "name": "Serverless HBase修改实例名称",
441
+ "output": "ModifySLInstanceBasicResponse",
442
+ "status": "online"
443
+ },
437
444
  "ModifyUserManagerPwd": {
438
445
  "document": "修改用户密码(用户管理)",
439
446
  "input": "ModifyUserManagerPwdRequest",
@@ -11689,6 +11696,42 @@
11689
11696
  ],
11690
11697
  "type": "object"
11691
11698
  },
11699
+ "ModifySLInstanceBasicRequest": {
11700
+ "document": "ModifySLInstanceBasic请求参数结构体",
11701
+ "members": [
11702
+ {
11703
+ "disabled": false,
11704
+ "document": "集群实例ID",
11705
+ "example": "无",
11706
+ "member": "string",
11707
+ "name": "InstanceId",
11708
+ "required": true,
11709
+ "type": "string"
11710
+ },
11711
+ {
11712
+ "disabled": false,
11713
+ "document": "实例名称",
11714
+ "example": "无",
11715
+ "member": "string",
11716
+ "name": "ClusterName",
11717
+ "required": true,
11718
+ "type": "string"
11719
+ }
11720
+ ],
11721
+ "type": "object"
11722
+ },
11723
+ "ModifySLInstanceBasicResponse": {
11724
+ "document": "ModifySLInstanceBasic返回参数结构体",
11725
+ "members": [
11726
+ {
11727
+ "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
11728
+ "member": "string",
11729
+ "name": "RequestId",
11730
+ "type": "string"
11731
+ }
11732
+ ],
11733
+ "type": "object"
11734
+ },
11692
11735
  "ModifySLInstanceRequest": {
11693
11736
  "document": "ModifySLInstance请求参数结构体",
11694
11737
  "members": [
@@ -496,6 +496,14 @@
496
496
  "title": "Serverless HBase变配实例"
497
497
  }
498
498
  ],
499
+ "ModifySLInstanceBasic": [
500
+ {
501
+ "document": "serverless hbase修改实例名称",
502
+ "input": "POST / HTTP/1.1\nHost: emr.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ModifySLInstanceBasic\n<公共请求参数>\n\n{\n \"InstanceId\": \"emr-aiggb3ig\",\n \"ClusterName\": \"test-haoyu2\"\n}",
503
+ "output": "{\n \"Response\": {\n \"RequestId\": \"0d54ddd0-3456-482b-aa5b-408a77534b79\"\n }\n}",
504
+ "title": "serverless hbase修改实例名称"
505
+ }
506
+ ],
499
507
  "ModifyUserManagerPwd": [
500
508
  {
501
509
  "document": "test",
@@ -1389,7 +1389,7 @@
1389
1389
  },
1390
1390
  {
1391
1391
  "document": "",
1392
- "input": "POST / HTTP/1.1\nHost: ess.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeExtendedServiceAuthDetail\n<公共请求参数>\n\n{\n \"Operator\": {\n \"UserId\": \"yDwf3UUckps8dvveUEfH3DjvMmg3ZkjQ\"\n },\n \"ExtendServiceType\": \"OPEN_SERVER_SIGN\",\n \"Agent\": {},\n \"Limit\": 10,\n \"Offset\": 0\n}",
1392
+ "input": "POST / HTTP/1.1\nHost: ess.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeExtendedServiceAuthDetail\n<公共请求参数>\n\n{\n \"Operator\": {\n \"UserId\": \"yDwf3UUckps8dvveUEfH3DjvMmg3ZkjQ\"\n },\n \"ExtendServiceType\": \"BATCH_SIGN\",\n \"Agent\": {},\n \"Limit\": 10,\n \"Offset\": 0\n}",
1393
1393
  "output": "{\n \"Response\": {\n \"AuthInfoDetail\": {\n \"AuthOrganizationTotal\": 0,\n \"AuthUserTotal\": 1,\n \"HasAuthOrganizationList\": [],\n \"HasAuthUserList\": [\n {\n \"BelongTo\": \"CurrentOrg\",\n \"MainOrganizationId\": \"\",\n \"UserId\": \"yDxjKxxxxxxxx4zjESzn1dvkm5\"\n }\n ],\n \"Name\": \"批量签署\",\n \"Type\": \"BATCH_SIGN\"\n },\n \"RequestId\": \"d03c95cb-82f4-488a-a832-4ced6e367a54\"\n }\n}",
1394
1394
  "title": "查询企业扩展服务授权详情-批量签署"
1395
1395
  }
@@ -925,7 +925,7 @@
925
925
  "CreateFlowForwards": [
926
926
  {
927
927
  "document": "将当前合同经办人转为其他员工",
928
- "input": "POST / HTTP/1.1\nHost: essbasic.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ChannelDescribeEmployees\n<公共请求参数>\n\n{\n \"Agent\": {\n \"AppId\": \"yDwhxUUckp3gl8j5UuFX33LSNozpRsbi\",\n \"ProxyOrganizationOpenId\": \"org_dianziqian\",\n \"ProxyOperator\": {\n \"OpenId\": \"n9527\"\n },\n \"ProxyAppId\": \"\"\n },\n \"TargetOpenId\": \"open_id_1\",\n \"FlowForwardInfos\": [\n {\n \"FlowId\": \"yDtSPUU**********************PHG7JhZM\",\n \"RecipientId\": \"yDtSPUU******************os8flxcvLpj\"\n },\n {\n \"FlowId\": \"yDtSPUU**********************PHG7s8flx\",\n \"RecipientId\": \"yDtSPUU******************oSPUxSP\"\n }\n ]\n}",
928
+ "input": "POST / HTTP/1.1\nHost: essbasic.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateFlowForwards\n<公共请求参数>\n\n{\n \"Agent\": {\n \"AppId\": \"yDwhxUUckp3gl8j5UuFX33LSNozpRsbi\",\n \"ProxyOrganizationOpenId\": \"org_dianziqian\",\n \"ProxyOperator\": {\n \"OpenId\": \"n9527\"\n },\n \"ProxyAppId\": \"\"\n },\n \"TargetOpenId\": \"open_id_1\",\n \"FlowForwardInfos\": [\n {\n \"FlowId\": \"yDtSPUU**********************PHG7JhZM\",\n \"RecipientId\": \"yDtSPUU******************os8flxcvLpj\"\n },\n {\n \"FlowId\": \"yDtSPUU**********************PHG7s8flx\",\n \"RecipientId\": \"yDtSPUU******************oSPUxSP\"\n }\n ]\n}",
929
929
  "output": "{\n \"Response\": {\n \"FailedFlows\": [\n {\n \"ErrorDetail\": \"转发人状态非待签署或待填写,禁止转发\",\n \"FlowId\": \"yDtSPUU**********************PHG7JhZM\"\n }\n ],\n \"RequestId\": \"s1740641173120185806\",\n \"SuccessFlows\": [\n \"yDtSPUU**********************PHG7s8flx\"\n ]\n }\n}",
930
930
  "title": "将当前合同经办人转为其他员工"
931
931
  }
@@ -5127,8 +5127,8 @@
5127
5127
  "members": [
5128
5128
  {
5129
5129
  "disabled": false,
5130
- "document": "应用ID",
5131
- "example": "",
5130
+ "document": "应用ID,参数非必填不代表不需要填写,下面不同的参数组合会获取到不同的权限,具体请参考 https://cloud.tencent.com/document/product/1759/116238",
5131
+ "example": "177106121651545*****",
5132
5132
  "member": "string",
5133
5133
  "name": "BotBizId",
5134
5134
  "required": false,
@@ -6036,7 +6036,7 @@
6036
6036
  },
6037
6037
  {
6038
6038
  "disabled": false,
6039
- "document": "同名站点标识。限制输入数字、英文、- 和 _ 组合,长度 20 个字符以内。详情参考 [同名站点标识](https://cloud.tencent.com/document/product/1552/70202),无此使用场景时,该字段保留为空即可。",
6039
+ "document": "同名站点标识。限制输入数字、英文、\".\" 、\"-\" \"_\",长度 200 个字符以内。详情参考 [同名站点标识](https://cloud.tencent.com/document/product/1552/70202),无此使用场景时,该字段保留为空即可。",
6040
6040
  "example": "zone-example",
6041
6041
  "member": "string",
6042
6042
  "name": "AliasZoneName",
@@ -6046,7 +6046,7 @@
6046
6046
  {
6047
6047
  "disabled": false,
6048
6048
  "document": "标签。该参数用于对站点进行分权限管控、分账。需要先前往 [标签控制台](https://console.cloud.tencent.com/tag/taglist) 创建对应的标签才可以在此处传入对应的标签键和标签值。",
6049
- "example": "a",
6049
+ "example": "[a]",
6050
6050
  "member": "Tag",
6051
6051
  "name": "Tags",
6052
6052
  "required": false,
@@ -16519,7 +16519,7 @@
16519
16519
  },
16520
16520
  {
16521
16521
  "disabled": false,
16522
- "document": "站点别名。数字、英文、-和_组合,限制20个字符。",
16522
+ "document": "同名站点标识。限制输入数字、英文、\".\" 、\"-\" 和 \"_\",长度 200 个字符以内。",
16523
16523
  "example": "zone-example",
16524
16524
  "member": "string",
16525
16525
  "name": "AliasZoneName",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tccli
3
- Version: 3.0.1277.1
3
+ Version: 3.0.1278.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.1277
16
+ Requires-Dist: tencentcloud-sdk-python>=3.0.1278
17
17
  Description-Content-Type: text/markdown
18
18
 
19
19
  # 命令行工具简介
@@ -1,4 +1,4 @@
1
- tccli/__init__.py,sha256=i47BKNnvUly-FWndFlODRGUOTjlaE4Ysvs_H0TTi3JE,27
1
+ tccli/__init__.py,sha256=zC-Op7TeHZyGUAhvIOtCuEAS_UryNy3CKuXGQgn0ksQ,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
@@ -355,7 +355,7 @@ tccli/services/csxg/v20230303/api.json,sha256=faLND0vT8UTE9LyFQcVhOqLcc47xZp07X7
355
355
  tccli/services/csxg/v20230303/examples.json,sha256=bWInWqLp53HCMJ8s0MxYhRmNHzsYJEEU-RjzwOSYPeo,2106
356
356
  tccli/services/cvm/__init__.py,sha256=TlF7VMjJTb_ELng-8ghL1Zvrmu7MJyuNBU5KLiWrFnw,85
357
357
  tccli/services/cvm/cvm_client.py,sha256=8WB2x0-L6qJ5scEKxmna3Upsv3gvbeBUECribjXwzzo,307540
358
- tccli/services/cvm/v20170312/api.json,sha256=vabCu5TCsFBL6kEIHz9XEC_JZPt7oOAcybq5MmIZQkc,512503
358
+ tccli/services/cvm/v20170312/api.json,sha256=W4oWVrAcpLCDVGNtm5MlnsNyqWZ0nBXUdAOrDrmP1JA,514282
359
359
  tccli/services/cvm/v20170312/examples.json,sha256=1guPVHIKAgGaFfPazeD1h0_anXmSk0SGDJnxBkZpsaI,127531
360
360
  tccli/services/cwp/__init__.py,sha256=VzfiK7QzpNmTiO4zrmILRFSkKMJka8elLwzYLTjUPFw,85
361
361
  tccli/services/cwp/cwp_client.py,sha256=wcx1ZRkkWZYgueKXKU0B4MuBsKpOvffcnMENCb0EehE,1605109
@@ -460,9 +460,9 @@ tccli/services/eis/v20200715/examples.json,sha256=d4-jjmpmXudbFYYGhDICgWHgqJpc8X
460
460
  tccli/services/eis/v20210601/api.json,sha256=g4AJCtbcKsD7SK1PNkOi3otPkTgRrzkfsBoT-kbDYGE,31491
461
461
  tccli/services/eis/v20210601/examples.json,sha256=0AzvsX5xN4sc7M4GKxa888M0-rOayfoPeR26AKgLXCw,5943
462
462
  tccli/services/emr/__init__.py,sha256=CuCQwSW5RgNZF9gAIua1frYRqyXro0GUikyCRDqmWs8,85
463
- tccli/services/emr/emr_client.py,sha256=iGt5krK6WJ7tzBtKbehMoLsm-_LkXLBhK15-DEMp01w,244915
464
- tccli/services/emr/v20190103/api.json,sha256=sNoQt60kcMcHJv2MUHKErt6MYoz38DrsCFi2hiKPgMg,636382
465
- tccli/services/emr/v20190103/examples.json,sha256=6LAx9nGLPCUyI7D7CVxTkaie08_wTpaKvzRb-Luw6oU,197945
463
+ tccli/services/emr/emr_client.py,sha256=NP1FG2OeG8GGbNwLsGYRGzFt-JchFP8Dgj1kAxUY4zQ,248017
464
+ tccli/services/emr/v20190103/api.json,sha256=FsmqTqUGsLg-7zgCsiXfrVtrQktGKTvuORyR52z_838,637784
465
+ tccli/services/emr/v20190103/examples.json,sha256=qh9dA_f2F8s6fSlvb0EKA3QdhLSC0ArFSAyaMtwDBDQ,198472
466
466
  tccli/services/es/__init__.py,sha256=Tgbj2S-AFcftz26Uaksp0nrbDZShO6QOdNN89tFu9s0,83
467
467
  tccli/services/es/es_client.py,sha256=0UYT2WOOIyGVP--zUVFMUzadjt_pfyhMsOoUFcwWBWE,195270
468
468
  tccli/services/es/v20180416/api.json,sha256=o8s00dQBF3D1gf13OYy0a1t6l6gJa5D47mGZ0YG61sA,372383
@@ -470,13 +470,13 @@ tccli/services/es/v20180416/examples.json,sha256=DVV_ZHYlg0GfOTDkaP66Kq-U-1MMD0i
470
470
  tccli/services/ess/__init__.py,sha256=heBHzUKDuNxQ68yNutgyA8stCndyFWqYJqiQFozTiDs,85
471
471
  tccli/services/ess/ess_client.py,sha256=Wsyq7xsxMEjbM_6kALUXIZy_lT5Ia1sEaq-SRyhCyOc,320918
472
472
  tccli/services/ess/v20201111/api.json,sha256=vIpEykXlH-OOwRihL9BWjewDSZlF8Fkfrcj6KHL_Y60,825640
473
- tccli/services/ess/v20201111/examples.json,sha256=RYVbvO4DwstVxJ2HupKBTuKIkgiW4-3HuV09J-XoMKE,621772
473
+ tccli/services/ess/v20201111/examples.json,sha256=CJ4-EQsz301MNeHwfIGE53uAUtG8L_0bgj53OFsYYO8,621766
474
474
  tccli/services/essbasic/__init__.py,sha256=Uh5kuYtJvJ4F1S2w-19_B6a_JMF1ubh8Se-7p5LA0PE,95
475
475
  tccli/services/essbasic/essbasic_client.py,sha256=mtXCA5SuLtY1YF_lCSmPHzQnaKeMYuu3KCuqJ_5LTAg,443052
476
476
  tccli/services/essbasic/v20201222/api.json,sha256=8yA-0DwpjBAZajDJnp3flQ2xn1sdkZMVQcvegUcemSM,184116
477
477
  tccli/services/essbasic/v20201222/examples.json,sha256=TsEP0F9v4W6KvnFnczr2diMh2NX2Tp7TcCEkoeBw69Q,68751
478
478
  tccli/services/essbasic/v20210526/api.json,sha256=z9dstFKt2m9i6ZOshq7qyotxRiTvyOwjvn-fIt1YfZo,753316
479
- tccli/services/essbasic/v20210526/examples.json,sha256=LaTMiuXx2zh8P3uo1dxbc6nS5xxmOw4Q9qoxxgKPGoY,511959
479
+ tccli/services/essbasic/v20210526/examples.json,sha256=k_cgp7CIQ3LeKaV1nNIRBEtWjyQ0X5vaK848Arynj2I,511953
480
480
  tccli/services/facefusion/__init__.py,sha256=5IsXKY7EJG73GoLZDaRk_QwthyDmfes1nKAVdwZETUE,99
481
481
  tccli/services/facefusion/facefusion_client.py,sha256=OK0ZKLEKnBcxnu05rrnA8M7u8bmxJjnCJaRD-hKEDRE,18707
482
482
  tccli/services/facefusion/v20181201/api.json,sha256=ir1Tf7bURUVshliL8FqTBp-cotcH8Sg9hfe7WeY5bkw,26672
@@ -653,7 +653,7 @@ tccli/services/live/v20180801/api.json,sha256=GTzcq9wpbAXbjOgf8C4k9MLx2BcgK765d3
653
653
  tccli/services/live/v20180801/examples.json,sha256=Syum1-kT17wXUdbAwbA-IQNIH-5sNa0fUwsCX3UZmuI,164493
654
654
  tccli/services/lke/__init__.py,sha256=GKvpxCc-YzK4HVgYFq-aLRxZ1WW4MjpKLIqJNqecz_c,85
655
655
  tccli/services/lke/lke_client.py,sha256=8ltaEV2o8VTWwvbSYf40p4SvtT5NIK-FprGsXBVagrw,310644
656
- tccli/services/lke/v20231130/api.json,sha256=0i-22VPgn9duukQHVNIWUTKF3--8w8HKfc8zr1U-sHA,475471
656
+ tccli/services/lke/v20231130/api.json,sha256=3LYNuFq-cJtKpxezvbqY87C9f7rTtUFniYlJ9OFWlY4,475660
657
657
  tccli/services/lke/v20231130/examples.json,sha256=PfD4ykqpJtZd0Cd8UqlrA0j5qfHYGqc4J4eqL7sXRsY,250526
658
658
  tccli/services/lkeap/__init__.py,sha256=asxLax87Gwt4UF1pQoh5GX51weKCm6t8FPDRq-aKv7w,89
659
659
  tccli/services/lkeap/lkeap_client.py,sha256=FmVnY270LDf6WiXZg1gfdpwPDYMzLaSiYTFne3VdoVQ,86124
@@ -953,7 +953,7 @@ tccli/services/teo/__init__.py,sha256=nvzcUSkSQuTftWEJ399BUZpUk_0jEq-l97539DwbAw
953
953
  tccli/services/teo/teo_client.py,sha256=PydKX2L5SzjTRrBM1Mb089sJIV16nYjcEXduWG41AUI,439927
954
954
  tccli/services/teo/v20220106/api.json,sha256=HGvEHEkfctNBazbSyZvWAUPSvYa4c_YxZJ9uW61RD4k,29733
955
955
  tccli/services/teo/v20220106/examples.json,sha256=2s6dgk31pZ26N8hrFLCmQzVocmsC_QK1dO8WVBdJ8A0,5325
956
- tccli/services/teo/v20220901/api.json,sha256=hMsDMrWeo2OSe0EXeZy2Lmmt1OLvZXvEvndmtTYhu3g,878228
956
+ tccli/services/teo/v20220901/api.json,sha256=XqHV42zAwYrVkk8PaO-bCdTWp8GHjNSzN-ZzpNbhM50,878281
957
957
  tccli/services/teo/v20220901/examples.json,sha256=lZQSCRsYT5b4vKN9vT_LRN5fd4IlvSepOm_zg8KLfLo,370082
958
958
  tccli/services/thpc/__init__.py,sha256=NancJ76I7PbEBt7VJCaGnBsfMEZm2ezBvYqwxyLbLHo,87
959
959
  tccli/services/thpc/thpc_client.py,sha256=Xaabx_rj2DoJHG_MpHXwQ204gesY6CNf835YQp_MHVg,80712
@@ -1155,8 +1155,8 @@ tccli/services/yunsou/v20180504/api.json,sha256=2808fil5p3pTEJ3SqXEEq7eSrASZOiv8
1155
1155
  tccli/services/yunsou/v20180504/examples.json,sha256=Jg4WuqS_Wxl7eTBMbzjem65FuUZQi3qq3xtlBNFZlTU,11870
1156
1156
  tccli/services/yunsou/v20191115/api.json,sha256=r_p7c7fMNylQVDpSN0CkUB4Cx1nYW1lI3BM_Zi50FNs,15932
1157
1157
  tccli/services/yunsou/v20191115/examples.json,sha256=vN5MzexHVPMckm4MbnXNiOe3KKiVchvf4_uLpjOskuk,3983
1158
- tccli-3.0.1277.1.dist-info/METADATA,sha256=c2lpnz6rY0_miO3Kwfvytbdyr0BBeiHP3eGoB_wSTrw,16408
1159
- tccli-3.0.1277.1.dist-info/WHEEL,sha256=HyPWovjK_wfsxZqVnw7Bu5rgKxNh3Nm__lHm0ALDcb4,101
1160
- tccli-3.0.1277.1.dist-info/entry_points.txt,sha256=9ZzsXxi7Xj3ZneT7VxRVJpFvnmdEOeysh999_0gWVvo,85
1161
- tccli-3.0.1277.1.dist-info/license_files/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
1162
- tccli-3.0.1277.1.dist-info/RECORD,,
1158
+ tccli-3.0.1278.1.dist-info/METADATA,sha256=gv52lxvoPPkKlw-tIJbPaeiWq_PTLnhClxRCE_Tb1XA,16408
1159
+ tccli-3.0.1278.1.dist-info/WHEEL,sha256=HyPWovjK_wfsxZqVnw7Bu5rgKxNh3Nm__lHm0ALDcb4,101
1160
+ tccli-3.0.1278.1.dist-info/entry_points.txt,sha256=9ZzsXxi7Xj3ZneT7VxRVJpFvnmdEOeysh999_0gWVvo,85
1161
+ tccli-3.0.1278.1.dist-info/license_files/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
1162
+ tccli-3.0.1278.1.dist-info/RECORD,,