tccli 3.0.1291.2__py2.py3-none-any.whl → 3.0.1292.2__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/antiddos_client.py +7 -113
- tccli/services/antiddos/v20200309/api.json +41 -401
- tccli/services/antiddos/v20200309/examples.json +1 -17
- tccli/services/apm/v20210622/api.json +44 -44
- tccli/services/apm/v20210622/examples.json +5 -5
- tccli/services/batch/v20170312/api.json +161 -161
- tccli/services/batch/v20170312/examples.json +1 -1
- tccli/services/cdwch/v20200915/api.json +303 -219
- tccli/services/cdwch/v20200915/examples.json +18 -18
- tccli/services/cdwpg/v20201230/api.json +21 -21
- tccli/services/cdwpg/v20201230/examples.json +2 -2
- tccli/services/ckafka/v20190819/api.json +1015 -1005
- tccli/services/cls/v20201016/api.json +112 -112
- tccli/services/dbbrain/v20191016/api.json +2 -2
- tccli/services/dbbrain/v20210527/api.json +14 -5
- tccli/services/emr/v20190103/api.json +249 -13
- tccli/services/emr/v20190103/examples.json +2 -2
- tccli/services/hunyuan/v20230901/api.json +13 -2
- tccli/services/iotexplorer/iotexplorer_client.py +53 -0
- tccli/services/iotexplorer/v20190423/api.json +72 -0
- tccli/services/iotexplorer/v20190423/examples.json +8 -0
- tccli/services/iotvideoindustry/v20201201/api.json +75 -75
- tccli/services/iotvideoindustry/v20201201/examples.json +1 -1
- tccli/services/lke/lke_client.py +0 -53
- tccli/services/lke/v20231130/api.json +0 -43
- tccli/services/lke/v20231130/examples.json +0 -8
- tccli/services/lkeap/v20240522/api.json +1 -1
- tccli/services/memcached/v20190318/api.json +1 -1
- tccli/services/monitor/monitor_client.py +57 -4
- tccli/services/monitor/v20180724/api.json +249 -0
- tccli/services/monitor/v20180724/examples.json +8 -0
- tccli/services/redis/v20180412/api.json +2 -2
- tccli/services/svp/v20240125/api.json +3 -3
- tccli/services/svp/v20240125/examples.json +1 -1
- tccli/services/tdmq/v20200217/api.json +266 -266
- tccli/services/teo/teo_client.py +53 -0
- tccli/services/teo/v20220901/api.json +50 -7
- tccli/services/teo/v20220901/examples.json +8 -0
- tccli/services/thpc/v20220401/api.json +6 -6
- tccli/services/thpc/v20230321/api.json +14 -14
- tccli/services/wedata/v20210820/api.json +166 -12
- {tccli-3.0.1291.2.dist-info → tccli-3.0.1292.2.dist-info}/METADATA +2 -2
- {tccli-3.0.1291.2.dist-info → tccli-3.0.1292.2.dist-info}/RECORD +47 -47
- {tccli-3.0.1291.2.dist-info → tccli-3.0.1292.2.dist-info}/WHEEL +0 -0
- {tccli-3.0.1291.2.dist-info → tccli-3.0.1292.2.dist-info}/entry_points.txt +0 -0
- {tccli-3.0.1291.2.dist-info → tccli-3.0.1292.2.dist-info}/license_files/LICENSE +0 -0
tccli/services/teo/teo_client.py
CHANGED
@@ -2619,6 +2619,58 @@ def doDescribeConfigGroupVersions(args, parsed_globals):
|
|
2619
2619
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
2620
2620
|
|
2621
2621
|
|
2622
|
+
def doModifyL7AccRulePriority(args, parsed_globals):
|
2623
|
+
g_param = parse_global_arg(parsed_globals)
|
2624
|
+
|
2625
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
2626
|
+
cred = credential.CVMRoleCredential()
|
2627
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
2628
|
+
cred = credential.STSAssumeRoleCredential(
|
2629
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
2630
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
2631
|
+
)
|
2632
|
+
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):
|
2633
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
2634
|
+
else:
|
2635
|
+
cred = credential.Credential(
|
2636
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
2637
|
+
)
|
2638
|
+
http_profile = HttpProfile(
|
2639
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
2640
|
+
reqMethod="POST",
|
2641
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
2642
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
2643
|
+
)
|
2644
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
2645
|
+
if g_param[OptionsDefine.Language]:
|
2646
|
+
profile.language = g_param[OptionsDefine.Language]
|
2647
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
2648
|
+
client = mod.TeoClient(cred, g_param[OptionsDefine.Region], profile)
|
2649
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
2650
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
2651
|
+
model = models.ModifyL7AccRulePriorityRequest()
|
2652
|
+
model.from_json_string(json.dumps(args))
|
2653
|
+
start_time = time.time()
|
2654
|
+
while True:
|
2655
|
+
rsp = client.ModifyL7AccRulePriority(model)
|
2656
|
+
result = rsp.to_json_string()
|
2657
|
+
try:
|
2658
|
+
json_obj = json.loads(result)
|
2659
|
+
except TypeError as e:
|
2660
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
2661
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
2662
|
+
break
|
2663
|
+
cur_time = time.time()
|
2664
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
2665
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
2666
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
2667
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
2668
|
+
else:
|
2669
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
2670
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
2671
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
2672
|
+
|
2673
|
+
|
2622
2674
|
def doModifyZoneSetting(args, parsed_globals):
|
2623
2675
|
g_param = parse_global_arg(parsed_globals)
|
2624
2676
|
|
@@ -7414,6 +7466,7 @@ ACTION_MAP = {
|
|
7414
7466
|
"ModifyDnsRecords": doModifyDnsRecords,
|
7415
7467
|
"DescribeTimingL7CacheData": doDescribeTimingL7CacheData,
|
7416
7468
|
"DescribeConfigGroupVersions": doDescribeConfigGroupVersions,
|
7469
|
+
"ModifyL7AccRulePriority": doModifyL7AccRulePriority,
|
7417
7470
|
"ModifyZoneSetting": doModifyZoneSetting,
|
7418
7471
|
"CreateAliasDomain": doCreateAliasDomain,
|
7419
7472
|
"ModifyAliasDomainStatus": doModifyAliasDomainStatus,
|
@@ -889,6 +889,13 @@
|
|
889
889
|
"output": "ModifyL7AccRuleResponse",
|
890
890
|
"status": "online"
|
891
891
|
},
|
892
|
+
"ModifyL7AccRulePriority": {
|
893
|
+
"document": "本接口用于修改[规则引擎](https://cloud.tencent.com/document/product/1552/70901)中规则列表的优先级,本接口需要传入站点 ID 下完整的规则 ID 列表,规则 ID 列表可以通过[查询七层加速规则](https://cloud.tencent.com/document/product/1552/115820)接口获取,最终优先级顺序将调整成规则 ID 列表的顺序,从前往后执行。",
|
894
|
+
"input": "ModifyL7AccRulePriorityRequest",
|
895
|
+
"name": "修改七层加速规则优先级",
|
896
|
+
"output": "ModifyL7AccRulePriorityResponse",
|
897
|
+
"status": "online"
|
898
|
+
},
|
892
899
|
"ModifyL7AccSetting": {
|
893
900
|
"document": "本接口用于修改[站点加速](https://cloud.tencent.com/document/product/1552/96193)全局配置。",
|
894
901
|
"input": "ModifyL7AccSettingRequest",
|
@@ -11537,7 +11544,7 @@
|
|
11537
11544
|
{
|
11538
11545
|
"disabled": false,
|
11539
11546
|
"document": "匹配条件的参数名称,取值有:\n<li>body_depth:请求正文包部分的检测深度。</li>",
|
11540
|
-
"example": "
|
11547
|
+
"example": "body_depth",
|
11541
11548
|
"member": "string",
|
11542
11549
|
"name": "Name",
|
11543
11550
|
"output_required": false,
|
@@ -11547,8 +11554,8 @@
|
|
11547
11554
|
},
|
11548
11555
|
{
|
11549
11556
|
"disabled": false,
|
11550
|
-
"document": "匹配条件的参数值,取值与 Name 成对使用。\n当 Name 值为 body_depth 时, Values 只支持传入单个值,取值有:\n<li>
|
11551
|
-
"example": "
|
11557
|
+
"document": "匹配条件的参数值,取值与 Name 成对使用。\n当 Name 值为 body_depth 时, Values 只支持传入单个值,取值有:\n<li>10KB;</li>\n<li>64KB;</li>\n<li>128KB。</li>",
|
11558
|
+
"example": "[\"10KB\"]",
|
11552
11559
|
"member": "string",
|
11553
11560
|
"name": "Values",
|
11554
11561
|
"output_required": false,
|
@@ -11582,7 +11589,7 @@
|
|
11582
11589
|
{
|
11583
11590
|
"disabled": false,
|
11584
11591
|
"document": "规则Id。仅出参使用。",
|
11585
|
-
"example": "
|
11592
|
+
"example": "10468982785",
|
11586
11593
|
"member": "uint64",
|
11587
11594
|
"name": "RuleId",
|
11588
11595
|
"output_required": false,
|
@@ -11593,7 +11600,7 @@
|
|
11593
11600
|
{
|
11594
11601
|
"disabled": false,
|
11595
11602
|
"document": "规则名称。仅出参使用。",
|
11596
|
-
"example": "
|
11603
|
+
"example": "请求正文最大检测长度",
|
11597
11604
|
"member": "string",
|
11598
11605
|
"name": "RuleName",
|
11599
11606
|
"output_required": false,
|
@@ -11604,7 +11611,7 @@
|
|
11604
11611
|
{
|
11605
11612
|
"disabled": false,
|
11606
11613
|
"document": "规则描述,仅出参使用。",
|
11607
|
-
"example": "
|
11614
|
+
"example": "在检查请求正文内容时,安全策略仅检测一定长度范围内的请求正文数据,超过该范围的数据不会触发安全策略。您可以选择如何处理正文超长的请求。",
|
11608
11615
|
"member": "string",
|
11609
11616
|
"name": "Description",
|
11610
11617
|
"output_required": false,
|
@@ -11626,7 +11633,7 @@
|
|
11626
11633
|
{
|
11627
11634
|
"disabled": false,
|
11628
11635
|
"document": "处置方式,取值有:\n<li>skip:当请求正文数据超过 Conditions 出参中 body_depth 设置的检测深度时,跳过所有请求正文内容的检测;</li>\n<li>scan:仅检测 Conditions 出参中 body_depth 设置的检测深度,对超出部分的请求正文内容直接截断处理,超出部分的请求正文不会经过安全检测。</li>仅出参使用。",
|
11629
|
-
"example": "
|
11636
|
+
"example": "scan",
|
11630
11637
|
"member": "string",
|
11631
11638
|
"name": "Action",
|
11632
11639
|
"output_required": false,
|
@@ -16374,6 +16381,42 @@
|
|
16374
16381
|
],
|
16375
16382
|
"type": "object"
|
16376
16383
|
},
|
16384
|
+
"ModifyL7AccRulePriorityRequest": {
|
16385
|
+
"document": "ModifyL7AccRulePriority请求参数结构体",
|
16386
|
+
"members": [
|
16387
|
+
{
|
16388
|
+
"disabled": false,
|
16389
|
+
"document": "站点 ID。",
|
16390
|
+
"example": "zone-example",
|
16391
|
+
"member": "string",
|
16392
|
+
"name": "ZoneId",
|
16393
|
+
"required": true,
|
16394
|
+
"type": "string"
|
16395
|
+
},
|
16396
|
+
{
|
16397
|
+
"disabled": false,
|
16398
|
+
"document": "站点 ID 下完整的规则 ID 列表,规则 ID 列表可以通过 [查询七层加速规则](https://cloud.tencent.com/document/product/1552/115820) 获取,最终优先级顺序将调整成规则 ID 列表的顺序,从前往后依次执行。",
|
16399
|
+
"example": "[\"rule-example1\", \"rule-example2\"]",
|
16400
|
+
"member": "string",
|
16401
|
+
"name": "RuleIds",
|
16402
|
+
"required": true,
|
16403
|
+
"type": "list"
|
16404
|
+
}
|
16405
|
+
],
|
16406
|
+
"type": "object"
|
16407
|
+
},
|
16408
|
+
"ModifyL7AccRulePriorityResponse": {
|
16409
|
+
"document": "ModifyL7AccRulePriority返回参数结构体",
|
16410
|
+
"members": [
|
16411
|
+
{
|
16412
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
16413
|
+
"member": "string",
|
16414
|
+
"name": "RequestId",
|
16415
|
+
"type": "string"
|
16416
|
+
}
|
16417
|
+
],
|
16418
|
+
"type": "object"
|
16419
|
+
},
|
16377
16420
|
"ModifyL7AccRuleRequest": {
|
16378
16421
|
"document": "ModifyL7AccRule请求参数结构体",
|
16379
16422
|
"members": [
|
@@ -1274,6 +1274,14 @@
|
|
1274
1274
|
"title": "修改规则"
|
1275
1275
|
}
|
1276
1276
|
],
|
1277
|
+
"ModifyL7AccRulePriority": [
|
1278
|
+
{
|
1279
|
+
"document": "站点下有 3 条规则,原来执行顺序是 rule-example1、rule-example2、rule-example3,需要修改成执行顺序是 rule-example2、rule-example3、rule-example1。",
|
1280
|
+
"input": "POST / HTTP/1.1\nHost: teo.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ModifyL7AccRulePriority\n<公共请求参数>\n\n{\n \"ZoneId\": \"zone-example\",\n \"RuleIds\": [\n \"rule-example2\",\n \"rule-example3\",\n \"rule-example1\"\n ]\n}",
|
1281
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"example-310c-41f4-b5e7-abe407404sxsd\"\n }\n}",
|
1282
|
+
"title": "修改规则引擎优先级"
|
1283
|
+
}
|
1284
|
+
],
|
1277
1285
|
"ModifyL7AccSetting": [
|
1278
1286
|
{
|
1279
1287
|
"document": "修改站点加速全局配置。",
|
@@ -617,13 +617,13 @@
|
|
617
617
|
},
|
618
618
|
{
|
619
619
|
"disabled": false,
|
620
|
-
"document": "
|
620
|
+
"document": "集群活动状态码。",
|
621
621
|
"example": "ActivitySuccess",
|
622
622
|
"member": "string",
|
623
623
|
"name": "ActivityStatusCode",
|
624
624
|
"output_required": true,
|
625
625
|
"type": "string",
|
626
|
-
"value_allowed_null":
|
626
|
+
"value_allowed_null": false
|
627
627
|
},
|
628
628
|
{
|
629
629
|
"disabled": false,
|
@@ -667,23 +667,23 @@
|
|
667
667
|
},
|
668
668
|
{
|
669
669
|
"disabled": false,
|
670
|
-
"document": "
|
670
|
+
"document": "集群活动开始时间。",
|
671
671
|
"example": "2021-11-01T02:17:20Z\t",
|
672
672
|
"member": "datetime_iso",
|
673
673
|
"name": "StartTime",
|
674
674
|
"output_required": true,
|
675
675
|
"type": "string",
|
676
|
-
"value_allowed_null":
|
676
|
+
"value_allowed_null": false
|
677
677
|
},
|
678
678
|
{
|
679
679
|
"disabled": false,
|
680
|
-
"document": "
|
680
|
+
"document": "集群活动结束时间。",
|
681
681
|
"example": "2021-11-01T02:17:38Z\t",
|
682
682
|
"member": "datetime_iso",
|
683
683
|
"name": "EndTime",
|
684
684
|
"output_required": true,
|
685
685
|
"type": "string",
|
686
|
-
"value_allowed_null":
|
686
|
+
"value_allowed_null": false
|
687
687
|
}
|
688
688
|
],
|
689
689
|
"usage": "out"
|
@@ -668,13 +668,13 @@
|
|
668
668
|
},
|
669
669
|
{
|
670
670
|
"disabled": false,
|
671
|
-
"document": "
|
671
|
+
"document": "集群活动状态码。",
|
672
672
|
"example": "ActivitySuccess",
|
673
673
|
"member": "string",
|
674
674
|
"name": "ActivityStatusCode",
|
675
675
|
"output_required": true,
|
676
676
|
"type": "string",
|
677
|
-
"value_allowed_null":
|
677
|
+
"value_allowed_null": false
|
678
678
|
},
|
679
679
|
{
|
680
680
|
"disabled": false,
|
@@ -718,23 +718,23 @@
|
|
718
718
|
},
|
719
719
|
{
|
720
720
|
"disabled": false,
|
721
|
-
"document": "
|
721
|
+
"document": "集群活动开始时间。",
|
722
722
|
"example": "2021-11-01T02:17:20Z",
|
723
723
|
"member": "datetime_iso",
|
724
724
|
"name": "StartTime",
|
725
725
|
"output_required": true,
|
726
726
|
"type": "string",
|
727
|
-
"value_allowed_null":
|
727
|
+
"value_allowed_null": false
|
728
728
|
},
|
729
729
|
{
|
730
730
|
"disabled": false,
|
731
|
-
"document": "
|
731
|
+
"document": "集群活动结束时间。",
|
732
732
|
"example": "2021-11-01T02:17:38Z",
|
733
733
|
"member": "datetime_iso",
|
734
734
|
"name": "EndTime",
|
735
735
|
"output_required": true,
|
736
736
|
"type": "string",
|
737
|
-
"value_allowed_null":
|
737
|
+
"value_allowed_null": false
|
738
738
|
}
|
739
739
|
],
|
740
740
|
"usage": "out"
|
@@ -804,13 +804,13 @@
|
|
804
804
|
},
|
805
805
|
{
|
806
806
|
"disabled": false,
|
807
|
-
"document": "
|
807
|
+
"document": "集群调度器版本。",
|
808
808
|
"example": "21.08.8",
|
809
809
|
"member": "string",
|
810
810
|
"name": "SchedulerVersion",
|
811
811
|
"output_required": false,
|
812
812
|
"type": "string",
|
813
|
-
"value_allowed_null":
|
813
|
+
"value_allowed_null": false
|
814
814
|
},
|
815
815
|
{
|
816
816
|
"disabled": false,
|
@@ -2444,23 +2444,23 @@
|
|
2444
2444
|
"members": [
|
2445
2445
|
{
|
2446
2446
|
"disabled": false,
|
2447
|
-
"document": "文件系统master的ip
|
2447
|
+
"document": "文件系统master的ip和端口列表。",
|
2448
2448
|
"example": "[\"172.16.0.2:55533\",\"172.16.0.3:55533\",\"172.16.0.4:55533\"]",
|
2449
2449
|
"member": "string",
|
2450
2450
|
"name": "Masters",
|
2451
|
-
"
|
2451
|
+
"output_required": true,
|
2452
2452
|
"type": "list",
|
2453
|
-
"value_allowed_null":
|
2453
|
+
"value_allowed_null": false
|
2454
2454
|
},
|
2455
2455
|
{
|
2456
2456
|
"disabled": false,
|
2457
|
-
"document": "文件系统的本地挂载路径。GooseFSx目前只支持挂载在/goosefsx/{文件系统ID}_proxy
|
2457
|
+
"document": "文件系统的本地挂载路径。GooseFSx目前只支持挂载在/goosefsx/{文件系统ID}_proxy/目录下。",
|
2458
2458
|
"example": "/goosefsx/x_c60_54oi5id3_proxy/",
|
2459
2459
|
"member": "string",
|
2460
2460
|
"name": "LocalPath",
|
2461
|
-
"
|
2461
|
+
"output_required": true,
|
2462
2462
|
"type": "string",
|
2463
|
-
"value_allowed_null":
|
2463
|
+
"value_allowed_null": false
|
2464
2464
|
}
|
2465
2465
|
],
|
2466
2466
|
"usage": "out"
|
@@ -34702,7 +34702,7 @@
|
|
34702
34702
|
{
|
34703
34703
|
"disabled": false,
|
34704
34704
|
"document": "生产调度任务工作流ID\n注意:此字段可能返回 null,表示取不到有效值。",
|
34705
|
-
"example": "
|
34705
|
+
"example": "342",
|
34706
34706
|
"member": "string",
|
34707
34707
|
"name": "WorkflowId",
|
34708
34708
|
"output_required": true,
|
@@ -34713,7 +34713,7 @@
|
|
34713
34713
|
{
|
34714
34714
|
"disabled": false,
|
34715
34715
|
"document": "生产调度任务Id\n注意:此字段可能返回 null,表示取不到有效值。",
|
34716
|
-
"example": "
|
34716
|
+
"example": "2352",
|
34717
34717
|
"member": "string",
|
34718
34718
|
"name": "TaskId",
|
34719
34719
|
"output_required": true,
|
@@ -34742,6 +34742,17 @@
|
|
34742
34742
|
"required": false,
|
34743
34743
|
"type": "int",
|
34744
34744
|
"value_allowed_null": true
|
34745
|
+
},
|
34746
|
+
{
|
34747
|
+
"disabled": false,
|
34748
|
+
"document": "生产任务类型",
|
34749
|
+
"example": "1",
|
34750
|
+
"member": "string",
|
34751
|
+
"name": "TaskType",
|
34752
|
+
"output_required": false,
|
34753
|
+
"required": false,
|
34754
|
+
"type": "string",
|
34755
|
+
"value_allowed_null": false
|
34745
34756
|
}
|
34746
34757
|
],
|
34747
34758
|
"usage": "both"
|
@@ -37760,7 +37771,7 @@
|
|
37760
37771
|
{
|
37761
37772
|
"disabled": false,
|
37762
37773
|
"document": "规则组Id\n注意:此字段可能返回 null,表示取不到有效值。",
|
37763
|
-
"example": "
|
37774
|
+
"example": "1",
|
37764
37775
|
"member": "uint64",
|
37765
37776
|
"name": "RuleGroupId",
|
37766
37777
|
"output_required": true,
|
@@ -37771,7 +37782,7 @@
|
|
37771
37782
|
{
|
37772
37783
|
"disabled": false,
|
37773
37784
|
"document": "数据源Id\n注意:此字段可能返回 null,表示取不到有效值。",
|
37774
|
-
"example": "
|
37785
|
+
"example": "5432323",
|
37775
37786
|
"member": "string",
|
37776
37787
|
"name": "DatasourceId",
|
37777
37788
|
"output_required": true,
|
@@ -37837,7 +37848,7 @@
|
|
37837
37848
|
{
|
37838
37849
|
"disabled": false,
|
37839
37850
|
"document": "关联数据表Id\n注意:此字段可能返回 null,表示取不到有效值。",
|
37840
|
-
"example": "
|
37851
|
+
"example": "734",
|
37841
37852
|
"member": "string",
|
37842
37853
|
"name": "TableId",
|
37843
37854
|
"output_required": true,
|
@@ -37881,7 +37892,7 @@
|
|
37881
37892
|
{
|
37882
37893
|
"disabled": false,
|
37883
37894
|
"document": "数据库id\n注意:此字段可能返回 null,表示取不到有效值。",
|
37884
|
-
"example": "
|
37895
|
+
"example": "35f324y54gerg",
|
37885
37896
|
"member": "string",
|
37886
37897
|
"name": "DatabaseId",
|
37887
37898
|
"output_required": true,
|
@@ -37947,7 +37958,7 @@
|
|
37947
37958
|
{
|
37948
37959
|
"disabled": false,
|
37949
37960
|
"document": "表负责人UserId\n注意:此字段可能返回 null,表示取不到有效值。",
|
37950
|
-
"example": "
|
37961
|
+
"example": "342455",
|
37951
37962
|
"member": "uint64",
|
37952
37963
|
"name": "TableOwnerUserId",
|
37953
37964
|
"output_required": true,
|
@@ -38020,6 +38031,72 @@
|
|
38020
38031
|
"required": false,
|
38021
38032
|
"type": "string",
|
38022
38033
|
"value_allowed_null": true
|
38034
|
+
},
|
38035
|
+
{
|
38036
|
+
"disabled": false,
|
38037
|
+
"document": "任务名称\n注意:此字段可能返回 null,表示取不到有效值。",
|
38038
|
+
"example": "task1",
|
38039
|
+
"member": "string",
|
38040
|
+
"name": "Name",
|
38041
|
+
"output_required": false,
|
38042
|
+
"required": false,
|
38043
|
+
"type": "string",
|
38044
|
+
"value_allowed_null": true
|
38045
|
+
},
|
38046
|
+
{
|
38047
|
+
"disabled": false,
|
38048
|
+
"document": "执行详情\n注意:此字段可能返回 null,表示取不到有效值。",
|
38049
|
+
"example": "离线周期检测 2024-12-18 ~ 2024-12-19,每天00:00执行一次",
|
38050
|
+
"member": "string",
|
38051
|
+
"name": "ExecDetail",
|
38052
|
+
"output_required": false,
|
38053
|
+
"required": false,
|
38054
|
+
"type": "string",
|
38055
|
+
"value_allowed_null": true
|
38056
|
+
},
|
38057
|
+
{
|
38058
|
+
"disabled": false,
|
38059
|
+
"document": "事中关联任务数量\n注意:此字段可能返回 null,表示取不到有效值。",
|
38060
|
+
"example": "12",
|
38061
|
+
"member": "int64",
|
38062
|
+
"name": "PipelineTaskCount",
|
38063
|
+
"output_required": false,
|
38064
|
+
"required": false,
|
38065
|
+
"type": "int",
|
38066
|
+
"value_allowed_null": true
|
38067
|
+
},
|
38068
|
+
{
|
38069
|
+
"disabled": false,
|
38070
|
+
"document": "有效规则数\n注意:此字段可能返回 null,表示取不到有效值。",
|
38071
|
+
"example": "11",
|
38072
|
+
"member": "int64",
|
38073
|
+
"name": "EnableRuleCount",
|
38074
|
+
"output_required": false,
|
38075
|
+
"required": false,
|
38076
|
+
"type": "int",
|
38077
|
+
"value_allowed_null": true
|
38078
|
+
},
|
38079
|
+
{
|
38080
|
+
"disabled": false,
|
38081
|
+
"document": "任务描述\n注意:此字段可能返回 null,表示取不到有效值。",
|
38082
|
+
"example": "任务",
|
38083
|
+
"member": "string",
|
38084
|
+
"name": "Description",
|
38085
|
+
"output_required": false,
|
38086
|
+
"required": false,
|
38087
|
+
"type": "string",
|
38088
|
+
"value_allowed_null": true
|
38089
|
+
},
|
38090
|
+
{
|
38091
|
+
"disabled": false,
|
38092
|
+
"document": "监控创建人",
|
38093
|
+
"example": "zhangsan",
|
38094
|
+
"member": "string",
|
38095
|
+
"name": "CreateUserName",
|
38096
|
+
"output_required": false,
|
38097
|
+
"required": false,
|
38098
|
+
"type": "string",
|
38099
|
+
"value_allowed_null": false
|
38023
38100
|
}
|
38024
38101
|
],
|
38025
38102
|
"usage": "both"
|
@@ -38348,7 +38425,7 @@
|
|
38348
38425
|
{
|
38349
38426
|
"disabled": false,
|
38350
38427
|
"document": "规则组Id\n注意:此字段可能返回 null,表示取不到有效值。",
|
38351
|
-
"example": "
|
38428
|
+
"example": "235234",
|
38352
38429
|
"member": "uint64",
|
38353
38430
|
"name": "RuleGroupId",
|
38354
38431
|
"output_required": true,
|
@@ -38381,7 +38458,7 @@
|
|
38381
38458
|
{
|
38382
38459
|
"disabled": false,
|
38383
38460
|
"document": "执行资源组ID\n注意:此字段可能返回 null,表示取不到有效值。",
|
38384
|
-
"example": "
|
38461
|
+
"example": "13543",
|
38385
38462
|
"member": "string",
|
38386
38463
|
"name": "ExecutorGroupId",
|
38387
38464
|
"output_required": true,
|
@@ -38502,7 +38579,7 @@
|
|
38502
38579
|
{
|
38503
38580
|
"disabled": false,
|
38504
38581
|
"document": "规则id\n注意:此字段可能返回 null,表示取不到有效值。",
|
38505
|
-
"example": "
|
38582
|
+
"example": "342346",
|
38506
38583
|
"member": "uint64",
|
38507
38584
|
"name": "RuleId",
|
38508
38585
|
"output_required": true,
|
@@ -38542,6 +38619,72 @@
|
|
38542
38619
|
"required": false,
|
38543
38620
|
"type": "string",
|
38544
38621
|
"value_allowed_null": true
|
38622
|
+
},
|
38623
|
+
{
|
38624
|
+
"disabled": false,
|
38625
|
+
"document": "任务名称",
|
38626
|
+
"example": "任务1",
|
38627
|
+
"member": "string",
|
38628
|
+
"name": "RuleGroupName",
|
38629
|
+
"output_required": false,
|
38630
|
+
"required": false,
|
38631
|
+
"type": "string",
|
38632
|
+
"value_allowed_null": false
|
38633
|
+
},
|
38634
|
+
{
|
38635
|
+
"disabled": false,
|
38636
|
+
"document": "数据库名称",
|
38637
|
+
"example": "db1",
|
38638
|
+
"member": "string",
|
38639
|
+
"name": "DatabaseName",
|
38640
|
+
"output_required": false,
|
38641
|
+
"required": false,
|
38642
|
+
"type": "string",
|
38643
|
+
"value_allowed_null": false
|
38644
|
+
},
|
38645
|
+
{
|
38646
|
+
"disabled": false,
|
38647
|
+
"document": "schema名称",
|
38648
|
+
"example": "schema1",
|
38649
|
+
"member": "string",
|
38650
|
+
"name": "SchemaName",
|
38651
|
+
"output_required": false,
|
38652
|
+
"required": false,
|
38653
|
+
"type": "string",
|
38654
|
+
"value_allowed_null": false
|
38655
|
+
},
|
38656
|
+
{
|
38657
|
+
"disabled": false,
|
38658
|
+
"document": "表名称",
|
38659
|
+
"example": "testTable",
|
38660
|
+
"member": "string",
|
38661
|
+
"name": "TableName",
|
38662
|
+
"output_required": false,
|
38663
|
+
"required": false,
|
38664
|
+
"type": "string",
|
38665
|
+
"value_allowed_null": false
|
38666
|
+
},
|
38667
|
+
{
|
38668
|
+
"disabled": false,
|
38669
|
+
"document": "数据源id",
|
38670
|
+
"example": "82476",
|
38671
|
+
"member": "string",
|
38672
|
+
"name": "DatasourceId",
|
38673
|
+
"output_required": false,
|
38674
|
+
"required": false,
|
38675
|
+
"type": "string",
|
38676
|
+
"value_allowed_null": false
|
38677
|
+
},
|
38678
|
+
{
|
38679
|
+
"disabled": false,
|
38680
|
+
"document": "任务描述",
|
38681
|
+
"example": "任务1",
|
38682
|
+
"member": "string",
|
38683
|
+
"name": "Description",
|
38684
|
+
"output_required": false,
|
38685
|
+
"required": false,
|
38686
|
+
"type": "string",
|
38687
|
+
"value_allowed_null": false
|
38545
38688
|
}
|
38546
38689
|
],
|
38547
38690
|
"usage": "both"
|
@@ -38694,7 +38837,7 @@
|
|
38694
38837
|
{
|
38695
38838
|
"disabled": false,
|
38696
38839
|
"document": "规则组Id\n注意:此字段可能返回 null,表示取不到有效值。",
|
38697
|
-
"example": "
|
38840
|
+
"example": "3456",
|
38698
38841
|
"member": "uint64",
|
38699
38842
|
"name": "RuleGroupId",
|
38700
38843
|
"output_required": true,
|
@@ -38738,7 +38881,7 @@
|
|
38738
38881
|
{
|
38739
38882
|
"disabled": false,
|
38740
38883
|
"document": "规则Id\n注意:此字段可能返回 null,表示取不到有效值。",
|
38741
|
-
"example": "
|
38884
|
+
"example": "234563456",
|
38742
38885
|
"member": "uint64",
|
38743
38886
|
"name": "RuleId",
|
38744
38887
|
"output_required": true,
|
@@ -38756,6 +38899,17 @@
|
|
38756
38899
|
"required": false,
|
38757
38900
|
"type": "string",
|
38758
38901
|
"value_allowed_null": true
|
38902
|
+
},
|
38903
|
+
{
|
38904
|
+
"disabled": false,
|
38905
|
+
"document": "发送对象\n注意:此字段可能返回 null,表示取不到有效值。",
|
38906
|
+
"example": "{ \t\"alarmWay\": \"1,2,3\", \t\"webhooks\": { \t\"type\": \"7\", \t\"webhooks\": [\"test1\", \"test2\"] \t} }",
|
38907
|
+
"member": "string",
|
38908
|
+
"name": "AlarmMessageRule",
|
38909
|
+
"output_required": false,
|
38910
|
+
"required": false,
|
38911
|
+
"type": "string",
|
38912
|
+
"value_allowed_null": true
|
38759
38913
|
}
|
38760
38914
|
],
|
38761
38915
|
"usage": "both"
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: tccli
|
3
|
-
Version: 3.0.
|
3
|
+
Version: 3.0.1292.2
|
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.1292
|
17
17
|
Description-Content-Type: text/markdown
|
18
18
|
|
19
19
|
# 命令行工具简介
|