tccli-intl-en 3.0.1275.1__py2.py3-none-any.whl → 3.0.1276.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/cynosdb/cynosdb_client.py +53 -0
- tccli/services/cynosdb/v20190107/api.json +201 -0
- tccli/services/cynosdb/v20190107/examples.json +8 -0
- tccli/services/mdp/v20200527/api.json +8 -8
- tccli/services/mdp/v20200527/examples.json +6 -6
- tccli/services/tcsas/v20250106/api.json +101 -61
- tccli/services/tcsas/v20250106/examples.json +2 -2
- tccli/services/teo/v20220901/api.json +29 -27
- {tccli_intl_en-3.0.1275.1.dist-info → tccli_intl_en-3.0.1276.1.dist-info}/METADATA +2 -2
- {tccli_intl_en-3.0.1275.1.dist-info → tccli_intl_en-3.0.1276.1.dist-info}/RECORD +15 -15
- {tccli_intl_en-3.0.1275.1.dist-info → tccli_intl_en-3.0.1276.1.dist-info}/LICENSE +0 -0
- {tccli_intl_en-3.0.1275.1.dist-info → tccli_intl_en-3.0.1276.1.dist-info}/WHEEL +0 -0
- {tccli_intl_en-3.0.1275.1.dist-info → tccli_intl_en-3.0.1276.1.dist-info}/entry_points.txt +0 -0
- {tccli_intl_en-3.0.1275.1.dist-info → tccli_intl_en-3.0.1276.1.dist-info}/top_level.txt +0 -0
tccli/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '3.0.
|
|
1
|
+
__version__ = '3.0.1276.1'
|
|
@@ -2461,6 +2461,58 @@ def doUpgradeProxy(args, parsed_globals):
|
|
|
2461
2461
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
|
2462
2462
|
|
|
2463
2463
|
|
|
2464
|
+
def doInquirePriceMultiSpec(args, parsed_globals):
|
|
2465
|
+
g_param = parse_global_arg(parsed_globals)
|
|
2466
|
+
|
|
2467
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
|
2468
|
+
cred = credential.CVMRoleCredential()
|
|
2469
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
|
2470
|
+
cred = credential.STSAssumeRoleCredential(
|
|
2471
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
|
2472
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
|
2473
|
+
)
|
|
2474
|
+
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):
|
|
2475
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
|
2476
|
+
else:
|
|
2477
|
+
cred = credential.Credential(
|
|
2478
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
|
2479
|
+
)
|
|
2480
|
+
http_profile = HttpProfile(
|
|
2481
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
|
2482
|
+
reqMethod="POST",
|
|
2483
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
|
2484
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
|
2485
|
+
)
|
|
2486
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
|
2487
|
+
if g_param[OptionsDefine.Language]:
|
|
2488
|
+
profile.language = g_param[OptionsDefine.Language]
|
|
2489
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
|
2490
|
+
client = mod.CynosdbClient(cred, g_param[OptionsDefine.Region], profile)
|
|
2491
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
|
2492
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
|
2493
|
+
model = models.InquirePriceMultiSpecRequest()
|
|
2494
|
+
model.from_json_string(json.dumps(args))
|
|
2495
|
+
start_time = time.time()
|
|
2496
|
+
while True:
|
|
2497
|
+
rsp = client.InquirePriceMultiSpec(model)
|
|
2498
|
+
result = rsp.to_json_string()
|
|
2499
|
+
try:
|
|
2500
|
+
json_obj = json.loads(result)
|
|
2501
|
+
except TypeError as e:
|
|
2502
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
|
2503
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
|
2504
|
+
break
|
|
2505
|
+
cur_time = time.time()
|
|
2506
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
|
2507
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
|
2508
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
|
2509
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
|
2510
|
+
else:
|
|
2511
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
|
2512
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
|
2513
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
|
2514
|
+
|
|
2515
|
+
|
|
2464
2516
|
def doDescribeClusters(args, parsed_globals):
|
|
2465
2517
|
g_param = parse_global_arg(parsed_globals)
|
|
2466
2518
|
|
|
@@ -7355,6 +7407,7 @@ ACTION_MAP = {
|
|
|
7355
7407
|
"DescribeInstancesWithinSameCluster": doDescribeInstancesWithinSameCluster,
|
|
7356
7408
|
"RestartInstance": doRestartInstance,
|
|
7357
7409
|
"UpgradeProxy": doUpgradeProxy,
|
|
7410
|
+
"InquirePriceMultiSpec": doInquirePriceMultiSpec,
|
|
7358
7411
|
"DescribeClusters": doDescribeClusters,
|
|
7359
7412
|
"CloseWan": doCloseWan,
|
|
7360
7413
|
"DescribeProjectSecurityGroups": doDescribeProjectSecurityGroups,
|
|
@@ -567,6 +567,13 @@
|
|
|
567
567
|
"output": "InquirePriceModifyResponse",
|
|
568
568
|
"status": "online"
|
|
569
569
|
},
|
|
570
|
+
"InquirePriceMultiSpec": {
|
|
571
|
+
"document": "This API is used to inquire prices in batch.",
|
|
572
|
+
"input": "InquirePriceMultiSpecRequest",
|
|
573
|
+
"name": "Query multi-specification pricing",
|
|
574
|
+
"output": "InquirePriceMultiSpecResponse",
|
|
575
|
+
"status": "online"
|
|
576
|
+
},
|
|
570
577
|
"InquirePriceRenew": {
|
|
571
578
|
"document": "This API is used to query the renewal price of a cluster.",
|
|
572
579
|
"input": "InquirePriceRenewRequest",
|
|
@@ -10722,6 +10729,136 @@
|
|
|
10722
10729
|
],
|
|
10723
10730
|
"type": "object"
|
|
10724
10731
|
},
|
|
10732
|
+
"GoodsPrice": {
|
|
10733
|
+
"document": "Item price.",
|
|
10734
|
+
"members": [
|
|
10735
|
+
{
|
|
10736
|
+
"disabled": false,
|
|
10737
|
+
"document": "Specifies the instance price.\nNote: This field may return null, indicating that no valid values can be obtained.",
|
|
10738
|
+
"example": "无",
|
|
10739
|
+
"member": "TradePrice",
|
|
10740
|
+
"name": "InstancePrice",
|
|
10741
|
+
"required": true,
|
|
10742
|
+
"type": "object",
|
|
10743
|
+
"value_allowed_null": true
|
|
10744
|
+
},
|
|
10745
|
+
{
|
|
10746
|
+
"disabled": false,
|
|
10747
|
+
"document": "Specifies the storage price.\nNote: This field may return null, indicating that no valid values can be obtained.",
|
|
10748
|
+
"example": "无",
|
|
10749
|
+
"member": "TradePrice",
|
|
10750
|
+
"name": "StoragePrice",
|
|
10751
|
+
"required": true,
|
|
10752
|
+
"type": "object",
|
|
10753
|
+
"value_allowed_null": true
|
|
10754
|
+
},
|
|
10755
|
+
{
|
|
10756
|
+
"disabled": false,
|
|
10757
|
+
"document": "Specifies the product specification.\nNote: This field may return null, indicating that no valid values can be obtained.",
|
|
10758
|
+
"example": "无",
|
|
10759
|
+
"member": "GoodsSpec",
|
|
10760
|
+
"name": "GoodsSpec",
|
|
10761
|
+
"required": true,
|
|
10762
|
+
"type": "object",
|
|
10763
|
+
"value_allowed_null": true
|
|
10764
|
+
}
|
|
10765
|
+
],
|
|
10766
|
+
"usage": "out"
|
|
10767
|
+
},
|
|
10768
|
+
"GoodsSpec": {
|
|
10769
|
+
"document": "Product specification.",
|
|
10770
|
+
"members": [
|
|
10771
|
+
{
|
|
10772
|
+
"disabled": false,
|
|
10773
|
+
"document": "Number of products\nNote: This field may return null, indicating that no valid values can be obtained.",
|
|
10774
|
+
"example": "1",
|
|
10775
|
+
"member": "int64",
|
|
10776
|
+
"name": "GoodsNum",
|
|
10777
|
+
"output_required": false,
|
|
10778
|
+
"required": false,
|
|
10779
|
+
"type": "int",
|
|
10780
|
+
"value_allowed_null": true
|
|
10781
|
+
},
|
|
10782
|
+
{
|
|
10783
|
+
"disabled": false,
|
|
10784
|
+
"document": "Number of CPU cores. required for PREPAID and POSTPAID instance types.\nNote: This field may return null, indicating that no valid values can be obtained.",
|
|
10785
|
+
"example": "1",
|
|
10786
|
+
"member": "int64",
|
|
10787
|
+
"name": "Cpu",
|
|
10788
|
+
"output_required": false,
|
|
10789
|
+
"required": false,
|
|
10790
|
+
"type": "int",
|
|
10791
|
+
"value_allowed_null": true
|
|
10792
|
+
},
|
|
10793
|
+
{
|
|
10794
|
+
"disabled": false,
|
|
10795
|
+
"document": "Memory size in gb. required for PREPAID and POSTPAID instance types.\nNote: This field may return null, indicating that no valid values can be obtained.",
|
|
10796
|
+
"example": "2",
|
|
10797
|
+
"member": "int64",
|
|
10798
|
+
"name": "Memory",
|
|
10799
|
+
"output_required": false,
|
|
10800
|
+
"required": false,
|
|
10801
|
+
"type": "int",
|
|
10802
|
+
"value_allowed_null": true
|
|
10803
|
+
},
|
|
10804
|
+
{
|
|
10805
|
+
"disabled": false,
|
|
10806
|
+
"document": "Ccu size. required for serverless type.\nNote: This field may return null, indicating that no valid values can be obtained.",
|
|
10807
|
+
"example": "0.5",
|
|
10808
|
+
"member": "float",
|
|
10809
|
+
"name": "Ccu",
|
|
10810
|
+
"output_required": false,
|
|
10811
|
+
"required": false,
|
|
10812
|
+
"type": "float",
|
|
10813
|
+
"value_allowed_null": true
|
|
10814
|
+
},
|
|
10815
|
+
{
|
|
10816
|
+
"disabled": false,
|
|
10817
|
+
"document": "Storage size. required for PREPAID storage type.\nNote: This field may return null, indicating that no valid values can be obtained.",
|
|
10818
|
+
"example": "10",
|
|
10819
|
+
"member": "int64",
|
|
10820
|
+
"name": "StorageLimit",
|
|
10821
|
+
"output_required": false,
|
|
10822
|
+
"required": false,
|
|
10823
|
+
"type": "int",
|
|
10824
|
+
"value_allowed_null": true
|
|
10825
|
+
},
|
|
10826
|
+
{
|
|
10827
|
+
"disabled": false,
|
|
10828
|
+
"document": "Purchase duration.\nNote: This field may return null, indicating that no valid values can be obtained.",
|
|
10829
|
+
"example": "1",
|
|
10830
|
+
"member": "int64",
|
|
10831
|
+
"name": "TimeSpan",
|
|
10832
|
+
"output_required": false,
|
|
10833
|
+
"required": false,
|
|
10834
|
+
"type": "int",
|
|
10835
|
+
"value_allowed_null": true
|
|
10836
|
+
},
|
|
10837
|
+
{
|
|
10838
|
+
"disabled": false,
|
|
10839
|
+
"document": "Duration unit.\nNote: This field may return null, indicating that no valid values can be obtained.",
|
|
10840
|
+
"example": "m",
|
|
10841
|
+
"member": "string",
|
|
10842
|
+
"name": "TimeUnit",
|
|
10843
|
+
"output_required": false,
|
|
10844
|
+
"required": false,
|
|
10845
|
+
"type": "string",
|
|
10846
|
+
"value_allowed_null": true
|
|
10847
|
+
},
|
|
10848
|
+
{
|
|
10849
|
+
"disabled": false,
|
|
10850
|
+
"document": "Machine type.",
|
|
10851
|
+
"example": "common",
|
|
10852
|
+
"member": "string",
|
|
10853
|
+
"name": "DeviceType",
|
|
10854
|
+
"output_required": false,
|
|
10855
|
+
"required": false,
|
|
10856
|
+
"type": "string",
|
|
10857
|
+
"value_allowed_null": false
|
|
10858
|
+
}
|
|
10859
|
+
],
|
|
10860
|
+
"usage": "both"
|
|
10861
|
+
},
|
|
10725
10862
|
"InputAccount": {
|
|
10726
10863
|
"document": "Account. Valid values: `accountName`, `host`.",
|
|
10727
10864
|
"members": [
|
|
@@ -10984,6 +11121,70 @@
|
|
|
10984
11121
|
],
|
|
10985
11122
|
"type": "object"
|
|
10986
11123
|
},
|
|
11124
|
+
"InquirePriceMultiSpecRequest": {
|
|
11125
|
+
"document": "InquirePriceMultiSpec request structure.",
|
|
11126
|
+
"members": [
|
|
11127
|
+
{
|
|
11128
|
+
"disabled": false,
|
|
11129
|
+
"document": "Availability zone. specifies the best practice for region provision.",
|
|
11130
|
+
"example": "ap-guangzhou-2",
|
|
11131
|
+
"member": "string",
|
|
11132
|
+
"name": "Zone",
|
|
11133
|
+
"required": true,
|
|
11134
|
+
"type": "string"
|
|
11135
|
+
},
|
|
11136
|
+
{
|
|
11137
|
+
"disabled": false,
|
|
11138
|
+
"document": "Instance purchase type. available values are: PREPAID, POSTPAID, SERVERLESS.",
|
|
11139
|
+
"example": "PREPAID",
|
|
11140
|
+
"member": "string",
|
|
11141
|
+
"name": "InstancePayMode",
|
|
11142
|
+
"required": true,
|
|
11143
|
+
"type": "string"
|
|
11144
|
+
},
|
|
11145
|
+
{
|
|
11146
|
+
"disabled": false,
|
|
11147
|
+
"document": "Storage purchase type. available values are: PREPAID, POSTPAID.",
|
|
11148
|
+
"example": "POSTPAID",
|
|
11149
|
+
"member": "string",
|
|
11150
|
+
"name": "StoragePayMode",
|
|
11151
|
+
"required": true,
|
|
11152
|
+
"type": "string"
|
|
11153
|
+
},
|
|
11154
|
+
{
|
|
11155
|
+
"disabled": false,
|
|
11156
|
+
"document": "Specifies the product specification.",
|
|
11157
|
+
"example": "无",
|
|
11158
|
+
"member": "GoodsSpec",
|
|
11159
|
+
"name": "GoodsSpecs",
|
|
11160
|
+
"required": true,
|
|
11161
|
+
"type": "list"
|
|
11162
|
+
}
|
|
11163
|
+
],
|
|
11164
|
+
"type": "object"
|
|
11165
|
+
},
|
|
11166
|
+
"InquirePriceMultiSpecResponse": {
|
|
11167
|
+
"document": "InquirePriceMultiSpec response structure.",
|
|
11168
|
+
"members": [
|
|
11169
|
+
{
|
|
11170
|
+
"disabled": false,
|
|
11171
|
+
"document": "Specifies the product price.",
|
|
11172
|
+
"example": "无",
|
|
11173
|
+
"member": "GoodsPrice",
|
|
11174
|
+
"name": "GoodsPrice",
|
|
11175
|
+
"output_required": true,
|
|
11176
|
+
"type": "list",
|
|
11177
|
+
"value_allowed_null": false
|
|
11178
|
+
},
|
|
11179
|
+
{
|
|
11180
|
+
"document": "The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.",
|
|
11181
|
+
"member": "string",
|
|
11182
|
+
"name": "RequestId",
|
|
11183
|
+
"type": "string"
|
|
11184
|
+
}
|
|
11185
|
+
],
|
|
11186
|
+
"type": "object"
|
|
11187
|
+
},
|
|
10987
11188
|
"InquirePriceRenewRequest": {
|
|
10988
11189
|
"document": "InquirePriceRenew request structure.",
|
|
10989
11190
|
"members": [
|
|
@@ -660,6 +660,14 @@
|
|
|
660
660
|
"title": "Query the Price for Resizing Prepaid Resources"
|
|
661
661
|
}
|
|
662
662
|
],
|
|
663
|
+
"InquirePriceMultiSpec": [
|
|
664
|
+
{
|
|
665
|
+
"document": "",
|
|
666
|
+
"input": "POST / HTTP/1.1\nHost: cynosdb.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: InquirePriceMultiSpec\n<Common request parameters>\n\n{\n \"Zone\": \"ap-guangzhou-4\",\n \"InstancePayMode\": \"PREPAID\",\n \"StoragePayMode\": \"POSTPAID\",\n \"GoodsSpecs\": [\n {\n \"GoodsNum\": 1,\n \"Cpu\": 1,\n \"Memory\": 1,\n \"TimeSpan\": 1,\n \"TimeUnit\": \"m\"\n }\n ]\n}",
|
|
667
|
+
"output": "{\n \"Response\": {\n \"GoodsPrice\": [\n {\n \"GoodsSpec\": {\n \"Ccu\": 0,\n \"Cpu\": 1,\n \"DeviceType\": \"\",\n \"GoodsNum\": 1,\n \"Memory\": 1,\n \"StorageLimit\": 0,\n \"TimeSpan\": 1,\n \"TimeUnit\": \"m\"\n },\n \"InstancePrice\": {\n \"ChargeUnit\": \"m\",\n \"Discount\": 100,\n \"TotalPrice\": 6000,\n \"TotalPriceDiscount\": 6000,\n \"UnitPrice\": 0,\n \"UnitPriceDiscount\": 0\n },\n \"StoragePrice\": {\n \"ChargeUnit\": \"\",\n \"Discount\": 0,\n \"TotalPrice\": 0,\n \"TotalPriceDiscount\": 0,\n \"UnitPrice\": 0,\n \"UnitPriceDiscount\": 0\n }\n }\n ],\n \"RequestId\": \"b30bbeef-370b-4176c085\"\n }\n}",
|
|
668
|
+
"title": "Querying Multi-Specification Pricing"
|
|
669
|
+
}
|
|
670
|
+
],
|
|
663
671
|
"InquirePriceRenew": [
|
|
664
672
|
{
|
|
665
673
|
"document": " ",
|
|
@@ -15,9 +15,9 @@
|
|
|
15
15
|
"status": "online"
|
|
16
16
|
},
|
|
17
17
|
"BindSSAICDNDomainWithChannel": {
|
|
18
|
-
"document": "
|
|
18
|
+
"document": "This API is used to bind a CDN playback domain to a channel.",
|
|
19
19
|
"input": "BindSSAICDNDomainWithChannelRequest",
|
|
20
|
-
"name": "
|
|
20
|
+
"name": "Bind an SSAI channel to a CDN playback domain",
|
|
21
21
|
"output": "BindSSAICDNDomainWithChannelResponse",
|
|
22
22
|
"status": "online"
|
|
23
23
|
},
|
|
@@ -428,9 +428,9 @@
|
|
|
428
428
|
"status": "online"
|
|
429
429
|
},
|
|
430
430
|
"UnbindSSAICDNDomainWithChannel": {
|
|
431
|
-
"document": "
|
|
431
|
+
"document": "This API is used to cancel the correlation between a channel and a CDN playback domain.",
|
|
432
432
|
"input": "UnbindSSAICDNDomainWithChannelRequest",
|
|
433
|
-
"name": "
|
|
433
|
+
"name": "Unbind an SSAI channel and CDN domain",
|
|
434
434
|
"output": "UnbindSSAICDNDomainWithChannelResponse",
|
|
435
435
|
"status": "online"
|
|
436
436
|
}
|
|
@@ -648,7 +648,7 @@
|
|
|
648
648
|
"members": [
|
|
649
649
|
{
|
|
650
650
|
"disabled": false,
|
|
651
|
-
"document": "Channel Id",
|
|
651
|
+
"document": "Channel Id.",
|
|
652
652
|
"example": "ChannelId",
|
|
653
653
|
"member": "string",
|
|
654
654
|
"name": "ChannelId",
|
|
@@ -657,7 +657,7 @@
|
|
|
657
657
|
},
|
|
658
658
|
{
|
|
659
659
|
"disabled": false,
|
|
660
|
-
"document": "
|
|
660
|
+
"document": "Specifies the playback domain of CDN.",
|
|
661
661
|
"example": "CdnDomain",
|
|
662
662
|
"member": "string",
|
|
663
663
|
"name": "CdnDomain",
|
|
@@ -6668,7 +6668,7 @@
|
|
|
6668
6668
|
"members": [
|
|
6669
6669
|
{
|
|
6670
6670
|
"disabled": false,
|
|
6671
|
-
"document": "Channel Id",
|
|
6671
|
+
"document": "Channel Id.",
|
|
6672
6672
|
"example": "ChannelId",
|
|
6673
6673
|
"member": "string",
|
|
6674
6674
|
"name": "ChannelId",
|
|
@@ -6677,7 +6677,7 @@
|
|
|
6677
6677
|
},
|
|
6678
6678
|
{
|
|
6679
6679
|
"disabled": false,
|
|
6680
|
-
"document": "
|
|
6680
|
+
"document": "Specifies the playback domain of CDN.",
|
|
6681
6681
|
"example": "CdnDomain",
|
|
6682
6682
|
"member": "string",
|
|
6683
6683
|
"name": "CdnDomain",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
],
|
|
19
19
|
"BindSSAICDNDomainWithChannel": [
|
|
20
20
|
{
|
|
21
|
-
"document": "
|
|
22
|
-
"input": "POST / HTTP/1.1\nHost: mdp.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: BindSSAICDNDomainWithChannel\n<
|
|
23
|
-
"output": "{\n \"Response\": {\n \"RequestId\": \"
|
|
21
|
+
"document": "This example shows you how to bind a CDN playback domain to a channel.",
|
|
22
|
+
"input": "POST / HTTP/1.1\nHost: mdp.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: BindSSAICDNDomainWithChannel\n<Common request parameters>\n\n{\n \"ChannelId\": \"68F6FCCD00003FEF93DB\",\n \"CdnDomain\": \"abc\"\n}",
|
|
23
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"790d6787-6aa7-4f0e-b327-65e53c01949c\"\n }\n}",
|
|
24
24
|
"title": "Request Example"
|
|
25
25
|
}
|
|
26
26
|
],
|
|
@@ -490,9 +490,9 @@
|
|
|
490
490
|
],
|
|
491
491
|
"UnbindSSAICDNDomainWithChannel": [
|
|
492
492
|
{
|
|
493
|
-
"document": "
|
|
494
|
-
"input": "POST / HTTP/1.1\nHost: mdp.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: UnbindSSAICDNDomainWithChannel\n<
|
|
495
|
-
"output": "{\n \"Response\": {\n \"RequestId\": \"
|
|
493
|
+
"document": "This example shows you how to cancel the correlation between a channel and a CDN playback domain.",
|
|
494
|
+
"input": "POST / HTTP/1.1\nHost: mdp.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: UnbindSSAICDNDomainWithChannel\n<Common request parameters>\n\n{\n \"ChannelId\": \"68F6FCCD00003FEF93DB\",\n \"CdnDomain\": \"abc\"\n}",
|
|
495
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"790d6787-68e7-4ace-b327-65e53c01949c\"\n }\n}",
|
|
496
496
|
"title": "Request Example"
|
|
497
497
|
}
|
|
498
498
|
]
|
|
@@ -5065,78 +5065,78 @@
|
|
|
5065
5065
|
"members": [
|
|
5066
5066
|
{
|
|
5067
5067
|
"disabled": false,
|
|
5068
|
-
"document": "Team name
|
|
5069
|
-
"example": "
|
|
5068
|
+
"document": "Team name",
|
|
5069
|
+
"example": "autotest_mini_team",
|
|
5070
5070
|
"member": "string",
|
|
5071
5071
|
"name": "TeamName",
|
|
5072
5072
|
"output_required": true,
|
|
5073
5073
|
"type": "string",
|
|
5074
|
-
"value_allowed_null":
|
|
5074
|
+
"value_allowed_null": false
|
|
5075
5075
|
},
|
|
5076
5076
|
{
|
|
5077
5077
|
"disabled": false,
|
|
5078
|
-
"document": "Team role type 1-
|
|
5079
|
-
"example": "
|
|
5078
|
+
"document": "Team role type 1-mini program team 2-application team",
|
|
5079
|
+
"example": "1",
|
|
5080
5080
|
"member": "int64",
|
|
5081
5081
|
"name": "TeamRoleType",
|
|
5082
5082
|
"output_required": true,
|
|
5083
5083
|
"type": "int",
|
|
5084
|
-
"value_allowed_null":
|
|
5084
|
+
"value_allowed_null": false
|
|
5085
5085
|
},
|
|
5086
5086
|
{
|
|
5087
5087
|
"disabled": false,
|
|
5088
|
-
"document": "
|
|
5089
|
-
"example": "
|
|
5088
|
+
"document": "Administrator account",
|
|
5089
|
+
"example": "autotest_op",
|
|
5090
5090
|
"member": "string",
|
|
5091
5091
|
"name": "AdminUserAccount",
|
|
5092
5092
|
"output_required": false,
|
|
5093
5093
|
"type": "string",
|
|
5094
|
-
"value_allowed_null":
|
|
5094
|
+
"value_allowed_null": false
|
|
5095
5095
|
},
|
|
5096
5096
|
{
|
|
5097
5097
|
"disabled": false,
|
|
5098
|
-
"document": "Creator
|
|
5099
|
-
"example": "
|
|
5098
|
+
"document": "Creator",
|
|
5099
|
+
"example": "autotest_admin_admin_admin_admin",
|
|
5100
5100
|
"member": "string",
|
|
5101
5101
|
"name": "CreateUser",
|
|
5102
5102
|
"output_required": false,
|
|
5103
5103
|
"type": "string",
|
|
5104
|
-
"value_allowed_null":
|
|
5104
|
+
"value_allowed_null": false
|
|
5105
5105
|
},
|
|
5106
5106
|
{
|
|
5107
5107
|
"disabled": false,
|
|
5108
|
-
"document": "Creation time
|
|
5109
|
-
"example": "
|
|
5108
|
+
"document": "Creation time",
|
|
5109
|
+
"example": "1735544017",
|
|
5110
5110
|
"member": "string",
|
|
5111
5111
|
"name": "CreateTime",
|
|
5112
5112
|
"output_required": false,
|
|
5113
5113
|
"type": "string",
|
|
5114
|
-
"value_allowed_null":
|
|
5114
|
+
"value_allowed_null": false
|
|
5115
5115
|
},
|
|
5116
5116
|
{
|
|
5117
5117
|
"disabled": false,
|
|
5118
|
-
"document": "Number of team members
|
|
5119
|
-
"example": "
|
|
5118
|
+
"document": "Number of team members",
|
|
5119
|
+
"example": "1",
|
|
5120
5120
|
"member": "int64",
|
|
5121
5121
|
"name": "MemberCount",
|
|
5122
5122
|
"output_required": false,
|
|
5123
5123
|
"type": "int",
|
|
5124
|
-
"value_allowed_null":
|
|
5124
|
+
"value_allowed_null": false
|
|
5125
5125
|
},
|
|
5126
5126
|
{
|
|
5127
5127
|
"disabled": false,
|
|
5128
|
-
"document": "Number of bound mini program teams
|
|
5129
|
-
"example": "
|
|
5128
|
+
"document": "Number of bound mini program teams",
|
|
5129
|
+
"example": "0",
|
|
5130
5130
|
"member": "int64",
|
|
5131
5131
|
"name": "BindMiniTeamCount",
|
|
5132
5132
|
"output_required": false,
|
|
5133
5133
|
"type": "int",
|
|
5134
|
-
"value_allowed_null":
|
|
5134
|
+
"value_allowed_null": false
|
|
5135
5135
|
},
|
|
5136
5136
|
{
|
|
5137
5137
|
"disabled": false,
|
|
5138
5138
|
"document": "Name of the bound team",
|
|
5139
|
-
"example": "
|
|
5139
|
+
"example": "autotest_app_team",
|
|
5140
5140
|
"member": "string",
|
|
5141
5141
|
"name": "BindTeamName",
|
|
5142
5142
|
"output_required": false,
|
|
@@ -5146,7 +5146,7 @@
|
|
|
5146
5146
|
{
|
|
5147
5147
|
"disabled": false,
|
|
5148
5148
|
"document": "Team registration link",
|
|
5149
|
-
"example": "
|
|
5149
|
+
"example": "http://sample.com/register",
|
|
5150
5150
|
"member": "string",
|
|
5151
5151
|
"name": "RegisterLink",
|
|
5152
5152
|
"output_required": false,
|
|
@@ -5155,13 +5155,33 @@
|
|
|
5155
5155
|
},
|
|
5156
5156
|
{
|
|
5157
5157
|
"disabled": false,
|
|
5158
|
-
"document": "Application name. It
|
|
5159
|
-
"example": "
|
|
5158
|
+
"document": "Application name. It Is required when querying details of a mini program team.",
|
|
5159
|
+
"example": "autotest_app",
|
|
5160
5160
|
"member": "string",
|
|
5161
5161
|
"name": "ApplicationName",
|
|
5162
5162
|
"output_required": false,
|
|
5163
5163
|
"type": "string",
|
|
5164
5164
|
"value_allowed_null": false
|
|
5165
|
+
},
|
|
5166
|
+
{
|
|
5167
|
+
"disabled": false,
|
|
5168
|
+
"document": "Team expiration time. 0 means never expire.",
|
|
5169
|
+
"example": "1761032238",
|
|
5170
|
+
"member": "int64",
|
|
5171
|
+
"name": "ExpireTime",
|
|
5172
|
+
"output_required": false,
|
|
5173
|
+
"type": "int",
|
|
5174
|
+
"value_allowed_null": false
|
|
5175
|
+
},
|
|
5176
|
+
{
|
|
5177
|
+
"disabled": false,
|
|
5178
|
+
"document": "Team status. valid values: 1: normal; 2: disabled; 3: expired.",
|
|
5179
|
+
"example": "1",
|
|
5180
|
+
"member": "int64",
|
|
5181
|
+
"name": "Status",
|
|
5182
|
+
"output_required": false,
|
|
5183
|
+
"type": "int",
|
|
5184
|
+
"value_allowed_null": false
|
|
5165
5185
|
}
|
|
5166
5186
|
],
|
|
5167
5187
|
"usage": "out"
|
|
@@ -5171,68 +5191,68 @@
|
|
|
5171
5191
|
"members": [
|
|
5172
5192
|
{
|
|
5173
5193
|
"disabled": false,
|
|
5174
|
-
"document": "Team ID
|
|
5175
|
-
"example": "
|
|
5194
|
+
"document": "Team ID",
|
|
5195
|
+
"example": "5527683491",
|
|
5176
5196
|
"member": "string",
|
|
5177
5197
|
"name": "TeamId",
|
|
5178
5198
|
"output_required": false,
|
|
5179
5199
|
"type": "string",
|
|
5180
|
-
"value_allowed_null":
|
|
5200
|
+
"value_allowed_null": false
|
|
5181
5201
|
},
|
|
5182
5202
|
{
|
|
5183
5203
|
"disabled": false,
|
|
5184
|
-
"document": "Team name
|
|
5185
|
-
"example": "
|
|
5204
|
+
"document": "Team name",
|
|
5205
|
+
"example": "app_team",
|
|
5186
5206
|
"member": "string",
|
|
5187
5207
|
"name": "TeamName",
|
|
5188
5208
|
"output_required": false,
|
|
5189
5209
|
"type": "string",
|
|
5190
|
-
"value_allowed_null":
|
|
5210
|
+
"value_allowed_null": false
|
|
5191
5211
|
},
|
|
5192
5212
|
{
|
|
5193
5213
|
"disabled": false,
|
|
5194
|
-
"document": "
|
|
5195
|
-
"example": "
|
|
5214
|
+
"document": "Administrator user ID",
|
|
5215
|
+
"example": "U20250305141811KMSUKK",
|
|
5196
5216
|
"member": "string",
|
|
5197
5217
|
"name": "AdminUserId",
|
|
5198
5218
|
"output_required": false,
|
|
5199
5219
|
"type": "string",
|
|
5200
|
-
"value_allowed_null":
|
|
5220
|
+
"value_allowed_null": false
|
|
5201
5221
|
},
|
|
5202
5222
|
{
|
|
5203
5223
|
"disabled": false,
|
|
5204
|
-
"document": "
|
|
5205
|
-
"example": "
|
|
5224
|
+
"document": "Administrator account",
|
|
5225
|
+
"example": "xinyu",
|
|
5206
5226
|
"member": "string",
|
|
5207
5227
|
"name": "AdminUserAccount",
|
|
5208
5228
|
"output_required": false,
|
|
5209
5229
|
"type": "string",
|
|
5210
|
-
"value_allowed_null":
|
|
5230
|
+
"value_allowed_null": false
|
|
5211
5231
|
},
|
|
5212
5232
|
{
|
|
5213
5233
|
"disabled": false,
|
|
5214
|
-
"document": "
|
|
5215
|
-
"example": "
|
|
5234
|
+
"document": "Administrator username",
|
|
5235
|
+
"example": "xinyu",
|
|
5216
5236
|
"member": "string",
|
|
5217
5237
|
"name": "AdminUserName",
|
|
5218
5238
|
"output_required": false,
|
|
5219
5239
|
"type": "string",
|
|
5220
|
-
"value_allowed_null":
|
|
5240
|
+
"value_allowed_null": false
|
|
5221
5241
|
},
|
|
5222
5242
|
{
|
|
5223
5243
|
"disabled": false,
|
|
5224
|
-
"document": "Number of team members
|
|
5225
|
-
"example": "
|
|
5244
|
+
"document": "Number of team members",
|
|
5245
|
+
"example": "1",
|
|
5226
5246
|
"member": "int64",
|
|
5227
5247
|
"name": "MemberCount",
|
|
5228
5248
|
"output_required": false,
|
|
5229
5249
|
"type": "int",
|
|
5230
|
-
"value_allowed_null":
|
|
5250
|
+
"value_allowed_null": false
|
|
5231
5251
|
},
|
|
5232
5252
|
{
|
|
5233
5253
|
"disabled": false,
|
|
5234
5254
|
"document": "Team registration link",
|
|
5235
|
-
"example": "
|
|
5255
|
+
"example": "https://t05304jw9141741rlrn.console.tcmppcloud.com/team-register/ae2b5accadfd788eefaf3e5409ccbc57",
|
|
5236
5256
|
"member": "string",
|
|
5237
5257
|
"name": "RegisterLink",
|
|
5238
5258
|
"output_required": false,
|
|
@@ -5241,23 +5261,43 @@
|
|
|
5241
5261
|
},
|
|
5242
5262
|
{
|
|
5243
5263
|
"disabled": false,
|
|
5244
|
-
"document": "Team permission type
|
|
5245
|
-
"example": "
|
|
5264
|
+
"document": "Team permission type",
|
|
5265
|
+
"example": "[2]",
|
|
5246
5266
|
"member": "int64",
|
|
5247
5267
|
"name": "TeamRoleTypeList",
|
|
5248
5268
|
"output_required": false,
|
|
5249
5269
|
"type": "list",
|
|
5250
|
-
"value_allowed_null":
|
|
5270
|
+
"value_allowed_null": false
|
|
5251
5271
|
},
|
|
5252
5272
|
{
|
|
5253
5273
|
"disabled": false,
|
|
5254
5274
|
"document": "Associated team ID",
|
|
5255
|
-
"example": "
|
|
5275
|
+
"example": "0",
|
|
5256
5276
|
"member": "int64",
|
|
5257
5277
|
"name": "RelatedTeamId",
|
|
5258
5278
|
"output_required": false,
|
|
5259
5279
|
"type": "int",
|
|
5260
5280
|
"value_allowed_null": false
|
|
5281
|
+
},
|
|
5282
|
+
{
|
|
5283
|
+
"disabled": false,
|
|
5284
|
+
"document": "Team expiration time. 0 means never expire.",
|
|
5285
|
+
"example": "1761032238",
|
|
5286
|
+
"member": "int64",
|
|
5287
|
+
"name": "ExpireTime",
|
|
5288
|
+
"output_required": false,
|
|
5289
|
+
"type": "int",
|
|
5290
|
+
"value_allowed_null": false
|
|
5291
|
+
},
|
|
5292
|
+
{
|
|
5293
|
+
"disabled": false,
|
|
5294
|
+
"document": "Team status. valid values: 1: normal; 2: disabled; 3: expired.",
|
|
5295
|
+
"example": "1",
|
|
5296
|
+
"member": "int64",
|
|
5297
|
+
"name": "Status",
|
|
5298
|
+
"output_required": false,
|
|
5299
|
+
"type": "int",
|
|
5300
|
+
"value_allowed_null": false
|
|
5261
5301
|
}
|
|
5262
5302
|
],
|
|
5263
5303
|
"usage": "out"
|
|
@@ -5268,7 +5308,7 @@
|
|
|
5268
5308
|
{
|
|
5269
5309
|
"disabled": false,
|
|
5270
5310
|
"document": "Pagination offset",
|
|
5271
|
-
"example": "
|
|
5311
|
+
"example": "0",
|
|
5272
5312
|
"member": "int64",
|
|
5273
5313
|
"name": "Offset",
|
|
5274
5314
|
"required": true,
|
|
@@ -5276,8 +5316,8 @@
|
|
|
5276
5316
|
},
|
|
5277
5317
|
{
|
|
5278
5318
|
"disabled": false,
|
|
5279
|
-
"document": "
|
|
5280
|
-
"example": "
|
|
5319
|
+
"document": "Page size",
|
|
5320
|
+
"example": "10",
|
|
5281
5321
|
"member": "int64",
|
|
5282
5322
|
"name": "Limit",
|
|
5283
5323
|
"required": true,
|
|
@@ -5286,7 +5326,7 @@
|
|
|
5286
5326
|
{
|
|
5287
5327
|
"disabled": false,
|
|
5288
5328
|
"document": "Platform ID",
|
|
5289
|
-
"example": "
|
|
5329
|
+
"example": "T08123WM5791733VNCZ",
|
|
5290
5330
|
"member": "string",
|
|
5291
5331
|
"name": "PlatformId",
|
|
5292
5332
|
"required": true,
|
|
@@ -5294,8 +5334,8 @@
|
|
|
5294
5334
|
},
|
|
5295
5335
|
{
|
|
5296
5336
|
"disabled": false,
|
|
5297
|
-
"document": "
|
|
5298
|
-
"example": "
|
|
5337
|
+
"document": "Team name to be queried",
|
|
5338
|
+
"example": "name",
|
|
5299
5339
|
"member": "string",
|
|
5300
5340
|
"name": "Keyword",
|
|
5301
5341
|
"required": false,
|
|
@@ -5525,23 +5565,23 @@
|
|
|
5525
5565
|
"members": [
|
|
5526
5566
|
{
|
|
5527
5567
|
"disabled": false,
|
|
5528
|
-
"document": "Total
|
|
5529
|
-
"example": "
|
|
5568
|
+
"document": "Total count",
|
|
5569
|
+
"example": "1",
|
|
5530
5570
|
"member": "int64",
|
|
5531
5571
|
"name": "TotalCount",
|
|
5532
5572
|
"output_required": true,
|
|
5533
5573
|
"type": "int",
|
|
5534
|
-
"value_allowed_null":
|
|
5574
|
+
"value_allowed_null": false
|
|
5535
5575
|
},
|
|
5536
5576
|
{
|
|
5537
5577
|
"disabled": false,
|
|
5538
|
-
"document": "List information
|
|
5578
|
+
"document": "List information",
|
|
5539
5579
|
"example": "无",
|
|
5540
5580
|
"member": "DescribeTeamListInfoResp",
|
|
5541
5581
|
"name": "DataList",
|
|
5542
5582
|
"output_required": false,
|
|
5543
5583
|
"type": "list",
|
|
5544
|
-
"value_allowed_null":
|
|
5584
|
+
"value_allowed_null": false
|
|
5545
5585
|
}
|
|
5546
5586
|
],
|
|
5547
5587
|
"usage": "out"
|
|
@@ -5552,7 +5592,7 @@
|
|
|
5552
5592
|
{
|
|
5553
5593
|
"disabled": false,
|
|
5554
5594
|
"document": "Team ID",
|
|
5555
|
-
"example": "
|
|
5595
|
+
"example": "1151697965",
|
|
5556
5596
|
"member": "string",
|
|
5557
5597
|
"name": "TeamId",
|
|
5558
5598
|
"required": true,
|
|
@@ -5561,7 +5601,7 @@
|
|
|
5561
5601
|
{
|
|
5562
5602
|
"disabled": false,
|
|
5563
5603
|
"document": "Platform ID",
|
|
5564
|
-
"example": "
|
|
5604
|
+
"example": "T08123WM5791733VNCZ",
|
|
5565
5605
|
"member": "string",
|
|
5566
5606
|
"name": "PlatformId",
|
|
5567
5607
|
"required": true,
|
|
@@ -316,7 +316,7 @@
|
|
|
316
316
|
{
|
|
317
317
|
"document": "",
|
|
318
318
|
"input": "POST / HTTP/1.1\nHost: tcsas.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeTeam\n<Common request parameters>\n\n{\n \"TeamId\": \"1363731006\",\n \"PlatformId\": \"T04257DS9431720WTAG\"\n}",
|
|
319
|
-
"output": "{\n \"Response\": {\n \"Data\": {\n \"TeamName\": \"autotest_mini_team\",\n \"TeamRoleType\": 1,\n \"AdminUserAccount\": \"autotest_op\",\n \"CreateUser\": \"admin\",\n \"CreateTime\": \"1720678574\",\n \"MemberCount\": 8,\n \"BindMiniTeamCount\": 0,\n \"BindTeamName\": \"autotest_app_team\",\n \"RegisterLink\": \"\",\n \"ApplicationName\": \"autotest_app\"\n },\n \"RequestId\": \"70f3c710-c3ea-46a2-a80d-49100a8acaf7\"\n }\n}",
|
|
319
|
+
"output": "{\n \"Response\": {\n \"Data\": {\n \"TeamName\": \"autotest_mini_team\",\n \"TeamRoleType\": 1,\n \"AdminUserAccount\": \"autotest_op\",\n \"CreateUser\": \"admin\",\n \"CreateTime\": \"1720678574\",\n \"MemberCount\": 8,\n \"BindMiniTeamCount\": 0,\n \"BindTeamName\": \"autotest_app_team\",\n \"RegisterLink\": \"\",\n \"ApplicationName\": \"autotest_app\",\n \"ExpireTime\": 1761032238,\n \"Status\": 1\n },\n \"RequestId\": \"70f3c710-c3ea-46a2-a80d-49100a8acaf7\"\n }\n}",
|
|
320
320
|
"title": "DescribeTeam"
|
|
321
321
|
}
|
|
322
322
|
],
|
|
@@ -324,7 +324,7 @@
|
|
|
324
324
|
{
|
|
325
325
|
"document": "",
|
|
326
326
|
"input": "POST / HTTP/1.1\nHost: tcsas.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeTeamList\n<Common request parameters>\n\n{\n \"Limit\": 20,\n \"Offset\": 0,\n \"Keyword\": \"\",\n \"PlatformId\": \"T04827BQ9761718REMX\"\n}",
|
|
327
|
-
"output": "{\n \"Response\": {\n \"Data\": {\n \"TotalCount\": 1,\n \"DataList\": [\n {\n \"TeamId\": \"5441555296\",\n \"TeamName\": \"vinya_app\",\n \"AdminUserId\": \"U20240709160550YHSGDN\",\n \"AdminUserAccount\": \"xini_app\",\n \"AdminUserName\": \"xini_app\",\n \"MemberCount\": 3,\n \"RegisterLink\": \"/team-register/e2cd77b46a0090bd0e677dca73bda1f3\",\n \"TeamRoleTypeList\": [\n 2\n ],\n \"RelatedTeamId\": 0\n }\n ]\n },\n \"RequestId\": \"656gg8cd-1651-4c8f-b384-b308ad11f743\"\n }\n}",
|
|
327
|
+
"output": "{\n \"Response\": {\n \"Data\": {\n \"TotalCount\": 1,\n \"DataList\": [\n {\n \"TeamId\": \"5441555296\",\n \"TeamName\": \"vinya_app\",\n \"AdminUserId\": \"U20240709160550YHSGDN\",\n \"AdminUserAccount\": \"xini_app\",\n \"AdminUserName\": \"xini_app\",\n \"MemberCount\": 3,\n \"RegisterLink\": \"/team-register/e2cd77b46a0090bd0e677dca73bda1f3\",\n \"TeamRoleTypeList\": [\n 2\n ],\n \"RelatedTeamId\": 0,\n \"ExpireTime\": 0,\n \"Status\": 1\n }\n ]\n },\n \"RequestId\": \"656gg8cd-1651-4c8f-b384-b308ad11f743\"\n }\n}",
|
|
328
328
|
"title": "DescribeTeamList"
|
|
329
329
|
}
|
|
330
330
|
],
|
|
@@ -281,7 +281,7 @@
|
|
|
281
281
|
"status": "online"
|
|
282
282
|
},
|
|
283
283
|
"DeleteAliasDomain": {
|
|
284
|
-
"document": "This API is used to delete an alias domain name.\nThe feature is only supported by the enterprise plan and is currently in closed beta testing. If you need to use it, [Contact Us](https://
|
|
284
|
+
"document": "This API is used to delete an alias domain name.\nThe feature is only supported by the enterprise plan and is currently in closed beta testing. If you need to use it, [Contact Us](https://www.tencentcloud.com/contact-us).",
|
|
285
285
|
"input": "DeleteAliasDomainRequest",
|
|
286
286
|
"name": "Deletes an alias domain name.",
|
|
287
287
|
"output": "DeleteAliasDomainResponse",
|
|
@@ -673,7 +673,7 @@
|
|
|
673
673
|
"status": "online"
|
|
674
674
|
},
|
|
675
675
|
"DescribeLoadBalancerList": {
|
|
676
|
-
"document": "This API is used to query the LoadBalancer list. The load balancing feature is in beta test. If you need to use it, [contact us](https://
|
|
676
|
+
"document": "This API is used to query the LoadBalancer list. The load balancing feature is in beta test. If you need to use it, [contact us](https://www.tencentcloud.com/contact-us).",
|
|
677
677
|
"input": "DescribeLoadBalancerListRequest",
|
|
678
678
|
"name": "Queries the LoadBalancer list",
|
|
679
679
|
"output": "DescribeLoadBalancerListResponse",
|
|
@@ -729,7 +729,7 @@
|
|
|
729
729
|
"status": "online"
|
|
730
730
|
},
|
|
731
731
|
"DescribeOriginGroupHealthStatus": {
|
|
732
|
-
"document": "This API is used to query the health status of origin server groups under a LoadBalancer. The load balancing feature is in beta test. If you need to use it, [contact us](https://
|
|
732
|
+
"document": "This API is used to query the health status of origin server groups under a LoadBalancer. The load balancing feature is in beta test. If you need to use it, [contact us](https://www.tencentcloud.com/contact-us).",
|
|
733
733
|
"input": "DescribeOriginGroupHealthStatusRequest",
|
|
734
734
|
"name": "Queries the health status of origin server groups under a LoadBalancer",
|
|
735
735
|
"output": "DescribeOriginGroupHealthStatusResponse",
|
|
@@ -862,7 +862,7 @@
|
|
|
862
862
|
"status": "online"
|
|
863
863
|
},
|
|
864
864
|
"DescribeTimingL7AnalysisData": {
|
|
865
|
-
"document": "This API is used to query time
|
|
865
|
+
"document": "This API is used to query time series data for L7 domain name business.\nCreate and bind policy Query instance Reset instance access password.\nThis API is used to query data with a delay of about 10 minutes. It is recommended to pull data from at least 10 minutes before the current time.\nThis API is used to return post-protection traffic request data by default. Users can query defended data in `Filters.mitigatedByWebSecurity`.",
|
|
866
866
|
"input": "DescribeTimingL7AnalysisDataRequest",
|
|
867
867
|
"name": "Queries the traffic analysis data over time",
|
|
868
868
|
"output": "DescribeTimingL7AnalysisDataResponse",
|
|
@@ -876,7 +876,7 @@
|
|
|
876
876
|
"status": "online"
|
|
877
877
|
},
|
|
878
878
|
"DescribeTopL7AnalysisData": {
|
|
879
|
-
"document": "This API is used to query the top N data of the L7 domain
|
|
879
|
+
"document": "This API is used to query the top N data of the L7 domain name business by specified dimension.\nCreate and bind policy Query instance Reset instance access password.\nThis API is used to query data with a delay of about 10 minutes. It is recommended to pull data from at least 10 minutes before the current time.\nThis API is used to return post-protection traffic request data by default. Users can query defended data in `Filters.mitigatedByWebSecurity`.",
|
|
880
880
|
"input": "DescribeTopL7AnalysisDataRequest",
|
|
881
881
|
"name": "Queries the traffic analysis data",
|
|
882
882
|
"output": "DescribeTopL7AnalysisDataResponse",
|
|
@@ -1009,7 +1009,7 @@
|
|
|
1009
1009
|
"status": "online"
|
|
1010
1010
|
},
|
|
1011
1011
|
"ModifyAliasDomain": {
|
|
1012
|
-
"document": "This API is used to modify an alias domain name.\nThe feature is only supported in the enterprise plan and is currently in closed beta testing. If you need to use it, [contact us](https://
|
|
1012
|
+
"document": "This API is used to modify an alias domain name.\nThe feature is only supported in the enterprise plan and is currently in closed beta testing. If you need to use it, [contact us](https://www.tencentcloud.com/contact-us).",
|
|
1013
1013
|
"input": "ModifyAliasDomainRequest",
|
|
1014
1014
|
"name": "Modifies an alias domain name.",
|
|
1015
1015
|
"output": "ModifyAliasDomainResponse",
|
|
@@ -10381,7 +10381,7 @@
|
|
|
10381
10381
|
},
|
|
10382
10382
|
{
|
|
10383
10383
|
"disabled": false,
|
|
10384
|
-
"document": "Site ID set.
|
|
10384
|
+
"document": "Site ID set. The parameter will change from optional to mandatory after May 30, 2024.Refer to [Cloud API Change Notification](https://www.tencentcloud.com/document/product/1145/59980). A maximum of 100 site ids can be imported. use `*` to query data for all sites under the tencent cloud root account. to query account-level data, you must have resource permissions for all sites in this api.",
|
|
10385
10385
|
"example": "[\"zoneId1\",\"zoneId2\"]",
|
|
10386
10386
|
"member": "string",
|
|
10387
10387
|
"name": "ZoneIds",
|
|
@@ -10482,7 +10482,7 @@
|
|
|
10482
10482
|
},
|
|
10483
10483
|
{
|
|
10484
10484
|
"disabled": false,
|
|
10485
|
-
"document": "Site ID set.
|
|
10485
|
+
"document": "Site ID set. The parameter will change from optional to mandatory after May 30, 2024.Refer to [Cloud API Change Notification](https://www.tencentcloud.com/document/product/1145/59980). A maximum of 100 site ids can be imported. use `*` to query data for all sites under the tencent cloud root account. to query account-level data, you must have resource permissions for all sites in this api.",
|
|
10486
10486
|
"example": "[\"zoneId1\",\"zoneId2\"]",
|
|
10487
10487
|
"member": "string",
|
|
10488
10488
|
"name": "ZoneIds",
|
|
@@ -10610,7 +10610,7 @@
|
|
|
10610
10610
|
},
|
|
10611
10611
|
{
|
|
10612
10612
|
"disabled": false,
|
|
10613
|
-
"document": "Site ID set.
|
|
10613
|
+
"document": "Site ID set. The parameter will change from optional to mandatory after May 30, 2024.Refer to [Cloud API Change Notification](https://www.tencentcloud.com/document/product/1145/59980). A maximum of 100 site ids can be imported. use `*` to query data for all sites under the tencent cloud root account. to query account-level data, you must have resource permissions for all sites in this api.",
|
|
10614
10614
|
"example": "[\"zoneId1\",\"zoneId2\"]",
|
|
10615
10615
|
"member": "string",
|
|
10616
10616
|
"name": "ZoneIds",
|
|
@@ -12501,7 +12501,7 @@
|
|
|
12501
12501
|
"members": [
|
|
12502
12502
|
{
|
|
12503
12503
|
"disabled": false,
|
|
12504
|
-
"document": "Site ID.
|
|
12504
|
+
"document": "Site ID.The parameter will change from optional to mandatory after May 30, 2024.Refer to [Cloud API Change Notification](https://www.tencentcloud.com/document/product/1145/59980)",
|
|
12505
12505
|
"example": "zone-xxx",
|
|
12506
12506
|
"member": "string",
|
|
12507
12507
|
"name": "ZoneId",
|
|
@@ -12546,7 +12546,7 @@
|
|
|
12546
12546
|
},
|
|
12547
12547
|
{
|
|
12548
12548
|
"disabled": false,
|
|
12549
|
-
"document": "Filter criteria. The maximum number of Filters.Values is 20. The detailed filter criteria are as follows: <li>job-id: Filter by task ID in the format like 1379afjk91u32h. Multiple values and fuzzy queries are not supported.</li><li>target: Filter by target resource information in the format like http://www.qq.com/1.txt. Multiple values and fuzzy queries are not supported.</li><li>domains: Filter by domain name in the format like www.qq.com. Fuzzy queries are not supported.</li><li>statuses: Filter by task status. Fuzzy queries are not supported. Options:<br
|
|
12549
|
+
"document": "Filter criteria. The maximum number of Filters.Values is 20. The detailed filter criteria are as follows: <li>job-id: Filter by task ID in the format like 1379afjk91u32h. Multiple values and fuzzy queries are not supported.</li><li>target: Filter by target resource information in the format like http://www.qq.com/1.txt. Multiple values and fuzzy queries are not supported.</li><li>domains: Filter by domain name in the format like www.qq.com. Fuzzy queries are not supported.</li><li>statuses: Filter by task status. Fuzzy queries are not supported. Options:<br>processing: processing<br>success: successful<br>failed: failed<br>timeout: timed out<br>invalid: invalid, that is, the response status code of the origin server is not 2xx. Please check the origin server service.<br>canceled: Canceled",
|
|
12550
12550
|
"example": "无",
|
|
12551
12551
|
"member": "AdvancedFilter",
|
|
12552
12552
|
"name": "Filters",
|
|
@@ -12593,7 +12593,7 @@
|
|
|
12593
12593
|
"members": [
|
|
12594
12594
|
{
|
|
12595
12595
|
"disabled": false,
|
|
12596
|
-
"document": "Site ID.
|
|
12596
|
+
"document": "Site ID. The parameter will change from optional to mandatory after May 30, 2024.Refer to [Cloud API Change Notification](https://www.tencentcloud.com/document/product/1145/59980)",
|
|
12597
12597
|
"example": "zone-xxxxxx",
|
|
12598
12598
|
"member": "string",
|
|
12599
12599
|
"name": "ZoneId",
|
|
@@ -12638,7 +12638,7 @@
|
|
|
12638
12638
|
},
|
|
12639
12639
|
{
|
|
12640
12640
|
"disabled": false,
|
|
12641
|
-
"document": "Filter criteria. The maximum number of Filters.Values is 20. The detailed filter criteria are as follows:\n<li>job-id: Filter by task ID in the format like 1379afjk91u32h. Multiple values and fuzzy queries are not supported.</li>\n<li>target: Filter by target resource information in the format like http://www.qq.com/1.txt or tag1. Multiple values are not supported yet. Fuzzy queries are supported.</li>\n<li>domains: Filter by domain name in the format like www.qq.com. Fuzzy queries are not supported.</li>\n<li>statuses: Filter by task status. Fuzzy queries are not supported. Options:<br
|
|
12641
|
+
"document": "Filter criteria. The maximum number of Filters.Values is 20. The detailed filter criteria are as follows:\n<li>job-id: Filter by task ID in the format like 1379afjk91u32h. Multiple values and fuzzy queries are not supported.</li>\n<li>target: Filter by target resource information in the format like http://www.qq.com/1.txt or tag1. Multiple values are not supported yet. Fuzzy queries are supported.</li>\n<li>domains: Filter by domain name in the format like www.qq.com. Fuzzy queries are not supported.</li>\n<li>statuses: Filter by task status. Fuzzy queries are not supported. Options:<br>processing: processing<br>success: successful<br>failed: failed<br>timeout: timed out<br>canceled: Canceled</li>\n<li>type: Filter by cache clearance type. Multiple values and fuzzy queries are not supported yet. Options: <br>purge_url: URL<br>purge_prefix: prefix<br>purge_all: all cached content<br>purge_host: Hostname<br>purge_cache_tag: CacheTag</li>",
|
|
12642
12642
|
"example": "无",
|
|
12643
12643
|
"member": "AdvancedFilter",
|
|
12644
12644
|
"name": "Filters",
|
|
@@ -13424,7 +13424,7 @@
|
|
|
13424
13424
|
},
|
|
13425
13425
|
{
|
|
13426
13426
|
"disabled": false,
|
|
13427
|
-
"document": "Site ID set.
|
|
13427
|
+
"document": "Site ID set. The parameter will change from optional to mandatory after May 30, 2024.Refer to [Cloud API Change Notification](https://www.tencentcloud.com/document/product/1145/59980). a maximum of 100 site ids can be imported. use `*` to query data for all sites under the tencent cloud root account. to query account-level data, you must have resource permissions for all sites in this api.",
|
|
13428
13428
|
"example": "[\"zone-2rntun0a1z6t\",\"zone-323urc8a9j0q\"]",
|
|
13429
13429
|
"member": "string",
|
|
13430
13430
|
"name": "ZoneIds",
|
|
@@ -13534,7 +13534,7 @@
|
|
|
13534
13534
|
},
|
|
13535
13535
|
{
|
|
13536
13536
|
"disabled": false,
|
|
13537
|
-
"document": "Site ID list.
|
|
13537
|
+
"document": "Site ID list. The parameter will change from optional to mandatory after May 30, 2024.Refer to [Cloud API Change Notification](https://www.tencentcloud.com/document/product/1145/59980). A maximum of 100 site IDs can be imported. Use `*` to query data for all sites under the Tencent Cloud root account. To query account-level data, you must have resource permissions for all sites in this API.",
|
|
13538
13538
|
"example": "[\"*\"]",
|
|
13539
13539
|
"member": "string",
|
|
13540
13540
|
"name": "ZoneIds",
|
|
@@ -13552,7 +13552,7 @@
|
|
|
13552
13552
|
},
|
|
13553
13553
|
{
|
|
13554
13554
|
"disabled": false,
|
|
13555
|
-
"document": "
|
|
13555
|
+
"document": "Filter criteria used when filtering data. valid values refer to the available filter options for L7 access traffic, bandwidth, and request count in the [metric analysis filtering condition description](https://www.tencentcloud.comom/document/product/1552/98219?from_cn_redirect=1#1aaf1150-55a4-4b4d-b103-3a8317ac7945).\nIf needed, limit the site or content identifier by importing the corresponding value in the `ZoneIds.N` parameter.",
|
|
13556
13556
|
"example": "无",
|
|
13557
13557
|
"member": "QueryCondition",
|
|
13558
13558
|
"name": "Filters",
|
|
@@ -13561,7 +13561,7 @@
|
|
|
13561
13561
|
},
|
|
13562
13562
|
{
|
|
13563
13563
|
"disabled": false,
|
|
13564
|
-
"document": "Data region.
|
|
13564
|
+
"document": "Data ownership region. this parameter is deprecated. please filter data by client region in `Filters.country`.",
|
|
13565
13565
|
"example": "mainland",
|
|
13566
13566
|
"member": "string",
|
|
13567
13567
|
"name": "Area",
|
|
@@ -13727,7 +13727,7 @@
|
|
|
13727
13727
|
},
|
|
13728
13728
|
{
|
|
13729
13729
|
"disabled": false,
|
|
13730
|
-
"document": "Queried metric.
|
|
13730
|
+
"document": "Queried metric. valid values:.\n<li> l7Flow_outFlux_country: specifies the l7 EdgeOne response traffic metric counted by the country/region dimension.</li>.\n<li> l7Flow_outFlux_province: specifies the l7 EdgeOne response traffic metric counted by the dimension of provinces in chinese mainland.</li>.\n<li> l7Flow_outFlux_statusCode: specifies the l7 EdgeOne response traffic metric by status code dimension.</li>.\n<li> l7Flow_outFlux_domain: specifies the l7 EdgeOne response traffic metric counted by domain name dimension.</li>.\n<li>l7Flow_outFlux_url: specifies the l7 EdgeOne response traffic metric counted by url Path dimension.</li>.\n<li> l7Flow_outFlux_resourceType: specifies the l7 EdgeOne response traffic metric counted by resource type dimension.</li>.\n<li> l7Flow_outFlux_sip: specifies the l7 EdgeOne response traffic metric counted by the client IP dimension.</li>.\n<li>l7Flow_outFlux_referers: specifies the l7 EdgeOne response traffic statistics by Referer dimension.</li>.\n<li> l7Flow_outFlux_ua_device: specifies the l7 EdgeOne response traffic metric counted by device type dimension.</li>.\n<li> l7Flow_outFlux_ua_browser: specifies the l7 EdgeOne response traffic metric by browser type dimension.</li>.\n<li> l7Flow_outFlux_ua_os: specifies the l7 EdgeOne response traffic metric counted by the operating system type dimension.</li>.\n<li> l7Flow_outFlux_ua: specifies the l7 EdgeOne response traffic metric by User-Agent dimension statistics.</li>.\n<li> l7Flow_request_country: specifies the l7 access request count metric by country/region dimension.</li>.\n<li> l7Flow_request_province: specifies the l7 access request count metric by province in the chinese mainland.</li>.\n<li> l7Flow_request_statusCode: specifies the l7 access request count metric by status code dimension.</li>.\n<li> l7Flow_request_domain: specifies the l7 access request count metric counted by the domain name dimension.</li>.\n<li> l7Flow_request_url: specifies the l7 access request count metric counted by url Path dimension. </li>.\n<li> l7Flow_request_resourceType: specifies the l7 access request count metric counted by the resource type dimension.</li>.\n<li> l7Flow_request_sip: specifies the l7 access request count metric counted by the client IP dimension.</li>.\n<li>l7Flow_request_referer: specifies l7 access request count metrics by referer dimension.</li>.\n<li> l7Flow_request_ua_device: specifies the l7 access request count metric by device type dimension.</li>.\n<li> l7Flow_request_ua_browser: specifies the l7 access request count metric by browser type dimension.</li>.\n<li> l7Flow_request_ua_os: specifies the l7 access request count metric counted by the operating system type dimension.</li>.\n<li> l7Flow_request_ua: l7 access request count metric counted by the User-Agent dimension.</li>.",
|
|
13731
13731
|
"example": "l7Flow_outFlux_country",
|
|
13732
13732
|
"member": "string",
|
|
13733
13733
|
"name": "MetricName",
|
|
@@ -13736,7 +13736,7 @@
|
|
|
13736
13736
|
},
|
|
13737
13737
|
{
|
|
13738
13738
|
"disabled": false,
|
|
13739
|
-
"document": "Site ID list.
|
|
13739
|
+
"document": "Site ID list. The parameter will change from optional to mandatory after May 30, 2024.Refer to [Cloud API Change Notification](https://www.tencentcloud.com/document/product/1145/59980). A maximum of 100 site IDs can be imported. Use `*` to query data for all sites under the Tencent Cloud root account. To query account-level data, you must have resource permissions for all sites in this API.",
|
|
13740
13740
|
"example": "[\"*\"]",
|
|
13741
13741
|
"member": "string",
|
|
13742
13742
|
"name": "ZoneIds",
|
|
@@ -13754,7 +13754,7 @@
|
|
|
13754
13754
|
},
|
|
13755
13755
|
{
|
|
13756
13756
|
"disabled": false,
|
|
13757
|
-
"document": "
|
|
13757
|
+
"document": "Filter criteria used when filtering data. valid values refer to the available filter options for L7 access traffic, bandwidth, and request count in the [metric analysis filtering condition description](https://www.tencentcloud.comom/document/product/1552/98219?from_cn_redirect=1#1aaf1150-55a4-4b4d-b103-3a8317ac7945).\nIf needed, limit the site or content identifier by importing the corresponding value in the `ZoneIds.N` parameter.",
|
|
13758
13758
|
"example": "无",
|
|
13759
13759
|
"member": "QueryCondition",
|
|
13760
13760
|
"name": "Filters",
|
|
@@ -13763,7 +13763,7 @@
|
|
|
13763
13763
|
},
|
|
13764
13764
|
{
|
|
13765
13765
|
"disabled": false,
|
|
13766
|
-
"document": "Query time granularity.
|
|
13766
|
+
"document": "Query time granularity. this parameter is invalid. to be deprecated.",
|
|
13767
13767
|
"example": "min",
|
|
13768
13768
|
"member": "string",
|
|
13769
13769
|
"name": "Interval",
|
|
@@ -13772,7 +13772,7 @@
|
|
|
13772
13772
|
},
|
|
13773
13773
|
{
|
|
13774
13774
|
"disabled": false,
|
|
13775
|
-
"document": "Data region.
|
|
13775
|
+
"document": "Data ownership region. this parameter is deprecated. please filter data by client region in `Filters.country`.",
|
|
13776
13776
|
"example": "mainland",
|
|
13777
13777
|
"member": "string",
|
|
13778
13778
|
"name": "Area",
|
|
@@ -14951,7 +14951,7 @@
|
|
|
14951
14951
|
},
|
|
14952
14952
|
{
|
|
14953
14953
|
"disabled": false,
|
|
14954
|
-
"document": "ZoneId set.
|
|
14954
|
+
"document": "ZoneId set. The parameter will change from optional to mandatory after May 30, 2024.Refer to [Cloud API Change Notification](https://www.tencentcloud.com/document/product/1145/59980).",
|
|
14955
14955
|
"example": "[\"zone-2m6jx63f6k3x\"]",
|
|
14956
14956
|
"member": "string",
|
|
14957
14957
|
"name": "ZoneIds",
|
|
@@ -15043,7 +15043,7 @@
|
|
|
15043
15043
|
},
|
|
15044
15044
|
{
|
|
15045
15045
|
"disabled": false,
|
|
15046
|
-
"document": "ZoneId set.
|
|
15046
|
+
"document": "ZoneId set. The parameter will change from optional to mandatory after May 30, 2024.Refer to [Cloud API Change Notification](https://www.tencentcloud.com/document/product/1145/59980).",
|
|
15047
15047
|
"example": "[\"zone-2nepupfjtjlf\"]",
|
|
15048
15048
|
"member": "string",
|
|
15049
15049
|
"name": "ZoneIds",
|
|
@@ -16943,7 +16943,7 @@
|
|
|
16943
16943
|
},
|
|
16944
16944
|
{
|
|
16945
16945
|
"disabled": false,
|
|
16946
|
-
"document": "Tls version settings, valid values:.\n<Li>`TLSv1`: tlsv1 version;</li>.\n<li>`
|
|
16946
|
+
"document": "Tls version settings, valid values:.\n<Li>`TLSv1`: tlsv1 version;</li>.\n<li>`TLSv1.1`: TLSv1.1 version;</li>.\n<li>TLSv1.2: specifies the TLSv1.2 version.</li>.\n<Li>TLSv1.3: specifies the TLSv1.3 version. consecutive versions must be enabled when modifying.</li>.",
|
|
16947
16947
|
"example": "[\"TLSv1\", \"TLSv1.1\"]",
|
|
16948
16948
|
"member": "string",
|
|
16949
16949
|
"name": "TlsVersion",
|
|
@@ -18757,16 +18757,18 @@
|
|
|
18757
18757
|
"example": "on/off",
|
|
18758
18758
|
"member": "string",
|
|
18759
18759
|
"name": "FollowOrigin",
|
|
18760
|
+
"output_required": true,
|
|
18760
18761
|
"required": false,
|
|
18761
18762
|
"type": "string",
|
|
18762
18763
|
"value_allowed_null": false
|
|
18763
18764
|
},
|
|
18764
18765
|
{
|
|
18765
18766
|
"disabled": false,
|
|
18766
|
-
"document": "Specifies the maximum amount of time (in seconds).
|
|
18767
|
+
"document": "Specifies the maximum amount of time (in seconds). Value range: 0 to 315360000.\nNote: The value `0` means not to cache.",
|
|
18767
18768
|
"example": "600",
|
|
18768
18769
|
"member": "int64",
|
|
18769
18770
|
"name": "MaxAgeTime",
|
|
18771
|
+
"output_required": true,
|
|
18770
18772
|
"required": false,
|
|
18771
18773
|
"type": "int",
|
|
18772
18774
|
"value_allowed_null": false
|
|
@@ -26898,7 +26900,7 @@
|
|
|
26898
26900
|
},
|
|
26899
26901
|
{
|
|
26900
26902
|
"disabled": false,
|
|
26901
|
-
"document": "
|
|
26903
|
+
"document": "Description of the reason for cache purge or warm cache failure.",
|
|
26902
26904
|
"example": "回源失败,可尝试重新提交,或检查源站是否出现以下问题:服务不可用、响应超时、触发限速策略、安全策略限制、网络故障、或达到带宽/连接数上限。",
|
|
26903
26905
|
"member": "string",
|
|
26904
26906
|
"name": "FailMessage",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tccli-intl-en
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.1276.1
|
|
4
4
|
Summary: Universal Command Line Environment for Tencent Cloud
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-cli-intl-en.git
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -22,7 +22,7 @@ Classifier: Programming Language :: Python :: 3.4
|
|
|
22
22
|
Classifier: Programming Language :: Python :: 3.5
|
|
23
23
|
Classifier: Programming Language :: Python :: 3.6
|
|
24
24
|
License-File: LICENSE
|
|
25
|
-
Requires-Dist: tencentcloud-sdk-python-intl-en (>=3.0.
|
|
25
|
+
Requires-Dist: tencentcloud-sdk-python-intl-en (>=3.0.1276)
|
|
26
26
|
Requires-Dist: jmespath (==0.10.0)
|
|
27
27
|
Requires-Dist: six (==1.16.0)
|
|
28
28
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tccli/__init__.py,sha256=
|
|
1
|
+
tccli/__init__.py,sha256=AEB0BlCb6H51x3QMSx5JR57PQ6g6PBH-VC1WzxnfPOI,28
|
|
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
|
|
@@ -205,9 +205,9 @@ tccli/services/cwp/cwp_client.py,sha256=UNo7UrxPCchk06Gjnnb-o8Ieh87mppr3HCdnUAHf
|
|
|
205
205
|
tccli/services/cwp/v20180228/api.json,sha256=dl5bSD0_GMwxmOIItlWCGJLcHilwgdV9x096K8Do1Oc,2098126
|
|
206
206
|
tccli/services/cwp/v20180228/examples.json,sha256=-siZxcksRepNR72ljg1bH60o5bQ8gS71Mw_0iteVUvE,561518
|
|
207
207
|
tccli/services/cynosdb/__init__.py,sha256=MBWPrBSMnHBk0CGpJoI_LU1UxxPO0CX-LO2xxuCFCzg,93
|
|
208
|
-
tccli/services/cynosdb/cynosdb_client.py,sha256=
|
|
209
|
-
tccli/services/cynosdb/v20190107/api.json,sha256=
|
|
210
|
-
tccli/services/cynosdb/v20190107/examples.json,sha256=
|
|
208
|
+
tccli/services/cynosdb/cynosdb_client.py,sha256=QGKLjNH_OMVytatoWrJ8wn-DQTey3eDStGP1hgOi3Ss,444455
|
|
209
|
+
tccli/services/cynosdb/v20190107/api.json,sha256=ghsInfckZDUbXAOMZzsw6OhKBqWVARR6pD-ToD18A10,613843
|
|
210
|
+
tccli/services/cynosdb/v20190107/examples.json,sha256=u7iD-zzKWDbTPZEUVRgdC2I5h_Oni9LdpIOjFkPDlbk,156750
|
|
211
211
|
tccli/services/dataintegration/__init__.py,sha256=NGpOyiD3aqPd3hXZCm-0gdEzTnFzl9lvmAPe11HHBQc,109
|
|
212
212
|
tccli/services/dataintegration/dataintegration_client.py,sha256=B7X1T-RJpj0vKHp8S5BtFL0QYUG6UO_1q_ZltWV0a3o,9269
|
|
213
213
|
tccli/services/dataintegration/v20220613/api.json,sha256=A2IWNs64m37qiYvFwGOb-Of2hNTAtob-TzGEIWKlFjU,2249
|
|
@@ -366,8 +366,8 @@ tccli/services/mdl/v20200326/api.json,sha256=KZbcyxEIFcA78GyDdQ3iSzv55IaTA75oXZI
|
|
|
366
366
|
tccli/services/mdl/v20200326/examples.json,sha256=tDQsDXfN_UUzr2JPhz570EGKYpLkxI3ksrr7G5gEWdk,39075
|
|
367
367
|
tccli/services/mdp/__init__.py,sha256=RALYmSbMGl9MqSjDHzxRemmg_ctfsVSsmU_3fv_LQxw,85
|
|
368
368
|
tccli/services/mdp/mdp_client.py,sha256=EXgc1-vor31glB15wGXx7g4NNha8KD7_Tw0z-ewPIAI,202540
|
|
369
|
-
tccli/services/mdp/v20200527/api.json,sha256=
|
|
370
|
-
tccli/services/mdp/v20200527/examples.json,sha256=
|
|
369
|
+
tccli/services/mdp/v20200527/api.json,sha256=HpJZXBo64tdIPJgxC8_uWRFx38Ux_7gWaPl5BUgzyWo,232034
|
|
370
|
+
tccli/services/mdp/v20200527/examples.json,sha256=C2JlvPdeYkF-Bax1cxsqk-lBcB6e1gtcwllWkYS9_N4,75090
|
|
371
371
|
tccli/services/message/__init__.py,sha256=vnNA6jQOTL7gkCko1DDyKAeq0Gyey4Oiyi0ZbQM6L3M,93
|
|
372
372
|
tccli/services/message/message_client.py,sha256=GJRZ7V8wV3qQOmWMqRQQprEdcGkLSETQSkF_4u5IDV8,9285
|
|
373
373
|
tccli/services/message/v20181225/api.json,sha256=0b7N_NnQbMS9W3zgCwCAakJG9aGMuKV7ChF7J1Xf52Q,2095
|
|
@@ -494,8 +494,8 @@ tccli/services/tcr/v20190924/api.json,sha256=UxrFDkRD-12cAwZAhV72-lvIk10H9nU_s_A
|
|
|
494
494
|
tccli/services/tcr/v20190924/examples.json,sha256=3mPIgLErP_xqokBKBxmGP6cxksgOhLbAQdrMky6oJDk,56423
|
|
495
495
|
tccli/services/tcsas/__init__.py,sha256=1EpBI8aFqMumYR2-d3dPcioTzndY_IsNrLw1H9M58IM,89
|
|
496
496
|
tccli/services/tcsas/tcsas_client.py,sha256=Urg-2QWt_qA9HPtqv4O12ABly9KOQfU2pf2Ayr-70J0,189021
|
|
497
|
-
tccli/services/tcsas/v20250106/api.json,sha256=
|
|
498
|
-
tccli/services/tcsas/v20250106/examples.json,sha256=
|
|
497
|
+
tccli/services/tcsas/v20250106/api.json,sha256=NRlrwB8jMZ1vm5TBTyr7-hKlWRLrxRu445mb0-_fWb4,234077
|
|
498
|
+
tccli/services/tcsas/v20250106/examples.json,sha256=c7j_lb88ujkHsV8fEI65nW6fnpl3xLCmxPk-kuMmpw4,68184
|
|
499
499
|
tccli/services/tcss/__init__.py,sha256=FTLOwcSZ8-U5g9XG6eYy1mphujovIis-nfDfI5HV2lU,87
|
|
500
500
|
tccli/services/tcss/tcss_client.py,sha256=D1zTbw2em_Y-Y0GbtR8EXJLRLfGQ08dVpbnzUe2zEFA,1041223
|
|
501
501
|
tccli/services/tcss/v20201101/api.json,sha256=0o-9jZqrk7Yx0wgWmqg_DzBZ5HSqIVGBfTJ9q4HdyyQ,1602999
|
|
@@ -518,7 +518,7 @@ tccli/services/teo/__init__.py,sha256=nvzcUSkSQuTftWEJ399BUZpUk_0jEq-l97539DwbAw
|
|
|
518
518
|
tccli/services/teo/teo_client.py,sha256=aKu9kxw__IqmH8MFfa7JZ2vJ8eyksBiwHL97KqVqPyE,745543
|
|
519
519
|
tccli/services/teo/v20220106/api.json,sha256=pEZJsuPOV4oAO5uxFRxpkBzxdGbhiuDGeDhItZLpBk0,440930
|
|
520
520
|
tccli/services/teo/v20220106/examples.json,sha256=bzXKxeiSSmtv7lL1wbcb7YaTbgbOFBJbD_uCv1fzQuk,87233
|
|
521
|
-
tccli/services/teo/v20220901/api.json,sha256=
|
|
521
|
+
tccli/services/teo/v20220901/api.json,sha256=X2GKG6si4aVb2I-oRrjzxJ0sPNnThIEuvhbnwJqVKX8,1163212
|
|
522
522
|
tccli/services/teo/v20220901/examples.json,sha256=DwEWUpOMKpLjMj5jhbe1OxwyPrrB3vesi887UcfDRag,525409
|
|
523
523
|
tccli/services/tione/__init__.py,sha256=hVHB2cJpskiRtSHmEaJj2ZcjQp28c17sepm54VgFH7I,89
|
|
524
524
|
tccli/services/tione/tione_client.py,sha256=dqxNYR2NRnjyRhfEaHIvCf3KT71PqDvU9JvN5e_Q5Dc,9264
|
|
@@ -592,9 +592,9 @@ tccli/services/yunjing/__init__.py,sha256=8HTKN8_ow1j67tspqAbBMQgeteXAagLvtb9WAf
|
|
|
592
592
|
tccli/services/yunjing/yunjing_client.py,sha256=Vh5vFOLjDJ53q_RX9WADwLT610kGcUxwCmtny95k3js,226485
|
|
593
593
|
tccli/services/yunjing/v20180228/api.json,sha256=zYojacZyPgPCi71CLBjuHsQR9mIxcZjCX5JwA9TYr1s,173428
|
|
594
594
|
tccli/services/yunjing/v20180228/examples.json,sha256=j3GL3TtNTkZpNLlksz0nJNCVDxYGUqfRqOt94Y-P8OE,58723
|
|
595
|
-
tccli_intl_en-3.0.
|
|
596
|
-
tccli_intl_en-3.0.
|
|
597
|
-
tccli_intl_en-3.0.
|
|
598
|
-
tccli_intl_en-3.0.
|
|
599
|
-
tccli_intl_en-3.0.
|
|
600
|
-
tccli_intl_en-3.0.
|
|
595
|
+
tccli_intl_en-3.0.1276.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
596
|
+
tccli_intl_en-3.0.1276.1.dist-info/METADATA,sha256=kazBi9ObgTQ4qL02MpymMzNA754vLioQz8hwM1qLacg,3092
|
|
597
|
+
tccli_intl_en-3.0.1276.1.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
598
|
+
tccli_intl_en-3.0.1276.1.dist-info/entry_points.txt,sha256=68P7ZjqXFm4zPWf5RsAVabzbECUWYFB2VyUnnv8XgMI,86
|
|
599
|
+
tccli_intl_en-3.0.1276.1.dist-info/top_level.txt,sha256=gYFrQRE3IqZ_46Syp-vkVwwvNaYEtKcM4fE_C4Puomk,6
|
|
600
|
+
tccli_intl_en-3.0.1276.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|