tccli-intl-en 3.1.1.1__py2.py3-none-any.whl → 3.1.11.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/autoscaling/v20180419/api.json +36 -14
- tccli/services/ckafka/ckafka_client.py +288 -8
- tccli/services/ckafka/v20190819/api.json +494 -76
- tccli/services/ckafka/v20190819/examples.json +45 -5
- tccli/services/clb/clb_client.py +636 -300
- tccli/services/clb/v20180317/api.json +1245 -367
- tccli/services/clb/v20180317/examples.json +172 -112
- tccli/services/controlcenter/controlcenter_client.py +224 -0
- tccli/services/controlcenter/v20230110/api.json +528 -5
- tccli/services/controlcenter/v20230110/examples.json +32 -0
- tccli/services/cvm/v20170312/examples.json +1 -1
- tccli/services/faceid/v20180301/api.json +31 -3
- tccli/services/kms/v20190118/api.json +80 -3
- tccli/services/kms/v20190118/examples.json +3 -3
- tccli/services/mdl/v20200326/api.json +165 -5
- tccli/services/mongodb/mongodb_client.py +1048 -96
- tccli/services/mongodb/v20190725/api.json +1765 -108
- tccli/services/mongodb/v20190725/examples.json +136 -0
- tccli/services/monitor/v20180724/api.json +3 -3
- tccli/services/mps/mps_client.py +713 -209
- tccli/services/mps/v20190612/api.json +1009 -67
- tccli/services/mps/v20190612/examples.json +100 -52
- tccli/services/ocr/ocr_client.py +112 -0
- tccli/services/ocr/v20181119/api.json +514 -0
- tccli/services/ocr/v20181119/examples.json +22 -0
- tccli/services/smh/__init__.py +4 -0
- tccli/services/smh/smh_client.py +714 -0
- tccli/services/smh/v20210712/api.json +1287 -0
- tccli/services/smh/v20210712/examples.json +85 -0
- tccli/services/tdmq/tdmq_client.py +2406 -278
- tccli/services/tdmq/v20200217/api.json +11607 -3958
- tccli/services/tdmq/v20200217/examples.json +562 -264
- tccli/services/teo/teo_client.py +169 -57
- tccli/services/teo/v20220901/api.json +218 -9
- tccli/services/teo/v20220901/examples.json +56 -22
- tccli/services/trocket/__init__.py +4 -0
- tccli/services/trocket/trocket_client.py +2450 -0
- tccli/services/trocket/v20230308/api.json +6062 -0
- tccli/services/trocket/v20230308/examples.json +339 -0
- tccli/services/vpc/v20170312/api.json +19 -16
- tccli/services/vpc/v20170312/examples.json +4 -4
- {tccli_intl_en-3.1.1.1.dist-info → tccli_intl_en-3.1.11.1.dist-info}/METADATA +2 -2
- {tccli_intl_en-3.1.1.1.dist-info → tccli_intl_en-3.1.11.1.dist-info}/RECORD +49 -41
- {tccli_intl_en-3.1.1.1.dist-info → tccli_intl_en-3.1.11.1.dist-info}/LICENSE +0 -0
- {tccli_intl_en-3.1.1.1.dist-info → tccli_intl_en-3.1.11.1.dist-info}/WHEEL +0 -0
- {tccli_intl_en-3.1.1.1.dist-info → tccli_intl_en-3.1.11.1.dist-info}/entry_points.txt +0 -0
- {tccli_intl_en-3.1.1.1.dist-info → tccli_intl_en-3.1.11.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",
|
|
@@ -2860,6 +2874,71 @@
|
|
|
2860
2874
|
],
|
|
2861
2875
|
"usage": "both"
|
|
2862
2876
|
},
|
|
2877
|
+
"ApplyFreeCertificateRequest": {
|
|
2878
|
+
"document": "ApplyFreeCertificate request structure.",
|
|
2879
|
+
"members": [
|
|
2880
|
+
{
|
|
2881
|
+
"disabled": false,
|
|
2882
|
+
"document": "Site ID.",
|
|
2883
|
+
"example": "zone-343vqcswn9zj",
|
|
2884
|
+
"member": "string",
|
|
2885
|
+
"name": "ZoneId",
|
|
2886
|
+
"required": true,
|
|
2887
|
+
"type": "string"
|
|
2888
|
+
},
|
|
2889
|
+
{
|
|
2890
|
+
"disabled": false,
|
|
2891
|
+
"document": "Specifies the target domain name for free certificate application.",
|
|
2892
|
+
"example": "www.test.com",
|
|
2893
|
+
"member": "string",
|
|
2894
|
+
"name": "Domain",
|
|
2895
|
+
"required": true,
|
|
2896
|
+
"type": "string"
|
|
2897
|
+
},
|
|
2898
|
+
{
|
|
2899
|
+
"disabled": false,
|
|
2900
|
+
"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.",
|
|
2901
|
+
"example": "http_challenge",
|
|
2902
|
+
"member": "string",
|
|
2903
|
+
"name": "VerificationMethod",
|
|
2904
|
+
"required": true,
|
|
2905
|
+
"type": "string"
|
|
2906
|
+
}
|
|
2907
|
+
],
|
|
2908
|
+
"type": "object"
|
|
2909
|
+
},
|
|
2910
|
+
"ApplyFreeCertificateResponse": {
|
|
2911
|
+
"document": "ApplyFreeCertificate response structure.",
|
|
2912
|
+
"members": [
|
|
2913
|
+
{
|
|
2914
|
+
"disabled": false,
|
|
2915
|
+
"document": "Specifies the verification information for free certificate application when VerificationMethod is dns_challenge.",
|
|
2916
|
+
"example": "无",
|
|
2917
|
+
"member": "DnsVerification",
|
|
2918
|
+
"name": "DnsVerification",
|
|
2919
|
+
"output_required": false,
|
|
2920
|
+
"type": "object",
|
|
2921
|
+
"value_allowed_null": false
|
|
2922
|
+
},
|
|
2923
|
+
{
|
|
2924
|
+
"disabled": false,
|
|
2925
|
+
"document": "Specifies the verification information related to the free certificate application for the domain name when VerificationMethod is http_challenge.",
|
|
2926
|
+
"example": "无",
|
|
2927
|
+
"member": "FileVerification",
|
|
2928
|
+
"name": "FileVerification",
|
|
2929
|
+
"output_required": false,
|
|
2930
|
+
"type": "object",
|
|
2931
|
+
"value_allowed_null": false
|
|
2932
|
+
},
|
|
2933
|
+
{
|
|
2934
|
+
"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.",
|
|
2935
|
+
"member": "string",
|
|
2936
|
+
"name": "RequestId",
|
|
2937
|
+
"type": "string"
|
|
2938
|
+
}
|
|
2939
|
+
],
|
|
2940
|
+
"type": "object"
|
|
2941
|
+
},
|
|
2863
2942
|
"AscriptionInfo": {
|
|
2864
2943
|
"document": "The site ownership information",
|
|
2865
2944
|
"members": [
|
|
@@ -4534,6 +4613,72 @@
|
|
|
4534
4613
|
],
|
|
4535
4614
|
"type": "object"
|
|
4536
4615
|
},
|
|
4616
|
+
"CheckFreeCertificateVerificationRequest": {
|
|
4617
|
+
"document": "CheckFreeCertificateVerification request structure.",
|
|
4618
|
+
"members": [
|
|
4619
|
+
{
|
|
4620
|
+
"disabled": false,
|
|
4621
|
+
"document": "Zone ID.",
|
|
4622
|
+
"example": "zone-28v607hq8d3m",
|
|
4623
|
+
"member": "string",
|
|
4624
|
+
"name": "ZoneId",
|
|
4625
|
+
"required": true,
|
|
4626
|
+
"type": "string"
|
|
4627
|
+
},
|
|
4628
|
+
{
|
|
4629
|
+
"disabled": false,
|
|
4630
|
+
"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).",
|
|
4631
|
+
"example": "qq.com",
|
|
4632
|
+
"member": "string",
|
|
4633
|
+
"name": "Domain",
|
|
4634
|
+
"required": true,
|
|
4635
|
+
"type": "string"
|
|
4636
|
+
}
|
|
4637
|
+
],
|
|
4638
|
+
"type": "object"
|
|
4639
|
+
},
|
|
4640
|
+
"CheckFreeCertificateVerificationResponse": {
|
|
4641
|
+
"document": "CheckFreeCertificateVerification response structure.",
|
|
4642
|
+
"members": [
|
|
4643
|
+
{
|
|
4644
|
+
"disabled": false,
|
|
4645
|
+
"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.",
|
|
4646
|
+
"example": "aa.test.com",
|
|
4647
|
+
"member": "string",
|
|
4648
|
+
"name": "CommonName",
|
|
4649
|
+
"output_required": true,
|
|
4650
|
+
"type": "string",
|
|
4651
|
+
"value_allowed_null": false
|
|
4652
|
+
},
|
|
4653
|
+
{
|
|
4654
|
+
"disabled": false,
|
|
4655
|
+
"document": "Specifies the signature algorithm used by the certificate when the free certificate application succeeds. currently only support RSA 2048.",
|
|
4656
|
+
"example": "RSA 2048",
|
|
4657
|
+
"member": "string",
|
|
4658
|
+
"name": "SignatureAlgorithm",
|
|
4659
|
+
"output_required": true,
|
|
4660
|
+
"type": "string",
|
|
4661
|
+
"value_allowed_null": false
|
|
4662
|
+
},
|
|
4663
|
+
{
|
|
4664
|
+
"disabled": false,
|
|
4665
|
+
"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.",
|
|
4666
|
+
"example": "2014-08-03T12:00:00+08:00",
|
|
4667
|
+
"member": "datetime_iso",
|
|
4668
|
+
"name": "ExpireTime",
|
|
4669
|
+
"output_required": true,
|
|
4670
|
+
"type": "string",
|
|
4671
|
+
"value_allowed_null": false
|
|
4672
|
+
},
|
|
4673
|
+
{
|
|
4674
|
+
"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.",
|
|
4675
|
+
"member": "string",
|
|
4676
|
+
"name": "RequestId",
|
|
4677
|
+
"type": "string"
|
|
4678
|
+
}
|
|
4679
|
+
],
|
|
4680
|
+
"type": "object"
|
|
4681
|
+
},
|
|
4537
4682
|
"CheckRegionHealthStatus": {
|
|
4538
4683
|
"document": "Health status of origin servers in each health check region.",
|
|
4539
4684
|
"members": [
|
|
@@ -14977,7 +15122,7 @@
|
|
|
14977
15122
|
"usage": "both"
|
|
14978
15123
|
},
|
|
14979
15124
|
"DnsVerification": {
|
|
14980
|
-
"document": "",
|
|
15125
|
+
"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
15126
|
"members": [
|
|
14982
15127
|
{
|
|
14983
15128
|
"disabled": false,
|
|
@@ -16010,11 +16155,11 @@
|
|
|
16010
16155
|
"usage": "out"
|
|
16011
16156
|
},
|
|
16012
16157
|
"FileVerification": {
|
|
16013
|
-
"document": "Information required for
|
|
16158
|
+
"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
16159
|
"members": [
|
|
16015
16160
|
{
|
|
16016
16161
|
"disabled": false,
|
|
16017
|
-
"document": "EdgeOne
|
|
16162
|
+
"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
16163
|
"example": "/.well-known/teo-verification/z12h416twn.txt",
|
|
16019
16164
|
"member": "string",
|
|
16020
16165
|
"name": "Path",
|
|
@@ -17055,7 +17200,7 @@
|
|
|
17055
17200
|
},
|
|
17056
17201
|
{
|
|
17057
17202
|
"disabled": false,
|
|
17058
|
-
"document": "Tls version settings
|
|
17203
|
+
"document": "Tls version settings. valid values:.\n<Li>TLSv1: specifies the tlsv1 version.</li>.\n<Li>TLSv1.1: specifies the 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>.",
|
|
17059
17204
|
"example": "[\"TLSv1\", \"TLSv1.1\"]",
|
|
17060
17205
|
"member": "string",
|
|
17061
17206
|
"name": "TlsVersion",
|
|
@@ -18876,7 +19021,7 @@
|
|
|
18876
19021
|
},
|
|
18877
19022
|
{
|
|
18878
19023
|
"disabled": false,
|
|
18879
|
-
"document": "
|
|
19024
|
+
"document": "MaxAge specifies the time setting in seconds. value range: 0–315360000.\nSpecifies the time when the cache is disabled if set to 0.",
|
|
18880
19025
|
"example": "600",
|
|
18881
19026
|
"member": "int64",
|
|
18882
19027
|
"name": "MaxAgeTime",
|
|
@@ -19905,7 +20050,7 @@
|
|
|
19905
20050
|
},
|
|
19906
20051
|
{
|
|
19907
20052
|
"disabled": false,
|
|
19908
|
-
"document": "
|
|
20053
|
+
"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
20054
|
"example": "eofreecert",
|
|
19910
20055
|
"member": "string",
|
|
19911
20056
|
"name": "Mode",
|
|
@@ -19941,7 +20086,7 @@
|
|
|
19941
20086
|
},
|
|
19942
20087
|
{
|
|
19943
20088
|
"disabled": false,
|
|
19944
|
-
"document": "
|
|
20089
|
+
"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
20090
|
"example": "无",
|
|
19946
20091
|
"member": "UpstreamCertInfo",
|
|
19947
20092
|
"name": "UpstreamCertInfo",
|
|
@@ -21605,6 +21750,15 @@
|
|
|
21605
21750
|
"required": false,
|
|
21606
21751
|
"type": "object"
|
|
21607
21752
|
},
|
|
21753
|
+
{
|
|
21754
|
+
"disabled": false,
|
|
21755
|
+
"document": "Network Error Logging configuration. The original configuration will apply if it is not specified.",
|
|
21756
|
+
"example": "无",
|
|
21757
|
+
"member": "NetworkErrorLogging",
|
|
21758
|
+
"name": "NetworkErrorLogging",
|
|
21759
|
+
"required": false,
|
|
21760
|
+
"type": "object"
|
|
21761
|
+
},
|
|
21608
21762
|
{
|
|
21609
21763
|
"disabled": false,
|
|
21610
21764
|
"document": "Image optimization. \nIt is disabled if this parameter is not specified.",
|
|
@@ -21981,6 +22135,40 @@
|
|
|
21981
22135
|
],
|
|
21982
22136
|
"usage": "both"
|
|
21983
22137
|
},
|
|
22138
|
+
"NetworkErrorLogging": {
|
|
22139
|
+
"document": "Network Error Logging configuration.",
|
|
22140
|
+
"members": [
|
|
22141
|
+
{
|
|
22142
|
+
"disabled": false,
|
|
22143
|
+
"document": "Specifies whether the Network Error Logging configuration is enabled. Valid values:.\n<li>`on`: Enable;</li>\n<li>`off`: Disable.</li>",
|
|
22144
|
+
"example": "on",
|
|
22145
|
+
"member": "string",
|
|
22146
|
+
"name": "Switch",
|
|
22147
|
+
"output_required": true,
|
|
22148
|
+
"required": true,
|
|
22149
|
+
"type": "string",
|
|
22150
|
+
"value_allowed_null": false
|
|
22151
|
+
}
|
|
22152
|
+
],
|
|
22153
|
+
"usage": "both"
|
|
22154
|
+
},
|
|
22155
|
+
"NetworkErrorLoggingParameters": {
|
|
22156
|
+
"document": "Network Error Logging configuration.",
|
|
22157
|
+
"members": [
|
|
22158
|
+
{
|
|
22159
|
+
"disabled": false,
|
|
22160
|
+
"document": "Specifies whether Network Error Logging configuration is enabled. Valid values:\n<li>`on`: Enable;</li>\n<li>`off`: Disable.</li>",
|
|
22161
|
+
"example": "on",
|
|
22162
|
+
"member": "string",
|
|
22163
|
+
"name": "Switch",
|
|
22164
|
+
"output_required": false,
|
|
22165
|
+
"required": false,
|
|
22166
|
+
"type": "string",
|
|
22167
|
+
"value_allowed_null": false
|
|
22168
|
+
}
|
|
22169
|
+
],
|
|
22170
|
+
"usage": "both"
|
|
22171
|
+
},
|
|
21984
22172
|
"NextOriginACL": {
|
|
21985
22173
|
"document": "When origin ACLs are updated, this field will be returned with the next version of the IP range to take effect, including a comparison with the currently effective IP range.",
|
|
21986
22174
|
"members": [
|
|
@@ -23409,7 +23597,7 @@
|
|
|
23409
23597
|
},
|
|
23410
23598
|
{
|
|
23411
23599
|
"disabled": false,
|
|
23412
|
-
"document": "
|
|
23600
|
+
"document": "Specifies the maximum limit. this field is valid only when Switch is on. value range: 1MB to 800MB. unit: byte.",
|
|
23413
23601
|
"example": "10000000",
|
|
23414
23602
|
"member": "int64",
|
|
23415
23603
|
"name": "MaxSize",
|
|
@@ -23437,7 +23625,7 @@
|
|
|
23437
23625
|
},
|
|
23438
23626
|
{
|
|
23439
23627
|
"disabled": false,
|
|
23440
|
-
"document": "
|
|
23628
|
+
"document": "Specifies the maximum limit for file streaming transmission in POST request upload. this field is valid only when Switch is on. value range: 1MB to 800MB. unit: byte.",
|
|
23441
23629
|
"example": "10000000",
|
|
23442
23630
|
"member": "int64",
|
|
23443
23631
|
"name": "MaxSize",
|
|
@@ -28633,6 +28821,17 @@
|
|
|
28633
28821
|
"type": "object",
|
|
28634
28822
|
"value_allowed_null": true
|
|
28635
28823
|
},
|
|
28824
|
+
{
|
|
28825
|
+
"disabled": false,
|
|
28826
|
+
"document": "Network Error Logging configuration.\nNote: This field may return null, which indicates a failure to obtain a valid value.",
|
|
28827
|
+
"example": "无",
|
|
28828
|
+
"member": "NetworkErrorLoggingParameters",
|
|
28829
|
+
"name": "NetworkErrorLogging",
|
|
28830
|
+
"output_required": false,
|
|
28831
|
+
"required": false,
|
|
28832
|
+
"type": "object",
|
|
28833
|
+
"value_allowed_null": true
|
|
28834
|
+
},
|
|
28636
28835
|
{
|
|
28637
28836
|
"disabled": false,
|
|
28638
28837
|
"document": "Accelerate optimization and configuration in mainland china.\nNote: this field may return null, which indicates a failure to obtain a valid value.",
|
|
@@ -28926,6 +29125,16 @@
|
|
|
28926
29125
|
"type": "object",
|
|
28927
29126
|
"value_allowed_null": true
|
|
28928
29127
|
},
|
|
29128
|
+
{
|
|
29129
|
+
"disabled": false,
|
|
29130
|
+
"document": "Network Error Logging configuration.\nNote: This field may return `null`, indicating that no valid value can be obtained.",
|
|
29131
|
+
"example": "无",
|
|
29132
|
+
"member": "NetworkErrorLogging",
|
|
29133
|
+
"name": "NetworkErrorLogging",
|
|
29134
|
+
"output_required": true,
|
|
29135
|
+
"type": "object",
|
|
29136
|
+
"value_allowed_null": true
|
|
29137
|
+
},
|
|
28929
29138
|
{
|
|
28930
29139
|
"disabled": false,
|
|
28931
29140
|
"document": "Image optimization configuration. \nNote: This field may return `null`, indicating that no valid value was found.",
|
|
@@ -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.",
|
|
@@ -986,10 +1014,10 @@
|
|
|
986
1014
|
],
|
|
987
1015
|
"DescribeL7AccSetting": [
|
|
988
1016
|
{
|
|
989
|
-
"document": "
|
|
1017
|
+
"document": "This example shows you how to query the global configuration information for site acceleration.",
|
|
990
1018
|
"input": "POST / HTTP/1.1\nHost: teo.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeL7AccSetting\n<Common request parameters>\n\n{\n \"ZoneId\": \"zone-21xfqlh4qjee\"\n}",
|
|
991
|
-
"output": "{\n \"Response\": {\n \"RequestId\": \"88215c08-67de-4c7d-974e-a14461816f5b\",\n \"ZoneSetting\": {\n \"ZoneName\": \"example.com\",\n \"ZoneConfig\": {\n \"SmartRouting\": {\n \"Switch\": \"off\"\n },\n \"Cache\": {\n \"CustomTime\": {\n \"CacheTime\": 2592000,\n \"Switch\": \"off\"\n },\n \"FollowOrigin\": {\n \"DefaultCache\": \"on\",\n \"DefaultCacheStrategy\": \"on\",\n \"DefaultCacheTime\": 0,\n \"Switch\": \"on\"\n },\n \"NoCache\": {\n \"Switch\": \"off\"\n }\n },\n \"MaxAge\": {\n \"FollowOrigin\": \"on\",\n \"CacheTime\": 600\n },\n \"CacheKey\": {\n \"FullURLCache\": \"on\",\n \"IgnoreCase\": \"off\",\n \"QueryString\": {\n \"Action\": \"includeCustom\",\n \"Switch\": \"off\",\n \"Values\": []\n }\n },\n \"CachePrefresh\": {\n \"CacheTimePercent\": 90,\n \"Switch\": \"off\"\n },\n \"OfflineCache\": {\n \"Switch\": \"on\"\n },\n \"Compression\": {\n \"Algorithms\": [\n \"brotli\",\n \"gzip\"\n ],\n \"Switch\": \"on\"\n },\n \"ForceRedirectHTTPS\": {\n \"RedirectStatusCode\": 302,\n \"Switch\": \"off\"\n },\n \"HSTS\": {\n \"IncludeSubDomains\": \"off\",\n \"Timeout\": 0,\n \"Preload\": \"off\",\n \"Switch\": \"off\"\n },\n \"TLSConfig\": {\n \"Version\": [\n \"TLSv1\",\n \"TLSv1.1\",\n \"TLSv1.2\",\n \"TLSv1.3\"\n ],\n \"CipherSuite\": \"loose-v2023\"\n },\n \"OCSPStapling\": {\n \"Switch\": \"off\"\n },\n \"HTTP2\": {\n \"Switch\": \"off\"\n },\n \"QUIC\": {\n \"Switch\": \"off\"\n },\n \"UpstreamHTTP2\": {\n \"Switch\": \"off\"\n },\n \"IPv6\": {\n \"Switch\": \"off\"\n },\n \"WebSocket\": {\n \"Switch\": \"off\",\n \"Timeout\": 30\n },\n \"PostMaxSize\": {\n \"MaxSize\": 524288000,\n \"Switch\": \"on\"\n },\n \"ClientIPHeader\": {\n \"HeaderName\": \"\",\n \"Switch\": \"off\"\n },\n \"ClientIPCountry\": {\n \"HeaderName\": \"\",\n \"Switch\": \"off\"\n },\n \"Grpc\": {\n \"Switch\": \"off\"\n },\n \"AccelerateMainland\": {\n \"Switch\": \"off\"\n },\n \"StandardDebug\": {\n \"AllowClientIPList\": [],\n \"Expires\": \"1969-12-31T16:00:00Z\",\n \"Switch\": \"off\"\n }\n }\n }\n }\n}",
|
|
992
|
-
"title": "
|
|
1019
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"88215c08-67de-4c7d-974e-a14461816f5b\",\n \"ZoneSetting\": {\n \"ZoneName\": \"example.com\",\n \"ZoneConfig\": {\n \"SmartRouting\": {\n \"Switch\": \"off\"\n },\n \"Cache\": {\n \"CustomTime\": {\n \"CacheTime\": 2592000,\n \"Switch\": \"off\"\n },\n \"FollowOrigin\": {\n \"DefaultCache\": \"on\",\n \"DefaultCacheStrategy\": \"on\",\n \"DefaultCacheTime\": 0,\n \"Switch\": \"on\"\n },\n \"NoCache\": {\n \"Switch\": \"off\"\n }\n },\n \"MaxAge\": {\n \"FollowOrigin\": \"on\",\n \"CacheTime\": 600\n },\n \"CacheKey\": {\n \"FullURLCache\": \"on\",\n \"IgnoreCase\": \"off\",\n \"QueryString\": {\n \"Action\": \"includeCustom\",\n \"Switch\": \"off\",\n \"Values\": []\n }\n },\n \"CachePrefresh\": {\n \"CacheTimePercent\": 90,\n \"Switch\": \"off\"\n },\n \"OfflineCache\": {\n \"Switch\": \"on\"\n },\n \"Compression\": {\n \"Algorithms\": [\n \"brotli\",\n \"gzip\"\n ],\n \"Switch\": \"on\"\n },\n \"ForceRedirectHTTPS\": {\n \"RedirectStatusCode\": 302,\n \"Switch\": \"off\"\n },\n \"HSTS\": {\n \"IncludeSubDomains\": \"off\",\n \"Timeout\": 0,\n \"Preload\": \"off\",\n \"Switch\": \"off\"\n },\n \"TLSConfig\": {\n \"Version\": [\n \"TLSv1\",\n \"TLSv1.1\",\n \"TLSv1.2\",\n \"TLSv1.3\"\n ],\n \"CipherSuite\": \"loose-v2023\"\n },\n \"OCSPStapling\": {\n \"Switch\": \"off\"\n },\n \"HTTP2\": {\n \"Switch\": \"off\"\n },\n \"QUIC\": {\n \"Switch\": \"off\"\n },\n \"UpstreamHTTP2\": {\n \"Switch\": \"off\"\n },\n \"IPv6\": {\n \"Switch\": \"off\"\n },\n \"WebSocket\": {\n \"Switch\": \"off\",\n \"Timeout\": 30\n },\n \"PostMaxSize\": {\n \"MaxSize\": 524288000,\n \"Switch\": \"on\"\n },\n \"ClientIPHeader\": {\n \"HeaderName\": \"\",\n \"Switch\": \"off\"\n },\n \"ClientIPCountry\": {\n \"HeaderName\": \"\",\n \"Switch\": \"off\"\n },\n \"Grpc\": {\n \"Switch\": \"off\"\n },\n \"NetworkErrorLogging\": {\n \"Switch\": \"on\"\n },\n \"AccelerateMainland\": {\n \"Switch\": \"off\"\n },\n \"StandardDebug\": {\n \"AllowClientIPList\": [],\n \"Expires\": \"1969-12-31T16:00:00Z\",\n \"Switch\": \"off\"\n }\n }\n }\n }\n}",
|
|
1020
|
+
"title": "Querying Layer-7 Acceleration Site Configuration"
|
|
993
1021
|
}
|
|
994
1022
|
],
|
|
995
1023
|
"DescribeLoadBalancerList": [
|
|
@@ -1324,7 +1352,7 @@
|
|
|
1324
1352
|
{
|
|
1325
1353
|
"document": " ",
|
|
1326
1354
|
"input": "POST / HTTP/1.1\nHost: teo.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeZoneSetting\n<Common request parameters>\n\n{\n \"ZoneId\": \"zone-21xfqlh4qjee\"\n}",
|
|
1327
|
-
"output": "{\n \"Response\": {\n \"RequestId\": \"88215c08-67de-4c7d-974e-a14461816f5b\",\n \"ZoneSetting\": {\n \"AccelerateMainland\": {\n \"Switch\": \"off\"\n },\n \"Area\": \"global\",\n \"CacheConfig\": {\n \"Cache\": {\n \"CacheTime\": 2592000,\n \"Switch\": \"off\"\n },\n \"FollowOrigin\": {\n \"DefaultCache\": \"on\",\n \"DefaultCacheStrategy\": \"on\",\n \"DefaultCacheTime\": 0,\n \"Switch\": \"on\"\n },\n \"NoCache\": {\n \"Switch\": \"off\"\n }\n },\n \"CacheKey\": {\n \"FullUrlCache\": \"on\",\n \"IgnoreCase\": \"off\",\n \"QueryString\": {\n \"Action\": \"includeCustom\",\n \"Switch\": \"off\",\n \"Value\": []\n }\n },\n \"CachePrefresh\": {\n \"Percent\": 90,\n \"Switch\": \"off\"\n },\n \"ClientIpCountry\": {\n \"HeaderName\": \"\",\n \"Switch\": \"off\"\n },\n \"ClientIpHeader\": {\n \"HeaderName\": \"\",\n \"Switch\": \"off\"\n },\n \"Compression\": {\n \"Algorithms\": [\n \"brotli\",\n \"gzip\"\n ],\n \"Switch\": \"on\"\n },\n \"ForceRedirect\": {\n \"RedirectStatusCode\": 302,\n \"Switch\": \"off\"\n },\n \"Grpc\": {\n \"Switch\": \"off\"\n },\n \"Https\": {\n \"ApplyType\": \"none\",\n \"CertInfo\": [],\n \"CipherSuite\": \"loose-v2023\",\n \"Hsts\": {\n \"IncludeSubDomains\": \"off\",\n \"MaxAge\": 0,\n \"Preload\": \"off\",\n \"Switch\": \"off\"\n },\n \"Http2\": \"on\",\n \"OcspStapling\": \"off\",\n \"TlsVersion\": [\n \"TLSv1\",\n \"TLSv1.1\",\n \"TLSv1.2\",\n \"TLSv1.3\"\n ]\n },\n \"ImageOptimize\": {\n \"Switch\": \"off\"\n },\n \"Ipv6\": {\n \"Switch\": \"off\"\n },\n \"MaxAge\": {\n \"FollowOrigin\": \"on\",\n \"MaxAgeTime\": 600\n },\n \"OfflineCache\": {\n \"Switch\": \"on\"\n },\n \"Origin\": {\n \"Origins\": [\n \"30.12.34.23\"\n ],\n \"BackupOrigins\": [\n \"30.12.34.11\"\n ],\n \"OriginPullProtocol\": \"follow\",\n \"CosPrivateAccess\": \"off\"\n },\n \"PostMaxSize\": {\n \"MaxSize\": 524288000,\n \"Switch\": \"on\"\n },\n \"Quic\": {\n \"Switch\": \"off\"\n },\n \"SmartRouting\": {\n \"Switch\": \"off\"\n },\n \"StandardDebug\": {\n \"AllowClientIPList\": [],\n \"ExpireTime\": \"1969-12-31T16:00:00Z\",\n \"Switch\": \"off\"\n },\n \"UpstreamHttp2\": {\n \"Switch\": \"off\"\n },\n \"WebSocket\": {\n \"Switch\": \"off\",\n \"Timeout\": 30\n },\n \"JITVideoProcess\": {\n \"Switch\": \"off\"\n },\n \"ZoneName\": \"wxlagame.com\"\n }\n }\n}",
|
|
1355
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"88215c08-67de-4c7d-974e-a14461816f5b\",\n \"ZoneSetting\": {\n \"AccelerateMainland\": {\n \"Switch\": \"off\"\n },\n \"Area\": \"global\",\n \"CacheConfig\": {\n \"Cache\": {\n \"CacheTime\": 2592000,\n \"Switch\": \"off\"\n },\n \"FollowOrigin\": {\n \"DefaultCache\": \"on\",\n \"DefaultCacheStrategy\": \"on\",\n \"DefaultCacheTime\": 0,\n \"Switch\": \"on\"\n },\n \"NoCache\": {\n \"Switch\": \"off\"\n }\n },\n \"CacheKey\": {\n \"FullUrlCache\": \"on\",\n \"IgnoreCase\": \"off\",\n \"QueryString\": {\n \"Action\": \"includeCustom\",\n \"Switch\": \"off\",\n \"Value\": []\n }\n },\n \"CachePrefresh\": {\n \"Percent\": 90,\n \"Switch\": \"off\"\n },\n \"ClientIpCountry\": {\n \"HeaderName\": \"\",\n \"Switch\": \"off\"\n },\n \"ClientIpHeader\": {\n \"HeaderName\": \"\",\n \"Switch\": \"off\"\n },\n \"Compression\": {\n \"Algorithms\": [\n \"brotli\",\n \"gzip\"\n ],\n \"Switch\": \"on\"\n },\n \"ForceRedirect\": {\n \"RedirectStatusCode\": 302,\n \"Switch\": \"off\"\n },\n \"Grpc\": {\n \"Switch\": \"off\"\n },\n \"NetworkErrorLogging\": {\n \"Switch\": \"on\"\n },\n \"Https\": {\n \"ApplyType\": \"none\",\n \"CertInfo\": [],\n \"CipherSuite\": \"loose-v2023\",\n \"Hsts\": {\n \"IncludeSubDomains\": \"off\",\n \"MaxAge\": 0,\n \"Preload\": \"off\",\n \"Switch\": \"off\"\n },\n \"Http2\": \"on\",\n \"OcspStapling\": \"off\",\n \"TlsVersion\": [\n \"TLSv1\",\n \"TLSv1.1\",\n \"TLSv1.2\",\n \"TLSv1.3\"\n ]\n },\n \"ImageOptimize\": {\n \"Switch\": \"off\"\n },\n \"Ipv6\": {\n \"Switch\": \"off\"\n },\n \"MaxAge\": {\n \"FollowOrigin\": \"on\",\n \"MaxAgeTime\": 600\n },\n \"OfflineCache\": {\n \"Switch\": \"on\"\n },\n \"Origin\": {\n \"Origins\": [\n \"30.12.34.23\"\n ],\n \"BackupOrigins\": [\n \"30.12.34.11\"\n ],\n \"OriginPullProtocol\": \"follow\",\n \"CosPrivateAccess\": \"off\"\n },\n \"PostMaxSize\": {\n \"MaxSize\": 524288000,\n \"Switch\": \"on\"\n },\n \"Quic\": {\n \"Switch\": \"off\"\n },\n \"SmartRouting\": {\n \"Switch\": \"off\"\n },\n \"StandardDebug\": {\n \"AllowClientIPList\": [],\n \"ExpireTime\": \"1969-12-31T16:00:00Z\",\n \"Switch\": \"off\"\n },\n \"UpstreamHttp2\": {\n \"Switch\": \"off\"\n },\n \"WebSocket\": {\n \"Switch\": \"off\",\n \"Timeout\": 30\n },\n \"JITVideoProcess\": {\n \"Switch\": \"off\"\n },\n \"ZoneName\": \"wxlagame.com\"\n }\n }\n}",
|
|
1328
1356
|
"title": "Querying Site Configuration"
|
|
1329
1357
|
}
|
|
1330
1358
|
],
|
|
@@ -1692,28 +1720,28 @@
|
|
|
1692
1720
|
],
|
|
1693
1721
|
"ModifyL7AccSetting": [
|
|
1694
1722
|
{
|
|
1695
|
-
"document": "
|
|
1696
|
-
"input": "POST / HTTP/1.1\nHost: teo.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ModifyL7AccSetting\n<Common request parameters>\n\n{\n \"ZoneId\": \"zone-21xfqlh4qjee\",\n \"ZoneConfig\": {\n \"SmartRouting\": {\n \"Switch\": \"on\"\n },\n \"Cache\": {\n \"CustomTime\": {\n \"CacheTime\": 2592000,\n \"Switch\": \"off\"\n },\n \"FollowOrigin\": {\n \"DefaultCache\": \"on\",\n \"DefaultCacheStrategy\": \"on\",\n \"DefaultCacheTime\": 0,\n \"Switch\": \"on\"\n },\n \"NoCache\": {\n \"Switch\": \"off\"\n }\n },\n \"MaxAge\": {\n \"FollowOrigin\": \"on\",\n \"CacheTime\": 600\n },\n \"CacheKey\": {\n \"FullURLCache\": \"on\",\n \"IgnoreCase\": \"off\",\n \"QueryString\": {\n \"Action\": \"includeCustom\",\n \"Switch\": \"off\",\n \"Values\": []\n }\n },\n \"CachePrefresh\": {\n \"CacheTimePercent\": 90,\n \"Switch\": \"on\"\n },\n \"OfflineCache\": {\n \"Switch\": \"on\"\n },\n \"Compression\": {\n \"Algorithms\": [\n \"brotli\",\n \"gzip\"\n ],\n \"Switch\": \"on\"\n },\n \"ForceRedirectHTTPS\": {\n \"RedirectStatusCode\": 302,\n \"Switch\": \"off\"\n },\n \"HSTS\": {\n \"IncludeSubDomains\": \"off\",\n \"Timeout\": 0,\n \"Preload\": \"off\",\n \"Switch\": \"off\"\n },\n \"TLSConfig\": {\n \"Version\": [\n \"TLSv1\",\n \"TLSv1.1\",\n \"TLSv1.2\",\n \"TLSv1.3\"\n ],\n \"CipherSuite\": \"loose-v2023\"\n },\n \"OCSPStapling\": {\n \"Switch\": \"off\"\n },\n \"HTTP2\": {\n \"Switch\": \"off\"\n },\n \"QUIC\": {\n \"Switch\": \"off\"\n },\n \"UpstreamHTTP2\": {\n \"Switch\": \"off\"\n },\n \"IPv6\": {\n \"Switch\": \"off\"\n },\n \"WebSocket\": {\n \"Switch\": \"off\",\n \"Timeout\": 30\n },\n \"PostMaxSize\": {\n \"MaxSize\": 524288000,\n \"Switch\": \"on\"\n },\n \"ClientIPHeader\": {\n \"HeaderName\": \"\",\n \"Switch\": \"off\"\n },\n \"ClientIPCountry\": {\n \"HeaderName\": \"\",\n \"Switch\": \"off\"\n },\n \"Grpc\": {\n \"Switch\": \"off\"\n },\n \"AccelerateMainland\": {\n \"Switch\": \"off\"\n },\n \"StandardDebug\": {\n \"AllowClientIPList\": [],\n \"Expires\": \"1969-12-31T16:00:00Z\",\n \"Switch\": \"off\"\n }\n }\n}",
|
|
1723
|
+
"document": "This example shows you how to modify the global configuration for site acceleration.",
|
|
1724
|
+
"input": "POST / HTTP/1.1\nHost: teo.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ModifyL7AccSetting\n<Common request parameters>\n\n{\n \"ZoneId\": \"zone-21xfqlh4qjee\",\n \"ZoneConfig\": {\n \"SmartRouting\": {\n \"Switch\": \"on\"\n },\n \"Cache\": {\n \"CustomTime\": {\n \"CacheTime\": 2592000,\n \"Switch\": \"off\"\n },\n \"FollowOrigin\": {\n \"DefaultCache\": \"on\",\n \"DefaultCacheStrategy\": \"on\",\n \"DefaultCacheTime\": 0,\n \"Switch\": \"on\"\n },\n \"NoCache\": {\n \"Switch\": \"off\"\n }\n },\n \"MaxAge\": {\n \"FollowOrigin\": \"on\",\n \"CacheTime\": 600\n },\n \"CacheKey\": {\n \"FullURLCache\": \"on\",\n \"IgnoreCase\": \"off\",\n \"QueryString\": {\n \"Action\": \"includeCustom\",\n \"Switch\": \"off\",\n \"Values\": []\n }\n },\n \"CachePrefresh\": {\n \"CacheTimePercent\": 90,\n \"Switch\": \"on\"\n },\n \"OfflineCache\": {\n \"Switch\": \"on\"\n },\n \"Compression\": {\n \"Algorithms\": [\n \"brotli\",\n \"gzip\"\n ],\n \"Switch\": \"on\"\n },\n \"ForceRedirectHTTPS\": {\n \"RedirectStatusCode\": 302,\n \"Switch\": \"off\"\n },\n \"HSTS\": {\n \"IncludeSubDomains\": \"off\",\n \"Timeout\": 0,\n \"Preload\": \"off\",\n \"Switch\": \"off\"\n },\n \"TLSConfig\": {\n \"Version\": [\n \"TLSv1\",\n \"TLSv1.1\",\n \"TLSv1.2\",\n \"TLSv1.3\"\n ],\n \"CipherSuite\": \"loose-v2023\"\n },\n \"OCSPStapling\": {\n \"Switch\": \"off\"\n },\n \"HTTP2\": {\n \"Switch\": \"off\"\n },\n \"QUIC\": {\n \"Switch\": \"off\"\n },\n \"UpstreamHTTP2\": {\n \"Switch\": \"off\"\n },\n \"IPv6\": {\n \"Switch\": \"off\"\n },\n \"WebSocket\": {\n \"Switch\": \"off\",\n \"Timeout\": 30\n },\n \"PostMaxSize\": {\n \"MaxSize\": 524288000,\n \"Switch\": \"on\"\n },\n \"ClientIPHeader\": {\n \"HeaderName\": \"\",\n \"Switch\": \"off\"\n },\n \"ClientIPCountry\": {\n \"HeaderName\": \"\",\n \"Switch\": \"off\"\n },\n \"Grpc\": {\n \"Switch\": \"off\"\n },\n \"NetworkErrorLogging\": {\n \"Switch\": \"on\"\n },\n \"AccelerateMainland\": {\n \"Switch\": \"off\"\n },\n \"StandardDebug\": {\n \"AllowClientIPList\": [],\n \"Expires\": \"1969-12-31T16:00:00Z\",\n \"Switch\": \"off\"\n }\n }\n}",
|
|
1697
1725
|
"output": "{\n \"Response\": {\n \"RequestId\": \"5e0a2b4e-df6d-4d2a-ac39-1706cbf8a707\"\n }\n}",
|
|
1698
|
-
"title": "Modifying the Global
|
|
1726
|
+
"title": "Modifying the Global Configuration for Site Acceleration"
|
|
1699
1727
|
},
|
|
1700
1728
|
{
|
|
1701
|
-
"document": "
|
|
1729
|
+
"document": "This example shows you how to enable IPv6 access for all domain names under the site.",
|
|
1702
1730
|
"input": "POST / HTTP/1.1\nHost: teo.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ModifyL7AccSetting\n<Common request parameters>\n\n{\n \"ZoneId\": \"zone-21xfqlh4qjee\",\n \"ZoneConfig\": {\n \"IPv6\": {\n \"Switch\": \"on\"\n }\n }\n}",
|
|
1703
1731
|
"output": "{\n \"Response\": {\n \"RequestId\": \"5e0a2b4e-df6d-4d2a-ac39-1706cbf8a707\"\n }\n}",
|
|
1704
|
-
"title": "Modifying
|
|
1732
|
+
"title": "Modifying Site Acceleration Global IPv6 Access Configuration"
|
|
1705
1733
|
},
|
|
1706
1734
|
{
|
|
1707
|
-
"document": "This example shows you how to enable QUIC for all domain names under
|
|
1735
|
+
"document": "This example shows you how to enable QUIC for all domain names under the site.",
|
|
1708
1736
|
"input": "POST / HTTP/1.1\nHost: teo.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ModifyL7AccSetting\n<Common request parameters>\n\n{\n \"ZoneId\": \"zone-21xfqlh4qjee\",\n \"ZoneConfig\": {\n \"QUIC\": {\n \"Switch\": \"on\"\n }\n }\n}",
|
|
1709
1737
|
"output": "{\n \"Response\": {\n \"RequestId\": \"5e0a2b4e-df6d-4d2a-ac39-1706cbf8a707\"\n }\n}",
|
|
1710
|
-
"title": "Modifying
|
|
1738
|
+
"title": "Modifying Global QUIC Configuration for Site Acceleration"
|
|
1711
1739
|
},
|
|
1712
1740
|
{
|
|
1713
|
-
"document": "This example shows you how to configure the cache
|
|
1741
|
+
"document": "This example shows you how to configure the cache as no-cache for ALL domains under the site.",
|
|
1714
1742
|
"input": "POST / HTTP/1.1\nHost: teo.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ModifyL7AccSetting\n<Common request parameters>\n\n{\n \"ZoneId\": \"zone-21xfqlh4qjee\",\n \"ZoneConfig\": {\n \"Cache\": {\n \"NoCache\": {\n \"Switch\": \"on\"\n }\n }\n }\n}",
|
|
1715
1743
|
"output": "{\n \"Response\": {\n \"RequestId\": \"5e0a2b4e-df6d-4d2a-ac39-1706cbf8a707\"\n }\n}",
|
|
1716
|
-
"title": "Modifying Global Node Cache TTL Configuration
|
|
1744
|
+
"title": "Modifying the Global Node Cache TTL Configuration for Site Acceleration"
|
|
1717
1745
|
}
|
|
1718
1746
|
],
|
|
1719
1747
|
"ModifyLoadBalancer": [
|
|
@@ -1958,22 +1986,28 @@
|
|
|
1958
1986
|
],
|
|
1959
1987
|
"ModifyZoneSetting": [
|
|
1960
1988
|
{
|
|
1961
|
-
"document": "This example shows you how to modify
|
|
1962
|
-
"input": "POST / HTTP/1.1
|
|
1989
|
+
"document": "This example shows you how to modify site Ipv6 access configuration.",
|
|
1990
|
+
"input": "POST / HTTP/1.1\nHost: teo.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ModifyZoneSetting\n<Common request parameters>\n\n{\n \"ZoneId\": \"zone-21xfqlh4qjee\",\n \"Ipv6\": {\n \"Switch\": \"on\"\n }\n}",
|
|
1963
1991
|
"output": "{\n \"Response\": {\n \"RequestId\": \"5e0a2b4e-df6d-4d2a-ac39-1706cbf8a707\"\n }\n}",
|
|
1964
|
-
"title": "
|
|
1992
|
+
"title": "Modify Site Ipv6 Access Configuration"
|
|
1965
1993
|
},
|
|
1966
1994
|
{
|
|
1967
|
-
"document": "This example shows you how to modify the
|
|
1968
|
-
"input": "POST / HTTP/1.1
|
|
1995
|
+
"document": "This example shows you how to modify the Quic access configuration for a site.",
|
|
1996
|
+
"input": "POST / HTTP/1.1\nHost: teo.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ModifyZoneSetting\n<Common request parameters>\n\n{\n \"ZoneId\": \"zone-21xfqlh4qjee\",\n \"Quic\": {\n \"Switch\": \"on\"\n }\n}",
|
|
1969
1997
|
"output": "{\n \"Response\": {\n \"RequestId\": \"5e0a2b4e-df6d-4d2a-ac39-1706cbf8a707\"\n }\n}",
|
|
1970
|
-
"title": "Modifying the
|
|
1998
|
+
"title": "Modifying the Site Quic Access Configuration"
|
|
1971
1999
|
},
|
|
1972
2000
|
{
|
|
1973
|
-
"document": "This example shows you how to modify the cache expiration time
|
|
1974
|
-
"input": "POST / HTTP/1.1
|
|
2001
|
+
"document": "This example shows you how to modify the cache expiration time configuration for a site.",
|
|
2002
|
+
"input": "POST / HTTP/1.1\nHost: teo.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ModifyZoneSetting\n<Common request parameters>\n\n{\n \"ZoneId\": \"zone-21xfqlh4qjee\",\n \"CacheConfig\": {\n \"NoCache\": {\n \"Switch\": \"on\"\n }\n }\n}",
|
|
1975
2003
|
"output": "{\n \"Response\": {\n \"RequestId\": \"5e0a2b4e-df6d-4d2a-ac39-1706cbf8a707\"\n }\n}",
|
|
1976
|
-
"title": "Modifying the
|
|
2004
|
+
"title": "Modifying the Cache Expiration Time Configuration for a Site"
|
|
2005
|
+
},
|
|
2006
|
+
{
|
|
2007
|
+
"document": "This example shows you how to modify network error log configuration.",
|
|
2008
|
+
"input": "POST / HTTP/1.1\nHost: teo.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ModifyZoneSetting\n<Common request parameters>\n\n{\n \"ZoneId\": \"zone-3ivyxdb1d1kt\",\n \"NetworkErrorLogging\": {\n \"Switch\": \"on\"\n }\n}",
|
|
2009
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"e2c073b0-4859-4848-88f9-e357c81172cf\"\n }\n}",
|
|
2010
|
+
"title": "Modifying Network Error Log Configuration"
|
|
1977
2011
|
}
|
|
1978
2012
|
],
|
|
1979
2013
|
"ModifyZoneStatus": [
|