tccli 3.0.1312.1__py2.py3-none-any.whl → 3.0.1314.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/autoscaling/v20180419/api.json +164 -161
- tccli/services/autoscaling/v20180419/examples.json +13 -13
- tccli/services/batch/v20170312/api.json +1 -1
- tccli/services/bh/v20230418/api.json +152 -1
- tccli/services/bi/v20220105/api.json +19 -0
- tccli/services/cat/v20180409/api.json +9 -0
- tccli/services/cdb/v20170320/api.json +30 -9
- tccli/services/cdb/v20170320/examples.json +1 -1
- tccli/services/cfs/v20190719/api.json +92 -91
- tccli/services/cfs/v20190719/examples.json +7 -7
- tccli/services/cfw/v20190904/api.json +5 -7
- tccli/services/clb/v20180317/api.json +5 -5
- tccli/services/cvm/v20170312/api.json +9 -9
- tccli/services/cynosdb/v20190107/api.json +14 -4
- tccli/services/emr/v20190103/api.json +20 -0
- tccli/services/ess/v20201111/api.json +9 -0
- tccli/services/essbasic/v20210526/api.json +1 -1
- tccli/services/essbasic/v20210526/examples.json +6 -0
- tccli/services/lke/v20231130/api.json +1 -1
- tccli/services/mps/v20190612/api.json +1 -1
- tccli/services/postgres/postgres_client.py +0 -53
- tccli/services/postgres/v20170312/api.json +8 -51
- tccli/services/postgres/v20170312/examples.json +0 -14
- tccli/services/tbaas/tbaas_client.py +0 -53
- tccli/services/tbaas/v20180416/api.json +0 -133
- tccli/services/tbaas/v20180416/examples.json +0 -8
- tccli/services/teo/teo_client.py +53 -0
- tccli/services/teo/v20220901/api.json +496 -104
- tccli/services/teo/v20220901/examples.json +8 -0
- tccli/services/tke/v20180525/api.json +109 -85
- tccli/services/tms/v20201229/api.json +47 -59
- tccli/services/tmt/v20180321/api.json +68 -0
- tccli/services/tmt/v20180321/examples.json +2 -8
- tccli/services/trtc/v20190722/api.json +2 -2
- tccli/services/vpc/v20170312/api.json +52 -52
- tccli/services/vpc/v20170312/examples.json +4 -4
- tccli/services/wedata/v20210820/api.json +305 -1
- tccli/services/wedata/v20210820/examples.json +24 -0
- tccli/services/wedata/wedata_client.py +171 -12
- {tccli-3.0.1312.1.dist-info → tccli-3.0.1314.1.dist-info}/METADATA +2 -2
- {tccli-3.0.1312.1.dist-info → tccli-3.0.1314.1.dist-info}/RECORD +45 -45
- {tccli-3.0.1312.1.dist-info → tccli-3.0.1314.1.dist-info}/WHEEL +0 -0
- {tccli-3.0.1312.1.dist-info → tccli-3.0.1314.1.dist-info}/entry_points.txt +0 -0
- {tccli-3.0.1312.1.dist-info → tccli-3.0.1314.1.dist-info}/license_files/LICENSE +0 -0
@@ -1421,7 +1421,7 @@ def doDescribeTaskByCycle(args, parsed_globals):
|
|
1421
1421
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
1422
1422
|
|
1423
1423
|
|
1424
|
-
def
|
1424
|
+
def doGetBatchDetailErrorLog(args, parsed_globals):
|
1425
1425
|
g_param = parse_global_arg(parsed_globals)
|
1426
1426
|
|
1427
1427
|
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
@@ -1450,11 +1450,11 @@ def doDescribeInstanceLogFile(args, parsed_globals):
|
|
1450
1450
|
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
1451
1451
|
client._sdkVersion += ("_CLI_" + __version__)
|
1452
1452
|
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
1453
|
-
model = models.
|
1453
|
+
model = models.GetBatchDetailErrorLogRequest()
|
1454
1454
|
model.from_json_string(json.dumps(args))
|
1455
1455
|
start_time = time.time()
|
1456
1456
|
while True:
|
1457
|
-
rsp = client.
|
1457
|
+
rsp = client.GetBatchDetailErrorLog(model)
|
1458
1458
|
result = rsp.to_json_string()
|
1459
1459
|
try:
|
1460
1460
|
json_obj = json.loads(result)
|
@@ -8753,7 +8753,7 @@ def doDescribeRulesByPage(args, parsed_globals):
|
|
8753
8753
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
8754
8754
|
|
8755
8755
|
|
8756
|
-
def
|
8756
|
+
def doDescribeCodeTemplateDetail(args, parsed_globals):
|
8757
8757
|
g_param = parse_global_arg(parsed_globals)
|
8758
8758
|
|
8759
8759
|
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
@@ -8782,11 +8782,11 @@ def doDescribeRuleTemplate(args, parsed_globals):
|
|
8782
8782
|
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
8783
8783
|
client._sdkVersion += ("_CLI_" + __version__)
|
8784
8784
|
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
8785
|
-
model = models.
|
8785
|
+
model = models.DescribeCodeTemplateDetailRequest()
|
8786
8786
|
model.from_json_string(json.dumps(args))
|
8787
8787
|
start_time = time.time()
|
8788
8788
|
while True:
|
8789
|
-
rsp = client.
|
8789
|
+
rsp = client.DescribeCodeTemplateDetail(model)
|
8790
8790
|
result = rsp.to_json_string()
|
8791
8791
|
try:
|
8792
8792
|
json_obj = json.loads(result)
|
@@ -9325,6 +9325,58 @@ def doModifyApproveStatus(args, parsed_globals):
|
|
9325
9325
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
9326
9326
|
|
9327
9327
|
|
9328
|
+
def doDescribeInstanceLogFile(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.DescribeInstanceLogFileRequest()
|
9358
|
+
model.from_json_string(json.dumps(args))
|
9359
|
+
start_time = time.time()
|
9360
|
+
while True:
|
9361
|
+
rsp = client.DescribeInstanceLogFile(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
|
+
|
9328
9380
|
def doDescribeIntegrationStatisticsTaskStatusTrend(args, parsed_globals):
|
9329
9381
|
g_param = parse_global_arg(parsed_globals)
|
9330
9382
|
|
@@ -10885,7 +10937,7 @@ def doDeleteResource(args, parsed_globals):
|
|
10885
10937
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
10886
10938
|
|
10887
10939
|
|
10888
|
-
def
|
10940
|
+
def doListBatchDetail(args, parsed_globals):
|
10889
10941
|
g_param = parse_global_arg(parsed_globals)
|
10890
10942
|
|
10891
10943
|
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
@@ -10914,11 +10966,11 @@ def doDescribeQualityScoreTrend(args, parsed_globals):
|
|
10914
10966
|
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
10915
10967
|
client._sdkVersion += ("_CLI_" + __version__)
|
10916
10968
|
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
10917
|
-
model = models.
|
10969
|
+
model = models.ListBatchDetailRequest()
|
10918
10970
|
model.from_json_string(json.dumps(args))
|
10919
10971
|
start_time = time.time()
|
10920
10972
|
while True:
|
10921
|
-
rsp = client.
|
10973
|
+
rsp = client.ListBatchDetail(model)
|
10922
10974
|
result = rsp.to_json_string()
|
10923
10975
|
try:
|
10924
10976
|
json_obj = json.loads(result)
|
@@ -12081,6 +12133,58 @@ def doBatchRunOpsTask(args, parsed_globals):
|
|
12081
12133
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
12082
12134
|
|
12083
12135
|
|
12136
|
+
def doDescribeQualityScoreTrend(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.DescribeQualityScoreTrendRequest()
|
12166
|
+
model.from_json_string(json.dumps(args))
|
12167
|
+
start_time = time.time()
|
12168
|
+
while True:
|
12169
|
+
rsp = client.DescribeQualityScoreTrend(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
|
+
|
12084
12188
|
def doModifyTaskLinks(args, parsed_globals):
|
12085
12189
|
g_param = parse_global_arg(parsed_globals)
|
12086
12190
|
|
@@ -12653,6 +12757,58 @@ def doGetInstanceLog(args, parsed_globals):
|
|
12653
12757
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
12654
12758
|
|
12655
12759
|
|
12760
|
+
def doDescribeRuleTemplate(args, parsed_globals):
|
12761
|
+
g_param = parse_global_arg(parsed_globals)
|
12762
|
+
|
12763
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
12764
|
+
cred = credential.CVMRoleCredential()
|
12765
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
12766
|
+
cred = credential.STSAssumeRoleCredential(
|
12767
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
12768
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
12769
|
+
)
|
12770
|
+
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):
|
12771
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
12772
|
+
else:
|
12773
|
+
cred = credential.Credential(
|
12774
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
12775
|
+
)
|
12776
|
+
http_profile = HttpProfile(
|
12777
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
12778
|
+
reqMethod="POST",
|
12779
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
12780
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
12781
|
+
)
|
12782
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
12783
|
+
if g_param[OptionsDefine.Language]:
|
12784
|
+
profile.language = g_param[OptionsDefine.Language]
|
12785
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
12786
|
+
client = mod.WedataClient(cred, g_param[OptionsDefine.Region], profile)
|
12787
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
12788
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
12789
|
+
model = models.DescribeRuleTemplateRequest()
|
12790
|
+
model.from_json_string(json.dumps(args))
|
12791
|
+
start_time = time.time()
|
12792
|
+
while True:
|
12793
|
+
rsp = client.DescribeRuleTemplate(model)
|
12794
|
+
result = rsp.to_json_string()
|
12795
|
+
try:
|
12796
|
+
json_obj = json.loads(result)
|
12797
|
+
except TypeError as e:
|
12798
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
12799
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
12800
|
+
break
|
12801
|
+
cur_time = time.time()
|
12802
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
12803
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
12804
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
12805
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
12806
|
+
else:
|
12807
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
12808
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
12809
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
12810
|
+
|
12811
|
+
|
12656
12812
|
def doDescribeInstanceLastLog(args, parsed_globals):
|
12657
12813
|
g_param = parse_global_arg(parsed_globals)
|
12658
12814
|
|
@@ -13887,7 +14043,7 @@ ACTION_MAP = {
|
|
13887
14043
|
"DescribeIntegrationNode": doDescribeIntegrationNode,
|
13888
14044
|
"DescribeDatabaseMetas": doDescribeDatabaseMetas,
|
13889
14045
|
"DescribeTaskByCycle": doDescribeTaskByCycle,
|
13890
|
-
"
|
14046
|
+
"GetBatchDetailErrorLog": doGetBatchDetailErrorLog,
|
13891
14047
|
"DescribeFieldBasicInfo": doDescribeFieldBasicInfo,
|
13892
14048
|
"DeleteCodeTemplate": doDeleteCodeTemplate,
|
13893
14049
|
"RemoveWorkflowDs": doRemoveWorkflowDs,
|
@@ -14028,7 +14184,7 @@ ACTION_MAP = {
|
|
14028
14184
|
"DeleteFile": doDeleteFile,
|
14029
14185
|
"BatchMakeUpIntegrationTasks": doBatchMakeUpIntegrationTasks,
|
14030
14186
|
"DescribeRulesByPage": doDescribeRulesByPage,
|
14031
|
-
"
|
14187
|
+
"DescribeCodeTemplateDetail": doDescribeCodeTemplateDetail,
|
14032
14188
|
"DescribeRule": doDescribeRule,
|
14033
14189
|
"ModifyWorkflowInfo": doModifyWorkflowInfo,
|
14034
14190
|
"DescribeRuleExecStat": doDescribeRuleExecStat,
|
@@ -14039,6 +14195,7 @@ ACTION_MAP = {
|
|
14039
14195
|
"DagInstances": doDagInstances,
|
14040
14196
|
"DescribeDataServicePublishedApiList": doDescribeDataServicePublishedApiList,
|
14041
14197
|
"ModifyApproveStatus": doModifyApproveStatus,
|
14198
|
+
"DescribeInstanceLogFile": doDescribeInstanceLogFile,
|
14042
14199
|
"DescribeIntegrationStatisticsTaskStatusTrend": doDescribeIntegrationStatisticsTaskStatusTrend,
|
14043
14200
|
"DescribeTaskLockStatus": doDescribeTaskLockStatus,
|
14044
14201
|
"DescribeAllByFolderNew": doDescribeAllByFolderNew,
|
@@ -14069,7 +14226,7 @@ ACTION_MAP = {
|
|
14069
14226
|
"TriggerEvent": doTriggerEvent,
|
14070
14227
|
"FreezeTasksByWorkflowIds": doFreezeTasksByWorkflowIds,
|
14071
14228
|
"DeleteResource": doDeleteResource,
|
14072
|
-
"
|
14229
|
+
"ListBatchDetail": doListBatchDetail,
|
14073
14230
|
"ModifyTaskInfo": doModifyTaskInfo,
|
14074
14231
|
"DescribeDependTaskLists": doDescribeDependTaskLists,
|
14075
14232
|
"SaveCustomFunction": doSaveCustomFunction,
|
@@ -14092,6 +14249,7 @@ ACTION_MAP = {
|
|
14092
14249
|
"ListInstances": doListInstances,
|
14093
14250
|
"CommitRuleGroupTask": doCommitRuleGroupTask,
|
14094
14251
|
"BatchRunOpsTask": doBatchRunOpsTask,
|
14252
|
+
"DescribeQualityScoreTrend": doDescribeQualityScoreTrend,
|
14095
14253
|
"ModifyTaskLinks": doModifyTaskLinks,
|
14096
14254
|
"RenewWorkflowSchedulerInfoDs": doRenewWorkflowSchedulerInfoDs,
|
14097
14255
|
"DescribeOpsMakePlans": doDescribeOpsMakePlans,
|
@@ -14103,6 +14261,7 @@ ACTION_MAP = {
|
|
14103
14261
|
"BatchStopWorkflowsByIds": doBatchStopWorkflowsByIds,
|
14104
14262
|
"BatchResumeIntegrationTasks": doBatchResumeIntegrationTasks,
|
14105
14263
|
"GetInstanceLog": doGetInstanceLog,
|
14264
|
+
"DescribeRuleTemplate": doDescribeRuleTemplate,
|
14106
14265
|
"DescribeInstanceLastLog": doDescribeInstanceLastLog,
|
14107
14266
|
"SubmitSqlTask": doSubmitSqlTask,
|
14108
14267
|
"DescribeDataSourceInfoList": doDescribeDataSourceInfoList,
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: tccli
|
3
|
-
Version: 3.0.
|
3
|
+
Version: 3.0.1314.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.1314
|
17
17
|
Description-Content-Type: text/markdown
|
18
18
|
|
19
19
|
# 命令行工具简介
|
@@ -1,4 +1,4 @@
|
|
1
|
-
tccli/__init__.py,sha256=
|
1
|
+
tccli/__init__.py,sha256=1pFo-QfbDlfiLu3euVyd_bYCFj1lVKVK25ZBLiLUfDE,27
|
2
2
|
tccli/argparser.py,sha256=WtfpBhj2R6JHSzagy6w6Q4y3YVmyIC_yK80w3tqBPgU,5589
|
3
3
|
tccli/argument.py,sha256=ZtVo3AySpzM-Hw6_hPdU27FjUsc8QPB2fIuLy7JSBAk,8091
|
4
4
|
tccli/base_command.py,sha256=rFWNAwfS0GA6LLGNOM-iPI0RV81Jag5cZn536ZQN0pw,2859
|
@@ -127,15 +127,15 @@ tccli/services/asw/v20200722/api.json,sha256=LB_fJylnafgidz8JY0_VUH2rbGlttV7yQMp
|
|
127
127
|
tccli/services/asw/v20200722/examples.json,sha256=vy7eefBxeogPGaergIHhM7kRZg13QZz4sPxS-daHBV8,15044
|
128
128
|
tccli/services/autoscaling/__init__.py,sha256=ehT8TTIZwn3a9MLUnT2wDV_T7luS4lb-4DYWUYQ4tJc,101
|
129
129
|
tccli/services/autoscaling/autoscaling_client.py,sha256=KK7xae1b_alFNKf0LXQzd6D4YXM259iBECJNeUpUoTY,187137
|
130
|
-
tccli/services/autoscaling/v20180419/api.json,sha256=
|
131
|
-
tccli/services/autoscaling/v20180419/examples.json,sha256=
|
130
|
+
tccli/services/autoscaling/v20180419/api.json,sha256=Up3Q39V_9zXHZL_ZIEw9QdPMKNAXnc9bS3IxNOK-FYI,376828
|
131
|
+
tccli/services/autoscaling/v20180419/examples.json,sha256=PtEUaxTnSOtmIxXSTxdselKDjpWDCyWGF6IQFHJB6Ak,92161
|
132
132
|
tccli/services/ba/__init__.py,sha256=Ciy9Ux8dr3wSCp6YmkZ-gqoEFwZyrQCRNXnZY2Ppts8,83
|
133
133
|
tccli/services/ba/ba_client.py,sha256=vlsp5mwinuKF6GARMgT0FPR9MkYCBpdxgyBZ1dL-62c,15372
|
134
134
|
tccli/services/ba/v20200720/api.json,sha256=WOtnzPo73w_K9aG1FljELGHVGT3xxaYZ9-FiUB0o-Ws,6592
|
135
135
|
tccli/services/ba/v20200720/examples.json,sha256=lJy1e6veie0esdtQqgjqegW_RWf5PeFMsQo8RSGFaM0,1753
|
136
136
|
tccli/services/batch/__init__.py,sha256=3LNSwycYE8a19VhTI55qyAYZ3VxzLJggE3i0LjgY2J8,89
|
137
137
|
tccli/services/batch/batch_client.py,sha256=8eGG_Gv7e9AKMnyWpVA8z9DibPPPYChjqi7bHf6G9lc,95816
|
138
|
-
tccli/services/batch/v20170312/api.json,sha256=
|
138
|
+
tccli/services/batch/v20170312/api.json,sha256=D9A_8LQU2w267UsRYyqjkym87OVDYVwTigg_aEDUENA,204988
|
139
139
|
tccli/services/batch/v20170312/examples.json,sha256=k4hlprH2E4zHe_3Ts5ktZsFkgqnaZh1gJtHpoyApRI4,52487
|
140
140
|
tccli/services/bda/__init__.py,sha256=EK9c0tT29sqjT0qCtiVi-TMTTUDLP4u9mLnrjeJkTxw,85
|
141
141
|
tccli/services/bda/bda_client.py,sha256=9So6_vj1sdLlv4a8OgpDucTxdlQwvKG7MniJtE-J7us,61452
|
@@ -143,11 +143,11 @@ tccli/services/bda/v20200324/api.json,sha256=szoLTsa48lFKWN7i1EdFZt0Yf4xMszORHml
|
|
143
143
|
tccli/services/bda/v20200324/examples.json,sha256=8gKkzGCuR8YKjJvmsZ_tlvXFDCMgxNn5lxV_toiUHAk,28222
|
144
144
|
tccli/services/bh/__init__.py,sha256=AwJhfJoHt-0UahYuxgGDqXyBQv9yO5lDTvxsnK1OIFw,83
|
145
145
|
tccli/services/bh/bh_client.py,sha256=yix3kHS2zlOTKMjPNbJ09Pcal0UTqqbmPW-m8B-8K9A,231347
|
146
|
-
tccli/services/bh/v20230418/api.json,sha256=
|
146
|
+
tccli/services/bh/v20230418/api.json,sha256=M6p38ADhQziejMbBEODIL4mxEJuecZJtFWhpfPG75_A,314745
|
147
147
|
tccli/services/bh/v20230418/examples.json,sha256=pV2iDMXWj8-rGu1HmIFHGzGdNV4ckdazo3bF2qNLIlM,79456
|
148
148
|
tccli/services/bi/__init__.py,sha256=Spp7MdXcW1J-2jUPyNqqn8H5FgFXyTVCaIjR6jqp72I,83
|
149
149
|
tccli/services/bi/bi_client.py,sha256=89jBQoCVUr0vXWeI-oBnJIeMd0x4mpucbC1aYoT8vSY,80198
|
150
|
-
tccli/services/bi/v20220105/api.json,sha256=
|
150
|
+
tccli/services/bi/v20220105/api.json,sha256=g6doh3fGr_93sjU4e8S393eZa3hgWcV-9NhowsyuKHw,177611
|
151
151
|
tccli/services/bi/v20220105/examples.json,sha256=IBkuIzHHHU_Bi-C9mptjBQbtX74QM9Y9H5rzWFD7eB4,32780
|
152
152
|
tccli/services/billing/__init__.py,sha256=nXe5kwm1G0HeH0itxncDA2xjwgaXNuqihS3NdFYZyR0,93
|
153
153
|
tccli/services/billing/billing_client.py,sha256=e0ABdKJT7PsIdZsaJpYbNiMnSdFRvFqTTDh1RfL1EzQ,181095
|
@@ -215,7 +215,7 @@ tccli/services/car/v20220110/api.json,sha256=Oooz1Wh6p9y31MTe_XulkGpDBlzskOLM2LP
|
|
215
215
|
tccli/services/car/v20220110/examples.json,sha256=X7v30pwi8owDX2c5U3GIMZX7FZz4j3ZaycJ1WkC2yds,3015
|
216
216
|
tccli/services/cat/__init__.py,sha256=J1vQBWrO1MImVNtJ5HeS0guuP2cAtGW5mgTq0aADJng,85
|
217
217
|
tccli/services/cat/cat_client.py,sha256=U3zZdzfc18k5mBxfVy8_9C_fNGLECvBgVZGI-x8PpAA,49519
|
218
|
-
tccli/services/cat/v20180409/api.json,sha256=
|
218
|
+
tccli/services/cat/v20180409/api.json,sha256=fvCc8yS7O8RWUwzxjzAyA6GJ4x4v8xOCQSWlecx6vlA,73323
|
219
219
|
tccli/services/cat/v20180409/examples.json,sha256=WTukR4wmqTf4R8DhxL1Z3MjOghfZ1fXP52o0SJ-ZJN4,21729
|
220
220
|
tccli/services/cbs/__init__.py,sha256=84vgEy9HuiN7UhVYSIgf35_93-5b5lrrr64enpdRRQw,85
|
221
221
|
tccli/services/cbs/cbs_client.py,sha256=DexZFrvtonGqGSHnBL-GDkbrOjIqXTLNajJRMkb4lu4,148773
|
@@ -227,8 +227,8 @@ tccli/services/ccc/v20200210/api.json,sha256=-0GUfmq0i5CHd0pg2idSdWA5qz1N4Bqzj6N
|
|
227
227
|
tccli/services/ccc/v20200210/examples.json,sha256=HVmqCfjzu6FHFG8KR8J-XGziJ1n1KaCL9pssmwfWGvM,68247
|
228
228
|
tccli/services/cdb/__init__.py,sha256=9Jk9tAMP2ZM_xOG77GvqXL1q3UfwYTEos6_P6xzpTiM,85
|
229
229
|
tccli/services/cdb/cdb_client.py,sha256=8uOQLQv6tqkiKodFKqOmo74y6fNpmevU1gQg58J2Z7s,539300
|
230
|
-
tccli/services/cdb/v20170320/api.json,sha256=
|
231
|
-
tccli/services/cdb/v20170320/examples.json,sha256=
|
230
|
+
tccli/services/cdb/v20170320/api.json,sha256=Y_ICKIc9t93N0tnqogffp7zFK9AnrqMbjpP3cPG5rkU,755299
|
231
|
+
tccli/services/cdb/v20170320/examples.json,sha256=6guQ4O6DDBOyCfafmqY6if_s3aU-lXbhscavx0wLeQ8,167296
|
232
232
|
tccli/services/cdc/__init__.py,sha256=0NOw5_YSjO-QzgYYiIo0gheuTe2_dvzCUnVD4BOP4tI,85
|
233
233
|
tccli/services/cdc/cdc_client.py,sha256=vm_lqOzTBqCIgnOgFnvJofiuYgix_WuRB5Zjrgjm5b8,77997
|
234
234
|
tccli/services/cdc/v20201214/api.json,sha256=pMY62H9bCn4D5CmtVHl--1CxpOW5Hix2fscw-tp3mbg,130656
|
@@ -263,11 +263,11 @@ tccli/services/cfg/v20210820/api.json,sha256=BkDXx6GiZGMv94v8nyOM0rut_u1441koELA
|
|
263
263
|
tccli/services/cfg/v20210820/examples.json,sha256=FtRok_PmGICP6v8DvHTc8gG4d0aZvUVKKTCf4NFZxYM,66763
|
264
264
|
tccli/services/cfs/__init__.py,sha256=VecrEhD_8cXfLCyCp9tLj9wbK9uN67huo5TyZPczt3w,85
|
265
265
|
tccli/services/cfs/cfs_client.py,sha256=Eya8IK21KHrn3qvo31NY_MPP9ezRIuJ5nCMMoc21jko,142484
|
266
|
-
tccli/services/cfs/v20190719/api.json,sha256=
|
267
|
-
tccli/services/cfs/v20190719/examples.json,sha256=
|
266
|
+
tccli/services/cfs/v20190719/api.json,sha256=PPhwIZzCkFGHOOaGmFliJ_YFiA-Bsnj766WsQzQ4tKU,164407
|
267
|
+
tccli/services/cfs/v20190719/examples.json,sha256=pSUunwFlUFSJ51knB5I1OIvJ5cnOgK1izCqCTgfsQTs,34129
|
268
268
|
tccli/services/cfw/__init__.py,sha256=2hNwXcNofHJCalk9HHEbOcgYz6XKuYmZk_iBroa5YsY,85
|
269
269
|
tccli/services/cfw/cfw_client.py,sha256=N200bCc_VCgRJ9rnTFbhmnuecls6t8QcIlV74xSlQCk,359579
|
270
|
-
tccli/services/cfw/v20190904/api.json,sha256=
|
270
|
+
tccli/services/cfw/v20190904/api.json,sha256=kxhwjeq2Re0LqOMKgf2J-UkRXZRvQXKV13nuQKodpa4,524379
|
271
271
|
tccli/services/cfw/v20190904/examples.json,sha256=bUkRpaa8-jljr6wtXKpdLu7-ki5i9i3crtTvfH56ktQ,128482
|
272
272
|
tccli/services/chc/__init__.py,sha256=UWne7MToL8NcA1uG6VeyDvmqYliQtx85YfzTfpHai7g,85
|
273
273
|
tccli/services/chc/chc_client.py,sha256=5CI5Esr4t_ve8ub_s4HYSuLx66vR7VmDaviVBUjM1dg,121395
|
@@ -303,7 +303,7 @@ tccli/services/ckafka/v20190819/api.json,sha256=QiO6n_Lid6dJxWPl6HfcKnRxouQmhtKR
|
|
303
303
|
tccli/services/ckafka/v20190819/examples.json,sha256=25TFH56qItFf1NLYk32UCHb_aTM0zNGi5nM7zIobiyM,156275
|
304
304
|
tccli/services/clb/__init__.py,sha256=iG2aiZhDOcK4l_2Wkxs57qF1Y4lmv7RxRSPcG9paDk0,85
|
305
305
|
tccli/services/clb/clb_client.py,sha256=bjLxqJJF-wwGm9Yimhq1RFSCzFwx7d9KZKXUC2hFqfY,289003
|
306
|
-
tccli/services/clb/v20180317/api.json,sha256=
|
306
|
+
tccli/services/clb/v20180317/api.json,sha256=3G9c2ZMK8WLaHgf3FtQnSTichCyhdZbzZzkiiFMumvM,468654
|
307
307
|
tccli/services/clb/v20180317/examples.json,sha256=6eX6tAVMHLshSKVB-DUWC8zBBHWLmUtsaMZ24M_T_lw,130497
|
308
308
|
tccli/services/cloudapp/__init__.py,sha256=Fz46VIoJkYtRiU5JD0yYE1ijPUmX9ay0byvrbtX4ZTs,95
|
309
309
|
tccli/services/cloudapp/cloudapp_client.py,sha256=1xkp9J4AcjfD0HvbmwmqjfI5A5QNYE_DWUfyAvHcpKQ,9223
|
@@ -359,7 +359,7 @@ tccli/services/csxg/v20230303/api.json,sha256=faLND0vT8UTE9LyFQcVhOqLcc47xZp07X7
|
|
359
359
|
tccli/services/csxg/v20230303/examples.json,sha256=bWInWqLp53HCMJ8s0MxYhRmNHzsYJEEU-RjzwOSYPeo,2106
|
360
360
|
tccli/services/cvm/__init__.py,sha256=TlF7VMjJTb_ELng-8ghL1Zvrmu7MJyuNBU5KLiWrFnw,85
|
361
361
|
tccli/services/cvm/cvm_client.py,sha256=75_lBsYh8j-Ug99sJTJbq3J03cqo8tz5PF95SQu4RQk,323400
|
362
|
-
tccli/services/cvm/v20170312/api.json,sha256=
|
362
|
+
tccli/services/cvm/v20170312/api.json,sha256=bF-dXwByUbqs7gzOyxardNpK0FJWTS_gn1k-JsGN4zk,556439
|
363
363
|
tccli/services/cvm/v20170312/examples.json,sha256=lK1hFmz0uG0R2cCBR91j9XLOkqK5OCGN6WGXSIt_CD4,133723
|
364
364
|
tccli/services/cwp/__init__.py,sha256=VzfiK7QzpNmTiO4zrmILRFSkKMJka8elLwzYLTjUPFw,85
|
365
365
|
tccli/services/cwp/cwp_client.py,sha256=wcx1ZRkkWZYgueKXKU0B4MuBsKpOvffcnMENCb0EehE,1605109
|
@@ -371,7 +371,7 @@ tccli/services/cws/v20180312/api.json,sha256=yvPs5gzcrgBkZti57TJNssoNSIq0rgozU3F
|
|
371
371
|
tccli/services/cws/v20180312/examples.json,sha256=QmYFbj9zOOBlm4aAxhOw45f5SPrzp5SDfqTv5b3n3Go,17899
|
372
372
|
tccli/services/cynosdb/__init__.py,sha256=MBWPrBSMnHBk0CGpJoI_LU1UxxPO0CX-LO2xxuCFCzg,93
|
373
373
|
tccli/services/cynosdb/cynosdb_client.py,sha256=M7_WXrrwarf1EHxtI2XpG4AHjbKOaaNY-uKfxdbn7WI,500068
|
374
|
-
tccli/services/cynosdb/v20190107/api.json,sha256=
|
374
|
+
tccli/services/cynosdb/v20190107/api.json,sha256=PKmrtZjNqvxuTwYYLuut9-oxyEt3noo3VVdkEj1ySY4,718660
|
375
375
|
tccli/services/cynosdb/v20190107/examples.json,sha256=wiN6iVeGvzSjmZeX48OQVwKud11wzYfvB059jBLa2xY,185771
|
376
376
|
tccli/services/dasb/__init__.py,sha256=x5ez0S2wQBIe-qTkGhVvwqG-rdYdP4NXZn2WfQDvF98,87
|
377
377
|
tccli/services/dasb/dasb_client.py,sha256=yrMO3CXN2k7U11q35Q08jXPJoMvbZJsdYTTVbaHRBpc,200497
|
@@ -465,7 +465,7 @@ tccli/services/eis/v20210601/api.json,sha256=g4AJCtbcKsD7SK1PNkOi3otPkTgRrzkfsBo
|
|
465
465
|
tccli/services/eis/v20210601/examples.json,sha256=0AzvsX5xN4sc7M4GKxa888M0-rOayfoPeR26AKgLXCw,5943
|
466
466
|
tccli/services/emr/__init__.py,sha256=CuCQwSW5RgNZF9gAIua1frYRqyXro0GUikyCRDqmWs8,85
|
467
467
|
tccli/services/emr/emr_client.py,sha256=QheNTEuXZ1IsXF9Kxe0cxR_eox3nIOv_pWfXEwQM4yo,254271
|
468
|
-
tccli/services/emr/v20190103/api.json,sha256=
|
468
|
+
tccli/services/emr/v20190103/api.json,sha256=ErfQO2u8hMUiSfCEvfdExVOAbpQJaDjJvXFrA6x6VxU,655626
|
469
469
|
tccli/services/emr/v20190103/examples.json,sha256=2peoCbYyaV6P6pKOd8E405OmDnjfvCsBcNX54BDeSoo,220534
|
470
470
|
tccli/services/es/__init__.py,sha256=Tgbj2S-AFcftz26Uaksp0nrbDZShO6QOdNN89tFu9s0,83
|
471
471
|
tccli/services/es/es_client.py,sha256=Y2mZjeWrai0-8lxFAfU8L1QINMgZn83Em_Nmg8QTPLY,226231
|
@@ -475,14 +475,14 @@ tccli/services/es/v20250101/api.json,sha256=G2JDKnplx8JllsF5OIF_cUTiQLVWigbKE2AA
|
|
475
475
|
tccli/services/es/v20250101/examples.json,sha256=PHz-njHfb9L9OcvkZp9R8bPZ6-PbwRhn0EeAu5PB3ao,11486
|
476
476
|
tccli/services/ess/__init__.py,sha256=heBHzUKDuNxQ68yNutgyA8stCndyFWqYJqiQFozTiDs,85
|
477
477
|
tccli/services/ess/ess_client.py,sha256=ho-BsVOnhIhKUEreCJzPo-Vnxhu9iW7r6XQW5I-EDIg,330194
|
478
|
-
tccli/services/ess/v20201111/api.json,sha256=
|
478
|
+
tccli/services/ess/v20201111/api.json,sha256=2waMZIY22bB_lX1yy_1W9DlKw-JEnaxwM9HOv_-iVhc,858800
|
479
479
|
tccli/services/ess/v20201111/examples.json,sha256=QBOMM1O3ysTEcGDWmQ60EpsDXyZ_lr-mdJ-TqvKGBaU,630859
|
480
480
|
tccli/services/essbasic/__init__.py,sha256=Uh5kuYtJvJ4F1S2w-19_B6a_JMF1ubh8Se-7p5LA0PE,95
|
481
481
|
tccli/services/essbasic/essbasic_client.py,sha256=9q2ENiAktrsBgpx-xNx6e9wkjn1Ey8JQcely95YjdYQ,452378
|
482
482
|
tccli/services/essbasic/v20201222/api.json,sha256=8yA-0DwpjBAZajDJnp3flQ2xn1sdkZMVQcvegUcemSM,184116
|
483
483
|
tccli/services/essbasic/v20201222/examples.json,sha256=TsEP0F9v4W6KvnFnczr2diMh2NX2Tp7TcCEkoeBw69Q,68751
|
484
|
-
tccli/services/essbasic/v20210526/api.json,sha256=
|
485
|
-
tccli/services/essbasic/v20210526/examples.json,sha256=
|
484
|
+
tccli/services/essbasic/v20210526/api.json,sha256=FdwP5kDonPGim_awVP-tODASQMyP2HthsgA3mgZ2UgU,783271
|
485
|
+
tccli/services/essbasic/v20210526/examples.json,sha256=4Xy74i3Iym8lrN9RUiPggs0P6yHmw1oNJqYnDbcfV54,525820
|
486
486
|
tccli/services/facefusion/__init__.py,sha256=5IsXKY7EJG73GoLZDaRk_QwthyDmfes1nKAVdwZETUE,99
|
487
487
|
tccli/services/facefusion/facefusion_client.py,sha256=OK0ZKLEKnBcxnu05rrnA8M7u8bmxJjnCJaRD-hKEDRE,18707
|
488
488
|
tccli/services/facefusion/v20181201/api.json,sha256=ir1Tf7bURUVshliL8FqTBp-cotcH8Sg9hfe7WeY5bkw,26672
|
@@ -659,7 +659,7 @@ tccli/services/live/v20180801/api.json,sha256=AYL6i1CuKf9GQwP7fReJQEcfWN5B2HspWE
|
|
659
659
|
tccli/services/live/v20180801/examples.json,sha256=gi21e8MX-qlfgcERPwqEUAl9DziTb0m5FzPCq1ywPSU,164578
|
660
660
|
tccli/services/lke/__init__.py,sha256=GKvpxCc-YzK4HVgYFq-aLRxZ1WW4MjpKLIqJNqecz_c,85
|
661
661
|
tccli/services/lke/lke_client.py,sha256=AUxiocSPnd03Nv34Uluubd-Z8yWWjVfCZ9ENeQ2q1os,307547
|
662
|
-
tccli/services/lke/v20231130/api.json,sha256
|
662
|
+
tccli/services/lke/v20231130/api.json,sha256=L5_4syq0wFEQD1fRyfy9_CLqG_ZgTDVJVvCrz31lMV8,491696
|
663
663
|
tccli/services/lke/v20231130/examples.json,sha256=_Iz6Mpz9mZr1pjF4a0CDIsihuwpibhfp32-_dTThKuM,252083
|
664
664
|
tccli/services/lkeap/__init__.py,sha256=asxLax87Gwt4UF1pQoh5GX51weKCm6t8FPDRq-aKv7w,89
|
665
665
|
tccli/services/lkeap/lkeap_client.py,sha256=zAJeq8IIi4unEESohtcbh6YDphvEWRJejdK4gTEJu5Y,89208
|
@@ -713,7 +713,7 @@ tccli/services/monitor/v20230616/api.json,sha256=BsgGYmCmUB2zzYAum83EFUhx4Rvgw3n
|
|
713
713
|
tccli/services/monitor/v20230616/examples.json,sha256=h3VWBvyZjytMYybGWTZ_rHeN3tTITVKmOPj8tBEdBGc,3726
|
714
714
|
tccli/services/mps/__init__.py,sha256=4M5o2xc0u3rqtgz_5an9Qxw2QaOqwBq8Fjc3IB64p2o,85
|
715
715
|
tccli/services/mps/mps_client.py,sha256=gop23grmUdciTBeAn3tAwXber-pCw38UNni6IHhGJc0,405167
|
716
|
-
tccli/services/mps/v20190612/api.json,sha256=
|
716
|
+
tccli/services/mps/v20190612/api.json,sha256=JkSajpfOywd9WjYRqUeLyNeXkWc3WjnkxVJClMEU7f0,1205955
|
717
717
|
tccli/services/mps/v20190612/examples.json,sha256=XxN1YnFxsb86U4km8R6FwOvFlMDH__QU6U7FpAZhggg,331218
|
718
718
|
tccli/services/mqtt/__init__.py,sha256=zchTxfWVKqmIOpb6siJtQcRDR5OfcpauX-ONDH5g32w,87
|
719
719
|
tccli/services/mqtt/mqtt_client.py,sha256=ngQLYyHDKHVvzg9gL87A0aJwBjlOgektFgr00j2MV74,167364
|
@@ -770,9 +770,9 @@ tccli/services/pds/pds_client.py,sha256=rXBh7erPTVEgZxJ1v3--29QaztJy1qiPAy4-NlWQ
|
|
770
770
|
tccli/services/pds/v20210701/api.json,sha256=QHecuYgk6wbNK7fxdWxUhdjWlGC16AJ3A5WGJZxtnt4,5587
|
771
771
|
tccli/services/pds/v20210701/examples.json,sha256=Ch-_j1Yu8K1DVh5VTfRQ5QYIzi7FsP0b89rj-P6pVCc,1155
|
772
772
|
tccli/services/postgres/__init__.py,sha256=pFwBnP_75cfCRyWRE6pmLAk61JejE7mIgR2jDKG0UzE,95
|
773
|
-
tccli/services/postgres/postgres_client.py,sha256=
|
774
|
-
tccli/services/postgres/v20170312/api.json,sha256=
|
775
|
-
tccli/services/postgres/v20170312/examples.json,sha256=
|
773
|
+
tccli/services/postgres/postgres_client.py,sha256=sH4in7xgWo6XtndoKpYZTKdyXfF3pXox4Stjh1njNHo,342302
|
774
|
+
tccli/services/postgres/v20170312/api.json,sha256=VaUKaj_stkD6pQ7Q-3RbJQ0C8QeuN_XM1Rn4yW59yeU,460207
|
775
|
+
tccli/services/postgres/v20170312/examples.json,sha256=6y7BjUsxKxe2iqwQKzqn5s_9AzI8Qe132xUwSu36svs,164670
|
776
776
|
tccli/services/privatedns/__init__.py,sha256=2grsKaWT8q6_xqjJXyXFxJmqRj7ODW_DJRl8c9Xx9fA,99
|
777
777
|
tccli/services/privatedns/privatedns_client.py,sha256=ovdyiHd8TB8EEDP8bAcyuY6Sjy6V5n7Mn1RANb2gqrQ,80886
|
778
778
|
tccli/services/privatedns/v20201028/api.json,sha256=eaKcBmAYEXqhY06HY3bXKRGYib33fkDfltRPVAISMso,77302
|
@@ -880,9 +880,9 @@ tccli/services/tav/tav_client.py,sha256=9q_Bo-X0_IHQcwkY5Bds0cBoIFaUmnvQACJ9az7A
|
|
880
880
|
tccli/services/tav/v20190118/api.json,sha256=nibeBn23FPJMqMok53XOecgitvjablbLtD_ScPZUGLU,8443
|
881
881
|
tccli/services/tav/v20190118/examples.json,sha256=ReiwDId1Q8elSeoRsC2lmqu3nUoDdqKosrz8_hlzdnI,2042
|
882
882
|
tccli/services/tbaas/__init__.py,sha256=jNkrnMaPp-_ftXE1huNWKDcbHRBrYAlTcwo-PTsFYpg,89
|
883
|
-
tccli/services/tbaas/tbaas_client.py,sha256=
|
884
|
-
tccli/services/tbaas/v20180416/api.json,sha256=
|
885
|
-
tccli/services/tbaas/v20180416/examples.json,sha256=
|
883
|
+
tccli/services/tbaas/tbaas_client.py,sha256=kG5Zmu5csR8bjIInDGTavi3lmIGnlgHcB_KEwoNRxBk,80646
|
884
|
+
tccli/services/tbaas/v20180416/api.json,sha256=BSFmfd8pTlUtnpCg4ZDuNGzCzXEMSk4r1RF8jsvrBqA,102307
|
885
|
+
tccli/services/tbaas/v20180416/examples.json,sha256=VkyeyR6kx9ptyL7FWUq6u_hUjMdSVZdJnpzFnVDCi7g,30244
|
886
886
|
tccli/services/tbm/__init__.py,sha256=L6YClSR_LJsZA2J68boC0hkmbMp_OYrMK4Q84M3SOFg,85
|
887
887
|
tccli/services/tbm/tbm_client.py,sha256=FFiarnFaazV_hXt1BRwAkZ9qaa7R1HCDC_GLK_nOK4Y,34139
|
888
888
|
tccli/services/tbm/v20180129/api.json,sha256=hw9f8DcfE9x3fms5uJh5OaLxUQxDok4SWiDGEXkYtu0,29425
|
@@ -956,11 +956,11 @@ tccli/services/tem/v20201221/examples.json,sha256=ao0z-UqkWKJzTWrTjfgp6CpRd5ncdx
|
|
956
956
|
tccli/services/tem/v20210701/api.json,sha256=-TlDFYO7bEzA8Xft5ummoyMvs0TjBg1YWMAqJr3Rqhg,274599
|
957
957
|
tccli/services/tem/v20210701/examples.json,sha256=TdEPfkHSg9rJt8ZnZQ83WO5hm4YGKw7DkRojHo2FSuY,92903
|
958
958
|
tccli/services/teo/__init__.py,sha256=nvzcUSkSQuTftWEJ399BUZpUk_0jEq-l97539DwbAwM,85
|
959
|
-
tccli/services/teo/teo_client.py,sha256=
|
959
|
+
tccli/services/teo/teo_client.py,sha256=AVUx_cyk-pSFEa-kjrmDnhDYcIY-luphHRD2sfXEfwI,449208
|
960
960
|
tccli/services/teo/v20220106/api.json,sha256=63ORoUfXCcQ9gb6UrJdHcwFdDI9CC2UtfdzbifNcRjM,29865
|
961
961
|
tccli/services/teo/v20220106/examples.json,sha256=2s6dgk31pZ26N8hrFLCmQzVocmsC_QK1dO8WVBdJ8A0,5325
|
962
|
-
tccli/services/teo/v20220901/api.json,sha256=
|
963
|
-
tccli/services/teo/v20220901/examples.json,sha256=
|
962
|
+
tccli/services/teo/v20220901/api.json,sha256=vtm1sqb2oq6ZeC_Pyij3dd04aY6beDB7aJZ5L-NIfs4,927700
|
963
|
+
tccli/services/teo/v20220901/examples.json,sha256=msGR7lG5Dnvx3Ny2d3ZBBeeSqY5lAK3zf3czrFqbRN4,389958
|
964
964
|
tccli/services/thpc/__init__.py,sha256=NancJ76I7PbEBt7VJCaGnBsfMEZm2ezBvYqwxyLbLHo,87
|
965
965
|
tccli/services/thpc/thpc_client.py,sha256=RSdVO4cpbP1bCk3W7r-sfXvXdiig1y4Vh9C70tN4kR0,83835
|
966
966
|
tccli/services/thpc/v20211109/api.json,sha256=5SyMj_kKwhJ9pjs2VStJJAgqDKOh8ppMnOi2VxYyrW0,42495
|
@@ -1005,7 +1005,7 @@ tccli/services/tiw/v20190919/api.json,sha256=HTPLnZDrc67nl_ElmLNiC3Tqaz9QidHWF0T
|
|
1005
1005
|
tccli/services/tiw/v20190919/examples.json,sha256=5xNI5p2BpfoY-vflD_rgVvjUSkLHdgwS0xzKywiMvYM,28705
|
1006
1006
|
tccli/services/tke/__init__.py,sha256=7R7ljco3cOJ2rceMbHur-sjpljFjutvZXAUnXQubtEM,85
|
1007
1007
|
tccli/services/tke/tke_client.py,sha256=SULcyPlfObm_O1VZTOO2D4Z0NYmcKoYUrTlXlRVjsQA,760581
|
1008
|
-
tccli/services/tke/v20180525/api.json,sha256=
|
1008
|
+
tccli/services/tke/v20180525/api.json,sha256=sym2CjQoGwOdC4ePXDZK-y6CLPIKolfX7sGgRyqGHaQ,881841
|
1009
1009
|
tccli/services/tke/v20180525/examples.json,sha256=B5NNHWCZgMNwUXZ3_GK02kKG8k-10agKbL0XIlPRf8k,269841
|
1010
1010
|
tccli/services/tke/v20220501/api.json,sha256=nTzdjWe4QnCnVB2fqpUl0D_6lDm5we2jp0QG6iVttrY,119822
|
1011
1011
|
tccli/services/tke/v20220501/examples.json,sha256=raejTOgINgZEWTwLds8qDofr8_YrRi0U1sD4DRTRWOw,20223
|
@@ -1017,12 +1017,12 @@ tccli/services/tms/__init__.py,sha256=VffLexVkR2eG9wWhlCKHfQQVPdyRqfLfOOySi_L348
|
|
1017
1017
|
tccli/services/tms/tms_client.py,sha256=9y-SDv3FcQ3ruNMGVu8R4yFCwciDUwjUAyh_S-eliWQ,18660
|
1018
1018
|
tccli/services/tms/v20200713/api.json,sha256=6si0cNbeUS5wW6ACLq5r22IMBwOVCs2LaN4zXvpTQU4,25565
|
1019
1019
|
tccli/services/tms/v20200713/examples.json,sha256=EJvCUOXkisATyJajnTALGyw1iNlfDMk7EoiAOdGRBGk,3946
|
1020
|
-
tccli/services/tms/v20201229/api.json,sha256=
|
1020
|
+
tccli/services/tms/v20201229/api.json,sha256=0O42u92fEXGCrK_FwNpv0UJIcENAm1wIovkMYRJ5a1U,31545
|
1021
1021
|
tccli/services/tms/v20201229/examples.json,sha256=i5WhjwEEcAIVGmlj_WSsz6apddztNImUyKseKZtCqoM,3748
|
1022
1022
|
tccli/services/tmt/__init__.py,sha256=mvQDw6AbTIlsI4aYGKZsQ-VaRKJP7WQ4VhIiOwTciAU,85
|
1023
1023
|
tccli/services/tmt/tmt_client.py,sha256=begFLpFB8Ecb7zE3rbd4ekBDtL_1MvLNA3wHE4wjQ1E,30697
|
1024
|
-
tccli/services/tmt/v20180321/api.json,sha256=
|
1025
|
-
tccli/services/tmt/v20180321/examples.json,sha256=
|
1024
|
+
tccli/services/tmt/v20180321/api.json,sha256=W09jIXOcIHd1fwL8aoL4CKlzOy8tAUj2Rf-Tg51n3ZU,54845
|
1025
|
+
tccli/services/tmt/v20180321/examples.json,sha256=8ouWV4Svyun4JApeji3ZOeqhQ6ff9Smrt9kqBl-ozWE,7171
|
1026
1026
|
tccli/services/tourism/__init__.py,sha256=6qc35lV8qFOm-XRyMoISufDInq3dDQ_HFSVo1_Le4Ig,93
|
1027
1027
|
tccli/services/tourism/tourism_client.py,sha256=FByZgv4itOHbL0lXc6Im6J3-PR5bPU1LYMPiyBvpWZI,9270
|
1028
1028
|
tccli/services/tourism/v20230215/api.json,sha256=05krj-q2-7qfdRH5xTJVq0kL3aR9zimVIu_0VpmHJ08,6484
|
@@ -1049,7 +1049,7 @@ tccli/services/trro/v20220325/api.json,sha256=dYml2xkR3yYM51yyjxGW8zpUkcCk0BgTCN
|
|
1049
1049
|
tccli/services/trro/v20220325/examples.json,sha256=I-aK5HhxwVte-HvPeQDvcEAlX-oco-bnSZqkLzyvSOg,62845
|
1050
1050
|
tccli/services/trtc/__init__.py,sha256=7xXIF66WdJHGVIhfHKFx2VYimlxZ_z3QOeJBUJ2P_MQ,87
|
1051
1051
|
tccli/services/trtc/trtc_client.py,sha256=1FvmTpApf8eisR8_9JeEv_M1Ee_VU38pNSnBjBtgp8g,183024
|
1052
|
-
tccli/services/trtc/v20190722/api.json,sha256=
|
1052
|
+
tccli/services/trtc/v20190722/api.json,sha256=vwO9lfsoU6KdFPJ8JkNy3SZRDUaDEdXdRTEkWJvUOrE,344361
|
1053
1053
|
tccli/services/trtc/v20190722/examples.json,sha256=cIdm8hZ1LHVSUJCPOAhkl_qBzhf6GWnKm6jlZ6HfmLk,109152
|
1054
1054
|
tccli/services/tse/__init__.py,sha256=3Y4ZA_IFX8df4-ir1I9p0u4ksAywRrtd2CAvJ5yKyz0,85
|
1055
1055
|
tccli/services/tse/tse_client.py,sha256=vowEa--ty1b4QwmJP88jS_81ZrzSeJkiD2WCl7elqXw,380369
|
@@ -1113,8 +1113,8 @@ tccli/services/vod/v20240718/api.json,sha256=VynVsQHLOrnOnuZMHQpEwwGHn9-3Gpd2yUd
|
|
1113
1113
|
tccli/services/vod/v20240718/examples.json,sha256=MOiSzTsIhAJcM4KMYA_kS2krfs9f1ntUoORdJ6U9LnQ,18462
|
1114
1114
|
tccli/services/vpc/__init__.py,sha256=3Uy1NP1qkZo8Nd-p-jr1ioM8nnurpWlZOgH6iB3HT7M,85
|
1115
1115
|
tccli/services/vpc/vpc_client.py,sha256=k4-Cc9kV-6jSdO72D-FLiYGOoe430pEXVtZOLRZmWQ8,1289503
|
1116
|
-
tccli/services/vpc/v20170312/api.json,sha256=
|
1117
|
-
tccli/services/vpc/v20170312/examples.json,sha256=
|
1116
|
+
tccli/services/vpc/v20170312/api.json,sha256=Zhoi2TN4UDnAxHO2MBMH6QTdDylWKFFTVpnkOiAN9JQ,1446927
|
1117
|
+
tccli/services/vpc/v20170312/examples.json,sha256=azvzkVcxPjHqI30ALf3tF3FOWtKXfCNMsrT8LyfDjd4,481786
|
1118
1118
|
tccli/services/vrs/__init__.py,sha256=wd5Otb4faSI7EjUxu_vldqDm0UVy5iVTZYbLgHCVoHk,85
|
1119
1119
|
tccli/services/vrs/vrs_client.py,sha256=vdFvBNTjELeJHSjLdcdTYK6po9gp0cZbms2qoIVqDTA,30782
|
1120
1120
|
tccli/services/vrs/v20200824/api.json,sha256=mgUrxSn7ne2D3CIwBsLfrFCkYma6qvyHU8xLakXx_bg,34660
|
@@ -1132,9 +1132,9 @@ tccli/services/wav/wav_client.py,sha256=yS19S4YsQD0nnBB2mCvZn3vBHCsxNw4e64rZiJ2x
|
|
1132
1132
|
tccli/services/wav/v20210129/api.json,sha256=Tc_Kci6XAkHWH5yIplNsNVX5xTL-6iInVe4QPedZMus,184335
|
1133
1133
|
tccli/services/wav/v20210129/examples.json,sha256=rit7YipgiuaecpM8VSFqMHgRankE-X69Cu0aC5mVexg,35009
|
1134
1134
|
tccli/services/wedata/__init__.py,sha256=F95gQMminW0gPanAt4q4yW30-8c7_2F2FVQzZZvcaTo,91
|
1135
|
-
tccli/services/wedata/wedata_client.py,sha256=
|
1136
|
-
tccli/services/wedata/v20210820/api.json,sha256=
|
1137
|
-
tccli/services/wedata/v20210820/examples.json,sha256=
|
1135
|
+
tccli/services/wedata/wedata_client.py,sha256=N6cuuV9MvHzezNxlD7jw3KvZ_-PNzx5EhzrI5UrDkmQ,842087
|
1136
|
+
tccli/services/wedata/v20210820/api.json,sha256=BaaYM_9rGJJLLj8UTwxNVwuDxdtRGmBlLyJITix3m6c,1857187
|
1137
|
+
tccli/services/wedata/v20210820/examples.json,sha256=Kz1fyfDHgK5jWbRAZFrVqeUTSaF4RuM9GcIpNEfmmsI,659416
|
1138
1138
|
tccli/services/weilingwith/__init__.py,sha256=I04f9CndPHuhInQKYjgkxKufojP4j5EJxBtfPNWLTfo,101
|
1139
1139
|
tccli/services/weilingwith/weilingwith_client.py,sha256=QnCAQd-sSqJlGFuJyPZI5XH5gVSq-A9LQNIJB-gwVVY,205422
|
1140
1140
|
tccli/services/weilingwith/v20230427/api.json,sha256=CEdKZ7fiX7kD2JhAuzpVCxSmYeuIa0MfYwMBflMqiqA,352643
|
@@ -1161,8 +1161,8 @@ tccli/services/yunsou/v20180504/api.json,sha256=2808fil5p3pTEJ3SqXEEq7eSrASZOiv8
|
|
1161
1161
|
tccli/services/yunsou/v20180504/examples.json,sha256=Jg4WuqS_Wxl7eTBMbzjem65FuUZQi3qq3xtlBNFZlTU,11870
|
1162
1162
|
tccli/services/yunsou/v20191115/api.json,sha256=r_p7c7fMNylQVDpSN0CkUB4Cx1nYW1lI3BM_Zi50FNs,15932
|
1163
1163
|
tccli/services/yunsou/v20191115/examples.json,sha256=vN5MzexHVPMckm4MbnXNiOe3KKiVchvf4_uLpjOskuk,3983
|
1164
|
-
tccli-3.0.
|
1165
|
-
tccli-3.0.
|
1166
|
-
tccli-3.0.
|
1167
|
-
tccli-3.0.
|
1168
|
-
tccli-3.0.
|
1164
|
+
tccli-3.0.1314.1.dist-info/METADATA,sha256=rWwTMIS5jH5AEuslP6YMT9eWntyAtNCoSwxT_3eu0fI,16408
|
1165
|
+
tccli-3.0.1314.1.dist-info/WHEEL,sha256=HyPWovjK_wfsxZqVnw7Bu5rgKxNh3Nm__lHm0ALDcb4,101
|
1166
|
+
tccli-3.0.1314.1.dist-info/entry_points.txt,sha256=9ZzsXxi7Xj3ZneT7VxRVJpFvnmdEOeysh999_0gWVvo,85
|
1167
|
+
tccli-3.0.1314.1.dist-info/license_files/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
1168
|
+
tccli-3.0.1314.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|