tccli 3.0.1183.1__py2.py3-none-any.whl → 3.0.1185.1__py2.py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (39) hide show
  1. tccli/__init__.py +1 -1
  2. tccli/services/bi/v20220105/api.json +9 -0
  3. tccli/services/cdb/v20170320/api.json +2 -2
  4. tccli/services/cdwdoris/v20211228/api.json +137 -0
  5. tccli/services/cdwdoris/v20211228/examples.json +1 -1
  6. tccli/services/cls/v20201016/api.json +1 -1
  7. tccli/services/cynosdb/cynosdb_client.py +65 -12
  8. tccli/services/cynosdb/v20190107/api.json +99 -0
  9. tccli/services/cynosdb/v20190107/examples.json +8 -0
  10. tccli/services/dlc/v20210125/api.json +48 -11
  11. tccli/services/dlc/v20210125/examples.json +4 -4
  12. tccli/services/dsgc/v20190723/api.json +9 -0
  13. tccli/services/ecc/v20181213/api.json +14 -12
  14. tccli/services/ecc/v20181213/examples.json +3 -3
  15. tccli/services/ess/v20201111/api.json +1 -1
  16. tccli/services/ess/v20201111/examples.json +4 -4
  17. tccli/services/essbasic/v20210526/examples.json +9 -9
  18. tccli/services/hunyuan/v20230901/api.json +1 -1
  19. tccli/services/lke/v20231130/api.json +1 -1
  20. tccli/services/oceanus/v20190422/api.json +9 -0
  21. tccli/services/oceanus/v20190422/examples.json +1 -1
  22. tccli/services/redis/v20180412/api.json +18 -13
  23. tccli/services/redis/v20180412/examples.json +2 -2
  24. tccli/services/ssl/ssl_client.py +65 -12
  25. tccli/services/ssl/v20191205/api.json +130 -0
  26. tccli/services/ssl/v20191205/examples.json +8 -0
  27. tccli/services/tcr/v20190924/api.json +3 -3
  28. tccli/services/tcr/v20190924/examples.json +1 -1
  29. tccli/services/thpc/thpc_client.py +276 -64
  30. tccli/services/thpc/v20230321/api.json +886 -12
  31. tccli/services/thpc/v20230321/examples.json +32 -0
  32. tccli/services/trtc/v20190722/api.json +2 -2
  33. tccli/services/waf/v20180125/api.json +3 -3
  34. tccli/services/waf/v20180125/examples.json +1 -1
  35. {tccli-3.0.1183.1.dist-info → tccli-3.0.1185.1.dist-info}/METADATA +2 -2
  36. {tccli-3.0.1183.1.dist-info → tccli-3.0.1185.1.dist-info}/RECORD +39 -39
  37. {tccli-3.0.1183.1.dist-info → tccli-3.0.1185.1.dist-info}/WHEEL +0 -0
  38. {tccli-3.0.1183.1.dist-info → tccli-3.0.1185.1.dist-info}/entry_points.txt +0 -0
  39. {tccli-3.0.1183.1.dist-info → tccli-3.0.1185.1.dist-info}/license_files/LICENSE +0 -0
@@ -28,6 +28,13 @@
28
28
  "output": "CheckCertificateChainResponse",
29
29
  "status": "online"
30
30
  },
31
+ "CheckCertificateDomainVerification": {
32
+ "document": "检查证书域名验证",
33
+ "input": "CheckCertificateDomainVerificationRequest",
34
+ "name": "检查证书域名验证",
35
+ "output": "CheckCertificateDomainVerificationResponse",
36
+ "status": "online"
37
+ },
31
38
  "CommitCertificateInformation": {
32
39
  "document": "提交证书订单。",
33
40
  "input": "CommitCertificateInformationRequest",
@@ -1728,6 +1735,43 @@
1728
1735
  ],
1729
1736
  "type": "object"
1730
1737
  },
1738
+ "CheckCertificateDomainVerificationRequest": {
1739
+ "document": "CheckCertificateDomainVerification请求参数结构体",
1740
+ "members": [
1741
+ {
1742
+ "disabled": false,
1743
+ "document": "证书ID。",
1744
+ "example": "无",
1745
+ "member": "string",
1746
+ "name": "CertificateId",
1747
+ "required": true,
1748
+ "type": "string"
1749
+ }
1750
+ ],
1751
+ "type": "object"
1752
+ },
1753
+ "CheckCertificateDomainVerificationResponse": {
1754
+ "document": "CheckCertificateDomainVerification返回参数结构体",
1755
+ "members": [
1756
+ {
1757
+ "disabled": false,
1758
+ "document": "域名验证结果\n注意:此字段可能返回 null,表示取不到有效值。",
1759
+ "example": "无",
1760
+ "member": "DomainValidationResult",
1761
+ "name": "VerificationResults",
1762
+ "required": true,
1763
+ "type": "list",
1764
+ "value_allowed_null": true
1765
+ },
1766
+ {
1767
+ "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
1768
+ "member": "string",
1769
+ "name": "RequestId",
1770
+ "type": "string"
1771
+ }
1772
+ ],
1773
+ "type": "object"
1774
+ },
1731
1775
  "ClbInstanceDetail": {
1732
1776
  "document": "clb实例详情",
1733
1777
  "members": [
@@ -6724,6 +6768,92 @@
6724
6768
  ],
6725
6769
  "type": "object"
6726
6770
  },
6771
+ "DomainValidationResult": {
6772
+ "document": "域名验证结果",
6773
+ "members": [
6774
+ {
6775
+ "disabled": false,
6776
+ "document": "域名。",
6777
+ "example": "qq.com",
6778
+ "member": "string",
6779
+ "name": "Domain",
6780
+ "required": true,
6781
+ "type": "string",
6782
+ "value_allowed_null": false
6783
+ },
6784
+ {
6785
+ "disabled": false,
6786
+ "document": "验证类型。\n注意:此字段可能返回 null,表示取不到有效值。",
6787
+ "example": "DNS",
6788
+ "member": "string",
6789
+ "name": "VerifyType",
6790
+ "required": true,
6791
+ "type": "string",
6792
+ "value_allowed_null": true
6793
+ },
6794
+ {
6795
+ "disabled": false,
6796
+ "document": "本地检查结果。",
6797
+ "example": "1",
6798
+ "member": "int64",
6799
+ "name": "LocalCheck",
6800
+ "required": true,
6801
+ "type": "int",
6802
+ "value_allowed_null": false
6803
+ },
6804
+ {
6805
+ "disabled": false,
6806
+ "document": "CA检查结果。",
6807
+ "example": "1",
6808
+ "member": "int64",
6809
+ "name": "CaCheck",
6810
+ "required": true,
6811
+ "type": "int",
6812
+ "value_allowed_null": false
6813
+ },
6814
+ {
6815
+ "disabled": false,
6816
+ "document": "检查失败原因。\n注意:此字段可能返回 null,表示取不到有效值。",
6817
+ "example": "无",
6818
+ "member": "string",
6819
+ "name": "LocalCheckFailReason",
6820
+ "required": true,
6821
+ "type": "string",
6822
+ "value_allowed_null": true
6823
+ },
6824
+ {
6825
+ "disabled": false,
6826
+ "document": "检查到的值。\n注意:此字段可能返回 null,表示取不到有效值。",
6827
+ "example": "无",
6828
+ "member": "string",
6829
+ "name": "CheckValue",
6830
+ "required": true,
6831
+ "type": "list",
6832
+ "value_allowed_null": true
6833
+ },
6834
+ {
6835
+ "disabled": false,
6836
+ "document": "是否频繁请求。",
6837
+ "example": "false",
6838
+ "member": "bool",
6839
+ "name": "Frequently",
6840
+ "required": true,
6841
+ "type": "bool",
6842
+ "value_allowed_null": false
6843
+ },
6844
+ {
6845
+ "disabled": false,
6846
+ "document": "是否已经签发。",
6847
+ "example": "false",
6848
+ "member": "bool",
6849
+ "name": "Issued",
6850
+ "required": true,
6851
+ "type": "bool",
6852
+ "value_allowed_null": false
6853
+ }
6854
+ ],
6855
+ "usage": "out"
6856
+ },
6727
6857
  "DownloadCertificateRequest": {
6728
6858
  "document": "DownloadCertificate请求参数结构体",
6729
6859
  "members": [
@@ -32,6 +32,14 @@
32
32
  "title": "对证书链进行检查"
33
33
  }
34
34
  ],
35
+ "CheckCertificateDomainVerification": [
36
+ {
37
+ "document": "",
38
+ "input": "POST / HTTP/1.1\nHost: ssl.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CheckCertificateDomainVerification\n<公共请求参数>\n\n{\n \"CertificateId\": \"xx\"\n}",
39
+ "output": "{\n \"Response\": {\n \"VerificationResults\": [\n {\n \"Domain\": \"xx\",\n \"CheckValue\": [\n \"xx\"\n ],\n \"LocalCheckFailReason\": \"xx\",\n \"LocalCheck\": 0,\n \"CaCheck\": 0,\n \"Frequently\": true,\n \"VerifyType\": \"xx\",\n \"Issued\": true\n }\n ],\n \"RequestId\": \"xx\"\n }\n}",
40
+ "title": "检查证书域名验证"
41
+ }
42
+ ],
35
43
  "CommitCertificateInformation": [
36
44
  {
37
45
  "document": "提交证书订单",
@@ -4363,7 +4363,7 @@
4363
4363
  "example": "无",
4364
4364
  "member": "CustomizedDomainInfo",
4365
4365
  "name": "DomainInfoList",
4366
- "required": true,
4366
+ "output_required": true,
4367
4367
  "type": "list",
4368
4368
  "value_allowed_null": true
4369
4369
  },
@@ -4373,7 +4373,7 @@
4373
4373
  "example": "10",
4374
4374
  "member": "int64",
4375
4375
  "name": "TotalCount",
4376
- "required": true,
4376
+ "output_required": true,
4377
4377
  "type": "int",
4378
4378
  "value_allowed_null": false
4379
4379
  },
@@ -6684,7 +6684,7 @@
6684
6684
  "example": "XXXX",
6685
6685
  "member": "string",
6686
6686
  "name": "RegistryId",
6687
- "required": true,
6687
+ "output_required": true,
6688
6688
  "type": "string",
6689
6689
  "value_allowed_null": false
6690
6690
  },
@@ -512,7 +512,7 @@
512
512
  {
513
513
  "document": "",
514
514
  "input": "https://tcr.tencentcloudapi.com/?Action=DescribeInstanceCustomizedDomain\n&RegistryId=tcr-12345\n&Limit=10\n&Offset=0\n&<公共请求参数>",
515
- "output": "{\n \"Response\": {\n \"RequestId\": \"xx\",\n \"DomainInfoList\": [\n {\n \"Status\": \"xx\",\n \"CertId\": \"xx\",\n \"RegistryId\": \"xx\",\n \"DomainName\": \"xx\"\n }\n ],\n \"TotalCount\": 10\n }\n}",
515
+ "output": "{\n \"Response\": {\n \"RequestId\": \"12445-5556-11\",\n \"DomainInfoList\": [\n {\n \"Status\": \"success\",\n \"CertId\": \"14568-152\",\n \"RegistryId\": \"tcr-12345\",\n \"DomainName\": \"tcr.test\"\n }\n ],\n \"TotalCount\": 10\n }\n}",
516
516
  "title": "查询实例自定义域名列表"
517
517
  }
518
518
  ],