tccli 3.0.1335.1__py2.py3-none-any.whl → 3.0.1337.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/antiddos/v20200309/api.json +2 -2
- tccli/services/bi/v20220105/api.json +93 -0
- tccli/services/captcha/v20190722/api.json +10 -0
- tccli/services/cdb/v20170320/api.json +4 -4
- tccli/services/cdwdoris/v20211228/api.json +2 -2
- tccli/services/cfs/v20190719/api.json +7 -7
- tccli/services/cfw/v20190904/api.json +9 -0
- tccli/services/cls/v20201016/api.json +10 -0
- tccli/services/cme/v20191029/api.json +1 -1
- tccli/services/csip/v20221121/api.json +10 -0
- tccli/services/es/v20250101/api.json +50 -0
- tccli/services/ess/v20201111/api.json +10 -1
- tccli/services/essbasic/v20210526/api.json +11 -2
- tccli/services/gs/v20191118/api.json +11 -1
- tccli/services/gs/v20191118/examples.json +1 -1
- tccli/services/iotexplorer/iotexplorer_client.py +114 -8
- tccli/services/iotexplorer/v20190423/api.json +170 -0
- tccli/services/iotexplorer/v20190423/examples.json +16 -0
- tccli/services/lighthouse/lighthouse_client.py +53 -0
- tccli/services/lighthouse/v20200324/api.json +43 -0
- tccli/services/lighthouse/v20200324/examples.json +8 -0
- tccli/services/lke/lke_client.py +110 -4
- tccli/services/lke/v20231130/api.json +163 -2
- tccli/services/lke/v20231130/examples.json +16 -0
- tccli/services/lkeap/v20240522/api.json +3 -3
- tccli/services/monitor/monitor_client.py +53 -0
- tccli/services/monitor/v20180724/api.json +43 -0
- tccli/services/monitor/v20180724/examples.json +8 -0
- tccli/services/mps/v20190612/api.json +117 -1
- tccli/services/ocr/v20181119/api.json +1 -1
- tccli/services/ocr/v20181119/examples.json +1 -1
- tccli/services/tcbr/v20220217/api.json +22 -0
- tccli/services/tdmq/v20200217/api.json +165 -25
- tccli/services/tdmq/v20200217/examples.json +1 -1
- tccli/services/teo/v20220901/api.json +1 -1
- tccli/services/tiia/tiia_client.py +73 -126
- tccli/services/tiia/v20190529/api.json +0 -112
- tccli/services/tiia/v20190529/examples.json +0 -14
- tccli/services/tione/tione_client.py +216 -4
- tccli/services/tione/v20211111/api.json +190 -0
- tccli/services/tione/v20211111/examples.json +32 -0
- tccli/services/trocket/trocket_client.py +57 -4
- tccli/services/trocket/v20230308/api.json +149 -1
- tccli/services/trocket/v20230308/examples.json +8 -0
- tccli/services/trtc/v20190722/api.json +2 -2
- tccli/services/tsf/v20180326/api.json +4 -3
- tccli/services/tsf/v20180326/examples.json +2 -2
- {tccli-3.0.1335.1.dist-info → tccli-3.0.1337.1.dist-info}/METADATA +2 -2
- {tccli-3.0.1335.1.dist-info → tccli-3.0.1337.1.dist-info}/RECORD +53 -53
- {tccli-3.0.1335.1.dist-info → tccli-3.0.1337.1.dist-info}/WHEEL +0 -0
- {tccli-3.0.1335.1.dist-info → tccli-3.0.1337.1.dist-info}/entry_points.txt +0 -0
- {tccli-3.0.1335.1.dist-info → tccli-3.0.1337.1.dist-info}/license_files/LICENSE +0 -0
@@ -3033,7 +3033,7 @@ def doDescribeTopic(args, parsed_globals):
|
|
3033
3033
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
3034
3034
|
|
3035
3035
|
|
3036
|
-
def
|
3036
|
+
def doDescribeMigrationTaskList(args, parsed_globals):
|
3037
3037
|
g_param = parse_global_arg(parsed_globals)
|
3038
3038
|
|
3039
3039
|
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
@@ -3062,11 +3062,11 @@ def doCreateMQTTInsPublicEndpoint(args, parsed_globals):
|
|
3062
3062
|
client = mod.TrocketClient(cred, g_param[OptionsDefine.Region], profile)
|
3063
3063
|
client._sdkVersion += ("_CLI_" + __version__)
|
3064
3064
|
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
3065
|
-
model = models.
|
3065
|
+
model = models.DescribeMigrationTaskListRequest()
|
3066
3066
|
model.from_json_string(json.dumps(args))
|
3067
3067
|
start_time = time.time()
|
3068
3068
|
while True:
|
3069
|
-
rsp = client.
|
3069
|
+
rsp = client.DescribeMigrationTaskList(model)
|
3070
3070
|
result = rsp.to_json_string()
|
3071
3071
|
try:
|
3072
3072
|
json_obj = json.loads(result)
|
@@ -3189,6 +3189,58 @@ def doDescribeMigratingTopicStats(args, parsed_globals):
|
|
3189
3189
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
3190
3190
|
|
3191
3191
|
|
3192
|
+
def doCreateMQTTInsPublicEndpoint(args, parsed_globals):
|
3193
|
+
g_param = parse_global_arg(parsed_globals)
|
3194
|
+
|
3195
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
3196
|
+
cred = credential.CVMRoleCredential()
|
3197
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
3198
|
+
cred = credential.STSAssumeRoleCredential(
|
3199
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
3200
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
3201
|
+
)
|
3202
|
+
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):
|
3203
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
3204
|
+
else:
|
3205
|
+
cred = credential.Credential(
|
3206
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
3207
|
+
)
|
3208
|
+
http_profile = HttpProfile(
|
3209
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
3210
|
+
reqMethod="POST",
|
3211
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
3212
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
3213
|
+
)
|
3214
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
3215
|
+
if g_param[OptionsDefine.Language]:
|
3216
|
+
profile.language = g_param[OptionsDefine.Language]
|
3217
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
3218
|
+
client = mod.TrocketClient(cred, g_param[OptionsDefine.Region], profile)
|
3219
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
3220
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
3221
|
+
model = models.CreateMQTTInsPublicEndpointRequest()
|
3222
|
+
model.from_json_string(json.dumps(args))
|
3223
|
+
start_time = time.time()
|
3224
|
+
while True:
|
3225
|
+
rsp = client.CreateMQTTInsPublicEndpoint(model)
|
3226
|
+
result = rsp.to_json_string()
|
3227
|
+
try:
|
3228
|
+
json_obj = json.loads(result)
|
3229
|
+
except TypeError as e:
|
3230
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
3231
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
3232
|
+
break
|
3233
|
+
cur_time = time.time()
|
3234
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
3235
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
3236
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
3237
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
3238
|
+
else:
|
3239
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
3240
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
3241
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
3242
|
+
|
3243
|
+
|
3192
3244
|
def doDescribeTopicList(args, parsed_globals):
|
3193
3245
|
g_param = parse_global_arg(parsed_globals)
|
3194
3246
|
|
@@ -3518,9 +3570,10 @@ ACTION_MAP = {
|
|
3518
3570
|
"ModifyRole": doModifyRole,
|
3519
3571
|
"DescribeMQTTClient": doDescribeMQTTClient,
|
3520
3572
|
"DescribeTopic": doDescribeTopic,
|
3521
|
-
"
|
3573
|
+
"DescribeMigrationTaskList": doDescribeMigrationTaskList,
|
3522
3574
|
"ChangeMigratingTopicToNextStage": doChangeMigratingTopicToNextStage,
|
3523
3575
|
"DescribeMigratingTopicStats": doDescribeMigratingTopicStats,
|
3576
|
+
"CreateMQTTInsPublicEndpoint": doCreateMQTTInsPublicEndpoint,
|
3524
3577
|
"DescribeTopicList": doDescribeTopicList,
|
3525
3578
|
"DeleteSmoothMigrationTask": doDeleteSmoothMigrationTask,
|
3526
3579
|
"RollbackMigratingTopicStage": doRollbackMigratingTopicStage,
|
@@ -301,6 +301,13 @@
|
|
301
301
|
"output": "DescribeMigratingTopicStatsResponse",
|
302
302
|
"status": "online"
|
303
303
|
},
|
304
|
+
"DescribeMigrationTaskList": {
|
305
|
+
"document": "获取数据迁移任务列表,Filter参数使用说明如下:\n\nTaskId,根据任务ID精确查找\nInstanceId,根据实例ID精确查找\nType,根据任务类型精确查找",
|
306
|
+
"input": "DescribeMigrationTaskListRequest",
|
307
|
+
"name": "获取数据迁移任务列表",
|
308
|
+
"output": "DescribeMigrationTaskListResponse",
|
309
|
+
"status": "online"
|
310
|
+
},
|
304
311
|
"DescribeProductSKUs": {
|
305
312
|
"document": "查询产品售卖规格,针对 RocketMQ 5.x 集群。",
|
306
313
|
"input": "DescribeProductSKUsRequest",
|
@@ -4391,6 +4398,71 @@
|
|
4391
4398
|
],
|
4392
4399
|
"type": "object"
|
4393
4400
|
},
|
4401
|
+
"DescribeMigrationTaskListRequest": {
|
4402
|
+
"document": "DescribeMigrationTaskList请求参数结构体",
|
4403
|
+
"members": [
|
4404
|
+
{
|
4405
|
+
"disabled": false,
|
4406
|
+
"document": "查询条件列表",
|
4407
|
+
"example": "无",
|
4408
|
+
"member": "Filter",
|
4409
|
+
"name": "Filters",
|
4410
|
+
"required": false,
|
4411
|
+
"type": "list"
|
4412
|
+
},
|
4413
|
+
{
|
4414
|
+
"disabled": false,
|
4415
|
+
"document": "查询起始位置",
|
4416
|
+
"example": "0",
|
4417
|
+
"member": "int64",
|
4418
|
+
"name": "Offset",
|
4419
|
+
"required": false,
|
4420
|
+
"type": "int"
|
4421
|
+
},
|
4422
|
+
{
|
4423
|
+
"disabled": false,
|
4424
|
+
"document": "查询结果限制数量",
|
4425
|
+
"example": "20",
|
4426
|
+
"member": "int64",
|
4427
|
+
"name": "Limit",
|
4428
|
+
"required": false,
|
4429
|
+
"type": "int"
|
4430
|
+
}
|
4431
|
+
],
|
4432
|
+
"type": "object"
|
4433
|
+
},
|
4434
|
+
"DescribeMigrationTaskListResponse": {
|
4435
|
+
"document": "DescribeMigrationTaskList返回参数结构体",
|
4436
|
+
"members": [
|
4437
|
+
{
|
4438
|
+
"disabled": false,
|
4439
|
+
"document": "查询总数",
|
4440
|
+
"example": "10",
|
4441
|
+
"member": "int64",
|
4442
|
+
"name": "TotalCount",
|
4443
|
+
"output_required": false,
|
4444
|
+
"type": "int",
|
4445
|
+
"value_allowed_null": false
|
4446
|
+
},
|
4447
|
+
{
|
4448
|
+
"disabled": false,
|
4449
|
+
"document": "迁移任务列表\n注意:此字段可能返回 null,表示取不到有效值。",
|
4450
|
+
"example": "无",
|
4451
|
+
"member": "MigrationTaskItem",
|
4452
|
+
"name": "Tasks",
|
4453
|
+
"output_required": true,
|
4454
|
+
"type": "list",
|
4455
|
+
"value_allowed_null": true
|
4456
|
+
},
|
4457
|
+
{
|
4458
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
4459
|
+
"member": "string",
|
4460
|
+
"name": "RequestId",
|
4461
|
+
"type": "string"
|
4462
|
+
}
|
4463
|
+
],
|
4464
|
+
"type": "object"
|
4465
|
+
},
|
4394
4466
|
"DescribeProductSKUsRequest": {
|
4395
4467
|
"document": "DescribeProductSKUs请求参数结构体",
|
4396
4468
|
"members": [],
|
@@ -6502,7 +6574,7 @@
|
|
6502
6574
|
},
|
6503
6575
|
{
|
6504
6576
|
"disabled": false,
|
6505
|
-
"document": "迁移状态
|
6577
|
+
"document": "迁移状态 \nS_RW_D_NA 源集群读写,\nS_RW_D_R 源集群读写目标集群读,\nS_RW_D_RW 源集群读写目标集群读写,\nS_R_D_RW 源集群读目标集群读写,\nS_NA_D_RW 目标集群读写",
|
6506
6578
|
"example": "S_RW_D_NA",
|
6507
6579
|
"member": "string",
|
6508
6580
|
"name": "MigrationStatus",
|
@@ -6583,6 +6655,82 @@
|
|
6583
6655
|
],
|
6584
6656
|
"usage": "out"
|
6585
6657
|
},
|
6658
|
+
"MigrationTaskItem": {
|
6659
|
+
"document": "迁移任务信息",
|
6660
|
+
"members": [
|
6661
|
+
{
|
6662
|
+
"disabled": false,
|
6663
|
+
"document": "任务ID",
|
6664
|
+
"example": "xxx",
|
6665
|
+
"member": "string",
|
6666
|
+
"name": "TaskId",
|
6667
|
+
"output_required": true,
|
6668
|
+
"type": "string",
|
6669
|
+
"value_allowed_null": false
|
6670
|
+
},
|
6671
|
+
{
|
6672
|
+
"disabled": false,
|
6673
|
+
"document": "实例ID",
|
6674
|
+
"example": "rmq-xxxx",
|
6675
|
+
"member": "string",
|
6676
|
+
"name": "InstanceId",
|
6677
|
+
"output_required": true,
|
6678
|
+
"type": "string",
|
6679
|
+
"value_allowed_null": false
|
6680
|
+
},
|
6681
|
+
{
|
6682
|
+
"disabled": false,
|
6683
|
+
"document": "0 - 未指定(存量)\n1 - 元数据导入",
|
6684
|
+
"example": "1",
|
6685
|
+
"member": "int64",
|
6686
|
+
"name": "Type",
|
6687
|
+
"output_required": true,
|
6688
|
+
"type": "int",
|
6689
|
+
"value_allowed_null": false
|
6690
|
+
},
|
6691
|
+
{
|
6692
|
+
"disabled": false,
|
6693
|
+
"document": "主题总数",
|
6694
|
+
"example": "10",
|
6695
|
+
"member": "int64",
|
6696
|
+
"name": "TopicNum",
|
6697
|
+
"output_required": true,
|
6698
|
+
"type": "int",
|
6699
|
+
"value_allowed_null": false
|
6700
|
+
},
|
6701
|
+
{
|
6702
|
+
"disabled": false,
|
6703
|
+
"document": "消费组总数",
|
6704
|
+
"example": "10",
|
6705
|
+
"member": "int64",
|
6706
|
+
"name": "GroupNum",
|
6707
|
+
"output_required": true,
|
6708
|
+
"type": "int",
|
6709
|
+
"value_allowed_null": false
|
6710
|
+
},
|
6711
|
+
{
|
6712
|
+
"disabled": false,
|
6713
|
+
"document": "任务状态: 0,迁移中 1,迁移成功 2,迁移完成,只有部分数据完成迁移",
|
6714
|
+
"example": "无",
|
6715
|
+
"member": "int64",
|
6716
|
+
"name": "Status",
|
6717
|
+
"output_required": true,
|
6718
|
+
"type": "int",
|
6719
|
+
"value_allowed_null": false
|
6720
|
+
},
|
6721
|
+
{
|
6722
|
+
"disabled": false,
|
6723
|
+
"document": "创建时间",
|
6724
|
+
"example": "无",
|
6725
|
+
"member": "int64",
|
6726
|
+
"name": "CreateTime",
|
6727
|
+
"output_required": true,
|
6728
|
+
"type": "int",
|
6729
|
+
"value_allowed_null": false
|
6730
|
+
}
|
6731
|
+
],
|
6732
|
+
"usage": "out"
|
6733
|
+
},
|
6586
6734
|
"ModifyConsumerGroupRequest": {
|
6587
6735
|
"document": "ModifyConsumerGroup请求参数结构体",
|
6588
6736
|
"members": [
|
@@ -350,6 +350,14 @@
|
|
350
350
|
"title": "查询迁移主题实时数据"
|
351
351
|
}
|
352
352
|
],
|
353
|
+
"DescribeMigrationTaskList": [
|
354
|
+
{
|
355
|
+
"document": "",
|
356
|
+
"input": "POST / HTTP/1.1\nHost: trocket.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeMigrationTaskList\n<公共请求参数>\n\n{\n \"Filters\": [],\n \"Offset\": 0,\n \"Limit\": 20\n}",
|
357
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"bd8c6783-04a4-419f-bc51-9af603872490\",\n \"TotalCount\": 1,\n \"Tasks\": [\n {\n \"TaskId\": \"603872-7a11-c67\",\n \"Type\": 1,\n \"InstanceId\": \"rmq-47zbegoa\",\n \"TopicNum\": 4,\n \"GroupNum\": 0,\n \"Status\": 1,\n \"CreateTime\": 1693219938000\n }\n ]\n }\n}",
|
358
|
+
"title": "获取数据迁移任务列表"
|
359
|
+
}
|
360
|
+
],
|
353
361
|
"DescribeProductSKUs": [
|
354
362
|
{
|
355
363
|
"document": "获取产品规格信息",
|
@@ -711,12 +711,12 @@
|
|
711
711
|
"usage": "in"
|
712
712
|
},
|
713
713
|
"AmbientSound": {
|
714
|
-
"document": "背景音设置,将在通话中添加环境音效,使体验更加逼真。目前支持以下选项:\
|
714
|
+
"document": "背景音设置,将在通话中添加环境音效,使体验更加逼真。目前支持以下选项:\ncoffee_shops: 咖啡店氛围,背景中有人聊天。\nbusy_office: 客服中心\nstreet_traffic: 户外街道\nevening_mountain: 户外山林",
|
715
715
|
"members": [
|
716
716
|
{
|
717
717
|
"disabled": false,
|
718
718
|
"document": "环境场景选择",
|
719
|
-
"example": "
|
719
|
+
"example": "coffee_shops",
|
720
720
|
"member": "string",
|
721
721
|
"name": "Scene",
|
722
722
|
"output_required": false,
|
@@ -7140,7 +7140,7 @@
|
|
7140
7140
|
"type": "string"
|
7141
7141
|
},
|
7142
7142
|
{
|
7143
|
-
"disabled":
|
7143
|
+
"disabled": true,
|
7144
7144
|
"document": "应用日志配置项,废弃参数",
|
7145
7145
|
"example": "已废弃",
|
7146
7146
|
"member": "string",
|
@@ -7149,7 +7149,7 @@
|
|
7149
7149
|
"type": "string"
|
7150
7150
|
},
|
7151
7151
|
{
|
7152
|
-
"disabled":
|
7152
|
+
"disabled": true,
|
7153
7153
|
"document": "应用资源类型,废弃参数",
|
7154
7154
|
"example": "已废弃",
|
7155
7155
|
"member": "string",
|
@@ -11775,9 +11775,10 @@
|
|
11775
11775
|
{
|
11776
11776
|
"disabled": false,
|
11777
11777
|
"document": "限流结果",
|
11778
|
-
"example": "
|
11778
|
+
"example": "无",
|
11779
11779
|
"member": "ApiRateLimitRule",
|
11780
11780
|
"name": "Result",
|
11781
|
+
"output_required": true,
|
11781
11782
|
"type": "list",
|
11782
11783
|
"value_allowed_null": false
|
11783
11784
|
},
|
@@ -60,7 +60,7 @@
|
|
60
60
|
{
|
61
61
|
"document": "",
|
62
62
|
"input": "https://tsf.tencentcloudapi.com/?Action=ContinueRunFailedTaskBatch\n&BatchId=batch-12345678\n&<公共请求参数>",
|
63
|
-
"output": "{\n \"Response\": {\n \"Result\": true,\n \"RequestId\": \"
|
63
|
+
"output": "{\n \"Response\": {\n \"Result\": true,\n \"RequestId\": \"req-id\"\n }\n}",
|
64
64
|
"title": "续跑执行失败的任务批次"
|
65
65
|
}
|
66
66
|
],
|
@@ -892,7 +892,7 @@
|
|
892
892
|
{
|
893
893
|
"document": "",
|
894
894
|
"input": "https://tsf.tencentcloudapi.com/?Action=DescribeImageRepository\n&Offset=0\n&Limit=20\n&<公共请求参数>",
|
895
|
-
"output": "{\n \"Response\": {\n \"Result\": {\n \"TotalCount\": 0,\n \"Server\": \"ccr.tencent.com\",\n \"Content\": [\n {\n \"Reponame\": \"tsf_100010349923/docker-java-provider\",\n \"Repotype\": \"tcr\",\n \"TagCount\": 0,\n \"IsPublic\": 0,\n \"IsUserFavor\": true,\n \"IsQcloudOfficial\": true,\n \"FavorCount\": 0,\n \"PullCount\": 0,\n \"Description\": \"this is a desc\",\n \"CreationTime\": \"2019-05-29 15:02:08\",\n \"UpdateTime\": \"2019-05-29 15:02:08\",\n \"TcrRepoInfo\": {\n \"Region\": \"ap-guangzhou\",\n \"RegistryId\": \"reg-6a79x94v\",\n \"RegistryName\": \"reg-mock\",\n \"Namespace\": \"default\"\n },\n \"TcrBindingId\": 0,\n \"ApplicationId\": \"application-6a79x94v\",\n \"ApplicationName\": {\n \"RuleId\": \"rule-6a79x94v\",\n \"Name\": \"app-mock\",\n \"ExpandVmCountLimit\": 0,\n \"ShrinkVmCountLimit\": 0,\n \"GroupCount\": 0,\n \"Desc\": \"this is a desc\",\n \"Description\": \"this is a desc\",\n \"DisableMetricAS\": 1,\n \"EnableCronAS\": 1\n },\n \"ApplicationNameReal\": \"app-mock\",\n \"Public\": 0,\n \"CreateMode\": \"manual\"\n }\n ]\n },\n \"RequestId\": \"96561cf1-738a-47d6-943b-dec7ebbccabe\"\n }\n}",
|
895
|
+
"output": "{\n \"Response\": {\n \"Result\": {\n \"TotalCount\": 0,\n \"Server\": \"ccr.tencent.com\",\n \"Content\": [\n {\n \"Reponame\": \"tsf_100010349923/docker-java-provider\",\n \"Repotype\": \"tcr\",\n \"TagCount\": 0,\n \"IsPublic\": 0,\n \"IsUserFavor\": true,\n \"IsQcloudOfficial\": true,\n \"FavorCount\": 0,\n \"PullCount\": 0,\n \"Description\": \"this is a desc\",\n \"CreationTime\": \"2019-05-29 15:02:08\",\n \"UpdateTime\": \"2019-05-29 15:02:08\",\n \"TcrRepoInfo\": {\n \"RepoName\": \"name\",\n \"Region\": \"ap-guangzhou\",\n \"RegistryId\": \"reg-6a79x94v\",\n \"RegistryName\": \"reg-mock\",\n \"Namespace\": \"default\"\n },\n \"TcrBindingId\": 0,\n \"ApplicationId\": \"application-6a79x94v\",\n \"ApplicationName\": {\n \"RuleId\": \"rule-6a79x94v\",\n \"Name\": \"app-mock\",\n \"ExpandVmCountLimit\": 0,\n \"ShrinkVmCountLimit\": 0,\n \"GroupCount\": 0,\n \"Desc\": \"this is a desc\",\n \"Description\": \"this is a desc\",\n \"DisableMetricAS\": 1,\n \"EnableCronAS\": 1\n },\n \"ApplicationNameReal\": \"app-mock\",\n \"Public\": 0,\n \"CreateMode\": \"manual\"\n }\n ]\n },\n \"RequestId\": \"96561cf1-738a-47d6-943b-dec7ebbccabe\"\n }\n}",
|
896
896
|
"title": "DescribeImageRepository"
|
897
897
|
}
|
898
898
|
],
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: tccli
|
3
|
-
Version: 3.0.
|
3
|
+
Version: 3.0.1337.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.1337
|
17
17
|
Description-Content-Type: text/markdown
|
18
18
|
|
19
19
|
# 命令行工具简介
|