tccli 3.0.1306.1__py2.py3-none-any.whl → 3.0.1308.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/aiart/v20221229/api.json +34 -22
- tccli/services/apm/v20210622/api.json +38 -0
- tccli/services/asr/v20190614/api.json +64 -64
- tccli/services/asr/v20190614/examples.json +4 -4
- tccli/services/bh/v20230418/api.json +2 -2
- tccli/services/cbs/v20170312/api.json +26 -16
- tccli/services/cdwch/v20200915/api.json +3 -3
- tccli/services/chc/v20230418/api.json +46 -1
- tccli/services/ckafka/v20190819/api.json +24 -24
- tccli/services/ckafka/v20190819/examples.json +1 -1
- tccli/services/clb/v20180317/api.json +232 -181
- tccli/services/clb/v20180317/examples.json +38 -38
- tccli/services/cloudaudit/v20190319/api.json +67 -67
- tccli/services/cloudaudit/v20190319/examples.json +2 -2
- tccli/services/config/v20220802/api.json +184 -165
- tccli/services/cvm/v20170312/api.json +5 -5
- tccli/services/cynosdb/cynosdb_client.py +53 -0
- tccli/services/cynosdb/v20190107/api.json +72 -9
- tccli/services/cynosdb/v20190107/examples.json +8 -0
- tccli/services/dlc/v20210125/api.json +19 -0
- tccli/services/domain/v20180808/api.json +72 -72
- tccli/services/domain/v20180808/examples.json +4 -4
- tccli/services/dsgc/dsgc_client.py +53 -0
- tccli/services/dsgc/v20190723/api.json +221 -7
- tccli/services/dsgc/v20190723/examples.json +8 -0
- tccli/services/es/v20250101/api.json +45 -45
- tccli/services/essbasic/v20210526/examples.json +7 -1
- tccli/services/iss/v20230517/api.json +40 -40
- tccli/services/lowcode/v20210108/api.json +10 -1
- tccli/services/ocr/v20181119/api.json +13 -3
- tccli/services/organization/v20210331/api.json +12 -12
- tccli/services/tdmq/v20200217/api.json +118 -14
- tccli/services/tdmq/v20200217/examples.json +1 -1
- tccli/services/tke/v20180525/api.json +37 -37
- tccli/services/trocket/v20230308/api.json +123 -19
- tccli/services/trocket/v20230308/examples.json +1 -1
- tccli/services/tsf/v20180326/api.json +2 -2
- tccli/services/vod/v20180717/api.json +9 -0
- tccli/services/vpc/v20170312/api.json +173 -166
- tccli/services/vpc/v20170312/examples.json +5 -5
- tccli/services/waf/v20180125/api.json +24 -0
- tccli/services/waf/v20180125/examples.json +8 -0
- tccli/services/waf/waf_client.py +57 -4
- tccli/services/wedata/v20210820/api.json +972 -18
- tccli/services/wedata/v20210820/examples.json +44 -4
- tccli/services/wedata/wedata_client.py +297 -32
- {tccli-3.0.1306.1.dist-info → tccli-3.0.1308.1.dist-info}/METADATA +2 -2
- {tccli-3.0.1306.1.dist-info → tccli-3.0.1308.1.dist-info}/RECORD +52 -52
- {tccli-3.0.1306.1.dist-info → tccli-3.0.1308.1.dist-info}/WHEEL +0 -0
- {tccli-3.0.1306.1.dist-info → tccli-3.0.1308.1.dist-info}/entry_points.txt +0 -0
- {tccli-3.0.1306.1.dist-info → tccli-3.0.1308.1.dist-info}/license_files/LICENSE +0 -0
@@ -1057,6 +1057,58 @@ def doDescribeInstanceByCycle(args, parsed_globals):
|
|
1057
1057
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
1058
1058
|
|
1059
1059
|
|
1060
|
+
def doDescribeProject(args, parsed_globals):
|
1061
|
+
g_param = parse_global_arg(parsed_globals)
|
1062
|
+
|
1063
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
1064
|
+
cred = credential.CVMRoleCredential()
|
1065
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
1066
|
+
cred = credential.STSAssumeRoleCredential(
|
1067
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
1068
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
1069
|
+
)
|
1070
|
+
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):
|
1071
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
1072
|
+
else:
|
1073
|
+
cred = credential.Credential(
|
1074
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
1075
|
+
)
|
1076
|
+
http_profile = HttpProfile(
|
1077
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
1078
|
+
reqMethod="POST",
|
1079
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
1080
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
1081
|
+
)
|
1082
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
1083
|
+
if g_param[OptionsDefine.Language]:
|
1084
|
+
profile.language = g_param[OptionsDefine.Language]
|
1085
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
1086
|
+
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
1087
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
1088
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
1089
|
+
model = models.DescribeProjectRequest()
|
1090
|
+
model.from_json_string(json.dumps(args))
|
1091
|
+
start_time = time.time()
|
1092
|
+
while True:
|
1093
|
+
rsp = client.DescribeProject(model)
|
1094
|
+
result = rsp.to_json_string()
|
1095
|
+
try:
|
1096
|
+
json_obj = json.loads(result)
|
1097
|
+
except TypeError as e:
|
1098
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
1099
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
1100
|
+
break
|
1101
|
+
cur_time = time.time()
|
1102
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
1103
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
1104
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
1105
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
1106
|
+
else:
|
1107
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
1108
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
1109
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
1110
|
+
|
1111
|
+
|
1060
1112
|
def doDescribeIntegrationNode(args, parsed_globals):
|
1061
1113
|
g_param = parse_global_arg(parsed_globals)
|
1062
1114
|
|
@@ -2669,7 +2721,7 @@ def doCheckIntegrationNodeNameExists(args, parsed_globals):
|
|
2669
2721
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
2670
2722
|
|
2671
2723
|
|
2672
|
-
def
|
2724
|
+
def doDescribeAlarmEvents(args, parsed_globals):
|
2673
2725
|
g_param = parse_global_arg(parsed_globals)
|
2674
2726
|
|
2675
2727
|
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
@@ -2698,11 +2750,11 @@ def doModifyIntegrationTask(args, parsed_globals):
|
|
2698
2750
|
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
2699
2751
|
client._sdkVersion += ("_CLI_" + __version__)
|
2700
2752
|
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
2701
|
-
model = models.
|
2753
|
+
model = models.DescribeAlarmEventsRequest()
|
2702
2754
|
model.from_json_string(json.dumps(args))
|
2703
2755
|
start_time = time.time()
|
2704
2756
|
while True:
|
2705
|
-
rsp = client.
|
2757
|
+
rsp = client.DescribeAlarmEvents(model)
|
2706
2758
|
result = rsp.to_json_string()
|
2707
2759
|
try:
|
2708
2760
|
json_obj = json.loads(result)
|
@@ -3085,7 +3137,7 @@ def doRunForceSucScheduleInstances(args, parsed_globals):
|
|
3085
3137
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
3086
3138
|
|
3087
3139
|
|
3088
|
-
def
|
3140
|
+
def doModifyTaskLinksDs(args, parsed_globals):
|
3089
3141
|
g_param = parse_global_arg(parsed_globals)
|
3090
3142
|
|
3091
3143
|
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
@@ -3114,11 +3166,11 @@ def doDescribeProject(args, parsed_globals):
|
|
3114
3166
|
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
3115
3167
|
client._sdkVersion += ("_CLI_" + __version__)
|
3116
3168
|
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
3117
|
-
model = models.
|
3169
|
+
model = models.ModifyTaskLinksDsRequest()
|
3118
3170
|
model.from_json_string(json.dumps(args))
|
3119
3171
|
start_time = time.time()
|
3120
3172
|
while True:
|
3121
|
-
rsp = client.
|
3173
|
+
rsp = client.ModifyTaskLinksDs(model)
|
3122
3174
|
result = rsp.to_json_string()
|
3123
3175
|
try:
|
3124
3176
|
json_obj = json.loads(result)
|
@@ -3241,6 +3293,58 @@ def doDescribeOrganizationalFunctions(args, parsed_globals):
|
|
3241
3293
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
3242
3294
|
|
3243
3295
|
|
3296
|
+
def doCreateTaskNew(args, parsed_globals):
|
3297
|
+
g_param = parse_global_arg(parsed_globals)
|
3298
|
+
|
3299
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
3300
|
+
cred = credential.CVMRoleCredential()
|
3301
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
3302
|
+
cred = credential.STSAssumeRoleCredential(
|
3303
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
3304
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
3305
|
+
)
|
3306
|
+
elif os.getenv(OptionsDefine.ENV_TKE_REGION) and os.getenv(OptionsDefine.ENV_TKE_PROVIDER_ID) and os.getenv(OptionsDefine.ENV_TKE_WEB_IDENTITY_TOKEN_FILE) and os.getenv(OptionsDefine.ENV_TKE_ROLE_ARN):
|
3307
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
3308
|
+
else:
|
3309
|
+
cred = credential.Credential(
|
3310
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
3311
|
+
)
|
3312
|
+
http_profile = HttpProfile(
|
3313
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
3314
|
+
reqMethod="POST",
|
3315
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
3316
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
3317
|
+
)
|
3318
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
3319
|
+
if g_param[OptionsDefine.Language]:
|
3320
|
+
profile.language = g_param[OptionsDefine.Language]
|
3321
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
3322
|
+
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
3323
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
3324
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
3325
|
+
model = models.CreateTaskNewRequest()
|
3326
|
+
model.from_json_string(json.dumps(args))
|
3327
|
+
start_time = time.time()
|
3328
|
+
while True:
|
3329
|
+
rsp = client.CreateTaskNew(model)
|
3330
|
+
result = rsp.to_json_string()
|
3331
|
+
try:
|
3332
|
+
json_obj = json.loads(result)
|
3333
|
+
except TypeError as e:
|
3334
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
3335
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
3336
|
+
break
|
3337
|
+
cur_time = time.time()
|
3338
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
3339
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
3340
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
3341
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
3342
|
+
else:
|
3343
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
3344
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
3345
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
3346
|
+
|
3347
|
+
|
3244
3348
|
def doDescribeDsFolderTree(args, parsed_globals):
|
3245
3349
|
g_param = parse_global_arg(parsed_globals)
|
3246
3350
|
|
@@ -4281,7 +4385,7 @@ def doCreateOfflineTask(args, parsed_globals):
|
|
4281
4385
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
4282
4386
|
|
4283
4387
|
|
4284
|
-
def
|
4388
|
+
def doModifyIntegrationTask(args, parsed_globals):
|
4285
4389
|
g_param = parse_global_arg(parsed_globals)
|
4286
4390
|
|
4287
4391
|
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
@@ -4310,11 +4414,11 @@ def doDescribeAlarmEvents(args, parsed_globals):
|
|
4310
4414
|
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
4311
4415
|
client._sdkVersion += ("_CLI_" + __version__)
|
4312
4416
|
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
4313
|
-
model = models.
|
4417
|
+
model = models.ModifyIntegrationTaskRequest()
|
4314
4418
|
model.from_json_string(json.dumps(args))
|
4315
4419
|
start_time = time.time()
|
4316
4420
|
while True:
|
4317
|
-
rsp = client.
|
4421
|
+
rsp = client.ModifyIntegrationTask(model)
|
4318
4422
|
result = rsp.to_json_string()
|
4319
4423
|
try:
|
4320
4424
|
json_obj = json.loads(result)
|
@@ -5269,6 +5373,58 @@ def doDescribeIntegrationTasks(args, parsed_globals):
|
|
5269
5373
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
5270
5374
|
|
5271
5375
|
|
5376
|
+
def doDescribeRealTimeTaskInstanceNodeInfo(args, parsed_globals):
|
5377
|
+
g_param = parse_global_arg(parsed_globals)
|
5378
|
+
|
5379
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
5380
|
+
cred = credential.CVMRoleCredential()
|
5381
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
5382
|
+
cred = credential.STSAssumeRoleCredential(
|
5383
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
5384
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
5385
|
+
)
|
5386
|
+
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):
|
5387
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
5388
|
+
else:
|
5389
|
+
cred = credential.Credential(
|
5390
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
5391
|
+
)
|
5392
|
+
http_profile = HttpProfile(
|
5393
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
5394
|
+
reqMethod="POST",
|
5395
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
5396
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
5397
|
+
)
|
5398
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
5399
|
+
if g_param[OptionsDefine.Language]:
|
5400
|
+
profile.language = g_param[OptionsDefine.Language]
|
5401
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
5402
|
+
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
5403
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
5404
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
5405
|
+
model = models.DescribeRealTimeTaskInstanceNodeInfoRequest()
|
5406
|
+
model.from_json_string(json.dumps(args))
|
5407
|
+
start_time = time.time()
|
5408
|
+
while True:
|
5409
|
+
rsp = client.DescribeRealTimeTaskInstanceNodeInfo(model)
|
5410
|
+
result = rsp.to_json_string()
|
5411
|
+
try:
|
5412
|
+
json_obj = json.loads(result)
|
5413
|
+
except TypeError as e:
|
5414
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
5415
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
5416
|
+
break
|
5417
|
+
cur_time = time.time()
|
5418
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
5419
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
5420
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
5421
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
5422
|
+
else:
|
5423
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
5424
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
5425
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
5426
|
+
|
5427
|
+
|
5272
5428
|
def doDescribeColumnsMeta(args, parsed_globals):
|
5273
5429
|
g_param = parse_global_arg(parsed_globals)
|
5274
5430
|
|
@@ -5321,6 +5477,58 @@ def doDescribeColumnsMeta(args, parsed_globals):
|
|
5321
5477
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
5322
5478
|
|
5323
5479
|
|
5480
|
+
def doDescribeFunctionKinds(args, parsed_globals):
|
5481
|
+
g_param = parse_global_arg(parsed_globals)
|
5482
|
+
|
5483
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
5484
|
+
cred = credential.CVMRoleCredential()
|
5485
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
5486
|
+
cred = credential.STSAssumeRoleCredential(
|
5487
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
5488
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
5489
|
+
)
|
5490
|
+
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):
|
5491
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
5492
|
+
else:
|
5493
|
+
cred = credential.Credential(
|
5494
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
5495
|
+
)
|
5496
|
+
http_profile = HttpProfile(
|
5497
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
5498
|
+
reqMethod="POST",
|
5499
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
5500
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
5501
|
+
)
|
5502
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
5503
|
+
if g_param[OptionsDefine.Language]:
|
5504
|
+
profile.language = g_param[OptionsDefine.Language]
|
5505
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
5506
|
+
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
5507
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
5508
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
5509
|
+
model = models.DescribeFunctionKindsRequest()
|
5510
|
+
model.from_json_string(json.dumps(args))
|
5511
|
+
start_time = time.time()
|
5512
|
+
while True:
|
5513
|
+
rsp = client.DescribeFunctionKinds(model)
|
5514
|
+
result = rsp.to_json_string()
|
5515
|
+
try:
|
5516
|
+
json_obj = json.loads(result)
|
5517
|
+
except TypeError as e:
|
5518
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
5519
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
5520
|
+
break
|
5521
|
+
cur_time = time.time()
|
5522
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
5523
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
5524
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
5525
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
5526
|
+
else:
|
5527
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
5528
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
5529
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
5530
|
+
|
5531
|
+
|
5324
5532
|
def doDeleteIntegrationNode(args, parsed_globals):
|
5325
5533
|
g_param = parse_global_arg(parsed_globals)
|
5326
5534
|
|
@@ -6673,7 +6881,7 @@ def doDeleteDsFolder(args, parsed_globals):
|
|
6673
6881
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
6674
6882
|
|
6675
6883
|
|
6676
|
-
def
|
6884
|
+
def doDescribeBatchOperateTask(args, parsed_globals):
|
6677
6885
|
g_param = parse_global_arg(parsed_globals)
|
6678
6886
|
|
6679
6887
|
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
@@ -6702,11 +6910,11 @@ def doDescribeDutyScheduleList(args, parsed_globals):
|
|
6702
6910
|
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
6703
6911
|
client._sdkVersion += ("_CLI_" + __version__)
|
6704
6912
|
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
6705
|
-
model = models.
|
6913
|
+
model = models.DescribeBatchOperateTaskRequest()
|
6706
6914
|
model.from_json_string(json.dumps(args))
|
6707
6915
|
start_time = time.time()
|
6708
6916
|
while True:
|
6709
|
-
rsp = client.
|
6917
|
+
rsp = client.DescribeBatchOperateTask(model)
|
6710
6918
|
result = rsp.to_json_string()
|
6711
6919
|
try:
|
6712
6920
|
json_obj = json.loads(result)
|
@@ -7453,7 +7661,7 @@ def doDescribeInstanceDetailInfo(args, parsed_globals):
|
|
7453
7661
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
7454
7662
|
|
7455
7663
|
|
7456
|
-
def
|
7664
|
+
def doDescribeDutyScheduleList(args, parsed_globals):
|
7457
7665
|
g_param = parse_global_arg(parsed_globals)
|
7458
7666
|
|
7459
7667
|
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
@@ -7482,11 +7690,11 @@ def doDescribeBatchOperateTask(args, parsed_globals):
|
|
7482
7690
|
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
7483
7691
|
client._sdkVersion += ("_CLI_" + __version__)
|
7484
7692
|
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
7485
|
-
model = models.
|
7693
|
+
model = models.DescribeDutyScheduleListRequest()
|
7486
7694
|
model.from_json_string(json.dumps(args))
|
7487
7695
|
start_time = time.time()
|
7488
7696
|
while True:
|
7489
|
-
rsp = client.
|
7697
|
+
rsp = client.DescribeDutyScheduleList(model)
|
7490
7698
|
result = rsp.to_json_string()
|
7491
7699
|
try:
|
7492
7700
|
json_obj = json.loads(result)
|
@@ -8857,6 +9065,58 @@ def doUpdateWorkflowOwner(args, parsed_globals):
|
|
8857
9065
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
8858
9066
|
|
8859
9067
|
|
9068
|
+
def doUpdateWorkflowInfo(args, parsed_globals):
|
9069
|
+
g_param = parse_global_arg(parsed_globals)
|
9070
|
+
|
9071
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
9072
|
+
cred = credential.CVMRoleCredential()
|
9073
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
9074
|
+
cred = credential.STSAssumeRoleCredential(
|
9075
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
9076
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
9077
|
+
)
|
9078
|
+
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):
|
9079
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
9080
|
+
else:
|
9081
|
+
cred = credential.Credential(
|
9082
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
9083
|
+
)
|
9084
|
+
http_profile = HttpProfile(
|
9085
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
9086
|
+
reqMethod="POST",
|
9087
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
9088
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
9089
|
+
)
|
9090
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
9091
|
+
if g_param[OptionsDefine.Language]:
|
9092
|
+
profile.language = g_param[OptionsDefine.Language]
|
9093
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
9094
|
+
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
9095
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
9096
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
9097
|
+
model = models.UpdateWorkflowInfoRequest()
|
9098
|
+
model.from_json_string(json.dumps(args))
|
9099
|
+
start_time = time.time()
|
9100
|
+
while True:
|
9101
|
+
rsp = client.UpdateWorkflowInfo(model)
|
9102
|
+
result = rsp.to_json_string()
|
9103
|
+
try:
|
9104
|
+
json_obj = json.loads(result)
|
9105
|
+
except TypeError as e:
|
9106
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
9107
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
9108
|
+
break
|
9109
|
+
cur_time = time.time()
|
9110
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
9111
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
9112
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
9113
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
9114
|
+
else:
|
9115
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
9116
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
9117
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
9118
|
+
|
9119
|
+
|
8860
9120
|
def doDescribeTableLineage(args, parsed_globals):
|
8861
9121
|
g_param = parse_global_arg(parsed_globals)
|
8862
9122
|
|
@@ -11561,7 +11821,7 @@ def doDescribeTenantProjects(args, parsed_globals):
|
|
11561
11821
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
11562
11822
|
|
11563
11823
|
|
11564
|
-
def
|
11824
|
+
def doRenewWorkflowOwnerDs(args, parsed_globals):
|
11565
11825
|
g_param = parse_global_arg(parsed_globals)
|
11566
11826
|
|
11567
11827
|
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
@@ -11590,11 +11850,11 @@ def doDescribeRealTimeTaskInstanceNodeInfo(args, parsed_globals):
|
|
11590
11850
|
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
11591
11851
|
client._sdkVersion += ("_CLI_" + __version__)
|
11592
11852
|
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
11593
|
-
model = models.
|
11853
|
+
model = models.RenewWorkflowOwnerDsRequest()
|
11594
11854
|
model.from_json_string(json.dumps(args))
|
11595
11855
|
start_time = time.time()
|
11596
11856
|
while True:
|
11597
|
-
rsp = client.
|
11857
|
+
rsp = client.RenewWorkflowOwnerDs(model)
|
11598
11858
|
result = rsp.to_json_string()
|
11599
11859
|
try:
|
11600
11860
|
json_obj = json.loads(result)
|
@@ -12081,7 +12341,7 @@ def doDescribeDataSourceInfoList(args, parsed_globals):
|
|
12081
12341
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
12082
12342
|
|
12083
12343
|
|
12084
|
-
def
|
12344
|
+
def doDescribeTemplateDimCount(args, parsed_globals):
|
12085
12345
|
g_param = parse_global_arg(parsed_globals)
|
12086
12346
|
|
12087
12347
|
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
@@ -12110,11 +12370,11 @@ def doDescribeFunctionKinds(args, parsed_globals):
|
|
12110
12370
|
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
12111
12371
|
client._sdkVersion += ("_CLI_" + __version__)
|
12112
12372
|
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
12113
|
-
model = models.
|
12373
|
+
model = models.DescribeTemplateDimCountRequest()
|
12114
12374
|
model.from_json_string(json.dumps(args))
|
12115
12375
|
start_time = time.time()
|
12116
12376
|
while True:
|
12117
|
-
rsp = client.
|
12377
|
+
rsp = client.DescribeTemplateDimCount(model)
|
12118
12378
|
result = rsp.to_json_string()
|
12119
12379
|
try:
|
12120
12380
|
json_obj = json.loads(result)
|
@@ -12913,7 +13173,7 @@ def doDescribeReportTaskDetail(args, parsed_globals):
|
|
12913
13173
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
12914
13174
|
|
12915
13175
|
|
12916
|
-
def
|
13176
|
+
def doRegisterDsEvent(args, parsed_globals):
|
12917
13177
|
g_param = parse_global_arg(parsed_globals)
|
12918
13178
|
|
12919
13179
|
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
@@ -12942,11 +13202,11 @@ def doDescribeTemplateDimCount(args, parsed_globals):
|
|
12942
13202
|
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
12943
13203
|
client._sdkVersion += ("_CLI_" + __version__)
|
12944
13204
|
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
12945
|
-
model = models.
|
13205
|
+
model = models.RegisterDsEventRequest()
|
12946
13206
|
model.from_json_string(json.dumps(args))
|
12947
13207
|
start_time = time.time()
|
12948
13208
|
while True:
|
12949
|
-
rsp = client.
|
13209
|
+
rsp = client.RegisterDsEvent(model)
|
12950
13210
|
result = rsp.to_json_string()
|
12951
13211
|
try:
|
12952
13212
|
json_obj = json.loads(result)
|
@@ -13100,6 +13360,7 @@ ACTION_MAP = {
|
|
13100
13360
|
"DescribeDrInstancePage": doDescribeDrInstancePage,
|
13101
13361
|
"DescribeOperateOpsTasks": doDescribeOperateOpsTasks,
|
13102
13362
|
"DescribeInstanceByCycle": doDescribeInstanceByCycle,
|
13363
|
+
"DescribeProject": doDescribeProject,
|
13103
13364
|
"DescribeIntegrationNode": doDescribeIntegrationNode,
|
13104
13365
|
"DescribeDatabaseMetas": doDescribeDatabaseMetas,
|
13105
13366
|
"DescribeTaskByCycle": doDescribeTaskByCycle,
|
@@ -13131,7 +13392,7 @@ ACTION_MAP = {
|
|
13131
13392
|
"ModifyIntegrationNode": doModifyIntegrationNode,
|
13132
13393
|
"AddProjectUserRole": doAddProjectUserRole,
|
13133
13394
|
"CheckIntegrationNodeNameExists": doCheckIntegrationNodeNameExists,
|
13134
|
-
"
|
13395
|
+
"DescribeAlarmEvents": doDescribeAlarmEvents,
|
13135
13396
|
"DescribeStreamTaskLogList": doDescribeStreamTaskLogList,
|
13136
13397
|
"DescribeQualityScore": doDescribeQualityScore,
|
13137
13398
|
"GetCosToken": doGetCosToken,
|
@@ -13139,9 +13400,10 @@ ACTION_MAP = {
|
|
13139
13400
|
"GenHiveTableDDLSql": doGenHiveTableDDLSql,
|
13140
13401
|
"DescribeTaskRunHistory": doDescribeTaskRunHistory,
|
13141
13402
|
"RunForceSucScheduleInstances": doRunForceSucScheduleInstances,
|
13142
|
-
"
|
13403
|
+
"ModifyTaskLinksDs": doModifyTaskLinksDs,
|
13143
13404
|
"DescribeTopTableStat": doDescribeTopTableStat,
|
13144
13405
|
"DescribeOrganizationalFunctions": doDescribeOrganizationalFunctions,
|
13406
|
+
"CreateTaskNew": doCreateTaskNew,
|
13145
13407
|
"DescribeDsFolderTree": doDescribeDsFolderTree,
|
13146
13408
|
"CreateRuleTemplate": doCreateRuleTemplate,
|
13147
13409
|
"TriggerManualTasks": doTriggerManualTasks,
|
@@ -13162,7 +13424,7 @@ ACTION_MAP = {
|
|
13162
13424
|
"TriggerDsEvent": doTriggerDsEvent,
|
13163
13425
|
"DescribeSchedulerRunTimeInstanceCntByStatus": doDescribeSchedulerRunTimeInstanceCntByStatus,
|
13164
13426
|
"CreateOfflineTask": doCreateOfflineTask,
|
13165
|
-
"
|
13427
|
+
"ModifyIntegrationTask": doModifyIntegrationTask,
|
13166
13428
|
"DescribeDutyScheduleDetails": doDescribeDutyScheduleDetails,
|
13167
13429
|
"DescribeIntegrationStatisticsTaskStatus": doDescribeIntegrationStatisticsTaskStatus,
|
13168
13430
|
"BatchStartIntegrationTasks": doBatchStartIntegrationTasks,
|
@@ -13181,7 +13443,9 @@ ACTION_MAP = {
|
|
13181
13443
|
"ModifyRule": doModifyRule,
|
13182
13444
|
"DescribeFunctionTypes": doDescribeFunctionTypes,
|
13183
13445
|
"DescribeIntegrationTasks": doDescribeIntegrationTasks,
|
13446
|
+
"DescribeRealTimeTaskInstanceNodeInfo": doDescribeRealTimeTaskInstanceNodeInfo,
|
13184
13447
|
"DescribeColumnsMeta": doDescribeColumnsMeta,
|
13448
|
+
"DescribeFunctionKinds": doDescribeFunctionKinds,
|
13185
13449
|
"DeleteIntegrationNode": doDeleteIntegrationNode,
|
13186
13450
|
"StopIntegrationTask": doStopIntegrationTask,
|
13187
13451
|
"DescribeTableMetas": doDescribeTableMetas,
|
@@ -13208,7 +13472,7 @@ ACTION_MAP = {
|
|
13208
13472
|
"DeleteOfflineTask": doDeleteOfflineTask,
|
13209
13473
|
"CreateHiveTableByDDL": doCreateHiveTableByDDL,
|
13210
13474
|
"DeleteDsFolder": doDeleteDsFolder,
|
13211
|
-
"
|
13475
|
+
"DescribeBatchOperateTask": doDescribeBatchOperateTask,
|
13212
13476
|
"DescribeTaskLineage": doDescribeTaskLineage,
|
13213
13477
|
"DescribeResourceManagePathTrees": doDescribeResourceManagePathTrees,
|
13214
13478
|
"BatchForceSuccessIntegrationTaskInstances": doBatchForceSuccessIntegrationTaskInstances,
|
@@ -13223,7 +13487,7 @@ ACTION_MAP = {
|
|
13223
13487
|
"DeleteDataSources": doDeleteDataSources,
|
13224
13488
|
"DescribeOpsMakePlanInstances": doDescribeOpsMakePlanInstances,
|
13225
13489
|
"DescribeInstanceDetailInfo": doDescribeInstanceDetailInfo,
|
13226
|
-
"
|
13490
|
+
"DescribeDutyScheduleList": doDescribeDutyScheduleList,
|
13227
13491
|
"DeleteRule": doDeleteRule,
|
13228
13492
|
"CheckAlarmRegularNameExist": doCheckAlarmRegularNameExist,
|
13229
13493
|
"CheckIntegrationTaskNameExists": doCheckIntegrationTaskNameExists,
|
@@ -13250,6 +13514,7 @@ ACTION_MAP = {
|
|
13250
13514
|
"DescribeTaskLockStatus": doDescribeTaskLockStatus,
|
13251
13515
|
"DescribeAllByFolderNew": doDescribeAllByFolderNew,
|
13252
13516
|
"UpdateWorkflowOwner": doUpdateWorkflowOwner,
|
13517
|
+
"UpdateWorkflowInfo": doUpdateWorkflowInfo,
|
13253
13518
|
"DescribeTableLineage": doDescribeTableLineage,
|
13254
13519
|
"DescribeEventCases": doDescribeEventCases,
|
13255
13520
|
"GetOfflineDIInstanceList": doGetOfflineDIInstanceList,
|
@@ -13302,7 +13567,7 @@ ACTION_MAP = {
|
|
13302
13567
|
"RenewWorkflowSchedulerInfoDs": doRenewWorkflowSchedulerInfoDs,
|
13303
13568
|
"DescribeOpsMakePlans": doDescribeOpsMakePlans,
|
13304
13569
|
"DescribeTenantProjects": doDescribeTenantProjects,
|
13305
|
-
"
|
13570
|
+
"RenewWorkflowOwnerDs": doRenewWorkflowOwnerDs,
|
13306
13571
|
"ModifyDimensionWeight": doModifyDimensionWeight,
|
13307
13572
|
"CreateTaskFolder": doCreateTaskFolder,
|
13308
13573
|
"ModifyTaskAlarmRegular": doModifyTaskAlarmRegular,
|
@@ -13312,7 +13577,7 @@ ACTION_MAP = {
|
|
13312
13577
|
"DescribeInstanceLastLog": doDescribeInstanceLastLog,
|
13313
13578
|
"SubmitSqlTask": doSubmitSqlTask,
|
13314
13579
|
"DescribeDataSourceInfoList": doDescribeDataSourceInfoList,
|
13315
|
-
"
|
13580
|
+
"DescribeTemplateDimCount": doDescribeTemplateDimCount,
|
13316
13581
|
"UpdateProjectUserRole": doUpdateProjectUserRole,
|
13317
13582
|
"TaskLog": doTaskLog,
|
13318
13583
|
"DescribeRuleTemplates": doDescribeRuleTemplates,
|
@@ -13328,7 +13593,7 @@ ACTION_MAP = {
|
|
13328
13593
|
"DescribeWorkflowCanvasInfo": doDescribeWorkflowCanvasInfo,
|
13329
13594
|
"DescribeIntegrationStatistics": doDescribeIntegrationStatistics,
|
13330
13595
|
"DescribeReportTaskDetail": doDescribeReportTaskDetail,
|
13331
|
-
"
|
13596
|
+
"RegisterDsEvent": doRegisterDsEvent,
|
13332
13597
|
"DescribeTrendStat": doDescribeTrendStat,
|
13333
13598
|
"DeleteDataModel": doDeleteDataModel,
|
13334
13599
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: tccli
|
3
|
-
Version: 3.0.
|
3
|
+
Version: 3.0.1308.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.1308
|
17
17
|
Description-Content-Type: text/markdown
|
18
18
|
|
19
19
|
# 命令行工具简介
|