tccli 3.0.1307.1__py2.py3-none-any.whl → 3.0.1309.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 +29 -19
- 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/cat/cat_client.py +53 -0
- tccli/services/cat/v20180409/api.json +80 -0
- tccli/services/cat/v20180409/examples.json +8 -0
- tccli/services/cdwch/v20200915/api.json +3 -3
- tccli/services/cfs/v20190719/api.json +9 -0
- tccli/services/clb/v20180317/api.json +120 -78
- tccli/services/clb/v20180317/examples.json +31 -31
- 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 +2 -2
- tccli/services/cynosdb/cynosdb_client.py +53 -0
- tccli/services/cynosdb/v20190107/api.json +63 -0
- tccli/services/cynosdb/v20190107/examples.json +8 -0
- 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/ess/v20201111/api.json +1 -1
- tccli/services/hunyuan/hunyuan_client.py +53 -0
- tccli/services/hunyuan/v20230901/api.json +155 -0
- tccli/services/hunyuan/v20230901/examples.json +8 -0
- tccli/services/iss/v20230517/examples.json +1 -1
- tccli/services/mongodb/v20190725/api.json +1 -1
- tccli/services/ocr/v20181119/api.json +13 -3
- tccli/services/organization/v20210331/api.json +12 -12
- tccli/services/partners/partners_client.py +57 -4
- tccli/services/partners/v20180321/api.json +151 -0
- tccli/services/partners/v20180321/examples.json +14 -0
- tccli/services/postgres/v20170312/api.json +1 -1
- tccli/services/tdmq/v20200217/api.json +118 -14
- tccli/services/tdmq/v20200217/examples.json +1 -1
- tccli/services/teo/v20220901/api.json +9 -9
- tccli/services/teo/v20220901/examples.json +1 -1
- tccli/services/thpc/v20230321/api.json +1 -1
- tccli/services/trocket/v20230308/api.json +123 -19
- tccli/services/trocket/v20230308/examples.json +1 -1
- tccli/services/vpc/v20170312/api.json +114 -112
- tccli/services/vpc/v20170312/examples.json +4 -4
- tccli/services/waf/v20180125/api.json +43 -0
- tccli/services/waf/v20180125/examples.json +8 -0
- tccli/services/waf/waf_client.py +57 -4
- tccli/services/wedata/v20210820/api.json +1046 -10
- tccli/services/wedata/v20210820/examples.json +49 -1
- tccli/services/wedata/wedata_client.py +350 -32
- {tccli-3.0.1307.1.dist-info → tccli-3.0.1309.1.dist-info}/METADATA +2 -2
- {tccli-3.0.1307.1.dist-info → tccli-3.0.1309.1.dist-info}/RECORD +55 -55
- {tccli-3.0.1307.1.dist-info → tccli-3.0.1309.1.dist-info}/WHEEL +0 -0
- {tccli-3.0.1307.1.dist-info → tccli-3.0.1309.1.dist-info}/entry_points.txt +0 -0
- {tccli-3.0.1307.1.dist-info → tccli-3.0.1309.1.dist-info}/license_files/LICENSE +0 -0
@@ -849,6 +849,58 @@ def doRegisterEventListener(args, parsed_globals):
|
|
849
849
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
850
850
|
|
851
851
|
|
852
|
+
def doDescribeBaseBizCatalogs(args, parsed_globals):
|
853
|
+
g_param = parse_global_arg(parsed_globals)
|
854
|
+
|
855
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
856
|
+
cred = credential.CVMRoleCredential()
|
857
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
858
|
+
cred = credential.STSAssumeRoleCredential(
|
859
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
860
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
861
|
+
)
|
862
|
+
elif os.getenv(OptionsDefine.ENV_TKE_REGION) and os.getenv(OptionsDefine.ENV_TKE_PROVIDER_ID) and os.getenv(OptionsDefine.ENV_TKE_WEB_IDENTITY_TOKEN_FILE) and os.getenv(OptionsDefine.ENV_TKE_ROLE_ARN):
|
863
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
864
|
+
else:
|
865
|
+
cred = credential.Credential(
|
866
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
867
|
+
)
|
868
|
+
http_profile = HttpProfile(
|
869
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
870
|
+
reqMethod="POST",
|
871
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
872
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
873
|
+
)
|
874
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
875
|
+
if g_param[OptionsDefine.Language]:
|
876
|
+
profile.language = g_param[OptionsDefine.Language]
|
877
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
878
|
+
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
879
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
880
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
881
|
+
model = models.DescribeBaseBizCatalogsRequest()
|
882
|
+
model.from_json_string(json.dumps(args))
|
883
|
+
start_time = time.time()
|
884
|
+
while True:
|
885
|
+
rsp = client.DescribeBaseBizCatalogs(model)
|
886
|
+
result = rsp.to_json_string()
|
887
|
+
try:
|
888
|
+
json_obj = json.loads(result)
|
889
|
+
except TypeError as e:
|
890
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
891
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
892
|
+
break
|
893
|
+
cur_time = time.time()
|
894
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
895
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
896
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
897
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
898
|
+
else:
|
899
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
900
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
901
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
902
|
+
|
903
|
+
|
852
904
|
def doCreateHiveTable(args, parsed_globals):
|
853
905
|
g_param = parse_global_arg(parsed_globals)
|
854
906
|
|
@@ -1057,6 +1109,58 @@ def doDescribeInstanceByCycle(args, parsed_globals):
|
|
1057
1109
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
1058
1110
|
|
1059
1111
|
|
1112
|
+
def doDescribeProject(args, parsed_globals):
|
1113
|
+
g_param = parse_global_arg(parsed_globals)
|
1114
|
+
|
1115
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
1116
|
+
cred = credential.CVMRoleCredential()
|
1117
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
1118
|
+
cred = credential.STSAssumeRoleCredential(
|
1119
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
1120
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
1121
|
+
)
|
1122
|
+
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):
|
1123
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
1124
|
+
else:
|
1125
|
+
cred = credential.Credential(
|
1126
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
1127
|
+
)
|
1128
|
+
http_profile = HttpProfile(
|
1129
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
1130
|
+
reqMethod="POST",
|
1131
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
1132
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
1133
|
+
)
|
1134
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
1135
|
+
if g_param[OptionsDefine.Language]:
|
1136
|
+
profile.language = g_param[OptionsDefine.Language]
|
1137
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
1138
|
+
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
1139
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
1140
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
1141
|
+
model = models.DescribeProjectRequest()
|
1142
|
+
model.from_json_string(json.dumps(args))
|
1143
|
+
start_time = time.time()
|
1144
|
+
while True:
|
1145
|
+
rsp = client.DescribeProject(model)
|
1146
|
+
result = rsp.to_json_string()
|
1147
|
+
try:
|
1148
|
+
json_obj = json.loads(result)
|
1149
|
+
except TypeError as e:
|
1150
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
1151
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
1152
|
+
break
|
1153
|
+
cur_time = time.time()
|
1154
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
1155
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
1156
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
1157
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
1158
|
+
else:
|
1159
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
1160
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
1161
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
1162
|
+
|
1163
|
+
|
1060
1164
|
def doDescribeIntegrationNode(args, parsed_globals):
|
1061
1165
|
g_param = parse_global_arg(parsed_globals)
|
1062
1166
|
|
@@ -2669,7 +2773,7 @@ def doCheckIntegrationNodeNameExists(args, parsed_globals):
|
|
2669
2773
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
2670
2774
|
|
2671
2775
|
|
2672
|
-
def
|
2776
|
+
def doDescribeAlarmEvents(args, parsed_globals):
|
2673
2777
|
g_param = parse_global_arg(parsed_globals)
|
2674
2778
|
|
2675
2779
|
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
@@ -2698,11 +2802,11 @@ def doModifyIntegrationTask(args, parsed_globals):
|
|
2698
2802
|
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
2699
2803
|
client._sdkVersion += ("_CLI_" + __version__)
|
2700
2804
|
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
2701
|
-
model = models.
|
2805
|
+
model = models.DescribeAlarmEventsRequest()
|
2702
2806
|
model.from_json_string(json.dumps(args))
|
2703
2807
|
start_time = time.time()
|
2704
2808
|
while True:
|
2705
|
-
rsp = client.
|
2809
|
+
rsp = client.DescribeAlarmEvents(model)
|
2706
2810
|
result = rsp.to_json_string()
|
2707
2811
|
try:
|
2708
2812
|
json_obj = json.loads(result)
|
@@ -3085,7 +3189,7 @@ def doRunForceSucScheduleInstances(args, parsed_globals):
|
|
3085
3189
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
3086
3190
|
|
3087
3191
|
|
3088
|
-
def
|
3192
|
+
def doModifyTaskLinksDs(args, parsed_globals):
|
3089
3193
|
g_param = parse_global_arg(parsed_globals)
|
3090
3194
|
|
3091
3195
|
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
@@ -3114,11 +3218,11 @@ def doDescribeProject(args, parsed_globals):
|
|
3114
3218
|
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
3115
3219
|
client._sdkVersion += ("_CLI_" + __version__)
|
3116
3220
|
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
3117
|
-
model = models.
|
3221
|
+
model = models.ModifyTaskLinksDsRequest()
|
3118
3222
|
model.from_json_string(json.dumps(args))
|
3119
3223
|
start_time = time.time()
|
3120
3224
|
while True:
|
3121
|
-
rsp = client.
|
3225
|
+
rsp = client.ModifyTaskLinksDs(model)
|
3122
3226
|
result = rsp.to_json_string()
|
3123
3227
|
try:
|
3124
3228
|
json_obj = json.loads(result)
|
@@ -3241,6 +3345,58 @@ def doDescribeOrganizationalFunctions(args, parsed_globals):
|
|
3241
3345
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
3242
3346
|
|
3243
3347
|
|
3348
|
+
def doCreateTaskNew(args, parsed_globals):
|
3349
|
+
g_param = parse_global_arg(parsed_globals)
|
3350
|
+
|
3351
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
3352
|
+
cred = credential.CVMRoleCredential()
|
3353
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
3354
|
+
cred = credential.STSAssumeRoleCredential(
|
3355
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
3356
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
3357
|
+
)
|
3358
|
+
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):
|
3359
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
3360
|
+
else:
|
3361
|
+
cred = credential.Credential(
|
3362
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
3363
|
+
)
|
3364
|
+
http_profile = HttpProfile(
|
3365
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
3366
|
+
reqMethod="POST",
|
3367
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
3368
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
3369
|
+
)
|
3370
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
3371
|
+
if g_param[OptionsDefine.Language]:
|
3372
|
+
profile.language = g_param[OptionsDefine.Language]
|
3373
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
3374
|
+
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
3375
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
3376
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
3377
|
+
model = models.CreateTaskNewRequest()
|
3378
|
+
model.from_json_string(json.dumps(args))
|
3379
|
+
start_time = time.time()
|
3380
|
+
while True:
|
3381
|
+
rsp = client.CreateTaskNew(model)
|
3382
|
+
result = rsp.to_json_string()
|
3383
|
+
try:
|
3384
|
+
json_obj = json.loads(result)
|
3385
|
+
except TypeError as e:
|
3386
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
3387
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
3388
|
+
break
|
3389
|
+
cur_time = time.time()
|
3390
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
3391
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
3392
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
3393
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
3394
|
+
else:
|
3395
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
3396
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
3397
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
3398
|
+
|
3399
|
+
|
3244
3400
|
def doDescribeDsFolderTree(args, parsed_globals):
|
3245
3401
|
g_param = parse_global_arg(parsed_globals)
|
3246
3402
|
|
@@ -4281,7 +4437,7 @@ def doCreateOfflineTask(args, parsed_globals):
|
|
4281
4437
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
4282
4438
|
|
4283
4439
|
|
4284
|
-
def
|
4440
|
+
def doModifyIntegrationTask(args, parsed_globals):
|
4285
4441
|
g_param = parse_global_arg(parsed_globals)
|
4286
4442
|
|
4287
4443
|
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
@@ -4310,11 +4466,11 @@ def doDescribeAlarmEvents(args, parsed_globals):
|
|
4310
4466
|
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
4311
4467
|
client._sdkVersion += ("_CLI_" + __version__)
|
4312
4468
|
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
4313
|
-
model = models.
|
4469
|
+
model = models.ModifyIntegrationTaskRequest()
|
4314
4470
|
model.from_json_string(json.dumps(args))
|
4315
4471
|
start_time = time.time()
|
4316
4472
|
while True:
|
4317
|
-
rsp = client.
|
4473
|
+
rsp = client.ModifyIntegrationTask(model)
|
4318
4474
|
result = rsp.to_json_string()
|
4319
4475
|
try:
|
4320
4476
|
json_obj = json.loads(result)
|
@@ -5269,6 +5425,58 @@ def doDescribeIntegrationTasks(args, parsed_globals):
|
|
5269
5425
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
5270
5426
|
|
5271
5427
|
|
5428
|
+
def doDescribeRealTimeTaskInstanceNodeInfo(args, parsed_globals):
|
5429
|
+
g_param = parse_global_arg(parsed_globals)
|
5430
|
+
|
5431
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
5432
|
+
cred = credential.CVMRoleCredential()
|
5433
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
5434
|
+
cred = credential.STSAssumeRoleCredential(
|
5435
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
5436
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
5437
|
+
)
|
5438
|
+
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):
|
5439
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
5440
|
+
else:
|
5441
|
+
cred = credential.Credential(
|
5442
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
5443
|
+
)
|
5444
|
+
http_profile = HttpProfile(
|
5445
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
5446
|
+
reqMethod="POST",
|
5447
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
5448
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
5449
|
+
)
|
5450
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
5451
|
+
if g_param[OptionsDefine.Language]:
|
5452
|
+
profile.language = g_param[OptionsDefine.Language]
|
5453
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
5454
|
+
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
5455
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
5456
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
5457
|
+
model = models.DescribeRealTimeTaskInstanceNodeInfoRequest()
|
5458
|
+
model.from_json_string(json.dumps(args))
|
5459
|
+
start_time = time.time()
|
5460
|
+
while True:
|
5461
|
+
rsp = client.DescribeRealTimeTaskInstanceNodeInfo(model)
|
5462
|
+
result = rsp.to_json_string()
|
5463
|
+
try:
|
5464
|
+
json_obj = json.loads(result)
|
5465
|
+
except TypeError as e:
|
5466
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
5467
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
5468
|
+
break
|
5469
|
+
cur_time = time.time()
|
5470
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
5471
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
5472
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
5473
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
5474
|
+
else:
|
5475
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
5476
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
5477
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
5478
|
+
|
5479
|
+
|
5272
5480
|
def doDescribeColumnsMeta(args, parsed_globals):
|
5273
5481
|
g_param = parse_global_arg(parsed_globals)
|
5274
5482
|
|
@@ -5321,6 +5529,58 @@ def doDescribeColumnsMeta(args, parsed_globals):
|
|
5321
5529
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
5322
5530
|
|
5323
5531
|
|
5532
|
+
def doDescribeFunctionKinds(args, parsed_globals):
|
5533
|
+
g_param = parse_global_arg(parsed_globals)
|
5534
|
+
|
5535
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
5536
|
+
cred = credential.CVMRoleCredential()
|
5537
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
5538
|
+
cred = credential.STSAssumeRoleCredential(
|
5539
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
5540
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
5541
|
+
)
|
5542
|
+
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):
|
5543
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
5544
|
+
else:
|
5545
|
+
cred = credential.Credential(
|
5546
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
5547
|
+
)
|
5548
|
+
http_profile = HttpProfile(
|
5549
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
5550
|
+
reqMethod="POST",
|
5551
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
5552
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
5553
|
+
)
|
5554
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
5555
|
+
if g_param[OptionsDefine.Language]:
|
5556
|
+
profile.language = g_param[OptionsDefine.Language]
|
5557
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
5558
|
+
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
5559
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
5560
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
5561
|
+
model = models.DescribeFunctionKindsRequest()
|
5562
|
+
model.from_json_string(json.dumps(args))
|
5563
|
+
start_time = time.time()
|
5564
|
+
while True:
|
5565
|
+
rsp = client.DescribeFunctionKinds(model)
|
5566
|
+
result = rsp.to_json_string()
|
5567
|
+
try:
|
5568
|
+
json_obj = json.loads(result)
|
5569
|
+
except TypeError as e:
|
5570
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
5571
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
5572
|
+
break
|
5573
|
+
cur_time = time.time()
|
5574
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
5575
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
5576
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
5577
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
5578
|
+
else:
|
5579
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
5580
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
5581
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
5582
|
+
|
5583
|
+
|
5324
5584
|
def doDeleteIntegrationNode(args, parsed_globals):
|
5325
5585
|
g_param = parse_global_arg(parsed_globals)
|
5326
5586
|
|
@@ -6673,7 +6933,7 @@ def doDeleteDsFolder(args, parsed_globals):
|
|
6673
6933
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
6674
6934
|
|
6675
6935
|
|
6676
|
-
def
|
6936
|
+
def doDescribeBatchOperateTask(args, parsed_globals):
|
6677
6937
|
g_param = parse_global_arg(parsed_globals)
|
6678
6938
|
|
6679
6939
|
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
@@ -6702,11 +6962,11 @@ def doDescribeDutyScheduleList(args, parsed_globals):
|
|
6702
6962
|
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
6703
6963
|
client._sdkVersion += ("_CLI_" + __version__)
|
6704
6964
|
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
6705
|
-
model = models.
|
6965
|
+
model = models.DescribeBatchOperateTaskRequest()
|
6706
6966
|
model.from_json_string(json.dumps(args))
|
6707
6967
|
start_time = time.time()
|
6708
6968
|
while True:
|
6709
|
-
rsp = client.
|
6969
|
+
rsp = client.DescribeBatchOperateTask(model)
|
6710
6970
|
result = rsp.to_json_string()
|
6711
6971
|
try:
|
6712
6972
|
json_obj = json.loads(result)
|
@@ -7453,7 +7713,7 @@ def doDescribeInstanceDetailInfo(args, parsed_globals):
|
|
7453
7713
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
7454
7714
|
|
7455
7715
|
|
7456
|
-
def
|
7716
|
+
def doDescribeDutyScheduleList(args, parsed_globals):
|
7457
7717
|
g_param = parse_global_arg(parsed_globals)
|
7458
7718
|
|
7459
7719
|
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
@@ -7482,11 +7742,11 @@ def doDescribeBatchOperateTask(args, parsed_globals):
|
|
7482
7742
|
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
7483
7743
|
client._sdkVersion += ("_CLI_" + __version__)
|
7484
7744
|
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
7485
|
-
model = models.
|
7745
|
+
model = models.DescribeDutyScheduleListRequest()
|
7486
7746
|
model.from_json_string(json.dumps(args))
|
7487
7747
|
start_time = time.time()
|
7488
7748
|
while True:
|
7489
|
-
rsp = client.
|
7749
|
+
rsp = client.DescribeDutyScheduleList(model)
|
7490
7750
|
result = rsp.to_json_string()
|
7491
7751
|
try:
|
7492
7752
|
json_obj = json.loads(result)
|
@@ -8857,6 +9117,58 @@ def doUpdateWorkflowOwner(args, parsed_globals):
|
|
8857
9117
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
8858
9118
|
|
8859
9119
|
|
9120
|
+
def doUpdateWorkflowInfo(args, parsed_globals):
|
9121
|
+
g_param = parse_global_arg(parsed_globals)
|
9122
|
+
|
9123
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
9124
|
+
cred = credential.CVMRoleCredential()
|
9125
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
9126
|
+
cred = credential.STSAssumeRoleCredential(
|
9127
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
9128
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
9129
|
+
)
|
9130
|
+
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):
|
9131
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
9132
|
+
else:
|
9133
|
+
cred = credential.Credential(
|
9134
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
9135
|
+
)
|
9136
|
+
http_profile = HttpProfile(
|
9137
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
9138
|
+
reqMethod="POST",
|
9139
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
9140
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
9141
|
+
)
|
9142
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
9143
|
+
if g_param[OptionsDefine.Language]:
|
9144
|
+
profile.language = g_param[OptionsDefine.Language]
|
9145
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
9146
|
+
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
9147
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
9148
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
9149
|
+
model = models.UpdateWorkflowInfoRequest()
|
9150
|
+
model.from_json_string(json.dumps(args))
|
9151
|
+
start_time = time.time()
|
9152
|
+
while True:
|
9153
|
+
rsp = client.UpdateWorkflowInfo(model)
|
9154
|
+
result = rsp.to_json_string()
|
9155
|
+
try:
|
9156
|
+
json_obj = json.loads(result)
|
9157
|
+
except TypeError as e:
|
9158
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
9159
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
9160
|
+
break
|
9161
|
+
cur_time = time.time()
|
9162
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
9163
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
9164
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
9165
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
9166
|
+
else:
|
9167
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
9168
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
9169
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
9170
|
+
|
9171
|
+
|
8860
9172
|
def doDescribeTableLineage(args, parsed_globals):
|
8861
9173
|
g_param = parse_global_arg(parsed_globals)
|
8862
9174
|
|
@@ -11561,7 +11873,7 @@ def doDescribeTenantProjects(args, parsed_globals):
|
|
11561
11873
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
11562
11874
|
|
11563
11875
|
|
11564
|
-
def
|
11876
|
+
def doRenewWorkflowOwnerDs(args, parsed_globals):
|
11565
11877
|
g_param = parse_global_arg(parsed_globals)
|
11566
11878
|
|
11567
11879
|
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
@@ -11590,11 +11902,11 @@ def doDescribeRealTimeTaskInstanceNodeInfo(args, parsed_globals):
|
|
11590
11902
|
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
11591
11903
|
client._sdkVersion += ("_CLI_" + __version__)
|
11592
11904
|
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
11593
|
-
model = models.
|
11905
|
+
model = models.RenewWorkflowOwnerDsRequest()
|
11594
11906
|
model.from_json_string(json.dumps(args))
|
11595
11907
|
start_time = time.time()
|
11596
11908
|
while True:
|
11597
|
-
rsp = client.
|
11909
|
+
rsp = client.RenewWorkflowOwnerDs(model)
|
11598
11910
|
result = rsp.to_json_string()
|
11599
11911
|
try:
|
11600
11912
|
json_obj = json.loads(result)
|
@@ -12081,7 +12393,7 @@ def doDescribeDataSourceInfoList(args, parsed_globals):
|
|
12081
12393
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
12082
12394
|
|
12083
12395
|
|
12084
|
-
def
|
12396
|
+
def doDescribeTemplateDimCount(args, parsed_globals):
|
12085
12397
|
g_param = parse_global_arg(parsed_globals)
|
12086
12398
|
|
12087
12399
|
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
@@ -12110,11 +12422,11 @@ def doDescribeFunctionKinds(args, parsed_globals):
|
|
12110
12422
|
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
12111
12423
|
client._sdkVersion += ("_CLI_" + __version__)
|
12112
12424
|
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
12113
|
-
model = models.
|
12425
|
+
model = models.DescribeTemplateDimCountRequest()
|
12114
12426
|
model.from_json_string(json.dumps(args))
|
12115
12427
|
start_time = time.time()
|
12116
12428
|
while True:
|
12117
|
-
rsp = client.
|
12429
|
+
rsp = client.DescribeTemplateDimCount(model)
|
12118
12430
|
result = rsp.to_json_string()
|
12119
12431
|
try:
|
12120
12432
|
json_obj = json.loads(result)
|
@@ -12913,7 +13225,7 @@ def doDescribeReportTaskDetail(args, parsed_globals):
|
|
12913
13225
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
12914
13226
|
|
12915
13227
|
|
12916
|
-
def
|
13228
|
+
def doRegisterDsEvent(args, parsed_globals):
|
12917
13229
|
g_param = parse_global_arg(parsed_globals)
|
12918
13230
|
|
12919
13231
|
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
@@ -12942,11 +13254,11 @@ def doDescribeTemplateDimCount(args, parsed_globals):
|
|
12942
13254
|
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
12943
13255
|
client._sdkVersion += ("_CLI_" + __version__)
|
12944
13256
|
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
12945
|
-
model = models.
|
13257
|
+
model = models.RegisterDsEventRequest()
|
12946
13258
|
model.from_json_string(json.dumps(args))
|
12947
13259
|
start_time = time.time()
|
12948
13260
|
while True:
|
12949
|
-
rsp = client.
|
13261
|
+
rsp = client.RegisterDsEvent(model)
|
12950
13262
|
result = rsp.to_json_string()
|
12951
13263
|
try:
|
12952
13264
|
json_obj = json.loads(result)
|
@@ -13096,10 +13408,12 @@ ACTION_MAP = {
|
|
13096
13408
|
"BatchKillIntegrationTaskInstances": doBatchKillIntegrationTaskInstances,
|
13097
13409
|
"ModifyExecStrategy": doModifyExecStrategy,
|
13098
13410
|
"RegisterEventListener": doRegisterEventListener,
|
13411
|
+
"DescribeBaseBizCatalogs": doDescribeBaseBizCatalogs,
|
13099
13412
|
"CreateHiveTable": doCreateHiveTable,
|
13100
13413
|
"DescribeDrInstancePage": doDescribeDrInstancePage,
|
13101
13414
|
"DescribeOperateOpsTasks": doDescribeOperateOpsTasks,
|
13102
13415
|
"DescribeInstanceByCycle": doDescribeInstanceByCycle,
|
13416
|
+
"DescribeProject": doDescribeProject,
|
13103
13417
|
"DescribeIntegrationNode": doDescribeIntegrationNode,
|
13104
13418
|
"DescribeDatabaseMetas": doDescribeDatabaseMetas,
|
13105
13419
|
"DescribeTaskByCycle": doDescribeTaskByCycle,
|
@@ -13131,7 +13445,7 @@ ACTION_MAP = {
|
|
13131
13445
|
"ModifyIntegrationNode": doModifyIntegrationNode,
|
13132
13446
|
"AddProjectUserRole": doAddProjectUserRole,
|
13133
13447
|
"CheckIntegrationNodeNameExists": doCheckIntegrationNodeNameExists,
|
13134
|
-
"
|
13448
|
+
"DescribeAlarmEvents": doDescribeAlarmEvents,
|
13135
13449
|
"DescribeStreamTaskLogList": doDescribeStreamTaskLogList,
|
13136
13450
|
"DescribeQualityScore": doDescribeQualityScore,
|
13137
13451
|
"GetCosToken": doGetCosToken,
|
@@ -13139,9 +13453,10 @@ ACTION_MAP = {
|
|
13139
13453
|
"GenHiveTableDDLSql": doGenHiveTableDDLSql,
|
13140
13454
|
"DescribeTaskRunHistory": doDescribeTaskRunHistory,
|
13141
13455
|
"RunForceSucScheduleInstances": doRunForceSucScheduleInstances,
|
13142
|
-
"
|
13456
|
+
"ModifyTaskLinksDs": doModifyTaskLinksDs,
|
13143
13457
|
"DescribeTopTableStat": doDescribeTopTableStat,
|
13144
13458
|
"DescribeOrganizationalFunctions": doDescribeOrganizationalFunctions,
|
13459
|
+
"CreateTaskNew": doCreateTaskNew,
|
13145
13460
|
"DescribeDsFolderTree": doDescribeDsFolderTree,
|
13146
13461
|
"CreateRuleTemplate": doCreateRuleTemplate,
|
13147
13462
|
"TriggerManualTasks": doTriggerManualTasks,
|
@@ -13162,7 +13477,7 @@ ACTION_MAP = {
|
|
13162
13477
|
"TriggerDsEvent": doTriggerDsEvent,
|
13163
13478
|
"DescribeSchedulerRunTimeInstanceCntByStatus": doDescribeSchedulerRunTimeInstanceCntByStatus,
|
13164
13479
|
"CreateOfflineTask": doCreateOfflineTask,
|
13165
|
-
"
|
13480
|
+
"ModifyIntegrationTask": doModifyIntegrationTask,
|
13166
13481
|
"DescribeDutyScheduleDetails": doDescribeDutyScheduleDetails,
|
13167
13482
|
"DescribeIntegrationStatisticsTaskStatus": doDescribeIntegrationStatisticsTaskStatus,
|
13168
13483
|
"BatchStartIntegrationTasks": doBatchStartIntegrationTasks,
|
@@ -13181,7 +13496,9 @@ ACTION_MAP = {
|
|
13181
13496
|
"ModifyRule": doModifyRule,
|
13182
13497
|
"DescribeFunctionTypes": doDescribeFunctionTypes,
|
13183
13498
|
"DescribeIntegrationTasks": doDescribeIntegrationTasks,
|
13499
|
+
"DescribeRealTimeTaskInstanceNodeInfo": doDescribeRealTimeTaskInstanceNodeInfo,
|
13184
13500
|
"DescribeColumnsMeta": doDescribeColumnsMeta,
|
13501
|
+
"DescribeFunctionKinds": doDescribeFunctionKinds,
|
13185
13502
|
"DeleteIntegrationNode": doDeleteIntegrationNode,
|
13186
13503
|
"StopIntegrationTask": doStopIntegrationTask,
|
13187
13504
|
"DescribeTableMetas": doDescribeTableMetas,
|
@@ -13208,7 +13525,7 @@ ACTION_MAP = {
|
|
13208
13525
|
"DeleteOfflineTask": doDeleteOfflineTask,
|
13209
13526
|
"CreateHiveTableByDDL": doCreateHiveTableByDDL,
|
13210
13527
|
"DeleteDsFolder": doDeleteDsFolder,
|
13211
|
-
"
|
13528
|
+
"DescribeBatchOperateTask": doDescribeBatchOperateTask,
|
13212
13529
|
"DescribeTaskLineage": doDescribeTaskLineage,
|
13213
13530
|
"DescribeResourceManagePathTrees": doDescribeResourceManagePathTrees,
|
13214
13531
|
"BatchForceSuccessIntegrationTaskInstances": doBatchForceSuccessIntegrationTaskInstances,
|
@@ -13223,7 +13540,7 @@ ACTION_MAP = {
|
|
13223
13540
|
"DeleteDataSources": doDeleteDataSources,
|
13224
13541
|
"DescribeOpsMakePlanInstances": doDescribeOpsMakePlanInstances,
|
13225
13542
|
"DescribeInstanceDetailInfo": doDescribeInstanceDetailInfo,
|
13226
|
-
"
|
13543
|
+
"DescribeDutyScheduleList": doDescribeDutyScheduleList,
|
13227
13544
|
"DeleteRule": doDeleteRule,
|
13228
13545
|
"CheckAlarmRegularNameExist": doCheckAlarmRegularNameExist,
|
13229
13546
|
"CheckIntegrationTaskNameExists": doCheckIntegrationTaskNameExists,
|
@@ -13250,6 +13567,7 @@ ACTION_MAP = {
|
|
13250
13567
|
"DescribeTaskLockStatus": doDescribeTaskLockStatus,
|
13251
13568
|
"DescribeAllByFolderNew": doDescribeAllByFolderNew,
|
13252
13569
|
"UpdateWorkflowOwner": doUpdateWorkflowOwner,
|
13570
|
+
"UpdateWorkflowInfo": doUpdateWorkflowInfo,
|
13253
13571
|
"DescribeTableLineage": doDescribeTableLineage,
|
13254
13572
|
"DescribeEventCases": doDescribeEventCases,
|
13255
13573
|
"GetOfflineDIInstanceList": doGetOfflineDIInstanceList,
|
@@ -13302,7 +13620,7 @@ ACTION_MAP = {
|
|
13302
13620
|
"RenewWorkflowSchedulerInfoDs": doRenewWorkflowSchedulerInfoDs,
|
13303
13621
|
"DescribeOpsMakePlans": doDescribeOpsMakePlans,
|
13304
13622
|
"DescribeTenantProjects": doDescribeTenantProjects,
|
13305
|
-
"
|
13623
|
+
"RenewWorkflowOwnerDs": doRenewWorkflowOwnerDs,
|
13306
13624
|
"ModifyDimensionWeight": doModifyDimensionWeight,
|
13307
13625
|
"CreateTaskFolder": doCreateTaskFolder,
|
13308
13626
|
"ModifyTaskAlarmRegular": doModifyTaskAlarmRegular,
|
@@ -13312,7 +13630,7 @@ ACTION_MAP = {
|
|
13312
13630
|
"DescribeInstanceLastLog": doDescribeInstanceLastLog,
|
13313
13631
|
"SubmitSqlTask": doSubmitSqlTask,
|
13314
13632
|
"DescribeDataSourceInfoList": doDescribeDataSourceInfoList,
|
13315
|
-
"
|
13633
|
+
"DescribeTemplateDimCount": doDescribeTemplateDimCount,
|
13316
13634
|
"UpdateProjectUserRole": doUpdateProjectUserRole,
|
13317
13635
|
"TaskLog": doTaskLog,
|
13318
13636
|
"DescribeRuleTemplates": doDescribeRuleTemplates,
|
@@ -13328,7 +13646,7 @@ ACTION_MAP = {
|
|
13328
13646
|
"DescribeWorkflowCanvasInfo": doDescribeWorkflowCanvasInfo,
|
13329
13647
|
"DescribeIntegrationStatistics": doDescribeIntegrationStatistics,
|
13330
13648
|
"DescribeReportTaskDetail": doDescribeReportTaskDetail,
|
13331
|
-
"
|
13649
|
+
"RegisterDsEvent": doRegisterDsEvent,
|
13332
13650
|
"DescribeTrendStat": doDescribeTrendStat,
|
13333
13651
|
"DeleteDataModel": doDeleteDataModel,
|
13334
13652
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: tccli
|
3
|
-
Version: 3.0.
|
3
|
+
Version: 3.0.1309.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.1309
|
17
17
|
Description-Content-Type: text/markdown
|
18
18
|
|
19
19
|
# 命令行工具简介
|