tencentcloud-sdk-nodejs 4.1.232 → 4.1.233

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.
Files changed (25) hide show
  1. package/es/common/sdk_version.js +1 -1
  2. package/es/services/csip/v20221121/csip_client.js +178 -46
  3. package/es/services/iotexplorer/v20190423/iotexplorer_client.js +3 -0
  4. package/es/services/waf/v20180125/waf_client.js +5 -2
  5. package/package.json +1 -1
  6. package/tencentcloud/common/sdk_version.d.ts +1 -1
  7. package/tencentcloud/common/sdk_version.js +1 -1
  8. package/tencentcloud/services/apis/v20240801/apis_models.d.ts +108 -52
  9. package/tencentcloud/services/chdfs/v20201112/chdfs_models.d.ts +6 -6
  10. package/tencentcloud/services/csip/v20221121/csip_client.d.ts +223 -47
  11. package/tencentcloud/services/csip/v20221121/csip_client.js +333 -69
  12. package/tencentcloud/services/csip/v20221121/csip_models.d.ts +3181 -838
  13. package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +35 -44
  14. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +6 -2
  15. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +24 -48
  16. package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.d.ts +5 -1
  17. package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_client.js +6 -0
  18. package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_models.d.ts +30 -12
  19. package/tencentcloud/services/tcb/v20180608/tcb_client.d.ts +5 -5
  20. package/tencentcloud/services/tcb/v20180608/tcb_client.js +5 -5
  21. package/tencentcloud/services/tione/v20211111/tione_models.d.ts +101 -119
  22. package/tencentcloud/services/vod/v20180717/vod_models.d.ts +11 -9
  23. package/tencentcloud/services/waf/v20180125/waf_client.d.ts +7 -3
  24. package/tencentcloud/services/waf/v20180125/waf_client.js +9 -3
  25. package/tencentcloud/services/waf/v20180125/waf_models.d.ts +22 -0
@@ -106,6 +106,10 @@ export interface CreateModelServiceRequest {
106
106
  * <p>Fallback模型配置</p>
107
107
  */
108
108
  FallbackModels?: Array<TargetModelDTO>;
109
+ /**
110
+ * <p>模型协议</p>
111
+ */
112
+ ModelProtocol?: string;
109
113
  }
110
114
  /**
111
115
  * secretKey的出参
@@ -764,13 +768,17 @@ export interface ModifyModelServiceRequest {
764
768
  * <p>备份模型</p>
765
769
  */
766
770
  FallbackModels?: Array<TargetModelDTO>;
771
+ /**
772
+ * <p>模型类型</p>
773
+ */
774
+ ModelProtocol?: string;
767
775
  }
768
776
  /**
769
777
  * ModifyModel返回参数结构体
770
778
  */
771
779
  export interface ModifyModelResponse {
772
780
  /**
773
- * 结果集
781
+ * <p>结果集</p>
774
782
  */
775
783
  Data?: ResultIDVO;
776
784
  /**
@@ -963,37 +971,45 @@ export interface ResultIDVO {
963
971
  */
964
972
  export interface CreateModelRequest {
965
973
  /**
966
- * 实例
974
+ * <p>实例</p>
967
975
  */
968
976
  InstanceID: string;
969
977
  /**
970
- * 模型名称
978
+ * <p>模型名称</p>
971
979
  */
972
980
  Name: string;
973
981
  /**
974
- * 协议类型:http/https
982
+ * <p>协议类型:http/https</p>
975
983
  */
976
984
  HttpProtocolType: string;
977
985
  /**
978
- * 目标路径
986
+ * <p>目标路径</p>
979
987
  */
980
988
  TargetPath: string;
981
989
  /**
982
- * 目标服务器
990
+ * <p>目标服务器</p>
983
991
  */
984
992
  TargetHosts: Array<TargetHostDTO>;
985
993
  /**
986
- * 凭据ID
994
+ * <p>凭据ID</p>
987
995
  */
988
996
  CredentialID?: string;
989
997
  /**
990
- * https时,是否检查证书合法
998
+ * <p>https时,是否检查证书合法</p>
991
999
  */
992
1000
  CheckTargetCertsError?: boolean;
993
1001
  /**
994
- * http协议版本:1.1/2.0
1002
+ * <p>http协议版本:1.1/2.0</p>
995
1003
  */
996
1004
  HttpProtocolVersion?: string;
1005
+ /**
1006
+ * <p>model ID</p>
1007
+ */
1008
+ ModelID?: string;
1009
+ /**
1010
+ * <p>描述</p>
1011
+ */
1012
+ Description?: string;
997
1013
  }
998
1014
  /**
999
1015
  * DescribeModel请求参数结构体
@@ -1040,6 +1056,11 @@ export interface SensitiveDataCheckConfigDTO {
1040
1056
  注意:此字段可能返回 null,表示取不到有效值。
1041
1057
  */
1042
1058
  CheckItems?: Array<string>;
1059
+ /**
1060
+ * <p>检测上下文</p>
1061
+ 注意:此字段可能返回 null,表示取不到有效值。
1062
+ */
1063
+ ContextScope?: string;
1043
1064
  }
1044
1065
  /**
1045
1066
  * BindMcpSecurityRuleVO,重新定义了之前的McpSecurityRulesVO
@@ -1153,7 +1174,7 @@ export interface DeleteAgentAppModelServicesResponse {
1153
1174
  */
1154
1175
  export interface CreateModelResponse {
1155
1176
  /**
1156
- * 结果集
1177
+ * <p>结果集</p>
1157
1178
  */
1158
1179
  Data?: ResultIDVO;
1159
1180
  /**
@@ -1585,41 +1606,49 @@ export interface DeleteMcpServerRequest {
1585
1606
  */
1586
1607
  export interface ModifyModelRequest {
1587
1608
  /**
1588
- * 实例
1609
+ * <p>实例</p>
1589
1610
  */
1590
1611
  InstanceID: string;
1591
1612
  /**
1592
- * 模型ID
1613
+ * <p>模型ID</p>
1593
1614
  */
1594
1615
  ID: string;
1595
1616
  /**
1596
- * 模型名称
1617
+ * <p>模型名称</p>
1597
1618
  */
1598
1619
  Name?: string;
1599
1620
  /**
1600
- * 协议类型:http/https
1621
+ * <p>协议类型:http/https</p>
1601
1622
  */
1602
1623
  HttpProtocolType?: string;
1603
1624
  /**
1604
- * 目标路径
1625
+ * <p>目标路径</p>
1605
1626
  */
1606
1627
  TargetPath?: string;
1607
1628
  /**
1608
- * 目标服务器
1629
+ * <p>目标服务器</p>
1609
1630
  */
1610
1631
  TargetHosts?: Array<TargetHostDTO>;
1611
1632
  /**
1612
- * 凭据ID
1633
+ * <p>凭据ID</p>
1613
1634
  */
1614
1635
  CredentialID?: string;
1615
1636
  /**
1616
- * https时,是否检查证书合法
1637
+ * <p>https时,是否检查证书合法</p>
1617
1638
  */
1618
1639
  CheckTargetCertsError?: boolean;
1619
1640
  /**
1620
- * http协议版本:1.1/2.0
1641
+ * <p>http协议版本:1.1/2.0</p>
1621
1642
  */
1622
1643
  HttpProtocolVersion?: string;
1644
+ /**
1645
+ * <p>model ID</p>
1646
+ */
1647
+ ModelID?: string;
1648
+ /**
1649
+ * <p>描述</p>
1650
+ */
1651
+ Description?: string;
1623
1652
  }
1624
1653
  /**
1625
1654
  * 凭据详情响应
@@ -1710,41 +1739,45 @@ export interface DescribeAgentAppMcpServersResponse {
1710
1739
  */
1711
1740
  export interface DescribeModelServicesRequest {
1712
1741
  /**
1713
- * 实例
1742
+ * <p>实例</p>
1714
1743
  */
1715
1744
  InstanceID: string;
1716
1745
  /**
1717
- * 分页参数
1746
+ * <p>分页参数</p>
1718
1747
  */
1719
1748
  Offset?: number;
1720
1749
  /**
1721
- * 分页限制
1750
+ * <p>分页限制</p>
1722
1751
  */
1723
1752
  Limit?: number;
1724
1753
  /**
1725
- * ID列表
1754
+ * <p>ID列表</p>
1726
1755
  */
1727
1756
  IDs?: Array<string>;
1728
1757
  /**
1729
- * 排除的ID列表
1758
+ * <p>排除的ID列表</p>
1730
1759
  */
1731
1760
  NotIDs?: Array<string>;
1732
1761
  /**
1733
- * 状态:normal,disabled
1762
+ * <p>状态:normal,disabled</p>
1734
1763
  */
1735
1764
  Status?: string;
1736
1765
  /**
1737
- * 关键词
1766
+ * <p>关键词</p>
1738
1767
  */
1739
1768
  Keyword?: string;
1740
1769
  /**
1741
- * 模型ID
1770
+ * <p>模型ID</p>
1742
1771
  */
1743
1772
  ModelID?: string;
1744
1773
  /**
1745
- * 排序
1774
+ * <p>排序</p>
1746
1775
  */
1747
1776
  Sort?: DescribeModelServicesSort;
1777
+ /**
1778
+ * <p>模型类型,OpenAI或Anthropic</p>
1779
+ */
1780
+ ModelProtocol?: string;
1748
1781
  }
1749
1782
  /**
1750
1783
  * DescribeMcpServer请求参数结构体
@@ -1764,35 +1797,40 @@ export interface DescribeMcpServerRequest {
1764
1797
  */
1765
1798
  export interface TmsConfigDTO {
1766
1799
  /**
1767
- * 检测范围,请求/响应
1800
+ * <p>检测范围,请求/响应</p>
1768
1801
  注意:此字段可能返回 null,表示取不到有效值。
1769
1802
  */
1770
1803
  Scope?: Array<string>;
1771
1804
  /**
1772
- * 检测形式
1805
+ * <p>检测形式</p>
1773
1806
  注意:此字段可能返回 null,表示取不到有效值。
1774
1807
  */
1775
1808
  Mode?: string;
1776
1809
  /**
1777
- * 执行动作
1810
+ * <p>执行动作</p>
1778
1811
  注意:此字段可能返回 null,表示取不到有效值。
1779
1812
  */
1780
1813
  Action?: string;
1781
1814
  /**
1782
- * 合并请求检测event数,联动Mode字段sync
1815
+ * <p>合并请求检测event数,联动Mode字段sync</p>
1783
1816
  注意:此字段可能返回 null,表示取不到有效值。
1784
1817
  */
1785
1818
  MergeCount?: number;
1786
1819
  /**
1787
- * 风控策略
1820
+ * <p>风控策略</p>
1788
1821
  注意:此字段可能返回 null,表示取不到有效值。
1789
1822
  */
1790
1823
  BizType?: string;
1791
1824
  /**
1792
- * 响应拦截内容
1825
+ * <p>响应拦截内容</p>
1793
1826
  注意:此字段可能返回 null,表示取不到有效值。
1794
1827
  */
1795
1828
  InterceptMessage?: string;
1829
+ /**
1830
+ * <p>检测上下文</p>
1831
+ 注意:此字段可能返回 null,表示取不到有效值。
1832
+ */
1833
+ ContextScope?: string;
1796
1834
  }
1797
1835
  /**
1798
1836
  * 应用绑定模型服务入参
@@ -1893,65 +1931,73 @@ export interface ModifyAgentCredentialResponse {
1893
1931
  */
1894
1932
  export interface DescribeModelResponseVO {
1895
1933
  /**
1896
- * 腾讯云AppID
1934
+ * <p>腾讯云AppID</p>
1897
1935
  */
1898
1936
  AppID?: number;
1899
1937
  /**
1900
- * 腾讯云Uin
1938
+ * <p>腾讯云Uin</p>
1901
1939
  */
1902
1940
  Uin?: string;
1903
1941
  /**
1904
- * 实例ID
1942
+ * <p>实例ID</p>
1905
1943
  */
1906
1944
  InstanceID?: string;
1907
1945
  /**
1908
- * 模型ID
1946
+ * <p>模型ID</p>
1909
1947
  */
1910
1948
  ID?: string;
1911
1949
  /**
1912
- * 模型名称
1950
+ * <p>模型名称</p>
1913
1951
  */
1914
1952
  Name?: string;
1915
1953
  /**
1916
- * 凭据ID
1954
+ * <p>凭据ID</p>
1917
1955
  */
1918
1956
  CredentialID?: string;
1919
1957
  /**
1920
- * 凭据名称
1958
+ * <p>凭据名称</p>
1921
1959
  */
1922
1960
  CredentialName?: string;
1923
1961
  /**
1924
- * http协议类型
1962
+ * <p>http协议类型</p>
1925
1963
  */
1926
1964
  HttpProtocolType?: string;
1927
1965
  /**
1928
- * https时,是否校验目标证书
1966
+ * <p>https时,是否校验目标证书</p>
1929
1967
  */
1930
1968
  CheckTargetCertsError?: boolean;
1931
1969
  /**
1932
- * http协议版本:1.1/2.0
1970
+ * <p>http协议版本:1.1/2.0</p>
1933
1971
  */
1934
1972
  HttpProtocolVersion?: string;
1935
1973
  /**
1936
- * 目标路径
1974
+ * <p>目标路径</p>
1937
1975
  */
1938
1976
  TargetPath?: string;
1939
1977
  /**
1940
- * 目标器列表
1978
+ * <p>目标器列表</p>
1941
1979
  */
1942
1980
  TargetHosts?: Array<TargetHostDTO>;
1943
1981
  /**
1944
- * 被模型服务使用的个数
1982
+ * <p>被模型服务使用的个数</p>
1945
1983
  */
1946
1984
  ModelServiceCount?: number;
1947
1985
  /**
1948
- * 创建时间
1986
+ * <p>创建时间</p>
1949
1987
  */
1950
1988
  CreateTime?: string;
1951
1989
  /**
1952
- * 最后修改时间
1990
+ * <p>最后修改时间</p>
1953
1991
  */
1954
1992
  LastUpdateTime?: string;
1993
+ /**
1994
+ * <p>model ID</p>
1995
+ */
1996
+ ModelID?: string;
1997
+ /**
1998
+ * <p>描述</p>
1999
+ */
2000
+ Description?: string;
1955
2001
  }
1956
2002
  /**
1957
2003
  * DeleteAgentCredential请求参数结构体
@@ -2082,15 +2128,20 @@ export interface DeleteAgentAppMcpServersResponse {
2082
2128
  */
2083
2129
  export interface PromptModerateConfigDTO {
2084
2130
  /**
2085
- * 执行动作
2131
+ * <p>执行动作</p>
2086
2132
  注意:此字段可能返回 null,表示取不到有效值。
2087
2133
  */
2088
2134
  Action?: string;
2089
2135
  /**
2090
- * 响应拦截内容
2136
+ * <p>响应拦截内容</p>
2091
2137
  注意:此字段可能返回 null,表示取不到有效值。
2092
2138
  */
2093
2139
  InterceptMessage?: string;
2140
+ /**
2141
+ * <p>检测上下文</p>
2142
+ 注意:此字段可能返回 null,表示取不到有效值。
2143
+ */
2144
+ ContextScope?: string;
2094
2145
  }
2095
2146
  /**
2096
2147
  * TargetHostDTO
@@ -2596,6 +2647,11 @@ export interface DescribeModelServiceResponseVO {
2596
2647
  注意:此字段可能返回 null,表示取不到有效值。
2597
2648
  */
2598
2649
  FallbackModels?: Array<TargetModelDTO>;
2650
+ /**
2651
+ * <p>模型类型</p>
2652
+ 注意:此字段可能返回 null,表示取不到有效值。
2653
+ */
2654
+ ModelProtocol?: string;
2599
2655
  }
2600
2656
  /**
2601
2657
  * DescribeModelsSort
@@ -2752,7 +2808,7 @@ export interface DescribeModelsResponse {
2752
2808
  */
2753
2809
  export interface DescribeModelServicesResponse {
2754
2810
  /**
2755
- * 结果集
2811
+ * <p>结果集</p>
2756
2812
  */
2757
2813
  Data?: DescribeModelServicesResponseVO;
2758
2814
  /**
@@ -614,27 +614,27 @@ export interface FileSystem {
614
614
  */
615
615
  export interface RestoreTask {
616
616
  /**
617
- * 回热任务ID
617
+ * <p>回热任务ID</p>
618
618
  */
619
619
  RestoreTaskId?: number;
620
620
  /**
621
- * 回热任务文件路径
621
+ * <p>回热任务文件路径,不支持目录和通配符</p>
622
622
  */
623
623
  FilePath?: string;
624
624
  /**
625
- * 回热任务类型(1:标准;2:极速;3:批量,暂时仅支持标准)
625
+ * <p>回热任务类型(1:标准;2:极速;3:批量,暂时仅支持标准)</p>
626
626
  */
627
627
  Type?: number;
628
628
  /**
629
- * 指定恢复出的临时副本的有效时长(单位天)
629
+ * <p>指定恢复出的临时副本的有效时长(单位天)</p>
630
630
  */
631
631
  Days?: number;
632
632
  /**
633
- * 回热任务状态(1:绑定文件中;2:绑定文件完成;3:文件回热中;4:文件回热完成)
633
+ * <p>回热任务状态(1:绑定文件中;2:绑定文件完成;3:文件回热中;4:文件回热完成)</p>
634
634
  */
635
635
  Status?: number;
636
636
  /**
637
- * 创建时间
637
+ * <p>创建时间</p>
638
638
  */
639
639
  CreateTime?: string;
640
640
  }