tccli 3.0.1175.1__py2.py3-none-any.whl → 3.0.1176.1__py2.py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- tccli/__init__.py +1 -1
- tccli/services/batch/v20170312/api.json +1 -1
- tccli/services/ccc/v20200210/api.json +9 -9
- tccli/services/cdwdoris/cdwdoris_client.py +106 -159
- tccli/services/cdwdoris/v20211228/api.json +737 -1207
- tccli/services/cdwdoris/v20211228/examples.json +62 -70
- tccli/services/clb/v20180317/api.json +1 -1
- tccli/services/cvm/v20170312/api.json +1 -1
- tccli/services/cynosdb/cynosdb_client.py +114 -8
- tccli/services/cynosdb/v20190107/api.json +136 -0
- tccli/services/cynosdb/v20190107/examples.json +16 -0
- tccli/services/ecm/v20190719/api.json +8 -6
- tccli/services/emr/v20190103/api.json +9 -0
- tccli/services/hunyuan/v20230901/api.json +1 -1
- tccli/services/mps/v20190612/api.json +49 -29
- tccli/services/trtc/trtc_client.py +53 -0
- tccli/services/trtc/v20190722/api.json +62 -0
- tccli/services/trtc/v20190722/examples.json +8 -0
- tccli/services/vod/v20180717/api.json +341 -0
- tccli/services/vod/v20180717/examples.json +30 -0
- tccli/services/vod/vod_client.py +171 -12
- tccli/services/vpc/v20170312/api.json +10 -1
- {tccli-3.0.1175.1.dist-info → tccli-3.0.1176.1.dist-info}/METADATA +2 -2
- {tccli-3.0.1175.1.dist-info → tccli-3.0.1176.1.dist-info}/RECORD +27 -27
- {tccli-3.0.1175.1.dist-info → tccli-3.0.1176.1.dist-info}/WHEEL +0 -0
- {tccli-3.0.1175.1.dist-info → tccli-3.0.1176.1.dist-info}/entry_points.txt +0 -0
- {tccli-3.0.1175.1.dist-info → tccli-3.0.1176.1.dist-info}/license_files/LICENSE +0 -0
tccli/services/vod/vod_client.py
CHANGED
@@ -3969,7 +3969,7 @@ def doDeleteMedia(args, parsed_globals):
|
|
3969
3969
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
3970
3970
|
|
3971
3971
|
|
3972
|
-
def
|
3972
|
+
def doHandleCurrentPlaylist(args, parsed_globals):
|
3973
3973
|
g_param = parse_global_arg(parsed_globals)
|
3974
3974
|
|
3975
3975
|
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
@@ -3998,11 +3998,63 @@ def doDescribeImageReviewUsageData(args, parsed_globals):
|
|
3998
3998
|
client = mod.VodClient(cred, g_param[OptionsDefine.Region], profile)
|
3999
3999
|
client._sdkVersion += ("_CLI_" + __version__)
|
4000
4000
|
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
4001
|
-
model = models.
|
4001
|
+
model = models.HandleCurrentPlaylistRequest()
|
4002
4002
|
model.from_json_string(json.dumps(args))
|
4003
4003
|
start_time = time.time()
|
4004
4004
|
while True:
|
4005
|
-
rsp = client.
|
4005
|
+
rsp = client.HandleCurrentPlaylist(model)
|
4006
|
+
result = rsp.to_json_string()
|
4007
|
+
try:
|
4008
|
+
json_obj = json.loads(result)
|
4009
|
+
except TypeError as e:
|
4010
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
4011
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
4012
|
+
break
|
4013
|
+
cur_time = time.time()
|
4014
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
4015
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
4016
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
4017
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
4018
|
+
else:
|
4019
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
4020
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
4021
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
4022
|
+
|
4023
|
+
|
4024
|
+
def doCreateSuperPlayerConfig(args, parsed_globals):
|
4025
|
+
g_param = parse_global_arg(parsed_globals)
|
4026
|
+
|
4027
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
4028
|
+
cred = credential.CVMRoleCredential()
|
4029
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
4030
|
+
cred = credential.STSAssumeRoleCredential(
|
4031
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
4032
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
4033
|
+
)
|
4034
|
+
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):
|
4035
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
4036
|
+
else:
|
4037
|
+
cred = credential.Credential(
|
4038
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
4039
|
+
)
|
4040
|
+
http_profile = HttpProfile(
|
4041
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
4042
|
+
reqMethod="POST",
|
4043
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
4044
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
4045
|
+
)
|
4046
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
4047
|
+
if g_param[OptionsDefine.Language]:
|
4048
|
+
profile.language = g_param[OptionsDefine.Language]
|
4049
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
4050
|
+
client = mod.VodClient(cred, g_param[OptionsDefine.Region], profile)
|
4051
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
4052
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
4053
|
+
model = models.CreateSuperPlayerConfigRequest()
|
4054
|
+
model.from_json_string(json.dumps(args))
|
4055
|
+
start_time = time.time()
|
4056
|
+
while True:
|
4057
|
+
rsp = client.CreateSuperPlayerConfig(model)
|
4006
4058
|
result = rsp.to_json_string()
|
4007
4059
|
try:
|
4008
4060
|
json_obj = json.loads(result)
|
@@ -4281,7 +4333,7 @@ def doCreateRebuildMediaTemplate(args, parsed_globals):
|
|
4281
4333
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
4282
4334
|
|
4283
4335
|
|
4284
|
-
def
|
4336
|
+
def doDescribeCurrentPlaylist(args, parsed_globals):
|
4285
4337
|
g_param = parse_global_arg(parsed_globals)
|
4286
4338
|
|
4287
4339
|
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
@@ -4310,11 +4362,11 @@ def doModifyRoundPlay(args, parsed_globals):
|
|
4310
4362
|
client = mod.VodClient(cred, g_param[OptionsDefine.Region], profile)
|
4311
4363
|
client._sdkVersion += ("_CLI_" + __version__)
|
4312
4364
|
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
4313
|
-
model = models.
|
4365
|
+
model = models.DescribeCurrentPlaylistRequest()
|
4314
4366
|
model.from_json_string(json.dumps(args))
|
4315
4367
|
start_time = time.time()
|
4316
4368
|
while True:
|
4317
|
-
rsp = client.
|
4369
|
+
rsp = client.DescribeCurrentPlaylist(model)
|
4318
4370
|
result = rsp.to_json_string()
|
4319
4371
|
try:
|
4320
4372
|
json_obj = json.loads(result)
|
@@ -5009,7 +5061,7 @@ def doVerifyDomainRecord(args, parsed_globals):
|
|
5009
5061
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
5010
5062
|
|
5011
5063
|
|
5012
|
-
def
|
5064
|
+
def doDescribeImageReviewUsageData(args, parsed_globals):
|
5013
5065
|
g_param = parse_global_arg(parsed_globals)
|
5014
5066
|
|
5015
5067
|
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
@@ -5038,11 +5090,11 @@ def doCreateSuperPlayerConfig(args, parsed_globals):
|
|
5038
5090
|
client = mod.VodClient(cred, g_param[OptionsDefine.Region], profile)
|
5039
5091
|
client._sdkVersion += ("_CLI_" + __version__)
|
5040
5092
|
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
5041
|
-
model = models.
|
5093
|
+
model = models.DescribeImageReviewUsageDataRequest()
|
5042
5094
|
model.from_json_string(json.dumps(args))
|
5043
5095
|
start_time = time.time()
|
5044
5096
|
while True:
|
5045
|
-
rsp = client.
|
5097
|
+
rsp = client.DescribeImageReviewUsageData(model)
|
5046
5098
|
result = rsp.to_json_string()
|
5047
5099
|
try:
|
5048
5100
|
json_obj = json.loads(result)
|
@@ -5633,6 +5685,58 @@ def doDeleteWordSamples(args, parsed_globals):
|
|
5633
5685
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
5634
5686
|
|
5635
5687
|
|
5688
|
+
def doFastEditMedia(args, parsed_globals):
|
5689
|
+
g_param = parse_global_arg(parsed_globals)
|
5690
|
+
|
5691
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
5692
|
+
cred = credential.CVMRoleCredential()
|
5693
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
5694
|
+
cred = credential.STSAssumeRoleCredential(
|
5695
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
5696
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
5697
|
+
)
|
5698
|
+
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):
|
5699
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
5700
|
+
else:
|
5701
|
+
cred = credential.Credential(
|
5702
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
5703
|
+
)
|
5704
|
+
http_profile = HttpProfile(
|
5705
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
5706
|
+
reqMethod="POST",
|
5707
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
5708
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
5709
|
+
)
|
5710
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
5711
|
+
if g_param[OptionsDefine.Language]:
|
5712
|
+
profile.language = g_param[OptionsDefine.Language]
|
5713
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
5714
|
+
client = mod.VodClient(cred, g_param[OptionsDefine.Region], profile)
|
5715
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
5716
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
5717
|
+
model = models.FastEditMediaRequest()
|
5718
|
+
model.from_json_string(json.dumps(args))
|
5719
|
+
start_time = time.time()
|
5720
|
+
while True:
|
5721
|
+
rsp = client.FastEditMedia(model)
|
5722
|
+
result = rsp.to_json_string()
|
5723
|
+
try:
|
5724
|
+
json_obj = json.loads(result)
|
5725
|
+
except TypeError as e:
|
5726
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
5727
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
5728
|
+
break
|
5729
|
+
cur_time = time.time()
|
5730
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
5731
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
5732
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
5733
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
5734
|
+
else:
|
5735
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
5736
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
5737
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
5738
|
+
|
5739
|
+
|
5636
5740
|
def doCreateVodDomain(args, parsed_globals):
|
5637
5741
|
g_param = parse_global_arg(parsed_globals)
|
5638
5742
|
|
@@ -6413,6 +6517,58 @@ def doModifySubAppIdInfo(args, parsed_globals):
|
|
6413
6517
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
6414
6518
|
|
6415
6519
|
|
6520
|
+
def doModifyRoundPlay(args, parsed_globals):
|
6521
|
+
g_param = parse_global_arg(parsed_globals)
|
6522
|
+
|
6523
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
6524
|
+
cred = credential.CVMRoleCredential()
|
6525
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
6526
|
+
cred = credential.STSAssumeRoleCredential(
|
6527
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
6528
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
6529
|
+
)
|
6530
|
+
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):
|
6531
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
6532
|
+
else:
|
6533
|
+
cred = credential.Credential(
|
6534
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
6535
|
+
)
|
6536
|
+
http_profile = HttpProfile(
|
6537
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
6538
|
+
reqMethod="POST",
|
6539
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
6540
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
6541
|
+
)
|
6542
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
6543
|
+
if g_param[OptionsDefine.Language]:
|
6544
|
+
profile.language = g_param[OptionsDefine.Language]
|
6545
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
6546
|
+
client = mod.VodClient(cred, g_param[OptionsDefine.Region], profile)
|
6547
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
6548
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
6549
|
+
model = models.ModifyRoundPlayRequest()
|
6550
|
+
model.from_json_string(json.dumps(args))
|
6551
|
+
start_time = time.time()
|
6552
|
+
while True:
|
6553
|
+
rsp = client.ModifyRoundPlay(model)
|
6554
|
+
result = rsp.to_json_string()
|
6555
|
+
try:
|
6556
|
+
json_obj = json.loads(result)
|
6557
|
+
except TypeError as e:
|
6558
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
6559
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
6560
|
+
break
|
6561
|
+
cur_time = time.time()
|
6562
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
6563
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
6564
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
6565
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
6566
|
+
else:
|
6567
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
6568
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
6569
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
6570
|
+
|
6571
|
+
|
6416
6572
|
def doComposeMedia(args, parsed_globals):
|
6417
6573
|
g_param = parse_global_arg(parsed_globals)
|
6418
6574
|
|
@@ -9308,13 +9464,14 @@ ACTION_MAP = {
|
|
9308
9464
|
"CreateProcedureTemplate": doCreateProcedureTemplate,
|
9309
9465
|
"PushUrlCache": doPushUrlCache,
|
9310
9466
|
"DeleteMedia": doDeleteMedia,
|
9311
|
-
"
|
9467
|
+
"HandleCurrentPlaylist": doHandleCurrentPlaylist,
|
9468
|
+
"CreateSuperPlayerConfig": doCreateSuperPlayerConfig,
|
9312
9469
|
"DescribeCLSPushTargets": doDescribeCLSPushTargets,
|
9313
9470
|
"EnhanceMediaByTemplate": doEnhanceMediaByTemplate,
|
9314
9471
|
"ModifyPersonSample": doModifyPersonSample,
|
9315
9472
|
"CreateEnhanceMediaTemplate": doCreateEnhanceMediaTemplate,
|
9316
9473
|
"CreateRebuildMediaTemplate": doCreateRebuildMediaTemplate,
|
9317
|
-
"
|
9474
|
+
"DescribeCurrentPlaylist": doDescribeCurrentPlaylist,
|
9318
9475
|
"DescribeDailyMediaPlayStat": doDescribeDailyMediaPlayStat,
|
9319
9476
|
"DeleteAnimatedGraphicsTemplate": doDeleteAnimatedGraphicsTemplate,
|
9320
9477
|
"DescribeCLSTopics": doDescribeCLSTopics,
|
@@ -9328,7 +9485,7 @@ ACTION_MAP = {
|
|
9328
9485
|
"ModifyJustInTimeTranscodeTemplate": doModifyJustInTimeTranscodeTemplate,
|
9329
9486
|
"ModifyQualityInspectTemplate": doModifyQualityInspectTemplate,
|
9330
9487
|
"VerifyDomainRecord": doVerifyDomainRecord,
|
9331
|
-
"
|
9488
|
+
"DescribeImageReviewUsageData": doDescribeImageReviewUsageData,
|
9332
9489
|
"ModifyVodDomainConfig": doModifyVodDomainConfig,
|
9333
9490
|
"DescribeSnapshotByTimeOffsetTemplates": doDescribeSnapshotByTimeOffsetTemplates,
|
9334
9491
|
"PullUpload": doPullUpload,
|
@@ -9340,6 +9497,7 @@ ACTION_MAP = {
|
|
9340
9497
|
"ModifyWatermarkTemplate": doModifyWatermarkTemplate,
|
9341
9498
|
"DescribeStorageDetails": doDescribeStorageDetails,
|
9342
9499
|
"DeleteWordSamples": doDeleteWordSamples,
|
9500
|
+
"FastEditMedia": doFastEditMedia,
|
9343
9501
|
"CreateVodDomain": doCreateVodDomain,
|
9344
9502
|
"ProcessMedia": doProcessMedia,
|
9345
9503
|
"DescribePersonSamples": doDescribePersonSamples,
|
@@ -9355,6 +9513,7 @@ ACTION_MAP = {
|
|
9355
9513
|
"DescribeRoundPlays": doDescribeRoundPlays,
|
9356
9514
|
"DescribeEventConfig": doDescribeEventConfig,
|
9357
9515
|
"ModifySubAppIdInfo": doModifySubAppIdInfo,
|
9516
|
+
"ModifyRoundPlay": doModifyRoundPlay,
|
9358
9517
|
"ComposeMedia": doComposeMedia,
|
9359
9518
|
"DescribeSampleSnapshotTemplates": doDescribeSampleSnapshotTemplates,
|
9360
9519
|
"ModifyWordSample": doModifyWordSample,
|
@@ -30560,10 +30560,11 @@
|
|
30560
30560
|
"members": [
|
30561
30561
|
{
|
30562
30562
|
"disabled": false,
|
30563
|
-
"document": "资源ID,如果ResourceType为USERDEFINED
|
30563
|
+
"document": "资源ID,如果ResourceType为USERDEFINED,可以为空字符串",
|
30564
30564
|
"example": "subnet-7aed90al",
|
30565
30565
|
"member": "string",
|
30566
30566
|
"name": "ResourceId",
|
30567
|
+
"output_required": true,
|
30567
30568
|
"required": true,
|
30568
30569
|
"type": "string",
|
30569
30570
|
"value_allowed_null": false
|
@@ -30574,6 +30575,7 @@
|
|
30574
30575
|
"example": "SUBNET",
|
30575
30576
|
"member": "string",
|
30576
30577
|
"name": "ResourceType",
|
30578
|
+
"output_required": true,
|
30577
30579
|
"required": true,
|
30578
30580
|
"type": "string",
|
30579
30581
|
"value_allowed_null": true
|
@@ -30584,6 +30586,7 @@
|
|
30584
30586
|
"example": "172.168.100.0/24",
|
30585
30587
|
"member": "string",
|
30586
30588
|
"name": "PrivateIpAddress",
|
30589
|
+
"output_required": true,
|
30587
30590
|
"required": true,
|
30588
30591
|
"type": "string",
|
30589
30592
|
"value_allowed_null": false
|
@@ -30594,6 +30597,7 @@
|
|
30594
30597
|
"example": "['180.12.59.43']",
|
30595
30598
|
"member": "string",
|
30596
30599
|
"name": "PublicIpAddresses",
|
30600
|
+
"output_required": true,
|
30597
30601
|
"required": true,
|
30598
30602
|
"type": "list",
|
30599
30603
|
"value_allowed_null": false
|
@@ -30604,6 +30608,7 @@
|
|
30604
30608
|
"example": "test",
|
30605
30609
|
"member": "string",
|
30606
30610
|
"name": "Description",
|
30611
|
+
"output_required": true,
|
30607
30612
|
"required": true,
|
30608
30613
|
"type": "string",
|
30609
30614
|
"value_allowed_null": false
|
@@ -30614,6 +30619,7 @@
|
|
30614
30619
|
"example": "snat-3nptcfvp",
|
30615
30620
|
"member": "string",
|
30616
30621
|
"name": "NatGatewaySnatId",
|
30622
|
+
"output_required": true,
|
30617
30623
|
"required": false,
|
30618
30624
|
"type": "string",
|
30619
30625
|
"value_allowed_null": false
|
@@ -30624,6 +30630,7 @@
|
|
30624
30630
|
"example": "nat-3nptcfvp",
|
30625
30631
|
"member": "string",
|
30626
30632
|
"name": "NatGatewayId",
|
30633
|
+
"output_required": true,
|
30627
30634
|
"required": false,
|
30628
30635
|
"type": "string",
|
30629
30636
|
"value_allowed_null": true
|
@@ -30634,6 +30641,7 @@
|
|
30634
30641
|
"example": "vpc-oty76xyl",
|
30635
30642
|
"member": "string",
|
30636
30643
|
"name": "VpcId",
|
30644
|
+
"output_required": true,
|
30637
30645
|
"required": false,
|
30638
30646
|
"type": "string",
|
30639
30647
|
"value_allowed_null": true
|
@@ -30644,6 +30652,7 @@
|
|
30644
30652
|
"example": "2021-03-14 13:59:00",
|
30645
30653
|
"member": "string",
|
30646
30654
|
"name": "CreatedTime",
|
30655
|
+
"output_required": true,
|
30647
30656
|
"required": false,
|
30648
30657
|
"type": "string",
|
30649
30658
|
"value_allowed_null": true
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: tccli
|
3
|
-
Version: 3.0.
|
3
|
+
Version: 3.0.1176.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.1176
|
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=8b17MnmD0KjoPOo93Sn45ECR0qDGIzC_SStY_zowt3Y,27
|
2
2
|
tccli/argparser.py,sha256=iFaw_iIMdyVwUdcv2_2OHQfe7-7j9yGzoOgXgXswoBo,5555
|
3
3
|
tccli/argument.py,sha256=ZtVo3AySpzM-Hw6_hPdU27FjUsc8QPB2fIuLy7JSBAk,8091
|
4
4
|
tccli/base_command.py,sha256=rFWNAwfS0GA6LLGNOM-iPI0RV81Jag5cZn536ZQN0pw,2859
|
@@ -116,7 +116,7 @@ tccli/services/ba/v20200720/api.json,sha256=GQTlBtxVMziFXIbYb-5GLOm3e_YzvUEEBajw
|
|
116
116
|
tccli/services/ba/v20200720/examples.json,sha256=lJy1e6veie0esdtQqgjqegW_RWf5PeFMsQo8RSGFaM0,1753
|
117
117
|
tccli/services/batch/__init__.py,sha256=3LNSwycYE8a19VhTI55qyAYZ3VxzLJggE3i0LjgY2J8,89
|
118
118
|
tccli/services/batch/batch_client.py,sha256=-llS5qzHh8k755r9u9DwaPTR_0aiT46V1oCaSjQ_R2I,101450
|
119
|
-
tccli/services/batch/v20170312/api.json,sha256=
|
119
|
+
tccli/services/batch/v20170312/api.json,sha256=vesjpzj3_RsMkMfLXmtDKlX30AjJUQhgccVjBR0cxng,213981
|
120
120
|
tccli/services/batch/v20170312/examples.json,sha256=OaFY3QkU90_v5wMQBLYJo6tI8Yv8XUA9_Feaqvk3uug,53132
|
121
121
|
tccli/services/bda/__init__.py,sha256=EK9c0tT29sqjT0qCtiVi-TMTTUDLP4u9mLnrjeJkTxw,85
|
122
122
|
tccli/services/bda/bda_client.py,sha256=6UShP8o82YKftQ42yuvjgsRIgPx7p53M80OYbPL7cJ8,60908
|
@@ -196,7 +196,7 @@ tccli/services/cbs/v20170312/api.json,sha256=QUl2n_X4bgOFhEfzAvJ1Daj685OVJ0_pAnV
|
|
196
196
|
tccli/services/cbs/v20170312/examples.json,sha256=JYyfsJtICwQ4q_GpCTxDoAWnDOkAG45eCUS355dRHyI,40889
|
197
197
|
tccli/services/ccc/__init__.py,sha256=wR36QP35wizc6U55yXrZrY_2HiEVnzYPRWgGN_kkLxo,85
|
198
198
|
tccli/services/ccc/ccc_client.py,sha256=sjm4Xyc4MyA70gIVnElQMmjM2Kl8G6gBcYyieVjq66Q,185738
|
199
|
-
tccli/services/ccc/v20200210/api.json,sha256=
|
199
|
+
tccli/services/ccc/v20200210/api.json,sha256=NqyFM8fuNweWm66C_6c-7_CPKZd8sO7OjA4xAe_JzR8,273679
|
200
200
|
tccli/services/ccc/v20200210/examples.json,sha256=NKgE6E5IuVX7_xhlMxSvQ2-S7btpjM4SFLkd-P6EUec,62204
|
201
201
|
tccli/services/cdb/__init__.py,sha256=9Jk9tAMP2ZM_xOG77GvqXL1q3UfwYTEos6_P6xzpTiM,85
|
202
202
|
tccli/services/cdb/cdb_client.py,sha256=xSktzlFtZwmCYlr5ZMceTXTTNrAzkyDkV0KU9Ov51ZE,526188
|
@@ -219,9 +219,9 @@ tccli/services/cdwch/cdwch_client.py,sha256=LL_8C13M87AFVoqWsV12sy6DI33GAg7dic35
|
|
219
219
|
tccli/services/cdwch/v20200915/api.json,sha256=jUWMo4gB0qAqXDUKC-lrQo8Oahkfuo7TopxztDGA828,128133
|
220
220
|
tccli/services/cdwch/v20200915/examples.json,sha256=SBR9XQLvfmxRtulLC7WE_IkYx7GF504_c2EHgZqeghY,44555
|
221
221
|
tccli/services/cdwdoris/__init__.py,sha256=rIQBmZynEI3sojHPPC3vLhdJ9YAOx5QnDIxvObAi2w4,95
|
222
|
-
tccli/services/cdwdoris/cdwdoris_client.py,sha256=
|
223
|
-
tccli/services/cdwdoris/v20211228/api.json,sha256=
|
224
|
-
tccli/services/cdwdoris/v20211228/examples.json,sha256=
|
222
|
+
tccli/services/cdwdoris/cdwdoris_client.py,sha256=4ZfCSVnlybOz6PpooglrjqlyK0Xn3G901hQYdadH3rM,185823
|
223
|
+
tccli/services/cdwdoris/v20211228/api.json,sha256=mYHnCrdO2qoLJ7cvguUMHTMZq7LBCQx2NypeoXWLFg0,247061
|
224
|
+
tccli/services/cdwdoris/v20211228/examples.json,sha256=_SNdJ_8SM31wfTwTBy5H371w6AVSDbRaHvdJ-Erc2m8,47328
|
225
225
|
tccli/services/cdwpg/__init__.py,sha256=Vls5x8VLkhT0eXbX41lUKDOUN0u8oUZjX8skg5C_k_Y,89
|
226
226
|
tccli/services/cdwpg/cdwpg_client.py,sha256=Z-YWAbaTxFBB-HrdYz7yLwlgo76v9uijXu0-fEnmdr8,30333
|
227
227
|
tccli/services/cdwpg/v20201230/api.json,sha256=hFUDwI1jv--KHZLSk_7R1aRGwv4sGzZo4JW7hNRtnoo,51574
|
@@ -272,7 +272,7 @@ tccli/services/ckafka/v20190819/api.json,sha256=gCgAQ0K0-CDmU_5ZOm6EgJY4y5NvOihI
|
|
272
272
|
tccli/services/ckafka/v20190819/examples.json,sha256=YICXF89zBzzgyIWU8nz82Yq94v03AVxbyK7bNfnRT5E,138035
|
273
273
|
tccli/services/clb/__init__.py,sha256=iG2aiZhDOcK4l_2Wkxs57qF1Y4lmv7RxRSPcG9paDk0,85
|
274
274
|
tccli/services/clb/clb_client.py,sha256=5K-_M9jBlaBpjBPPoR2OZX3IuDa8xXvKXtLyEiburiI,272894
|
275
|
-
tccli/services/clb/v20180317/api.json,sha256
|
275
|
+
tccli/services/clb/v20180317/api.json,sha256=-EuN72S90B4JWTzSX3dAPKsbVJWsXyAb5UyUeiXD4xY,431505
|
276
276
|
tccli/services/clb/v20180317/examples.json,sha256=G4YgnYhEzg-H_cp1wZppZ56xfNF3I_bAexhCuf0N23A,126033
|
277
277
|
tccli/services/cloudapp/__init__.py,sha256=Fz46VIoJkYtRiU5JD0yYE1ijPUmX9ay0byvrbtX4ZTs,95
|
278
278
|
tccli/services/cloudapp/cloudapp_client.py,sha256=OrA5IQpvoMUJBFbWWqrSsbmeMbEHL6ID8kEvdjeDL-8,8679
|
@@ -328,7 +328,7 @@ tccli/services/csxg/v20230303/api.json,sha256=faLND0vT8UTE9LyFQcVhOqLcc47xZp07X7
|
|
328
328
|
tccli/services/csxg/v20230303/examples.json,sha256=bWInWqLp53HCMJ8s0MxYhRmNHzsYJEEU-RjzwOSYPeo,2106
|
329
329
|
tccli/services/cvm/__init__.py,sha256=TlF7VMjJTb_ELng-8ghL1Zvrmu7MJyuNBU5KLiWrFnw,85
|
330
330
|
tccli/services/cvm/cvm_client.py,sha256=y6O5YStmC4kdthSvwJUUF_lLpQ0X9wIIs7Y-ALzZITI,313450
|
331
|
-
tccli/services/cvm/v20170312/api.json,sha256=
|
331
|
+
tccli/services/cvm/v20170312/api.json,sha256=FqlG_l4hr-LNfzF5O_zNba1TAJrnMFDgV3OA6cwwsls,519942
|
332
332
|
tccli/services/cvm/v20170312/examples.json,sha256=rPBzrQz8R-5nUeIkC48_yr0CN0MNFXRNfoK8cziOU58,128030
|
333
333
|
tccli/services/cwp/__init__.py,sha256=VzfiK7QzpNmTiO4zrmILRFSkKMJka8elLwzYLTjUPFw,85
|
334
334
|
tccli/services/cwp/cwp_client.py,sha256=ddzwZS8LRsEGaBdwY3uEjW-CuEIRcEWx56CXBRMVv2w,1611104
|
@@ -339,9 +339,9 @@ tccli/services/cws/cws_client.py,sha256=bPGWX2h4Ru5YACa7TklX2FnFIbMeFxvrfbGYPibx
|
|
339
339
|
tccli/services/cws/v20180312/api.json,sha256=yvPs5gzcrgBkZti57TJNssoNSIq0rgozU3FRTrDilgQ,57598
|
340
340
|
tccli/services/cws/v20180312/examples.json,sha256=QmYFbj9zOOBlm4aAxhOw45f5SPrzp5SDfqTv5b3n3Go,17899
|
341
341
|
tccli/services/cynosdb/__init__.py,sha256=MBWPrBSMnHBk0CGpJoI_LU1UxxPO0CX-LO2xxuCFCzg,93
|
342
|
-
tccli/services/cynosdb/cynosdb_client.py,sha256=
|
343
|
-
tccli/services/cynosdb/v20190107/api.json,sha256=
|
344
|
-
tccli/services/cynosdb/v20190107/examples.json,sha256=
|
342
|
+
tccli/services/cynosdb/cynosdb_client.py,sha256=1Wgqxi3C9Naf5rA042xczfr8Og8XD-kdF3SgeIR-dPI,459046
|
343
|
+
tccli/services/cynosdb/v20190107/api.json,sha256=7alUaNcQMXiIKOtlheVvgiARTvtzl75rZu6cDYJcYS4,668018
|
344
|
+
tccli/services/cynosdb/v20190107/examples.json,sha256=ayLgZecdxyUMVmKrgYg7OMYu_YYth8YJ6suaP8vLyCA,159797
|
345
345
|
tccli/services/dasb/__init__.py,sha256=x5ez0S2wQBIe-qTkGhVvwqG-rdYdP4NXZn2WfQDvF98,87
|
346
346
|
tccli/services/dasb/dasb_client.py,sha256=KkX0_bjs0-afswXxS0mMqMEuIT03KNTS0Azrs7kTLiY,196880
|
347
347
|
tccli/services/dasb/v20191018/api.json,sha256=Y4DyHOKfXP_EJigoBJ-70y-B1C8pUwYGdRSj3LJeoFA,255959
|
@@ -420,7 +420,7 @@ tccli/services/ecdn/v20191012/api.json,sha256=bwzhN2Rff5XOHIcjru57cRWeYjoZRJEOH5
|
|
420
420
|
tccli/services/ecdn/v20191012/examples.json,sha256=uoHl8dSAi43ekntpc0HmSQqWAwt2p1TZ57RJYkgKaok,14890
|
421
421
|
tccli/services/ecm/__init__.py,sha256=lJGeC4oJIOoHkNPUs2sHmPuINXpnsQStWAG0JgddWrM,85
|
422
422
|
tccli/services/ecm/ecm_client.py,sha256=QTXQvj2RapxojpeAEDccw__pnPb1lzQZPRJpqyznZ0A,435855
|
423
|
-
tccli/services/ecm/v20190719/api.json,sha256=
|
423
|
+
tccli/services/ecm/v20190719/api.json,sha256=d1bgGIENbpUAGQUcZe5nP3lcaEgnhmrXSeZjnOZeOd4,544119
|
424
424
|
tccli/services/ecm/v20190719/examples.json,sha256=wNJCKZAt73f76GiVwF_Jx_CuPi2k9YOP9f1TKicP2iw,203859
|
425
425
|
tccli/services/eiam/__init__.py,sha256=sQtadFZbl5dqdpPOBkvo6Mp0m0iQavEBRFPqo8eSFJM,87
|
426
426
|
tccli/services/eiam/eiam_client.py,sha256=3T9bP9GNlU11sfy9f2pl09--cusBUvpFPaSH_r4nHjQ,135715
|
@@ -434,7 +434,7 @@ tccli/services/eis/v20210601/api.json,sha256=g4AJCtbcKsD7SK1PNkOi3otPkTgRrzkfsBo
|
|
434
434
|
tccli/services/eis/v20210601/examples.json,sha256=0AzvsX5xN4sc7M4GKxa888M0-rOayfoPeR26AKgLXCw,5943
|
435
435
|
tccli/services/emr/__init__.py,sha256=CuCQwSW5RgNZF9gAIua1frYRqyXro0GUikyCRDqmWs8,85
|
436
436
|
tccli/services/emr/emr_client.py,sha256=v1A4NfUkCGNsLw1ooTPle1VvZPy6U1SwaSA8s5gv8jo,154628
|
437
|
-
tccli/services/emr/v20190103/api.json,sha256=
|
437
|
+
tccli/services/emr/v20190103/api.json,sha256=uDjRnAop86WOppJ0bARgQfPeruhtEOpAF5JzsWGCnzA,492513
|
438
438
|
tccli/services/emr/v20190103/examples.json,sha256=J5bIL2OajCEkRVw4_qnYi1dEaDCA6aJJAqDlkvFwSBY,93209
|
439
439
|
tccli/services/es/__init__.py,sha256=Tgbj2S-AFcftz26Uaksp0nrbDZShO6QOdNN89tFu9s0,83
|
440
440
|
tccli/services/es/es_client.py,sha256=CafnSOgO1SckwFnNP619y1SuAC4NhGizbq3f5qv0Muk,176095
|
@@ -510,7 +510,7 @@ tccli/services/hcm/v20181106/api.json,sha256=9Jxpj-fhbXJGkO_nCVUL4nlhcfMICA3snOG
|
|
510
510
|
tccli/services/hcm/v20181106/examples.json,sha256=TKTLt4hcnqYSjpxTCwtJyoFUc2I23ySZL0Ar-aa6v98,1466
|
511
511
|
tccli/services/hunyuan/__init__.py,sha256=ZWaLaByP6wMQSS7nntZKqol4lzuJKslQFdB4Bv3kYwU,93
|
512
512
|
tccli/services/hunyuan/hunyuan_client.py,sha256=PWIZwVQp0a04vtTXPdTfDOV7M5tPS5bdJSThuUdfFKQ,30218
|
513
|
-
tccli/services/hunyuan/v20230901/api.json,sha256=
|
513
|
+
tccli/services/hunyuan/v20230901/api.json,sha256=anBo69Gwkxu3iGii9UYW2tIuokP9KJxuOgtoHyFUzfk,50349
|
514
514
|
tccli/services/hunyuan/v20230901/examples.json,sha256=SrPcbBvXrWbRPMyC8sduivzuh2qmownybAYbK5Tld7M,35107
|
515
515
|
tccli/services/iai/__init__.py,sha256=pyYHUQUj82fBZdJ7cEUsTpy6VP8aU0siS32k7-3aM9Q,85
|
516
516
|
tccli/services/iai/iai_client.py,sha256=Heo7mlB-dWK2PDDh7vZnRQsFwGlRVozdo-jk6Hl3pgo,113648
|
@@ -666,7 +666,7 @@ tccli/services/monitor/v20180724/api.json,sha256=uIfEtbVeSecUZxUEamdPNWn_NVOZZp7
|
|
666
666
|
tccli/services/monitor/v20180724/examples.json,sha256=Y8dlnlEvHjQA62SygOmPcuEMlQQCsJ8El_mR5bBDR7U,263328
|
667
667
|
tccli/services/mps/__init__.py,sha256=4M5o2xc0u3rqtgz_5an9Qxw2QaOqwBq8Fjc3IB64p2o,85
|
668
668
|
tccli/services/mps/mps_client.py,sha256=h3jjE66SxuAI5uIysVKhYKStOXZFd2Lr0ZdT_jgqPiw,329690
|
669
|
-
tccli/services/mps/v20190612/api.json,sha256
|
669
|
+
tccli/services/mps/v20190612/api.json,sha256=w_mZ0QhwARY0SPOy5nJuGBu-spgXjAU_-7BWDzUJzqE,1006252
|
670
670
|
tccli/services/mps/v20190612/examples.json,sha256=AjqnSqFuiPJp5XUQCW-9InuO7MnLAzm4ygTlFu0mtiM,273447
|
671
671
|
tccli/services/mrs/__init__.py,sha256=Vwc_ClNX27xapevic8Icf1ien9RVCMPqPag9PyUNnos,85
|
672
672
|
tccli/services/mrs/mrs_client.py,sha256=gkJ5KxNkknL-NkxVnYJOPl0J63RMByeEGagfjqOtqqg,39439
|
@@ -997,9 +997,9 @@ tccli/services/trro/trro_client.py,sha256=FtccKwF8umt_145g14KOE0jdbCy9wJl-mPzyNY
|
|
997
997
|
tccli/services/trro/v20220325/api.json,sha256=dJZydHE8hmbfBTweDikhd_R8sidA_fWhTRF7k_0svbI,86535
|
998
998
|
tccli/services/trro/v20220325/examples.json,sha256=lwXhGjCkkRl-N8vCGwpYGQUwVMKPPgEdm2CPsDd48KQ,20684
|
999
999
|
tccli/services/trtc/__init__.py,sha256=7xXIF66WdJHGVIhfHKFx2VYimlxZ_z3QOeJBUJ2P_MQ,87
|
1000
|
-
tccli/services/trtc/trtc_client.py,sha256=
|
1001
|
-
tccli/services/trtc/v20190722/api.json,sha256=
|
1002
|
-
tccli/services/trtc/v20190722/examples.json,sha256=
|
1000
|
+
tccli/services/trtc/trtc_client.py,sha256=pW3-mcSf335NlY6n2Ios-n7vG6XrBz_S_LA2jt8pFnk,176284
|
1001
|
+
tccli/services/trtc/v20190722/api.json,sha256=A9gMkA3sIhaw8oRpC676GRbABjeol4patO3GJ_mhtQo,311784
|
1002
|
+
tccli/services/trtc/v20190722/examples.json,sha256=wuaSeOu0YU7OdDcfNOPwiH0jE7xqTcqf3PeaP0RYsAE,105893
|
1003
1003
|
tccli/services/tse/__init__.py,sha256=3Y4ZA_IFX8df4-ir1I9p0u4ksAywRrtd2CAvJ5yKyz0,85
|
1004
1004
|
tccli/services/tse/tse_client.py,sha256=FaAw3trxYLWl1wh3aqZeoOPHAjOwUCMToDx63g6gnfE,357796
|
1005
1005
|
tccli/services/tse/v20201207/api.json,sha256=1WsXwv9rY6mcqMn87ld688D5Lior68vMFIcnstfI8wQ,538297
|
@@ -1051,12 +1051,12 @@ tccli/services/vms/vms_client.py,sha256=u4xQ0r9s2O3sPJQV64SmKwuTMfu9orOekrVeskeo
|
|
1051
1051
|
tccli/services/vms/v20200902/api.json,sha256=1BJFGJeDiUI-rsFVPjfLoZSkyR4ld1ZUnjhj7PrV7Do,7110
|
1052
1052
|
tccli/services/vms/v20200902/examples.json,sha256=Qh-LalLFMN0_H34CLqoF1McVxRFYu1VWlRaa4Vtq0mg,1516
|
1053
1053
|
tccli/services/vod/__init__.py,sha256=bw_LJUFbFFmlcWBBtxuhF_QXwFJukODux1xtsN3P7fM,85
|
1054
|
-
tccli/services/vod/vod_client.py,sha256=
|
1055
|
-
tccli/services/vod/v20180717/api.json,sha256=
|
1056
|
-
tccli/services/vod/v20180717/examples.json,sha256=
|
1054
|
+
tccli/services/vod/vod_client.py,sha256=dbV1FUjIUlmw_Jnvk8PUQuZFZ9pksoV3kMWdgEAAPVE,565022
|
1055
|
+
tccli/services/vod/v20180717/api.json,sha256=UixOQUe2RnP7DEw566yBkMs36B38Vs4pNv7a_DFOFg4,1498968
|
1056
|
+
tccli/services/vod/v20180717/examples.json,sha256=Zx_qoBBBzUyTrH_AZ0nLAmmU3EqoxcsITYNp2T7h3R8,402906
|
1057
1057
|
tccli/services/vpc/__init__.py,sha256=3Uy1NP1qkZo8Nd-p-jr1ioM8nnurpWlZOgH6iB3HT7M,85
|
1058
1058
|
tccli/services/vpc/vpc_client.py,sha256=KqDpR6FmfkCiIUwrms-r2KYj07wDgEDGnF4U3cqJkBM,1092438
|
1059
|
-
tccli/services/vpc/v20170312/api.json,sha256=
|
1059
|
+
tccli/services/vpc/v20170312/api.json,sha256=oMs4SdOhpxuzb3mVN6fiIN3iGyYiAu-a-Z7AnXafE8s,1200107
|
1060
1060
|
tccli/services/vpc/v20170312/examples.json,sha256=fSNboM3jwl68gVz-RM5SBpG3ttwuuywEowLct9E3AMo,423668
|
1061
1061
|
tccli/services/vrs/__init__.py,sha256=wd5Otb4faSI7EjUxu_vldqDm0UVy5iVTZYbLgHCVoHk,85
|
1062
1062
|
tccli/services/vrs/vrs_client.py,sha256=GoEtSeQJUcGDUenhtMEXSM0UvCGBZe-hx068V6TAwI8,27146
|
@@ -1104,8 +1104,8 @@ tccli/services/yunsou/v20180504/api.json,sha256=2808fil5p3pTEJ3SqXEEq7eSrASZOiv8
|
|
1104
1104
|
tccli/services/yunsou/v20180504/examples.json,sha256=Jg4WuqS_Wxl7eTBMbzjem65FuUZQi3qq3xtlBNFZlTU,11870
|
1105
1105
|
tccli/services/yunsou/v20191115/api.json,sha256=r_p7c7fMNylQVDpSN0CkUB4Cx1nYW1lI3BM_Zi50FNs,15932
|
1106
1106
|
tccli/services/yunsou/v20191115/examples.json,sha256=vN5MzexHVPMckm4MbnXNiOe3KKiVchvf4_uLpjOskuk,3983
|
1107
|
-
tccli-3.0.
|
1108
|
-
tccli-3.0.
|
1109
|
-
tccli-3.0.
|
1110
|
-
tccli-3.0.
|
1111
|
-
tccli-3.0.
|
1107
|
+
tccli-3.0.1176.1.dist-info/METADATA,sha256=H9jA5dIfuQ5CtlfmjOLYQQw3JRg_1YSHWor93fBRWjM,16172
|
1108
|
+
tccli-3.0.1176.1.dist-info/WHEEL,sha256=HyPWovjK_wfsxZqVnw7Bu5rgKxNh3Nm__lHm0ALDcb4,101
|
1109
|
+
tccli-3.0.1176.1.dist-info/entry_points.txt,sha256=9ZzsXxi7Xj3ZneT7VxRVJpFvnmdEOeysh999_0gWVvo,85
|
1110
|
+
tccli-3.0.1176.1.dist-info/license_files/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
1111
|
+
tccli-3.0.1176.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|