tccli 3.0.1219.1__py2.py3-none-any.whl → 3.0.1220.1__py2.py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- tccli/__init__.py +1 -1
- tccli/services/autoscaling/v20180419/api.json +1 -1
- tccli/services/cdwch/cdwch_client.py +53 -0
- tccli/services/cdwch/v20200915/api.json +100 -0
- tccli/services/cdwch/v20200915/examples.json +8 -0
- tccli/services/cynosdb/v20190107/api.json +12 -2
- tccli/services/ess/v20201111/api.json +10 -1
- tccli/services/essbasic/v20210526/api.json +19 -1
- tccli/services/market/v20191010/api.json +3 -3
- tccli/services/mps/mps_client.py +53 -0
- tccli/services/mps/v20190612/api.json +144 -0
- tccli/services/mps/v20190612/examples.json +8 -0
- tccli/services/svp/v20240125/api.json +2 -2
- tccli/services/tse/v20201207/examples.json +4 -4
- tccli/services/wedata/v20210820/api.json +47 -2
- tccli/services/wedata/v20210820/examples.json +1 -1
- {tccli-3.0.1219.1.dist-info → tccli-3.0.1220.1.dist-info}/METADATA +2 -2
- {tccli-3.0.1219.1.dist-info → tccli-3.0.1220.1.dist-info}/RECORD +21 -21
- {tccli-3.0.1219.1.dist-info → tccli-3.0.1220.1.dist-info}/WHEEL +0 -0
- {tccli-3.0.1219.1.dist-info → tccli-3.0.1220.1.dist-info}/entry_points.txt +0 -0
- {tccli-3.0.1219.1.dist-info → tccli-3.0.1220.1.dist-info}/license_files/LICENSE +0 -0
tccli/__init__.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = '3.0.
|
1
|
+
__version__ = '3.0.1220.1'
|
@@ -7304,7 +7304,7 @@
|
|
7304
7304
|
},
|
7305
7305
|
{
|
7306
7306
|
"disabled": false,
|
7307
|
-
"document": "
|
7307
|
+
"document": "刷新模式。取值范围:\n<li>ROLLING_UPDATE_RESET:重装系统进行滚动更新</li>\n<li>ROLLING_UPDATE_REPLACE:新建实例替换进行滚动更新,该模式暂不支持回滚接口</li>",
|
7308
7308
|
"example": "ROLLING_UPDATE_RESET",
|
7309
7309
|
"member": "string",
|
7310
7310
|
"name": "RefreshMode",
|
@@ -849,6 +849,58 @@ def doModifyClusterConfigs(args, parsed_globals):
|
|
849
849
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
850
850
|
|
851
851
|
|
852
|
+
def doScaleCNOutUpInstance(args, parsed_globals):
|
853
|
+
g_param = parse_global_arg(parsed_globals)
|
854
|
+
|
855
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
856
|
+
cred = credential.CVMRoleCredential()
|
857
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
858
|
+
cred = credential.STSAssumeRoleCredential(
|
859
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
860
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
861
|
+
)
|
862
|
+
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):
|
863
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
864
|
+
else:
|
865
|
+
cred = credential.Credential(
|
866
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
867
|
+
)
|
868
|
+
http_profile = HttpProfile(
|
869
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
870
|
+
reqMethod="POST",
|
871
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
872
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
873
|
+
)
|
874
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
875
|
+
if g_param[OptionsDefine.Language]:
|
876
|
+
profile.language = g_param[OptionsDefine.Language]
|
877
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
878
|
+
client = mod.CdwchClient(cred, g_param[OptionsDefine.Region], profile)
|
879
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
880
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
881
|
+
model = models.ScaleCNOutUpInstanceRequest()
|
882
|
+
model.from_json_string(json.dumps(args))
|
883
|
+
start_time = time.time()
|
884
|
+
while True:
|
885
|
+
rsp = client.ScaleCNOutUpInstance(model)
|
886
|
+
result = rsp.to_json_string()
|
887
|
+
try:
|
888
|
+
json_obj = json.loads(result)
|
889
|
+
except TypeError as e:
|
890
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
891
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
892
|
+
break
|
893
|
+
cur_time = time.time()
|
894
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
895
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
896
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
897
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
898
|
+
else:
|
899
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
900
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
901
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
902
|
+
|
903
|
+
|
852
904
|
def doDescribeInstanceShards(args, parsed_globals):
|
853
905
|
g_param = parse_global_arg(parsed_globals)
|
854
906
|
|
@@ -1448,6 +1500,7 @@ ACTION_MAP = {
|
|
1448
1500
|
"DescribeInstanceState": doDescribeInstanceState,
|
1449
1501
|
"DescribeClusterConfigs": doDescribeClusterConfigs,
|
1450
1502
|
"ModifyClusterConfigs": doModifyClusterConfigs,
|
1503
|
+
"ScaleCNOutUpInstance": doScaleCNOutUpInstance,
|
1451
1504
|
"DescribeInstanceShards": doDescribeInstanceShards,
|
1452
1505
|
"DescribeCkSqlApis": doDescribeCkSqlApis,
|
1453
1506
|
"DescribeSpec": doDescribeSpec,
|
@@ -175,6 +175,13 @@
|
|
175
175
|
"output": "ResizeDiskResponse",
|
176
176
|
"status": "online"
|
177
177
|
},
|
178
|
+
"ScaleCNOutUpInstance": {
|
179
|
+
"document": "open-api接口提供弹性伸缩云原生集群能力",
|
180
|
+
"input": "ScaleCNOutUpInstanceRequest",
|
181
|
+
"name": "通过接口弹性伸缩云原生集群(openapi)",
|
182
|
+
"output": "ScaleCNOutUpInstanceResponse",
|
183
|
+
"status": "online"
|
184
|
+
},
|
178
185
|
"ScaleOutInstance": {
|
179
186
|
"document": "调整clickhouse节点数量",
|
180
187
|
"input": "ScaleOutInstanceRequest",
|
@@ -3663,6 +3670,99 @@
|
|
3663
3670
|
],
|
3664
3671
|
"usage": "out"
|
3665
3672
|
},
|
3673
|
+
"ScaleCNOutUpInstanceRequest": {
|
3674
|
+
"document": "ScaleCNOutUpInstance请求参数结构体",
|
3675
|
+
"members": [
|
3676
|
+
{
|
3677
|
+
"disabled": false,
|
3678
|
+
"document": "实例唯一ID",
|
3679
|
+
"example": "clickhouse-cn-xxx",
|
3680
|
+
"member": "string",
|
3681
|
+
"name": "InstanceId",
|
3682
|
+
"required": true,
|
3683
|
+
"type": "string"
|
3684
|
+
},
|
3685
|
+
{
|
3686
|
+
"disabled": false,
|
3687
|
+
"document": "warehouse名称",
|
3688
|
+
"example": "xxxx",
|
3689
|
+
"member": "string",
|
3690
|
+
"name": "VirtualCluster",
|
3691
|
+
"required": true,
|
3692
|
+
"type": "string"
|
3693
|
+
},
|
3694
|
+
{
|
3695
|
+
"disabled": false,
|
3696
|
+
"document": "子网id",
|
3697
|
+
"example": "subnet-xxx",
|
3698
|
+
"member": "string",
|
3699
|
+
"name": "UserSubnetID",
|
3700
|
+
"required": true,
|
3701
|
+
"type": "string"
|
3702
|
+
},
|
3703
|
+
{
|
3704
|
+
"disabled": false,
|
3705
|
+
"document": "新的warehouse的个数",
|
3706
|
+
"example": "1",
|
3707
|
+
"member": "int64",
|
3708
|
+
"name": "NewCount",
|
3709
|
+
"required": true,
|
3710
|
+
"type": "int"
|
3711
|
+
},
|
3712
|
+
{
|
3713
|
+
"disabled": false,
|
3714
|
+
"document": "集群的规格2X-Small、X-Small、Small",
|
3715
|
+
"example": "2X-Small",
|
3716
|
+
"member": "string",
|
3717
|
+
"name": "NewSpecName",
|
3718
|
+
"required": true,
|
3719
|
+
"type": "string"
|
3720
|
+
}
|
3721
|
+
],
|
3722
|
+
"type": "object"
|
3723
|
+
},
|
3724
|
+
"ScaleCNOutUpInstanceResponse": {
|
3725
|
+
"document": "ScaleCNOutUpInstance返回参数结构体",
|
3726
|
+
"members": [
|
3727
|
+
{
|
3728
|
+
"disabled": false,
|
3729
|
+
"document": "流程ID\n注意:此字段可能返回 null,表示取不到有效值。",
|
3730
|
+
"example": "123",
|
3731
|
+
"member": "string",
|
3732
|
+
"name": "FlowId",
|
3733
|
+
"output_required": true,
|
3734
|
+
"type": "string",
|
3735
|
+
"value_allowed_null": true
|
3736
|
+
},
|
3737
|
+
{
|
3738
|
+
"disabled": false,
|
3739
|
+
"document": "实例ID\n注意:此字段可能返回 null,表示取不到有效值。",
|
3740
|
+
"example": "clickhouse-cn-xxx",
|
3741
|
+
"member": "string",
|
3742
|
+
"name": "InstanceId",
|
3743
|
+
"output_required": true,
|
3744
|
+
"type": "string",
|
3745
|
+
"value_allowed_null": true
|
3746
|
+
},
|
3747
|
+
{
|
3748
|
+
"disabled": false,
|
3749
|
+
"document": "错误信息\n注意:此字段可能返回 null,表示取不到有效值。",
|
3750
|
+
"example": "xxx",
|
3751
|
+
"member": "string",
|
3752
|
+
"name": "ErrorMsg",
|
3753
|
+
"output_required": true,
|
3754
|
+
"type": "string",
|
3755
|
+
"value_allowed_null": true
|
3756
|
+
},
|
3757
|
+
{
|
3758
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
3759
|
+
"member": "string",
|
3760
|
+
"name": "RequestId",
|
3761
|
+
"type": "string"
|
3762
|
+
}
|
3763
|
+
],
|
3764
|
+
"type": "object"
|
3765
|
+
},
|
3666
3766
|
"ScaleOutInstanceRequest": {
|
3667
3767
|
"document": "ScaleOutInstance请求参数结构体",
|
3668
3768
|
"members": [
|
@@ -200,6 +200,14 @@
|
|
200
200
|
"title": "示例"
|
201
201
|
}
|
202
202
|
],
|
203
|
+
"ScaleCNOutUpInstance": [
|
204
|
+
{
|
205
|
+
"document": "",
|
206
|
+
"input": "POST / HTTP/1.1\nHost: cdwch.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ScaleCNOutUpInstance\n<公共请求参数>\n\n{\n \"InstanceId\": \"clickhouse-cn-xxxxxx\",\n \"VirtualCluster\": \"warehouse3\",\n \"UserSubnetID\": \"subnet-xxxxxxx\",\n \"NewCount\": 2,\n \"NewSpecName\": \"2X-Small\"\n}",
|
207
|
+
"output": "{\n \"Response\": {\n \"InstanceId\": \"clickhouse-cn-xxxxxx\",\n \"FlowId\": \"\",\n \"RequestId\": \"01111\",\n \"ErrorMsg\": \"addddd\"\n }\n}",
|
208
|
+
"title": "示例"
|
209
|
+
}
|
210
|
+
],
|
203
211
|
"ScaleOutInstance": [
|
204
212
|
{
|
205
213
|
"document": "ck水平扩容实例",
|
@@ -3424,6 +3424,16 @@
|
|
3424
3424
|
"output_required": false,
|
3425
3425
|
"type": "string",
|
3426
3426
|
"value_allowed_null": true
|
3427
|
+
},
|
3428
|
+
{
|
3429
|
+
"disabled": false,
|
3430
|
+
"document": "数据库类型",
|
3431
|
+
"example": "无",
|
3432
|
+
"member": "string",
|
3433
|
+
"name": "DbMode",
|
3434
|
+
"output_required": false,
|
3435
|
+
"type": "string",
|
3436
|
+
"value_allowed_null": false
|
3427
3437
|
}
|
3428
3438
|
],
|
3429
3439
|
"usage": "out"
|
@@ -5786,8 +5796,8 @@
|
|
5786
5796
|
},
|
5787
5797
|
{
|
5788
5798
|
"disabled": false,
|
5789
|
-
"document": "
|
5790
|
-
"example": "
|
5799
|
+
"document": "Db类型:<li>NORMAL</li><li>SERVERLESS</li>\n注意:此字段可能返回 null,表示取不到有效值。",
|
5800
|
+
"example": "NORMAL",
|
5791
5801
|
"member": "string",
|
5792
5802
|
"name": "DbMode",
|
5793
5803
|
"output_required": true,
|
@@ -2324,7 +2324,7 @@
|
|
2324
2324
|
},
|
2325
2325
|
{
|
2326
2326
|
"disabled": false,
|
2327
|
-
"document": "初始化操作类型\n<ul
|
2327
|
+
"document": "初始化操作类型\n<ul>\n<li>CREATE_SEAL : 创建印章</li>\n<li>AUTH_JOIN_ORGANIZATION_GROUP : 加入集团企业</li>\n<li>OPEN_AUTO_SIGN :开通企业自动签署</li>\n<li>PARTNER_AUTO_SIGN_AUTH :合作方企业授权自动签</li>\n</ul>",
|
2328
2328
|
"example": "无",
|
2329
2329
|
"member": "string",
|
2330
2330
|
"name": "OperateTypes",
|
@@ -2348,6 +2348,15 @@
|
|
2348
2348
|
"name": "Agent",
|
2349
2349
|
"required": false,
|
2350
2350
|
"type": "object"
|
2351
|
+
},
|
2352
|
+
{
|
2353
|
+
"disabled": false,
|
2354
|
+
"document": "被授权的合作方企业在电子签的企业电子签账号,当操作类型包含 PARTNER_AUTO_SIGN_AUTH (合作方企业授权自动签)时必传。\n\n企业电子签账号可在[电子签的网页端](https://qian.tencent.com/console/company-settings/company-center) ,于企业设置-企业信息菜单栏下复制获取。\n\n![企业电子签账号](https://qcloudimg.tencent-cloud.cn/raw/4e6b30ee92f00671f7f1c5bd127c27db.png)",
|
2355
|
+
"example": "无",
|
2356
|
+
"member": "string",
|
2357
|
+
"name": "AuthorizedOrganizationId",
|
2358
|
+
"required": false,
|
2359
|
+
"type": "string"
|
2351
2360
|
}
|
2352
2361
|
],
|
2353
2362
|
"type": "object"
|
@@ -6074,7 +6074,7 @@
|
|
6074
6074
|
},
|
6075
6075
|
{
|
6076
6076
|
"disabled": false,
|
6077
|
-
"document": "初始化操作类型\n<ul
|
6077
|
+
"document": "初始化操作类型\n<ul>\n<li>CREATE_SEAL : 创建印章</li>\n<li>OPEN_AUTO_SIGN :开通企业自动签署</li>\n<li>PARTNER_AUTO_SIGN_AUTH :合作方企业或应用平台方授权自动签</li>\n</ul>",
|
6078
6078
|
"example": "无",
|
6079
6079
|
"member": "string",
|
6080
6080
|
"name": "OperateTypes",
|
@@ -6089,6 +6089,24 @@
|
|
6089
6089
|
"name": "ProxyOrganizationOpenIds",
|
6090
6090
|
"required": true,
|
6091
6091
|
"type": "list"
|
6092
|
+
},
|
6093
|
+
{
|
6094
|
+
"disabled": false,
|
6095
|
+
"document": "当操作类型包含 PARTNER_AUTO_SIGN_AUTH 且是给应用平台方授权自动签时传true。\n![image](https://qcloudimg.tencent-cloud.cn/raw/f9aba7c999a6d79ada20b4384520e120.png)",
|
6096
|
+
"example": "无",
|
6097
|
+
"member": "bool",
|
6098
|
+
"name": "IsAuthorizePlatformApplication",
|
6099
|
+
"required": false,
|
6100
|
+
"type": "bool"
|
6101
|
+
},
|
6102
|
+
{
|
6103
|
+
"disabled": false,
|
6104
|
+
"document": "被授权的合作方企业在第三方平台子客企业标识,即ProxyOrganizationOpenId,当操作类型包含 PARTNER_AUTO_SIGN_AUTH 且要进行合作方企业授权自动签时必传。\n\n\n",
|
6105
|
+
"example": "无",
|
6106
|
+
"member": "string",
|
6107
|
+
"name": "AuthorizedProxyOrganizationOpenId",
|
6108
|
+
"required": false,
|
6109
|
+
"type": "string"
|
6092
6110
|
}
|
6093
6111
|
],
|
6094
6112
|
"type": "object"
|
@@ -107,13 +107,13 @@
|
|
107
107
|
},
|
108
108
|
{
|
109
109
|
"disabled": false,
|
110
|
-
"document": "
|
111
|
-
"example": "
|
110
|
+
"document": "消息",
|
111
|
+
"example": "流量已经用尽",
|
112
112
|
"member": "string",
|
113
113
|
"name": "Info",
|
114
114
|
"output_required": true,
|
115
115
|
"type": "string",
|
116
|
-
"value_allowed_null":
|
116
|
+
"value_allowed_null": false
|
117
117
|
},
|
118
118
|
{
|
119
119
|
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
tccli/services/mps/mps_client.py
CHANGED
@@ -2357,6 +2357,58 @@ def doStartStreamLinkFlow(args, parsed_globals):
|
|
2357
2357
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
2358
2358
|
|
2359
2359
|
|
2360
|
+
def doProcessImage(args, parsed_globals):
|
2361
|
+
g_param = parse_global_arg(parsed_globals)
|
2362
|
+
|
2363
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
2364
|
+
cred = credential.CVMRoleCredential()
|
2365
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
2366
|
+
cred = credential.STSAssumeRoleCredential(
|
2367
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
2368
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
2369
|
+
)
|
2370
|
+
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):
|
2371
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
2372
|
+
else:
|
2373
|
+
cred = credential.Credential(
|
2374
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
2375
|
+
)
|
2376
|
+
http_profile = HttpProfile(
|
2377
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
2378
|
+
reqMethod="POST",
|
2379
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
2380
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
2381
|
+
)
|
2382
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
2383
|
+
if g_param[OptionsDefine.Language]:
|
2384
|
+
profile.language = g_param[OptionsDefine.Language]
|
2385
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
2386
|
+
client = mod.MpsClient(cred, g_param[OptionsDefine.Region], profile)
|
2387
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
2388
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
2389
|
+
model = models.ProcessImageRequest()
|
2390
|
+
model.from_json_string(json.dumps(args))
|
2391
|
+
start_time = time.time()
|
2392
|
+
while True:
|
2393
|
+
rsp = client.ProcessImage(model)
|
2394
|
+
result = rsp.to_json_string()
|
2395
|
+
try:
|
2396
|
+
json_obj = json.loads(result)
|
2397
|
+
except TypeError as e:
|
2398
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
2399
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
2400
|
+
break
|
2401
|
+
cur_time = time.time()
|
2402
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
2403
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
2404
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
2405
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
2406
|
+
else:
|
2407
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
2408
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
2409
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
2410
|
+
|
2411
|
+
|
2360
2412
|
def doModifyStreamLinkInput(args, parsed_globals):
|
2361
2413
|
g_param = parse_global_arg(parsed_globals)
|
2362
2414
|
|
@@ -5689,6 +5741,7 @@ ACTION_MAP = {
|
|
5689
5741
|
"DescribeTranscodeTemplates": doDescribeTranscodeTemplates,
|
5690
5742
|
"DeleteStreamLinkFlow": doDeleteStreamLinkFlow,
|
5691
5743
|
"StartStreamLinkFlow": doStartStreamLinkFlow,
|
5744
|
+
"ProcessImage": doProcessImage,
|
5692
5745
|
"ModifyStreamLinkInput": doModifyStreamLinkInput,
|
5693
5746
|
"DescribeStreamLinkRegions": doDescribeStreamLinkRegions,
|
5694
5747
|
"DescribeSchedules": doDescribeSchedules,
|
@@ -707,6 +707,13 @@
|
|
707
707
|
"output": "ParseNotificationResponse",
|
708
708
|
"status": "online"
|
709
709
|
},
|
710
|
+
"ProcessImage": {
|
711
|
+
"document": "发起图片处理,功能包括:\n1. 格式转换;\n2. 图像增强;",
|
712
|
+
"input": "ProcessImageRequest",
|
713
|
+
"name": "发起图片处理",
|
714
|
+
"output": "ProcessImageResponse",
|
715
|
+
"status": "online"
|
716
|
+
},
|
710
717
|
"ProcessLiveStream": {
|
711
718
|
"document": "对直播流媒体发起处理任务,功能包括:\n\n* 智能内容审核(画面鉴黄、敏感信息检测、声音鉴黄);\n* 智能内容识别(人脸、文本全文、文本关键词、语音全文、语音关键词、语音实时翻译、物体识别、游戏打点)。\n* 智能内容分析(新闻实时拆条)。\n* 质检(直播流格式诊断、音画内容检测(抖动、模糊、低光照、过曝光、黑边、白边、黑屏、白屏、花屏、噪点、马赛克、二维码等)、无参考打分)。\n* 录制\n\n直播流处理事件通知支持HTTP回调,也支持实时写入用户指定的消息队列 CMQ 中,用户从消息队列 CMQ 中获取事件通知结果,同时处理过程中存在输出文件的,会写入用户指定的输出文件的目标存储中。",
|
712
719
|
"input": "ProcessLiveStreamRequest",
|
@@ -16239,6 +16246,51 @@
|
|
16239
16246
|
],
|
16240
16247
|
"usage": "out"
|
16241
16248
|
},
|
16249
|
+
"ImageEncodeConfig": {
|
16250
|
+
"document": "图片编码格式参数",
|
16251
|
+
"members": [
|
16252
|
+
{
|
16253
|
+
"disabled": false,
|
16254
|
+
"document": "图片格式,取值范围:JPG、BMP、GIF、PNG、WebP,缺省为原图格式。\n注意:此字段可能返回 null,表示取不到有效值。",
|
16255
|
+
"example": "JPEG",
|
16256
|
+
"member": "string",
|
16257
|
+
"name": "Format",
|
16258
|
+
"output_required": false,
|
16259
|
+
"required": false,
|
16260
|
+
"type": "string",
|
16261
|
+
"value_allowed_null": true
|
16262
|
+
},
|
16263
|
+
{
|
16264
|
+
"disabled": false,
|
16265
|
+
"document": "图片的相对质量,取值范围:1 - 100,数值以原图质量为标准,缺省为原图质量。\n注意:此字段可能返回 null,表示取不到有效值。",
|
16266
|
+
"example": "50",
|
16267
|
+
"member": "int64",
|
16268
|
+
"name": "Quality",
|
16269
|
+
"output_required": false,
|
16270
|
+
"required": false,
|
16271
|
+
"type": "int",
|
16272
|
+
"value_allowed_null": true
|
16273
|
+
}
|
16274
|
+
],
|
16275
|
+
"usage": "both"
|
16276
|
+
},
|
16277
|
+
"ImageEnhanceConfig": {
|
16278
|
+
"document": "图片增强参数",
|
16279
|
+
"members": [
|
16280
|
+
{
|
16281
|
+
"disabled": false,
|
16282
|
+
"document": "超分配置。\n注意:此字段可能返回 null,表示取不到有效值。",
|
16283
|
+
"example": "无",
|
16284
|
+
"member": "SuperResolutionConfig",
|
16285
|
+
"name": "SuperResolution",
|
16286
|
+
"output_required": false,
|
16287
|
+
"required": false,
|
16288
|
+
"type": "object",
|
16289
|
+
"value_allowed_null": true
|
16290
|
+
}
|
16291
|
+
],
|
16292
|
+
"usage": "both"
|
16293
|
+
},
|
16242
16294
|
"ImageQualityEnhanceConfig": {
|
16243
16295
|
"document": "综合增强配置",
|
16244
16296
|
"members": [
|
@@ -16482,6 +16534,34 @@
|
|
16482
16534
|
],
|
16483
16535
|
"usage": "out"
|
16484
16536
|
},
|
16537
|
+
"ImageTaskInput": {
|
16538
|
+
"document": "图片任务输入参数",
|
16539
|
+
"members": [
|
16540
|
+
{
|
16541
|
+
"disabled": false,
|
16542
|
+
"document": "图片编码配置。\n注意:此字段可能返回 null,表示取不到有效值。",
|
16543
|
+
"example": "无",
|
16544
|
+
"member": "ImageEncodeConfig",
|
16545
|
+
"name": "EncodeConfig",
|
16546
|
+
"output_required": false,
|
16547
|
+
"required": false,
|
16548
|
+
"type": "object",
|
16549
|
+
"value_allowed_null": true
|
16550
|
+
},
|
16551
|
+
{
|
16552
|
+
"disabled": false,
|
16553
|
+
"document": "图片增强配置。\n注意:此字段可能返回 null,表示取不到有效值。",
|
16554
|
+
"example": "无",
|
16555
|
+
"member": "ImageEnhanceConfig",
|
16556
|
+
"name": "EnhanceConfig",
|
16557
|
+
"output_required": false,
|
16558
|
+
"required": false,
|
16559
|
+
"type": "object",
|
16560
|
+
"value_allowed_null": true
|
16561
|
+
}
|
16562
|
+
],
|
16563
|
+
"usage": "both"
|
16564
|
+
},
|
16485
16565
|
"ImageWatermarkInput": {
|
16486
16566
|
"document": "图片水印模板输入参数",
|
16487
16567
|
"members": [
|
@@ -23283,6 +23363,70 @@
|
|
23283
23363
|
],
|
23284
23364
|
"usage": "in"
|
23285
23365
|
},
|
23366
|
+
"ProcessImageRequest": {
|
23367
|
+
"document": "ProcessImage请求参数结构体",
|
23368
|
+
"members": [
|
23369
|
+
{
|
23370
|
+
"disabled": false,
|
23371
|
+
"document": "图片处理的文件输入信息。",
|
23372
|
+
"example": "无",
|
23373
|
+
"member": "MediaInputInfo",
|
23374
|
+
"name": "InputInfo",
|
23375
|
+
"required": true,
|
23376
|
+
"type": "object"
|
23377
|
+
},
|
23378
|
+
{
|
23379
|
+
"disabled": false,
|
23380
|
+
"document": "图片处理输出文件的目标存储。不填则继承 InputInfo 中的存储位置。",
|
23381
|
+
"example": "无",
|
23382
|
+
"member": "TaskOutputStorage",
|
23383
|
+
"name": "OutputStorage",
|
23384
|
+
"required": false,
|
23385
|
+
"type": "object"
|
23386
|
+
},
|
23387
|
+
{
|
23388
|
+
"disabled": false,
|
23389
|
+
"document": "图片处理生成的文件输出的路径。如果不填表示与 InputInfo 中文件所在的目录一致。如果是目录,如`/image/201907/`,表示继承原文件名输出到该目录。",
|
23390
|
+
"example": "无",
|
23391
|
+
"member": "string",
|
23392
|
+
"name": "OutputDir",
|
23393
|
+
"required": false,
|
23394
|
+
"type": "string"
|
23395
|
+
},
|
23396
|
+
{
|
23397
|
+
"disabled": false,
|
23398
|
+
"document": "图片处理参数。",
|
23399
|
+
"example": "无",
|
23400
|
+
"member": "ImageTaskInput",
|
23401
|
+
"name": "ImageTask",
|
23402
|
+
"required": false,
|
23403
|
+
"type": "object"
|
23404
|
+
}
|
23405
|
+
],
|
23406
|
+
"type": "object"
|
23407
|
+
},
|
23408
|
+
"ProcessImageResponse": {
|
23409
|
+
"document": "ProcessImage返回参数结构体",
|
23410
|
+
"members": [
|
23411
|
+
{
|
23412
|
+
"disabled": false,
|
23413
|
+
"document": "任务 ID。",
|
23414
|
+
"example": "125xxx65-procedurev2-bffb15f07530b57bc1aabb01fac74bca",
|
23415
|
+
"member": "string",
|
23416
|
+
"name": "TaskId",
|
23417
|
+
"output_required": true,
|
23418
|
+
"type": "string",
|
23419
|
+
"value_allowed_null": false
|
23420
|
+
},
|
23421
|
+
{
|
23422
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
23423
|
+
"member": "string",
|
23424
|
+
"name": "RequestId",
|
23425
|
+
"type": "string"
|
23426
|
+
}
|
23427
|
+
],
|
23428
|
+
"type": "object"
|
23429
|
+
},
|
23286
23430
|
"ProcessLiveStreamRequest": {
|
23287
23431
|
"document": "ProcessLiveStream请求参数结构体",
|
23288
23432
|
"members": [
|
@@ -988,6 +988,14 @@
|
|
988
988
|
"title": "解析事件通知内容"
|
989
989
|
}
|
990
990
|
],
|
991
|
+
"ProcessImage": [
|
992
|
+
{
|
993
|
+
"document": "发起图片增强",
|
994
|
+
"input": "POST / HTTP/1.1\nHost: mps.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ProcessImage\n<公共请求参数>\n\n{\n \"InputInfo\": {\n \"Type\": \"COS\",\n \"CosInputInfo\": {\n \"Bucket\": \"bucket-test\",\n \"Region\": \"ap-shanghai\",\n \"Object\": \"/image/test.png\"\n }\n },\n \"OutputStorage\": {\n \"Type\": \"COS\",\n \"CosOutputStorage\": {\n \"Bucket\": \"bucket-test\",\n \"Region\": \"ap-shanghai\"\n }\n },\n \"ImageTask\": {\n \"EncodeConfig\": {\n \"Format\": \"jpeg\",\n \"Quality\": 75\n },\n \"EnhanceConfig\": {\n \"SuperResolution\": {\n \"Switch\": \"ON\"\n }\n }\n }\n}",
|
995
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"03b25aab-8883-497e-838f-d760c3e220f6\",\n \"TaskId\": \"3pg2p4jEfbFHYo2rgB0Kzl0esg4NeBItcZyllxO4HNJXdNeRUhk9GjDMjCj1auPv\"\n }\n}",
|
996
|
+
"title": "发起图片增强"
|
997
|
+
}
|
998
|
+
],
|
991
999
|
"ProcessLiveStream": [
|
992
1000
|
{
|
993
1001
|
"document": "对 URL 为 http://www.abc.com/abc.m3u8 的直播流发起内容识别任务。",
|
@@ -232,7 +232,7 @@
|
|
232
232
|
{
|
233
233
|
"disabled": false,
|
234
234
|
"document": "节省计划使用结束的查询结束时间",
|
235
|
-
"example": "
|
235
|
+
"example": "2024-05-11 14:23:57",
|
236
236
|
"member": "string",
|
237
237
|
"name": "EndEndDate",
|
238
238
|
"required": false,
|
@@ -241,7 +241,7 @@
|
|
241
241
|
{
|
242
242
|
"disabled": false,
|
243
243
|
"document": "节省计划使用结束的查询开始时间",
|
244
|
-
"example": "
|
244
|
+
"example": "2024-05-11 14:23:57",
|
245
245
|
"member": "string",
|
246
246
|
"name": "EndStartDate",
|
247
247
|
"required": false,
|
@@ -219,8 +219,8 @@
|
|
219
219
|
"DeleteCloudNativeAPIGatewayRouteRateLimit": [
|
220
220
|
{
|
221
221
|
"document": "删除云原生网关限流插件(路由)",
|
222
|
-
"input": "POST / HTTP/1.1\nHost: tse.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DeleteCloudNativeAPIGatewayRouteRateLimit\n<公共请求参数>\n\n{\n \"GatewayId\": \"
|
223
|
-
"output": "{\n \"Response\": {\n \"RequestId\": \"
|
222
|
+
"input": "POST / HTTP/1.1\nHost: tse.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DeleteCloudNativeAPIGatewayRouteRateLimit\n<公共请求参数>\n\n{\n \"GatewayId\": \"gateway-dde03767\",\n \"Id\": \"2a212560-220a-46f6-b139-3238eb8ea041\"\n}",
|
223
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"ffadafb6-545d-461c-ad8c-baa26c0f8955\"\n }\n}",
|
224
224
|
"title": "删除云原生网关限流插件(路由)"
|
225
225
|
}
|
226
226
|
],
|
@@ -235,8 +235,8 @@
|
|
235
235
|
"DeleteCloudNativeAPIGatewayServiceRateLimit": [
|
236
236
|
{
|
237
237
|
"document": "删除云原生网关限流插件(服务)",
|
238
|
-
"input": "POST / HTTP/1.1\nHost: tse.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DeleteCloudNativeAPIGatewayServiceRateLimit\n<公共请求参数>\n\n{\n \"GatewayId\": \"
|
239
|
-
"output": "{\n \"Response\": {\n \"RequestId\": \"
|
238
|
+
"input": "POST / HTTP/1.1\nHost: tse.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DeleteCloudNativeAPIGatewayServiceRateLimit\n<公共请求参数>\n\n{\n \"GatewayId\": \"gateway-dde03767\",\n \"Name\": \"user-service\"\n}",
|
239
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"ffadafb6-545d-461c-ad8c-baa26c0f8955\"\n }\n}",
|
240
240
|
"title": "删除云原生网关限流插件(服务)"
|
241
241
|
}
|
242
242
|
],
|
@@ -44546,7 +44546,7 @@
|
|
44546
44546
|
},
|
44547
44547
|
{
|
44548
44548
|
"disabled": false,
|
44549
|
-
"document": "
|
44549
|
+
"document": "数语的公网访问ip",
|
44550
44550
|
"example": "140.xx.xx.xx",
|
44551
44551
|
"member": "string",
|
44552
44552
|
"name": "Ip",
|
@@ -44555,7 +44555,7 @@
|
|
44555
44555
|
},
|
44556
44556
|
{
|
44557
44557
|
"disabled": false,
|
44558
|
-
"document": "
|
44558
|
+
"document": "数语的公网访问端口",
|
44559
44559
|
"example": "18091",
|
44560
44560
|
"member": "uint64",
|
44561
44561
|
"name": "Port",
|
@@ -44597,6 +44597,51 @@
|
|
44597
44597
|
"name": "OwnId",
|
44598
44598
|
"required": false,
|
44599
44599
|
"type": "string"
|
44600
|
+
},
|
44601
|
+
{
|
44602
|
+
"disabled": false,
|
44603
|
+
"document": "VpcId",
|
44604
|
+
"example": "vpc-96zopisr",
|
44605
|
+
"member": "string",
|
44606
|
+
"name": "VpcId",
|
44607
|
+
"required": false,
|
44608
|
+
"type": "string"
|
44609
|
+
},
|
44610
|
+
{
|
44611
|
+
"disabled": false,
|
44612
|
+
"document": "Vpc地域",
|
44613
|
+
"example": "ap-beijing",
|
44614
|
+
"member": "string",
|
44615
|
+
"name": "VpcRegion",
|
44616
|
+
"required": false,
|
44617
|
+
"type": "string"
|
44618
|
+
},
|
44619
|
+
{
|
44620
|
+
"disabled": false,
|
44621
|
+
"document": "数语的内网访问ip",
|
44622
|
+
"example": "10.xx.xx.xx",
|
44623
|
+
"member": "string",
|
44624
|
+
"name": "Pip",
|
44625
|
+
"required": false,
|
44626
|
+
"type": "string"
|
44627
|
+
},
|
44628
|
+
{
|
44629
|
+
"disabled": false,
|
44630
|
+
"document": "数语的内网访问端口",
|
44631
|
+
"example": "18091",
|
44632
|
+
"member": "uint64",
|
44633
|
+
"name": "Pport",
|
44634
|
+
"required": false,
|
44635
|
+
"type": "int"
|
44636
|
+
},
|
44637
|
+
{
|
44638
|
+
"disabled": false,
|
44639
|
+
"document": "是否开放公网访问数语, 1:是,0:否,默认1开放",
|
44640
|
+
"example": "1",
|
44641
|
+
"member": "uint64",
|
44642
|
+
"name": "IsPublic",
|
44643
|
+
"required": false,
|
44644
|
+
"type": "int"
|
44600
44645
|
}
|
44601
44646
|
],
|
44602
44647
|
"type": "object"
|
@@ -2033,7 +2033,7 @@
|
|
2033
2033
|
"UpdateDataModelRegistryInfo": [
|
2034
2034
|
{
|
2035
2035
|
"document": "更新数语信息,入参传入ip和端口",
|
2036
|
-
"input": "POST / HTTP/1.1\nHost: wedata.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: UpdateDataModelRegistryInfo\n<公共请求参数>\n\n{\n \"CloudappId\": \"cloudapp-x3hadra3\",\n \"AppCamRole\": \"
|
2036
|
+
"input": "POST / HTTP/1.1\nHost: wedata.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: UpdateDataModelRegistryInfo\n<公共请求参数>\n\n{\n \"CloudappId\": \"cloudapp-x3hadra3\",\n \"AppCamRole\": \"Cloudapp_x3HADRA3_Role\",\n \"AppCamRoleId\": \"4000000001321\",\n \"Ip\": \"10.2.3.4\",\n \"Port\": 18091,\n \"VpcId\": \"vpc-96zopisr\",\n \"VpcRegion\": \"ap-beijing\",\n \"Pip\": \"10.2.3.4\",\n \"Pport\": 18091,\n \"IsPublic\": 1\n}",
|
2037
2037
|
"output": "{\n \"RequestId\": \"176da6c4-d9a5-450a-a11b-b64acd4faa60\",\n \"Response\": {\n \"Data\": true,\n \"RequestId\": \"176da6c4-d9a5-450a-a11b-b64acd4faa60\"\n }\n}",
|
2038
2038
|
"title": "更新数语信息,入参传入ip和端口"
|
2039
2039
|
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: tccli
|
3
|
-
Version: 3.0.
|
3
|
+
Version: 3.0.1220.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.
|
16
|
+
Requires-Dist: tencentcloud-sdk-python>=3.0.1220
|
17
17
|
Description-Content-Type: text/markdown
|
18
18
|
|
19
19
|
# 命令行工具简介
|
@@ -1,4 +1,4 @@
|
|
1
|
-
tccli/__init__.py,sha256=
|
1
|
+
tccli/__init__.py,sha256=QfwFQOS_leZGL7y-fyIPVhXx5jIL5rgpGdgemWfm4-I,27
|
2
2
|
tccli/argparser.py,sha256=WtfpBhj2R6JHSzagy6w6Q4y3YVmyIC_yK80w3tqBPgU,5589
|
3
3
|
tccli/argument.py,sha256=ZtVo3AySpzM-Hw6_hPdU27FjUsc8QPB2fIuLy7JSBAk,8091
|
4
4
|
tccli/base_command.py,sha256=rFWNAwfS0GA6LLGNOM-iPI0RV81Jag5cZn536ZQN0pw,2859
|
@@ -127,7 +127,7 @@ tccli/services/asw/v20200722/api.json,sha256=LB_fJylnafgidz8JY0_VUH2rbGlttV7yQMp
|
|
127
127
|
tccli/services/asw/v20200722/examples.json,sha256=vy7eefBxeogPGaergIHhM7kRZg13QZz4sPxS-daHBV8,15044
|
128
128
|
tccli/services/autoscaling/__init__.py,sha256=ehT8TTIZwn3a9MLUnT2wDV_T7luS4lb-4DYWUYQ4tJc,101
|
129
129
|
tccli/services/autoscaling/autoscaling_client.py,sha256=cmVrB_1Hyuv7cR4IjF0XePS2lDF9BjKoUT1SRM7GcqY,184072
|
130
|
-
tccli/services/autoscaling/v20180419/api.json,sha256=
|
130
|
+
tccli/services/autoscaling/v20180419/api.json,sha256=vsSu6J_hDs3SGEOvQ2if2IX_X7G3wCB74HMlwSazxE8,343146
|
131
131
|
tccli/services/autoscaling/v20180419/examples.json,sha256=mI6-XXQNSS3CLEOSdHBk7lW6glYBuKfS0XgjhOGl5ZY,91644
|
132
132
|
tccli/services/ba/__init__.py,sha256=Ciy9Ux8dr3wSCp6YmkZ-gqoEFwZyrQCRNXnZY2Ppts8,83
|
133
133
|
tccli/services/ba/ba_client.py,sha256=vlsp5mwinuKF6GARMgT0FPR9MkYCBpdxgyBZ1dL-62c,15372
|
@@ -242,9 +242,9 @@ tccli/services/cds/cds_client.py,sha256=XL29-fg8yn4nTcGmNtwE6Y0R1UDrZcDMvg07EMmc
|
|
242
242
|
tccli/services/cds/v20180420/api.json,sha256=f5Jp-2SnF48ra2ozEYCCk3bSs2SguQAbYRnBVRi98Pk,19324
|
243
243
|
tccli/services/cds/v20180420/examples.json,sha256=oRKXUOxSnkDLNCy7LkyWoRdi5_syNCq2cMPP8tqNeqc,4249
|
244
244
|
tccli/services/cdwch/__init__.py,sha256=TMssHb0u8UUKvEBuk7VdF_LPeULsx1ERvmqe6F9Cwfs,89
|
245
|
-
tccli/services/cdwch/cdwch_client.py,sha256=
|
246
|
-
tccli/services/cdwch/v20200915/api.json,sha256=
|
247
|
-
tccli/services/cdwch/v20200915/examples.json,sha256=
|
245
|
+
tccli/services/cdwch/cdwch_client.py,sha256=5rjhB1OMdPNdhrjZW89FdJpgCU2k8L2ufKIDdHpFkUY,92742
|
246
|
+
tccli/services/cdwch/v20200915/api.json,sha256=FX8bJnVZsjysIdSGkQ34GZ6S-o8O7ulJ8GTTDO1vcGc,132093
|
247
|
+
tccli/services/cdwch/v20200915/examples.json,sha256=Z03fBna8e31RXPzc5Aj_5FElofSfLNRQOcMtRDcGYRg,45213
|
248
248
|
tccli/services/cdwdoris/__init__.py,sha256=rIQBmZynEI3sojHPPC3vLhdJ9YAOx5QnDIxvObAi2w4,95
|
249
249
|
tccli/services/cdwdoris/cdwdoris_client.py,sha256=VG0cvF_atNfPkzFnHI2yTkTFAkgWnnIeDEs7i4O-5E0,192546
|
250
250
|
tccli/services/cdwdoris/v20211228/api.json,sha256=szjb2vO6Agp95vmZe3gGpVt6z5YLcoF8FaLHqCsOp-0,268605
|
@@ -367,7 +367,7 @@ tccli/services/cws/v20180312/api.json,sha256=yvPs5gzcrgBkZti57TJNssoNSIq0rgozU3F
|
|
367
367
|
tccli/services/cws/v20180312/examples.json,sha256=QmYFbj9zOOBlm4aAxhOw45f5SPrzp5SDfqTv5b3n3Go,17899
|
368
368
|
tccli/services/cynosdb/__init__.py,sha256=MBWPrBSMnHBk0CGpJoI_LU1UxxPO0CX-LO2xxuCFCzg,93
|
369
369
|
tccli/services/cynosdb/cynosdb_client.py,sha256=QLGssuo31DYJ7XC0EXAO2htWgA4aDu0QiCGRLFC1jak,468918
|
370
|
-
tccli/services/cynosdb/v20190107/api.json,sha256=
|
370
|
+
tccli/services/cynosdb/v20190107/api.json,sha256=w2C_T9wX00zc2b9sgtmFMWVuOn-zjBqSXdysdmp4hXc,694423
|
371
371
|
tccli/services/cynosdb/v20190107/examples.json,sha256=K_xorVYVoChgXy9z_qOchXeXs_tGjnrGq3QUtDmDpZU,176891
|
372
372
|
tccli/services/dasb/__init__.py,sha256=x5ez0S2wQBIe-qTkGhVvwqG-rdYdP4NXZn2WfQDvF98,87
|
373
373
|
tccli/services/dasb/dasb_client.py,sha256=yrMO3CXN2k7U11q35Q08jXPJoMvbZJsdYTTVbaHRBpc,200497
|
@@ -469,13 +469,13 @@ tccli/services/es/v20180416/api.json,sha256=GHCIkks54FxHQ91j_imQPOQWYz8KkzseaI-o
|
|
469
469
|
tccli/services/es/v20180416/examples.json,sha256=gupPxXxpfC11mbXlChItNrB5KKqSzy8-oYnb-Rz8Veo,80138
|
470
470
|
tccli/services/ess/__init__.py,sha256=heBHzUKDuNxQ68yNutgyA8stCndyFWqYJqiQFozTiDs,85
|
471
471
|
tccli/services/ess/ess_client.py,sha256=AnbCo9oDJCCSc8wU4ByC3E1G7_uKVqzEmWLBCoFv1Ww,299119
|
472
|
-
tccli/services/ess/v20201111/api.json,sha256=
|
472
|
+
tccli/services/ess/v20201111/api.json,sha256=bPKwy4NJCwxsTzBoDUWdquv8wAkj7OgCZEMG6N42Si8,779082
|
473
473
|
tccli/services/ess/v20201111/examples.json,sha256=Pag1eXCXy8M261ZacLpMpJF-05-os7KoJcXmb3m9iYw,606763
|
474
474
|
tccli/services/essbasic/__init__.py,sha256=Uh5kuYtJvJ4F1S2w-19_B6a_JMF1ubh8Se-7p5LA0PE,95
|
475
475
|
tccli/services/essbasic/essbasic_client.py,sha256=b10yr2n1j2xViP_58Y1TZ6sPpqo47pZQf781uqLBNxE,424260
|
476
476
|
tccli/services/essbasic/v20201222/api.json,sha256=8yA-0DwpjBAZajDJnp3flQ2xn1sdkZMVQcvegUcemSM,184116
|
477
477
|
tccli/services/essbasic/v20201222/examples.json,sha256=TsEP0F9v4W6KvnFnczr2diMh2NX2Tp7TcCEkoeBw69Q,68751
|
478
|
-
tccli/services/essbasic/v20210526/api.json,sha256=
|
478
|
+
tccli/services/essbasic/v20210526/api.json,sha256=eZ6ac1af4kaMc8sDI9J6e8Enoe52s5Zv8PzIihFyuyk,697049
|
479
479
|
tccli/services/essbasic/v20210526/examples.json,sha256=D32PROyqB9YnNLBXjoPHt7v99-069gJLx2NOJRSxjQg,490206
|
480
480
|
tccli/services/facefusion/__init__.py,sha256=5IsXKY7EJG73GoLZDaRk_QwthyDmfes1nKAVdwZETUE,99
|
481
481
|
tccli/services/facefusion/facefusion_client.py,sha256=OK0ZKLEKnBcxnu05rrnA8M7u8bmxJjnCJaRD-hKEDRE,18707
|
@@ -673,7 +673,7 @@ tccli/services/mariadb/v20170312/api.json,sha256=-Qr5VIKxTHf9zSnogGxc8ZE2NHsIhsq
|
|
673
673
|
tccli/services/mariadb/v20170312/examples.json,sha256=hU7q3CI4VBCV56EcDgpuJp6KXgBhtcjBamY7LP8PkDU,58250
|
674
674
|
tccli/services/market/__init__.py,sha256=Te2fcuEurNAMn2WAtcQ-qIpZhkivhU42FvmLQy-cWjE,91
|
675
675
|
tccli/services/market/market_client.py,sha256=XmM2xIp7n_npLx-JrrqHndLfKUK7TJvpH6smfp0XC04,12342
|
676
|
-
tccli/services/market/v20191010/api.json,sha256=
|
676
|
+
tccli/services/market/v20191010/api.json,sha256=a0QgwZLAiJqti3JLv0UYiTb-gecAE7Vr8EhWzM6-Tyk,5628
|
677
677
|
tccli/services/market/v20191010/examples.json,sha256=Rdw2TeYBGkOZaTULWOtdb2fSjpWkcZ7FlOkRJ_Ja4uY,1341
|
678
678
|
tccli/services/memcached/__init__.py,sha256=wpgvl8Aif2UlZVB-IwL2UGkrnM83v5MKdMUlOBkSGo8,97
|
679
679
|
tccli/services/memcached/memcached_client.py,sha256=A5hs3i2BCsz2TI0ztxiAiYx-e04U6R0OgHAtS_NmRHY,9251
|
@@ -704,9 +704,9 @@ tccli/services/monitor/monitor_client.py,sha256=1SMH_J_HAbj8TlHGYg6K_nj5dQqB7JkW
|
|
704
704
|
tccli/services/monitor/v20180724/api.json,sha256=l5NHsByD8cZoNI1qzkk2KJOwgdf6U06n4WDS8dnszLw,713848
|
705
705
|
tccli/services/monitor/v20180724/examples.json,sha256=q4GQfdHmvBZteypkXvyVjNywFVvZu9l6BHRFBVmekxg,262494
|
706
706
|
tccli/services/mps/__init__.py,sha256=4M5o2xc0u3rqtgz_5an9Qxw2QaOqwBq8Fjc3IB64p2o,85
|
707
|
-
tccli/services/mps/mps_client.py,sha256=
|
708
|
-
tccli/services/mps/v20190612/api.json,sha256=
|
709
|
-
tccli/services/mps/v20190612/examples.json,sha256=
|
707
|
+
tccli/services/mps/mps_client.py,sha256=xEmQM9UdRMBCtEH3SO98w6gDIPBzQXEbSD2bOTOOFq8,345849
|
708
|
+
tccli/services/mps/v20190612/api.json,sha256=qb0s9qROWKum39YHqdh2D6WtKhzaQ4r6dMRwsCIoZ64,1058383
|
709
|
+
tccli/services/mps/v20190612/examples.json,sha256=eOMQDcRhaiugR8rJpH8RrmhRP7kdEwQuAK1nR4sM7uI,305774
|
710
710
|
tccli/services/mqtt/__init__.py,sha256=zchTxfWVKqmIOpb6siJtQcRDR5OfcpauX-ONDH5g32w,87
|
711
711
|
tccli/services/mqtt/mqtt_client.py,sha256=GfdVp-pmmt_Oofzuykhtsf4rXC0eBK3S4C2Z8qaq9Hc,65045
|
712
712
|
tccli/services/mqtt/v20240516/api.json,sha256=OqpIAvrV4gKMVtmjmeDS_5vtoqVimcVGwbFbBVA_i7s,68591
|
@@ -857,7 +857,7 @@ tccli/services/sts/v20180813/api.json,sha256=c0-oPoGHEBjAAfYelQGdo8Es8M2ak17kQ4f
|
|
857
857
|
tccli/services/sts/v20180813/examples.json,sha256=8CHT2vs_3z0devNWC_obvgELzvrmbEp5BjLpPNYI77M,6580
|
858
858
|
tccli/services/svp/__init__.py,sha256=pY2T-5EZW3dpSeh5RhhSFEdLX6WqFK4D31l_6_zRMv8,85
|
859
859
|
tccli/services/svp/svp_client.py,sha256=MyCWXUVyyCPLameqMq56cSQlyzKIuY0VAO244lmh1o8,18579
|
860
|
-
tccli/services/svp/v20240125/api.json,sha256=
|
860
|
+
tccli/services/svp/v20240125/api.json,sha256=aSOS9DWqRdmh_0OM9qVwTT9KqmfGnAcEqSkXAGvlB4I,27935
|
861
861
|
tccli/services/svp/v20240125/examples.json,sha256=WLnZZngMuS5XhaLi2rT7OThYxmbHHmu4PRnsxuQA1qE,4525
|
862
862
|
tccli/services/taf/__init__.py,sha256=5CrRguR-EWI0Fui3N1qsR30BKxCkjLbJFqpJKX-6Gng,85
|
863
863
|
tccli/services/taf/taf_client.py,sha256=jDR6FVWh6X-2SAeT6ipJQmqxFzW2FIKciqEKdDjyNHQ,18599
|
@@ -1046,7 +1046,7 @@ tccli/services/trtc/v20190722/examples.json,sha256=XpJSdLdSlB_j9DyWVQqNymwQJqUi4
|
|
1046
1046
|
tccli/services/tse/__init__.py,sha256=3Y4ZA_IFX8df4-ir1I9p0u4ksAywRrtd2CAvJ5yKyz0,85
|
1047
1047
|
tccli/services/tse/tse_client.py,sha256=m2xXSp8PcaPEq0kxqCOS7ZBNK8PRS_Dbva1D36uBZi0,364544
|
1048
1048
|
tccli/services/tse/v20201207/api.json,sha256=Des9g_YIoNxwQvdqsJvkbyrT76Og6QmhjDlIEXbbMYc,550497
|
1049
|
-
tccli/services/tse/v20201207/examples.json,sha256=
|
1049
|
+
tccli/services/tse/v20201207/examples.json,sha256=Fw6fcmm2rSegJQDIBqkOG-WigQ0bUXOqS6n6umtxHio,121187
|
1050
1050
|
tccli/services/tsf/__init__.py,sha256=hvORrthG6YRLLU39wB0CxW441UZHSkET1ZA8mIpSq5Y,85
|
1051
1051
|
tccli/services/tsf/tsf_client.py,sha256=Z-1PNswHMLz_ag_B8Mm9R2Av8Cv5OoCCBIXYlNHR1Pg,692840
|
1052
1052
|
tccli/services/tsf/v20180326/api.json,sha256=y-rG4jMjOqh3_G1fLEqhbTqmvsZbLu_dhD8tjCgnrnc,967653
|
@@ -1121,8 +1121,8 @@ tccli/services/wav/v20210129/api.json,sha256=Tc_Kci6XAkHWH5yIplNsNVX5xTL-6iInVe4
|
|
1121
1121
|
tccli/services/wav/v20210129/examples.json,sha256=rit7YipgiuaecpM8VSFqMHgRankE-X69Cu0aC5mVexg,35009
|
1122
1122
|
tccli/services/wedata/__init__.py,sha256=F95gQMminW0gPanAt4q4yW30-8c7_2F2FVQzZZvcaTo,91
|
1123
1123
|
tccli/services/wedata/wedata_client.py,sha256=_ZovxXKFbMccMG3EtV4w59I7ALDnav66nrQHY5u4ieg,749112
|
1124
|
-
tccli/services/wedata/v20210820/api.json,sha256=
|
1125
|
-
tccli/services/wedata/v20210820/examples.json,sha256=
|
1124
|
+
tccli/services/wedata/v20210820/api.json,sha256=Bf9kGu0QJUs6u3qpSBWA0xKXsARJIywREsdFwZumV0U,1563812
|
1125
|
+
tccli/services/wedata/v20210820/examples.json,sha256=_PdCl-bS6tLCCFIMeOpaAut8b0RtT-QC6GZSZkBjM0c,591001
|
1126
1126
|
tccli/services/weilingwith/__init__.py,sha256=I04f9CndPHuhInQKYjgkxKufojP4j5EJxBtfPNWLTfo,101
|
1127
1127
|
tccli/services/weilingwith/weilingwith_client.py,sha256=QnCAQd-sSqJlGFuJyPZI5XH5gVSq-A9LQNIJB-gwVVY,205422
|
1128
1128
|
tccli/services/weilingwith/v20230427/api.json,sha256=aV9WnQUYlvBs4C7MHXZxHjKYLda8_uDWgGHyEPsEiqk,442383
|
@@ -1149,8 +1149,8 @@ tccli/services/yunsou/v20180504/api.json,sha256=2808fil5p3pTEJ3SqXEEq7eSrASZOiv8
|
|
1149
1149
|
tccli/services/yunsou/v20180504/examples.json,sha256=Jg4WuqS_Wxl7eTBMbzjem65FuUZQi3qq3xtlBNFZlTU,11870
|
1150
1150
|
tccli/services/yunsou/v20191115/api.json,sha256=r_p7c7fMNylQVDpSN0CkUB4Cx1nYW1lI3BM_Zi50FNs,15932
|
1151
1151
|
tccli/services/yunsou/v20191115/examples.json,sha256=vN5MzexHVPMckm4MbnXNiOe3KKiVchvf4_uLpjOskuk,3983
|
1152
|
-
tccli-3.0.
|
1153
|
-
tccli-3.0.
|
1154
|
-
tccli-3.0.
|
1155
|
-
tccli-3.0.
|
1156
|
-
tccli-3.0.
|
1152
|
+
tccli-3.0.1220.1.dist-info/METADATA,sha256=Cr9362shHo1H3YwKvcsCv7XdUI1LFKK0zFXlCVmLgWE,16408
|
1153
|
+
tccli-3.0.1220.1.dist-info/WHEEL,sha256=HyPWovjK_wfsxZqVnw7Bu5rgKxNh3Nm__lHm0ALDcb4,101
|
1154
|
+
tccli-3.0.1220.1.dist-info/entry_points.txt,sha256=9ZzsXxi7Xj3ZneT7VxRVJpFvnmdEOeysh999_0gWVvo,85
|
1155
|
+
tccli-3.0.1220.1.dist-info/license_files/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
1156
|
+
tccli-3.0.1220.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|