From 82105094ef023a1c471300033c0e023550971412 Mon Sep 17 00:00:00 2001 From: tencentcloudapi Date: Wed, 15 Feb 2023 08:06:48 +0800 Subject: [PATCH] release 4.0.539 --- CHANGELOG.md | 225 +++++++ SERVICE_CHANGELOG.md | 344 ++++++++--- package-lock.json | 4 +- package.json | 2 +- products.md | 50 +- src/common/sdk_version.ts | 2 +- src/services/bma/index.ts | 2 + src/services/bma/v20221115/bma_client.ts | 79 +++ src/services/bma/v20221115/bma_models.ts | 146 +++++ src/services/bma/v20221115/index.ts | 6 + src/services/bmeip/v20180625/bmeip_client.ts | 4 +- src/services/bmeip/v20180625/bmeip_models.ts | 10 +- src/services/car/v20220110/car_models.ts | 2 +- src/services/cls/v20201016/cls_client.ts | 4 +- src/services/cls/v20201016/cls_models.ts | 6 +- src/services/cwp/v20180228/cwp_models.ts | 20 +- .../cynosdb/v20190107/cynosdb_client.ts | 43 +- .../cynosdb/v20190107/cynosdb_models.ts | 214 +++++-- .../dnspod/v20210323/dnspod_client.ts | 151 +++-- .../dnspod/v20210323/dnspod_models.ts | 550 +++++++++++++++++- .../domain/v20180808/domain_models.ts | 1 + .../faceid/v20180301/faceid_models.ts | 10 +- .../iotvideo/v20211125/iotvideo_models.ts | 6 + src/services/lcic/v20220817/lcic_client.ts | 12 + src/services/lcic/v20220817/lcic_models.ts | 40 ++ src/services/nlp/v20190408/nlp_client.ts | 5 - src/services/nlp/v20190408/nlp_models.ts | 4 +- src/services/redis/v20180412/redis_models.ts | 6 +- src/services/tione/v20211111/tione_models.ts | 37 +- src/services/tke/v20180525/tke_models.ts | 26 +- src/services/tsf/v20180326/tsf_models.ts | 12 + src/services/tts/v20190823/tts_models.ts | 10 +- src/services/vod/v20180717/vod_client.ts | 1 - src/services/vod/v20180717/vod_models.ts | 27 +- .../wedata/v20210820/wedata_client.ts | 2 + .../wedata/v20210820/wedata_models.ts | 85 +++ tencentcloud/common/sdk_version.d.ts | 2 +- tencentcloud/common/sdk_version.js | 2 +- tencentcloud/services/bma/index.d.ts | 4 + tencentcloud/services/bma/index.js | 2 + .../services/bma/v20221115/bma_client.d.ts | 26 + .../services/bma/v20221115/bma_client.js | 55 ++ .../services/bma/v20221115/bma_models.d.ts | 112 ++++ .../services/bma/v20221115/bma_models.js | 18 + .../services/bma/v20221115/index.d.ts | 6 + tencentcloud/services/bma/v20221115/index.js | 9 + .../bmeip/v20180625/bmeip_client.d.ts | 4 +- .../services/bmeip/v20180625/bmeip_client.js | 4 +- .../bmeip/v20180625/bmeip_models.d.ts | 10 +- .../services/car/v20220110/car_models.d.ts | 2 +- .../services/cls/v20201016/cls_client.d.ts | 4 +- .../services/cls/v20201016/cls_client.js | 4 +- .../services/cls/v20201016/cls_models.d.ts | 6 +- .../services/cwp/v20180228/cwp_models.d.ts | 17 +- .../cynosdb/v20190107/cynosdb_client.d.ts | 14 +- .../cynosdb/v20190107/cynosdb_client.js | 18 +- .../cynosdb/v20190107/cynosdb_models.d.ts | 182 ++++-- .../dnspod/v20210323/dnspod_client.d.ts | 50 +- .../dnspod/v20210323/dnspod_client.js | 72 ++- .../dnspod/v20210323/dnspod_models.d.ts | 467 ++++++++++++++- .../domain/v20180808/domain_models.d.ts | 1 + .../faceid/v20180301/faceid_models.d.ts | 10 +- .../iotvideo/v20211125/iotvideo_models.d.ts | 5 + .../services/lcic/v20220817/lcic_client.d.ts | 6 +- .../services/lcic/v20220817/lcic_client.js | 6 + .../services/lcic/v20220817/lcic_models.d.ts | 34 ++ .../services/nlp/v20190408/nlp_client.d.ts | 5 - .../services/nlp/v20190408/nlp_client.js | 5 - .../services/nlp/v20190408/nlp_models.d.ts | 4 +- .../redis/v20180412/redis_models.d.ts | 6 +- .../tione/v20211111/tione_models.d.ts | 31 +- .../services/tke/v20180525/tke_models.d.ts | 26 +- .../services/tsf/v20180326/tsf_models.d.ts | 10 + .../services/tts/v20190823/tts_models.d.ts | 8 +- .../services/vod/v20180717/vod_client.d.ts | 1 - .../services/vod/v20180717/vod_client.js | 1 - .../services/vod/v20180717/vod_models.d.ts | 27 +- .../wedata/v20210820/wedata_models.d.ts | 70 +++ test/bma.v20221115.test.js | 61 ++ test/cynosdb.v20190107.test.js | 18 +- test/dnspod.v20210323.test.js | 88 ++- test/lcic.v20220817.test.js | 10 + 82 files changed, 3198 insertions(+), 473 deletions(-) create mode 100644 src/services/bma/v20221115/bma_client.ts create mode 100644 src/services/bma/v20221115/bma_models.ts create mode 100644 src/services/bma/v20221115/index.ts create mode 100644 tencentcloud/services/bma/v20221115/bma_client.d.ts create mode 100644 tencentcloud/services/bma/v20221115/bma_client.js create mode 100644 tencentcloud/services/bma/v20221115/bma_models.d.ts create mode 100644 tencentcloud/services/bma/v20221115/bma_models.js create mode 100644 tencentcloud/services/bma/v20221115/index.d.ts create mode 100644 tencentcloud/services/bma/v20221115/index.js create mode 100644 test/bma.v20221115.test.js diff --git a/CHANGELOG.md b/CHANGELOG.md index 1638bb0e3..ab08002d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,228 @@ +# Release 4.0.539 + +## 品牌经营管家(bma) 版本:2022-11-15 + +### 第 1 次发布 + +发布时间:2023-02-14 17:30:50 + +本次发布包含了以下内容: + +改善已有的文档。 + +新增接口: + +* [CreateBPFakeAPP](https://cloud.tencent.com/document/api/1296/86532) +* [CreateBPFakeAPPList](https://cloud.tencent.com/document/api/1296/86531) +* [CreateBPFakeURL](https://cloud.tencent.com/document/api/1296/86530) +* [CreateBPFakeURLs](https://cloud.tencent.com/document/api/1296/86529) + + + +## 品牌经营管家(bma) 版本:2021-06-24 + + + +## 主机安全(cwp) 版本:2018-02-28 + +### 第 69 次发布 + +发布时间:2023-02-15 01:21:32 + +本次发布包含了以下内容: + +改善已有的文档。 + +修改数据结构: + +* [WarningInfoObj](https://cloud.tencent.com/document/api/296/19867#WarningInfoObj) + + * 新增成员:HostRange, Count + +* [WarningObject](https://cloud.tencent.com/document/api/296/19867#WarningObject) + + * 新增成员:HostRange + + + + +## TDSQL-C MySQL 版(cynosdb) 版本:2019-01-07 + +### 第 43 次发布 + +发布时间:2023-02-15 01:22:55 + +本次发布包含了以下内容: + +改善已有的文档。 + +新增接口: + +* [DescribeZones](https://cloud.tencent.com/document/api/1003/86547) + +新增数据结构: + +* [Module](https://cloud.tencent.com/document/api/1003/48097#Module) +* [SaleRegion](https://cloud.tencent.com/document/api/1003/48097#SaleRegion) +* [SaleZone](https://cloud.tencent.com/document/api/1003/48097#SaleZone) + + + +## DNSPod(dnspod) 版本:2021-03-23 + +### 第 13 次发布 + +发布时间:2023-02-15 01:26:19 + +本次发布包含了以下内容: + +改善已有的文档。 + +新增接口: + +* [DeleteDomainBatch](https://cloud.tencent.com/document/api/1427/86549) +* [DescribeDomainPreview](https://cloud.tencent.com/document/api/1427/86553) +* [DescribeDomainWhois](https://cloud.tencent.com/document/api/1427/86552) +* [DescribePackageDetail](https://cloud.tencent.com/document/api/1427/86551) +* [DescribeRecordExistExceptDefaultNS](https://cloud.tencent.com/document/api/1427/86548) +* [DescribeVASStatistic](https://cloud.tencent.com/document/api/1427/86550) + +新增数据结构: + +* [DeleteDomainBatchDetail](https://cloud.tencent.com/document/api/1427/56185#DeleteDomainBatchDetail) +* [PackageDetailItem](https://cloud.tencent.com/document/api/1427/56185#PackageDetailItem) +* [PreviewDetail](https://cloud.tencent.com/document/api/1427/56185#PreviewDetail) +* [VASStatisticItem](https://cloud.tencent.com/document/api/1427/56185#VASStatisticItem) +* [WhoisContact](https://cloud.tencent.com/document/api/1427/56185#WhoisContact) +* [WhoisContactAddress](https://cloud.tencent.com/document/api/1427/56185#WhoisContactAddress) +* [WhoisInfo](https://cloud.tencent.com/document/api/1427/56185#WhoisInfo) + + + +## 物联网智能视频服务(iotvideo) 版本:2021-11-25 + +### 第 12 次发布 + +发布时间:2023-02-15 01:37:52 + +本次发布包含了以下内容: + +改善已有的文档。 + +修改数据结构: + +* [BonusInfo](https://cloud.tencent.com/document/api/1131/76635#BonusInfo) + + * 新增成员:Status + + + + +## 物联网智能视频服务(iotvideo) 版本:2020-12-15 + + + +## 物联网智能视频服务(iotvideo) 版本:2019-11-26 + + + +## 低代码互动课堂(lcic) 版本:2022-08-17 + +### 第 11 次发布 + +发布时间:2023-02-15 01:40:03 + +本次发布包含了以下内容: + +改善已有的文档。 + +新增接口: + +* [DescribeCurrentMemberList](https://cloud.tencent.com/document/api/1639/86554) + + + +## 腾讯云 TI 平台 TI-ONE(tione) 版本:2021-11-11 + +### 第 18 次发布 + +发布时间:2023-02-15 02:04:48 + +本次发布包含了以下内容: + +改善已有的文档。 + +修改数据结构: + +* [DatasetGroup](https://cloud.tencent.com/document/api/851/75051#DatasetGroup) + + * 新增成员:OcrScene, AnnotationKeyStatus, ContentType + +* [DatasetInfo](https://cloud.tencent.com/document/api/851/75051#DatasetInfo) + + * 新增成员:OcrScene, AnnotationKeyStatus + +* [SpecPrice](https://cloud.tencent.com/document/api/851/75051#SpecPrice) + + * 新增成员:SpecCount + + + + +## 腾讯云 TI 平台 TI-ONE(tione) 版本:2019-10-22 + + + +## 微服务平台 TSF(tsf) 版本:2018-03-26 + +### 第 86 次发布 + +发布时间:2023-02-15 02:08:50 + +本次发布包含了以下内容: + +改善已有的文档。 + +修改接口: + +* [ModifyNamespace](https://cloud.tencent.com/document/api/649/85851) + + * 新增出参:Result + + +修改数据结构: + +* [VmGroupOther](https://cloud.tencent.com/document/api/649/36099#VmGroupOther) + + * 新增成员:HealthCheckSettings + + + + +## 数据开发治理平台 WeData(wedata) 版本:2021-08-20 + +### 第 18 次发布 + +发布时间:2023-02-15 02:14:22 + +本次发布包含了以下内容: + +改善已有的文档。 + +修改接口: + +* [GenHiveTableDDLSql](https://cloud.tencent.com/document/api/1267/82483) + + * 新增入参:Partitions, Properties, TableMode, TableVersion, UpsertFlag, TableComment, AddDataFiles, AddEqualityDeletes, AddPositionDeletes, AddDeleteFiles + + +新增数据结构: + +* [Partition](https://cloud.tencent.com/document/api/1267/76336#Partition) +* [Property](https://cloud.tencent.com/document/api/1267/76336#Property) + + + # Release 4.0.538 ## 云数据库 MySQL(cdb) 版本:2017-03-20 diff --git a/SERVICE_CHANGELOG.md b/SERVICE_CHANGELOG.md index 8b04f9adf..8ee8be4e7 100644 --- a/SERVICE_CHANGELOG.md +++ b/SERVICE_CHANGELOG.md @@ -1,10 +1,10 @@ # 本版本更新包含以下内容: -## 云数据库 MySQL(cdb) 版本:2017-03-20 +## 品牌经营管家(bma) 版本:2022-11-15 -### 第 112 次发布 +### 第 1 次发布 -发布时间:2023-02-14 01:08:31 +发布时间:2023-02-14 17:30:50 本次发布包含了以下内容: @@ -12,20 +12,22 @@ 新增接口: -* [DescribeBackupEncryptionStatus](https://cloud.tencent.com/document/api/236/86508) -* [ModifyBackupEncryptionStatus](https://cloud.tencent.com/document/api/236/86507) +* [CreateBPFakeAPP](https://cloud.tencent.com/document/api/1296/86532) +* [CreateBPFakeAPPList](https://cloud.tencent.com/document/api/1296/86531) +* [CreateBPFakeURL](https://cloud.tencent.com/document/api/1296/86530) +* [CreateBPFakeURLs](https://cloud.tencent.com/document/api/1296/86529) -**预下线接口**: -* UpgradeCDBProxy +## 品牌经营管家(bma) 版本:2021-06-24 -## DNSPod(dnspod) 版本:2021-03-23 -### 第 12 次发布 +## 主机安全(cwp) 版本:2018-02-28 -发布时间:2023-02-14 01:21:31 +### 第 69 次发布 + +发布时间:2023-02-15 01:21:32 本次发布包含了以下内容: @@ -33,63 +35,75 @@ 修改数据结构: -* [RecordListItem](https://cloud.tencent.com/document/api/1427/56185#RecordListItem) +* [WarningInfoObj](https://cloud.tencent.com/document/api/296/19867#WarningInfoObj) - * 新增成员:DefaultNS + * 新增成员:HostRange, Count + +* [WarningObject](https://cloud.tencent.com/document/api/296/19867#WarningObject) + * 新增成员:HostRange -## 弹性 MapReduce(emr) 版本:2019-01-03 + +## TDSQL-C MySQL 版(cynosdb) 版本:2019-01-07 ### 第 43 次发布 -发布时间:2023-02-14 01:26:03 +发布时间:2023-02-15 01:22:55 本次发布包含了以下内容: 改善已有的文档。 -修改数据结构: +新增接口: -* [ClusterInstancesInfo](https://cloud.tencent.com/document/api/589/33981#ClusterInstancesInfo) +* [DescribeZones](https://cloud.tencent.com/document/api/1003/86547) - * 新增成员:IsCvmReplace +新增数据结构: +* [Module](https://cloud.tencent.com/document/api/1003/48097#Module) +* [SaleRegion](https://cloud.tencent.com/document/api/1003/48097#SaleRegion) +* [SaleZone](https://cloud.tencent.com/document/api/1003/48097#SaleZone) -## 腾讯电子签企业版(ess) 版本:2020-11-11 +## DNSPod(dnspod) 版本:2021-03-23 -### 第 44 次发布 +### 第 13 次发布 -发布时间:2023-02-14 01:26:39 +发布时间:2023-02-15 01:26:19 本次发布包含了以下内容: 改善已有的文档。 -修改接口: - -* [DescribeOrganizationSeals](https://cloud.tencent.com/document/api/1323/82453) - - * 新增入参:Agent - +新增接口: -修改数据结构: +* [DeleteDomainBatch](https://cloud.tencent.com/document/api/1427/86549) +* [DescribeDomainPreview](https://cloud.tencent.com/document/api/1427/86553) +* [DescribeDomainWhois](https://cloud.tencent.com/document/api/1427/86552) +* [DescribePackageDetail](https://cloud.tencent.com/document/api/1427/86551) +* [DescribeRecordExistExceptDefaultNS](https://cloud.tencent.com/document/api/1427/86548) +* [DescribeVASStatistic](https://cloud.tencent.com/document/api/1427/86550) -* [Agent](https://cloud.tencent.com/document/api/1323/70369#Agent) +新增数据结构: - * 新增成员:AppId, ProxyAppId, ProxyOrganizationId, ProxyOperator +* [DeleteDomainBatchDetail](https://cloud.tencent.com/document/api/1427/56185#DeleteDomainBatchDetail) +* [PackageDetailItem](https://cloud.tencent.com/document/api/1427/56185#PackageDetailItem) +* [PreviewDetail](https://cloud.tencent.com/document/api/1427/56185#PreviewDetail) +* [VASStatisticItem](https://cloud.tencent.com/document/api/1427/56185#VASStatisticItem) +* [WhoisContact](https://cloud.tencent.com/document/api/1427/56185#WhoisContact) +* [WhoisContactAddress](https://cloud.tencent.com/document/api/1427/56185#WhoisContactAddress) +* [WhoisInfo](https://cloud.tencent.com/document/api/1427/56185#WhoisInfo) +## 物联网智能视频服务(iotvideo) 版本:2021-11-25 -## 人脸融合(facefusion) 版本:2022-09-27 +### 第 12 次发布 -### 第 3 次发布 - -发布时间:2023-02-14 01:27:28 +发布时间:2023-02-15 01:37:52 本次发布包含了以下内容: @@ -97,45 +111,42 @@ 修改数据结构: -* [MaterialFaces](https://cloud.tencent.com/document/api/670/85619#MaterialFaces) - - * **修改成员**:FaceId, FaceInfo +* [BonusInfo](https://cloud.tencent.com/document/api/1131/76635#BonusInfo) + * 新增成员:Status -## 人脸融合(facefusion) 版本:2018-12-01 +## 物联网智能视频服务(iotvideo) 版本:2020-12-15 -## 低代码互动课堂(lcic) 版本:2022-08-17 -### 第 10 次发布 +## 物联网智能视频服务(iotvideo) 版本:2019-11-26 -发布时间:2023-02-14 01:35:04 -本次发布包含了以下内容: -改善已有的文档。 +## 低代码互动课堂(lcic) 版本:2022-08-17 -修改接口: +### 第 11 次发布 -* [DescribeRoom](https://cloud.tencent.com/document/api/1639/80941) +发布时间:2023-02-15 01:40:03 - * 新增出参:Status +本次发布包含了以下内容: -* [DescribeRoomStatistics](https://cloud.tencent.com/document/api/1639/81545) +改善已有的文档。 - * 新增出参:RealStartTime, RealEndTime +新增接口: +* [DescribeCurrentMemberList](https://cloud.tencent.com/document/api/1639/86554) ## 腾讯云 TI 平台 TI-ONE(tione) 版本:2021-11-11 -### 第 17 次发布 +### 第 18 次发布 -发布时间:2023-02-14 01:56:09 +发布时间:2023-02-15 02:04:48 本次发布包含了以下内容: @@ -143,9 +154,17 @@ 修改数据结构: -* [EngineVersion](https://cloud.tencent.com/document/api/851/75051#EngineVersion) +* [DatasetGroup](https://cloud.tencent.com/document/api/851/75051#DatasetGroup) - * 新增成员:IsSupportIntEightQuantization + * 新增成员:OcrScene, AnnotationKeyStatus, ContentType + +* [DatasetInfo](https://cloud.tencent.com/document/api/851/75051#DatasetInfo) + + * 新增成员:OcrScene, AnnotationKeyStatus + +* [SpecPrice](https://cloud.tencent.com/document/api/851/75051#SpecPrice) + + * 新增成员:SpecCount @@ -156,61 +175,51 @@ ## 微服务平台 TSF(tsf) 版本:2018-03-26 -### 第 85 次发布 +### 第 86 次发布 -发布时间:2023-02-14 01:59:38 +发布时间:2023-02-15 02:08:50 本次发布包含了以下内容: 改善已有的文档。 -修改数据结构: - -* [ImageRepository](https://cloud.tencent.com/document/api/649/36099#ImageRepository) - - * 新增成员:Public - -* [KafkaDeliveryConfig](https://cloud.tencent.com/document/api/649/36099#KafkaDeliveryConfig) +修改接口: - * 新增成员:KafkaAddress +* [ModifyNamespace](https://cloud.tencent.com/document/api/649/85851) -* [ScalableRule](https://cloud.tencent.com/document/api/649/36099#ScalableRule) + * 新增出参:Result - * 新增成员:DisableMetricAS, EnableCronAS - * **修改成员**:RuleId, Name, ExpandVmCountLimit, ShrinkVmCountLimit, GroupCount, Desc, Description +修改数据结构: -* [UnitNamespace](https://cloud.tencent.com/document/api/649/36099#UnitNamespace) +* [VmGroupOther](https://cloud.tencent.com/document/api/649/36099#VmGroupOther) - * 新增成员:GatewayInstanceId, CreatedTime, UpdatedTime + * 新增成员:HealthCheckSettings -## 私有网络(vpc) 版本:2017-03-12 +## 数据开发治理平台 WeData(wedata) 版本:2021-08-20 -### 第 141 次发布 +### 第 18 次发布 -发布时间:2023-02-14 02:03:04 +发布时间:2023-02-15 02:14:22 本次发布包含了以下内容: 改善已有的文档。 -新增接口: - -* [DescribeNetworkAccountType](https://cloud.tencent.com/document/api/215/86509) - 修改接口: -* [CheckNetDetectState](https://cloud.tencent.com/document/api/215/38700) +* [GenHiveTableDDLSql](https://cloud.tencent.com/document/api/1267/82483) - * **修改入参**:NextHopType, NextHopDestination + * 新增入参:Partitions, Properties, TableMode, TableVersion, UpsertFlag, TableComment, AddDataFiles, AddEqualityDeletes, AddPositionDeletes, AddDeleteFiles -* [DescribeVpcIpv6Addresses](https://cloud.tencent.com/document/api/215/34465) - * 新增入参:SubnetId +新增数据结构: +* [Partition](https://cloud.tencent.com/document/api/1267/76336#Partition) +* [Property](https://cloud.tencent.com/document/api/1267/76336#Property) @@ -8772,6 +8781,25 @@ +## 品牌经营管家(bma) 版本:2022-11-15 + +### 第 1 次发布 + +发布时间:2023-02-14 17:30:50 + +本次发布包含了以下内容: + +改善已有的文档。 + +新增接口: + +* [[CreateBPFakeAPP](https://cloud.tencent.com/document/api/1296/86532)](https://cloud.tencent.com/document/api/#/#) +* [[CreateBPFakeAPPList](https://cloud.tencent.com/document/api/1296/86531)](https://cloud.tencent.com/document/api/#/#) +* [[CreateBPFakeURL](https://cloud.tencent.com/document/api/1296/86530)](https://cloud.tencent.com/document/api/#/#) +* [[CreateBPFakeURLs](https://cloud.tencent.com/document/api/1296/86529)](https://cloud.tencent.com/document/api/#/#) + + + ## 黑石弹性公网IP(bmeip) 版本:2018-06-25 @@ -12762,8 +12790,8 @@ 新增接口: -* [[DescribeBackupEncryptionStatus](https://cloud.tencent.com/document/api/236/86508)](https://cloud.tencent.com/document/api/#/#) -* [[ModifyBackupEncryptionStatus](https://cloud.tencent.com/document/api/236/86507)](https://cloud.tencent.com/document/api/#/#) +* [DescribeBackupEncryptionStatus](https://cloud.tencent.com/document/api/236/86508) +* [ModifyBackupEncryptionStatus](https://cloud.tencent.com/document/api/236/86507) **预下线接口**: @@ -30261,6 +30289,25 @@ ## 主机安全(cwp) 版本:2018-02-28 +### 第 69 次发布 + +发布时间:2023-02-15 01:21:32 + +本次发布包含了以下内容: + +改善已有的文档。 + +修改数据结构: + +* [WarningInfoObj](https://cloud.tencent.com/document/api/296/19867#WarningInfoObj) + + * 新增成员:HostRange, Count + +* [WarningObject](https://cloud.tencent.com/document/api/296/19867#WarningObject) + + * 新增成员:HostRange + + ### 第 68 次发布 发布时间:2023-02-13 01:29:52 @@ -32575,6 +32622,24 @@ ## TDSQL-C MySQL 版(cynosdb) 版本:2019-01-07 +### 第 43 次发布 + +发布时间:2023-02-15 01:22:55 + +本次发布包含了以下内容: + +改善已有的文档。 + +新增接口: + +* [[DescribeZones](https://cloud.tencent.com/document/api/1003/86547)](https://cloud.tencent.com/document/api/#/#) + +新增数据结构: + +* [[Module](https://cloud.tencent.com/document/api/1003/48097#Module)](https://cloud.tencent.com/document/api/1003/48097#[Module](https://cloud.tencent.com/document/api/1003/48097#Module)) +* [[SaleRegion](https://cloud.tencent.com/document/api/1003/48097#SaleRegion)](https://cloud.tencent.com/document/api/1003/48097#[SaleRegion](https://cloud.tencent.com/document/api/1003/48097#SaleRegion)) +* [[SaleZone](https://cloud.tencent.com/document/api/1003/48097#SaleZone)](https://cloud.tencent.com/document/api/1003/48097#[SaleZone](https://cloud.tencent.com/document/api/1003/48097#SaleZone)) + ### 第 42 次发布 发布时间:2023-02-07 01:22:36 @@ -37241,6 +37306,33 @@ ## DNSPod(dnspod) 版本:2021-03-23 +### 第 13 次发布 + +发布时间:2023-02-15 01:26:19 + +本次发布包含了以下内容: + +改善已有的文档。 + +新增接口: + +* [[DeleteDomainBatch](https://cloud.tencent.com/document/api/1427/86549)](https://cloud.tencent.com/document/api/#/#) +* [[DescribeDomainPreview](https://cloud.tencent.com/document/api/1427/86553)](https://cloud.tencent.com/document/api/#/#) +* [[DescribeDomainWhois](https://cloud.tencent.com/document/api/1427/86552)](https://cloud.tencent.com/document/api/#/#) +* [[DescribePackageDetail](https://cloud.tencent.com/document/api/1427/86551)](https://cloud.tencent.com/document/api/#/#) +* [[DescribeRecordExistExceptDefaultNS](https://cloud.tencent.com/document/api/1427/86548)](https://cloud.tencent.com/document/api/#/#) +* [[DescribeVASStatistic](https://cloud.tencent.com/document/api/1427/86550)](https://cloud.tencent.com/document/api/#/#) + +新增数据结构: + +* [[DeleteDomainBatchDetail](https://cloud.tencent.com/document/api/1427/56185#DeleteDomainBatchDetail)](https://cloud.tencent.com/document/api/1427/56185#[DeleteDomainBatchDetail](https://cloud.tencent.com/document/api/1427/56185#DeleteDomainBatchDetail)) +* [[PackageDetailItem](https://cloud.tencent.com/document/api/1427/56185#PackageDetailItem)](https://cloud.tencent.com/document/api/1427/56185#[PackageDetailItem](https://cloud.tencent.com/document/api/1427/56185#PackageDetailItem)) +* [[PreviewDetail](https://cloud.tencent.com/document/api/1427/56185#PreviewDetail)](https://cloud.tencent.com/document/api/1427/56185#[PreviewDetail](https://cloud.tencent.com/document/api/1427/56185#PreviewDetail)) +* [[VASStatisticItem](https://cloud.tencent.com/document/api/1427/56185#VASStatisticItem)](https://cloud.tencent.com/document/api/1427/56185#[VASStatisticItem](https://cloud.tencent.com/document/api/1427/56185#VASStatisticItem)) +* [[WhoisContact](https://cloud.tencent.com/document/api/1427/56185#WhoisContact)](https://cloud.tencent.com/document/api/1427/56185#[WhoisContact](https://cloud.tencent.com/document/api/1427/56185#WhoisContact)) +* [[WhoisContactAddress](https://cloud.tencent.com/document/api/1427/56185#WhoisContactAddress)](https://cloud.tencent.com/document/api/1427/56185#[WhoisContactAddress](https://cloud.tencent.com/document/api/1427/56185#WhoisContactAddress)) +* [[WhoisInfo](https://cloud.tencent.com/document/api/1427/56185#WhoisInfo)](https://cloud.tencent.com/document/api/1427/56185#[WhoisInfo](https://cloud.tencent.com/document/api/1427/56185#WhoisInfo)) + ### 第 12 次发布 发布时间:2023-02-14 01:21:31 @@ -54167,6 +54259,21 @@ ## 物联网智能视频服务(iotvideo) 版本:2021-11-25 +### 第 12 次发布 + +发布时间:2023-02-15 01:37:52 + +本次发布包含了以下内容: + +改善已有的文档。 + +修改数据结构: + +* [BonusInfo](https://cloud.tencent.com/document/api/1131/76635#BonusInfo) + + * 新增成员:Status + + ### 第 11 次发布 发布时间:2023-02-06 15:45:46 @@ -55743,6 +55850,18 @@ ## 低代码互动课堂(lcic) 版本:2022-08-17 +### 第 11 次发布 + +发布时间:2023-02-15 01:40:03 + +本次发布包含了以下内容: + +改善已有的文档。 + +新增接口: + +* [[DescribeCurrentMemberList](https://cloud.tencent.com/document/api/1639/86554)](https://cloud.tencent.com/document/api/#/#) + ### 第 10 次发布 发布时间:2023-02-14 01:35:04 @@ -88703,6 +88822,29 @@ ## 腾讯云 TI 平台 TI-ONE(tione) 版本:2021-11-11 +### 第 18 次发布 + +发布时间:2023-02-15 02:04:48 + +本次发布包含了以下内容: + +改善已有的文档。 + +修改数据结构: + +* [DatasetGroup](https://cloud.tencent.com/document/api/851/75051#DatasetGroup) + + * 新增成员:OcrScene, AnnotationKeyStatus, ContentType + +* [DatasetInfo](https://cloud.tencent.com/document/api/851/75051#DatasetInfo) + + * 新增成员:OcrScene, AnnotationKeyStatus + +* [SpecPrice](https://cloud.tencent.com/document/api/851/75051#SpecPrice) + + * 新增成员:SpecCount + + ### 第 17 次发布 发布时间:2023-02-14 01:56:09 @@ -94731,6 +94873,28 @@ ## 微服务平台 TSF(tsf) 版本:2018-03-26 +### 第 86 次发布 + +发布时间:2023-02-15 02:08:50 + +本次发布包含了以下内容: + +改善已有的文档。 + +修改接口: + +* [ModifyNamespace](https://cloud.tencent.com/document/api/649/85851) + + * 新增出参:Result + + +修改数据结构: + +* [VmGroupOther](https://cloud.tencent.com/document/api/649/36099#VmGroupOther) + + * 新增成员:HealthCheckSettings + + ### 第 85 次发布 发布时间:2023-02-14 01:59:38 @@ -101494,7 +101658,7 @@ 新增接口: -* [[DescribeNetworkAccountType](https://cloud.tencent.com/document/api/215/86509)](https://cloud.tencent.com/document/api/#/#) +* [DescribeNetworkAccountType](https://cloud.tencent.com/document/api/215/86509) 修改接口: @@ -105401,6 +105565,26 @@ ## 数据开发治理平台 WeData(wedata) 版本:2021-08-20 +### 第 18 次发布 + +发布时间:2023-02-15 02:14:22 + +本次发布包含了以下内容: + +改善已有的文档。 + +修改接口: + +* [GenHiveTableDDLSql](https://cloud.tencent.com/document/api/1267/82483) + + * 新增入参:Partitions, Properties, TableMode, TableVersion, UpsertFlag, TableComment, AddDataFiles, AddEqualityDeletes, AddPositionDeletes, AddDeleteFiles + + +新增数据结构: + +* [[Partition](https://cloud.tencent.com/document/api/1267/76336#Partition)](https://cloud.tencent.com/document/api/1267/76336#[Partition](https://cloud.tencent.com/document/api/1267/76336#Partition)) +* [[Property](https://cloud.tencent.com/document/api/1267/76336#Property)](https://cloud.tencent.com/document/api/1267/76336#[Property](https://cloud.tencent.com/document/api/1267/76336#Property)) + ### 第 17 次发布 发布时间:2023-01-12 01:49:24 diff --git a/package-lock.json b/package-lock.json index 5550dd997..fbf9f54c9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "tencentcloud-sdk-nodejs", - "version": "4.0.538", + "version": "4.0.539", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "tencentcloud-sdk-nodejs", - "version": "4.0.538", + "version": "4.0.539", "license": "Apache-2.0", "dependencies": { "form-data": "^3.0.0", diff --git a/package.json b/package.json index 23f1d0c60..8d0800743 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tencentcloud-sdk-nodejs", - "version": "4.0.538", + "version": "4.0.539", "description": "腾讯云 API NODEJS SDK", "main": "tencentcloud/index.js", "scripts": { diff --git a/products.md b/products.md index d796825be..f481596db 100644 --- a/products.md +++ b/products.md @@ -6,7 +6,7 @@ | advisor | [云顾问](https://cloud.tencent.com/document/product/1264) | 2023-02-01 01:01:26 | | af | [借贷反欺诈](https://cloud.tencent.com/document/product/668) | 2022-05-23 06:01:54 | | afc | [定制建模](https://cloud.tencent.com/document/product/1029) | 2023-02-01 01:01:37 | -| ame | [正版曲库直通车](https://cloud.tencent.com/document/product/1155) | 2023-02-14 01:01:56 | +| ame | [正版曲库直通车](https://cloud.tencent.com/document/product/1155) | 2023-02-15 01:06:04 | | ams | [音频内容安全](https://cloud.tencent.com/document/product/1219) | 2022-12-29 10:01:58 | | anicloud | [动效素材服务](https://cloud.tencent.com/document/product/1641) | 2022-12-21 18:48:21 | | antiddos | [T-Sec-DDoS防护(Anti-DDoS)](https://cloud.tencent.com/document/product/1021) | 2023-02-10 01:02:06 | @@ -25,8 +25,8 @@ | billing | [费用中心](https://cloud.tencent.com/document/product/555) | 2023-02-09 01:05:16 | | bizlive | [商业直播](https://cloud.tencent.com/document/product) | 2020-03-10 01:08:07 | | bm | [黑石物理服务器CPM](https://cloud.tencent.com/document/product/386) | 2023-01-11 11:01:36 | -| bma | [品牌经营管家](https://cloud.tencent.com/document/product/1296) | 2023-01-17 01:09:15 | -| bmeip | [黑石弹性公网IP](https://cloud.tencent.com/document/product/1028) | 2022-04-19 06:04:56 | +| bma | [品牌经营管家](https://cloud.tencent.com/document/product/1296) | 2023-02-14 17:30:50 | +| bmeip | [黑石弹性公网IP](https://cloud.tencent.com/document/product/1028) | 2023-02-15 01:10:21 | | bmlb | [黑石负载均衡](https://cloud.tencent.com/document/product/1027) | 2022-04-04 06:09:37 | | bmvpc | [黑石私有网络](https://cloud.tencent.com/document/product/1024) | 2022-04-15 06:02:36 | | bpaas | [商业流程服务](https://cloud.tencent.com/document/product/1083) | 2022-12-15 01:10:28 | @@ -35,7 +35,7 @@ | btoe | [区块链可信取证](https://cloud.tencent.com/document/product/1259) | 2023-01-12 01:05:12 | | cam | [访问管理](https://cloud.tencent.com/document/product/598) | 2023-02-01 01:06:11 | | captcha | [验证码](https://cloud.tencent.com/document/product/1110) | 2022-12-15 01:11:14 | -| car | [应用云渲染](https://cloud.tencent.com/document/product/1547) | 2023-01-09 01:07:04 | +| car | [应用云渲染](https://cloud.tencent.com/document/product/1547) | 2023-02-15 01:12:22 | | casb | [云访问安全代理](https://cloud.tencent.com/document/product/1303) | 2022-12-26 10:53:16 | | cat | [云拨测](https://cloud.tencent.com/document/product/280) | 2022-12-12 01:11:14 | | cbs | [云硬盘](https://cloud.tencent.com/document/product/362) | 2023-02-10 01:08:35 | @@ -58,16 +58,16 @@ | cloudaudit | [云审计](https://cloud.tencent.com/document/product/629) | 2023-02-07 01:15:35 | | cloudhsm | [云加密机](https://cloud.tencent.com/document/product/639) | 2022-12-14 01:17:29 | | cloudstudio | [Cloud Studio(云端 IDE)](https://cloud.tencent.com/document/product/1039) | 2022-10-31 06:18:55 | -| cls | [日志服务](https://cloud.tencent.com/document/product/614) | 2023-02-14 01:13:41 | +| cls | [日志服务](https://cloud.tencent.com/document/product/614) | 2023-02-15 01:18:16 | | cme | [多媒体创作引擎](https://cloud.tencent.com/document/product/1156) | 2023-02-09 01:15:56 | | cmq | [消息队列 CMQ](https://cloud.tencent.com/document/product/406) | 2022-11-16 06:15:44 | | cms | [内容安全](https://cloud.tencent.com/document/product) | 2020-10-29 08:03:08 | | cpdp | [企业收付平台](https://cloud.tencent.com/document/product/1122) | 2023-02-01 01:13:56 | | cr | [金融联络机器人](https://cloud.tencent.com/document/product/656) | 2021-02-24 08:03:24 | | cvm | [云服务器](https://cloud.tencent.com/document/product/213) | 2023-02-10 01:22:56 | -| cwp | [主机安全](https://cloud.tencent.com/document/product/296) | 2023-02-13 01:29:52 | +| cwp | [主机安全](https://cloud.tencent.com/document/product/296) | 2023-02-15 01:21:32 | | cws | [漏洞扫描服务](https://cloud.tencent.com/document/product) | 2019-11-22 12:16:15 | -| cynosdb | [TDSQL-C MySQL 版](https://cloud.tencent.com/document/product/1003) | 2023-02-07 01:22:36 | +| cynosdb | [TDSQL-C MySQL 版](https://cloud.tencent.com/document/product/1003) | 2023-02-15 01:22:55 | | dasb | [T-Sec-堡垒机(BH)](https://cloud.tencent.com/document/product/1025) | 2023-02-07 01:23:16 | | dataintegration | [数据接入平台](https://cloud.tencent.com/document/product/1591) | 2022-07-26 15:32:15 | | dayu | [DDoS 高防包](https://cloud.tencent.com/document/product/1021) | 2023-01-13 01:19:41 | @@ -76,8 +76,8 @@ | dc | [专线接入](https://cloud.tencent.com/document/product/216) | 2022-10-26 06:29:47 | | dcdb | [TDSQL MySQL 版](https://cloud.tencent.com/document/product/557) | 2023-02-02 01:18:41 | | dlc | [数据湖计算 DLC](https://cloud.tencent.com/document/product/1342) | 2023-02-10 01:28:27 | -| dnspod | [DNSPod](https://cloud.tencent.com/document/product/1427) | 2023-02-14 01:21:31 | -| domain | [域名注册](https://cloud.tencent.com/document/product/242) | 2023-02-14 01:22:47 | +| dnspod | [DNSPod](https://cloud.tencent.com/document/product/1427) | 2023-02-15 01:26:19 | +| domain | [域名注册](https://cloud.tencent.com/document/product/242) | 2023-02-15 01:27:06 | | drm | [数字版权管理](https://cloud.tencent.com/document/product/1000) | 2022-04-04 06:38:48 | | ds | [文档服务](https://cloud.tencent.com/document/product/869) | 2023-02-01 01:21:28 | | dtf | [分布式事务](https://cloud.tencent.com/document/product/1224) | 2022-04-04 06:38:57 | @@ -90,10 +90,10 @@ | eis | [数据连接器](https://cloud.tencent.com/document/product/1270) | 2022-11-16 06:22:42 | | emr | [弹性 MapReduce](https://cloud.tencent.com/document/product/589) | 2023-02-14 01:26:03 | | es | [Elasticsearch Service](https://cloud.tencent.com/document/product/845) | 2023-02-01 01:24:04 | -| ess | [腾讯电子签企业版](https://cloud.tencent.com/document/product/1323) | 2023-02-14 01:26:39 | +| ess | [腾讯电子签企业版](https://cloud.tencent.com/document/product/1323) | 2023-02-14 15:01:40 | | essbasic | [腾讯电子签(基础版)](https://cloud.tencent.com/document/product/1420) | 2023-02-13 01:39:50 | | facefusion | [人脸融合](https://cloud.tencent.com/document/product/670) | 2023-02-14 01:27:28 | -| faceid | [人脸核身](https://cloud.tencent.com/document/product/1007) | 2023-02-01 01:25:17 | +| faceid | [人脸核身](https://cloud.tencent.com/document/product/1007) | 2023-02-15 01:31:45 | | fmu | [人脸试妆](https://cloud.tencent.com/document/product/1172) | 2023-02-02 01:28:41 | | ft | [人像变换](https://cloud.tencent.com/document/product/1202) | 2022-04-04 06:43:12 | | gaap | [全球应用加速](https://cloud.tencent.com/document/product/608) | 2023-02-01 01:25:50 | @@ -116,13 +116,13 @@ | iotcloud | [物联网通信](https://cloud.tencent.com/document/product/634) | 2022-08-16 06:27:22 | | iotexplorer | [物联网开发平台](https://cloud.tencent.com/document/product/1081) | 2022-12-12 01:29:57 | | iottid | [物联网设备身份认证](https://cloud.tencent.com/document/product/1086) | 2022-04-04 06:49:46 | -| iotvideo | [物联网智能视频服务](https://cloud.tencent.com/document/product/1131) | 2023-02-06 15:45:46 | +| iotvideo | [物联网智能视频服务](https://cloud.tencent.com/document/product/1131) | 2023-02-15 01:37:52 | | iotvideoindustry | [物联网智能视频服务(行业版)](https://cloud.tencent.com/document/product/1361) | 2022-11-17 06:31:48 | | irp | [智能推荐平台](https://cloud.tencent.com/document/product/1541) | 2023-02-14 01:34:13 | | ivld | [媒体智能标签](https://cloud.tencent.com/document/product/1509) | 2022-10-28 11:32:11 | | keewidb | [云数据库 KeeWiDB](https://cloud.tencent.com/document/product/1520) | 2023-02-07 16:41:11 | | kms | [密钥管理系统](https://cloud.tencent.com/document/product/573) | 2022-12-13 10:37:12 | -| lcic | [低代码互动课堂](https://cloud.tencent.com/document/product/1639) | 2023-02-14 01:35:04 | +| lcic | [低代码互动课堂](https://cloud.tencent.com/document/product/1639) | 2023-02-15 01:40:03 | | lighthouse | [轻量应用服务器](https://cloud.tencent.com/document/product/1207) | 2023-02-02 01:35:45 | | live | [云直播CSS](https://cloud.tencent.com/document/product/267) | 2023-02-14 01:36:28 | | lowcode | [云开发低码](https://cloud.tencent.com/document/product/1301) | 2022-04-04 06:56:51 | @@ -140,7 +140,7 @@ | ms | [移动应用安全](https://cloud.tencent.com/document/product/283) | 2023-01-11 01:32:47 | | msp | [迁移服务平台](https://cloud.tencent.com/document/product/659) | 2022-04-04 07:00:13 | | mvj | [营销价值判断](https://cloud.tencent.com/document/product) | 2020-03-19 08:11:44 | -| nlp | [自然语言处理](https://cloud.tencent.com/document/product/271) | 2022-12-15 10:27:58 | +| nlp | [自然语言处理](https://cloud.tencent.com/document/product/271) | 2023-02-15 01:45:01 | | npp | [号码保护](https://cloud.tencent.com/document/product) | 2020-04-22 08:00:22 | | oceanus | [流计算 Oceanus](https://cloud.tencent.com/document/product/849) | 2023-01-31 01:44:52 | | ocr | [文字识别](https://cloud.tencent.com/document/product/866) | 2023-01-10 01:36:47 | @@ -151,7 +151,7 @@ | privatedns | [私有域解析 Private DNS](https://cloud.tencent.com/document/product/1338) | 2022-12-09 01:52:05 | | pts | [云压测](https://cloud.tencent.com/document/product/1484) | 2023-02-07 01:48:09 | | rce | [全栈式风控引擎](https://cloud.tencent.com/document/product/1343) | 2022-09-23 06:43:17 | -| redis | [云数据库Redis](https://cloud.tencent.com/document/product/239) | 2023-02-08 01:55:08 | +| redis | [云数据库Redis](https://cloud.tencent.com/document/product/239) | 2023-02-15 01:47:47 | | region | [地域管理系统](https://cloud.tencent.com/document/product/1596) | 2022-12-28 01:09:18 | | rkp | [风险探针](https://cloud.tencent.com/document/product/1169) | 2022-04-04 07:04:04 | | rp | [注册保护](https://cloud.tencent.com/document/product/1191) | 2022-04-04 07:04:06 | @@ -178,7 +178,7 @@ | tbm | [](https://cloud.tencent.com/document/product) | 2019-03-29 14:49:11 | | tbp | [腾讯智能对话平台](https://cloud.tencent.com/document/product/1060) | 2022-04-04 07:09:07 | | tcaplusdb | [游戏数据库 TcaplusDB](https://cloud.tencent.com/document/product/596) | 2023-01-11 01:39:23 | -| tcb | [云开发 CloudBase](https://cloud.tencent.com/document/product/876) | 2023-02-10 01:58:55 | +| tcb | [云开发 CloudBase](https://cloud.tencent.com/document/product/876) | 2023-02-15 01:53:15 | | tcbr | [云托管 CloudBase Run](https://cloud.tencent.com/document/product/1243) | 2023-02-14 01:48:14 | | tcex | [腾讯云释义](https://cloud.tencent.com/document/product/1266) | 2022-07-21 06:17:29 | | tci | [腾讯智学课堂分析](https://cloud.tencent.com/document/product) | 2020-08-24 08:06:03 | @@ -190,35 +190,35 @@ | tdmq | [消息队列 TDMQ](https://cloud.tencent.com/document/product/1179) | 2023-02-10 02:03:51 | | tds | [设备安全](https://cloud.tencent.com/document/product/1628) | 2022-12-06 07:10:10 | | tem | [弹性微服务 TEM](https://cloud.tencent.com/document/product/1371) | 2023-02-09 02:12:10 | -| teo | [边缘安全加速平台](https://cloud.tencent.com/document/product/1552) | 2023-02-09 02:15:06 | -| thpc | [高性能计算平台](https://cloud.tencent.com/document/product/1527) | 2023-02-08 02:08:58 | +| teo | [边缘安全加速平台](https://cloud.tencent.com/document/product/1552) | 2023-02-15 01:58:46 | +| thpc | [高性能计算平台](https://cloud.tencent.com/document/product/1527) | 2023-02-15 02:03:41 | | tia | [智能钛机器学习](https://cloud.tencent.com/document/product/851) | 2021-10-21 11:12:52 | | tic | [资源编排 TIC](https://cloud.tencent.com/document/product/1213) | 2022-10-31 06:55:14 | | ticm | [智能鉴黄](https://cloud.tencent.com/document/product/864) | 2021-01-07 08:08:15 | | tics | [威胁情报云查服务](https://cloud.tencent.com/document/product/1013) | 2022-04-04 07:16:59 | | tiems | [腾讯云 TI 平台 TI-EMS ](https://cloud.tencent.com/document/product/1120) | 2022-07-19 06:19:39 | | tiia | [图像分析](https://cloud.tencent.com/document/product/865) | 2023-02-08 02:09:17 | -| tione | [腾讯云 TI 平台 TI-ONE](https://cloud.tencent.com/document/product/851) | 2023-02-14 01:56:09 | +| tione | [腾讯云 TI 平台 TI-ONE](https://cloud.tencent.com/document/product/851) | 2023-02-15 02:04:48 | | tiw | [互动白板](https://cloud.tencent.com/document/product/1137) | 2023-01-16 02:13:33 | -| tke | [容器服务](https://cloud.tencent.com/document/product/457) | 2023-02-14 01:56:56 | +| tke | [容器服务](https://cloud.tencent.com/document/product/457) | 2023-02-15 02:05:40 | | tkgdq | [腾讯知识图谱数据查询](https://cloud.tencent.com/document/product) | 2020-03-10 00:51:44 | | tms | [文本内容安全](https://cloud.tencent.com/document/product/1124) | 2022-11-18 06:55:59 | | tmt | [机器翻译](https://cloud.tencent.com/document/product/551) | 2023-01-09 01:52:45 | | trdp | [流量风险决策平台](https://cloud.tencent.com/document/product/1604) | 2022-12-07 07:14:03 | | trp | [T-Sec-安心平台(RP)](https://cloud.tencent.com/document/product/1458) | 2023-01-31 02:06:12 | -| trtc | [实时音视频](https://cloud.tencent.com/document/product/647) | 2023-01-12 01:44:46 | +| trtc | [实时音视频](https://cloud.tencent.com/document/product/647) | 2023-02-15 02:08:18 | | tse | [微服务引擎 TSE](https://cloud.tencent.com/document/product/1364) | 2023-02-10 02:12:51 | -| tsf | [微服务平台 TSF](https://cloud.tencent.com/document/product/649) | 2023-02-14 01:59:38 | +| tsf | [微服务平台 TSF](https://cloud.tencent.com/document/product/649) | 2023-02-15 02:08:50 | | tsw | [微服务观测平台 TSW](https://cloud.tencent.com/document/product/1311) | 2022-10-31 06:59:44 | -| tts | [语音合成](https://cloud.tencent.com/document/product/1073) | 2023-02-10 02:14:51 | +| tts | [语音合成](https://cloud.tencent.com/document/product/1073) | 2023-02-15 02:10:16 | | ump | [客流数字化平台](https://cloud.tencent.com/document/product/1320) | 2022-04-04 07:22:44 | | vm | [视频内容安全](https://cloud.tencent.com/document/product/1265) | 2022-11-16 06:46:30 | | vms | [语音消息](https://cloud.tencent.com/document/product/1128) | 2022-04-04 07:22:54 | -| vod | [云点播](https://cloud.tencent.com/document/product/266) | 2023-02-10 02:15:24 | +| vod | [云点播](https://cloud.tencent.com/document/product/266) | 2023-02-15 02:10:52 | | vpc | [私有网络](https://cloud.tencent.com/document/product/215) | 2023-02-14 02:03:04 | | waf | [Web 应用防火墙](https://cloud.tencent.com/document/product/627) | 2023-02-06 02:56:05 | | wav | [企业微信汽车行业版](https://cloud.tencent.com/document/product/1318) | 2022-10-12 07:10:28 | -| wedata | [数据开发治理平台 WeData](https://cloud.tencent.com/document/product/1267) | 2023-02-01 02:12:04 | +| wedata | [数据开发治理平台 WeData](https://cloud.tencent.com/document/product/1267) | 2023-02-15 02:14:22 | | wss | [SSL证书管理服务](https://cloud.tencent.com/document/product) | 2020-04-01 08:53:44 | | yinsuda | [音速达直播音乐版权引擎](https://cloud.tencent.com/document/product/1592) | 2023-01-09 01:59:51 | | youmall | [](https://cloud.tencent.com/document/product) | 2019-01-11 11:24:15 | diff --git a/src/common/sdk_version.ts b/src/common/sdk_version.ts index 750d9bc76..401417c41 100755 --- a/src/common/sdk_version.ts +++ b/src/common/sdk_version.ts @@ -1 +1 @@ -export const sdkVersion = "4.0.538" +export const sdkVersion = "4.0.539" diff --git a/src/services/bma/index.ts b/src/services/bma/index.ts index 4d85cd174..03588499d 100644 --- a/src/services/bma/index.ts +++ b/src/services/bma/index.ts @@ -1,5 +1,7 @@ import { v20210624 } from "./v20210624" +import { v20221115 } from "./v20221115" export const bma = { v20210624: v20210624, + v20221115: v20221115, } diff --git a/src/services/bma/v20221115/bma_client.ts b/src/services/bma/v20221115/bma_client.ts new file mode 100644 index 000000000..1943d563d --- /dev/null +++ b/src/services/bma/v20221115/bma_client.ts @@ -0,0 +1,79 @@ +/* eslint-disable @typescript-eslint/no-unused-vars */ +/* + * Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +import { AbstractClient } from "../../../common/abstract_client" +import { ClientConfig } from "../../../common/interface" +import { + CreateBPFakeAPPResponse, + CreateBPFakeAPPRequest, + CreateBPFakeAPPListRequest, + CreateBPFakeURLRequest, + CreateBPFakeAPPListResponse, + CreateBPFakeURLResponse, + CreateBPFakeURLsRequest, + CreateBPFakeURLsResponse, +} from "./bma_models" + +/** + * bma client + * @class + */ +export class Client extends AbstractClient { + constructor(clientConfig: ClientConfig) { + super("bma.tencentcloudapi.com", "2022-11-15", clientConfig) + } + + /** + * 仿冒应用举报 + */ + async CreateBPFakeAPP( + req: CreateBPFakeAPPRequest, + cb?: (error: string, rep: CreateBPFakeAPPResponse) => void + ): Promise { + return this.request("CreateBPFakeAPP", req, cb) + } + + /** + * 仿冒网址举报 + */ + async CreateBPFakeURL( + req: CreateBPFakeURLRequest, + cb?: (error: string, rep: CreateBPFakeURLResponse) => void + ): Promise { + return this.request("CreateBPFakeURL", req, cb) + } + + /** + * 批量仿冒网址举报 + */ + async CreateBPFakeURLs( + req: CreateBPFakeURLsRequest, + cb?: (error: string, rep: CreateBPFakeURLsResponse) => void + ): Promise { + return this.request("CreateBPFakeURLs", req, cb) + } + + /** + * 批量仿冒应用举报 + */ + async CreateBPFakeAPPList( + req: CreateBPFakeAPPListRequest, + cb?: (error: string, rep: CreateBPFakeAPPListResponse) => void + ): Promise { + return this.request("CreateBPFakeAPPList", req, cb) + } +} diff --git a/src/services/bma/v20221115/bma_models.ts b/src/services/bma/v20221115/bma_models.ts new file mode 100644 index 000000000..b6a80ca91 --- /dev/null +++ b/src/services/bma/v20221115/bma_models.ts @@ -0,0 +1,146 @@ +/* + * Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/** + * CreateBPFakeAPP返回参数结构体 + */ +export interface CreateBPFakeAPPResponse { + /** + * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 + */ + RequestId?: string +} + +/** + * CreateBPFakeAPP请求参数结构体 + */ +export interface CreateBPFakeAPPRequest { + /** + * 企业id + */ + CompanyId: number + + /** + * 仿冒应用名称 + */ + FakeAPPName: string + + /** + * 仿冒来源 + */ + APPChan?: string + + /** + * 仿冒应用包名 + */ + FakeAPPPackageName?: string + + /** + * 仿冒应用证书 + */ + FakeAPPCert?: string + + /** + * 仿冒应用大小 + */ + FakeAPPSize?: string + + /** + * 仿冒截图 + */ + FakeAPPSnapshots?: Array + + /** + * 备注 + */ + Note?: string +} + +/** + * CreateBPFakeAPPList请求参数结构体 + */ +export interface CreateBPFakeAPPListRequest { + /** + * 仿冒应用下载链接。请严格按照模版进行填写:https://bma-privacy-detection-1251316161.cosgz.myqcloud.com/20221206/f8c7521fbd84f4c4e7c2a25ac233857e/批量仿冒应用举报模板.xlsx + */ + FakeAPPs: string +} + +/** + * CreateBPFakeURL请求参数结构体 + */ +export interface CreateBPFakeURLRequest { + /** + * 企业id + */ + CompanyId: number + + /** + * 仿冒网址 + */ + FakeURL: string + + /** + * 仿冒网址截图 + */ + FakeURLSnapshots?: Array + + /** + * 备注 + */ + Note?: string +} + +/** + * CreateBPFakeAPPList返回参数结构体 + */ +export interface CreateBPFakeAPPListResponse { + /** + * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 + */ + RequestId?: string +} + +/** + * CreateBPFakeURL返回参数结构体 + */ +export interface CreateBPFakeURLResponse { + /** + * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 + */ + RequestId?: string +} + +/** + * CreateBPFakeURLs请求参数结构体 + */ +export interface CreateBPFakeURLsRequest { + /** + * 仿冒网址下载链接:请严格按照模版要求填写,https://bma-privacy-detection-1251316161.cosgz.myqcloud.com/20221124/ff3273b24104d03fa3a8d0629a7f71a9/批量仿冒网址举报模板.xlsx + */ + FakeURLs: string +} + +/** + * CreateBPFakeURLs返回参数结构体 + */ +export interface CreateBPFakeURLsResponse { + /** + * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 + */ + RequestId?: string +} diff --git a/src/services/bma/v20221115/index.ts b/src/services/bma/v20221115/index.ts new file mode 100644 index 000000000..bc851648d --- /dev/null +++ b/src/services/bma/v20221115/index.ts @@ -0,0 +1,6 @@ +import * as Models from "./bma_models" +import { Client } from "./bma_client" +export const v20221115 = { + Client: Client, + Models: Models, +} diff --git a/src/services/bmeip/v20180625/bmeip_client.ts b/src/services/bmeip/v20180625/bmeip_client.ts index 1fbf18361..73997f12b 100644 --- a/src/services/bmeip/v20180625/bmeip_client.ts +++ b/src/services/bmeip/v20180625/bmeip_client.ts @@ -95,7 +95,7 @@ export class Client extends AbstractClient { } /** - * 创建黑石弹性公网 EIPACL + * 创建黑石弹性公网 EIP ACL */ async CreateEipAcl( req: CreateEipAclRequest, @@ -245,7 +245,7 @@ export class Client extends AbstractClient { } /** - * 黑石EIP绑定VPCIP + * 黑石EIP绑定VPC IP */ async BindVpcIp( req: BindVpcIpRequest, diff --git a/src/services/bmeip/v20180625/bmeip_models.ts b/src/services/bmeip/v20180625/bmeip_models.ts index 74aa93260..a034f9367 100644 --- a/src/services/bmeip/v20180625/bmeip_models.ts +++ b/src/services/bmeip/v20180625/bmeip_models.ts @@ -972,7 +972,7 @@ export interface UnbindVpcIpResponse { /** * 绑定黑石物理机异步任务ID,可以通过查询EIP任务状态查询任务状态 */ - TaskId: number + TaskId?: number /** * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 @@ -987,22 +987,22 @@ export interface CreateEipAclResponse { /** * ACL 实例 ID */ - AclId: string + AclId?: string /** * ACL 实例状态 */ - Status: number + Status?: number /** * ACL 实例名称 */ - AclName: string + AclName?: string /** * ACL 实例创建时间 */ - CreatedAt: string + CreatedAt?: string /** * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 diff --git a/src/services/car/v20220110/car_models.ts b/src/services/car/v20220110/car_models.ts index 798b8add0..688be7374 100644 --- a/src/services/car/v20220110/car_models.ts +++ b/src/services/car/v20220110/car_models.ts @@ -22,7 +22,7 @@ export interface CreateSessionResponse { /** * 服务端session信息,返回给SDK */ - ServerSession: string + ServerSession?: string /** * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 diff --git a/src/services/cls/v20201016/cls_client.ts b/src/services/cls/v20201016/cls_client.ts index 161d7947d..695581644 100644 --- a/src/services/cls/v20201016/cls_client.ts +++ b/src/services/cls/v20201016/cls_client.ts @@ -366,7 +366,7 @@ export class Client extends AbstractClient { } /** - * 创建新的投递规则,【!!!注意】使用此接口,需要检查是否配置了投递COS的角色和权限。如果没有配置,请参考文档投递权限查看和配置https://cloud.tencent.com/document/product/614/71623。 + * 新建投递到COS的任务,【!!!注意】使用此接口,需要检查是否配置了投递COS的角色和权限。如果没有配置,请参考文档投递权限查看和配置https://cloud.tencent.com/document/product/614/71623。 */ async CreateShipper( req: CreateShipperRequest, @@ -446,7 +446,7 @@ export class Client extends AbstractClient { } /** - * 获取投递规则信息列表 + * 获取投递到COS的任务配置信息 */ async DescribeShippers( req: DescribeShippersRequest, diff --git a/src/services/cls/v20201016/cls_models.ts b/src/services/cls/v20201016/cls_models.ts index a83ae466b..1e891d60e 100644 --- a/src/services/cls/v20201016/cls_models.ts +++ b/src/services/cls/v20201016/cls_models.ts @@ -638,12 +638,12 @@ export interface DescribeShippersResponse { * 投递规则列表 注意:此字段可能返回 null,表示取不到有效值。 */ - Shippers: Array + Shippers?: Array /** * 本次查询获取到的总数 */ - TotalCount: number + TotalCount?: number /** * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 @@ -2847,7 +2847,7 @@ export interface CreateConfigRequest { */ export interface CreateShipperResponse { /** - * 投递规则ID + * 投递任务ID */ ShipperId?: string diff --git a/src/services/cwp/v20180228/cwp_models.ts b/src/services/cwp/v20180228/cwp_models.ts index e385cd5d2..3a9073045 100644 --- a/src/services/cwp/v20180228/cwp_models.ts +++ b/src/services/cwp/v20180228/cwp_models.ts @@ -13448,7 +13448,7 @@ export interface DescribeAssetInfoResponse { */ export interface WarningObject { /** - * 事件告警类型;1:离线,2:木马,3:异常登录,4:爆破,5:漏洞(已拆分为9-12四种类型)6:高位命令,7:反弹sell,8:本地提权,9:系统组件漏洞,10:web应用漏洞,11:应急漏洞,12:安全基线 + * 事件告警类型;1:离线,2:木马,3:异常登录,4:爆破,5:漏洞(已拆分为9-12四种类型)6:高位命令,7:反弹sell,8:本地提权,9:系统组件漏洞,10:web应用漏洞,11:应急漏洞,12:安全基线,14:恶意请求,15: 网络攻击,16:Windows系统漏洞,17:Linux软件漏洞 */ Type?: number @@ -13471,6 +13471,12 @@ export interface WarningObject { * 漏洞等级控制位二进制,每一位对应页面漏洞等级的开启关闭:低中高(0:关闭;1:开启),例如:101 → 同时勾选低+高;01→(登录审计)疑似不告警,高危告警 */ ControlBits?: string + + /** + * 告警主机范围类型,0:全部主机,1:按所属项目选,2:按腾讯云标签选,3:按主机安全标签选,4:自选主机 +注意:此字段可能返回 null,表示取不到有效值。 + */ + HostRange?: number } /** @@ -16745,6 +16751,18 @@ export interface WarningInfoObj { * 漏洞等级控制位二进制,每一位对应页面漏洞等级的开启关闭:低中高(0:关闭;1:开启),例如:101 → 同时勾选低+高 */ ControlBits: string + + /** + * 告警主机范围类型,0:全部主机,1:按所属项目选,2:按腾讯云标签选,3:按主机安全标签选,4:自选主机 +注意:此字段可能返回 null,表示取不到有效值。 + */ + HostRange?: number + + /** + * 配置的告警范围主机个数,前端用此判断展示提示信息 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Count: number } /** diff --git a/src/services/cynosdb/v20190107/cynosdb_client.ts b/src/services/cynosdb/v20190107/cynosdb_client.ts index a71124ed7..4e42bbddc 100644 --- a/src/services/cynosdb/v20190107/cynosdb_client.ts +++ b/src/services/cynosdb/v20190107/cynosdb_client.ts @@ -45,6 +45,7 @@ import { AccountParam, DescribeBinlogsResponse, DescribeInstancesResponse, + DescribeZonesRequest, ClusterInstanceDetail, AddClusterSlaveZoneResponse, OldAddrInfo, @@ -131,6 +132,7 @@ import { RollbackTimeRange, OfflineInstanceRequest, OpenAuditServiceRequest, + PolicyRule, NetAddr, TemplateParamInfo, AssociateSecurityGroupsResponse, @@ -152,8 +154,9 @@ import { ModifyAccountParamsRequest, CynosdbCluster, CreateAuditRuleTemplateResponse, + DescribeZonesResponse, IsolateClusterResponse, - SearchClusterDatabasesResponse, + SaleZone, ObjectTask, OpenAuditServiceResponse, OfflineClusterResponse, @@ -168,10 +171,11 @@ import { CreateBackupRequest, DescribeClusterParamLogsRequest, SearchClusterTablesResponse, - PolicyRule, + Module, DescribeMaintainPeriodResponse, SwitchProxyVpcRequest, DescribeBackupListResponse, + SaleRegion, RollBackClusterResponse, RestartInstanceResponse, DescribeBinlogSaveDaysRequest, @@ -191,6 +195,7 @@ import { ExportInstanceSlowQueriesResponse, CynosdbClusterDetail, ResetAccountPasswordRequest, + SearchClusterDatabasesResponse, DescribeInstanceDetailRequest, ModifyMaintainPeriodConfigResponse, DisassociateSecurityGroupsRequest, @@ -783,13 +788,13 @@ export class Client extends AbstractClient { } /** - * 批量授权账号权限 + * 此接口(ExportInstanceSlowQueries)用于导出实例慢日志。 */ - async GrantAccountPrivileges( - req: GrantAccountPrivilegesRequest, - cb?: (error: string, rep: GrantAccountPrivilegesResponse) => void - ): Promise { - return this.request("GrantAccountPrivileges", req, cb) + async ExportInstanceSlowQueries( + req: ExportInstanceSlowQueriesRequest, + cb?: (error: string, rep: ExportInstanceSlowQueriesResponse) => void + ): Promise { + return this.request("ExportInstanceSlowQueries", req, cb) } /** @@ -893,13 +898,13 @@ export class Client extends AbstractClient { } /** - * 此接口(ExportInstanceSlowQueries)用于导出实例慢日志。 + * 本接口(DescribeZones)用于查询可售卖地域可用区信息。 */ - async ExportInstanceSlowQueries( - req: ExportInstanceSlowQueriesRequest, - cb?: (error: string, rep: ExportInstanceSlowQueriesResponse) => void - ): Promise { - return this.request("ExportInstanceSlowQueries", req, cb) + async DescribeZones( + req: DescribeZonesRequest, + cb?: (error: string, rep: DescribeZonesResponse) => void + ): Promise { + return this.request("DescribeZones", req, cb) } /** @@ -932,6 +937,16 @@ export class Client extends AbstractClient { return this.request("ModifyAuditRuleTemplates", req, cb) } + /** + * 批量授权账号权限 + */ + async GrantAccountPrivileges( + req: GrantAccountPrivilegesRequest, + cb?: (error: string, rep: GrantAccountPrivilegesResponse) => void + ): Promise { + return this.request("GrantAccountPrivileges", req, cb) + } + /** * 本接口(SearchClusterTables)搜索集群数据表列表 */ diff --git a/src/services/cynosdb/v20190107/cynosdb_models.ts b/src/services/cynosdb/v20190107/cynosdb_models.ts index 4230ff53d..6e9a0c2ae 100644 --- a/src/services/cynosdb/v20190107/cynosdb_models.ts +++ b/src/services/cynosdb/v20190107/cynosdb_models.ts @@ -566,6 +566,21 @@ export interface DescribeInstancesResponse { RequestId?: string } +/** + * DescribeZones请求参数结构体 + */ +export interface DescribeZonesRequest { + /** + * 是否包含虚拟区 + */ + IncludeVirtualZones?: boolean + + /** + * 是否展示地域下所有可用区,并显示用户每个可用区权限 + */ + ShowPermission?: boolean +} + /** * 集群实例信息 */ @@ -3129,6 +3144,51 @@ export interface OpenAuditServiceRequest { RuleTemplateIds?: Array } +/** + * 安全组规则 + */ +export interface PolicyRule { + /** + * 策略,ACCEPT或者DROP + */ + Action: string + + /** + * 来源Ip或Ip段,例如192.168.0.0/16 + */ + CidrIp: string + + /** + * 端口 + */ + PortRange: string + + /** + * 网络协议,支持udp、tcp等 + */ + IpProtocol: string + + /** + * 协议端口ID或者协议端口组ID。 + */ + ServiceModule: string + + /** + * IP地址ID或者ID地址组ID。 + */ + AddressModule: string + + /** + * id + */ + Id: string + + /** + * 描述 + */ + Desc: string +} + /** * 网络信息 */ @@ -3926,6 +3986,21 @@ export interface CreateAuditRuleTemplateResponse { RequestId?: string } +/** + * DescribeZones返回参数结构体 + */ +export interface DescribeZonesResponse { + /** + * 地域信息 + */ + RegionSet?: Array + + /** + * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 + */ + RequestId?: string +} + /** * IsolateCluster返回参数结构体 */ @@ -3949,19 +4024,53 @@ export interface IsolateClusterResponse { } /** - * SearchClusterDatabases返回参数结构体 + * 售卖可用区信息 */ -export interface SearchClusterDatabasesResponse { +export interface SaleZone { /** - * 数据库列表 + * 可用区英文名 + */ + Zone: string + + /** + * 可用区数字ID + */ + ZoneId: number + + /** + * 可用区中文名 + */ + ZoneZh: string + + /** + * 是否支持serverless集群
+0:不支持
+1:支持 + */ + IsSupportServerless: number + + /** + * 是否支持普通集群
+0:不支持
+1:支持 + */ + IsSupportNormal: number + + /** + * 物理区 + */ + PhysicalZone: string + + /** + * 用户是否有可用区权限 注意:此字段可能返回 null,表示取不到有效值。 */ - Databases: Array + HasPermission?: boolean /** - * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 + * 是否为全链路RDMA可用区 */ - RequestId?: string + IsWholeRdmaZone?: string } /** @@ -4329,48 +4438,18 @@ export interface SearchClusterTablesResponse { } /** - * 安全组规则 + * 系统支持的模块 */ -export interface PolicyRule { - /** - * 策略,ACCEPT或者DROP - */ - Action: string - - /** - * 来源Ip或Ip段,例如192.168.0.0/16 - */ - CidrIp: string - - /** - * 端口 - */ - PortRange: string - +export interface Module { /** - * 网络协议,支持udp、tcp等 + * 是否支持,可选值:yes,no */ - IpProtocol: string - - /** - * 协议端口ID或者协议端口组ID。 - */ - ServiceModule: string - - /** - * IP地址ID或者ID地址组ID。 - */ - AddressModule: string - - /** - * id - */ - Id: string + IsDisable: string /** - * 描述 + * 模块名 */ - Desc: string + ModuleName: string } /** @@ -4448,6 +4527,41 @@ export interface DescribeBackupListResponse { RequestId?: string } +/** + * 售卖地域信息 + */ +export interface SaleRegion { + /** + * 地域英文名 + */ + Region: string + + /** + * 地域数字ID + */ + RegionId: number + + /** + * 地域中文名 + */ + RegionZh: string + + /** + * 可售卖可用区列表 + */ + ZoneSet: Array + + /** + * 引擎类型 + */ + DbType: string + + /** + * 地域模块支持情况 + */ + Modules: Array +} + /** * RollBackCluster返回参数结构体 */ @@ -5340,6 +5454,22 @@ export interface ResetAccountPasswordRequest { Host?: string } +/** + * SearchClusterDatabases返回参数结构体 + */ +export interface SearchClusterDatabasesResponse { + /** + * 数据库列表 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Databases: Array + + /** + * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 + */ + RequestId?: string +} + /** * DescribeInstanceDetail请求参数结构体 */ diff --git a/src/services/dnspod/v20210323/dnspod_client.ts b/src/services/dnspod/v20210323/dnspod_client.ts index 7c9230d47..f7e2b6828 100644 --- a/src/services/dnspod/v20210323/dnspod_client.ts +++ b/src/services/dnspod/v20210323/dnspod_client.ts @@ -25,6 +25,8 @@ import { ModifyVasAutoRenewStatusResponse, RollbackSnapshotRequest, DeleteDomainAliasResponse, + DescribeVASStatisticRequest, + DeleteDomainBatchResponse, RecordGroupInfo, ModifySubdomainStatusRequest, CreateRecordBatchResponse, @@ -32,6 +34,7 @@ import { CreateDomainBatchRecord, DomainAnalyticsInfo, ModifyRecordGroupRequest, + DescribeVASStatisticResponse, DescribeBatchTaskRequest, DomainAnalyticsDetail, CreateSnapshotResponse, @@ -40,6 +43,7 @@ import { PayOrderWithBalanceResponse, DescribeDomainResponse, DescribeSnapshotListRequest, + DescribePackageDetailResponse, DescribeRecordLineListResponse, SnapshotPageInfo, DomainInfo, @@ -47,6 +51,7 @@ import { ModifyRecordGroupResponse, DescribeDomainShareInfoRequest, DomainListItem, + DeleteDomainBatchRequest, DescribeRecordTypeResponse, ModifyDomainRemarkResponse, DeleteSnapshotRequest, @@ -65,6 +70,7 @@ import { DomainShareInfo, DescribeSnapshotConfigRequest, LineInfo, + DescribeRecordExistExceptDefaultNSRequest, DescribeRecordLineListRequest, DescribeRecordListResponse, CreateRecordBatchRequest, @@ -72,7 +78,7 @@ import { DomainAliasInfo, CreateDealRequest, ModifyDomainLockRequest, - ModifyDomainStatusRequest, + DescribeDomainWhoisRequest, SubdomainAliasAnalyticsItem, ModifyDomainStatusResponse, AddRecordBatch, @@ -88,7 +94,9 @@ import { RecordInfo, DescribeSnapshotRollbackTaskRequest, CheckRecordSnapshotRollbackResponse, + DescribeDomainPreviewRequest, CreateRecordBatchDetail, + WhoisContact, DescribeSubdomainAnalyticsResponse, ModifyRecordResponse, ModifyRecordToGroupResponse, @@ -97,6 +105,7 @@ import { DescribeDomainLogListRequest, DescribeDomainListResponse, ModifyRecordBatchRequest, + WhoisContactAddress, SnapshotConfig, DeleteRecordResponse, CreateRecordBatchRecord, @@ -109,6 +118,7 @@ import { DescribeRecordTypeRequest, DescribeSnapshotRollbackTaskResponse, RecordListItem, + DescribeDomainPreviewResponse, CreateDomainBatchResponse, DescribeDomainGroupListResponse, LockInfo, @@ -116,6 +126,7 @@ import { SubdomainAnalyticsInfo, ModifyRecordBatchDetail, DescribeUserDetailResponse, + DeleteDomainBatchDetail, CreateDomainRequest, ModifyPackageAutoRenewResponse, DomainAliasAnalyticsItem, @@ -124,7 +135,7 @@ import { CreateDomainAliasResponse, DescribeRecordListRequest, PayOrderWithBalanceRequest, - ModifySnapshotConfigResponse, + DescribePackageDetailRequest, DescribeRecordResponse, ModifyRecordFieldsRequest, DeleteSnapshotResponse, @@ -144,14 +155,17 @@ import { DescribeDomainAliasListRequest, CreateDomainAliasRequest, DeleteShareDomainRequest, + VASStatisticItem, SnapshotInfo, ModifyDynamicDNSRequest, DescribeRecordGroupListRequest, ModifyRecordFieldsResponse, PurviewInfo, ModifyRecordRemarkRequest, + ModifySnapshotConfigResponse, RollbackRecordSnapshotResponse, DescribeUserDetailRequest, + ModifyDomainStatusRequest, ModifyRecordRemarkResponse, DescribeDomainListRequest, DomainCreateInfo, @@ -160,9 +174,14 @@ import { ModifyDomainUnlockRequest, DescribeRecordSnapshotRollbackResultRequest, ModifyDomainLockResponse, + PackageDetailItem, CreateDealResponse, + DescribeRecordExistExceptDefaultNSResponse, ModifyVasAutoRenewStatusRequest, + WhoisInfo, DownloadSnapshotResponse, + PreviewDetail, + DescribeDomainWhoisResponse, CreateRecordGroupResponse, DescribeDomainGroupListRequest, DescribeBatchTaskResponse, @@ -292,6 +311,16 @@ export class Client extends AbstractClient { return this.request("ModifyRecordFields", req, cb) } + /** + * 批量删除域名 + */ + async DeleteDomainBatch( + req: DeleteDomainBatchRequest, + cb?: (error: string, rep: DeleteDomainBatchResponse) => void + ): Promise { + return this.request("DeleteDomainBatch", req, cb) + } + /** * 下载快照 */ @@ -322,6 +351,16 @@ export class Client extends AbstractClient { return this.request("ModifyRecord", req, cb) } + /** + * 获取域名Whois信息 + */ + async DescribeDomainWhois( + req: DescribeDomainWhoisRequest, + cb?: (error: string, rep: DescribeDomainWhoisResponse) => void + ): Promise { + return this.request("DescribeDomainWhois", req, cb) + } + /** * 查询解析记录分组列表 */ @@ -413,13 +452,13 @@ export class Client extends AbstractClient { } /** - * 获取域名信息 + * 增值服务自动续费设置 */ - async DescribeDomain( - req: DescribeDomainRequest, - cb?: (error: string, rep: DescribeDomainResponse) => void - ): Promise { - return this.request("DescribeDomain", req, cb) + async ModifyVasAutoRenewStatus( + req: ModifyVasAutoRenewStatusRequest, + cb?: (error: string, rep: ModifyVasAutoRenewStatusResponse) => void + ): Promise { + return this.request("ModifyVasAutoRenewStatus", req, cb) } /** @@ -443,13 +482,13 @@ export class Client extends AbstractClient { } /** - * 添加记录分组 + * 获取域名信息 */ - async CreateRecordGroup( - req: CreateRecordGroupRequest, - cb?: (error: string, rep: CreateRecordGroupResponse) => void - ): Promise { - return this.request("CreateRecordGroup", req, cb) + async DescribeDomain( + req: DescribeDomainRequest, + cb?: (error: string, rep: DescribeDomainResponse) => void + ): Promise { + return this.request("DescribeDomain", req, cb) } /** @@ -512,6 +551,26 @@ export class Client extends AbstractClient { return this.request("DescribeRecord", req, cb) } + /** + * 修改快照配置 + */ + async ModifySnapshotConfig( + req: ModifySnapshotConfigRequest, + cb?: (error: string, rep: ModifySnapshotConfigResponse) => void + ): Promise { + return this.request("ModifySnapshotConfig", req, cb) + } + + /** + * 获取各套餐配置详情 + */ + async DescribePackageDetail( + req?: DescribePackageDetailRequest, + cb?: (error: string, rep: DescribePackageDetailResponse) => void + ): Promise { + return this.request("DescribePackageDetail", req, cb) + } + /** * 获取等级允许的线路 */ @@ -522,6 +581,16 @@ export class Client extends AbstractClient { return this.request("DescribeRecordLineList", req, cb) } + /** + * 获取域名增值服务用量 + */ + async DescribeVASStatistic( + req: DescribeVASStatisticRequest, + cb?: (error: string, rep: DescribeVASStatisticResponse) => void + ): Promise { + return this.request("DescribeVASStatistic", req, cb) + } + /** * 统计各个域名的解析量,帮助您了解流量情况、时间段分布。支持查看近 3 个月内的统计情况 */ @@ -582,6 +651,16 @@ export class Client extends AbstractClient { return this.request("ModifyDomainRemark", req, cb) } + /** + * 判断是否有除系统默认的@-NS记录之外的记录存在 + */ + async DescribeRecordExistExceptDefaultNS( + req: DescribeRecordExistExceptDefaultNSRequest, + cb?: (error: string, rep: DescribeRecordExistExceptDefaultNSResponse) => void + ): Promise { + return this.request("DescribeRecordExistExceptDefaultNS", req, cb) + } + /** * 域名过户 */ @@ -603,13 +682,13 @@ export class Client extends AbstractClient { } /** - * 修改快照配置 + * 添加记录分组 */ - async ModifySnapshotConfig( - req: ModifySnapshotConfigRequest, - cb?: (error: string, rep: ModifySnapshotConfigResponse) => void - ): Promise { - return this.request("ModifySnapshotConfig", req, cb) + async CreateRecordGroup( + req: CreateRecordGroupRequest, + cb?: (error: string, rep: CreateRecordGroupResponse) => void + ): Promise { + return this.request("CreateRecordGroup", req, cb) } /** @@ -642,6 +721,16 @@ export class Client extends AbstractClient { return this.request("CheckRecordSnapshotRollback", req, cb) } + /** + * 获取域名概览信息 + */ + async DescribeDomainPreview( + req: DescribeDomainPreviewRequest, + cb?: (error: string, rep: DescribeDomainPreviewResponse) => void + ): Promise { + return this.request("DescribeDomainPreview", req, cb) + } + /** * 添加域名 */ @@ -662,16 +751,6 @@ export class Client extends AbstractClient { return this.request("RollbackRecordSnapshot", req, cb) } - /** - * DNSPod商品余额支付 - */ - async PayOrderWithBalance( - req: PayOrderWithBalanceRequest, - cb?: (error: string, rep: PayOrderWithBalanceResponse) => void - ): Promise { - return this.request("PayOrderWithBalance", req, cb) - } - /** * 将记录添加到分组 */ @@ -683,13 +762,13 @@ export class Client extends AbstractClient { } /** - * 增值服务自动续费设置 + * DNSPod商品余额支付 */ - async ModifyVasAutoRenewStatus( - req: ModifyVasAutoRenewStatusRequest, - cb?: (error: string, rep: ModifyVasAutoRenewStatusResponse) => void - ): Promise { - return this.request("ModifyVasAutoRenewStatus", req, cb) + async PayOrderWithBalance( + req: PayOrderWithBalanceRequest, + cb?: (error: string, rep: PayOrderWithBalanceResponse) => void + ): Promise { + return this.request("PayOrderWithBalance", req, cb) } /** diff --git a/src/services/dnspod/v20210323/dnspod_models.ts b/src/services/dnspod/v20210323/dnspod_models.ts index 5acc01dd5..42cbbc608 100644 --- a/src/services/dnspod/v20210323/dnspod_models.ts +++ b/src/services/dnspod/v20210323/dnspod_models.ts @@ -257,6 +257,36 @@ export interface DeleteDomainAliasResponse { RequestId?: string } +/** + * DescribeVASStatistic请求参数结构体 + */ +export interface DescribeVASStatisticRequest { + /** + * 域名ID + */ + DomainId: number +} + +/** + * DeleteDomainBatch返回参数结构体 + */ +export interface DeleteDomainBatchResponse { + /** + * 任务 ID + */ + JobId?: number + + /** + * 任务详情数组 + */ + DetailList?: Array + + /** + * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 + */ + RequestId?: string +} + /** * 解析记录分组信息 */ @@ -460,6 +490,21 @@ export interface ModifyRecordGroupRequest { DomainId?: number } +/** + * DescribeVASStatistic返回参数结构体 + */ +export interface DescribeVASStatisticResponse { + /** + * 增值服务用量列表 + */ + VASList: Array + + /** + * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 + */ + RequestId?: string +} + /** * DescribeBatchTask请求参数结构体 */ @@ -592,6 +637,26 @@ export interface DescribeSnapshotListRequest { DomainId?: number } +/** + * DescribePackageDetail返回参数结构体 + */ +export interface DescribePackageDetailResponse { + /** + * 套餐配置详情 + */ + Info: Array + + /** + * 套餐代码列表 + */ + LevelMap: Array + + /** + * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 + */ + RequestId?: string +} + /** * DescribeRecordLineList返回参数结构体 */ @@ -905,6 +970,16 @@ export interface DomainListItem { Owner: string } +/** + * DeleteDomainBatch请求参数结构体 + */ +export interface DeleteDomainBatchRequest { + /** + * 域名数组 + */ + DomainList: Array +} + /** * DescribeRecordType返回参数结构体 */ @@ -1331,6 +1406,21 @@ export interface LineInfo { LineId: string } +/** + * DescribeRecordExistExceptDefaultNS请求参数结构体 + */ +export interface DescribeRecordExistExceptDefaultNSRequest { + /** + * 域名 + */ + Domain: string + + /** + * 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。可以通过接口DescribeDomainList查到所有的Domain以及DomainId + */ + DomainId?: number +} + /** * DescribeRecordLineList请求参数结构体 */ @@ -1503,23 +1593,13 @@ export interface ModifyDomainLockRequest { } /** - * ModifyDomainStatus请求参数结构体 + * DescribeDomainWhois请求参数结构体 */ -export interface ModifyDomainStatusRequest { +export interface DescribeDomainWhoisRequest { /** * 域名 */ Domain: string - - /** - * 域名状态,”enable” 、”disable” 分别代表启用和暂停 - */ - Status: string - - /** - * 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。可以通过接口DescribeDomainList查到所有的Domain以及DomainId - */ - DomainId?: number } /** @@ -1895,6 +1975,21 @@ export interface CheckRecordSnapshotRollbackResponse { RequestId?: string } +/** + * DescribeDomainPreview请求参数结构体 + */ +export interface DescribeDomainPreviewRequest { + /** + * 域名 + */ + Domain: string + + /** + * 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。可以通过接口DescribeDomainList查到所有的Domain以及DomainId + */ + DomainId?: number +} + /** * 批量添加记录返回结构 */ @@ -1947,6 +2042,35 @@ export interface CreateRecordBatchDetail { DomainId: number } +/** + * Whois联系信息 + */ +export interface WhoisContact { + /** + * 无 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Admin: WhoisContactAddress + + /** + * 无 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Billing: WhoisContactAddress + + /** + * 无 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Registrant: WhoisContactAddress + + /** + * 无 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Tech: WhoisContactAddress +} + /** * DescribeSubdomainAnalytics返回参数结构体 */ @@ -2123,6 +2247,83 @@ export interface ModifyRecordBatchRequest { MX?: string } +/** + * Whois联系信息地址 + */ +export interface WhoisContactAddress { + /** + * 无 +注意:此字段可能返回 null,表示取不到有效值。 + */ + City: string + + /** + * 无 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Country: string + + /** + * 无 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Email: string + + /** + * 无 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Fax: string + + /** + * 无 +注意:此字段可能返回 null,表示取不到有效值。 + */ + FaxExt: string + + /** + * 无 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Handle: string + + /** + * 无 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Name: string + + /** + * 无 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Organization: string + + /** + * 无 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Phone: string + + /** + * 无 +注意:此字段可能返回 null,表示取不到有效值。 + */ + PostalCode: string + + /** + * 无 +注意:此字段可能返回 null,表示取不到有效值。 + */ + State: string + + /** + * 无 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Street: string +} + /** * 域名解析快照配置 */ @@ -2599,6 +2800,21 @@ export interface RecordListItem { DefaultNS?: boolean } +/** + * DescribeDomainPreview返回参数结构体 + */ +export interface DescribeDomainPreviewResponse { + /** + * 域名概览信息 + */ + Domain?: PreviewDetail + + /** + * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 + */ + RequestId?: string +} + /** * CreateDomainBatch返回参数结构体 */ @@ -2766,6 +2982,37 @@ export interface DescribeUserDetailResponse { RequestId?: string } +/** + * 批量删除域名详情 + */ +export interface DeleteDomainBatchDetail { + /** + * 域名 ID + */ + DomainId?: number + + /** + * 域名 + */ + Domain?: string + + /** + * 错误信息 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Error?: string + + /** + * 删除状态 + */ + Status?: string + + /** + * 操作 + */ + Operation?: string +} + /** * CreateDomain请求参数结构体 */ @@ -2947,14 +3194,9 @@ export interface PayOrderWithBalanceRequest { } /** - * ModifySnapshotConfig返回参数结构体 + * DescribePackageDetail请求参数结构体 */ -export interface ModifySnapshotConfigResponse { - /** - * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 - */ - RequestId?: string -} +export type DescribePackageDetailRequest = null /** * DescribeRecord返回参数结构体 @@ -3314,6 +3556,31 @@ export interface DeleteShareDomainRequest { DomainId?: number } +/** + * 域名增值服务用量 + */ +export interface VASStatisticItem { + /** + * 增值服务名称 + */ + Name?: string + + /** + * 增值服务标识 + */ + Key?: string + + /** + * 增值服务最大用量 + */ + LimitCount?: number + + /** + * 增值服务已使用的用量 + */ + UseCount?: number +} + /** * 快照信息 */ @@ -3474,6 +3741,16 @@ export interface ModifyRecordRemarkRequest { Remark?: string } +/** + * ModifySnapshotConfig返回参数结构体 + */ +export interface ModifySnapshotConfigResponse { + /** + * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 + */ + RequestId?: string +} + /** * RollbackRecordSnapshot返回参数结构体 */ @@ -3494,6 +3771,26 @@ export interface RollbackRecordSnapshotResponse { */ export type DescribeUserDetailRequest = null +/** + * ModifyDomainStatus请求参数结构体 + */ +export interface ModifyDomainStatusRequest { + /** + * 域名 + */ + Domain: string + + /** + * 域名状态,”enable” 、”disable” 分别代表启用和暂停 + */ + Status: string + + /** + * 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。可以通过接口DescribeDomainList查到所有的Domain以及DomainId + */ + DomainId?: number +} + /** * ModifyRecordRemark返回参数结构体 */ @@ -3675,6 +3972,66 @@ export interface ModifyDomainLockResponse { RequestId?: string } +/** + * 套餐配置明细 + */ +export interface PackageDetailItem { + /** + * 套餐原价 + */ + RealPrice: number + + /** + * 可更换域名次数 + */ + ChangedTimes: number + + /** + * 允许设置的最小 TTL 值 + */ + MinTtl: number + + /** + * 负载均衡数量 + */ + RecordRoll: number + + /** + * 子域名级数 + */ + SubDomainLevel: number + + /** + * 泛解析级数 + */ + MaxWildcard: number + + /** + * DNS 服务集群个数 + */ + DnsServerRegion: string + + /** + * 套餐名称 + */ + DomainGradeCn: string + + /** + * 套餐代号 + */ + GradeLevel: number + + /** + * 套餐对应的 NS + */ + Ns: Array + + /** + * 套餐代码 + */ + DomainGrade: string +} + /** * CreateDeal返回参数结构体 */ @@ -3695,6 +4052,21 @@ export interface CreateDealResponse { RequestId?: string } +/** + * DescribeRecordExistExceptDefaultNS返回参数结构体 + */ +export interface DescribeRecordExistExceptDefaultNSResponse { + /** + * true 是 false 否 + */ + Exist: boolean + + /** + * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 + */ + RequestId?: string +} + /** * ModifyVasAutoRenewStatus请求参数结构体 */ @@ -3710,6 +4082,71 @@ export interface ModifyVasAutoRenewStatusRequest { Status: string } +/** + * Whois信息 + */ +export interface WhoisInfo { + /** + * 联系信息 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Contacts: WhoisContact + + /** + * 域名注册时间 +注意:此字段可能返回 null,表示取不到有效值。 + */ + CreationDate: string + + /** + * 域名到期时间 +注意:此字段可能返回 null,表示取不到有效值。 + */ + ExpirationDate: string + + /** + * 是否是在腾讯云注册的域名 +注意:此字段可能返回 null,表示取不到有效值。 + */ + IsQcloud: boolean + + /** + * 是否当前操作帐号注册的域名 +注意:此字段可能返回 null,表示取不到有效值。 + */ + IsQcloudOwner: boolean + + /** + * 域名配置的NS +注意:此字段可能返回 null,表示取不到有效值。 + */ + NameServers: Array + + /** + * Whois原始信息 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Raw: Array + + /** + * 域名注册商 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Registrar: Array + + /** + * 状态 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Status: Array + + /** + * 更新日期 +注意:此字段可能返回 null,表示取不到有效值。 + */ + UpdatedDate: string +} + /** * DownloadSnapshot返回参数结构体 */ @@ -3725,6 +4162,81 @@ export interface DownloadSnapshotResponse { RequestId?: string } +/** + * 域名概览明细 + */ +export interface PreviewDetail { + /** + * 域名 + */ + Name: string + + /** + * 域名套餐代码 + */ + Grade: string + + /** + * 域名套餐名称 + */ + GradeTitle: string + + /** + * 域名记录数 + */ + Records: number + + /** + * 域名停靠状态。0 未开启 1 已开启 2 已暂停 + */ + DomainParkingStatus: number + + /** + * 自定义线路数量 + */ + LineCount: number + + /** + * 自定义线路分组数量 + */ + LineGroupCount: number + + /** + * 域名别名数量 + */ + AliasCount: number + + /** + * 允许添加的最大域名别名数量 + */ + MaxAliasCount: number + + /** + * 昨天的解析量 + */ + ResolveCount: number + + /** + * 增值服务数量 + */ + VASCount: number +} + +/** + * DescribeDomainWhois返回参数结构体 + */ +export interface DescribeDomainWhoisResponse { + /** + * 域名Whois信息 + */ + Info?: WhoisInfo + + /** + * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 + */ + RequestId?: string +} + /** * CreateRecordGroup返回参数结构体 */ diff --git a/src/services/domain/v20180808/domain_models.ts b/src/services/domain/v20180808/domain_models.ts index 809262407..214d56729 100644 --- a/src/services/domain/v20180808/domain_models.ts +++ b/src/services/domain/v20180808/domain_models.ts @@ -1074,6 +1074,7 @@ false 不是 * 是否已设置自动续费 。 0:未设置 1:已设置 +2:设置后,关闭 */ AutoRenew: number diff --git a/src/services/faceid/v20180301/faceid_models.ts b/src/services/faceid/v20180301/faceid_models.ts index 204563656..43522079b 100644 --- a/src/services/faceid/v20180301/faceid_models.ts +++ b/src/services/faceid/v20180301/faceid_models.ts @@ -335,26 +335,26 @@ export interface CheckBankCardInformationResponse { 收费结果码: 0: 查询成功 -1: 未查到信息 -不收费结果码 +不收费结果码: -2:验证中心服务繁忙 -3:银行卡不存在 */ - Result: string + Result?: string /** * 业务结果描述 */ - Description: string + Description?: string /** * 开户行 */ - AccountBank: string + AccountBank?: string /** * 卡性质:1. 借记卡;2. 贷记卡;3. 预付费卡;4. 准贷记卡 */ - AccountType: number + AccountType?: number /** * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 diff --git a/src/services/iotvideo/v20211125/iotvideo_models.ts b/src/services/iotvideo/v20211125/iotvideo_models.ts index 600157a42..c58beeb73 100644 --- a/src/services/iotvideo/v20211125/iotvideo_models.ts +++ b/src/services/iotvideo/v20211125/iotvideo_models.ts @@ -1741,6 +1741,12 @@ export interface BonusInfo { * 资源包创建时间 */ CreateTime: number + + /** + * 资源包状态 0.未使用 1.使用中 2.已退款 3.已过期 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Status?: number } /** diff --git a/src/services/lcic/v20220817/lcic_client.ts b/src/services/lcic/v20220817/lcic_client.ts index 45c88b981..497ad6823 100644 --- a/src/services/lcic/v20220817/lcic_client.ts +++ b/src/services/lcic/v20220817/lcic_client.ts @@ -45,6 +45,7 @@ import { DeleteRoomResponse, ModifyUserProfileRequest, DescribeDocumentsByRoomRequest, + DescribeCurrentMemberListRequest, DescribeSdkAppIdUsersResponse, GetWatermarkResponse, DeleteDocumentResponse, @@ -73,6 +74,7 @@ import { LoginOriginIdRequest, AppConfig, BatchRegisterResponse, + DescribeCurrentMemberListResponse, LoginUserRequest, BatchCreateRoomRequest, BindDocumentToRoomResponse, @@ -305,6 +307,16 @@ export class Client extends AbstractClient { return this.request("SetAppCustomContent", req, cb) } + /** + * 获取当前房间的成员列表,房间结束或过期后无法使用。 + */ + async DescribeCurrentMemberList( + req: DescribeCurrentMemberListRequest, + cb?: (error: string, rep: DescribeCurrentMemberListResponse) => void + ): Promise { + return this.request("DescribeCurrentMemberList", req, cb) + } + /** * 获取应用详情 */ diff --git a/src/services/lcic/v20220817/lcic_models.ts b/src/services/lcic/v20220817/lcic_models.ts index ea4c1b828..93c4961e3 100644 --- a/src/services/lcic/v20220817/lcic_models.ts +++ b/src/services/lcic/v20220817/lcic_models.ts @@ -806,6 +806,26 @@ export interface DescribeDocumentsByRoomRequest { Owner?: string } +/** + * DescribeCurrentMemberList请求参数结构体 + */ +export interface DescribeCurrentMemberListRequest { + /** + * 房间Id。 + */ + RoomId: number + + /** + * 分页查询当前页数,从1开始递增。 + */ + Page: number + + /** + * 每页数据量,最大1000。 + */ + Limit: number +} + /** * DescribeSdkAppIdUsers返回参数结构体 */ @@ -1473,6 +1493,26 @@ export interface BatchRegisterResponse { RequestId?: string } +/** + * DescribeCurrentMemberList返回参数结构体 + */ +export interface DescribeCurrentMemberListResponse { + /** + * 记录总数。当前房间的总人数。 + */ + Total?: number + + /** + * 成员记录列表。 + */ + MemberRecords?: Array + + /** + * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 + */ + RequestId?: string +} + /** * LoginUser请求参数结构体 */ diff --git a/src/services/nlp/v20190408/nlp_client.ts b/src/services/nlp/v20190408/nlp_client.ts index 178fecb46..418592ce3 100644 --- a/src/services/nlp/v20190408/nlp_client.ts +++ b/src/services/nlp/v20190408/nlp_client.ts @@ -146,11 +146,6 @@ export class Client extends AbstractClient { 该词向量服务由腾讯知文自然语言处理团队联合腾讯AI Lab共同打造。使用的词向量基于千亿级大规模互联网语料并采用AI Lab自研的DSG算法训练而成,开源的词向量包含800多万中文词汇,在覆盖率、新鲜度及准确性等三方面性能突出。 -腾讯AI Lab词向量相关资料: - -https://ai.tencent.com/ailab/zh/news/detial?id=22 - -https://ai.tencent.com/ailab/nlp/zh/embedding.html */ async WordEmbedding( req: WordEmbeddingRequest, diff --git a/src/services/nlp/v20190408/nlp_models.ts b/src/services/nlp/v20190408/nlp_models.ts index 177ebd9b0..ddb448ec9 100644 --- a/src/services/nlp/v20190408/nlp_models.ts +++ b/src/services/nlp/v20190408/nlp_models.ts @@ -661,12 +661,12 @@ export interface WordEmbeddingResponse { /** * 词向量数组 */ - Vector?: Array + Vector: Array /** * 词向量的维度 */ - Dimension?: number + Dimension: number /** * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 diff --git a/src/services/redis/v20180412/redis_models.ts b/src/services/redis/v20180412/redis_models.ts index 69a3b8bc1..2a7ab4cc0 100644 --- a/src/services/redis/v20180412/redis_models.ts +++ b/src/services/redis/v20180412/redis_models.ts @@ -653,12 +653,12 @@ export interface DescribeSlowLogResponse { /** * 慢查询总数。 */ - TotalCount: number + TotalCount?: number /** * 慢查询详情。 */ - InstanceSlowlogDetail: Array + InstanceSlowlogDetail?: Array /** * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 @@ -3779,7 +3779,7 @@ export interface DescribeSlowLogRequest { EndTime: string /** - * 慢查询平均执行时间阈值(单位:微秒)。 + * 慢查询平均执行时间阈值(单位:毫秒)。 */ MinQueryTime?: number diff --git a/src/services/tione/v20211111/tione_models.ts b/src/services/tione/v20211111/tione_models.ts index 4589aee14..92e2085ad 100644 --- a/src/services/tione/v20211111/tione_models.ts +++ b/src/services/tione/v20211111/tione_models.ts @@ -1275,6 +1275,11 @@ export interface SpecPrice { * 优惠后的价格,单位:分 */ RealTotalCost: number + + /** + * 计费项数量 + */ + SpecCount?: number } /** @@ -2910,6 +2915,18 @@ export interface DatasetInfo { 注意:此字段可能返回 null,表示取不到有效值。 */ DatasetScope: string + + /** + * 数据集OCR子场景 +注意:此字段可能返回 null,表示取不到有效值。 + */ + OcrScene: string + + /** + * 数据集字典修改状态 +注意:此字段可能返回 null,表示取不到有效值。 + */ + AnnotationKeyStatus: string } /** @@ -3915,6 +3932,24 @@ export interface DatasetGroup { 注意:此字段可能返回 null,表示取不到有效值。 */ DatasetScope: string + + /** + * 数据集OCR子场景 +注意:此字段可能返回 null,表示取不到有效值。 + */ + OcrScene: string + + /** + * 数据集字典修改状态 +注意:此字段可能返回 null,表示取不到有效值。 + */ + AnnotationKeyStatus: string + + /** + * 文本数据集导入方式 +注意:此字段可能返回 null,表示取不到有效值。 + */ + ContentType?: string } /** @@ -6251,7 +6286,7 @@ export interface DescribeBillingSpecsPriceResponse { /** * 计费项价格,支持批量返回 */ - SpecsPrice: Array + SpecsPrice?: Array /** * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 diff --git a/src/services/tke/v20180525/tke_models.ts b/src/services/tke/v20180525/tke_models.ts index c146b81ba..2b348281a 100644 --- a/src/services/tke/v20180525/tke_models.ts +++ b/src/services/tke/v20180525/tke_models.ts @@ -2904,12 +2904,12 @@ export interface DescribePrometheusAlertHistoryResponse { /** * 告警历史 */ - Items: Array + Items?: Array /** * 总数 */ - Total: number + Total?: number /** * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 @@ -4007,12 +4007,12 @@ export interface DescribePrometheusAlertRuleResponse { /** * 告警详情 */ - AlertRules: Array + AlertRules?: Array /** * 总数 */ - Total: number + Total?: number /** * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 @@ -5605,44 +5605,44 @@ export interface DescribePrometheusInstanceResponse { /** * 实例id */ - InstanceId: string + InstanceId?: string /** * 实例名称 */ - Name: string + Name?: string /** * 私有网络id */ - VpcId: string + VpcId?: string /** * 子网id */ - SubnetId: string + SubnetId?: string /** * cos桶名称 */ - COSBucket: string + COSBucket?: string /** * 数据查询地址 */ - QueryAddress: string + QueryAddress?: string /** * 实例中grafana相关的信息 注意:此字段可能返回 null,表示取不到有效值。 */ - Grafana: PrometheusGrafanaInfo + Grafana?: PrometheusGrafanaInfo /** * 用户自定义alertmanager 注意:此字段可能返回 null,表示取不到有效值。 */ - AlertManagerUrl: string + AlertManagerUrl?: string /** * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 @@ -7801,7 +7801,7 @@ export interface CreatePrometheusAlertRuleResponse { /** * 告警id */ - Id: string + Id?: string /** * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 diff --git a/src/services/tsf/v20180326/tsf_models.ts b/src/services/tsf/v20180326/tsf_models.ts index db1dd4af3..54c03a6bb 100644 --- a/src/services/tsf/v20180326/tsf_models.ts +++ b/src/services/tsf/v20180326/tsf_models.ts @@ -2009,6 +2009,12 @@ export interface GatewayPluginBoundParam { * ModifyNamespace返回参数结构体 */ export interface ModifyNamespaceResponse { + /** + * Result +注意:此字段可能返回 null,表示取不到有效值。 + */ + Result?: boolean + /** * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 */ @@ -11696,6 +11702,12 @@ export interface VmGroupOther { 注意:此字段可能返回 null,表示取不到有效值。 */ IsNotEqualServiceConfig: boolean + + /** + * HealthCheckSettings +注意:此字段可能返回 null,表示取不到有效值。 + */ + HealthCheckSettings?: HealthCheckSettings } /** diff --git a/src/services/tts/v20190823/tts_models.ts b/src/services/tts/v20190823/tts_models.ts index 923c012ea..98d28ad38 100644 --- a/src/services/tts/v20190823/tts_models.ts +++ b/src/services/tts/v20190823/tts_models.ts @@ -47,7 +47,7 @@ export interface CreateTtsTaskResponse { /** * 任务 id */ - Data: CreateTtsTaskRespData + Data?: CreateTtsTaskRespData /** * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 @@ -180,8 +180,12 @@ export interface CreateTtsTaskRequest { ProjectId?: number /** - * 标准音色
  • 10510000-智逍遥,旁对白阅读风格男声
  • 1001-智瑜,情感女声
  • 1002-智聆,通用女声
  • 1003-智美,客服女声
  • 1004-智云,通用男声
  • 1005-智莉,通用女声
  • 1007-智娜,客服女声
  • 1008-智琪,客服女声
  • 1009-智芸,知性女声
  • 1010-智华,通用男声
  • 1017-智蓉,情感女声
  • 1018-智靖,情感男声
  • 1050-WeJack,英文男声
  • 1051-WeRose,英文女声
  • 精品音色
    精品音色拟真度更高,价格不同于标准音色,查看[购买指南](https://cloud.tencent.com/document/product/1073/34112)
  • 100510000-智逍遥,旁对白阅读风格男声(精品)
  • 101001-智瑜,情感女声(精品)
  • 101002-智聆,通用女声(精品)
  • 101003-智美,客服女声(精品)
  • 101004-智云,通用男声(精品)
  • 101005-智莉,通用女声(精品)
  • 101006-智言,助手女声
  • 101007-智娜,客服女声(精品)
  • 101008-智琪,客服女声(精品)
  • 101009-智芸,知性女声(精品)
  • 101010-智华,通用男声(精品)
  • 101011-智燕,新闻女声
  • 101012-智丹,新闻女声
  • 101013-智辉,新闻男声
  • 101014-智宁,新闻男声
  • 101015-智萌,男童声
  • 101016-智甜,女童声
  • 101017-智蓉,情感女声(精品)
  • 101018-智靖,情感男声(精品)
  • 101019-智彤,粤语女声
  • 101050-WeJack,英文男声(精品)
  • 101051-WeRose,英文女声(精品)
  • - */ + * 标准音色
  • 10510000-智逍遥,旁对白阅读风格男声
  • 1001-智瑜,情感女声
  • 1002-智聆,通用女声
  • 1003-智美,客服女声
  • 1004-智云,通用男声
  • 1005-智莉,通用女声
  • 1007-智娜,客服女声
  • 1008-智琪,客服女声
  • 1009-智芸,知性女声
  • 1010-智华,通用男声
  • 1017-智蓉,情感女声
  • 1018-智靖,情感男声
  • 1050-WeJack,英文男声
  • 1051-WeRose,英文女声
  • 精品音色
    精品音色拟真度更高,价格不同于标准音色,查看[购买指南](https://cloud.tencent.com/document/product/1073/34112)
  • 100510000-智逍遥,阅读男声
  • 101001-智瑜,情感女声
  • 101002-智聆,通用女声
  • 101003-智美,客服女声
  • 101004-智云,通用男声
  • 101005-智莉,通用女声
  • 101006-智言,助手女声
  • 101007-智娜,客服女声
  • 101008-智琪,客服女声
  • 101009-智芸,知性女声
  • 101010-智华,通用男声
  • 101011-智燕,新闻女声
  • 101012-智丹,新闻女声
  • 101013-智辉,新闻男声
  • 101014-智宁,新闻男声
  • 101015-智萌,男童声
  • 101016-智甜,女童声
  • 101017-智蓉,情感女声
  • 101018-智靖,情感男声
  • 101019-智彤,粤语女声
  • 101020-智刚,新闻男声
  • 101021-智瑞,新闻男声
  • 101022-智虹,新闻女声
  • 101023-智萱,聊天女声
  • 101024-智皓,聊天男声
  • 101025-智薇,聊天女声
  • 101026-智希,通用女声
  • 101027-智梅,通用女声
  • 101028-智洁,通用女声
  • 101029-智凯,通用男声
  • 101030-智柯,通用男声
  • 101031-智奎,通用男声
  • 101032-智芳,通用女声
  • 101033-智蓓,客服女声
  • 101034-智莲,通用女声
  • 101035-智依,通用女声
  • 101040-智川,四川女声
  • 101050-WeJack,英文男声
  • 101051-WeRose,英文女声
  • 101052-智味,通用男声
  • +
  • 101053-智方,通用男声
  • +
  • 101054-智友,通用男声
  • +
  • 101055-智付,通用女声
  • +
  • 101056-智林,东北男声
  • + */ VoiceType?: number /** diff --git a/src/services/vod/v20180717/vod_client.ts b/src/services/vod/v20180717/vod_client.ts index 8c4d4434c..05d60a8ee 100644 --- a/src/services/vod/v20180717/vod_client.ts +++ b/src/services/vod/v20180717/vod_client.ts @@ -1351,7 +1351,6 @@ export class Client extends AbstractClient { * 对点播中的音视频媒体发起审核任务,智能检测视频画面、画面中的文字、语音中的文字、声音出现的违规内容。 如使用事件通知,事件通知的类型为 [音视频审核完成](https://cloud.tencent.com/document/product/266/81258)。 - */ async ReviewAudioVideo( req: ReviewAudioVideoRequest, diff --git a/src/services/vod/v20180717/vod_models.ts b/src/services/vod/v20180717/vod_models.ts index f4a0f5202..cb8fa475e 100644 --- a/src/services/vod/v20180717/vod_models.ts +++ b/src/services/vod/v20180717/vod_models.ts @@ -2946,7 +2946,7 @@ export interface ReviewAudioVideoRequest { /** * 审核模板 ID,默认值为 10。取值范围: -
  • 10:预置模板,支持检测的违规标签包括色情(Porn)、暴恐(Terror)和不适宜的信息(Polity)。
  • +
  • 10:预置模板,支持检测的违规标签包括色情(Porn)、暴力(Terror)和不适宜的信息(Polity)。
  • */ Definition?: number @@ -4089,11 +4089,10 @@ export interface ReviewAudioVideoSegmentItem { /** * 嫌疑片段最可能的违规的标签,取值范围:
  • Porn:色情;
  • -
  • Terror:暴恐;
  • +
  • Terror:暴力;
  • Polity:不适宜的信息;
  • Ad:广告;
  • Illegal:违法;
  • -
  • Religion:宗教;
  • Abuse:谩骂;
  • Moan:娇喘。
  • */ @@ -5354,11 +5353,10 @@ export interface ReviewImageSegmentItem { /** * 嫌疑片段最可能的违规的标签,取值范围:
  • Porn:色情;
  • -
  • Terror:暴恐;
  • +
  • Terror:暴力;
  • Polity:不适宜的信息;
  • Ad:广告;
  • Illegal:违法;
  • -
  • Religion:宗教;
  • Abuse:谩骂。
  • */ Label?: string @@ -5588,10 +5586,9 @@ export interface CreateReviewTemplateRequest { /** * 需要返回的违规标签列表,可选值为:
  • Porn:色情;
  • -
  • Terror:暴恐;
  • +
  • Terror:暴力;
  • Polity:不适宜的信息;
  • Illegal:违法;
  • -
  • Religion:宗教;
  • Abuse:谩骂;
  • Ad:广告;
  • Moan:娇喘。
  • @@ -7079,11 +7076,10 @@ export interface ReviewAudioVideoTaskOutput { /** * 当 Suggestion 为 review 或 block 时有效,表示音视频最可能的违规的标签,取值范围:
  • Porn:色情;
  • -
  • Terror:暴恐;
  • +
  • Terror:暴力;
  • Polity:不适宜的信息;
  • Ad:广告;
  • Illegal:违法;
  • -
  • Religion:宗教;
  • Abuse:谩骂;
  • Moan:娇喘。
  • */ @@ -7445,10 +7441,9 @@ export interface ModifyReviewTemplateRequest { /** * 需要返回的违规标签列表,可选值为:
  • Porn:色情;
  • -
  • Terror:暴恐;
  • +
  • Terror:暴力;
  • Polity:不适宜的信息;
  • Illegal:违法;
  • -
  • Religion:宗教;
  • Abuse:谩骂;
  • Ad:广告;
  • Moan:娇喘。
  • @@ -9971,11 +9966,10 @@ export interface ReviewImageResult { /** * 当 Suggestion 为 review 或 block 时有效,表示最可能的违规的标签,取值范围:
  • Porn:色情;
  • -
  • Terror:暴恐;
  • +
  • Terror:暴力;
  • Polity:不适宜的信息;
  • Ad:广告;
  • Illegal:违法;
  • -
  • Religion:宗教;
  • Abuse:谩骂。
  • */ Label?: string @@ -16136,7 +16130,7 @@ export interface ReviewAudioVideoResponse { /** * 任务 ID */ - TaskId: string + TaskId?: string /** * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 @@ -17929,11 +17923,10 @@ Form 表示违禁的形式,取值范围:
  • Voice:声音。
  • Label 表示违禁的标签,取值范围:
  • Porn:色情;
  • -
  • Terror:暴恐;
  • +
  • Terror:暴力;
  • Polity:不适宜的信息;
  • Ad:广告;
  • Illegal:违法;
  • -
  • Religion:宗教;
  • Abuse:谩骂;
  • Moan:娇喘。
  • */ @@ -18118,7 +18111,7 @@ export interface ReviewImageRequest { /** * 图片审核模板 ID,取值范围: -
  • 10:预置模板,支持检测的违规标签包括色情(Porn)、暴恐(Terror)和不适宜的信息(Polity)。
  • +
  • 10:预置模板,支持检测的违规标签包括色情(Porn)、暴力(Terror)和不适宜的信息(Polity)。
  • */ Definition: number diff --git a/src/services/wedata/v20210820/wedata_client.ts b/src/services/wedata/v20210820/wedata_client.ts index 0df7326b4..968d192c6 100644 --- a/src/services/wedata/v20210820/wedata_client.ts +++ b/src/services/wedata/v20210820/wedata_client.ts @@ -459,10 +459,12 @@ import { DescribeAlarmReceiverResponse, BatchModifyOwnersNewResponse, DeleteInLongAgentRequest, + Partition, RuleDimCnt, BatchOperateResult, RuleGroupTable, DescribeDimensionScoreRequest, + Property, InLongAgentTask, BatchStartIntegrationTasksResponse, DescribeIntegrationVersionNodesInfoRequest, diff --git a/src/services/wedata/v20210820/wedata_models.ts b/src/services/wedata/v20210820/wedata_models.ts index d57721385..986699994 100644 --- a/src/services/wedata/v20210820/wedata_models.ts +++ b/src/services/wedata/v20210820/wedata_models.ts @@ -5955,6 +5955,56 @@ export interface GenHiveTableDDLSqlRequest { * 上游节点的字段信息 */ SourceFieldInfoList?: Array + + /** + * 分区字段 + */ + Partitions?: Array + + /** + * 建表属性 + */ + Properties?: Array + + /** + * 建表模式,0:向导模式,1:ddl + */ + TableMode?: number + + /** + * DLC表版本,v1/v2 + */ + TableVersion?: string + + /** + * 是否upsert写入 + */ + UpsertFlag?: boolean + + /** + * 表描述信息 + */ + TableComment?: string + + /** + * 增加的文件数量阈值, 超过值将触发小文件合并 + */ + AddDataFiles?: number + + /** + * 增加的Equality delete数量阈值, 超过值将触发小文件合并 + */ + AddEqualityDeletes?: number + + /** + * 增加的Position delete数量阈值, 超过值将触发小文件合并 + */ + AddPositionDeletes?: number + + /** + * 增加的delete file数量阈值 + */ + AddDeleteFiles?: number } /** @@ -12768,6 +12818,26 @@ export interface DeleteInLongAgentRequest { ProjectId: string } +/** + * 分区参数 + */ +export interface Partition { + /** + * 分区转换策略 + */ + Transform?: string + + /** + * 分区字段名 + */ + Name?: string + + /** + * 策略参数 + */ + TransformArgs?: Array +} + /** * RuleDimCnt 规则维度统计 */ @@ -12846,6 +12916,21 @@ export interface DescribeDimensionScoreRequest { DatasourceId?: string } +/** + * dlc建表属性 + */ +export interface Property { + /** + * key值 + */ + Key: string + + /** + * value值 + */ + Value: string +} + /** * 采集器关联的集成任务 */ diff --git a/tencentcloud/common/sdk_version.d.ts b/tencentcloud/common/sdk_version.d.ts index 72ed6e925..a0eced8a8 100644 --- a/tencentcloud/common/sdk_version.d.ts +++ b/tencentcloud/common/sdk_version.d.ts @@ -1 +1 @@ -export declare const sdkVersion = "4.0.538"; +export declare const sdkVersion = "4.0.539"; diff --git a/tencentcloud/common/sdk_version.js b/tencentcloud/common/sdk_version.js index 18d41476f..b73346f51 100644 --- a/tencentcloud/common/sdk_version.js +++ b/tencentcloud/common/sdk_version.js @@ -1,4 +1,4 @@ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.sdkVersion = void 0; -exports.sdkVersion = "4.0.538"; +exports.sdkVersion = "4.0.539"; diff --git a/tencentcloud/services/bma/index.d.ts b/tencentcloud/services/bma/index.d.ts index 3069c9c71..4a5883272 100644 --- a/tencentcloud/services/bma/index.d.ts +++ b/tencentcloud/services/bma/index.d.ts @@ -3,4 +3,8 @@ export declare const bma: { Client: typeof import("./v20210624/bma_client").Client; Models: typeof import("./v20210624/bma_models"); }; + v20221115: { + Client: typeof import("./v20221115/bma_client").Client; + Models: typeof import("./v20221115/bma_models"); + }; }; diff --git a/tencentcloud/services/bma/index.js b/tencentcloud/services/bma/index.js index 5b85c89f6..a62394d38 100644 --- a/tencentcloud/services/bma/index.js +++ b/tencentcloud/services/bma/index.js @@ -2,6 +2,8 @@ Object.defineProperty(exports, "__esModule", { value: true }); exports.bma = void 0; const v20210624_1 = require("./v20210624"); +const v20221115_1 = require("./v20221115"); exports.bma = { v20210624: v20210624_1.v20210624, + v20221115: v20221115_1.v20221115, }; diff --git a/tencentcloud/services/bma/v20221115/bma_client.d.ts b/tencentcloud/services/bma/v20221115/bma_client.d.ts new file mode 100644 index 000000000..f11588779 --- /dev/null +++ b/tencentcloud/services/bma/v20221115/bma_client.d.ts @@ -0,0 +1,26 @@ +import { AbstractClient } from "../../../common/abstract_client"; +import { ClientConfig } from "../../../common/interface"; +import { CreateBPFakeAPPResponse, CreateBPFakeAPPRequest, CreateBPFakeAPPListRequest, CreateBPFakeURLRequest, CreateBPFakeAPPListResponse, CreateBPFakeURLResponse, CreateBPFakeURLsRequest, CreateBPFakeURLsResponse } from "./bma_models"; +/** + * bma client + * @class + */ +export declare class Client extends AbstractClient { + constructor(clientConfig: ClientConfig); + /** + * 仿冒应用举报 + */ + CreateBPFakeAPP(req: CreateBPFakeAPPRequest, cb?: (error: string, rep: CreateBPFakeAPPResponse) => void): Promise; + /** + * 仿冒网址举报 + */ + CreateBPFakeURL(req: CreateBPFakeURLRequest, cb?: (error: string, rep: CreateBPFakeURLResponse) => void): Promise; + /** + * 批量仿冒网址举报 + */ + CreateBPFakeURLs(req: CreateBPFakeURLsRequest, cb?: (error: string, rep: CreateBPFakeURLsResponse) => void): Promise; + /** + * 批量仿冒应用举报 + */ + CreateBPFakeAPPList(req: CreateBPFakeAPPListRequest, cb?: (error: string, rep: CreateBPFakeAPPListResponse) => void): Promise; +} diff --git a/tencentcloud/services/bma/v20221115/bma_client.js b/tencentcloud/services/bma/v20221115/bma_client.js new file mode 100644 index 000000000..1f4b75e91 --- /dev/null +++ b/tencentcloud/services/bma/v20221115/bma_client.js @@ -0,0 +1,55 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.Client = void 0; +/* eslint-disable @typescript-eslint/no-unused-vars */ +/* + * Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +const abstract_client_1 = require("../../../common/abstract_client"); +/** + * bma client + * @class + */ +class Client extends abstract_client_1.AbstractClient { + constructor(clientConfig) { + super("bma.tencentcloudapi.com", "2022-11-15", clientConfig); + } + /** + * 仿冒应用举报 + */ + async CreateBPFakeAPP(req, cb) { + return this.request("CreateBPFakeAPP", req, cb); + } + /** + * 仿冒网址举报 + */ + async CreateBPFakeURL(req, cb) { + return this.request("CreateBPFakeURL", req, cb); + } + /** + * 批量仿冒网址举报 + */ + async CreateBPFakeURLs(req, cb) { + return this.request("CreateBPFakeURLs", req, cb); + } + /** + * 批量仿冒应用举报 + */ + async CreateBPFakeAPPList(req, cb) { + return this.request("CreateBPFakeAPPList", req, cb); + } +} +exports.Client = Client; diff --git a/tencentcloud/services/bma/v20221115/bma_models.d.ts b/tencentcloud/services/bma/v20221115/bma_models.d.ts new file mode 100644 index 000000000..e1eedd908 --- /dev/null +++ b/tencentcloud/services/bma/v20221115/bma_models.d.ts @@ -0,0 +1,112 @@ +/** + * CreateBPFakeAPP返回参数结构体 + */ +export interface CreateBPFakeAPPResponse { + /** + * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 + */ + RequestId?: string; +} +/** + * CreateBPFakeAPP请求参数结构体 + */ +export interface CreateBPFakeAPPRequest { + /** + * 企业id + */ + CompanyId: number; + /** + * 仿冒应用名称 + */ + FakeAPPName: string; + /** + * 仿冒来源 + */ + APPChan?: string; + /** + * 仿冒应用包名 + */ + FakeAPPPackageName?: string; + /** + * 仿冒应用证书 + */ + FakeAPPCert?: string; + /** + * 仿冒应用大小 + */ + FakeAPPSize?: string; + /** + * 仿冒截图 + */ + FakeAPPSnapshots?: Array; + /** + * 备注 + */ + Note?: string; +} +/** + * CreateBPFakeAPPList请求参数结构体 + */ +export interface CreateBPFakeAPPListRequest { + /** + * 仿冒应用下载链接。请严格按照模版进行填写:https://bma-privacy-detection-1251316161.cosgz.myqcloud.com/20221206/f8c7521fbd84f4c4e7c2a25ac233857e/批量仿冒应用举报模板.xlsx + */ + FakeAPPs: string; +} +/** + * CreateBPFakeURL请求参数结构体 + */ +export interface CreateBPFakeURLRequest { + /** + * 企业id + */ + CompanyId: number; + /** + * 仿冒网址 + */ + FakeURL: string; + /** + * 仿冒网址截图 + */ + FakeURLSnapshots?: Array; + /** + * 备注 + */ + Note?: string; +} +/** + * CreateBPFakeAPPList返回参数结构体 + */ +export interface CreateBPFakeAPPListResponse { + /** + * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 + */ + RequestId?: string; +} +/** + * CreateBPFakeURL返回参数结构体 + */ +export interface CreateBPFakeURLResponse { + /** + * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 + */ + RequestId?: string; +} +/** + * CreateBPFakeURLs请求参数结构体 + */ +export interface CreateBPFakeURLsRequest { + /** + * 仿冒网址下载链接:请严格按照模版要求填写,https://bma-privacy-detection-1251316161.cosgz.myqcloud.com/20221124/ff3273b24104d03fa3a8d0629a7f71a9/批量仿冒网址举报模板.xlsx + */ + FakeURLs: string; +} +/** + * CreateBPFakeURLs返回参数结构体 + */ +export interface CreateBPFakeURLsResponse { + /** + * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 + */ + RequestId?: string; +} diff --git a/tencentcloud/services/bma/v20221115/bma_models.js b/tencentcloud/services/bma/v20221115/bma_models.js new file mode 100644 index 000000000..0f824c466 --- /dev/null +++ b/tencentcloud/services/bma/v20221115/bma_models.js @@ -0,0 +1,18 @@ +"use strict"; +/* + * Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +Object.defineProperty(exports, "__esModule", { value: true }); diff --git a/tencentcloud/services/bma/v20221115/index.d.ts b/tencentcloud/services/bma/v20221115/index.d.ts new file mode 100644 index 000000000..a5bf9f7af --- /dev/null +++ b/tencentcloud/services/bma/v20221115/index.d.ts @@ -0,0 +1,6 @@ +import * as Models from "./bma_models"; +import { Client } from "./bma_client"; +export declare const v20221115: { + Client: typeof Client; + Models: typeof Models; +}; diff --git a/tencentcloud/services/bma/v20221115/index.js b/tencentcloud/services/bma/v20221115/index.js new file mode 100644 index 000000000..eee7cbd92 --- /dev/null +++ b/tencentcloud/services/bma/v20221115/index.js @@ -0,0 +1,9 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.v20221115 = void 0; +const Models = require("./bma_models"); +const bma_client_1 = require("./bma_client"); +exports.v20221115 = { + Client: bma_client_1.Client, + Models: Models +}; diff --git a/tencentcloud/services/bmeip/v20180625/bmeip_client.d.ts b/tencentcloud/services/bmeip/v20180625/bmeip_client.d.ts index 01a0565c9..79d4ba767 100644 --- a/tencentcloud/services/bmeip/v20180625/bmeip_client.d.ts +++ b/tencentcloud/services/bmeip/v20180625/bmeip_client.d.ts @@ -16,7 +16,7 @@ export declare class Client extends AbstractClient { */ BindHosted(req: BindHostedRequest, cb?: (error: string, rep: BindHostedResponse) => void): Promise; /** - * 创建黑石弹性公网 EIPACL + * 创建黑石弹性公网 EIP ACL */ CreateEipAcl(req: CreateEipAclRequest, cb?: (error: string, rep: CreateEipAclResponse) => void): Promise; /** @@ -76,7 +76,7 @@ export declare class Client extends AbstractClient { */ DescribeEips(req: DescribeEipsRequest, cb?: (error: string, rep: DescribeEipsResponse) => void): Promise; /** - * 黑石EIP绑定VPCIP + * 黑石EIP绑定VPC IP */ BindVpcIp(req: BindVpcIpRequest, cb?: (error: string, rep: BindVpcIpResponse) => void): Promise; /** diff --git a/tencentcloud/services/bmeip/v20180625/bmeip_client.js b/tencentcloud/services/bmeip/v20180625/bmeip_client.js index c1cc8c4be..d9fb485fb 100644 --- a/tencentcloud/services/bmeip/v20180625/bmeip_client.js +++ b/tencentcloud/services/bmeip/v20180625/bmeip_client.js @@ -40,7 +40,7 @@ class Client extends abstract_client_1.AbstractClient { return this.request("BindHosted", req, cb); } /** - * 创建黑石弹性公网 EIPACL + * 创建黑石弹性公网 EIP ACL */ async CreateEipAcl(req, cb) { return this.request("CreateEipAcl", req, cb); @@ -130,7 +130,7 @@ class Client extends abstract_client_1.AbstractClient { return this.request("DescribeEips", req, cb); } /** - * 黑石EIP绑定VPCIP + * 黑石EIP绑定VPC IP */ async BindVpcIp(req, cb) { return this.request("BindVpcIp", req, cb); diff --git a/tencentcloud/services/bmeip/v20180625/bmeip_models.d.ts b/tencentcloud/services/bmeip/v20180625/bmeip_models.d.ts index b675e0140..0d01a2b7c 100644 --- a/tencentcloud/services/bmeip/v20180625/bmeip_models.d.ts +++ b/tencentcloud/services/bmeip/v20180625/bmeip_models.d.ts @@ -807,7 +807,7 @@ export interface UnbindVpcIpResponse { /** * 绑定黑石物理机异步任务ID,可以通过查询EIP任务状态查询任务状态 */ - TaskId: number; + TaskId?: number; /** * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 */ @@ -820,19 +820,19 @@ export interface CreateEipAclResponse { /** * ACL 实例 ID */ - AclId: string; + AclId?: string; /** * ACL 实例状态 */ - Status: number; + Status?: number; /** * ACL 实例名称 */ - AclName: string; + AclName?: string; /** * ACL 实例创建时间 */ - CreatedAt: string; + CreatedAt?: string; /** * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 */ diff --git a/tencentcloud/services/car/v20220110/car_models.d.ts b/tencentcloud/services/car/v20220110/car_models.d.ts index 6c459e24d..2aedb4551 100644 --- a/tencentcloud/services/car/v20220110/car_models.d.ts +++ b/tencentcloud/services/car/v20220110/car_models.d.ts @@ -5,7 +5,7 @@ export interface CreateSessionResponse { /** * 服务端session信息,返回给SDK */ - ServerSession: string; + ServerSession?: string; /** * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 */ diff --git a/tencentcloud/services/cls/v20201016/cls_client.d.ts b/tencentcloud/services/cls/v20201016/cls_client.d.ts index e18dd4494..e030ff185 100644 --- a/tencentcloud/services/cls/v20201016/cls_client.d.ts +++ b/tencentcloud/services/cls/v20201016/cls_client.d.ts @@ -73,7 +73,7 @@ export declare class Client extends AbstractClient { */ DescribeConfigExtras(req: DescribeConfigExtrasRequest, cb?: (error: string, rep: DescribeConfigExtrasResponse) => void): Promise; /** - * 创建新的投递规则,【!!!注意】使用此接口,需要检查是否配置了投递COS的角色和权限。如果没有配置,请参考文档投递权限查看和配置https://cloud.tencent.com/document/product/614/71623。 + * 新建投递到COS的任务,【!!!注意】使用此接口,需要检查是否配置了投递COS的角色和权限。如果没有配置,请参考文档投递权限查看和配置https://cloud.tencent.com/document/product/614/71623。 */ CreateShipper(req: CreateShipperRequest, cb?: (error: string, rep: CreateShipperResponse) => void): Promise; /** @@ -105,7 +105,7 @@ export declare class Client extends AbstractClient { */ DeleteLogset(req: DeleteLogsetRequest, cb?: (error: string, rep: DeleteLogsetResponse) => void): Promise; /** - * 获取投递规则信息列表 + * 获取投递到COS的任务配置信息 */ DescribeShippers(req: DescribeShippersRequest, cb?: (error: string, rep: DescribeShippersResponse) => void): Promise; /** diff --git a/tencentcloud/services/cls/v20201016/cls_client.js b/tencentcloud/services/cls/v20201016/cls_client.js index 4ca016082..7d2a84d7c 100644 --- a/tencentcloud/services/cls/v20201016/cls_client.js +++ b/tencentcloud/services/cls/v20201016/cls_client.js @@ -125,7 +125,7 @@ class Client extends abstract_client_1.AbstractClient { return this.request("DescribeConfigExtras", req, cb); } /** - * 创建新的投递规则,【!!!注意】使用此接口,需要检查是否配置了投递COS的角色和权限。如果没有配置,请参考文档投递权限查看和配置https://cloud.tencent.com/document/product/614/71623。 + * 新建投递到COS的任务,【!!!注意】使用此接口,需要检查是否配置了投递COS的角色和权限。如果没有配置,请参考文档投递权限查看和配置https://cloud.tencent.com/document/product/614/71623。 */ async CreateShipper(req, cb) { return this.request("CreateShipper", req, cb); @@ -173,7 +173,7 @@ class Client extends abstract_client_1.AbstractClient { return this.request("DeleteLogset", req, cb); } /** - * 获取投递规则信息列表 + * 获取投递到COS的任务配置信息 */ async DescribeShippers(req, cb) { return this.request("DescribeShippers", req, cb); diff --git a/tencentcloud/services/cls/v20201016/cls_models.d.ts b/tencentcloud/services/cls/v20201016/cls_models.d.ts index 5c56a1877..f1961073b 100644 --- a/tencentcloud/services/cls/v20201016/cls_models.d.ts +++ b/tencentcloud/services/cls/v20201016/cls_models.d.ts @@ -534,11 +534,11 @@ export interface DescribeShippersResponse { * 投递规则列表 注意:此字段可能返回 null,表示取不到有效值。 */ - Shippers: Array; + Shippers?: Array; /** * 本次查询获取到的总数 */ - TotalCount: number; + TotalCount?: number; /** * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 */ @@ -2420,7 +2420,7 @@ export interface CreateConfigRequest { */ export interface CreateShipperResponse { /** - * 投递规则ID + * 投递任务ID */ ShipperId?: string; /** diff --git a/tencentcloud/services/cwp/v20180228/cwp_models.d.ts b/tencentcloud/services/cwp/v20180228/cwp_models.d.ts index 2eb4e7aa1..67382af07 100644 --- a/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +++ b/tencentcloud/services/cwp/v20180228/cwp_models.d.ts @@ -11336,7 +11336,7 @@ export interface DescribeAssetInfoResponse { */ export interface WarningObject { /** - * 事件告警类型;1:离线,2:木马,3:异常登录,4:爆破,5:漏洞(已拆分为9-12四种类型)6:高位命令,7:反弹sell,8:本地提权,9:系统组件漏洞,10:web应用漏洞,11:应急漏洞,12:安全基线 + * 事件告警类型;1:离线,2:木马,3:异常登录,4:爆破,5:漏洞(已拆分为9-12四种类型)6:高位命令,7:反弹sell,8:本地提权,9:系统组件漏洞,10:web应用漏洞,11:应急漏洞,12:安全基线,14:恶意请求,15: 网络攻击,16:Windows系统漏洞,17:Linux软件漏洞 */ Type?: number; /** @@ -11355,6 +11355,11 @@ export interface WarningObject { * 漏洞等级控制位二进制,每一位对应页面漏洞等级的开启关闭:低中高(0:关闭;1:开启),例如:101 → 同时勾选低+高;01→(登录审计)疑似不告警,高危告警 */ ControlBits?: string; + /** + * 告警主机范围类型,0:全部主机,1:按所属项目选,2:按腾讯云标签选,3:按主机安全标签选,4:自选主机 +注意:此字段可能返回 null,表示取不到有效值。 + */ + HostRange?: number; } /** * 恶意请求列表 @@ -14104,6 +14109,16 @@ export interface WarningInfoObj { * 漏洞等级控制位二进制,每一位对应页面漏洞等级的开启关闭:低中高(0:关闭;1:开启),例如:101 → 同时勾选低+高 */ ControlBits: string; + /** + * 告警主机范围类型,0:全部主机,1:按所属项目选,2:按腾讯云标签选,3:按主机安全标签选,4:自选主机 +注意:此字段可能返回 null,表示取不到有效值。 + */ + HostRange?: number; + /** + * 配置的告警范围主机个数,前端用此判断展示提示信息 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Count: number; } /** * UpdateMachineTags请求参数结构体 diff --git a/tencentcloud/services/cynosdb/v20190107/cynosdb_client.d.ts b/tencentcloud/services/cynosdb/v20190107/cynosdb_client.d.ts index e40f75093..347d3a34c 100644 --- a/tencentcloud/services/cynosdb/v20190107/cynosdb_client.d.ts +++ b/tencentcloud/services/cynosdb/v20190107/cynosdb_client.d.ts @@ -1,6 +1,6 @@ import { AbstractClient } from "../../../common/abstract_client"; import { ClientConfig } from "../../../common/interface"; -import { RemoveClusterSlaveZoneRequest, ModifyClusterNameRequest, DescribeRollbackTimeRangeRequest, InquirePriceRenewRequest, DescribeAuditLogsRequest, DescribeBackupConfigRequest, ModifyAuditRuleTemplatesRequest, DescribeAccountsRequest, ModifyMaintainPeriodConfigRequest, DescribeRollbackTimeRangeResponse, ModifyBackupNameResponse, ModifyClusterStorageRequest, RollBackClusterRequest, DescribeAuditLogFilesResponse, SwitchClusterZoneResponse, AssociateSecurityGroupsRequest, DescribeBinlogDownloadUrlRequest, CreateAccountsResponse, ModifyInstanceNameRequest, DescribeDBSecurityGroupsResponse, DescribeMaintainPeriodRequest, DescribeBinlogsResponse, DescribeInstancesResponse, AddClusterSlaveZoneResponse, ModifyClusterNameResponse, DescribeClusterParamsResponse, IsolateInstanceResponse, DescribeParamTemplatesRequest, DescribeAuditLogsResponse, SearchClusterTablesRequest, PauseServerlessRequest, DescribeFlowResponse, RevokeAccountPrivilegesResponse, CreateClustersResponse, SetRenewFlagRequest, ActivateInstanceRequest, AddClusterSlaveZoneRequest, DescribeAccountAllGrantPrivilegesResponse, DescribeClustersRequest, ModifyClusterStorageResponse, DescribeInstanceDetailResponse, ModifyDBInstanceSecurityGroupsResponse, DeleteAuditLogFileResponse, DescribeClusterParamLogsResponse, DescribeClusterInstanceGrpsRequest, DescribeResourcesByDealNameResponse, ResumeServerlessResponse, CreateAccountsRequest, DeleteAuditRuleTemplatesRequest, DescribeAuditRuleTemplatesResponse, SwitchClusterZoneRequest, RestartInstanceRequest, UpgradeInstanceRequest, IsolateInstanceRequest, DescribeClusterDetailRequest, DeleteBackupResponse, DescribeProjectSecurityGroupsResponse, RemoveClusterSlaveZoneResponse, CreateAuditLogFileResponse, PauseServerlessResponse, OfflineClusterRequest, ResetAccountPasswordResponse, DescribeBinlogDownloadUrlResponse, DescribeAuditRuleWithInstanceIdsResponse, UpgradeInstanceResponse, DescribeBackupListRequest, SearchClusterDatabasesRequest, DescribeAuditRuleWithInstanceIdsRequest, ModifyClusterSlaveZoneResponse, GrantAccountPrivilegesRequest, ModifyAuditServiceRequest, CreateClustersRequest, DescribeClustersResponse, DescribeBackupConfigResponse, ModifyDBInstanceSecurityGroupsRequest, DescribeParamTemplatesResponse, CloseAuditServiceRequest, AddInstancesResponse, DescribeProjectSecurityGroupsRequest, ModifyClusterParamResponse, DescribeBackupDownloadUrlRequest, OfflineInstanceRequest, OpenAuditServiceRequest, AssociateSecurityGroupsResponse, DescribeResourcesByDealNameRequest, CloseAuditServiceResponse, CreateBackupResponse, DescribeRollbackTimeValidityResponse, DescribeInstanceSlowQueriesResponse, DescribeInstancesRequest, DescribeBackupDownloadUrlResponse, ResumeServerlessRequest, InquirePriceCreateRequest, CreateAuditRuleTemplateRequest, ModifyBackupConfigResponse, DescribeInstanceSpecsRequest, ExportInstanceSlowQueriesRequest, ModifyAccountParamsRequest, CreateAuditRuleTemplateResponse, IsolateClusterResponse, SearchClusterDatabasesResponse, OpenAuditServiceResponse, OfflineClusterResponse, SwitchProxyVpcResponse, RevokeAccountPrivilegesRequest, DescribeAuditRuleTemplatesRequest, DescribeFlowRequest, SetRenewFlagResponse, CreateBackupRequest, DescribeClusterParamLogsRequest, SearchClusterTablesResponse, DescribeMaintainPeriodResponse, SwitchProxyVpcRequest, DescribeBackupListResponse, RollBackClusterResponse, RestartInstanceResponse, DescribeBinlogSaveDaysRequest, ModifyBackupConfigRequest, ActivateInstanceResponse, DescribeRollbackTimeValidityRequest, CreateAuditLogFileRequest, DeleteAuditLogFileRequest, AddInstancesRequest, InquirePriceCreateResponse, ModifyClusterSlaveZoneRequest, GrantAccountPrivilegesResponse, DescribeInstanceSlowQueriesRequest, ExportInstanceSlowQueriesResponse, ResetAccountPasswordRequest, DescribeInstanceDetailRequest, ModifyMaintainPeriodConfigResponse, DisassociateSecurityGroupsRequest, ModifyBackupNameRequest, ModifyInstanceNameResponse, DescribeBinlogSaveDaysResponse, ModifyClusterParamRequest, DescribeAccountsResponse, ModifyAccountParamsResponse, DeleteBackupRequest, DescribeClusterParamsRequest, DescribeInstanceSpecsResponse, DescribeDBSecurityGroupsRequest, DescribeAccountAllGrantPrivilegesRequest, OfflineInstanceResponse, ModifyAuditServiceResponse, IsolateClusterRequest, DeleteAuditRuleTemplatesResponse, DescribeAuditLogFilesRequest, DescribeClusterDetailResponse, DescribeClusterInstanceGrpsResponse, DescribeBinlogsRequest, DisassociateSecurityGroupsResponse, InquirePriceRenewResponse, ModifyAuditRuleTemplatesResponse } from "./cynosdb_models"; +import { RemoveClusterSlaveZoneRequest, ModifyClusterNameRequest, DescribeRollbackTimeRangeRequest, InquirePriceRenewRequest, DescribeAuditLogsRequest, DescribeBackupConfigRequest, ModifyAuditRuleTemplatesRequest, DescribeAccountsRequest, ModifyMaintainPeriodConfigRequest, DescribeRollbackTimeRangeResponse, ModifyBackupNameResponse, ModifyClusterStorageRequest, RollBackClusterRequest, DescribeAuditLogFilesResponse, SwitchClusterZoneResponse, AssociateSecurityGroupsRequest, DescribeBinlogDownloadUrlRequest, CreateAccountsResponse, ModifyInstanceNameRequest, DescribeDBSecurityGroupsResponse, DescribeMaintainPeriodRequest, DescribeBinlogsResponse, DescribeInstancesResponse, DescribeZonesRequest, AddClusterSlaveZoneResponse, ModifyClusterNameResponse, DescribeClusterParamsResponse, IsolateInstanceResponse, DescribeParamTemplatesRequest, DescribeAuditLogsResponse, SearchClusterTablesRequest, PauseServerlessRequest, DescribeFlowResponse, RevokeAccountPrivilegesResponse, CreateClustersResponse, SetRenewFlagRequest, ActivateInstanceRequest, AddClusterSlaveZoneRequest, DescribeAccountAllGrantPrivilegesResponse, DescribeClustersRequest, ModifyClusterStorageResponse, DescribeInstanceDetailResponse, ModifyDBInstanceSecurityGroupsResponse, DeleteAuditLogFileResponse, DescribeClusterParamLogsResponse, DescribeClusterInstanceGrpsRequest, DescribeResourcesByDealNameResponse, ResumeServerlessResponse, CreateAccountsRequest, DeleteAuditRuleTemplatesRequest, DescribeAuditRuleTemplatesResponse, SwitchClusterZoneRequest, RestartInstanceRequest, UpgradeInstanceRequest, IsolateInstanceRequest, DescribeClusterDetailRequest, DeleteBackupResponse, DescribeProjectSecurityGroupsResponse, RemoveClusterSlaveZoneResponse, CreateAuditLogFileResponse, PauseServerlessResponse, OfflineClusterRequest, ResetAccountPasswordResponse, DescribeBinlogDownloadUrlResponse, DescribeAuditRuleWithInstanceIdsResponse, UpgradeInstanceResponse, DescribeBackupListRequest, SearchClusterDatabasesRequest, DescribeAuditRuleWithInstanceIdsRequest, ModifyClusterSlaveZoneResponse, GrantAccountPrivilegesRequest, ModifyAuditServiceRequest, CreateClustersRequest, DescribeClustersResponse, DescribeBackupConfigResponse, ModifyDBInstanceSecurityGroupsRequest, DescribeParamTemplatesResponse, CloseAuditServiceRequest, AddInstancesResponse, DescribeProjectSecurityGroupsRequest, ModifyClusterParamResponse, DescribeBackupDownloadUrlRequest, OfflineInstanceRequest, OpenAuditServiceRequest, AssociateSecurityGroupsResponse, DescribeResourcesByDealNameRequest, CloseAuditServiceResponse, CreateBackupResponse, DescribeRollbackTimeValidityResponse, DescribeInstanceSlowQueriesResponse, DescribeInstancesRequest, DescribeBackupDownloadUrlResponse, ResumeServerlessRequest, InquirePriceCreateRequest, CreateAuditRuleTemplateRequest, ModifyBackupConfigResponse, DescribeInstanceSpecsRequest, ExportInstanceSlowQueriesRequest, ModifyAccountParamsRequest, CreateAuditRuleTemplateResponse, DescribeZonesResponse, IsolateClusterResponse, OpenAuditServiceResponse, OfflineClusterResponse, SwitchProxyVpcResponse, RevokeAccountPrivilegesRequest, DescribeAuditRuleTemplatesRequest, DescribeFlowRequest, SetRenewFlagResponse, CreateBackupRequest, DescribeClusterParamLogsRequest, SearchClusterTablesResponse, DescribeMaintainPeriodResponse, SwitchProxyVpcRequest, DescribeBackupListResponse, RollBackClusterResponse, RestartInstanceResponse, DescribeBinlogSaveDaysRequest, ModifyBackupConfigRequest, ActivateInstanceResponse, DescribeRollbackTimeValidityRequest, CreateAuditLogFileRequest, DeleteAuditLogFileRequest, AddInstancesRequest, InquirePriceCreateResponse, ModifyClusterSlaveZoneRequest, GrantAccountPrivilegesResponse, DescribeInstanceSlowQueriesRequest, ExportInstanceSlowQueriesResponse, ResetAccountPasswordRequest, SearchClusterDatabasesResponse, DescribeInstanceDetailRequest, ModifyMaintainPeriodConfigResponse, DisassociateSecurityGroupsRequest, ModifyBackupNameRequest, ModifyInstanceNameResponse, DescribeBinlogSaveDaysResponse, ModifyClusterParamRequest, DescribeAccountsResponse, ModifyAccountParamsResponse, DeleteBackupRequest, DescribeClusterParamsRequest, DescribeInstanceSpecsResponse, DescribeDBSecurityGroupsRequest, DescribeAccountAllGrantPrivilegesRequest, OfflineInstanceResponse, ModifyAuditServiceResponse, IsolateClusterRequest, DeleteAuditRuleTemplatesResponse, DescribeAuditLogFilesRequest, DescribeClusterDetailResponse, DescribeClusterInstanceGrpsResponse, DescribeBinlogsRequest, DisassociateSecurityGroupsResponse, InquirePriceRenewResponse, ModifyAuditRuleTemplatesResponse } from "./cynosdb_models"; /** * cynosdb client * @class @@ -228,9 +228,9 @@ export declare class Client extends AbstractClient { */ DescribeResourcesByDealName(req: DescribeResourcesByDealNameRequest, cb?: (error: string, rep: DescribeResourcesByDealNameResponse) => void): Promise; /** - * 批量授权账号权限 + * 此接口(ExportInstanceSlowQueries)用于导出实例慢日志。 */ - GrantAccountPrivileges(req: GrantAccountPrivilegesRequest, cb?: (error: string, rep: GrantAccountPrivilegesResponse) => void): Promise; + ExportInstanceSlowQueries(req: ExportInstanceSlowQueriesRequest, cb?: (error: string, rep: ExportInstanceSlowQueriesResponse) => void): Promise; /** * 暂停serverless集群 */ @@ -272,9 +272,9 @@ export declare class Client extends AbstractClient { */ DescribeAuditLogFiles(req: DescribeAuditLogFilesRequest, cb?: (error: string, rep: DescribeAuditLogFilesResponse) => void): Promise; /** - * 此接口(ExportInstanceSlowQueries)用于导出实例慢日志。 + * 本接口(DescribeZones)用于查询可售卖地域可用区信息。 */ - ExportInstanceSlowQueries(req: ExportInstanceSlowQueriesRequest, cb?: (error: string, rep: ExportInstanceSlowQueriesResponse) => void): Promise; + DescribeZones(req: DescribeZonesRequest, cb?: (error: string, rep: DescribeZonesResponse) => void): Promise; /** * SetRenewFlag设置实例的自动续费功能 */ @@ -287,6 +287,10 @@ export declare class Client extends AbstractClient { * 修改审计规则模版 */ ModifyAuditRuleTemplates(req: ModifyAuditRuleTemplatesRequest, cb?: (error: string, rep: ModifyAuditRuleTemplatesResponse) => void): Promise; + /** + * 批量授权账号权限 + */ + GrantAccountPrivileges(req: GrantAccountPrivilegesRequest, cb?: (error: string, rep: GrantAccountPrivilegesResponse) => void): Promise; /** * 本接口(SearchClusterTables)搜索集群数据表列表 */ diff --git a/tencentcloud/services/cynosdb/v20190107/cynosdb_client.js b/tencentcloud/services/cynosdb/v20190107/cynosdb_client.js index c92fd8730..73b10209e 100644 --- a/tencentcloud/services/cynosdb/v20190107/cynosdb_client.js +++ b/tencentcloud/services/cynosdb/v20190107/cynosdb_client.js @@ -358,10 +358,10 @@ class Client extends abstract_client_1.AbstractClient { return this.request("DescribeResourcesByDealName", req, cb); } /** - * 批量授权账号权限 + * 此接口(ExportInstanceSlowQueries)用于导出实例慢日志。 */ - async GrantAccountPrivileges(req, cb) { - return this.request("GrantAccountPrivileges", req, cb); + async ExportInstanceSlowQueries(req, cb) { + return this.request("ExportInstanceSlowQueries", req, cb); } /** * 暂停serverless集群 @@ -424,10 +424,10 @@ class Client extends abstract_client_1.AbstractClient { return this.request("DescribeAuditLogFiles", req, cb); } /** - * 此接口(ExportInstanceSlowQueries)用于导出实例慢日志。 + * 本接口(DescribeZones)用于查询可售卖地域可用区信息。 */ - async ExportInstanceSlowQueries(req, cb) { - return this.request("ExportInstanceSlowQueries", req, cb); + async DescribeZones(req, cb) { + return this.request("DescribeZones", req, cb); } /** * SetRenewFlag设置实例的自动续费功能 @@ -447,6 +447,12 @@ class Client extends abstract_client_1.AbstractClient { async ModifyAuditRuleTemplates(req, cb) { return this.request("ModifyAuditRuleTemplates", req, cb); } + /** + * 批量授权账号权限 + */ + async GrantAccountPrivileges(req, cb) { + return this.request("GrantAccountPrivileges", req, cb); + } /** * 本接口(SearchClusterTables)搜索集群数据表列表 */ diff --git a/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts b/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts index b2e6bfe03..c4854f0e6 100644 --- a/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +++ b/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts @@ -468,6 +468,19 @@ export interface DescribeInstancesResponse { */ RequestId?: string; } +/** + * DescribeZones请求参数结构体 + */ +export interface DescribeZonesRequest { + /** + * 是否包含虚拟区 + */ + IncludeVirtualZones?: boolean; + /** + * 是否展示地域下所有可用区,并显示用户每个可用区权限 + */ + ShowPermission?: boolean; +} /** * 集群实例信息 */ @@ -2620,6 +2633,43 @@ export interface OpenAuditServiceRequest { */ RuleTemplateIds?: Array; } +/** + * 安全组规则 + */ +export interface PolicyRule { + /** + * 策略,ACCEPT或者DROP + */ + Action: string; + /** + * 来源Ip或Ip段,例如192.168.0.0/16 + */ + CidrIp: string; + /** + * 端口 + */ + PortRange: string; + /** + * 网络协议,支持udp、tcp等 + */ + IpProtocol: string; + /** + * 协议端口ID或者协议端口组ID。 + */ + ServiceModule: string; + /** + * IP地址ID或者ID地址组ID。 + */ + AddressModule: string; + /** + * id + */ + Id: string; + /** + * 描述 + */ + Desc: string; +} /** * 网络信息 */ @@ -3293,6 +3343,19 @@ export interface CreateAuditRuleTemplateResponse { */ RequestId?: string; } +/** + * DescribeZones返回参数结构体 + */ +export interface DescribeZonesResponse { + /** + * 地域信息 + */ + RegionSet?: Array; + /** + * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 + */ + RequestId?: string; +} /** * IsolateCluster返回参数结构体 */ @@ -3313,18 +3376,46 @@ export interface IsolateClusterResponse { RequestId?: string; } /** - * SearchClusterDatabases返回参数结构体 + * 售卖可用区信息 */ -export interface SearchClusterDatabasesResponse { +export interface SaleZone { /** - * 数据库列表 + * 可用区英文名 + */ + Zone: string; + /** + * 可用区数字ID + */ + ZoneId: number; + /** + * 可用区中文名 + */ + ZoneZh: string; + /** + * 是否支持serverless集群
    +0:不支持
    +1:支持 + */ + IsSupportServerless: number; + /** + * 是否支持普通集群
    +0:不支持
    +1:支持 + */ + IsSupportNormal: number; + /** + * 物理区 + */ + PhysicalZone: string; + /** + * 用户是否有可用区权限 注意:此字段可能返回 null,表示取不到有效值。 */ - Databases: Array; + HasPermission?: boolean; /** - * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 + * 是否为全链路RDMA可用区 */ - RequestId?: string; + IsWholeRdmaZone?: string; } /** * 任务信息 @@ -3635,41 +3726,17 @@ export interface SearchClusterTablesResponse { RequestId?: string; } /** - * 安全组规则 + * 系统支持的模块 */ -export interface PolicyRule { - /** - * 策略,ACCEPT或者DROP - */ - Action: string; - /** - * 来源Ip或Ip段,例如192.168.0.0/16 - */ - CidrIp: string; - /** - * 端口 - */ - PortRange: string; +export interface Module { /** - * 网络协议,支持udp、tcp等 + * 是否支持,可选值:yes,no */ - IpProtocol: string; - /** - * 协议端口ID或者协议端口组ID。 - */ - ServiceModule: string; - /** - * IP地址ID或者ID地址组ID。 - */ - AddressModule: string; - /** - * id - */ - Id: string; + IsDisable: string; /** - * 描述 + * 模块名 */ - Desc: string; + ModuleName: string; } /** * DescribeMaintainPeriod返回参数结构体 @@ -3734,6 +3801,35 @@ export interface DescribeBackupListResponse { */ RequestId?: string; } +/** + * 售卖地域信息 + */ +export interface SaleRegion { + /** + * 地域英文名 + */ + Region: string; + /** + * 地域数字ID + */ + RegionId: number; + /** + * 地域中文名 + */ + RegionZh: string; + /** + * 可售卖可用区列表 + */ + ZoneSet: Array; + /** + * 引擎类型 + */ + DbType: string; + /** + * 地域模块支持情况 + */ + Modules: Array; +} /** * RollBackCluster返回参数结构体 */ @@ -4473,6 +4569,20 @@ export interface ResetAccountPasswordRequest { */ Host?: string; } +/** + * SearchClusterDatabases返回参数结构体 + */ +export interface SearchClusterDatabasesResponse { + /** + * 数据库列表 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Databases: Array; + /** + * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 + */ + RequestId?: string; +} /** * DescribeInstanceDetail请求参数结构体 */ diff --git a/tencentcloud/services/dnspod/v20210323/dnspod_client.d.ts b/tencentcloud/services/dnspod/v20210323/dnspod_client.d.ts index 853eaf2e7..7a31ad10a 100644 --- a/tencentcloud/services/dnspod/v20210323/dnspod_client.d.ts +++ b/tencentcloud/services/dnspod/v20210323/dnspod_client.d.ts @@ -1,6 +1,6 @@ import { AbstractClient } from "../../../common/abstract_client"; import { ClientConfig } from "../../../common/interface"; -import { CreateRecordRequest, DescribeSnapshotRollbackResultResponse, DownloadSnapshotRequest, ModifyVasAutoRenewStatusResponse, RollbackSnapshotRequest, DeleteDomainAliasResponse, ModifySubdomainStatusRequest, CreateRecordBatchResponse, DescribeSnapshotListResponse, ModifyRecordGroupRequest, DescribeBatchTaskRequest, CreateSnapshotResponse, DeleteRecordGroupRequest, PayOrderWithBalanceResponse, DescribeDomainResponse, DescribeSnapshotListRequest, DescribeRecordLineListResponse, CreateDomainBatchRequest, ModifyRecordGroupResponse, DescribeDomainShareInfoRequest, DescribeRecordTypeResponse, ModifyDomainRemarkResponse, DeleteSnapshotRequest, DescribeDomainAliasListResponse, RollbackRecordSnapshotRequest, ModifyRecordToGroupRequest, DescribeSnapshotConfigResponse, DeleteShareDomainResponse, ModifyRecordRequest, DeleteDomainRequest, ModifyDomainOwnerRequest, ModifyPackageAutoRenewRequest, DescribeSnapshotConfigRequest, DescribeRecordLineListRequest, DescribeRecordListResponse, CreateRecordBatchRequest, DeleteDomainAliasRequest, CreateDealRequest, ModifyDomainLockRequest, ModifyDomainStatusRequest, ModifyDomainStatusResponse, DescribeRecordRequest, CreateDomainGroupResponse, DescribeSubdomainAnalyticsRequest, DeleteRecordRequest, DescribeDomainRequest, ModifyRecordStatusRequest, CreateRecordResponse, DeleteRecordGroupResponse, DescribeSnapshotRollbackTaskRequest, CheckRecordSnapshotRollbackResponse, DescribeSubdomainAnalyticsResponse, ModifyRecordResponse, ModifyRecordToGroupResponse, ModifyDomainUnlockResponse, DescribeDomainLogListRequest, DescribeDomainListResponse, ModifyRecordBatchRequest, DeleteRecordResponse, CreateDomainResponse, ModifyRecordBatchResponse, CheckSnapshotRollbackRequest, CheckSnapshotRollbackResponse, DescribeRecordTypeRequest, DescribeSnapshotRollbackTaskResponse, CreateDomainBatchResponse, DescribeDomainGroupListResponse, ModifyDomainOwnerResponse, DescribeUserDetailResponse, CreateDomainRequest, ModifyPackageAutoRenewResponse, DescribeDomainShareInfoResponse, ModifyDomainRemarkRequest, CreateDomainAliasResponse, DescribeRecordListRequest, PayOrderWithBalanceRequest, ModifySnapshotConfigResponse, DescribeRecordResponse, ModifyRecordFieldsRequest, DeleteSnapshotResponse, DescribeDomainPurviewResponse, ModifySubdomainStatusResponse, DescribeDomainAnalyticsResponse, ModifyRecordStatusResponse, CreateRecordGroupRequest, RollbackSnapshotResponse, DescribeRecordGroupListResponse, CreateDomainGroupRequest, CreateSnapshotRequest, DeleteDomainResponse, DescribeRecordSnapshotRollbackResultResponse, ModifySnapshotConfigRequest, DescribeDomainAliasListRequest, CreateDomainAliasRequest, DeleteShareDomainRequest, ModifyDynamicDNSRequest, DescribeRecordGroupListRequest, ModifyRecordFieldsResponse, ModifyRecordRemarkRequest, RollbackRecordSnapshotResponse, DescribeUserDetailRequest, ModifyRecordRemarkResponse, DescribeDomainListRequest, DescribeDomainPurviewRequest, ModifyDomainUnlockRequest, DescribeRecordSnapshotRollbackResultRequest, ModifyDomainLockResponse, CreateDealResponse, ModifyVasAutoRenewStatusRequest, DownloadSnapshotResponse, CreateRecordGroupResponse, DescribeDomainGroupListRequest, DescribeBatchTaskResponse, CheckRecordSnapshotRollbackRequest, DescribeDomainAnalyticsRequest, ModifyDynamicDNSResponse, DescribeSnapshotRollbackResultRequest, DescribeDomainLogListResponse } from "./dnspod_models"; +import { CreateRecordRequest, DescribeSnapshotRollbackResultResponse, DownloadSnapshotRequest, ModifyVasAutoRenewStatusResponse, RollbackSnapshotRequest, DeleteDomainAliasResponse, DescribeVASStatisticRequest, DeleteDomainBatchResponse, ModifySubdomainStatusRequest, CreateRecordBatchResponse, DescribeSnapshotListResponse, ModifyRecordGroupRequest, DescribeVASStatisticResponse, DescribeBatchTaskRequest, CreateSnapshotResponse, DeleteRecordGroupRequest, PayOrderWithBalanceResponse, DescribeDomainResponse, DescribeSnapshotListRequest, DescribePackageDetailResponse, DescribeRecordLineListResponse, CreateDomainBatchRequest, ModifyRecordGroupResponse, DescribeDomainShareInfoRequest, DeleteDomainBatchRequest, DescribeRecordTypeResponse, ModifyDomainRemarkResponse, DeleteSnapshotRequest, DescribeDomainAliasListResponse, RollbackRecordSnapshotRequest, ModifyRecordToGroupRequest, DescribeSnapshotConfigResponse, DeleteShareDomainResponse, ModifyRecordRequest, DeleteDomainRequest, ModifyDomainOwnerRequest, ModifyPackageAutoRenewRequest, DescribeSnapshotConfigRequest, DescribeRecordExistExceptDefaultNSRequest, DescribeRecordLineListRequest, DescribeRecordListResponse, CreateRecordBatchRequest, DeleteDomainAliasRequest, CreateDealRequest, ModifyDomainLockRequest, DescribeDomainWhoisRequest, ModifyDomainStatusResponse, DescribeRecordRequest, CreateDomainGroupResponse, DescribeSubdomainAnalyticsRequest, DeleteRecordRequest, DescribeDomainRequest, ModifyRecordStatusRequest, CreateRecordResponse, DeleteRecordGroupResponse, DescribeSnapshotRollbackTaskRequest, CheckRecordSnapshotRollbackResponse, DescribeDomainPreviewRequest, DescribeSubdomainAnalyticsResponse, ModifyRecordResponse, ModifyRecordToGroupResponse, ModifyDomainUnlockResponse, DescribeDomainLogListRequest, DescribeDomainListResponse, ModifyRecordBatchRequest, DeleteRecordResponse, CreateDomainResponse, ModifyRecordBatchResponse, CheckSnapshotRollbackRequest, CheckSnapshotRollbackResponse, DescribeRecordTypeRequest, DescribeSnapshotRollbackTaskResponse, DescribeDomainPreviewResponse, CreateDomainBatchResponse, DescribeDomainGroupListResponse, ModifyDomainOwnerResponse, DescribeUserDetailResponse, CreateDomainRequest, ModifyPackageAutoRenewResponse, DescribeDomainShareInfoResponse, ModifyDomainRemarkRequest, CreateDomainAliasResponse, DescribeRecordListRequest, PayOrderWithBalanceRequest, DescribePackageDetailRequest, DescribeRecordResponse, ModifyRecordFieldsRequest, DeleteSnapshotResponse, DescribeDomainPurviewResponse, ModifySubdomainStatusResponse, DescribeDomainAnalyticsResponse, ModifyRecordStatusResponse, CreateRecordGroupRequest, RollbackSnapshotResponse, DescribeRecordGroupListResponse, CreateDomainGroupRequest, CreateSnapshotRequest, DeleteDomainResponse, DescribeRecordSnapshotRollbackResultResponse, ModifySnapshotConfigRequest, DescribeDomainAliasListRequest, CreateDomainAliasRequest, DeleteShareDomainRequest, ModifyDynamicDNSRequest, DescribeRecordGroupListRequest, ModifyRecordFieldsResponse, ModifyRecordRemarkRequest, ModifySnapshotConfigResponse, RollbackRecordSnapshotResponse, DescribeUserDetailRequest, ModifyDomainStatusRequest, ModifyRecordRemarkResponse, DescribeDomainListRequest, DescribeDomainPurviewRequest, ModifyDomainUnlockRequest, DescribeRecordSnapshotRollbackResultRequest, ModifyDomainLockResponse, CreateDealResponse, DescribeRecordExistExceptDefaultNSResponse, ModifyVasAutoRenewStatusRequest, DownloadSnapshotResponse, DescribeDomainWhoisResponse, CreateRecordGroupResponse, DescribeDomainGroupListRequest, DescribeBatchTaskResponse, CheckRecordSnapshotRollbackRequest, DescribeDomainAnalyticsRequest, ModifyDynamicDNSResponse, DescribeSnapshotRollbackResultRequest, DescribeDomainLogListResponse } from "./dnspod_models"; /** * dnspod client * @class @@ -51,6 +51,10 @@ export declare class Client extends AbstractClient { * 修改记录可选字段 */ ModifyRecordFields(req: ModifyRecordFieldsRequest, cb?: (error: string, rep: ModifyRecordFieldsResponse) => void): Promise; + /** + * 批量删除域名 + */ + DeleteDomainBatch(req: DeleteDomainBatchRequest, cb?: (error: string, rep: DeleteDomainBatchResponse) => void): Promise; /** * 下载快照 */ @@ -63,6 +67,10 @@ export declare class Client extends AbstractClient { * 修改记录 */ ModifyRecord(req: ModifyRecordRequest, cb?: (error: string, rep: ModifyRecordResponse) => void): Promise; + /** + * 获取域名Whois信息 + */ + DescribeDomainWhois(req: DescribeDomainWhoisRequest, cb?: (error: string, rep: DescribeDomainWhoisResponse) => void): Promise; /** * 查询解析记录分组列表 */ @@ -100,9 +108,9 @@ export declare class Client extends AbstractClient { */ DeleteShareDomain(req: DeleteShareDomainRequest, cb?: (error: string, rep: DeleteShareDomainResponse) => void): Promise; /** - * 获取域名信息 + * 增值服务自动续费设置 */ - DescribeDomain(req: DescribeDomainRequest, cb?: (error: string, rep: DescribeDomainResponse) => void): Promise; + ModifyVasAutoRenewStatus(req: ModifyVasAutoRenewStatusRequest, cb?: (error: string, rep: ModifyVasAutoRenewStatusResponse) => void): Promise; /** * 修改记录分组 */ @@ -112,9 +120,9 @@ export declare class Client extends AbstractClient { */ ModifyRecordStatus(req: ModifyRecordStatusRequest, cb?: (error: string, rep: ModifyRecordStatusResponse) => void): Promise; /** - * 添加记录分组 + * 获取域名信息 */ - CreateRecordGroup(req: CreateRecordGroupRequest, cb?: (error: string, rep: CreateRecordGroupResponse) => void): Promise; + DescribeDomain(req: DescribeDomainRequest, cb?: (error: string, rep: DescribeDomainResponse) => void): Promise; /** * 更新动态 DNS 记录 */ @@ -139,10 +147,22 @@ export declare class Client extends AbstractClient { * 获取记录信息 */ DescribeRecord(req: DescribeRecordRequest, cb?: (error: string, rep: DescribeRecordResponse) => void): Promise; + /** + * 修改快照配置 + */ + ModifySnapshotConfig(req: ModifySnapshotConfigRequest, cb?: (error: string, rep: ModifySnapshotConfigResponse) => void): Promise; + /** + * 获取各套餐配置详情 + */ + DescribePackageDetail(req?: DescribePackageDetailRequest, cb?: (error: string, rep: DescribePackageDetailResponse) => void): Promise; /** * 获取等级允许的线路 */ DescribeRecordLineList(req: DescribeRecordLineListRequest, cb?: (error: string, rep: DescribeRecordLineListResponse) => void): Promise; + /** + * 获取域名增值服务用量 + */ + DescribeVASStatistic(req: DescribeVASStatisticRequest, cb?: (error: string, rep: DescribeVASStatisticResponse) => void): Promise; /** * 统计各个域名的解析量,帮助您了解流量情况、时间段分布。支持查看近 3 个月内的统计情况 */ @@ -167,6 +187,10 @@ export declare class Client extends AbstractClient { * 设置域名备注 */ ModifyDomainRemark(req: ModifyDomainRemarkRequest, cb?: (error: string, rep: ModifyDomainRemarkResponse) => void): Promise; + /** + * 判断是否有除系统默认的@-NS记录之外的记录存在 + */ + DescribeRecordExistExceptDefaultNS(req: DescribeRecordExistExceptDefaultNSRequest, cb?: (error: string, rep: DescribeRecordExistExceptDefaultNSResponse) => void): Promise; /** * 域名过户 */ @@ -176,9 +200,9 @@ export declare class Client extends AbstractClient { */ CreateDomainGroup(req: CreateDomainGroupRequest, cb?: (error: string, rep: CreateDomainGroupResponse) => void): Promise; /** - * 修改快照配置 + * 添加记录分组 */ - ModifySnapshotConfig(req: ModifySnapshotConfigRequest, cb?: (error: string, rep: ModifySnapshotConfigResponse) => void): Promise; + CreateRecordGroup(req: CreateRecordGroupRequest, cb?: (error: string, rep: CreateRecordGroupResponse) => void): Promise; /** * 删除域名别名 */ @@ -191,6 +215,10 @@ export declare class Client extends AbstractClient { * 回滚前检查单条记录 */ CheckRecordSnapshotRollback(req: CheckRecordSnapshotRollbackRequest, cb?: (error: string, rep: CheckRecordSnapshotRollbackResponse) => void): Promise; + /** + * 获取域名概览信息 + */ + DescribeDomainPreview(req: DescribeDomainPreviewRequest, cb?: (error: string, rep: DescribeDomainPreviewResponse) => void): Promise; /** * 添加域名 */ @@ -199,18 +227,14 @@ export declare class Client extends AbstractClient { * 重新回滚指定解析记录快照 */ RollbackRecordSnapshot(req: RollbackRecordSnapshotRequest, cb?: (error: string, rep: RollbackRecordSnapshotResponse) => void): Promise; - /** - * DNSPod商品余额支付 - */ - PayOrderWithBalance(req: PayOrderWithBalanceRequest, cb?: (error: string, rep: PayOrderWithBalanceResponse) => void): Promise; /** * 将记录添加到分组 */ ModifyRecordToGroup(req: ModifyRecordToGroupRequest, cb?: (error: string, rep: ModifyRecordToGroupResponse) => void): Promise; /** - * 增值服务自动续费设置 + * DNSPod商品余额支付 */ - ModifyVasAutoRenewStatus(req: ModifyVasAutoRenewStatusRequest, cb?: (error: string, rep: ModifyVasAutoRenewStatusResponse) => void): Promise; + PayOrderWithBalance(req: PayOrderWithBalanceRequest, cb?: (error: string, rep: PayOrderWithBalanceResponse) => void): Promise; /** * 统计子域名的解析量,帮助您了解流量情况、时间段分布。支持查看近 3 个月内的统计情况。仅付费套餐域名可用。 */ diff --git a/tencentcloud/services/dnspod/v20210323/dnspod_client.js b/tencentcloud/services/dnspod/v20210323/dnspod_client.js index 861e2ba07..b06e8e973 100644 --- a/tencentcloud/services/dnspod/v20210323/dnspod_client.js +++ b/tencentcloud/services/dnspod/v20210323/dnspod_client.js @@ -93,6 +93,12 @@ class Client extends abstract_client_1.AbstractClient { async ModifyRecordFields(req, cb) { return this.request("ModifyRecordFields", req, cb); } + /** + * 批量删除域名 + */ + async DeleteDomainBatch(req, cb) { + return this.request("DeleteDomainBatch", req, cb); + } /** * 下载快照 */ @@ -111,6 +117,12 @@ class Client extends abstract_client_1.AbstractClient { async ModifyRecord(req, cb) { return this.request("ModifyRecord", req, cb); } + /** + * 获取域名Whois信息 + */ + async DescribeDomainWhois(req, cb) { + return this.request("DescribeDomainWhois", req, cb); + } /** * 查询解析记录分组列表 */ @@ -166,10 +178,10 @@ class Client extends abstract_client_1.AbstractClient { return this.request("DeleteShareDomain", req, cb); } /** - * 获取域名信息 + * 增值服务自动续费设置 */ - async DescribeDomain(req, cb) { - return this.request("DescribeDomain", req, cb); + async ModifyVasAutoRenewStatus(req, cb) { + return this.request("ModifyVasAutoRenewStatus", req, cb); } /** * 修改记录分组 @@ -184,10 +196,10 @@ class Client extends abstract_client_1.AbstractClient { return this.request("ModifyRecordStatus", req, cb); } /** - * 添加记录分组 + * 获取域名信息 */ - async CreateRecordGroup(req, cb) { - return this.request("CreateRecordGroup", req, cb); + async DescribeDomain(req, cb) { + return this.request("DescribeDomain", req, cb); } /** * 更新动态 DNS 记录 @@ -225,12 +237,30 @@ class Client extends abstract_client_1.AbstractClient { async DescribeRecord(req, cb) { return this.request("DescribeRecord", req, cb); } + /** + * 修改快照配置 + */ + async ModifySnapshotConfig(req, cb) { + return this.request("ModifySnapshotConfig", req, cb); + } + /** + * 获取各套餐配置详情 + */ + async DescribePackageDetail(req, cb) { + return this.request("DescribePackageDetail", req, cb); + } /** * 获取等级允许的线路 */ async DescribeRecordLineList(req, cb) { return this.request("DescribeRecordLineList", req, cb); } + /** + * 获取域名增值服务用量 + */ + async DescribeVASStatistic(req, cb) { + return this.request("DescribeVASStatistic", req, cb); + } /** * 统计各个域名的解析量,帮助您了解流量情况、时间段分布。支持查看近 3 个月内的统计情况 */ @@ -267,6 +297,12 @@ class Client extends abstract_client_1.AbstractClient { async ModifyDomainRemark(req, cb) { return this.request("ModifyDomainRemark", req, cb); } + /** + * 判断是否有除系统默认的@-NS记录之外的记录存在 + */ + async DescribeRecordExistExceptDefaultNS(req, cb) { + return this.request("DescribeRecordExistExceptDefaultNS", req, cb); + } /** * 域名过户 */ @@ -280,10 +316,10 @@ class Client extends abstract_client_1.AbstractClient { return this.request("CreateDomainGroup", req, cb); } /** - * 修改快照配置 + * 添加记录分组 */ - async ModifySnapshotConfig(req, cb) { - return this.request("ModifySnapshotConfig", req, cb); + async CreateRecordGroup(req, cb) { + return this.request("CreateRecordGroup", req, cb); } /** * 删除域名别名 @@ -303,6 +339,12 @@ class Client extends abstract_client_1.AbstractClient { async CheckRecordSnapshotRollback(req, cb) { return this.request("CheckRecordSnapshotRollback", req, cb); } + /** + * 获取域名概览信息 + */ + async DescribeDomainPreview(req, cb) { + return this.request("DescribeDomainPreview", req, cb); + } /** * 添加域名 */ @@ -315,12 +357,6 @@ class Client extends abstract_client_1.AbstractClient { async RollbackRecordSnapshot(req, cb) { return this.request("RollbackRecordSnapshot", req, cb); } - /** - * DNSPod商品余额支付 - */ - async PayOrderWithBalance(req, cb) { - return this.request("PayOrderWithBalance", req, cb); - } /** * 将记录添加到分组 */ @@ -328,10 +364,10 @@ class Client extends abstract_client_1.AbstractClient { return this.request("ModifyRecordToGroup", req, cb); } /** - * 增值服务自动续费设置 + * DNSPod商品余额支付 */ - async ModifyVasAutoRenewStatus(req, cb) { - return this.request("ModifyVasAutoRenewStatus", req, cb); + async PayOrderWithBalance(req, cb) { + return this.request("PayOrderWithBalance", req, cb); } /** * 统计子域名的解析量,帮助您了解流量情况、时间段分布。支持查看近 3 个月内的统计情况。仅付费套餐域名可用。 diff --git a/tencentcloud/services/dnspod/v20210323/dnspod_models.d.ts b/tencentcloud/services/dnspod/v20210323/dnspod_models.d.ts index 0881aba07..e836c2b60 100644 --- a/tencentcloud/services/dnspod/v20210323/dnspod_models.d.ts +++ b/tencentcloud/services/dnspod/v20210323/dnspod_models.d.ts @@ -201,6 +201,32 @@ export interface DeleteDomainAliasResponse { */ RequestId?: string; } +/** + * DescribeVASStatistic请求参数结构体 + */ +export interface DescribeVASStatisticRequest { + /** + * 域名ID + */ + DomainId: number; +} +/** + * DeleteDomainBatch返回参数结构体 + */ +export interface DeleteDomainBatchResponse { + /** + * 任务 ID + */ + JobId?: number; + /** + * 任务详情数组 + */ + DetailList?: Array; + /** + * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 + */ + RequestId?: string; +} /** * 解析记录分组信息 */ @@ -372,6 +398,19 @@ export interface ModifyRecordGroupRequest { */ DomainId?: number; } +/** + * DescribeVASStatistic返回参数结构体 + */ +export interface DescribeVASStatisticResponse { + /** + * 增值服务用量列表 + */ + VASList: Array; + /** + * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 + */ + RequestId?: string; +} /** * DescribeBatchTask请求参数结构体 */ @@ -486,6 +525,23 @@ export interface DescribeSnapshotListRequest { */ DomainId?: number; } +/** + * DescribePackageDetail返回参数结构体 + */ +export interface DescribePackageDetailResponse { + /** + * 套餐配置详情 + */ + Info: Array; + /** + * 套餐代码列表 + */ + LevelMap: Array; + /** + * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 + */ + RequestId?: string; +} /** * DescribeRecordLineList返回参数结构体 */ @@ -744,6 +800,15 @@ export interface DomainListItem { */ Owner: string; } +/** + * DeleteDomainBatch请求参数结构体 + */ +export interface DeleteDomainBatchRequest { + /** + * 域名数组 + */ + DomainList: Array; +} /** * DescribeRecordType返回参数结构体 */ @@ -1105,6 +1170,19 @@ export interface LineInfo { */ LineId: string; } +/** + * DescribeRecordExistExceptDefaultNS请求参数结构体 + */ +export interface DescribeRecordExistExceptDefaultNSRequest { + /** + * 域名 + */ + Domain: string; + /** + * 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。可以通过接口DescribeDomainList查到所有的Domain以及DomainId + */ + DomainId?: number; +} /** * DescribeRecordLineList请求参数结构体 */ @@ -1253,21 +1331,13 @@ export interface ModifyDomainLockRequest { DomainId?: number; } /** - * ModifyDomainStatus请求参数结构体 + * DescribeDomainWhois请求参数结构体 */ -export interface ModifyDomainStatusRequest { +export interface DescribeDomainWhoisRequest { /** * 域名 */ Domain: string; - /** - * 域名状态,”enable” 、”disable” 分别代表启用和暂停 - */ - Status: string; - /** - * 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。可以通过接口DescribeDomainList查到所有的Domain以及DomainId - */ - DomainId?: number; } /** * 子域名别名解析量统计信息 @@ -1584,6 +1654,19 @@ export interface CheckRecordSnapshotRollbackResponse { */ RequestId?: string; } +/** + * DescribeDomainPreview请求参数结构体 + */ +export interface DescribeDomainPreviewRequest { + /** + * 域名 + */ + Domain: string; + /** + * 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。可以通过接口DescribeDomainList查到所有的Domain以及DomainId + */ + DomainId?: number; +} /** * 批量添加记录返回结构 */ @@ -1628,6 +1711,31 @@ export interface CreateRecordBatchDetail { */ DomainId: number; } +/** + * Whois联系信息 + */ +export interface WhoisContact { + /** + * 无 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Admin: WhoisContactAddress; + /** + * 无 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Billing: WhoisContactAddress; + /** + * 无 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Registrant: WhoisContactAddress; + /** + * 无 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Tech: WhoisContactAddress; +} /** * DescribeSubdomainAnalytics返回参数结构体 */ @@ -1777,6 +1885,71 @@ export interface ModifyRecordBatchRequest { */ MX?: string; } +/** + * Whois联系信息地址 + */ +export interface WhoisContactAddress { + /** + * 无 +注意:此字段可能返回 null,表示取不到有效值。 + */ + City: string; + /** + * 无 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Country: string; + /** + * 无 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Email: string; + /** + * 无 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Fax: string; + /** + * 无 +注意:此字段可能返回 null,表示取不到有效值。 + */ + FaxExt: string; + /** + * 无 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Handle: string; + /** + * 无 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Name: string; + /** + * 无 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Organization: string; + /** + * 无 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Phone: string; + /** + * 无 +注意:此字段可能返回 null,表示取不到有效值。 + */ + PostalCode: string; + /** + * 无 +注意:此字段可能返回 null,表示取不到有效值。 + */ + State: string; + /** + * 无 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Street: string; +} /** * 域名解析快照配置 */ @@ -2173,6 +2346,19 @@ export interface RecordListItem { */ DefaultNS?: boolean; } +/** + * DescribeDomainPreview返回参数结构体 + */ +export interface DescribeDomainPreviewResponse { + /** + * 域名概览信息 + */ + Domain?: PreviewDetail; + /** + * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 + */ + RequestId?: string; +} /** * CreateDomainBatch返回参数结构体 */ @@ -2315,6 +2501,32 @@ export interface DescribeUserDetailResponse { */ RequestId?: string; } +/** + * 批量删除域名详情 + */ +export interface DeleteDomainBatchDetail { + /** + * 域名 ID + */ + DomainId?: number; + /** + * 域名 + */ + Domain?: string; + /** + * 错误信息 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Error?: string; + /** + * 删除状态 + */ + Status?: string; + /** + * 操作 + */ + Operation?: string; +} /** * CreateDomain请求参数结构体 */ @@ -2468,14 +2680,9 @@ export interface PayOrderWithBalanceRequest { VoucherIdList?: Array; } /** - * ModifySnapshotConfig返回参数结构体 + * DescribePackageDetail请求参数结构体 */ -export interface ModifySnapshotConfigResponse { - /** - * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 - */ - RequestId?: string; -} +export declare type DescribePackageDetailRequest = null; /** * DescribeRecord返回参数结构体 */ @@ -2783,6 +2990,27 @@ export interface DeleteShareDomainRequest { */ DomainId?: number; } +/** + * 域名增值服务用量 + */ +export interface VASStatisticItem { + /** + * 增值服务名称 + */ + Name?: string; + /** + * 增值服务标识 + */ + Key?: string; + /** + * 增值服务最大用量 + */ + LimitCount?: number; + /** + * 增值服务已使用的用量 + */ + UseCount?: number; +} /** * 快照信息 */ @@ -2917,6 +3145,15 @@ export interface ModifyRecordRemarkRequest { */ Remark?: string; } +/** + * ModifySnapshotConfig返回参数结构体 + */ +export interface ModifySnapshotConfigResponse { + /** + * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 + */ + RequestId?: string; +} /** * RollbackRecordSnapshot返回参数结构体 */ @@ -2934,6 +3171,23 @@ export interface RollbackRecordSnapshotResponse { * DescribeUserDetail请求参数结构体 */ export declare type DescribeUserDetailRequest = null; +/** + * ModifyDomainStatus请求参数结构体 + */ +export interface ModifyDomainStatusRequest { + /** + * 域名 + */ + Domain: string; + /** + * 域名状态,”enable” 、”disable” 分别代表启用和暂停 + */ + Status: string; + /** + * 域名 ID 。参数 DomainId 优先级比参数 Domain 高,如果传递参数 DomainId 将忽略参数 Domain 。可以通过接口DescribeDomainList查到所有的Domain以及DomainId + */ + DomainId?: number; +} /** * ModifyRecordRemark返回参数结构体 */ @@ -3088,6 +3342,55 @@ export interface ModifyDomainLockResponse { */ RequestId?: string; } +/** + * 套餐配置明细 + */ +export interface PackageDetailItem { + /** + * 套餐原价 + */ + RealPrice: number; + /** + * 可更换域名次数 + */ + ChangedTimes: number; + /** + * 允许设置的最小 TTL 值 + */ + MinTtl: number; + /** + * 负载均衡数量 + */ + RecordRoll: number; + /** + * 子域名级数 + */ + SubDomainLevel: number; + /** + * 泛解析级数 + */ + MaxWildcard: number; + /** + * DNS 服务集群个数 + */ + DnsServerRegion: string; + /** + * 套餐名称 + */ + DomainGradeCn: string; + /** + * 套餐代号 + */ + GradeLevel: number; + /** + * 套餐对应的 NS + */ + Ns: Array; + /** + * 套餐代码 + */ + DomainGrade: string; +} /** * CreateDeal返回参数结构体 */ @@ -3105,6 +3408,19 @@ export interface CreateDealResponse { */ RequestId?: string; } +/** + * DescribeRecordExistExceptDefaultNS返回参数结构体 + */ +export interface DescribeRecordExistExceptDefaultNSResponse { + /** + * true 是 false 否 + */ + Exist: boolean; + /** + * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 + */ + RequestId?: string; +} /** * ModifyVasAutoRenewStatus请求参数结构体 */ @@ -3118,6 +3434,61 @@ export interface ModifyVasAutoRenewStatusRequest { */ Status: string; } +/** + * Whois信息 + */ +export interface WhoisInfo { + /** + * 联系信息 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Contacts: WhoisContact; + /** + * 域名注册时间 +注意:此字段可能返回 null,表示取不到有效值。 + */ + CreationDate: string; + /** + * 域名到期时间 +注意:此字段可能返回 null,表示取不到有效值。 + */ + ExpirationDate: string; + /** + * 是否是在腾讯云注册的域名 +注意:此字段可能返回 null,表示取不到有效值。 + */ + IsQcloud: boolean; + /** + * 是否当前操作帐号注册的域名 +注意:此字段可能返回 null,表示取不到有效值。 + */ + IsQcloudOwner: boolean; + /** + * 域名配置的NS +注意:此字段可能返回 null,表示取不到有效值。 + */ + NameServers: Array; + /** + * Whois原始信息 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Raw: Array; + /** + * 域名注册商 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Registrar: Array; + /** + * 状态 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Status: Array; + /** + * 更新日期 +注意:此字段可能返回 null,表示取不到有效值。 + */ + UpdatedDate: string; +} /** * DownloadSnapshot返回参数结构体 */ @@ -3131,6 +3502,68 @@ export interface DownloadSnapshotResponse { */ RequestId?: string; } +/** + * 域名概览明细 + */ +export interface PreviewDetail { + /** + * 域名 + */ + Name: string; + /** + * 域名套餐代码 + */ + Grade: string; + /** + * 域名套餐名称 + */ + GradeTitle: string; + /** + * 域名记录数 + */ + Records: number; + /** + * 域名停靠状态。0 未开启 1 已开启 2 已暂停 + */ + DomainParkingStatus: number; + /** + * 自定义线路数量 + */ + LineCount: number; + /** + * 自定义线路分组数量 + */ + LineGroupCount: number; + /** + * 域名别名数量 + */ + AliasCount: number; + /** + * 允许添加的最大域名别名数量 + */ + MaxAliasCount: number; + /** + * 昨天的解析量 + */ + ResolveCount: number; + /** + * 增值服务数量 + */ + VASCount: number; +} +/** + * DescribeDomainWhois返回参数结构体 + */ +export interface DescribeDomainWhoisResponse { + /** + * 域名Whois信息 + */ + Info?: WhoisInfo; + /** + * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 + */ + RequestId?: string; +} /** * CreateRecordGroup返回参数结构体 */ diff --git a/tencentcloud/services/domain/v20180808/domain_models.d.ts b/tencentcloud/services/domain/v20180808/domain_models.d.ts index 982313b25..c189a3a68 100644 --- a/tencentcloud/services/domain/v20180808/domain_models.d.ts +++ b/tencentcloud/services/domain/v20180808/domain_models.d.ts @@ -905,6 +905,7 @@ false 不是 * 是否已设置自动续费 。 0:未设置 1:已设置 +2:设置后,关闭 */ AutoRenew: number; /** diff --git a/tencentcloud/services/faceid/v20180301/faceid_models.d.ts b/tencentcloud/services/faceid/v20180301/faceid_models.d.ts index b7966c355..3e19ec82b 100644 --- a/tencentcloud/services/faceid/v20180301/faceid_models.d.ts +++ b/tencentcloud/services/faceid/v20180301/faceid_models.d.ts @@ -273,23 +273,23 @@ export interface CheckBankCardInformationResponse { 收费结果码: 0: 查询成功 -1: 未查到信息 -不收费结果码 +不收费结果码: -2:验证中心服务繁忙 -3:银行卡不存在 */ - Result: string; + Result?: string; /** * 业务结果描述 */ - Description: string; + Description?: string; /** * 开户行 */ - AccountBank: string; + AccountBank?: string; /** * 卡性质:1. 借记卡;2. 贷记卡;3. 预付费卡;4. 准贷记卡 */ - AccountType: number; + AccountType?: number; /** * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 */ diff --git a/tencentcloud/services/iotvideo/v20211125/iotvideo_models.d.ts b/tencentcloud/services/iotvideo/v20211125/iotvideo_models.d.ts index 02ebca429..2f617d6c9 100644 --- a/tencentcloud/services/iotvideo/v20211125/iotvideo_models.d.ts +++ b/tencentcloud/services/iotvideo/v20211125/iotvideo_models.d.ts @@ -1463,6 +1463,11 @@ export interface BonusInfo { * 资源包创建时间 */ CreateTime: number; + /** + * 资源包状态 0.未使用 1.使用中 2.已退款 3.已过期 +注意:此字段可能返回 null,表示取不到有效值。 + */ + Status?: number; } /** * DescribeDataForwardList请求参数结构体 diff --git a/tencentcloud/services/lcic/v20220817/lcic_client.d.ts b/tencentcloud/services/lcic/v20220817/lcic_client.d.ts index 4a9d0df15..58073abfc 100644 --- a/tencentcloud/services/lcic/v20220817/lcic_client.d.ts +++ b/tencentcloud/services/lcic/v20220817/lcic_client.d.ts @@ -1,6 +1,6 @@ import { AbstractClient } from "../../../common/abstract_client"; import { ClientConfig } from "../../../common/interface"; -import { CreateRoomRequest, BatchCreateRoomResponse, SetAppCustomContentRequest, SetWatermarkResponse, ModifyRoomResponse, UnbindDocumentFromRoomResponse, DescribeUserRequest, ModifyRoomRequest, CreateDocumentResponse, DescribeAppDetailResponse, BindDocumentToRoomRequest, CreateDocumentRequest, DescribeDocumentsByRoomResponse, SetAppCustomContentResponse, LoginOriginIdResponse, BatchDeleteRecordRequest, LoginUserResponse, DescribeAppDetailRequest, ModifyAppResponse, BatchRegisterRequest, DescribeRoomResponse, DeleteRoomResponse, ModifyUserProfileRequest, DescribeDocumentsByRoomRequest, DescribeSdkAppIdUsersResponse, GetWatermarkResponse, DeleteDocumentResponse, DeleteRecordRequest, DescribeRoomStatisticsResponse, DeleteDocumentRequest, DescribeSdkAppIdUsersRequest, DescribeUserResponse, DescribeDocumentResponse, ModifyUserProfileResponse, GetWatermarkRequest, CreateSupervisorResponse, DeleteRoomRequest, RegisterUserResponse, DescribeRoomStatisticsRequest, ModifyAppRequest, CreateSupervisorRequest, UnbindDocumentFromRoomRequest, LoginOriginIdRequest, BatchRegisterResponse, LoginUserRequest, BatchCreateRoomRequest, BindDocumentToRoomResponse, SetWatermarkRequest, CreateRoomResponse, DeleteRecordResponse, DescribeRoomRequest, DescribeDocumentRequest, RegisterUserRequest, BatchDeleteRecordResponse } from "./lcic_models"; +import { CreateRoomRequest, BatchCreateRoomResponse, SetAppCustomContentRequest, SetWatermarkResponse, ModifyRoomResponse, UnbindDocumentFromRoomResponse, DescribeUserRequest, ModifyRoomRequest, CreateDocumentResponse, DescribeAppDetailResponse, BindDocumentToRoomRequest, CreateDocumentRequest, DescribeDocumentsByRoomResponse, SetAppCustomContentResponse, LoginOriginIdResponse, BatchDeleteRecordRequest, LoginUserResponse, DescribeAppDetailRequest, ModifyAppResponse, BatchRegisterRequest, DescribeRoomResponse, DeleteRoomResponse, ModifyUserProfileRequest, DescribeDocumentsByRoomRequest, DescribeCurrentMemberListRequest, DescribeSdkAppIdUsersResponse, GetWatermarkResponse, DeleteDocumentResponse, DeleteRecordRequest, DescribeRoomStatisticsResponse, DeleteDocumentRequest, DescribeSdkAppIdUsersRequest, DescribeUserResponse, DescribeDocumentResponse, ModifyUserProfileResponse, GetWatermarkRequest, CreateSupervisorResponse, DeleteRoomRequest, RegisterUserResponse, DescribeRoomStatisticsRequest, ModifyAppRequest, CreateSupervisorRequest, UnbindDocumentFromRoomRequest, LoginOriginIdRequest, BatchRegisterResponse, DescribeCurrentMemberListResponse, LoginUserRequest, BatchCreateRoomRequest, BindDocumentToRoomResponse, SetWatermarkRequest, CreateRoomResponse, DeleteRecordResponse, DescribeRoomRequest, DescribeDocumentRequest, RegisterUserRequest, BatchDeleteRecordResponse } from "./lcic_models"; /** * lcic client * @class @@ -91,6 +91,10 @@ export declare class Client extends AbstractClient { * 设置应用的自定义内容,包括应用图标,自定义的代码等。如果已存在,则为更新。更新js、css内容后,要生效也需要调用该接口 */ SetAppCustomContent(req: SetAppCustomContentRequest, cb?: (error: string, rep: SetAppCustomContentResponse) => void): Promise; + /** + * 获取当前房间的成员列表,房间结束或过期后无法使用。 + */ + DescribeCurrentMemberList(req: DescribeCurrentMemberListRequest, cb?: (error: string, rep: DescribeCurrentMemberListResponse) => void): Promise; /** * 获取应用详情 */ diff --git a/tencentcloud/services/lcic/v20220817/lcic_client.js b/tencentcloud/services/lcic/v20220817/lcic_client.js index c65573d23..37c1ff462 100644 --- a/tencentcloud/services/lcic/v20220817/lcic_client.js +++ b/tencentcloud/services/lcic/v20220817/lcic_client.js @@ -153,6 +153,12 @@ class Client extends abstract_client_1.AbstractClient { async SetAppCustomContent(req, cb) { return this.request("SetAppCustomContent", req, cb); } + /** + * 获取当前房间的成员列表,房间结束或过期后无法使用。 + */ + async DescribeCurrentMemberList(req, cb) { + return this.request("DescribeCurrentMemberList", req, cb); + } /** * 获取应用详情 */ diff --git a/tencentcloud/services/lcic/v20220817/lcic_models.d.ts b/tencentcloud/services/lcic/v20220817/lcic_models.d.ts index 0053bc620..c966d77ea 100644 --- a/tencentcloud/services/lcic/v20220817/lcic_models.d.ts +++ b/tencentcloud/services/lcic/v20220817/lcic_models.d.ts @@ -675,6 +675,23 @@ export interface DescribeDocumentsByRoomRequest { */ Owner?: string; } +/** + * DescribeCurrentMemberList请求参数结构体 + */ +export interface DescribeCurrentMemberListRequest { + /** + * 房间Id。 + */ + RoomId: number; + /** + * 分页查询当前页数,从1开始递增。 + */ + Page: number; + /** + * 每页数据量,最大1000。 + */ + Limit: number; +} /** * DescribeSdkAppIdUsers返回参数结构体 */ @@ -1240,6 +1257,23 @@ export interface BatchRegisterResponse { */ RequestId?: string; } +/** + * DescribeCurrentMemberList返回参数结构体 + */ +export interface DescribeCurrentMemberListResponse { + /** + * 记录总数。当前房间的总人数。 + */ + Total?: number; + /** + * 成员记录列表。 + */ + MemberRecords?: Array; + /** + * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 + */ + RequestId?: string; +} /** * LoginUser请求参数结构体 */ diff --git a/tencentcloud/services/nlp/v20190408/nlp_client.d.ts b/tencentcloud/services/nlp/v20190408/nlp_client.d.ts index 55673f640..680fc09e6 100644 --- a/tencentcloud/services/nlp/v20190408/nlp_client.d.ts +++ b/tencentcloud/services/nlp/v20190408/nlp_client.d.ts @@ -32,11 +32,6 @@ export declare class Client extends AbstractClient { 该词向量服务由腾讯知文自然语言处理团队联合腾讯AI Lab共同打造。使用的词向量基于千亿级大规模互联网语料并采用AI Lab自研的DSG算法训练而成,开源的词向量包含800多万中文词汇,在覆盖率、新鲜度及准确性等三方面性能突出。 -腾讯AI Lab词向量相关资料: - -https://ai.tencent.com/ailab/zh/news/detial?id=22 - -https://ai.tencent.com/ailab/nlp/zh/embedding.html */ WordEmbedding(req: WordEmbeddingRequest, cb?: (error: string, rep: WordEmbeddingResponse) => void): Promise; /** diff --git a/tencentcloud/services/nlp/v20190408/nlp_client.js b/tencentcloud/services/nlp/v20190408/nlp_client.js index a0259191a..2a19adcbe 100644 --- a/tencentcloud/services/nlp/v20190408/nlp_client.js +++ b/tencentcloud/services/nlp/v20190408/nlp_client.js @@ -62,11 +62,6 @@ class Client extends abstract_client_1.AbstractClient { 该词向量服务由腾讯知文自然语言处理团队联合腾讯AI Lab共同打造。使用的词向量基于千亿级大规模互联网语料并采用AI Lab自研的DSG算法训练而成,开源的词向量包含800多万中文词汇,在覆盖率、新鲜度及准确性等三方面性能突出。 -腾讯AI Lab词向量相关资料: - -https://ai.tencent.com/ailab/zh/news/detial?id=22 - -https://ai.tencent.com/ailab/nlp/zh/embedding.html */ async WordEmbedding(req, cb) { return this.request("WordEmbedding", req, cb); diff --git a/tencentcloud/services/nlp/v20190408/nlp_models.d.ts b/tencentcloud/services/nlp/v20190408/nlp_models.d.ts index cb2ccd684..55a7070c2 100644 --- a/tencentcloud/services/nlp/v20190408/nlp_models.d.ts +++ b/tencentcloud/services/nlp/v20190408/nlp_models.d.ts @@ -556,11 +556,11 @@ export interface WordEmbeddingResponse { /** * 词向量数组 */ - Vector?: Array; + Vector: Array; /** * 词向量的维度 */ - Dimension?: number; + Dimension: number; /** * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 */ diff --git a/tencentcloud/services/redis/v20180412/redis_models.d.ts b/tencentcloud/services/redis/v20180412/redis_models.d.ts index d5660f25d..93eac8814 100644 --- a/tencentcloud/services/redis/v20180412/redis_models.d.ts +++ b/tencentcloud/services/redis/v20180412/redis_models.d.ts @@ -535,11 +535,11 @@ export interface DescribeSlowLogResponse { /** * 慢查询总数。 */ - TotalCount: number; + TotalCount?: number; /** * 慢查询详情。 */ - InstanceSlowlogDetail: Array; + InstanceSlowlogDetail?: Array; /** * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 */ @@ -3176,7 +3176,7 @@ export interface DescribeSlowLogRequest { */ EndTime: string; /** - * 慢查询平均执行时间阈值(单位:微秒)。 + * 慢查询平均执行时间阈值(单位:毫秒)。 */ MinQueryTime?: number; /** diff --git a/tencentcloud/services/tione/v20211111/tione_models.d.ts b/tencentcloud/services/tione/v20211111/tione_models.d.ts index 85c5fac67..4214a0a74 100644 --- a/tencentcloud/services/tione/v20211111/tione_models.d.ts +++ b/tencentcloud/services/tione/v20211111/tione_models.d.ts @@ -1063,6 +1063,10 @@ export interface SpecPrice { * 优惠后的价格,单位:分 */ RealTotalCost: number; + /** + * 计费项数量 + */ + SpecCount?: number; } /** * DescribeTrainingMetrics请求参数结构体 @@ -2452,6 +2456,16 @@ export interface DatasetInfo { 注意:此字段可能返回 null,表示取不到有效值。 */ DatasetScope: string; + /** + * 数据集OCR子场景 +注意:此字段可能返回 null,表示取不到有效值。 + */ + OcrScene: string; + /** + * 数据集字典修改状态 +注意:此字段可能返回 null,表示取不到有效值。 + */ + AnnotationKeyStatus: string; } /** * DescribeModelAccelerateTask返回参数结构体 @@ -3303,6 +3317,21 @@ export interface DatasetGroup { 注意:此字段可能返回 null,表示取不到有效值。 */ DatasetScope: string; + /** + * 数据集OCR子场景 +注意:此字段可能返回 null,表示取不到有效值。 + */ + OcrScene: string; + /** + * 数据集字典修改状态 +注意:此字段可能返回 null,表示取不到有效值。 + */ + AnnotationKeyStatus: string; + /** + * 文本数据集导入方式 +注意:此字段可能返回 null,表示取不到有效值。 + */ + ContentType?: string; } /** * DescribeTrainingModels请求参数结构体 @@ -5295,7 +5324,7 @@ export interface DescribeBillingSpecsPriceResponse { /** * 计费项价格,支持批量返回 */ - SpecsPrice: Array; + SpecsPrice?: Array; /** * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 */ diff --git a/tencentcloud/services/tke/v20180525/tke_models.d.ts b/tencentcloud/services/tke/v20180525/tke_models.d.ts index 96ecc4fc5..86c7c41a0 100644 --- a/tencentcloud/services/tke/v20180525/tke_models.d.ts +++ b/tencentcloud/services/tke/v20180525/tke_models.d.ts @@ -2465,11 +2465,11 @@ export interface DescribePrometheusAlertHistoryResponse { /** * 告警历史 */ - Items: Array; + Items?: Array; /** * 总数 */ - Total: number; + Total?: number; /** * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 */ @@ -3399,11 +3399,11 @@ export interface DescribePrometheusAlertRuleResponse { /** * 告警详情 */ - AlertRules: Array; + AlertRules?: Array; /** * 总数 */ - Total: number; + Total?: number; /** * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 */ @@ -4753,37 +4753,37 @@ export interface DescribePrometheusInstanceResponse { /** * 实例id */ - InstanceId: string; + InstanceId?: string; /** * 实例名称 */ - Name: string; + Name?: string; /** * 私有网络id */ - VpcId: string; + VpcId?: string; /** * 子网id */ - SubnetId: string; + SubnetId?: string; /** * cos桶名称 */ - COSBucket: string; + COSBucket?: string; /** * 数据查询地址 */ - QueryAddress: string; + QueryAddress?: string; /** * 实例中grafana相关的信息 注意:此字段可能返回 null,表示取不到有效值。 */ - Grafana: PrometheusGrafanaInfo; + Grafana?: PrometheusGrafanaInfo; /** * 用户自定义alertmanager 注意:此字段可能返回 null,表示取不到有效值。 */ - AlertManagerUrl: string; + AlertManagerUrl?: string; /** * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 */ @@ -6630,7 +6630,7 @@ export interface CreatePrometheusAlertRuleResponse { /** * 告警id */ - Id: string; + Id?: string; /** * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 */ diff --git a/tencentcloud/services/tsf/v20180326/tsf_models.d.ts b/tencentcloud/services/tsf/v20180326/tsf_models.d.ts index 5d419d904..e4d9801d9 100644 --- a/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +++ b/tencentcloud/services/tsf/v20180326/tsf_models.d.ts @@ -1699,6 +1699,11 @@ export interface GatewayPluginBoundParam { * ModifyNamespace返回参数结构体 */ export interface ModifyNamespaceResponse { + /** + * Result +注意:此字段可能返回 null,表示取不到有效值。 + */ + Result?: boolean; /** * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 */ @@ -9925,6 +9930,11 @@ export interface VmGroupOther { 注意:此字段可能返回 null,表示取不到有效值。 */ IsNotEqualServiceConfig: boolean; + /** + * HealthCheckSettings +注意:此字段可能返回 null,表示取不到有效值。 + */ + HealthCheckSettings?: HealthCheckSettings; } /** * DescribeTaskLastStatus返回参数结构体 diff --git a/tencentcloud/services/tts/v20190823/tts_models.d.ts b/tencentcloud/services/tts/v20190823/tts_models.d.ts index 393e50136..8b89017a0 100644 --- a/tencentcloud/services/tts/v20190823/tts_models.d.ts +++ b/tencentcloud/services/tts/v20190823/tts_models.d.ts @@ -26,7 +26,7 @@ export interface CreateTtsTaskResponse { /** * 任务 id */ - Data: CreateTtsTaskRespData; + Data?: CreateTtsTaskRespData; /** * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 */ @@ -138,7 +138,11 @@ export interface CreateTtsTaskRequest { */ ProjectId?: number; /** - * 标准音色
  • 10510000-智逍遥,旁对白阅读风格男声
  • 1001-智瑜,情感女声
  • 1002-智聆,通用女声
  • 1003-智美,客服女声
  • 1004-智云,通用男声
  • 1005-智莉,通用女声
  • 1007-智娜,客服女声
  • 1008-智琪,客服女声
  • 1009-智芸,知性女声
  • 1010-智华,通用男声
  • 1017-智蓉,情感女声
  • 1018-智靖,情感男声
  • 1050-WeJack,英文男声
  • 1051-WeRose,英文女声
  • 精品音色
    精品音色拟真度更高,价格不同于标准音色,查看[购买指南](https://cloud.tencent.com/document/product/1073/34112)
  • 100510000-智逍遥,旁对白阅读风格男声(精品)
  • 101001-智瑜,情感女声(精品)
  • 101002-智聆,通用女声(精品)
  • 101003-智美,客服女声(精品)
  • 101004-智云,通用男声(精品)
  • 101005-智莉,通用女声(精品)
  • 101006-智言,助手女声
  • 101007-智娜,客服女声(精品)
  • 101008-智琪,客服女声(精品)
  • 101009-智芸,知性女声(精品)
  • 101010-智华,通用男声(精品)
  • 101011-智燕,新闻女声
  • 101012-智丹,新闻女声
  • 101013-智辉,新闻男声
  • 101014-智宁,新闻男声
  • 101015-智萌,男童声
  • 101016-智甜,女童声
  • 101017-智蓉,情感女声(精品)
  • 101018-智靖,情感男声(精品)
  • 101019-智彤,粤语女声
  • 101050-WeJack,英文男声(精品)
  • 101051-WeRose,英文女声(精品)
  • + * 标准音色
  • 10510000-智逍遥,旁对白阅读风格男声
  • 1001-智瑜,情感女声
  • 1002-智聆,通用女声
  • 1003-智美,客服女声
  • 1004-智云,通用男声
  • 1005-智莉,通用女声
  • 1007-智娜,客服女声
  • 1008-智琪,客服女声
  • 1009-智芸,知性女声
  • 1010-智华,通用男声
  • 1017-智蓉,情感女声
  • 1018-智靖,情感男声
  • 1050-WeJack,英文男声
  • 1051-WeRose,英文女声
  • 精品音色
    精品音色拟真度更高,价格不同于标准音色,查看[购买指南](https://cloud.tencent.com/document/product/1073/34112)
  • 100510000-智逍遥,阅读男声
  • 101001-智瑜,情感女声
  • 101002-智聆,通用女声
  • 101003-智美,客服女声
  • 101004-智云,通用男声
  • 101005-智莉,通用女声
  • 101006-智言,助手女声
  • 101007-智娜,客服女声
  • 101008-智琪,客服女声
  • 101009-智芸,知性女声
  • 101010-智华,通用男声
  • 101011-智燕,新闻女声
  • 101012-智丹,新闻女声
  • 101013-智辉,新闻男声
  • 101014-智宁,新闻男声
  • 101015-智萌,男童声
  • 101016-智甜,女童声
  • 101017-智蓉,情感女声
  • 101018-智靖,情感男声
  • 101019-智彤,粤语女声
  • 101020-智刚,新闻男声
  • 101021-智瑞,新闻男声
  • 101022-智虹,新闻女声
  • 101023-智萱,聊天女声
  • 101024-智皓,聊天男声
  • 101025-智薇,聊天女声
  • 101026-智希,通用女声
  • 101027-智梅,通用女声
  • 101028-智洁,通用女声
  • 101029-智凯,通用男声
  • 101030-智柯,通用男声
  • 101031-智奎,通用男声
  • 101032-智芳,通用女声
  • 101033-智蓓,客服女声
  • 101034-智莲,通用女声
  • 101035-智依,通用女声
  • 101040-智川,四川女声
  • 101050-WeJack,英文男声
  • 101051-WeRose,英文女声
  • 101052-智味,通用男声
  • +
  • 101053-智方,通用男声
  • +
  • 101054-智友,通用男声
  • +
  • 101055-智付,通用女声
  • +
  • 101056-智林,东北男声
  • */ VoiceType?: number; /** diff --git a/tencentcloud/services/vod/v20180717/vod_client.d.ts b/tencentcloud/services/vod/v20180717/vod_client.d.ts index 98ee5dca3..c5e2693bd 100644 --- a/tencentcloud/services/vod/v20180717/vod_client.d.ts +++ b/tencentcloud/services/vod/v20180717/vod_client.d.ts @@ -345,7 +345,6 @@ export declare class Client extends AbstractClient { * 对点播中的音视频媒体发起审核任务,智能检测视频画面、画面中的文字、语音中的文字、声音出现的违规内容。 如使用事件通知,事件通知的类型为 [音视频审核完成](https://cloud.tencent.com/document/product/266/81258)。 - */ ReviewAudioVideo(req: ReviewAudioVideoRequest, cb?: (error: string, rep: ReviewAudioVideoResponse) => void): Promise; /** diff --git a/tencentcloud/services/vod/v20180717/vod_client.js b/tencentcloud/services/vod/v20180717/vod_client.js index 181ff7fd7..4caa5ef11 100644 --- a/tencentcloud/services/vod/v20180717/vod_client.js +++ b/tencentcloud/services/vod/v20180717/vod_client.js @@ -475,7 +475,6 @@ class Client extends abstract_client_1.AbstractClient { * 对点播中的音视频媒体发起审核任务,智能检测视频画面、画面中的文字、语音中的文字、声音出现的违规内容。 如使用事件通知,事件通知的类型为 [音视频审核完成](https://cloud.tencent.com/document/product/266/81258)。 - */ async ReviewAudioVideo(req, cb) { return this.request("ReviewAudioVideo", req, cb); diff --git a/tencentcloud/services/vod/v20180717/vod_models.d.ts b/tencentcloud/services/vod/v20180717/vod_models.d.ts index 4d0621239..d8b937fd9 100644 --- a/tencentcloud/services/vod/v20180717/vod_models.d.ts +++ b/tencentcloud/services/vod/v20180717/vod_models.d.ts @@ -2512,7 +2512,7 @@ export interface ReviewAudioVideoRequest { ReviewContents?: Array; /** * 审核模板 ID,默认值为 10。取值范围: -
  • 10:预置模板,支持检测的违规标签包括色情(Porn)、暴恐(Terror)和不适宜的信息(Polity)。
  • +
  • 10:预置模板,支持检测的违规标签包括色情(Porn)、暴力(Terror)和不适宜的信息(Polity)。
  • */ Definition?: number; /** @@ -3488,11 +3488,10 @@ export interface ReviewAudioVideoSegmentItem { /** * 嫌疑片段最可能的违规的标签,取值范围:
  • Porn:色情;
  • -
  • Terror:暴恐;
  • +
  • Terror:暴力;
  • Polity:不适宜的信息;
  • Ad:广告;
  • Illegal:违法;
  • -
  • Religion:宗教;
  • Abuse:谩骂;
  • Moan:娇喘。
  • */ @@ -4582,11 +4581,10 @@ export interface ReviewImageSegmentItem { /** * 嫌疑片段最可能的违规的标签,取值范围:
  • Porn:色情;
  • -
  • Terror:暴恐;
  • +
  • Terror:暴力;
  • Polity:不适宜的信息;
  • Ad:广告;
  • Illegal:违法;
  • -
  • Religion:宗教;
  • Abuse:谩骂。
  • */ Label?: string; @@ -4780,10 +4778,9 @@ export interface CreateReviewTemplateRequest { /** * 需要返回的违规标签列表,可选值为:
  • Porn:色情;
  • -
  • Terror:暴恐;
  • +
  • Terror:暴力;
  • Polity:不适宜的信息;
  • Illegal:违法;
  • -
  • Religion:宗教;
  • Abuse:谩骂;
  • Ad:广告;
  • Moan:娇喘。
  • @@ -6062,11 +6059,10 @@ export interface ReviewAudioVideoTaskOutput { /** * 当 Suggestion 为 review 或 block 时有效,表示音视频最可能的违规的标签,取值范围:
  • Porn:色情;
  • -
  • Terror:暴恐;
  • +
  • Terror:暴力;
  • Polity:不适宜的信息;
  • Ad:广告;
  • Illegal:违法;
  • -
  • Religion:宗教;
  • Abuse:谩骂;
  • Moan:娇喘。
  • */ @@ -6375,10 +6371,9 @@ export interface ModifyReviewTemplateRequest { /** * 需要返回的违规标签列表,可选值为:
  • Porn:色情;
  • -
  • Terror:暴恐;
  • +
  • Terror:暴力;
  • Polity:不适宜的信息;
  • Illegal:违法;
  • -
  • Religion:宗教;
  • Abuse:谩骂;
  • Ad:广告;
  • Moan:娇喘。
  • @@ -8541,11 +8536,10 @@ export interface ReviewImageResult { /** * 当 Suggestion 为 review 或 block 时有效,表示最可能的违规的标签,取值范围:
  • Porn:色情;
  • -
  • Terror:暴恐;
  • +
  • Terror:暴力;
  • Polity:不适宜的信息;
  • Ad:广告;
  • Illegal:违法;
  • -
  • Religion:宗教;
  • Abuse:谩骂。
  • */ Label?: string; @@ -13815,7 +13809,7 @@ export interface ReviewAudioVideoResponse { /** * 任务 ID */ - TaskId: string; + TaskId?: string; /** * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 */ @@ -15351,11 +15345,10 @@ Form 表示违禁的形式,取值范围:
  • Voice:声音。
  • Label 表示违禁的标签,取值范围:
  • Porn:色情;
  • -
  • Terror:暴恐;
  • +
  • Terror:暴力;
  • Polity:不适宜的信息;
  • Ad:广告;
  • Illegal:违法;
  • -
  • Religion:宗教;
  • Abuse:谩骂;
  • Moan:娇喘。
  • */ @@ -15513,7 +15506,7 @@ export interface ReviewImageRequest { FileId: string; /** * 图片审核模板 ID,取值范围: -
  • 10:预置模板,支持检测的违规标签包括色情(Porn)、暴恐(Terror)和不适宜的信息(Polity)。
  • +
  • 10:预置模板,支持检测的违规标签包括色情(Porn)、暴力(Terror)和不适宜的信息(Polity)。
  • */ Definition: number; /** diff --git a/tencentcloud/services/wedata/v20210820/wedata_models.d.ts b/tencentcloud/services/wedata/v20210820/wedata_models.d.ts index e1c9e93bf..16197a983 100644 --- a/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +++ b/tencentcloud/services/wedata/v20210820/wedata_models.d.ts @@ -5013,6 +5013,46 @@ export interface GenHiveTableDDLSqlRequest { * 上游节点的字段信息 */ SourceFieldInfoList?: Array; + /** + * 分区字段 + */ + Partitions?: Array; + /** + * 建表属性 + */ + Properties?: Array; + /** + * 建表模式,0:向导模式,1:ddl + */ + TableMode?: number; + /** + * DLC表版本,v1/v2 + */ + TableVersion?: string; + /** + * 是否upsert写入 + */ + UpsertFlag?: boolean; + /** + * 表描述信息 + */ + TableComment?: string; + /** + * 增加的文件数量阈值, 超过值将触发小文件合并 + */ + AddDataFiles?: number; + /** + * 增加的Equality delete数量阈值, 超过值将触发小文件合并 + */ + AddEqualityDeletes?: number; + /** + * 增加的Position delete数量阈值, 超过值将触发小文件合并 + */ + AddPositionDeletes?: number; + /** + * 增加的delete file数量阈值 + */ + AddDeleteFiles?: number; } /** * DescribeRuleExecResultsByPage请求参数结构体 @@ -10786,6 +10826,23 @@ export interface DeleteInLongAgentRequest { */ ProjectId: string; } +/** + * 分区参数 + */ +export interface Partition { + /** + * 分区转换策略 + */ + Transform?: string; + /** + * 分区字段名 + */ + Name?: string; + /** + * 策略参数 + */ + TransformArgs?: Array; +} /** * RuleDimCnt 规则维度统计 */ @@ -10853,6 +10910,19 @@ export interface DescribeDimensionScoreRequest { */ DatasourceId?: string; } +/** + * dlc建表属性 + */ +export interface Property { + /** + * key值 + */ + Key: string; + /** + * value值 + */ + Value: string; +} /** * 采集器关联的集成任务 */ diff --git a/test/bma.v20221115.test.js b/test/bma.v20221115.test.js new file mode 100644 index 000000000..9ef7af7a2 --- /dev/null +++ b/test/bma.v20221115.test.js @@ -0,0 +1,61 @@ + +const expect = require("chai").expect +const tencentcloud = require("../../tencentcloud-sdk-nodejs") +const client = new tencentcloud.bma.v20221115.Client({ + credential: { + secretId: process.env.secretId, + secretKey: process.env.secretKey, + }, + region: "ap-shanghai", + profile: { + signMethod: "TC3-HMAC-SHA256", + httpProfile: { + reqMethod: "POST", + reqTimeout: 30, + endpoint: "cvm.ap-shanghai.tencentcloudapi.com", + }, + }, +}) +describe("bma.v20221115.test.js", function () { + +it("bma.v20221115.CreateBPFakeAPP", async function () { + try { + const data = await client.CreateBPFakeAPP({}) + expect(data).to.be.ok + } catch(error) { + expect(error.requestId).to.be.ok + expect(error.code).to.be.ok + } +}) + +it("bma.v20221115.CreateBPFakeURL", async function () { + try { + const data = await client.CreateBPFakeURL({}) + expect(data).to.be.ok + } catch(error) { + expect(error.requestId).to.be.ok + expect(error.code).to.be.ok + } +}) + +it("bma.v20221115.CreateBPFakeURLs", async function () { + try { + const data = await client.CreateBPFakeURLs({}) + expect(data).to.be.ok + } catch(error) { + expect(error.requestId).to.be.ok + expect(error.code).to.be.ok + } +}) + +it("bma.v20221115.CreateBPFakeAPPList", async function () { + try { + const data = await client.CreateBPFakeAPPList({}) + expect(data).to.be.ok + } catch(error) { + expect(error.requestId).to.be.ok + expect(error.code).to.be.ok + } +}) + +}) diff --git a/test/cynosdb.v20190107.test.js b/test/cynosdb.v20190107.test.js index fc8221155..75b9dde5c 100644 --- a/test/cynosdb.v20190107.test.js +++ b/test/cynosdb.v20190107.test.js @@ -568,9 +568,9 @@ it("cynosdb.v20190107.DescribeResourcesByDealName", async function () { } }) -it("cynosdb.v20190107.GrantAccountPrivileges", async function () { +it("cynosdb.v20190107.ExportInstanceSlowQueries", async function () { try { - const data = await client.GrantAccountPrivileges({}) + const data = await client.ExportInstanceSlowQueries({}) expect(data).to.be.ok } catch(error) { expect(error.requestId).to.be.ok @@ -678,9 +678,9 @@ it("cynosdb.v20190107.DescribeAuditLogFiles", async function () { } }) -it("cynosdb.v20190107.ExportInstanceSlowQueries", async function () { +it("cynosdb.v20190107.DescribeZones", async function () { try { - const data = await client.ExportInstanceSlowQueries({}) + const data = await client.DescribeZones({}) expect(data).to.be.ok } catch(error) { expect(error.requestId).to.be.ok @@ -718,6 +718,16 @@ it("cynosdb.v20190107.ModifyAuditRuleTemplates", async function () { } }) +it("cynosdb.v20190107.GrantAccountPrivileges", async function () { + try { + const data = await client.GrantAccountPrivileges({}) + expect(data).to.be.ok + } catch(error) { + expect(error.requestId).to.be.ok + expect(error.code).to.be.ok + } +}) + it("cynosdb.v20190107.SearchClusterTables", async function () { try { const data = await client.SearchClusterTables({}) diff --git a/test/dnspod.v20210323.test.js b/test/dnspod.v20210323.test.js index 86b3a99af..66994d67d 100644 --- a/test/dnspod.v20210323.test.js +++ b/test/dnspod.v20210323.test.js @@ -128,6 +128,16 @@ it("dnspod.v20210323.ModifyRecordFields", async function () { } }) +it("dnspod.v20210323.DeleteDomainBatch", async function () { + try { + const data = await client.DeleteDomainBatch({}) + expect(data).to.be.ok + } catch(error) { + expect(error.requestId).to.be.ok + expect(error.code).to.be.ok + } +}) + it("dnspod.v20210323.DownloadSnapshot", async function () { try { const data = await client.DownloadSnapshot({}) @@ -158,6 +168,16 @@ it("dnspod.v20210323.ModifyRecord", async function () { } }) +it("dnspod.v20210323.DescribeDomainWhois", async function () { + try { + const data = await client.DescribeDomainWhois({}) + expect(data).to.be.ok + } catch(error) { + expect(error.requestId).to.be.ok + expect(error.code).to.be.ok + } +}) + it("dnspod.v20210323.DescribeRecordGroupList", async function () { try { const data = await client.DescribeRecordGroupList({}) @@ -248,9 +268,9 @@ it("dnspod.v20210323.DeleteShareDomain", async function () { } }) -it("dnspod.v20210323.DescribeDomain", async function () { +it("dnspod.v20210323.ModifyVasAutoRenewStatus", async function () { try { - const data = await client.DescribeDomain({}) + const data = await client.ModifyVasAutoRenewStatus({}) expect(data).to.be.ok } catch(error) { expect(error.requestId).to.be.ok @@ -278,9 +298,9 @@ it("dnspod.v20210323.ModifyRecordStatus", async function () { } }) -it("dnspod.v20210323.CreateRecordGroup", async function () { +it("dnspod.v20210323.DescribeDomain", async function () { try { - const data = await client.CreateRecordGroup({}) + const data = await client.DescribeDomain({}) expect(data).to.be.ok } catch(error) { expect(error.requestId).to.be.ok @@ -348,6 +368,26 @@ it("dnspod.v20210323.DescribeRecord", async function () { } }) +it("dnspod.v20210323.ModifySnapshotConfig", async function () { + try { + const data = await client.ModifySnapshotConfig({}) + expect(data).to.be.ok + } catch(error) { + expect(error.requestId).to.be.ok + expect(error.code).to.be.ok + } +}) + +it("dnspod.v20210323.DescribePackageDetail", async function () { + try { + const data = await client.DescribePackageDetail({}) + expect(data).to.be.ok + } catch(error) { + expect(error.requestId).to.be.ok + expect(error.code).to.be.ok + } +}) + it("dnspod.v20210323.DescribeRecordLineList", async function () { try { const data = await client.DescribeRecordLineList({}) @@ -358,6 +398,16 @@ it("dnspod.v20210323.DescribeRecordLineList", async function () { } }) +it("dnspod.v20210323.DescribeVASStatistic", async function () { + try { + const data = await client.DescribeVASStatistic({}) + expect(data).to.be.ok + } catch(error) { + expect(error.requestId).to.be.ok + expect(error.code).to.be.ok + } +}) + it("dnspod.v20210323.DescribeDomainAnalytics", async function () { try { const data = await client.DescribeDomainAnalytics({}) @@ -418,6 +468,16 @@ it("dnspod.v20210323.ModifyDomainRemark", async function () { } }) +it("dnspod.v20210323.DescribeRecordExistExceptDefaultNS", async function () { + try { + const data = await client.DescribeRecordExistExceptDefaultNS({}) + expect(data).to.be.ok + } catch(error) { + expect(error.requestId).to.be.ok + expect(error.code).to.be.ok + } +}) + it("dnspod.v20210323.ModifyDomainOwner", async function () { try { const data = await client.ModifyDomainOwner({}) @@ -438,9 +498,9 @@ it("dnspod.v20210323.CreateDomainGroup", async function () { } }) -it("dnspod.v20210323.ModifySnapshotConfig", async function () { +it("dnspod.v20210323.CreateRecordGroup", async function () { try { - const data = await client.ModifySnapshotConfig({}) + const data = await client.CreateRecordGroup({}) expect(data).to.be.ok } catch(error) { expect(error.requestId).to.be.ok @@ -478,9 +538,9 @@ it("dnspod.v20210323.CheckRecordSnapshotRollback", async function () { } }) -it("dnspod.v20210323.CreateDomain", async function () { +it("dnspod.v20210323.DescribeDomainPreview", async function () { try { - const data = await client.CreateDomain({}) + const data = await client.DescribeDomainPreview({}) expect(data).to.be.ok } catch(error) { expect(error.requestId).to.be.ok @@ -488,9 +548,9 @@ it("dnspod.v20210323.CreateDomain", async function () { } }) -it("dnspod.v20210323.RollbackRecordSnapshot", async function () { +it("dnspod.v20210323.CreateDomain", async function () { try { - const data = await client.RollbackRecordSnapshot({}) + const data = await client.CreateDomain({}) expect(data).to.be.ok } catch(error) { expect(error.requestId).to.be.ok @@ -498,9 +558,9 @@ it("dnspod.v20210323.RollbackRecordSnapshot", async function () { } }) -it("dnspod.v20210323.PayOrderWithBalance", async function () { +it("dnspod.v20210323.RollbackRecordSnapshot", async function () { try { - const data = await client.PayOrderWithBalance({}) + const data = await client.RollbackRecordSnapshot({}) expect(data).to.be.ok } catch(error) { expect(error.requestId).to.be.ok @@ -518,9 +578,9 @@ it("dnspod.v20210323.ModifyRecordToGroup", async function () { } }) -it("dnspod.v20210323.ModifyVasAutoRenewStatus", async function () { +it("dnspod.v20210323.PayOrderWithBalance", async function () { try { - const data = await client.ModifyVasAutoRenewStatus({}) + const data = await client.PayOrderWithBalance({}) expect(data).to.be.ok } catch(error) { expect(error.requestId).to.be.ok diff --git a/test/lcic.v20220817.test.js b/test/lcic.v20220817.test.js index 405101462..df0d11b74 100644 --- a/test/lcic.v20220817.test.js +++ b/test/lcic.v20220817.test.js @@ -228,6 +228,16 @@ it("lcic.v20220817.SetAppCustomContent", async function () { } }) +it("lcic.v20220817.DescribeCurrentMemberList", async function () { + try { + const data = await client.DescribeCurrentMemberList({}) + expect(data).to.be.ok + } catch(error) { + expect(error.requestId).to.be.ok + expect(error.code).to.be.ok + } +}) + it("lcic.v20220817.DescribeAppDetail", async function () { try { const data = await client.DescribeAppDetail({})