tccli 3.0.1259.1__py2.py3-none-any.whl → 3.0.1261.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 +1 -1
- tccli/services/cfw/cfw_client.py +0 -53
- tccli/services/cfw/v20190904/api.json +0 -43
- tccli/services/cfw/v20190904/examples.json +0 -8
- tccli/services/lighthouse/v20200324/api.json +3 -3
- tccli/services/lkeap/lkeap_client.py +53 -0
- tccli/services/lkeap/v20240522/api.json +52 -0
- tccli/services/lkeap/v20240522/examples.json +8 -0
- tccli/services/teo/v20220901/api.json +6 -6
- {tccli-3.0.1259.1.dist-info → tccli-3.0.1261.1.dist-info}/METADATA +2 -2
- {tccli-3.0.1259.1.dist-info → tccli-3.0.1261.1.dist-info}/RECORD +14 -14
- {tccli-3.0.1259.1.dist-info → tccli-3.0.1261.1.dist-info}/WHEEL +0 -0
- {tccli-3.0.1259.1.dist-info → tccli-3.0.1261.1.dist-info}/entry_points.txt +0 -0
- {tccli-3.0.1259.1.dist-info → tccli-3.0.1261.1.dist-info}/license_files/LICENSE +0 -0
tccli/__init__.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = '3.0.
|
1
|
+
__version__ = '3.0.1261.1'
|
tccli/services/cfw/cfw_client.py
CHANGED
@@ -5113,58 +5113,6 @@ def doModifyRunSyncAsset(args, parsed_globals):
|
|
5113
5113
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
5114
5114
|
|
5115
5115
|
|
5116
|
-
def doModifyAllVPCSwitchStatus(args, parsed_globals):
|
5117
|
-
g_param = parse_global_arg(parsed_globals)
|
5118
|
-
|
5119
|
-
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
5120
|
-
cred = credential.CVMRoleCredential()
|
5121
|
-
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
5122
|
-
cred = credential.STSAssumeRoleCredential(
|
5123
|
-
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
5124
|
-
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
5125
|
-
)
|
5126
|
-
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):
|
5127
|
-
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
5128
|
-
else:
|
5129
|
-
cred = credential.Credential(
|
5130
|
-
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
5131
|
-
)
|
5132
|
-
http_profile = HttpProfile(
|
5133
|
-
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
5134
|
-
reqMethod="POST",
|
5135
|
-
endpoint=g_param[OptionsDefine.Endpoint],
|
5136
|
-
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
5137
|
-
)
|
5138
|
-
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
5139
|
-
if g_param[OptionsDefine.Language]:
|
5140
|
-
profile.language = g_param[OptionsDefine.Language]
|
5141
|
-
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
5142
|
-
client = mod.CfwClient(cred, g_param[OptionsDefine.Region], profile)
|
5143
|
-
client._sdkVersion += ("_CLI_" + __version__)
|
5144
|
-
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
5145
|
-
model = models.ModifyAllVPCSwitchStatusRequest()
|
5146
|
-
model.from_json_string(json.dumps(args))
|
5147
|
-
start_time = time.time()
|
5148
|
-
while True:
|
5149
|
-
rsp = client.ModifyAllVPCSwitchStatus(model)
|
5150
|
-
result = rsp.to_json_string()
|
5151
|
-
try:
|
5152
|
-
json_obj = json.loads(result)
|
5153
|
-
except TypeError as e:
|
5154
|
-
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
5155
|
-
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
5156
|
-
break
|
5157
|
-
cur_time = time.time()
|
5158
|
-
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
5159
|
-
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
5160
|
-
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
5161
|
-
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
5162
|
-
else:
|
5163
|
-
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
5164
|
-
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
5165
|
-
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
5166
|
-
|
5167
|
-
|
5168
5116
|
def doDescribeGuideScanInfo(args, parsed_globals):
|
5169
5117
|
g_param = parse_global_arg(parsed_globals)
|
5170
5118
|
|
@@ -6054,7 +6002,6 @@ ACTION_MAP = {
|
|
6054
6002
|
"ModifyEnterpriseSecurityDispatchStatus": doModifyEnterpriseSecurityDispatchStatus,
|
6055
6003
|
"DescribeTLogInfo": doDescribeTLogInfo,
|
6056
6004
|
"ModifyRunSyncAsset": doModifyRunSyncAsset,
|
6057
|
-
"ModifyAllVPCSwitchStatus": doModifyAllVPCSwitchStatus,
|
6058
6005
|
"DescribeGuideScanInfo": doDescribeGuideScanInfo,
|
6059
6006
|
"DescribeAddressTemplateList": doDescribeAddressTemplateList,
|
6060
6007
|
"DescribeNatFwInstancesInfo": doDescribeNatFwInstancesInfo,
|
@@ -525,13 +525,6 @@
|
|
525
525
|
"output": "ModifyAllRuleStatusResponse",
|
526
526
|
"status": "online"
|
527
527
|
},
|
528
|
-
"ModifyAllVPCSwitchStatus": {
|
529
|
-
"document": "该接口已不再使用\n\nVPC防火墙一键开关",
|
530
|
-
"input": "ModifyAllVPCSwitchStatusRequest",
|
531
|
-
"name": "VPC防火墙一键开关",
|
532
|
-
"output": "ModifyAllVPCSwitchStatusResponse",
|
533
|
-
"status": "deprecated"
|
534
|
-
},
|
535
528
|
"ModifyAssetScan": {
|
536
529
|
"document": "资产扫描",
|
537
530
|
"input": "ModifyAssetScanRequest",
|
@@ -9971,42 +9964,6 @@
|
|
9971
9964
|
],
|
9972
9965
|
"type": "object"
|
9973
9966
|
},
|
9974
|
-
"ModifyAllVPCSwitchStatusRequest": {
|
9975
|
-
"document": "ModifyAllVPCSwitchStatus请求参数结构体",
|
9976
|
-
"members": [
|
9977
|
-
{
|
9978
|
-
"disabled": false,
|
9979
|
-
"document": "状态,0:关闭,1:开启",
|
9980
|
-
"example": "0",
|
9981
|
-
"member": "int64",
|
9982
|
-
"name": "Status",
|
9983
|
-
"required": true,
|
9984
|
-
"type": "int"
|
9985
|
-
},
|
9986
|
-
{
|
9987
|
-
"disabled": false,
|
9988
|
-
"document": "选中的防火墙开关Id",
|
9989
|
-
"example": "[]",
|
9990
|
-
"member": "string",
|
9991
|
-
"name": "FireWallVpcIds",
|
9992
|
-
"required": false,
|
9993
|
-
"type": "list"
|
9994
|
-
}
|
9995
|
-
],
|
9996
|
-
"type": "object"
|
9997
|
-
},
|
9998
|
-
"ModifyAllVPCSwitchStatusResponse": {
|
9999
|
-
"document": "ModifyAllVPCSwitchStatus返回参数结构体",
|
10000
|
-
"members": [
|
10001
|
-
{
|
10002
|
-
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
10003
|
-
"member": "string",
|
10004
|
-
"name": "RequestId",
|
10005
|
-
"type": "string"
|
10006
|
-
}
|
10007
|
-
],
|
10008
|
-
"type": "object"
|
10009
|
-
},
|
10010
9967
|
"ModifyAssetScanRequest": {
|
10011
9968
|
"document": "ModifyAssetScan请求参数结构体",
|
10012
9969
|
"members": [
|
@@ -636,14 +636,6 @@
|
|
636
636
|
"title": "启用停用全部规则"
|
637
637
|
}
|
638
638
|
],
|
639
|
-
"ModifyAllVPCSwitchStatus": [
|
640
|
-
{
|
641
|
-
"document": "",
|
642
|
-
"input": "POST / HTTP/1.1\nHost: cfw.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ModifyAllVPCSwitchStatus\n<公共请求参数>\n\n{\n \"FireWallVpcIds\": [],\n \"Status\": 0\n}",
|
643
|
-
"output": "{\n \"Response\": {\n \"RequestId\": \"3c140219-cfe9-470e-b241-907877d6fb03\"\n }\n}",
|
644
|
-
"title": "一键开启和关闭"
|
645
|
-
}
|
646
|
-
],
|
647
639
|
"ModifyAssetScan": [
|
648
640
|
{
|
649
641
|
"document": "",
|
@@ -407,7 +407,7 @@
|
|
407
407
|
"status": "online"
|
408
408
|
},
|
409
409
|
"DescribeResetInstanceBlueprints": {
|
410
|
-
"document": "本接口(DescribeResetInstanceBlueprints
|
410
|
+
"document": "本接口(DescribeResetInstanceBlueprints)查询重置实例的镜像信息。对于游戏专区实例,该接口只会返回当前镜像,且不支持 Filters 参数。",
|
411
411
|
"input": "DescribeResetInstanceBlueprintsRequest",
|
412
412
|
"name": "查询重置实例的镜像信息",
|
413
413
|
"output": "DescribeResetInstanceBlueprintsResponse",
|
@@ -680,7 +680,7 @@
|
|
680
680
|
"status": "online"
|
681
681
|
},
|
682
682
|
"ResetInstance": {
|
683
|
-
"document": "本接口(ResetInstance)用于重装指定实例上的镜像。\n\n* 如果指定了 BlueprintId 参数,则使用指定的镜像重装;否则按照当前实例使用的镜像进行重装。\n* 系统盘将会被格式化,并重置;请确保系统盘中无重要文件。\n* 目前不支持实例使用该接口实现 LINUX_UNIX 和 WINDOWS 操作系统切换。\n* 本接口为异步接口,请求发送成功后会返回一个 RequestId,此时操作并未立即完成。实例操作结果可以通过调用 <a href=\"https://cloud.tencent.com/document/product/1207/47573\" target=\"_blank\">DescribeInstances</a> 接口查询,如果实例的最新操作状态(LatestOperationState)为“SUCCESS
|
683
|
+
"document": "本接口(ResetInstance)用于重装指定实例上的镜像。\n\n* 如果指定了 BlueprintId 参数,则使用指定的镜像重装;否则按照当前实例使用的镜像进行重装。\n* 系统盘将会被格式化,并重置;请确保系统盘中无重要文件。\n* 目前不支持实例使用该接口实现 LINUX_UNIX 和 WINDOWS 操作系统切换。\n* 本接口为异步接口,请求发送成功后会返回一个 RequestId,此时操作并未立即完成。实例操作结果可以通过调用 <a href=\"https://cloud.tencent.com/document/product/1207/47573\" target=\"_blank\">DescribeInstances</a> 接口查询,如果实例的最新操作状态(LatestOperationState)为“SUCCESS”,则代表操作成功。\n* 对于游戏专区实例,仅支持重装当前镜像。",
|
684
684
|
"input": "ResetInstanceRequest",
|
685
685
|
"name": "重装系统",
|
686
686
|
"output": "ResetInstanceResponse",
|
@@ -2848,7 +2848,7 @@
|
|
2848
2848
|
"members": [
|
2849
2849
|
{
|
2850
2850
|
"disabled": false,
|
2851
|
-
"document": "套餐 ID
|
2851
|
+
"document": "套餐 ID 列表。每次请求批量套餐的上限为 100。可通过[DescribeBundles](https://cloud.tencent.com/document/product/1207/47575)接口返回值中的BundleId获取。",
|
2852
2852
|
"example": "[\"bundle_ntp_small1_500”]",
|
2853
2853
|
"member": "string",
|
2854
2854
|
"name": "BundleIds",
|
@@ -1317,6 +1317,58 @@ def doUploadDoc(args, parsed_globals):
|
|
1317
1317
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
1318
1318
|
|
1319
1319
|
|
1320
|
+
def doChatCompletions(args, parsed_globals):
|
1321
|
+
g_param = parse_global_arg(parsed_globals)
|
1322
|
+
|
1323
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
1324
|
+
cred = credential.CVMRoleCredential()
|
1325
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
1326
|
+
cred = credential.STSAssumeRoleCredential(
|
1327
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
1328
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
1329
|
+
)
|
1330
|
+
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):
|
1331
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
1332
|
+
else:
|
1333
|
+
cred = credential.Credential(
|
1334
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
1335
|
+
)
|
1336
|
+
http_profile = HttpProfile(
|
1337
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
1338
|
+
reqMethod="POST",
|
1339
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
1340
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
1341
|
+
)
|
1342
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
1343
|
+
if g_param[OptionsDefine.Language]:
|
1344
|
+
profile.language = g_param[OptionsDefine.Language]
|
1345
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
1346
|
+
client = mod.LkeapClient(cred, g_param[OptionsDefine.Region], profile)
|
1347
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
1348
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
1349
|
+
model = models.ChatCompletionsRequest()
|
1350
|
+
model.from_json_string(json.dumps(args))
|
1351
|
+
start_time = time.time()
|
1352
|
+
while True:
|
1353
|
+
rsp = client.ChatCompletions(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
|
+
|
1320
1372
|
CLIENT_MAP = {
|
1321
1373
|
"v20240522": lkeap_client_v20240522,
|
1322
1374
|
|
@@ -1353,6 +1405,7 @@ ACTION_MAP = {
|
|
1353
1405
|
"CreateSplitDocumentFlow": doCreateSplitDocumentFlow,
|
1354
1406
|
"UploadDocRealtime": doUploadDocRealtime,
|
1355
1407
|
"UploadDoc": doUploadDoc,
|
1408
|
+
"ChatCompletions": doChatCompletions,
|
1356
1409
|
|
1357
1410
|
}
|
1358
1411
|
|
@@ -1,5 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"actions": {
|
3
|
+
"ChatCompletions": {
|
4
|
+
"document": "对话",
|
5
|
+
"input": "ChatCompletionsRequest",
|
6
|
+
"name": "对话",
|
7
|
+
"output": "ChatCompletionsResponse",
|
8
|
+
"status": "online"
|
9
|
+
},
|
3
10
|
"CreateAttributeLabel": {
|
4
11
|
"document": "用于为问答对创建属性标签,以便对内容进行分类和管理。 使用场景:当需要为问答对添加分类标签和属性标记时使用,比如为问答对添加“售后”标签。",
|
5
12
|
"input": "CreateAttributeLabelRequest",
|
@@ -289,6 +296,51 @@
|
|
289
296
|
],
|
290
297
|
"usage": "both"
|
291
298
|
},
|
299
|
+
"ChatCompletionsRequest": {
|
300
|
+
"document": "ChatCompletions请求参数结构体",
|
301
|
+
"members": [
|
302
|
+
{
|
303
|
+
"disabled": false,
|
304
|
+
"document": "模型名称",
|
305
|
+
"example": "deepseek-r1",
|
306
|
+
"member": "string",
|
307
|
+
"name": "Model",
|
308
|
+
"required": true,
|
309
|
+
"type": "string"
|
310
|
+
},
|
311
|
+
{
|
312
|
+
"disabled": false,
|
313
|
+
"document": "会话列表",
|
314
|
+
"example": "[{\"role\":\"user\",\"content\":\"你好\"}]",
|
315
|
+
"member": "Message",
|
316
|
+
"name": "Messages",
|
317
|
+
"required": true,
|
318
|
+
"type": "list"
|
319
|
+
},
|
320
|
+
{
|
321
|
+
"disabled": false,
|
322
|
+
"document": "是否流式输出",
|
323
|
+
"example": "true",
|
324
|
+
"member": "bool",
|
325
|
+
"name": "Stream",
|
326
|
+
"required": false,
|
327
|
+
"type": "bool"
|
328
|
+
}
|
329
|
+
],
|
330
|
+
"type": "object"
|
331
|
+
},
|
332
|
+
"ChatCompletionsResponse": {
|
333
|
+
"document": "ChatCompletions返回参数结构体",
|
334
|
+
"members": [
|
335
|
+
{
|
336
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。本接口为流式响应接口,当请求成功时,RequestId 会被放在 HTTP 响应的 Header \"X-TC-RequestId\" 中。",
|
337
|
+
"member": "string",
|
338
|
+
"name": "RequestId",
|
339
|
+
"type": "string"
|
340
|
+
}
|
341
|
+
],
|
342
|
+
"type": "object"
|
343
|
+
},
|
292
344
|
"CreateAttributeLabelRequest": {
|
293
345
|
"document": "CreateAttributeLabel请求参数结构体",
|
294
346
|
"members": [
|
@@ -1,5 +1,13 @@
|
|
1
1
|
{
|
2
2
|
"actions": {
|
3
|
+
"ChatCompletions": [
|
4
|
+
{
|
5
|
+
"document": "对话",
|
6
|
+
"input": "POST / HTTP/1.1\nHost: lkeap.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ChatCompletions\n<公共请求参数>\n\n{\n \"Model\": \"deepseek-r1\",\n \"Messages\": [\n {\n \"Role\": \"user\",\n \"Content\": \"你好\"\n }\n ],\n \"Stream\": false\n}",
|
7
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"26b3ed8b-960d-4d68-bc7f-098839f4b574\"\n }\n}",
|
8
|
+
"title": "对话"
|
9
|
+
}
|
10
|
+
],
|
3
11
|
"CreateAttributeLabel": [
|
4
12
|
{
|
5
13
|
"document": "添加属性标签",
|
@@ -176,9 +176,9 @@
|
|
176
176
|
"status": "online"
|
177
177
|
},
|
178
178
|
"CreateRule": {
|
179
|
-
"document": "
|
179
|
+
"document": "本接口为旧版,EdgeOne 已对规则引擎相关接口全面升级,详情请参考 [CreateL7AccRules](https://cloud.tencent.com/document/product/1552/115822)。",
|
180
180
|
"input": "CreateRuleRequest",
|
181
|
-
"name": "
|
181
|
+
"name": "创建规则引擎规则(旧)",
|
182
182
|
"output": "CreateRuleResponse",
|
183
183
|
"status": "online"
|
184
184
|
},
|
@@ -918,9 +918,9 @@
|
|
918
918
|
"status": "online"
|
919
919
|
},
|
920
920
|
"ModifyRule": {
|
921
|
-
"document": "
|
921
|
+
"document": "本接口为旧版,EdgeOne 已对规则引擎相关接口全面升级,详情请参考 [ModifyL7AccRule](https://cloud.tencent.com/document/product/1552/115818)。",
|
922
922
|
"input": "ModifyRuleRequest",
|
923
|
-
"name": "
|
923
|
+
"name": "修改规则引擎规则(旧)",
|
924
924
|
"output": "ModifyRuleResponse",
|
925
925
|
"status": "online"
|
926
926
|
},
|
@@ -5863,7 +5863,7 @@
|
|
5863
5863
|
{
|
5864
5864
|
"disabled": false,
|
5865
5865
|
"document": "规则标签。",
|
5866
|
-
"example": "
|
5866
|
+
"example": "test",
|
5867
5867
|
"member": "string",
|
5868
5868
|
"name": "Tags",
|
5869
5869
|
"required": false,
|
@@ -16357,7 +16357,7 @@
|
|
16357
16357
|
{
|
16358
16358
|
"disabled": false,
|
16359
16359
|
"document": "规则标签。",
|
16360
|
-
"example": "
|
16360
|
+
"example": "test",
|
16361
16361
|
"member": "string",
|
16362
16362
|
"name": "Tags",
|
16363
16363
|
"required": false,
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: tccli
|
3
|
-
Version: 3.0.
|
3
|
+
Version: 3.0.1261.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.1261
|
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=Cti-C6UWTDv1lSYeBpbOOSmuiAV_HPteZ_22SkYL4iI,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
|
@@ -270,9 +270,9 @@ tccli/services/cfs/cfs_client.py,sha256=Eya8IK21KHrn3qvo31NY_MPP9ezRIuJ5nCMMoc21
|
|
270
270
|
tccli/services/cfs/v20190719/api.json,sha256=GOoUIhGulhivg17Fu7so8FK7uTwD87G0qKnkS_yUu7A,161378
|
271
271
|
tccli/services/cfs/v20190719/examples.json,sha256=8pDBfVVzGoF-kpwc8kOpr1LVMRNFZZZ8LJTAoWfTKnw,33339
|
272
272
|
tccli/services/cfw/__init__.py,sha256=2hNwXcNofHJCalk9HHEbOcgYz6XKuYmZk_iBroa5YsY,85
|
273
|
-
tccli/services/cfw/cfw_client.py,sha256=
|
274
|
-
tccli/services/cfw/v20190904/api.json,sha256=
|
275
|
-
tccli/services/cfw/v20190904/examples.json,sha256=
|
273
|
+
tccli/services/cfw/cfw_client.py,sha256=LI__T8BC4F2ycqYcezuF25aJPb6DqSHo_-DEPXNCpHc,356482
|
274
|
+
tccli/services/cfw/v20190904/api.json,sha256=YBY6GIFXvV7rNGmQCx7htxJFepV9oPxzi69cbLzJ8Xg,506126
|
275
|
+
tccli/services/cfw/v20190904/examples.json,sha256=Wvkk09VSfu33SbRlMbinO_Hasey1xz_LC4kVVrfAPl8,125634
|
276
276
|
tccli/services/chdfs/__init__.py,sha256=lx3R4qylmSHNb4EJWL_ipMVfkkva_S3QOM12FRsTOVI,89
|
277
277
|
tccli/services/chdfs/chdfs_client.py,sha256=WQKd0rbmdVDO3SiAfaypbYXovczpljPuP5jkGTq8wAE,96012
|
278
278
|
tccli/services/chdfs/v20190718/api.json,sha256=4uXYSRgKwlGRkrE7EKUv10HjgPEF9To0Hhnl_33TFLU,49212
|
@@ -649,7 +649,7 @@ tccli/services/lcic/v20220817/api.json,sha256=PWM2I-JxmeaqtokXUxFmxV7jutHpPuz22L
|
|
649
649
|
tccli/services/lcic/v20220817/examples.json,sha256=Up7P1xvh_lYTSffLrTaf7ggEYfQSA12zPbDcltYIAfQ,57618
|
650
650
|
tccli/services/lighthouse/__init__.py,sha256=mthGX-k-GPfpudeGSVAEXUMitx-xg7Aw2ZcXxrjf_78,99
|
651
651
|
tccli/services/lighthouse/lighthouse_client.py,sha256=wFSl9hjDUzqvm9RaBXXdA4TaLMdTcohAnXJQwHcaafc,345276
|
652
|
-
tccli/services/lighthouse/v20200324/api.json,sha256=
|
652
|
+
tccli/services/lighthouse/v20200324/api.json,sha256=DjyUavJjvy4rJToL8dkqTov8tlco5OtM3FnxjGduK8o,380191
|
653
653
|
tccli/services/lighthouse/v20200324/examples.json,sha256=g6PBMW1dd3GQg07qB7dUt8-Nd2-HiuleFVNoTfsu-po,132962
|
654
654
|
tccli/services/live/__init__.py,sha256=RcvY72t1P1PSv7r9d9SCa9Iv7qvP8ok30HwiMcPVAs4,87
|
655
655
|
tccli/services/live/live_client.py,sha256=pvQaqgngKsJkko5gDdcv29TPKK23eAvvBGKb908vHaY,613458
|
@@ -660,9 +660,9 @@ tccli/services/lke/lke_client.py,sha256=eVVbtENfY5pgGrELPi-91VJB3UzC4TPB-J0yx3m1
|
|
660
660
|
tccli/services/lke/v20231130/api.json,sha256=L-ZkFJqOqcrpVgZ4jvQX_Om3Hsx0bC0rJwWYR1w3YBY,468959
|
661
661
|
tccli/services/lke/v20231130/examples.json,sha256=rJD9w_EteQy7nRXFKzO2c3ms1-qA60SOBWBL-YR7HZw,249886
|
662
662
|
tccli/services/lkeap/__init__.py,sha256=asxLax87Gwt4UF1pQoh5GX51weKCm6t8FPDRq-aKv7w,89
|
663
|
-
tccli/services/lkeap/lkeap_client.py,sha256=
|
664
|
-
tccli/services/lkeap/v20240522/api.json,sha256=
|
665
|
-
tccli/services/lkeap/v20240522/examples.json,sha256=
|
663
|
+
tccli/services/lkeap/lkeap_client.py,sha256=FmVnY270LDf6WiXZg1gfdpwPDYMzLaSiYTFne3VdoVQ,86124
|
664
|
+
tccli/services/lkeap/v20240522/api.json,sha256=PKfRZuzoh9QMB6tH5H4FDu97B60ZK36ZzDFRBmToZM8,75351
|
665
|
+
tccli/services/lkeap/v20240522/examples.json,sha256=JjgQ90U3De0csF4xSQAFhjWVJhh0wFs3TC79lJkI-aw,18941
|
666
666
|
tccli/services/lowcode/__init__.py,sha256=Kwnfhcs3YjlqMpMouELxDMbP4F0BLDwcaqTPutTSvDs,93
|
667
667
|
tccli/services/lowcode/lowcode_client.py,sha256=CCcE5zFcrRqXqP6a1ojCRluayVSBE4yY5tY7W1foCjA,9260
|
668
668
|
tccli/services/lowcode/v20210108/api.json,sha256=hQQF1qhVv6hsWmCmrqKtleToPFUiRxy_sAKINMRTvJY,17390
|
@@ -967,7 +967,7 @@ tccli/services/teo/__init__.py,sha256=nvzcUSkSQuTftWEJ399BUZpUk_0jEq-l97539DwbAw
|
|
967
967
|
tccli/services/teo/teo_client.py,sha256=PydKX2L5SzjTRrBM1Mb089sJIV16nYjcEXduWG41AUI,439927
|
968
968
|
tccli/services/teo/v20220106/api.json,sha256=HGvEHEkfctNBazbSyZvWAUPSvYa4c_YxZJ9uW61RD4k,29733
|
969
969
|
tccli/services/teo/v20220106/examples.json,sha256=2s6dgk31pZ26N8hrFLCmQzVocmsC_QK1dO8WVBdJ8A0,5325
|
970
|
-
tccli/services/teo/v20220901/api.json,sha256=
|
970
|
+
tccli/services/teo/v20220901/api.json,sha256=ItMWmAvH33RukZ8SAdODQULFG2Cxz1xaysJuFY4GAuY,875227
|
971
971
|
tccli/services/teo/v20220901/examples.json,sha256=fk_hLaQR6Td_-lTSAnCFQZeB9mSSQcBBz9Ri5-Qoa54,370079
|
972
972
|
tccli/services/thpc/__init__.py,sha256=NancJ76I7PbEBt7VJCaGnBsfMEZm2ezBvYqwxyLbLHo,87
|
973
973
|
tccli/services/thpc/thpc_client.py,sha256=Xaabx_rj2DoJHG_MpHXwQ204gesY6CNf835YQp_MHVg,80712
|
@@ -1165,8 +1165,8 @@ tccli/services/yunsou/v20180504/api.json,sha256=2808fil5p3pTEJ3SqXEEq7eSrASZOiv8
|
|
1165
1165
|
tccli/services/yunsou/v20180504/examples.json,sha256=Jg4WuqS_Wxl7eTBMbzjem65FuUZQi3qq3xtlBNFZlTU,11870
|
1166
1166
|
tccli/services/yunsou/v20191115/api.json,sha256=r_p7c7fMNylQVDpSN0CkUB4Cx1nYW1lI3BM_Zi50FNs,15932
|
1167
1167
|
tccli/services/yunsou/v20191115/examples.json,sha256=vN5MzexHVPMckm4MbnXNiOe3KKiVchvf4_uLpjOskuk,3983
|
1168
|
-
tccli-3.0.
|
1169
|
-
tccli-3.0.
|
1170
|
-
tccli-3.0.
|
1171
|
-
tccli-3.0.
|
1172
|
-
tccli-3.0.
|
1168
|
+
tccli-3.0.1261.1.dist-info/METADATA,sha256=_rYdhf9z_oqSHlmwcTdt4splg4viYSoyfg-6gr5Pipc,16408
|
1169
|
+
tccli-3.0.1261.1.dist-info/WHEEL,sha256=HyPWovjK_wfsxZqVnw7Bu5rgKxNh3Nm__lHm0ALDcb4,101
|
1170
|
+
tccli-3.0.1261.1.dist-info/entry_points.txt,sha256=9ZzsXxi7Xj3ZneT7VxRVJpFvnmdEOeysh999_0gWVvo,85
|
1171
|
+
tccli-3.0.1261.1.dist-info/license_files/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
1172
|
+
tccli-3.0.1261.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|