tccli-intl-en 3.1.8.1__py2.py3-none-any.whl → 3.1.13.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/__init__.py +6 -0
- tccli/services/ai3d/__init__.py +4 -0
- tccli/services/ai3d/ai3d_client.py +266 -0
- tccli/services/ai3d/v20250513/api.json +264 -0
- tccli/services/ai3d/v20250513/examples.json +20 -0
- tccli/services/cvm/v20170312/api.json +3 -3
- tccli/services/cvm/v20170312/examples.json +31 -31
- tccli/services/faceid/v20180301/api.json +2 -2
- tccli/services/hunyuan/__init__.py +4 -0
- tccli/services/hunyuan/hunyuan_client.py +266 -0
- tccli/services/hunyuan/v20230901/api.json +270 -0
- tccli/services/hunyuan/v20230901/examples.json +20 -0
- tccli/services/mdl/mdl_client.py +192 -24
- tccli/services/mdl/v20200326/api.json +418 -5
- tccli/services/mdl/v20200326/examples.json +24 -0
- tccli/services/monitor/v20180724/api.json +3 -3
- tccli/services/mps/mps_client.py +56 -0
- tccli/services/mps/v20190612/api.json +208 -9
- tccli/services/mps/v20190612/examples.json +36 -22
- tccli/services/teo/teo_client.py +225 -57
- tccli/services/teo/v20220901/api.json +251 -7
- tccli/services/teo/v20220901/examples.json +36 -0
- {tccli_intl_en-3.1.8.1.dist-info → tccli_intl_en-3.1.13.1.dist-info}/METADATA +2 -2
- {tccli_intl_en-3.1.8.1.dist-info → tccli_intl_en-3.1.13.1.dist-info}/RECORD +29 -21
- {tccli_intl_en-3.1.8.1.dist-info → tccli_intl_en-3.1.13.1.dist-info}/LICENSE +0 -0
- {tccli_intl_en-3.1.8.1.dist-info → tccli_intl_en-3.1.13.1.dist-info}/WHEEL +0 -0
- {tccli_intl_en-3.1.8.1.dist-info → tccli_intl_en-3.1.13.1.dist-info}/entry_points.txt +0 -0
- {tccli_intl_en-3.1.8.1.dist-info → tccli_intl_en-3.1.13.1.dist-info}/top_level.txt +0 -0
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"actions": {
|
|
3
|
+
"ApplyFreeCertificate": {
|
|
4
|
+
"document": "This API is used to apply for a free certificate. If you need to proceed with DNS delegated verification or file verification, you can call this API to initiate the certificate application and obtain the corresponding verification content based on the application method. The order for API calls is as follows:.\nStep 1: Call ApplyFreeCertificate, specify the verification method for free certificate application, and obtain the verification content.\nStep 2: Configure the corresponding domain as verification content.\nStep 3: Call CheckFreeCertificateVerification to verify. After verification passes, the free certificate application is completed.\nStep 4: Call ModifyHostsCertificate to issue a domain certificate configured to use the EdgeOne free certificate.\n\nThe application method introduction in the document: [Free Certificate Application Description](https://www.tencentcloud.comom/document/product/1552/90437?from_cn_redirect=1). \ndescription:.\n- Only CNAME access mode can call this API to specify the free certificate application method. NS/DNSPod hosting access modes use automatic validation to apply for free certificates with no need to call this API.\n- If you need to switch the free certificate authentication method, you can call this API again by changing the VerificationMethod field to update it.\n- A domain name can only apply for one free certificate. After calling this API, the backend will trigger the free certificate application task. You need to complete the domain name verification info configuration within 2 days, then finish certificate authentication.",
|
|
5
|
+
"input": "ApplyFreeCertificateRequest",
|
|
6
|
+
"name": "Applies for a free certificate",
|
|
7
|
+
"output": "ApplyFreeCertificateResponse",
|
|
8
|
+
"status": "online"
|
|
9
|
+
},
|
|
3
10
|
"BindSecurityTemplateToEntity": {
|
|
4
11
|
"document": "This API is used to bind/unbind a domain name to/from a specific policy template. ",
|
|
5
12
|
"input": "BindSecurityTemplateToEntityRequest",
|
|
@@ -28,6 +35,13 @@
|
|
|
28
35
|
"output": "CheckCnameStatusResponse",
|
|
29
36
|
"status": "online"
|
|
30
37
|
},
|
|
38
|
+
"CheckFreeCertificateVerification": {
|
|
39
|
+
"document": "This API is used to verify a free certificate and obtain the application result. If verified, you can query the free certificate information for the corresponding domain name application through this API. If failed to apply, this API will return the corresponding verification failure message.\nThis API is used to check the free certificate application result after triggering the [ApplyFreeCertificate](https://www.tencentcloud.comom/document/product/1552/124807?from_cn_redirect=1) . Once the application is successful, you need to configure through the [ModifyHostsCertificate](https://www.tencentcloud.comom/document/product/1552/80764?from_cn_redirect=1) to deploy the free certificate to the acceleration domain.",
|
|
40
|
+
"input": "CheckFreeCertificateVerificationRequest",
|
|
41
|
+
"name": "Check free certificate application result",
|
|
42
|
+
"output": "CheckFreeCertificateVerificationResponse",
|
|
43
|
+
"status": "online"
|
|
44
|
+
},
|
|
31
45
|
"ConfirmMultiPathGatewayOriginACL": {
|
|
32
46
|
"document": "This API is used to confirm the latest origin IP range is updated to the origin server firewall when the multi-channel security acceleration gateway's origin IP range changes.",
|
|
33
47
|
"input": "ConfirmMultiPathGatewayOriginACLRequest",
|
|
@@ -889,6 +903,13 @@
|
|
|
889
903
|
"output": "DescribeTimingL7CacheDataResponse",
|
|
890
904
|
"status": "online"
|
|
891
905
|
},
|
|
906
|
+
"DescribeTimingL7OriginPullData": {
|
|
907
|
+
"document": "This API is used to query time series data for layer-7 domain services' origin-pull data.",
|
|
908
|
+
"input": "DescribeTimingL7OriginPullDataRequest",
|
|
909
|
+
"name": "Query origin time series data",
|
|
910
|
+
"output": "DescribeTimingL7OriginPullDataResponse",
|
|
911
|
+
"status": "online"
|
|
912
|
+
},
|
|
892
913
|
"DescribeTopL7AnalysisData": {
|
|
893
914
|
"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`.",
|
|
894
915
|
"input": "DescribeTopL7AnalysisDataRequest",
|
|
@@ -2860,6 +2881,71 @@
|
|
|
2860
2881
|
],
|
|
2861
2882
|
"usage": "both"
|
|
2862
2883
|
},
|
|
2884
|
+
"ApplyFreeCertificateRequest": {
|
|
2885
|
+
"document": "ApplyFreeCertificate request structure.",
|
|
2886
|
+
"members": [
|
|
2887
|
+
{
|
|
2888
|
+
"disabled": false,
|
|
2889
|
+
"document": "Site ID.",
|
|
2890
|
+
"example": "zone-343vqcswn9zj",
|
|
2891
|
+
"member": "string",
|
|
2892
|
+
"name": "ZoneId",
|
|
2893
|
+
"required": true,
|
|
2894
|
+
"type": "string"
|
|
2895
|
+
},
|
|
2896
|
+
{
|
|
2897
|
+
"disabled": false,
|
|
2898
|
+
"document": "Specifies the target domain name for free certificate application.",
|
|
2899
|
+
"example": "www.test.com",
|
|
2900
|
+
"member": "string",
|
|
2901
|
+
"name": "Domain",
|
|
2902
|
+
"required": true,
|
|
2903
|
+
"type": "string"
|
|
2904
|
+
},
|
|
2905
|
+
{
|
|
2906
|
+
"disabled": false,
|
|
2907
|
+
"document": "Specifies the verification method for applying for a free certificate. for detailed verification methods, refer to the [free certificate application documentation](https://www.tencentcloud.comom/document/product/1552/90437?from_cn_redirect=1). valid values:.\n<li>http_challenge: specifies the file validation mode for http access. verifies by getting file information from the specified URL of the access domain to complete free certificate application.</li>\n<li>dns_challenge: specifies the dns delegation verification method. verifies the free certificate application by adding the designated host record pointing to EdgeOne.</li>\n\nNote: after triggering this api, you need to complete the verification content configuration based on the returned verification information. once configured, you must also verify by calling the <a href = 'https://www.tencentcloud.comom/document/product/1552/124806?from_cn_redirect=1'>check free certificate application result</a> api. after verification passes, the application succeeds. once the application is successful, you can call the <a href = 'https://www.tencentcloud.comom/document/product/1552/80764?from_cn_redirect=1'>configure domain name certificate</a> API to deploy a free certificate for the current domain name.",
|
|
2908
|
+
"example": "http_challenge",
|
|
2909
|
+
"member": "string",
|
|
2910
|
+
"name": "VerificationMethod",
|
|
2911
|
+
"required": true,
|
|
2912
|
+
"type": "string"
|
|
2913
|
+
}
|
|
2914
|
+
],
|
|
2915
|
+
"type": "object"
|
|
2916
|
+
},
|
|
2917
|
+
"ApplyFreeCertificateResponse": {
|
|
2918
|
+
"document": "ApplyFreeCertificate response structure.",
|
|
2919
|
+
"members": [
|
|
2920
|
+
{
|
|
2921
|
+
"disabled": false,
|
|
2922
|
+
"document": "Specifies the verification information for free certificate application when VerificationMethod is dns_challenge.",
|
|
2923
|
+
"example": "无",
|
|
2924
|
+
"member": "DnsVerification",
|
|
2925
|
+
"name": "DnsVerification",
|
|
2926
|
+
"output_required": false,
|
|
2927
|
+
"type": "object",
|
|
2928
|
+
"value_allowed_null": false
|
|
2929
|
+
},
|
|
2930
|
+
{
|
|
2931
|
+
"disabled": false,
|
|
2932
|
+
"document": "Specifies the verification information related to the free certificate application for the domain name when VerificationMethod is http_challenge.",
|
|
2933
|
+
"example": "无",
|
|
2934
|
+
"member": "FileVerification",
|
|
2935
|
+
"name": "FileVerification",
|
|
2936
|
+
"output_required": false,
|
|
2937
|
+
"type": "object",
|
|
2938
|
+
"value_allowed_null": false
|
|
2939
|
+
},
|
|
2940
|
+
{
|
|
2941
|
+
"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.",
|
|
2942
|
+
"member": "string",
|
|
2943
|
+
"name": "RequestId",
|
|
2944
|
+
"type": "string"
|
|
2945
|
+
}
|
|
2946
|
+
],
|
|
2947
|
+
"type": "object"
|
|
2948
|
+
},
|
|
2863
2949
|
"AscriptionInfo": {
|
|
2864
2950
|
"document": "The site ownership information",
|
|
2865
2951
|
"members": [
|
|
@@ -4534,6 +4620,72 @@
|
|
|
4534
4620
|
],
|
|
4535
4621
|
"type": "object"
|
|
4536
4622
|
},
|
|
4623
|
+
"CheckFreeCertificateVerificationRequest": {
|
|
4624
|
+
"document": "CheckFreeCertificateVerification request structure.",
|
|
4625
|
+
"members": [
|
|
4626
|
+
{
|
|
4627
|
+
"disabled": false,
|
|
4628
|
+
"document": "Zone ID.",
|
|
4629
|
+
"example": "zone-28v607hq8d3m",
|
|
4630
|
+
"member": "string",
|
|
4631
|
+
"name": "ZoneId",
|
|
4632
|
+
"required": true,
|
|
4633
|
+
"type": "string"
|
|
4634
|
+
},
|
|
4635
|
+
{
|
|
4636
|
+
"disabled": false,
|
|
4637
|
+
"document": "Acceleration domain name, that domain name used when [applying for free certificate](https://www.tencentcloud.comom/document/product/1552/124807?from_cn_redirect=1).",
|
|
4638
|
+
"example": "qq.com",
|
|
4639
|
+
"member": "string",
|
|
4640
|
+
"name": "Domain",
|
|
4641
|
+
"required": true,
|
|
4642
|
+
"type": "string"
|
|
4643
|
+
}
|
|
4644
|
+
],
|
|
4645
|
+
"type": "object"
|
|
4646
|
+
},
|
|
4647
|
+
"CheckFreeCertificateVerificationResponse": {
|
|
4648
|
+
"document": "CheckFreeCertificateVerification response structure.",
|
|
4649
|
+
"members": [
|
|
4650
|
+
{
|
|
4651
|
+
"disabled": false,
|
|
4652
|
+
"document": "Specifies the domain name to which the certificate is issued when the free certificate application succeeds.\nNote: only one free certificate can be applied for a domain name. if a wildcard certificate has been applied for the domain name, its subdomains will use the wildcard certificate.",
|
|
4653
|
+
"example": "aa.test.com",
|
|
4654
|
+
"member": "string",
|
|
4655
|
+
"name": "CommonName",
|
|
4656
|
+
"output_required": true,
|
|
4657
|
+
"type": "string",
|
|
4658
|
+
"value_allowed_null": false
|
|
4659
|
+
},
|
|
4660
|
+
{
|
|
4661
|
+
"disabled": false,
|
|
4662
|
+
"document": "Specifies the signature algorithm used by the certificate when the free certificate application succeeds. currently only support RSA 2048.",
|
|
4663
|
+
"example": "RSA 2048",
|
|
4664
|
+
"member": "string",
|
|
4665
|
+
"name": "SignatureAlgorithm",
|
|
4666
|
+
"output_required": true,
|
|
4667
|
+
"type": "string",
|
|
4668
|
+
"value_allowed_null": false
|
|
4669
|
+
},
|
|
4670
|
+
{
|
|
4671
|
+
"disabled": false,
|
|
4672
|
+
"document": "Expiration time of the certificate when the free certificate application is successful. the time is in coordinated universal time (UTC), following the ISO 8601 standard date and time format.",
|
|
4673
|
+
"example": "2014-08-03T12:00:00+08:00",
|
|
4674
|
+
"member": "datetime_iso",
|
|
4675
|
+
"name": "ExpireTime",
|
|
4676
|
+
"output_required": true,
|
|
4677
|
+
"type": "string",
|
|
4678
|
+
"value_allowed_null": false
|
|
4679
|
+
},
|
|
4680
|
+
{
|
|
4681
|
+
"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.",
|
|
4682
|
+
"member": "string",
|
|
4683
|
+
"name": "RequestId",
|
|
4684
|
+
"type": "string"
|
|
4685
|
+
}
|
|
4686
|
+
],
|
|
4687
|
+
"type": "object"
|
|
4688
|
+
},
|
|
4537
4689
|
"CheckRegionHealthStatus": {
|
|
4538
4690
|
"document": "Health status of origin servers in each health check region.",
|
|
4539
4691
|
"members": [
|
|
@@ -13816,6 +13968,98 @@
|
|
|
13816
13968
|
],
|
|
13817
13969
|
"type": "object"
|
|
13818
13970
|
},
|
|
13971
|
+
"DescribeTimingL7OriginPullDataRequest": {
|
|
13972
|
+
"document": "DescribeTimingL7OriginPullData request structure.",
|
|
13973
|
+
"members": [
|
|
13974
|
+
{
|
|
13975
|
+
"disabled": false,
|
|
13976
|
+
"document": "Start time.",
|
|
13977
|
+
"example": "2020-04-29T00:00:00Z",
|
|
13978
|
+
"member": "datetime_iso",
|
|
13979
|
+
"name": "StartTime",
|
|
13980
|
+
"required": true,
|
|
13981
|
+
"type": "string"
|
|
13982
|
+
},
|
|
13983
|
+
{
|
|
13984
|
+
"disabled": false,
|
|
13985
|
+
"document": "End time. The query time range (`EndTime` - `StartTime`) must be less than or equal to 31 days.",
|
|
13986
|
+
"example": "2020-04-30T00:00:00Z",
|
|
13987
|
+
"member": "datetime_iso",
|
|
13988
|
+
"name": "EndTime",
|
|
13989
|
+
"required": true,
|
|
13990
|
+
"type": "string"
|
|
13991
|
+
},
|
|
13992
|
+
{
|
|
13993
|
+
"disabled": false,
|
|
13994
|
+
"document": "Metric list. Valid values:.\n<li>l7Flow_outFlux_hy: specifies the request traffic from the EdgeOne node to the origin server. Unit: byte.</li>\n<li>l7Flow_outBandwidth_hy: specifies the request bandwidth from EdgeOne node to origin server. Unit: bps.</li>\n<li>l7Flow_request_hy: specifies the request count from EdgeOne node to origin server. Unit: times.</li>\n<li>l7Flow_inFlux_hy: specifies the response traffic from the origin server to the EdgeOne node. Unit: byte.</li>\n<li>l7Flow_inBandwidth_hy: specifies the response bandwidth from the origin server to the EdgeOne node. Unit: bps.</li>\n",
|
|
13995
|
+
"example": "[\"l7Flow_outFlux_hy\"]",
|
|
13996
|
+
"member": "string",
|
|
13997
|
+
"name": "MetricNames",
|
|
13998
|
+
"required": true,
|
|
13999
|
+
"type": "list"
|
|
14000
|
+
},
|
|
14001
|
+
{
|
|
14002
|
+
"disabled": false,
|
|
14003
|
+
"document": "Site ID set. This parameter is required. A maximum of 100 zone-ids can be imported. Use `*` to query data for all sites under the Tencent Cloud root account. Querying account-level data requires permissions for all site resources in this interface.",
|
|
14004
|
+
"example": "[\"*\"]",
|
|
14005
|
+
"member": "string",
|
|
14006
|
+
"name": "ZoneIds",
|
|
14007
|
+
"required": true,
|
|
14008
|
+
"type": "list"
|
|
14009
|
+
},
|
|
14010
|
+
{
|
|
14011
|
+
"disabled": false,
|
|
14012
|
+
"document": "Time granularity of the query. Valid values:\n<Li>min: 1 minute.</li><Li>5min: 5 minutes;</li><Li>hour: 1 hour;</li><li>day: 1 day.</li>If this parameter is not input, the granularity will be automatically calculated based on the interval between the start time and end time. Specifically, data will be queried with a granularity of min, 5min, hour, and day respectively when the period is no more than 2 hours, no more than 2 days, no more than 7 days, and over 7 days.",
|
|
14013
|
+
"example": "hour",
|
|
14014
|
+
"member": "string",
|
|
14015
|
+
"name": "Interval",
|
|
14016
|
+
"required": false,
|
|
14017
|
+
"type": "string"
|
|
14018
|
+
},
|
|
14019
|
+
{
|
|
14020
|
+
"disabled": false,
|
|
14021
|
+
"document": "Filter conditions. Details:\n<li>domain: specifies the domain name in client requests. When the domain is onboarded via a wildcard, the recorded value is the wildcard domain itself, not the specific subdomain.</li>",
|
|
14022
|
+
"example": "无",
|
|
14023
|
+
"member": "QueryCondition",
|
|
14024
|
+
"name": "Filters",
|
|
14025
|
+
"required": false,
|
|
14026
|
+
"type": "list"
|
|
14027
|
+
}
|
|
14028
|
+
],
|
|
14029
|
+
"type": "object"
|
|
14030
|
+
},
|
|
14031
|
+
"DescribeTimingL7OriginPullDataResponse": {
|
|
14032
|
+
"document": "DescribeTimingL7OriginPullData response structure.",
|
|
14033
|
+
"members": [
|
|
14034
|
+
{
|
|
14035
|
+
"disabled": false,
|
|
14036
|
+
"document": "Total number of entries in the query result.",
|
|
14037
|
+
"example": "20",
|
|
14038
|
+
"member": "uint64",
|
|
14039
|
+
"name": "TotalCount",
|
|
14040
|
+
"output_required": true,
|
|
14041
|
+
"type": "int",
|
|
14042
|
+
"value_allowed_null": false
|
|
14043
|
+
},
|
|
14044
|
+
{
|
|
14045
|
+
"disabled": false,
|
|
14046
|
+
"document": "Time series data list for origin-pull data.",
|
|
14047
|
+
"example": "无",
|
|
14048
|
+
"member": "TimingDataRecord",
|
|
14049
|
+
"name": "TimingDataRecords",
|
|
14050
|
+
"output_required": true,
|
|
14051
|
+
"type": "list",
|
|
14052
|
+
"value_allowed_null": false
|
|
14053
|
+
},
|
|
14054
|
+
{
|
|
14055
|
+
"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.",
|
|
14056
|
+
"member": "string",
|
|
14057
|
+
"name": "RequestId",
|
|
14058
|
+
"type": "string"
|
|
14059
|
+
}
|
|
14060
|
+
],
|
|
14061
|
+
"type": "object"
|
|
14062
|
+
},
|
|
13819
14063
|
"DescribeTopL7AnalysisDataRequest": {
|
|
13820
14064
|
"document": "DescribeTopL7AnalysisData request structure.",
|
|
13821
14065
|
"members": [
|
|
@@ -13839,7 +14083,7 @@
|
|
|
13839
14083
|
},
|
|
13840
14084
|
{
|
|
13841
14085
|
"disabled": false,
|
|
13842
|
-
"document": "Queried metric.
|
|
14086
|
+
"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_referers: 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>",
|
|
13843
14087
|
"example": "l7Flow_outFlux_country",
|
|
13844
14088
|
"member": "string",
|
|
13845
14089
|
"name": "MetricName",
|
|
@@ -13852,7 +14096,7 @@
|
|
|
13852
14096
|
"example": "[\"*\"]",
|
|
13853
14097
|
"member": "string",
|
|
13854
14098
|
"name": "ZoneIds",
|
|
13855
|
-
"required":
|
|
14099
|
+
"required": true,
|
|
13856
14100
|
"type": "list"
|
|
13857
14101
|
},
|
|
13858
14102
|
{
|
|
@@ -14977,7 +15221,7 @@
|
|
|
14977
15221
|
"usage": "both"
|
|
14978
15222
|
},
|
|
14979
15223
|
"DnsVerification": {
|
|
14980
|
-
"document": "",
|
|
15224
|
+
"document": "Information required for DNS resolution verification when applying for a free certificate in CNAME mode integration to verify ownership of a site or domain name.",
|
|
14981
15225
|
"members": [
|
|
14982
15226
|
{
|
|
14983
15227
|
"disabled": false,
|
|
@@ -16010,11 +16254,11 @@
|
|
|
16010
16254
|
"usage": "out"
|
|
16011
16255
|
},
|
|
16012
16256
|
"FileVerification": {
|
|
16013
|
-
"document": "Information required for
|
|
16257
|
+
"document": "Information required for HTTP access verification file when applying for a free certificate in CNAME mode integration to verify ownership of a site or domain name.",
|
|
16014
16258
|
"members": [
|
|
16015
16259
|
{
|
|
16016
16260
|
"disabled": false,
|
|
16017
|
-
"document": "EdgeOne
|
|
16261
|
+
"document": "EdgeOne backend server will get file verification information via http://{Host}{URL Path} (for example http://www.example.com/.well-known/teo-verification/z12h416twn.txt). among them, this field specifies the URL Path part you need to create, and Host indicates the current accelerated domain.",
|
|
16018
16262
|
"example": "/.well-known/teo-verification/z12h416twn.txt",
|
|
16019
16263
|
"member": "string",
|
|
16020
16264
|
"name": "Path",
|
|
@@ -19905,7 +20149,7 @@
|
|
|
19905
20149
|
},
|
|
19906
20150
|
{
|
|
19907
20151
|
"disabled": false,
|
|
19908
|
-
"document": "
|
|
20152
|
+
"document": "Configures the server certificate mode. valid values:.\n\n- disable: without configuring server certificate.\n- eofreecert: specifies to apply for a free certificate through automatic validation and deploy it. for verification methods, see [free certificate application supported verification methods](https://www.tencentcloud.comom/document/product/1552/90437?from_cn_redirect=1).\n - In ns or DNSPod hosting access mode, free certificates can only be applied for via automatic validation.\n - When a free certificate application fails, it can cause deployment failure. you can obtain the failure reason through the <a href = 'https://www.tencentcloud.comom/document/product/1552/124806?from_cn_redirect=1)'>check free certificate application result</a> .\n- eofreecert_manual: specifies the deployment of free certificates applied through DNS delegation verification or file verification. before deploying a free certificate, you need to trigger the [apply for free certificate](https://www.tencentcloud.comom/document/product/1552/124807?from_cn_redirect=1)) api to apply for a free certificate. once the application is successful, you can use this enumeration value to deploy the free certificate.\nNote: when deploying a free certificate, ensure a successful application for a free certificate already exists. you can check whether a successful application for a free certificate already exists through the <a href = 'https://www.tencentcloud.comom/document/product/1552/124806?from_cn_redirect=1)'>check free certificate application result</a> api.\n- sslcert: specifies the configuration of the managed service side certificate.",
|
|
19909
20153
|
"example": "eofreecert",
|
|
19910
20154
|
"member": "string",
|
|
19911
20155
|
"name": "Mode",
|
|
@@ -19941,7 +20185,7 @@
|
|
|
19941
20185
|
},
|
|
19942
20186
|
{
|
|
19943
20187
|
"disabled": false,
|
|
19944
|
-
"document": "
|
|
20188
|
+
"document": "Specifies the certificate carried during EO node origin-pull for origin-pull mutual authentication handshake, off by default. leave blank to indicate retaining the original configuration. this configuration is currently in closed beta testing for the allowlist feature. if you need to use it, please contact us (https://www.tencentcloud.comom/online?from_cn_redirect=1-service).",
|
|
19945
20189
|
"example": "无",
|
|
19946
20190
|
"member": "UpstreamCertInfo",
|
|
19947
20191
|
"name": "UpstreamCertInfo",
|
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"actions": {
|
|
3
|
+
"ApplyFreeCertificate": [
|
|
4
|
+
{
|
|
5
|
+
"document": "This example shows you how to apply for a free certificate using file validation mode with HTTP access for the domain name (abc.test.com) under the site (ZoneId is zone-2fgd17m17xw).",
|
|
6
|
+
"input": "POST / HTTP/1.1\nHost: teo.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ApplyFreeCertificate\n<Common request parameters>\n\n{\n \"ZoneId\": \"zone-2fgd17m17xw\",\n \"Domain\": \"abc.test.com\",\n \"VerificationMethod\": \"http_challenge\"\n}",
|
|
7
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"064a8c04-2d3e-4c9d-9473-39a8f76276ea\",\n \"FileVerification\": {\n \"Content\": \"9i8vhsvt9y8y3sx1s2d\",\n \"Path\": \"/.well-known/teo-verification/yvnu7sesms\"\n }\n }\n}",
|
|
8
|
+
"title": "Applying for Free Certificate Using HTTP Access File Validation Mode"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"document": "This example shows you how to apply for a free certificate using the DNS delegated verification method for the domain name (qwe.test.com) under the site (ZoneId is zone-2fgd17m17xw).",
|
|
12
|
+
"input": "POST / HTTP/1.1\nHost: teo.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ApplyFreeCertificate\n<Common request parameters>\n\n{\n \"ZoneId\": \"zone-2fgd17m17xw\",\n \"Domain\": \"qwe.test.com\",\n \"VerificationMethod\": \"dns_challenge\"\n}",
|
|
13
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"064a8c04-2d3e-4c9d-9473-39a8f76276ea\",\n \"DnsVerification\": {\n \"RecordType\": \"CNAME\",\n \"RecordValue\": \"_acme-challenge\",\n \"Subdomain\": \"www.example.com.edgeone.com\"\n }\n }\n}",
|
|
14
|
+
"title": "Applying for a Free Certificate Using DNS Delegation Verification Method"
|
|
15
|
+
}
|
|
16
|
+
],
|
|
3
17
|
"BindSecurityTemplateToEntity": [
|
|
4
18
|
{
|
|
5
19
|
"document": "In this example, we unbind the domain name `a.test.com` from the policy template `temp-cuwg1hki` of the site `zone-2aq0e8rhu6jx`. Only one domain name can be unbound at one time. There are two options: \n1. `unbind-keep-policy`: Unbind the domain name from the specified policy and create a new policy for the domain name with the same configuration as the original one. This takes additional rule quota.\n2. `unbind-use-default`: Unbind the domain name from the specified policy and then bind it with the default policy with default configurations. Custom rules no longer take effect.\n\n \n\nNote: To use `unbind-keep-policy`, make sure your rule quota is enough. If the remaining quota is insufficient, the unbinding fails and the domain name remains bound to the current policy template.",
|
|
@@ -44,6 +58,20 @@
|
|
|
44
58
|
"title": "Querying the CNAME status of a domain name"
|
|
45
59
|
}
|
|
46
60
|
],
|
|
61
|
+
"CheckFreeCertificateVerification": [
|
|
62
|
+
{
|
|
63
|
+
"document": "This example shows you how to check whether the free certificate application succeeds for the domain name (cc.xzone.cloud) under the site (ZoneId is zone-28v607hq8d3m) after triggering the application.",
|
|
64
|
+
"input": "POST / HTTP/1.1\nHost: teo.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CheckFreeCertificateVerification\n<Common request parameters>\n\n{\n \"ZoneId\": \"zone-28v607hq8d3m\",\n \"Domain\": \"cc.xzone.cloud\"\n}",
|
|
65
|
+
"output": "{\n \"Response\": {\n \"Error\": {\n \"Code\": \"ResourceUnavailable.RecordUnExpected\",\n \"Message\": \"Unable to detect the verification value correctly. Please check whether the current domain name has configured regional resolution or policy interception.\"\n },\n \"RequestId\": \"ed93f3cb-f35e-473f-b9f3-0d451b8b79c6\"\n }\n}",
|
|
66
|
+
"title": "Checking Free Certificate Application Result, Free Certificate Application Failed"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"document": "This example shows you how to check whether the free certificate application succeeds for the domain name (aa.xzone.cloud) under the site (ZoneId zone-28v607hq8d3m) after triggering the free certificate application.",
|
|
70
|
+
"input": "POST / HTTP/1.1\nHost: teo.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CheckFreeCertificateVerification\n<Common request parameters>\n\n{\n \"ZoneId\": \"zone-28v607hq8d3m\",\n \"Domain\": \"aa.xzone.cloud\"\n}",
|
|
71
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"dc1ba58b-4e4e-4a71-bed6-2b777c48d17e\",\n \"CommonName\": \"aa.xzone.cloud\",\n \"SignatureAlgorithm\": \"RSA 2048\",\n \"ExpireTime\": \"2025-07-31T07:06:57Z\"\n }\n}",
|
|
72
|
+
"title": "Checking Free Certificate Application Result, Free Certificate Application Succeeds"
|
|
73
|
+
}
|
|
74
|
+
],
|
|
47
75
|
"ConfirmMultiPathGatewayOriginACL": [
|
|
48
76
|
{
|
|
49
77
|
"document": "This example shows you how to confirm the instance with ZoneId 'zone-27q0p0bal192' and GatewayId 'mpgw-lbxuhk1oh' has updated the latest origin server IP range to the origin server firewall.",
|
|
@@ -1280,6 +1308,14 @@
|
|
|
1280
1308
|
"title": "Querying the Time Series Traffic Data by Specified Status Code"
|
|
1281
1309
|
}
|
|
1282
1310
|
],
|
|
1311
|
+
"DescribeTimingL7OriginPullData": [
|
|
1312
|
+
{
|
|
1313
|
+
"document": "This example shows you how to query the number of origin-pull requests for layer-7 domain services under specified site ID zone-2ntf1u8utpmz from 2025-07-01 00:00:00 to 2025-07-15 00:00:00 with a query time granularity of day.",
|
|
1314
|
+
"input": "POST / HTTP/1.1\nHost: teo.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeTimingL7OriginPullData\n<Common request parameters>\n\n{\n \"StartTime\": \"2025-07-01T00:00:00+08:00\",\n \"EndTime\": \"2025-07-15T00:00:00+08:00\",\n \"Interval\": \"day\",\n \"MetricNames\": [\n \"l7Flow_request_hy\"\n ],\n \"ZoneIds\": [\n \"zone-2ntf1u8utpmz\"\n ]\n}",
|
|
1315
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"7cc73e86-092b-4aa2-b28a-c9c338834926\",\n \"TimingDataRecords\": [\n {\n \"TypeKey\": \"251008840\",\n \"TypeValue\": [\n {\n \"Avg\": 1714316,\n \"Detail\": [\n {\n \"Timestamp\": 1751299200,\n \"Value\": 0\n },\n {\n \"Timestamp\": 1751385600,\n \"Value\": 0\n },\n {\n \"Timestamp\": 1751472000,\n \"Value\": 1471972\n },\n {\n \"Timestamp\": 1751558400,\n \"Value\": 2824464\n },\n {\n \"Timestamp\": 1751644800,\n \"Value\": 2815290\n },\n {\n \"Timestamp\": 1751731200,\n \"Value\": 2814852\n },\n {\n \"Timestamp\": 1751817600,\n \"Value\": 2815244\n },\n {\n \"Timestamp\": 1751904000,\n \"Value\": 11147558\n },\n {\n \"Timestamp\": 1751990400,\n \"Value\": 6\n },\n {\n \"Timestamp\": 1752076800,\n \"Value\": 0\n },\n {\n \"Timestamp\": 1752163200,\n \"Value\": 0\n },\n {\n \"Timestamp\": 1752249600,\n \"Value\": 0\n },\n {\n \"Timestamp\": 1752336000,\n \"Value\": 0\n },\n {\n \"Timestamp\": 1752422400,\n \"Value\": 111050\n }\n ],\n \"Max\": 11147558,\n \"MetricName\": \"l7Flow_request_hy\",\n \"Sum\": 24000436\n }\n ]\n }\n ],\n \"TotalCount\": 1\n }\n}",
|
|
1316
|
+
"title": "Querying Time Series Data for Origin Analysis"
|
|
1317
|
+
}
|
|
1318
|
+
],
|
|
1283
1319
|
"DescribeTopL7AnalysisData": [
|
|
1284
1320
|
{
|
|
1285
1321
|
"document": "This example shows you how to query the traffic data of the top URL path under a specific HTTP protocol version (HTTP/1.0 or HTTP/1.1).",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tccli-intl-en
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.13.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
|
|
@@ -21,7 +21,7 @@ Classifier: Programming Language :: Python :: 3.4
|
|
|
21
21
|
Classifier: Programming Language :: Python :: 3.5
|
|
22
22
|
Classifier: Programming Language :: Python :: 3.6
|
|
23
23
|
License-File: LICENSE
|
|
24
|
-
Requires-Dist: tencentcloud-sdk-python-intl-en >=3.1.
|
|
24
|
+
Requires-Dist: tencentcloud-sdk-python-intl-en >=3.1.13
|
|
25
25
|
Requires-Dist: jmespath ==0.10.0
|
|
26
26
|
Requires-Dist: six ==1.16.0
|
|
27
27
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tccli/__init__.py,sha256=
|
|
1
|
+
tccli/__init__.py,sha256=SMMNthKdmy4LfbNugUKvnlzTRXHC0Ub2cJgSFJz2yEc,26
|
|
2
2
|
tccli/argparser.py,sha256=WtfpBhj2R6JHSzagy6w6Q4y3YVmyIC_yK80w3tqBPgU,5589
|
|
3
3
|
tccli/argument.py,sha256=_ictuLaeci9t9bvWGZ1QcpMLMztqKkpVH7UyiUwOc-g,8092
|
|
4
4
|
tccli/base_command.py,sha256=rFWNAwfS0GA6LLGNOM-iPI0RV81Jag5cZn536ZQN0pw,2859
|
|
@@ -49,11 +49,15 @@ tccli/plugins/sso/terminal.py,sha256=niX5xr6avR32NDIWGrXjuhJ-Y9OiBWW45RmxWxwXT6I
|
|
|
49
49
|
tccli/plugins/sso/texts.py,sha256=N5bt3WXMk9oKWHFsuIG7jVVejdUi5Mzi8wsrhWX3t1s,2234
|
|
50
50
|
tccli/plugins/test/__init__.py,sha256=ed14rjeb4-Sf_uttli4x3gRl27FT2-NHPtQxRcdwE3o,2712
|
|
51
51
|
tccli/plugins/test/add.py,sha256=L8EcHizXbEb8NiH1C-Giu9RPHRxe9rxGBDziaaFa1LE,1016
|
|
52
|
-
tccli/services/__init__.py,sha256=
|
|
52
|
+
tccli/services/__init__.py,sha256=w8ijzCrm_a9ILtxe_SMsty2qRuB9yNleOgHQEueZZrk,6589
|
|
53
53
|
tccli/services/advisor/__init__.py,sha256=94YMESuc98jtnMMx_zO-vxCDjIdVjLy_KTCcG7nvOVo,93
|
|
54
54
|
tccli/services/advisor/advisor_client.py,sha256=7JK2u7jsJ3S-uQlWNKDS_dLcsQTN8Z-Evon8UUeLwSc,12388
|
|
55
55
|
tccli/services/advisor/v20200721/api.json,sha256=WrgEe_7e5-wVC7N4iftxYIMkrwdDL8EmIQli8sMryGo,15295
|
|
56
56
|
tccli/services/advisor/v20200721/examples.json,sha256=S2jiK5fV6mwaTTyP6RefHW4M7PsjuBQDbNUySBDDq9E,5339
|
|
57
|
+
tccli/services/ai3d/__init__.py,sha256=ker6RRKhtPgG1ph1cz2Fl979b0bbAC_xevKpaxyR6uk,87
|
|
58
|
+
tccli/services/ai3d/ai3d_client.py,sha256=JThy_NyUP6Bzk562a3C9ukWuvj_fxSv6BRNYoIyPTV4,12371
|
|
59
|
+
tccli/services/ai3d/v20250513/api.json,sha256=h9n3eg_D8_9dTRHYUyHXphYxgVvIWnoUg53kliIsxAA,10638
|
|
60
|
+
tccli/services/ai3d/v20250513/examples.json,sha256=KKK0qIv9L6yyqTwQ0p2gr6HfgH1Bzzd_GZhFVykbHsM,1398
|
|
57
61
|
tccli/services/aiart/__init__.py,sha256=Y-fYvm53hvADUxzlHVPLGQM3P-5cZMqfaKZ6MrBYYgY,89
|
|
58
62
|
tccli/services/aiart/aiart_client.py,sha256=FggqAll6cAqpDUrrqhuOzWUCaZORXbKhnILoyeKwU18,9205
|
|
59
63
|
tccli/services/aiart/v20221229/api.json,sha256=TqBM1EbIgis8yOfhvQBsNRdnPcARwNkyCAG9q77nx0U,10647
|
|
@@ -198,8 +202,8 @@ tccli/services/ctsdb/v20230202/api.json,sha256=OdVCQn1d5ROlJirmxcGLM2TkLzDH2cunz
|
|
|
198
202
|
tccli/services/ctsdb/v20230202/examples.json,sha256=GB60VeEhL_lUbM6kjgL-9fqXGd7dc1C7TUCK6KRrrV4,3720
|
|
199
203
|
tccli/services/cvm/__init__.py,sha256=TlF7VMjJTb_ELng-8ghL1Zvrmu7MJyuNBU5KLiWrFnw,85
|
|
200
204
|
tccli/services/cvm/cvm_client.py,sha256=AaUfG_inZazAAiUDO9vOknDYWe9F7h8_jaRb9lRoUEQ,268363
|
|
201
|
-
tccli/services/cvm/v20170312/api.json,sha256=
|
|
202
|
-
tccli/services/cvm/v20170312/examples.json,sha256=
|
|
205
|
+
tccli/services/cvm/v20170312/api.json,sha256=h1g7xLXPzkPei_zrNj7LhDbnLUv0hrHEuRr6ayFs13s,489083
|
|
206
|
+
tccli/services/cvm/v20170312/examples.json,sha256=oQ7bqMJ02pd-W24LWuqgROjr52R5IHsHdK7U9SnzBw8,123705
|
|
203
207
|
tccli/services/cwp/__init__.py,sha256=VzfiK7QzpNmTiO4zrmILRFSkKMJka8elLwzYLTjUPFw,85
|
|
204
208
|
tccli/services/cwp/cwp_client.py,sha256=F33EOyd7GPA13BsS3Sghk8txWpGgXi9815SX4rDJaDs,1457621
|
|
205
209
|
tccli/services/cwp/v20180228/api.json,sha256=dl5bSD0_GMwxmOIItlWCGJLcHilwgdV9x096K8Do1Oc,2098126
|
|
@@ -282,7 +286,7 @@ tccli/services/facefusion/v20220927/api.json,sha256=0MmF_KULZYK_agSc1ZZMRhvSjp01
|
|
|
282
286
|
tccli/services/facefusion/v20220927/examples.json,sha256=6qZnFLt6wwaOwAvAUwfwsZc8GUVB76oFf4v7rga8ai8,3496
|
|
283
287
|
tccli/services/faceid/__init__.py,sha256=zbcAvv37wx7NH6hsSFPSCqgR2ih1UiQOdqNfmitdeVY,91
|
|
284
288
|
tccli/services/faceid/faceid_client.py,sha256=COSYRLEK7b-zxNGuRbPSBwtx_aHS0KvT32rwoVGmA4o,65431
|
|
285
|
-
tccli/services/faceid/v20180301/api.json,sha256=
|
|
289
|
+
tccli/services/faceid/v20180301/api.json,sha256=H8w0KuVc-TCbC-8KFx-vxBJQzdYHQyma99YM8Ri3dW8,235523
|
|
286
290
|
tccli/services/faceid/v20180301/examples.json,sha256=jFWNxE7OjDLGc8zStbbdcxfviuzRR6-CsIgpt7poUl4,35131
|
|
287
291
|
tccli/services/gaap/__init__.py,sha256=S_z9yBKvBasiqOewA4ok4_IsMa25mEeOkC-3TCbGn4k,87
|
|
288
292
|
tccli/services/gaap/gaap_client.py,sha256=LmKfJSZ64IHa5MxfMMf-uyIudJTmbIWaPiQEqGrLouY,279965
|
|
@@ -304,6 +308,10 @@ tccli/services/gwlb/__init__.py,sha256=5UFO9IA7lrwdI_GWuXJY4pBVvLRDbfGsHro21s3Tt
|
|
|
304
308
|
tccli/services/gwlb/gwlb_client.py,sha256=P3RUcwThoEQzw6tlYHKMYysoBDTicRPYuZ9TMD1S8zQ,62625
|
|
305
309
|
tccli/services/gwlb/v20240906/api.json,sha256=eWMOb2B0ffm8Mv0Hp8tRTjXiCTXJJOsJS8AmTkLxFAE,65957
|
|
306
310
|
tccli/services/gwlb/v20240906/examples.json,sha256=ZEEkimWbCZpc77XUTmUkwxcNvWsMui5EJ_DV58qXJ7Y,16849
|
|
311
|
+
tccli/services/hunyuan/__init__.py,sha256=ZWaLaByP6wMQSS7nntZKqol4lzuJKslQFdB4Bv3kYwU,93
|
|
312
|
+
tccli/services/hunyuan/hunyuan_client.py,sha256=YoFyAmMgVsjP9LvoPDoVfrqul0kpiQvsXL36DA2BZCE,12398
|
|
313
|
+
tccli/services/hunyuan/v20230901/api.json,sha256=DTyh13qsDsX9dRC4JIEd4V2sT7DI_KMSpXqUstDJ2GI,11273
|
|
314
|
+
tccli/services/hunyuan/v20230901/examples.json,sha256=BkCYOJs-cXwuAc7gYEMsEDlBtIc2GLKMgwIcGOKzz6g,1088
|
|
307
315
|
tccli/services/iai/__init__.py,sha256=pyYHUQUj82fBZdJ7cEUsTpy6VP8aU0siS32k7-3aM9Q,85
|
|
308
316
|
tccli/services/iai/iai_client.py,sha256=JEo6VThmgJvxZnFz3iqbMe65jGUotkJKteIDHHkdbSY,95468
|
|
309
317
|
tccli/services/iai/v20200303/api.json,sha256=y5doZeigG4z4nrbqmVfTID0DyKW1QM7nr4OfTz4VfSY,180386
|
|
@@ -361,9 +369,9 @@ tccli/services/mdc/mdc_client.py,sha256=nqrXwReges89icavvVeJPzWh9t00aYhV3eZsPC2w
|
|
|
361
369
|
tccli/services/mdc/v20200828/api.json,sha256=ytnZrvelUN6WrpmTjWlQOJbsiJtDeTZhk1saopSXqGY,126849
|
|
362
370
|
tccli/services/mdc/v20200828/examples.json,sha256=4KO2ZaXQG3hMmet3Sf5NhfLHvkREDNiRKyyyqkm7OlY,37377
|
|
363
371
|
tccli/services/mdl/__init__.py,sha256=IhqjE774C9EQ-gYNYWtnfO9A4aZi9qxfd5zTey7CFSs,85
|
|
364
|
-
tccli/services/mdl/mdl_client.py,sha256=
|
|
365
|
-
tccli/services/mdl/v20200326/api.json,sha256=
|
|
366
|
-
tccli/services/mdl/v20200326/examples.json,sha256=
|
|
372
|
+
tccli/services/mdl/mdl_client.py,sha256=5lGlfkR2voa6JHEzxBNAnjv7hqjjJXCngwlNP0qexeU,119204
|
|
373
|
+
tccli/services/mdl/v20200326/api.json,sha256=L5mkq2QBcndw-uLBYeU3TFBizcyBnemiReXAN3GUp7Q,273079
|
|
374
|
+
tccli/services/mdl/v20200326/examples.json,sha256=Z734AuDkkvjMZLNQ3Kawbn7cGjuHP7aPQWZQ6RC7q1U,41670
|
|
367
375
|
tccli/services/mdp/__init__.py,sha256=RALYmSbMGl9MqSjDHzxRemmg_ctfsVSsmU_3fv_LQxw,85
|
|
368
376
|
tccli/services/mdp/mdp_client.py,sha256=fEveFsQ1pzEkR1DEa0RKCzx2bIepT6LJ0zvYZieQxYs,203222
|
|
369
377
|
tccli/services/mdp/v20200527/api.json,sha256=HpJZXBo64tdIPJgxC8_uWRFx38Ux_7gWaPl5BUgzyWo,232034
|
|
@@ -378,12 +386,12 @@ tccli/services/mongodb/v20190725/api.json,sha256=h9GajCQsIj8rGF5f9flxRM8z12Rs3i4
|
|
|
378
386
|
tccli/services/mongodb/v20190725/examples.json,sha256=PfcdtIinoabcoI4342bksOa_TXCdhT0hu4OB24ILlvY,59498
|
|
379
387
|
tccli/services/monitor/__init__.py,sha256=Fqyy64XBMByiqJHyjxbaJeQDJAGMyktujsYRmXhosc8,93
|
|
380
388
|
tccli/services/monitor/monitor_client.py,sha256=gv-7tw8sNNAMJI4YJwov67oMorLsLE8kY6MFkZPWvI4,472842
|
|
381
|
-
tccli/services/monitor/v20180724/api.json,sha256=
|
|
389
|
+
tccli/services/monitor/v20180724/api.json,sha256=fzRIuosDX46mer7S5EQrGevOqHds0W_pZ4sGLoMkvgU,661948
|
|
382
390
|
tccli/services/monitor/v20180724/examples.json,sha256=P0joek--vtFDQQR2M624kTSu6UkSU3RM1AdLbTt4Mjg,254205
|
|
383
391
|
tccli/services/mps/__init__.py,sha256=4M5o2xc0u3rqtgz_5an9Qxw2QaOqwBq8Fjc3IB64p2o,85
|
|
384
|
-
tccli/services/mps/mps_client.py,sha256=
|
|
385
|
-
tccli/services/mps/v20190612/api.json,sha256=
|
|
386
|
-
tccli/services/mps/v20190612/examples.json,sha256=
|
|
392
|
+
tccli/services/mps/mps_client.py,sha256=Rjo5mkaK99O5TjhnROVra7IsmNvLQMhGOMeZ0Hq9ZnM,337539
|
|
393
|
+
tccli/services/mps/v20190612/api.json,sha256=U8FNnq3ob-HmuBnnmHxhd578v7y6sugEIlwHAA1MNXI,1276555
|
|
394
|
+
tccli/services/mps/v20190612/examples.json,sha256=dszxxYW0L5HoMDBvnmqscZB8sz1AGYCczx4rm6YPn4E,276445
|
|
387
395
|
tccli/services/msp/__init__.py,sha256=0k_5yz4kYV72TCSBHRT9p4FBqtVxKOiOrNCR-QXcjEA,85
|
|
388
396
|
tccli/services/msp/msp_client.py,sha256=UpegnlT96rHXrO0Y6sPyowLYGw4cDzT8Hq7epPDqt-U,27982
|
|
389
397
|
tccli/services/msp/v20180319/api.json,sha256=PUGm-MEDPWDfGFbQzE_XM2QGC68xgf1Oy3otIjOWkG0,22901
|
|
@@ -519,11 +527,11 @@ tccli/services/tem/v20201221/examples.json,sha256=DNo6OfxmsQ0vKqh9Mx0Z12PpQkTcrV
|
|
|
519
527
|
tccli/services/tem/v20210701/api.json,sha256=yDaO-jvC6yTsayjYVrhODA-wDVKZu4YQxE0fCn5eHF0,259836
|
|
520
528
|
tccli/services/tem/v20210701/examples.json,sha256=Wa6HgD5hWrDuPd1H0ThqonyQ1hCOIreoCE8TRaTDm0o,78999
|
|
521
529
|
tccli/services/teo/__init__.py,sha256=nvzcUSkSQuTftWEJ399BUZpUk_0jEq-l97539DwbAwM,85
|
|
522
|
-
tccli/services/teo/teo_client.py,sha256=
|
|
530
|
+
tccli/services/teo/teo_client.py,sha256=DX6uAnPtoxNHGbl6RukW1ZYRt4ptJyMrBmcDrvPjcQc,767084
|
|
523
531
|
tccli/services/teo/v20220106/api.json,sha256=pEZJsuPOV4oAO5uxFRxpkBzxdGbhiuDGeDhItZLpBk0,440930
|
|
524
532
|
tccli/services/teo/v20220106/examples.json,sha256=bzXKxeiSSmtv7lL1wbcb7YaTbgbOFBJbD_uCv1fzQuk,87233
|
|
525
|
-
tccli/services/teo/v20220901/api.json,sha256=
|
|
526
|
-
tccli/services/teo/v20220901/examples.json,sha256=
|
|
533
|
+
tccli/services/teo/v20220901/api.json,sha256=sJi6yAe6SFMKPCgG3SftUlzq9CrKn403gq7jow2lkEs,1193195
|
|
534
|
+
tccli/services/teo/v20220901/examples.json,sha256=9sqIF8P14woA50UayZDClGKi9B7IZJl2MZpIL8fENK8,537623
|
|
527
535
|
tccli/services/tione/__init__.py,sha256=hVHB2cJpskiRtSHmEaJj2ZcjQp28c17sepm54VgFH7I,89
|
|
528
536
|
tccli/services/tione/tione_client.py,sha256=v-JdpUrufgYnhjS3kN-5t92Ned697gxB8xcNr2YMMV8,9275
|
|
529
537
|
tccli/services/tione/v20211111/api.json,sha256=LdLS6ORNi6pmPi7CfGts0ryuEI4qp9EFIGKOVxql1E8,107248
|
|
@@ -600,9 +608,9 @@ tccli/services/yunjing/__init__.py,sha256=8HTKN8_ow1j67tspqAbBMQgeteXAagLvtb9WAf
|
|
|
600
608
|
tccli/services/yunjing/yunjing_client.py,sha256=TgW9P5c1WrxNFj8viq_OLbeC5HYRdjHm7qv_hYr-Lqs,227266
|
|
601
609
|
tccli/services/yunjing/v20180228/api.json,sha256=zYojacZyPgPCi71CLBjuHsQR9mIxcZjCX5JwA9TYr1s,173428
|
|
602
610
|
tccli/services/yunjing/v20180228/examples.json,sha256=j3GL3TtNTkZpNLlksz0nJNCVDxYGUqfRqOt94Y-P8OE,58723
|
|
603
|
-
tccli_intl_en-3.1.
|
|
604
|
-
tccli_intl_en-3.1.
|
|
605
|
-
tccli_intl_en-3.1.
|
|
606
|
-
tccli_intl_en-3.1.
|
|
607
|
-
tccli_intl_en-3.1.
|
|
608
|
-
tccli_intl_en-3.1.
|
|
611
|
+
tccli_intl_en-3.1.13.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
612
|
+
tccli_intl_en-3.1.13.1.dist-info/METADATA,sha256=zfrLB8wTupGaBNSWXnyAVoUDZFbg51cv4vE7TJ5Tc-Y,3063
|
|
613
|
+
tccli_intl_en-3.1.13.1.dist-info/WHEEL,sha256=Ll72iyqtt6Rbxp-Q7FSafYA1LeRv98X15xcZWRsFEmY,109
|
|
614
|
+
tccli_intl_en-3.1.13.1.dist-info/entry_points.txt,sha256=9ZzsXxi7Xj3ZneT7VxRVJpFvnmdEOeysh999_0gWVvo,85
|
|
615
|
+
tccli_intl_en-3.1.13.1.dist-info/top_level.txt,sha256=gYFrQRE3IqZ_46Syp-vkVwwvNaYEtKcM4fE_C4Puomk,6
|
|
616
|
+
tccli_intl_en-3.1.13.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|