tccli 3.0.1359.1__py2.py3-none-any.whl → 3.0.1361.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/cbs/v20170312/api.json +10 -1
- tccli/services/cdn/v20180606/api.json +1 -1
- tccli/services/ess/v20201111/api.json +19 -1
- tccli/services/essbasic/v20210526/api.json +30 -12
- tccli/services/live/v20180801/api.json +2 -2
- tccli/services/live/v20180801/examples.json +1 -1
- tccli/services/lke/v20231130/api.json +36 -16
- tccli/services/mna/v20210119/api.json +1 -1
- tccli/services/mps/v20190612/api.json +496 -133
- tccli/services/mps/v20190612/examples.json +12 -0
- tccli/services/ocr/v20181119/api.json +1 -1
- tccli/services/postgres/v20170312/api.json +43 -43
- tccli/services/postgres/v20170312/examples.json +15 -15
- tccli/services/redis/v20180412/api.json +1 -1
- tccli/services/ssl/v20191205/api.json +10 -1
- tccli/services/vod/v20180717/api.json +206 -2
- tccli/services/wedata/v20210820/api.json +889 -2
- tccli/services/wedata/v20210820/examples.json +72 -2
- tccli/services/wedata/wedata_client.py +440 -16
- {tccli-3.0.1359.1.dist-info → tccli-3.0.1361.1.dist-info}/METADATA +2 -2
- {tccli-3.0.1359.1.dist-info → tccli-3.0.1361.1.dist-info}/RECORD +25 -25
- {tccli-3.0.1359.1.dist-info → tccli-3.0.1361.1.dist-info}/WHEEL +0 -0
- {tccli-3.0.1359.1.dist-info → tccli-3.0.1361.1.dist-info}/entry_points.txt +0 -0
- {tccli-3.0.1359.1.dist-info → tccli-3.0.1361.1.dist-info}/license_files/LICENSE +0 -0
@@ -849,6 +849,58 @@ def doBatchKillIntegrationTaskInstances(args, parsed_globals):
|
|
849
849
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
850
850
|
|
851
851
|
|
852
|
+
def doDescribeTaskParamDs(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.DescribeTaskParamDsRequest()
|
882
|
+
model.from_json_string(json.dumps(args))
|
883
|
+
start_time = time.time()
|
884
|
+
while True:
|
885
|
+
rsp = client.DescribeTaskParamDs(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 doModifyExecStrategy(args, parsed_globals):
|
853
905
|
g_param = parse_global_arg(parsed_globals)
|
854
906
|
|
@@ -6049,6 +6101,58 @@ def doDeleteLink(args, parsed_globals):
|
|
6049
6101
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
6050
6102
|
|
6051
6103
|
|
6104
|
+
def doRemoveDatabase(args, parsed_globals):
|
6105
|
+
g_param = parse_global_arg(parsed_globals)
|
6106
|
+
|
6107
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
6108
|
+
cred = credential.CVMRoleCredential()
|
6109
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
6110
|
+
cred = credential.STSAssumeRoleCredential(
|
6111
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
6112
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
6113
|
+
)
|
6114
|
+
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):
|
6115
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
6116
|
+
else:
|
6117
|
+
cred = credential.Credential(
|
6118
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
6119
|
+
)
|
6120
|
+
http_profile = HttpProfile(
|
6121
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
6122
|
+
reqMethod="POST",
|
6123
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
6124
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
6125
|
+
)
|
6126
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
6127
|
+
if g_param[OptionsDefine.Language]:
|
6128
|
+
profile.language = g_param[OptionsDefine.Language]
|
6129
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
6130
|
+
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
6131
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
6132
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
6133
|
+
model = models.RemoveDatabaseRequest()
|
6134
|
+
model.from_json_string(json.dumps(args))
|
6135
|
+
start_time = time.time()
|
6136
|
+
while True:
|
6137
|
+
rsp = client.RemoveDatabase(model)
|
6138
|
+
result = rsp.to_json_string()
|
6139
|
+
try:
|
6140
|
+
json_obj = json.loads(result)
|
6141
|
+
except TypeError as e:
|
6142
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
6143
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
6144
|
+
break
|
6145
|
+
cur_time = time.time()
|
6146
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
6147
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
6148
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
6149
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
6150
|
+
else:
|
6151
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
6152
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
6153
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
6154
|
+
|
6155
|
+
|
6052
6156
|
def doDescribeRealTimeTaskInstanceNodeInfo(args, parsed_globals):
|
6053
6157
|
g_param = parse_global_arg(parsed_globals)
|
6054
6158
|
|
@@ -7817,6 +7921,58 @@ def doDescribeBatchOperateTask(args, parsed_globals):
|
|
7817
7921
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
7818
7922
|
|
7819
7923
|
|
7924
|
+
def doReportSchema(args, parsed_globals):
|
7925
|
+
g_param = parse_global_arg(parsed_globals)
|
7926
|
+
|
7927
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
7928
|
+
cred = credential.CVMRoleCredential()
|
7929
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
7930
|
+
cred = credential.STSAssumeRoleCredential(
|
7931
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
7932
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
7933
|
+
)
|
7934
|
+
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):
|
7935
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
7936
|
+
else:
|
7937
|
+
cred = credential.Credential(
|
7938
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
7939
|
+
)
|
7940
|
+
http_profile = HttpProfile(
|
7941
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
7942
|
+
reqMethod="POST",
|
7943
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
7944
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
7945
|
+
)
|
7946
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
7947
|
+
if g_param[OptionsDefine.Language]:
|
7948
|
+
profile.language = g_param[OptionsDefine.Language]
|
7949
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
7950
|
+
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
7951
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
7952
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
7953
|
+
model = models.ReportSchemaRequest()
|
7954
|
+
model.from_json_string(json.dumps(args))
|
7955
|
+
start_time = time.time()
|
7956
|
+
while True:
|
7957
|
+
rsp = client.ReportSchema(model)
|
7958
|
+
result = rsp.to_json_string()
|
7959
|
+
try:
|
7960
|
+
json_obj = json.loads(result)
|
7961
|
+
except TypeError as e:
|
7962
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
7963
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
7964
|
+
break
|
7965
|
+
cur_time = time.time()
|
7966
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
7967
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
7968
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
7969
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
7970
|
+
else:
|
7971
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
7972
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
7973
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
7974
|
+
|
7975
|
+
|
7820
7976
|
def doDescribeTaskLineage(args, parsed_globals):
|
7821
7977
|
g_param = parse_global_arg(parsed_globals)
|
7822
7978
|
|
@@ -9169,6 +9325,58 @@ def doDeleteProjectUsers(args, parsed_globals):
|
|
9169
9325
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
9170
9326
|
|
9171
9327
|
|
9328
|
+
def doGetJobStatus(args, parsed_globals):
|
9329
|
+
g_param = parse_global_arg(parsed_globals)
|
9330
|
+
|
9331
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
9332
|
+
cred = credential.CVMRoleCredential()
|
9333
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
9334
|
+
cred = credential.STSAssumeRoleCredential(
|
9335
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
9336
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
9337
|
+
)
|
9338
|
+
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):
|
9339
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
9340
|
+
else:
|
9341
|
+
cred = credential.Credential(
|
9342
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
9343
|
+
)
|
9344
|
+
http_profile = HttpProfile(
|
9345
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
9346
|
+
reqMethod="POST",
|
9347
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
9348
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
9349
|
+
)
|
9350
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
9351
|
+
if g_param[OptionsDefine.Language]:
|
9352
|
+
profile.language = g_param[OptionsDefine.Language]
|
9353
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
9354
|
+
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
9355
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
9356
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
9357
|
+
model = models.GetJobStatusRequest()
|
9358
|
+
model.from_json_string(json.dumps(args))
|
9359
|
+
start_time = time.time()
|
9360
|
+
while True:
|
9361
|
+
rsp = client.GetJobStatus(model)
|
9362
|
+
result = rsp.to_json_string()
|
9363
|
+
try:
|
9364
|
+
json_obj = json.loads(result)
|
9365
|
+
except TypeError as e:
|
9366
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
9367
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
9368
|
+
break
|
9369
|
+
cur_time = time.time()
|
9370
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
9371
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
9372
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
9373
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
9374
|
+
else:
|
9375
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
9376
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
9377
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
9378
|
+
|
9379
|
+
|
9172
9380
|
def doDescribeRelatedTasksByTaskId(args, parsed_globals):
|
9173
9381
|
g_param = parse_global_arg(parsed_globals)
|
9174
9382
|
|
@@ -10105,7 +10313,7 @@ def doModifyMonitorStatus(args, parsed_globals):
|
|
10105
10313
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
10106
10314
|
|
10107
10315
|
|
10108
|
-
def
|
10316
|
+
def doReportTable(args, parsed_globals):
|
10109
10317
|
g_param = parse_global_arg(parsed_globals)
|
10110
10318
|
|
10111
10319
|
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
@@ -10134,11 +10342,11 @@ def doDeleteTaskLineage(args, parsed_globals):
|
|
10134
10342
|
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
10135
10343
|
client._sdkVersion += ("_CLI_" + __version__)
|
10136
10344
|
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
10137
|
-
model = models.
|
10345
|
+
model = models.ReportTableRequest()
|
10138
10346
|
model.from_json_string(json.dumps(args))
|
10139
10347
|
start_time = time.time()
|
10140
10348
|
while True:
|
10141
|
-
rsp = client.
|
10349
|
+
rsp = client.ReportTable(model)
|
10142
10350
|
result = rsp.to_json_string()
|
10143
10351
|
try:
|
10144
10352
|
json_obj = json.loads(result)
|
@@ -11821,6 +12029,58 @@ def doDescribeDependTaskLists(args, parsed_globals):
|
|
11821
12029
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
11822
12030
|
|
11823
12031
|
|
12032
|
+
def doReportDatabase(args, parsed_globals):
|
12033
|
+
g_param = parse_global_arg(parsed_globals)
|
12034
|
+
|
12035
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
12036
|
+
cred = credential.CVMRoleCredential()
|
12037
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
12038
|
+
cred = credential.STSAssumeRoleCredential(
|
12039
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
12040
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
12041
|
+
)
|
12042
|
+
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):
|
12043
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
12044
|
+
else:
|
12045
|
+
cred = credential.Credential(
|
12046
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
12047
|
+
)
|
12048
|
+
http_profile = HttpProfile(
|
12049
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
12050
|
+
reqMethod="POST",
|
12051
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
12052
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
12053
|
+
)
|
12054
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
12055
|
+
if g_param[OptionsDefine.Language]:
|
12056
|
+
profile.language = g_param[OptionsDefine.Language]
|
12057
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
12058
|
+
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
12059
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
12060
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
12061
|
+
model = models.ReportDatabaseRequest()
|
12062
|
+
model.from_json_string(json.dumps(args))
|
12063
|
+
start_time = time.time()
|
12064
|
+
while True:
|
12065
|
+
rsp = client.ReportDatabase(model)
|
12066
|
+
result = rsp.to_json_string()
|
12067
|
+
try:
|
12068
|
+
json_obj = json.loads(result)
|
12069
|
+
except TypeError as e:
|
12070
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
12071
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
12072
|
+
break
|
12073
|
+
cur_time = time.time()
|
12074
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
12075
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
12076
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
12077
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
12078
|
+
else:
|
12079
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
12080
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
12081
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
12082
|
+
|
12083
|
+
|
11824
12084
|
def doSaveCustomFunction(args, parsed_globals):
|
11825
12085
|
g_param = parse_global_arg(parsed_globals)
|
11826
12086
|
|
@@ -11873,6 +12133,58 @@ def doSaveCustomFunction(args, parsed_globals):
|
|
11873
12133
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
11874
12134
|
|
11875
12135
|
|
12136
|
+
def doGetIntegrationNodeColumnSchema(args, parsed_globals):
|
12137
|
+
g_param = parse_global_arg(parsed_globals)
|
12138
|
+
|
12139
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
12140
|
+
cred = credential.CVMRoleCredential()
|
12141
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
12142
|
+
cred = credential.STSAssumeRoleCredential(
|
12143
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
12144
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
12145
|
+
)
|
12146
|
+
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):
|
12147
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
12148
|
+
else:
|
12149
|
+
cred = credential.Credential(
|
12150
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
12151
|
+
)
|
12152
|
+
http_profile = HttpProfile(
|
12153
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
12154
|
+
reqMethod="POST",
|
12155
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
12156
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
12157
|
+
)
|
12158
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
12159
|
+
if g_param[OptionsDefine.Language]:
|
12160
|
+
profile.language = g_param[OptionsDefine.Language]
|
12161
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
12162
|
+
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
12163
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
12164
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
12165
|
+
model = models.GetIntegrationNodeColumnSchemaRequest()
|
12166
|
+
model.from_json_string(json.dumps(args))
|
12167
|
+
start_time = time.time()
|
12168
|
+
while True:
|
12169
|
+
rsp = client.GetIntegrationNodeColumnSchema(model)
|
12170
|
+
result = rsp.to_json_string()
|
12171
|
+
try:
|
12172
|
+
json_obj = json.loads(result)
|
12173
|
+
except TypeError as e:
|
12174
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
12175
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
12176
|
+
break
|
12177
|
+
cur_time = time.time()
|
12178
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
12179
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
12180
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
12181
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
12182
|
+
else:
|
12183
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
12184
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
12185
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
12186
|
+
|
12187
|
+
|
11876
12188
|
def doModifyDataSource(args, parsed_globals):
|
11877
12189
|
g_param = parse_global_arg(parsed_globals)
|
11878
12190
|
|
@@ -12081,7 +12393,7 @@ def doUploadContent(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 doDeleteTaskLineage(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 doDescribeProjectUsers(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.DeleteTaskLineageRequest()
|
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.DeleteTaskLineage(model)
|
12118
12430
|
result = rsp.to_json_string()
|
12119
12431
|
try:
|
12120
12432
|
json_obj = json.loads(result)
|
@@ -13277,7 +13589,7 @@ def doModifyDimensionWeight(args, parsed_globals):
|
|
13277
13589
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
13278
13590
|
|
13279
13591
|
|
13280
|
-
def
|
13592
|
+
def doRemoveSchema(args, parsed_globals):
|
13281
13593
|
g_param = parse_global_arg(parsed_globals)
|
13282
13594
|
|
13283
13595
|
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
@@ -13306,11 +13618,11 @@ def doCreateTaskFolder(args, parsed_globals):
|
|
13306
13618
|
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
13307
13619
|
client._sdkVersion += ("_CLI_" + __version__)
|
13308
13620
|
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
13309
|
-
model = models.
|
13621
|
+
model = models.RemoveSchemaRequest()
|
13310
13622
|
model.from_json_string(json.dumps(args))
|
13311
13623
|
start_time = time.time()
|
13312
13624
|
while True:
|
13313
|
-
rsp = client.
|
13625
|
+
rsp = client.RemoveSchema(model)
|
13314
13626
|
result = rsp.to_json_string()
|
13315
13627
|
try:
|
13316
13628
|
json_obj = json.loads(result)
|
@@ -13381,6 +13693,110 @@ def doModifyTaskAlarmRegular(args, parsed_globals):
|
|
13381
13693
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
13382
13694
|
|
13383
13695
|
|
13696
|
+
def doCreateTaskFolder(args, parsed_globals):
|
13697
|
+
g_param = parse_global_arg(parsed_globals)
|
13698
|
+
|
13699
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
13700
|
+
cred = credential.CVMRoleCredential()
|
13701
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
13702
|
+
cred = credential.STSAssumeRoleCredential(
|
13703
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
13704
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
13705
|
+
)
|
13706
|
+
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):
|
13707
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
13708
|
+
else:
|
13709
|
+
cred = credential.Credential(
|
13710
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
13711
|
+
)
|
13712
|
+
http_profile = HttpProfile(
|
13713
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
13714
|
+
reqMethod="POST",
|
13715
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
13716
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
13717
|
+
)
|
13718
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
13719
|
+
if g_param[OptionsDefine.Language]:
|
13720
|
+
profile.language = g_param[OptionsDefine.Language]
|
13721
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
13722
|
+
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
13723
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
13724
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
13725
|
+
model = models.CreateTaskFolderRequest()
|
13726
|
+
model.from_json_string(json.dumps(args))
|
13727
|
+
start_time = time.time()
|
13728
|
+
while True:
|
13729
|
+
rsp = client.CreateTaskFolder(model)
|
13730
|
+
result = rsp.to_json_string()
|
13731
|
+
try:
|
13732
|
+
json_obj = json.loads(result)
|
13733
|
+
except TypeError as e:
|
13734
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
13735
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
13736
|
+
break
|
13737
|
+
cur_time = time.time()
|
13738
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
13739
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
13740
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
13741
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
13742
|
+
else:
|
13743
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
13744
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
13745
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
13746
|
+
|
13747
|
+
|
13748
|
+
def doDescribeProjectUsers(args, parsed_globals):
|
13749
|
+
g_param = parse_global_arg(parsed_globals)
|
13750
|
+
|
13751
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
13752
|
+
cred = credential.CVMRoleCredential()
|
13753
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
13754
|
+
cred = credential.STSAssumeRoleCredential(
|
13755
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
13756
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
13757
|
+
)
|
13758
|
+
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):
|
13759
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
13760
|
+
else:
|
13761
|
+
cred = credential.Credential(
|
13762
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
13763
|
+
)
|
13764
|
+
http_profile = HttpProfile(
|
13765
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
13766
|
+
reqMethod="POST",
|
13767
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
13768
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
13769
|
+
)
|
13770
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
13771
|
+
if g_param[OptionsDefine.Language]:
|
13772
|
+
profile.language = g_param[OptionsDefine.Language]
|
13773
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
13774
|
+
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
13775
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
13776
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
13777
|
+
model = models.DescribeProjectUsersRequest()
|
13778
|
+
model.from_json_string(json.dumps(args))
|
13779
|
+
start_time = time.time()
|
13780
|
+
while True:
|
13781
|
+
rsp = client.DescribeProjectUsers(model)
|
13782
|
+
result = rsp.to_json_string()
|
13783
|
+
try:
|
13784
|
+
json_obj = json.loads(result)
|
13785
|
+
except TypeError as e:
|
13786
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
13787
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
13788
|
+
break
|
13789
|
+
cur_time = time.time()
|
13790
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
13791
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
13792
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
13793
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
13794
|
+
else:
|
13795
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
13796
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
13797
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
13798
|
+
|
13799
|
+
|
13384
13800
|
def doBatchStopWorkflowsByIds(args, parsed_globals):
|
13385
13801
|
g_param = parse_global_arg(parsed_globals)
|
13386
13802
|
|
@@ -14421,7 +14837,7 @@ def doDescribeManualTriggerRecordPage(args, parsed_globals):
|
|
14421
14837
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
14422
14838
|
|
14423
14839
|
|
14424
|
-
def
|
14840
|
+
def doRemoveTable(args, parsed_globals):
|
14425
14841
|
g_param = parse_global_arg(parsed_globals)
|
14426
14842
|
|
14427
14843
|
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
@@ -14450,11 +14866,11 @@ def doGetIntegrationNodeColumnSchema(args, parsed_globals):
|
|
14450
14866
|
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
14451
14867
|
client._sdkVersion += ("_CLI_" + __version__)
|
14452
14868
|
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
14453
|
-
model = models.
|
14869
|
+
model = models.RemoveTableRequest()
|
14454
14870
|
model.from_json_string(json.dumps(args))
|
14455
14871
|
start_time = time.time()
|
14456
14872
|
while True:
|
14457
|
-
rsp = client.
|
14873
|
+
rsp = client.RemoveTable(model)
|
14458
14874
|
result = rsp.to_json_string()
|
14459
14875
|
try:
|
14460
14876
|
json_obj = json.loads(result)
|
@@ -15072,6 +15488,7 @@ ACTION_MAP = {
|
|
15072
15488
|
"DescribeDataCheckStat": doDescribeDataCheckStat,
|
15073
15489
|
"DescribeTableMeta": doDescribeTableMeta,
|
15074
15490
|
"BatchKillIntegrationTaskInstances": doBatchKillIntegrationTaskInstances,
|
15491
|
+
"DescribeTaskParamDs": doDescribeTaskParamDs,
|
15075
15492
|
"ModifyExecStrategy": doModifyExecStrategy,
|
15076
15493
|
"RegisterEventListener": doRegisterEventListener,
|
15077
15494
|
"DescribeBaseBizCatalogs": doDescribeBaseBizCatalogs,
|
@@ -15172,6 +15589,7 @@ ACTION_MAP = {
|
|
15172
15589
|
"ModifyRule": doModifyRule,
|
15173
15590
|
"DescribeFunctionTypes": doDescribeFunctionTypes,
|
15174
15591
|
"DeleteLink": doDeleteLink,
|
15592
|
+
"RemoveDatabase": doRemoveDatabase,
|
15175
15593
|
"DescribeRealTimeTaskInstanceNodeInfo": doDescribeRealTimeTaskInstanceNodeInfo,
|
15176
15594
|
"DescribeColumnsMeta": doDescribeColumnsMeta,
|
15177
15595
|
"DescribeFunctionKinds": doDescribeFunctionKinds,
|
@@ -15206,6 +15624,7 @@ ACTION_MAP = {
|
|
15206
15624
|
"CreateHiveTableByDDL": doCreateHiveTableByDDL,
|
15207
15625
|
"DeleteDsFolder": doDeleteDsFolder,
|
15208
15626
|
"DescribeBatchOperateTask": doDescribeBatchOperateTask,
|
15627
|
+
"ReportSchema": doReportSchema,
|
15209
15628
|
"DescribeTaskLineage": doDescribeTaskLineage,
|
15210
15629
|
"BatchDeleteOpsTasks": doBatchDeleteOpsTasks,
|
15211
15630
|
"DescribeResourceManagePathTrees": doDescribeResourceManagePathTrees,
|
@@ -15232,6 +15651,7 @@ ACTION_MAP = {
|
|
15232
15651
|
"UploadResource": doUploadResource,
|
15233
15652
|
"ModifyProject": doModifyProject,
|
15234
15653
|
"DeleteProjectUsers": doDeleteProjectUsers,
|
15654
|
+
"GetJobStatus": doGetJobStatus,
|
15235
15655
|
"DescribeRelatedTasksByTaskId": doDescribeRelatedTasksByTaskId,
|
15236
15656
|
"BatchMakeUpIntegrationTasks": doBatchMakeUpIntegrationTasks,
|
15237
15657
|
"DescribeRulesByPage": doDescribeRulesByPage,
|
@@ -15250,7 +15670,7 @@ ACTION_MAP = {
|
|
15250
15670
|
"DescribeInstanceLogFile": doDescribeInstanceLogFile,
|
15251
15671
|
"DescribeIntegrationStatisticsTaskStatusTrend": doDescribeIntegrationStatisticsTaskStatusTrend,
|
15252
15672
|
"ModifyMonitorStatus": doModifyMonitorStatus,
|
15253
|
-
"
|
15673
|
+
"ReportTable": doReportTable,
|
15254
15674
|
"DescribeAllByFolderNew": doDescribeAllByFolderNew,
|
15255
15675
|
"UpdateWorkflowOwner": doUpdateWorkflowOwner,
|
15256
15676
|
"UpdateWorkflowInfo": doUpdateWorkflowInfo,
|
@@ -15283,12 +15703,14 @@ ACTION_MAP = {
|
|
15283
15703
|
"ListBatchDetail": doListBatchDetail,
|
15284
15704
|
"ModifyTaskInfo": doModifyTaskInfo,
|
15285
15705
|
"DescribeDependTaskLists": doDescribeDependTaskLists,
|
15706
|
+
"ReportDatabase": doReportDatabase,
|
15286
15707
|
"SaveCustomFunction": doSaveCustomFunction,
|
15708
|
+
"GetIntegrationNodeColumnSchema": doGetIntegrationNodeColumnSchema,
|
15287
15709
|
"ModifyDataSource": doModifyDataSource,
|
15288
15710
|
"DescribeTaskAlarmRegulations": doDescribeTaskAlarmRegulations,
|
15289
15711
|
"DescribeIntegrationVersionNodesInfo": doDescribeIntegrationVersionNodesInfo,
|
15290
15712
|
"UploadContent": doUploadContent,
|
15291
|
-
"
|
15713
|
+
"DeleteTaskLineage": doDeleteTaskLineage,
|
15292
15714
|
"DescribeWorkflowSchedulerInfoDs": doDescribeWorkflowSchedulerInfoDs,
|
15293
15715
|
"DeleteCustomFunction": doDeleteCustomFunction,
|
15294
15716
|
"DescribeFolderWorkflowList": doDescribeFolderWorkflowList,
|
@@ -15311,8 +15733,10 @@ ACTION_MAP = {
|
|
15311
15733
|
"DescribeTenantProjects": doDescribeTenantProjects,
|
15312
15734
|
"RenewWorkflowOwnerDs": doRenewWorkflowOwnerDs,
|
15313
15735
|
"ModifyDimensionWeight": doModifyDimensionWeight,
|
15314
|
-
"
|
15736
|
+
"RemoveSchema": doRemoveSchema,
|
15315
15737
|
"ModifyTaskAlarmRegular": doModifyTaskAlarmRegular,
|
15738
|
+
"CreateTaskFolder": doCreateTaskFolder,
|
15739
|
+
"DescribeProjectUsers": doDescribeProjectUsers,
|
15316
15740
|
"BatchStopWorkflowsByIds": doBatchStopWorkflowsByIds,
|
15317
15741
|
"BatchResumeIntegrationTasks": doBatchResumeIntegrationTasks,
|
15318
15742
|
"GetInstanceLog": doGetInstanceLog,
|
@@ -15333,7 +15757,7 @@ ACTION_MAP = {
|
|
15333
15757
|
"RegisterDsEventListener": doRegisterDsEventListener,
|
15334
15758
|
"CreateDataModel": doCreateDataModel,
|
15335
15759
|
"DescribeManualTriggerRecordPage": doDescribeManualTriggerRecordPage,
|
15336
|
-
"
|
15760
|
+
"RemoveTable": doRemoveTable,
|
15337
15761
|
"DescribeOpsWorkflows": doDescribeOpsWorkflows,
|
15338
15762
|
"BatchCreateIntegrationTaskAlarms": doBatchCreateIntegrationTaskAlarms,
|
15339
15763
|
"DescribeTableLineageInfo": doDescribeTableLineageInfo,
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: tccli
|
3
|
-
Version: 3.0.
|
3
|
+
Version: 3.0.1361.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.1361
|
17
17
|
Description-Content-Type: text/markdown
|
18
18
|
|
19
19
|
# 命令行工具简介
|