tencentcloud-sdk-nodejs 4.0.933 → 4.0.934
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +203 -0
- package/SERVICE_CHANGELOG.md +333 -28
- package/package.json +1 -1
- package/products.md +20 -20
- package/src/common/sdk_version.ts +1 -1
- package/src/services/cvm/v20170312/cvm_client.ts +13 -0
- package/src/services/cvm/v20170312/cvm_models.ts +56 -0
- package/src/services/dc/v20180410/dc_client.ts +5 -6
- package/src/services/dc/v20180410/dc_models.ts +6 -7
- package/src/services/dcdb/v20180411/dcdb_models.ts +10 -2
- package/src/services/dlc/v20210125/dlc_client.ts +26 -2
- package/src/services/dlc/v20210125/dlc_models.ts +71 -23
- package/src/services/emr/v20190103/emr_client.ts +18 -3
- package/src/services/emr/v20190103/emr_models.ts +170 -32
- package/src/services/es/v20180416/es_client.ts +3 -1
- package/src/services/es/v20180416/es_models.ts +53 -4
- package/src/services/ess/v20201111/ess_client.ts +16 -3
- package/src/services/ess/v20201111/ess_models.ts +125 -42
- package/src/services/mariadb/v20170312/mariadb_models.ts +11 -3
- package/src/services/rce/v20201103/rce_client.ts +2 -2
- package/src/services/sms/v20190711/sms_models.ts +2 -2
- package/src/services/sms/v20210111/sms_models.ts +2 -2
- package/src/services/trtc/v20190722/trtc_models.ts +5 -0
- package/src/services/tse/v20201207/tse_models.ts +8 -8
- package/src/services/vclm/v20240523/vclm_models.ts +1 -1
- package/src/services/vpc/v20170312/vpc_client.ts +2 -2
- package/src/services/vtc/v20240223/vtc_models.ts +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/cvm/v20170312/cvm_client.d.ts +5 -1
- package/tencentcloud/services/cvm/v20170312/cvm_client.js +6 -0
- package/tencentcloud/services/cvm/v20170312/cvm_models.d.ts +53 -0
- package/tencentcloud/services/dc/v20180410/dc_client.d.ts +4 -5
- package/tencentcloud/services/dc/v20180410/dc_client.js +4 -5
- package/tencentcloud/services/dc/v20180410/dc_models.d.ts +6 -7
- package/tencentcloud/services/dcdb/v20180411/dcdb_models.d.ts +10 -2
- package/tencentcloud/services/dlc/v20210125/dlc_client.d.ts +9 -1
- package/tencentcloud/services/dlc/v20210125/dlc_client.js +12 -0
- package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +67 -23
- package/tencentcloud/services/emr/v20190103/emr_client.d.ts +5 -1
- package/tencentcloud/services/emr/v20190103/emr_client.js +6 -0
- package/tencentcloud/services/emr/v20190103/emr_models.d.ts +164 -31
- package/tencentcloud/services/es/v20180416/es_client.d.ts +1 -1
- package/tencentcloud/services/es/v20180416/es_models.d.ts +51 -4
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +5 -1
- package/tencentcloud/services/ess/v20201111/ess_client.js +6 -0
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +122 -42
- package/tencentcloud/services/mariadb/v20170312/mariadb_models.d.ts +11 -3
- package/tencentcloud/services/rce/v20201103/rce_client.d.ts +2 -2
- package/tencentcloud/services/rce/v20201103/rce_client.js +2 -2
- package/tencentcloud/services/sms/v20190711/sms_models.d.ts +2 -2
- package/tencentcloud/services/sms/v20210111/sms_models.d.ts +2 -2
- package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +5 -0
- package/tencentcloud/services/tse/v20201207/tse_models.d.ts +8 -8
- package/tencentcloud/services/vclm/v20240523/vclm_models.d.ts +1 -1
- package/tencentcloud/services/vpc/v20170312/vpc_client.d.ts +2 -2
- package/tencentcloud/services/vpc/v20170312/vpc_client.js +2 -2
- package/tencentcloud/services/vtc/v20240223/vtc_models.d.ts +1 -1
- package/test/cvm.v20170312.test.js +10 -0
- package/test/dlc.v20210125.test.js +20 -0
- package/test/emr.v20190103.test.js +10 -0
- package/test/ess.v20201111.test.js +10 -0
|
@@ -441,13 +441,17 @@ export interface KeyValue {
|
|
|
441
441
|
Value: string;
|
|
442
442
|
}
|
|
443
443
|
/**
|
|
444
|
-
*
|
|
444
|
+
* 指标数据map
|
|
445
445
|
*/
|
|
446
|
-
export interface
|
|
446
|
+
export interface MetricMapByIndexId {
|
|
447
447
|
/**
|
|
448
|
-
*
|
|
448
|
+
* 实例id
|
|
449
449
|
*/
|
|
450
|
-
|
|
450
|
+
IndexId?: string;
|
|
451
|
+
/**
|
|
452
|
+
* 指标数据
|
|
453
|
+
*/
|
|
454
|
+
MetricAllData?: MetricAllData;
|
|
451
455
|
}
|
|
452
456
|
/**
|
|
453
457
|
* UpdateLogstashPipelineDesc返回参数结构体
|
|
@@ -1060,6 +1064,31 @@ export interface CheckMigrateIndexMetaDataResponse {
|
|
|
1060
1064
|
*/
|
|
1061
1065
|
RequestId?: string;
|
|
1062
1066
|
}
|
|
1067
|
+
/**
|
|
1068
|
+
* 全部指标数据
|
|
1069
|
+
*/
|
|
1070
|
+
export interface MetricAllData {
|
|
1071
|
+
/**
|
|
1072
|
+
* 索引流量
|
|
1073
|
+
*/
|
|
1074
|
+
IndexTraffic?: number;
|
|
1075
|
+
/**
|
|
1076
|
+
* 存储大小
|
|
1077
|
+
*/
|
|
1078
|
+
Storage?: number;
|
|
1079
|
+
/**
|
|
1080
|
+
* 读请求次数
|
|
1081
|
+
*/
|
|
1082
|
+
ReadReqTimes?: number;
|
|
1083
|
+
/**
|
|
1084
|
+
* 写请求次数
|
|
1085
|
+
*/
|
|
1086
|
+
WriteReqTimes?: number;
|
|
1087
|
+
/**
|
|
1088
|
+
* 文档数量
|
|
1089
|
+
*/
|
|
1090
|
+
DocCount?: number;
|
|
1091
|
+
}
|
|
1063
1092
|
/**
|
|
1064
1093
|
* 配置组信息
|
|
1065
1094
|
*/
|
|
@@ -1323,6 +1352,10 @@ export interface DescribeServerlessMetricsRequest {
|
|
|
1323
1352
|
* 时间长度类型DurationType(1: 3小时, 2: 昨天1天,3: 今日0点到现在)
|
|
1324
1353
|
*/
|
|
1325
1354
|
DurationType?: number;
|
|
1355
|
+
/**
|
|
1356
|
+
* 索引数据
|
|
1357
|
+
*/
|
|
1358
|
+
BatchIndexList?: Array<string>;
|
|
1326
1359
|
}
|
|
1327
1360
|
/**
|
|
1328
1361
|
* GetDiagnoseSettings返回参数结构体
|
|
@@ -1782,6 +1815,15 @@ export interface UpdatePluginsRequest {
|
|
|
1782
1815
|
*/
|
|
1783
1816
|
PluginType?: number;
|
|
1784
1817
|
}
|
|
1818
|
+
/**
|
|
1819
|
+
* UpdateDiagnoseSettings返回参数结构体
|
|
1820
|
+
*/
|
|
1821
|
+
export interface UpdateDiagnoseSettingsResponse {
|
|
1822
|
+
/**
|
|
1823
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1824
|
+
*/
|
|
1825
|
+
RequestId?: string;
|
|
1826
|
+
}
|
|
1785
1827
|
/**
|
|
1786
1828
|
* DescribeServerlessSpaceUser请求参数结构体
|
|
1787
1829
|
*/
|
|
@@ -4707,6 +4749,11 @@ export interface DescribeServerlessMetricsResponse {
|
|
|
4707
4749
|
* 文档数量,单位个数
|
|
4708
4750
|
*/
|
|
4709
4751
|
DocCount?: number;
|
|
4752
|
+
/**
|
|
4753
|
+
* 指标数据数据
|
|
4754
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4755
|
+
*/
|
|
4756
|
+
MetricMapList?: Array<MetricMapByIndexId>;
|
|
4710
4757
|
/**
|
|
4711
4758
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4712
4759
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AbstractClient } from "../../../common/abstract_client";
|
|
2
2
|
import { ClientConfig } from "../../../common/interface";
|
|
3
|
-
import { DescribePersonCertificateResponse, CreateOrganizationGroupInvitationLinkRequest, DescribeCancelFlowsTaskResponse, CreateSealRequest, CancelFlowResponse, DescribeExtendedServiceAuthDetailResponse, UpdateIntegrationEmployeesResponse, CreatePreparedPersonalEsignRequest, CreateLegalSealQrCodeResponse, DescribeIntegrationDepartmentsResponse, DeleteExtendedServiceAuthInfosResponse, CreateFlowApproversResponse, DescribeFileUrlsResponse, CreateExtendedServiceAuthInfosRequest, CancelUserAutoSignEnableUrlRequest, ModifyApplicationCallbackInfoResponse, CreateMultiFlowSignQRCodeResponse, DescribeIntegrationDepartmentsRequest, DescribeThirdPartyAuthCodeResponse, DescribeUserVerifyStatusResponse, DisableUserAutoSignResponse, ModifyExtendedServiceRequest, CreateBatchInitOrganizationUrlResponse, BindEmployeeUserIdWithClientOpenIdResponse, CreateIntegrationEmployeesRequest, DescribeIntegrationRolesRequest, CreateFlowEvidenceReportRequest, StartFlowResponse, CreateOrganizationAuthUrlRequest, CreateBatchQuickSignUrlResponse, CreateIntegrationRoleRequest, DeleteIntegrationRoleUsersResponse, CreateConvertTaskApiRequest, DeleteIntegrationEmployeesResponse, CreateFlowGroupSignReviewResponse, CreateBatchSignUrlResponse, CreateFlowRemindsResponse, DescribeOrganizationGroupOrganizationsRequest, CreateFlowGroupByFilesRequest, DescribeFlowComponentsResponse, DescribeFlowEvidenceReportResponse, DescribeSignFaceVideoRequest, CreateEmployeeQualificationSealQrCodeResponse, CreateFlowGroupByTemplatesResponse, CreateUserVerifyUrlResponse, DescribeBatchOrganizationRegistrationUrlsRequest, CreateDocumentResponse, DescribeIntegrationEmployeesRequest, UnbindEmployeeUserIdWithClientOpenIdResponse, CreateIntegrationUserRolesResponse, CreateFlowRequest, CreateSchemeUrlRequest, DeleteIntegrationDepartmentResponse, DescribeThirdPartyAuthCodeRequest, CreateBatchOrganizationRegistrationTasksResponse, CreateReleaseFlowResponse, CreateBatchInitOrganizationUrlRequest, CreateWebThemeConfigResponse, BindEmployeeUserIdWithClientOpenIdRequest, CreateOrganizationInfoChangeUrlResponse, DescribeExtendedServiceAuthDetailRequest, CreateIntegrationDepartmentResponse, DescribeFlowTemplatesRequest, CreateIntegrationSubOrganizationActiveRecordResponse, DeleteSealPoliciesResponse, CreateLegalSealQrCodeRequest,
|
|
3
|
+
import { DescribePersonCertificateResponse, CreateOrganizationGroupInvitationLinkRequest, DescribeCancelFlowsTaskResponse, CreateSealRequest, CancelFlowResponse, DescribeExtendedServiceAuthDetailResponse, UpdateIntegrationEmployeesResponse, CreatePreparedPersonalEsignRequest, CreateLegalSealQrCodeResponse, DescribeIntegrationDepartmentsResponse, DeleteExtendedServiceAuthInfosResponse, CreateFlowApproversResponse, DescribeFileUrlsResponse, CreateExtendedServiceAuthInfosRequest, CancelUserAutoSignEnableUrlRequest, ModifyApplicationCallbackInfoResponse, CreateMultiFlowSignQRCodeResponse, DescribeIntegrationDepartmentsRequest, DescribeThirdPartyAuthCodeResponse, DescribeUserVerifyStatusResponse, DisableUserAutoSignResponse, ModifyExtendedServiceRequest, CreateBatchInitOrganizationUrlResponse, BindEmployeeUserIdWithClientOpenIdResponse, CreateIntegrationEmployeesRequest, DescribeIntegrationRolesRequest, CreateFlowEvidenceReportRequest, StartFlowResponse, CreateOrganizationAuthUrlRequest, CreateBatchQuickSignUrlResponse, CreateIntegrationRoleRequest, DeleteIntegrationRoleUsersResponse, CreateConvertTaskApiRequest, DeleteIntegrationEmployeesResponse, CreateFlowGroupSignReviewResponse, CreateBatchSignUrlResponse, CreateFlowRemindsResponse, DescribeOrganizationGroupOrganizationsRequest, DescribeUserAutoSignStatusResponse, CreateFlowGroupByFilesRequest, DescribeFlowComponentsResponse, DescribeFlowEvidenceReportResponse, DescribeSignFaceVideoRequest, CreateEmployeeQualificationSealQrCodeResponse, CreateFlowGroupByTemplatesResponse, CreateUserVerifyUrlResponse, DescribeBatchOrganizationRegistrationUrlsRequest, CreateDocumentResponse, DescribeIntegrationEmployeesRequest, UnbindEmployeeUserIdWithClientOpenIdResponse, CreateIntegrationUserRolesResponse, CreateFlowRequest, CreateSchemeUrlRequest, DeleteIntegrationDepartmentResponse, DescribeThirdPartyAuthCodeRequest, CreateBatchOrganizationRegistrationTasksResponse, CreateReleaseFlowResponse, CreateBatchInitOrganizationUrlRequest, CreateWebThemeConfigResponse, BindEmployeeUserIdWithClientOpenIdRequest, CreateOrganizationInfoChangeUrlResponse, DescribeExtendedServiceAuthDetailRequest, CreateIntegrationDepartmentResponse, DescribeFlowTemplatesRequest, CreateIntegrationSubOrganizationActiveRecordResponse, DeleteSealPoliciesResponse, CreateLegalSealQrCodeRequest, DescribeOrganizationAuthStatusResponse, CreateUserAutoSignSealUrlResponse, CreateEmployeeQualificationSealQrCodeRequest, CreatePersonAuthCertificateImageResponse, CreateBatchCancelFlowUrlResponse, CreateSealPolicyResponse, DisableUserAutoSignRequest, DescribeIntegrationEmployeesResponse, DeleteSealPoliciesRequest, CreateConvertTaskApiResponse, CreateFlowSignReviewRequest, CreateOrganizationAuthUrlResponse, DescribeOrganizationAuthStatusRequest, CreateSchemeUrlResponse, CreateFlowByFilesRequest, CreateFlowSignUrlResponse, DescribeFileUrlsRequest, CreatePartnerAutoSignAuthUrlResponse, CreateUserAutoSignSealUrlRequest, ModifyFlowDeadlineRequest, CreateFlowApproversRequest, ModifyFlowDeadlineResponse, CreateFlowEvidenceReportResponse, CreateIntegrationRoleResponse, DescribeFlowComponentsRequest, CreateIntegrationDepartmentRequest, DescribeUserVerifyStatusRequest, CreateFlowBlockchainEvidenceUrlResponse, CreateDocumentRequest, CreatePreparedPersonalEsignResponse, DescribeOrganizationSealsResponse, CreateUserMobileChangeUrlRequest, CreateEmbedWebUrlRequest, DeleteIntegrationEmployeesRequest, GetTaskResultApiRequest, DescribeFlowBriefsResponse, ModifyIntegrationRoleRequest, CreateFlowGroupByFilesResponse, CreateReleaseFlowRequest, DeleteIntegrationRoleUsersRequest, CreateFlowSignUrlRequest, CreateIntegrationEmployeesResponse, CreateIntegrationUserRolesRequest, CreatePersonAuthCertificateImageRequest, CreateFlowByFilesResponse, UploadFilesResponse, DescribeFlowEvidenceReportRequest, DescribeBillUsageRequest, DescribeBillUsageResponse, CreateFlowSignReviewResponse, ModifyIntegrationDepartmentRequest, RenewAutoSignLicenseRequest, CreateUserAutoSignEnableUrlRequest, CreateOrganizationBatchSignUrlResponse, UnbindEmployeeUserIdWithClientOpenIdRequest, CreateBatchOrganizationRegistrationTasksRequest, CreateUserVerifyUrlRequest, CreatePartnerAutoSignAuthUrlRequest, CreateExtendedServiceAuthInfosResponse, CreateWebThemeConfigRequest, CreateOrganizationBatchSignUrlRequest, CreatePrepareFlowResponse, ModifyIntegrationDepartmentResponse, GetTaskResultApiResponse, CancelMultiFlowSignQRCodeRequest, DeleteIntegrationDepartmentRequest, CancelUserAutoSignEnableUrlResponse, ModifyApplicationCallbackInfoRequest, DescribeUserAutoSignStatusRequest, StartFlowRequest, CreateSealResponse, CreatePrepareFlowRequest, DescribeCancelFlowsTaskRequest, CreateEmbedWebUrlResponse, ModifyExtendedServiceResponse, CreateFlowGroupByTemplatesRequest, DescribeOrganizationSealsRequest, CancelFlowRequest, DescribeExtendedServiceAuthInfosRequest, DescribeIntegrationRolesResponse, CreateBatchSignUrlRequest, CreateFlowRemindsRequest, UpdateIntegrationEmployeesRequest, DescribeFlowBriefsRequest, CreateSealPolicyRequest, DescribeBillUsageDetailResponse, CreateUserMobileChangeUrlResponse, CreateUserAutoSignEnableUrlResponse, DescribeSignFaceVideoResponse, ModifyIntegrationRoleResponse, VerifyPdfResponse, CreateFlowGroupSignReviewRequest, DescribeBillUsageDetailRequest, DescribeFlowTemplatesResponse, DescribeBatchOrganizationRegistrationUrlsResponse, UploadFilesRequest, DescribePersonCertificateRequest, CreateBatchOrganizationAuthorizationUrlRequest, CreateBatchCancelFlowUrlRequest, CreateMultiFlowSignQRCodeRequest, VerifyPdfRequest, DescribeFlowInfoRequest, DeleteExtendedServiceAuthInfosRequest, DescribeExtendedServiceAuthInfosResponse, CreateBatchOrganizationAuthorizationUrlResponse, DescribeFlowInfoResponse, RenewAutoSignLicenseResponse, CancelMultiFlowSignQRCodeResponse, CreateFlowResponse, CreateIntegrationSubOrganizationActiveRecordRequest, CreateFlowBlockchainEvidenceUrlRequest, CreateBatchQuickSignUrlRequest, CreateOrganizationInfoChangeUrlRequest, DescribeOrganizationGroupOrganizationsResponse, CreateOrganizationGroupInvitationLinkResponse } from "./ess_models";
|
|
4
4
|
/**
|
|
5
5
|
* ess client
|
|
6
6
|
* @class
|
|
@@ -370,6 +370,10 @@ export declare class Client extends AbstractClient {
|
|
|
370
370
|
<li>该接口不会扣除您的合同套餐,暂不参与计费。</li></ul>
|
|
371
371
|
*/
|
|
372
372
|
CreateUserAutoSignSealUrl(req: CreateUserAutoSignSealUrlRequest, cb?: (error: string, rep: CreateUserAutoSignSealUrlResponse) => void): Promise<CreateUserAutoSignSealUrlResponse>;
|
|
373
|
+
/**
|
|
374
|
+
* 查询企业认证状态
|
|
375
|
+
*/
|
|
376
|
+
DescribeOrganizationAuthStatus(req: DescribeOrganizationAuthStatusRequest, cb?: (error: string, rep: DescribeOrganizationAuthStatusResponse) => void): Promise<DescribeOrganizationAuthStatusResponse>;
|
|
373
377
|
/**
|
|
374
378
|
* 给医疗个人自动签许可续期。续期成功后,可对医疗自动签许可追加一年有效期,只可续期一次。
|
|
375
379
|
|
|
@@ -440,6 +440,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
440
440
|
async CreateUserAutoSignSealUrl(req, cb) {
|
|
441
441
|
return this.request("CreateUserAutoSignSealUrl", req, cb);
|
|
442
442
|
}
|
|
443
|
+
/**
|
|
444
|
+
* 查询企业认证状态
|
|
445
|
+
*/
|
|
446
|
+
async DescribeOrganizationAuthStatus(req, cb) {
|
|
447
|
+
return this.request("DescribeOrganizationAuthStatus", req, cb);
|
|
448
|
+
}
|
|
443
449
|
/**
|
|
444
450
|
* 给医疗个人自动签许可续期。续期成功后,可对医疗自动签许可追加一年有效期,只可续期一次。
|
|
445
451
|
|
|
@@ -1763,6 +1763,39 @@ export interface Agent {
|
|
|
1763
1763
|
*/
|
|
1764
1764
|
ProxyOperator?: string;
|
|
1765
1765
|
}
|
|
1766
|
+
/**
|
|
1767
|
+
* DescribeUserAutoSignStatus返回参数结构体
|
|
1768
|
+
*/
|
|
1769
|
+
export interface DescribeUserAutoSignStatusResponse {
|
|
1770
|
+
/**
|
|
1771
|
+
* 查询用户是否已开通自动签
|
|
1772
|
+
*/
|
|
1773
|
+
IsOpen?: boolean;
|
|
1774
|
+
/**
|
|
1775
|
+
* 自动签许可生效时间。当且仅当已通过许可开通自动签时有值。
|
|
1776
|
+
|
|
1777
|
+
值为unix时间戳,单位为秒。
|
|
1778
|
+
*/
|
|
1779
|
+
LicenseFrom?: number;
|
|
1780
|
+
/**
|
|
1781
|
+
* 自动签许可到期时间。当且仅当已通过许可开通自动签时有值。
|
|
1782
|
+
|
|
1783
|
+
值为unix时间戳,单位为秒。
|
|
1784
|
+
*/
|
|
1785
|
+
LicenseTo?: number;
|
|
1786
|
+
/**
|
|
1787
|
+
* 设置用户开通自动签时是否绑定个人自动签账号许可。<ul><li>**0**: 使用个人自动签账号许可进行开通,个人自动签账号许可有效期1年,注: `不可解绑释放更换他人`</li><li>**1**: 不绑定自动签账号许可开通,后续使用合同份额进行合同发起</li></ul>
|
|
1788
|
+
*/
|
|
1789
|
+
LicenseType?: number;
|
|
1790
|
+
/**
|
|
1791
|
+
* 用户开通自动签指定使用的印章,为空则未设置印章,需重新进入开通链接设置印章。
|
|
1792
|
+
*/
|
|
1793
|
+
SealId?: string;
|
|
1794
|
+
/**
|
|
1795
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1796
|
+
*/
|
|
1797
|
+
RequestId?: string;
|
|
1798
|
+
}
|
|
1766
1799
|
/**
|
|
1767
1800
|
* 签署人详情信息
|
|
1768
1801
|
*/
|
|
@@ -2238,6 +2271,24 @@ export interface TemplateInfo {
|
|
|
2238
2271
|
*/
|
|
2239
2272
|
Seals?: Array<SealInfo>;
|
|
2240
2273
|
}
|
|
2274
|
+
/**
|
|
2275
|
+
* 签署二维码的基本信息,用于创建二维码,用户可扫描该二维码进行签署操作。
|
|
2276
|
+
*/
|
|
2277
|
+
export interface SignQrCode {
|
|
2278
|
+
/**
|
|
2279
|
+
* 二维码ID,为32位字符串。
|
|
2280
|
+
*/
|
|
2281
|
+
QrCodeId?: string;
|
|
2282
|
+
/**
|
|
2283
|
+
* 二维码URL,可通过转换二维码的工具或代码组件将此URL转化为二维码,以便用户扫描进行流程签署。
|
|
2284
|
+
*/
|
|
2285
|
+
QrCodeUrl?: string;
|
|
2286
|
+
/**
|
|
2287
|
+
* 二维码的有截止时间,格式为Unix标准时间戳(秒)。
|
|
2288
|
+
一旦超过二维码的有效期限,该二维码将自动失效。
|
|
2289
|
+
*/
|
|
2290
|
+
ExpiredTime?: number;
|
|
2291
|
+
}
|
|
2241
2292
|
/**
|
|
2242
2293
|
* CreateDocument返回参数结构体
|
|
2243
2294
|
*/
|
|
@@ -3111,33 +3162,27 @@ export interface CreateLegalSealQrCodeRequest {
|
|
|
3111
3162
|
Organization?: OrganizationInfo;
|
|
3112
3163
|
}
|
|
3113
3164
|
/**
|
|
3114
|
-
*
|
|
3165
|
+
* DescribeOrganizationAuthStatus返回参数结构体
|
|
3115
3166
|
*/
|
|
3116
|
-
export interface
|
|
3117
|
-
/**
|
|
3118
|
-
* 查询用户是否已开通自动签
|
|
3119
|
-
*/
|
|
3120
|
-
IsOpen?: boolean;
|
|
3167
|
+
export interface DescribeOrganizationAuthStatusResponse {
|
|
3121
3168
|
/**
|
|
3122
|
-
*
|
|
3123
|
-
|
|
3124
|
-
值为unix时间戳,单位为秒。
|
|
3169
|
+
* 企业是否已认证
|
|
3125
3170
|
*/
|
|
3126
|
-
|
|
3171
|
+
IsVerified?: boolean;
|
|
3127
3172
|
/**
|
|
3128
|
-
*
|
|
3129
|
-
|
|
3130
|
-
值为unix时间戳,单位为秒。
|
|
3173
|
+
* 企业认证状态 0-未认证 1-认证中 2-已认证
|
|
3131
3174
|
*/
|
|
3132
|
-
|
|
3175
|
+
AuthStatus?: number;
|
|
3133
3176
|
/**
|
|
3134
|
-
*
|
|
3177
|
+
* 企业认证信息
|
|
3135
3178
|
*/
|
|
3136
|
-
|
|
3179
|
+
AuthRecords?: Array<AuthRecord>;
|
|
3137
3180
|
/**
|
|
3138
|
-
*
|
|
3181
|
+
* 企业在腾讯电子签平台的唯一身份标识,为32位字符串。
|
|
3182
|
+
可登录腾讯电子签控制台,在 "更多"->"企业设置"->"企业中心"- 中查看企业电子签账号。
|
|
3183
|
+
p.s. 只有当前企业认证成功的时候返回
|
|
3139
3184
|
*/
|
|
3140
|
-
|
|
3185
|
+
OrganizationId?: string;
|
|
3141
3186
|
/**
|
|
3142
3187
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3143
3188
|
*/
|
|
@@ -3494,22 +3539,35 @@ export interface UserThreeFactor {
|
|
|
3494
3539
|
IdCardNumber: string;
|
|
3495
3540
|
}
|
|
3496
3541
|
/**
|
|
3497
|
-
*
|
|
3542
|
+
* 企业认证信息
|
|
3498
3543
|
*/
|
|
3499
|
-
export interface
|
|
3544
|
+
export interface AuthRecord {
|
|
3500
3545
|
/**
|
|
3501
|
-
*
|
|
3546
|
+
* 经办人姓名。
|
|
3502
3547
|
*/
|
|
3503
|
-
|
|
3548
|
+
OperatorName?: string;
|
|
3504
3549
|
/**
|
|
3505
|
-
*
|
|
3550
|
+
* 经办人手机号。
|
|
3506
3551
|
*/
|
|
3507
|
-
|
|
3552
|
+
OperatorMobile?: string;
|
|
3508
3553
|
/**
|
|
3509
|
-
*
|
|
3510
|
-
|
|
3554
|
+
* 认证授权方式:
|
|
3555
|
+
<ul><li> **0**:未选择授权方式(默认值)</li>
|
|
3556
|
+
<li> **1**:上传授权书</li>
|
|
3557
|
+
<li> **2**:法人授权</li>
|
|
3558
|
+
<li> **3**:法人认证</li></ul>
|
|
3511
3559
|
*/
|
|
3512
|
-
|
|
3560
|
+
AuthType?: number;
|
|
3561
|
+
/**
|
|
3562
|
+
* 企业认证授权书审核状态:
|
|
3563
|
+
<ul><li> **0**:未提交授权书(默认值)</li>
|
|
3564
|
+
<li> **1**:审核通过</li>
|
|
3565
|
+
<li> **2**:审核驳回</li>
|
|
3566
|
+
<li> **3**:审核中</li>
|
|
3567
|
+
<li> **4**:AI识别中</li>
|
|
3568
|
+
<li> **5**:客户确认AI信息</li></ul>
|
|
3569
|
+
*/
|
|
3570
|
+
AuditStatus?: number;
|
|
3513
3571
|
}
|
|
3514
3572
|
/**
|
|
3515
3573
|
* CreateSealPolicy返回参数结构体
|
|
@@ -3741,31 +3799,26 @@ export interface CreateOrganizationAuthUrlResponse {
|
|
|
3741
3799
|
RequestId?: string;
|
|
3742
3800
|
}
|
|
3743
3801
|
/**
|
|
3744
|
-
*
|
|
3802
|
+
* DescribeOrganizationAuthStatus请求参数结构体
|
|
3745
3803
|
*/
|
|
3746
|
-
export interface
|
|
3804
|
+
export interface DescribeOrganizationAuthStatusRequest {
|
|
3747
3805
|
/**
|
|
3748
|
-
* 执行本接口操作的员工信息。使用此接口时,必须填写
|
|
3749
|
-
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
|
3806
|
+
* 执行本接口操作的员工信息。使用此接口时,必须填写userId。 支持填入集团子公司经办人 userId 代发合同。 注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
|
3750
3807
|
*/
|
|
3751
3808
|
Operator: UserInfo;
|
|
3752
3809
|
/**
|
|
3753
|
-
*
|
|
3754
|
-
|
|
3755
|
-
通过<a href="https://qian.tencent.com/developers/companyApis/staffs/DescribeIntegrationEmployees" target="_blank">DescribeIntegrationEmployees</a>接口获取,也可登录腾讯电子签控制台查看
|
|
3756
|
-

|
|
3810
|
+
* 组织机构名称。 请确认该名称与企业营业执照中注册的名称一致。 如果名称中包含英文括号(),请使用中文括号()代替。
|
|
3757
3811
|
*/
|
|
3758
|
-
|
|
3812
|
+
OrganizationName?: string;
|
|
3759
3813
|
/**
|
|
3760
|
-
*
|
|
3761
|
-
|
|
3814
|
+
* 企业统一社会信用代码
|
|
3815
|
+
注意:OrganizationName和UniformSocialCreditCode不能同时为空
|
|
3762
3816
|
*/
|
|
3763
|
-
|
|
3817
|
+
UniformSocialCreditCode?: string;
|
|
3764
3818
|
/**
|
|
3765
|
-
*
|
|
3766
|
-
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
|
3819
|
+
* 法人姓名
|
|
3767
3820
|
*/
|
|
3768
|
-
|
|
3821
|
+
LegalName?: string;
|
|
3769
3822
|
}
|
|
3770
3823
|
/**
|
|
3771
3824
|
* CreateSchemeUrl返回参数结构体
|
|
@@ -6503,6 +6556,33 @@ export interface CreateOrganizationBatchSignUrlResponse {
|
|
|
6503
6556
|
*/
|
|
6504
6557
|
RequestId?: string;
|
|
6505
6558
|
}
|
|
6559
|
+
/**
|
|
6560
|
+
* UnbindEmployeeUserIdWithClientOpenId请求参数结构体
|
|
6561
|
+
*/
|
|
6562
|
+
export interface UnbindEmployeeUserIdWithClientOpenIdRequest {
|
|
6563
|
+
/**
|
|
6564
|
+
* 执行本接口操作的员工信息。使用此接口时,必须填写UserId。
|
|
6565
|
+
注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
|
|
6566
|
+
*/
|
|
6567
|
+
Operator: UserInfo;
|
|
6568
|
+
/**
|
|
6569
|
+
* 员工在腾讯电子签平台的唯一身份标识,为32位字符串。
|
|
6570
|
+
|
|
6571
|
+
通过<a href="https://qian.tencent.com/developers/companyApis/staffs/DescribeIntegrationEmployees" target="_blank">DescribeIntegrationEmployees</a>接口获取,也可登录腾讯电子签控制台查看
|
|
6572
|
+

|
|
6573
|
+
*/
|
|
6574
|
+
UserId: string;
|
|
6575
|
+
/**
|
|
6576
|
+
* 员工在贵司业务系统中的唯一身份标识,用于与腾讯电子签账号进行映射,确保在同一企业内不会出现重复。
|
|
6577
|
+
该标识最大长度为64位字符串,仅支持包含26个英文字母和数字0-9的字符。
|
|
6578
|
+
*/
|
|
6579
|
+
OpenId: string;
|
|
6580
|
+
/**
|
|
6581
|
+
* 代理企业和员工的信息。
|
|
6582
|
+
在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
|
|
6583
|
+
*/
|
|
6584
|
+
Agent?: Agent;
|
|
6585
|
+
}
|
|
6506
6586
|
/**
|
|
6507
6587
|
* 模板中文件的信息结构
|
|
6508
6588
|
*/
|
|
@@ -527,9 +527,9 @@ export interface CreateAccountRequest {
|
|
|
527
527
|
/**
|
|
528
528
|
* 账号密码,密码需要 8-32 个字符,不能以 '/' 开头,并且必须包含小写字母、大写字母、数字和符号()~!@#$%^&*-+=_|{}[]:<>,.?/。
|
|
529
529
|
*/
|
|
530
|
-
Password
|
|
530
|
+
Password?: string;
|
|
531
531
|
/**
|
|
532
|
-
* 是否创建为只读账号,0
|
|
532
|
+
* 是否创建为只读账号,0:否; 1:只读账号,该账号的sql请求优先选择备机执行,备机延迟时选择主机执行;2:只读账号,优先选择备机执行,备机延迟时操作报错;3:只读账号,优先选择备机执行,忽略备机延迟只读备机;
|
|
533
533
|
*/
|
|
534
534
|
ReadOnly?: number;
|
|
535
535
|
/**
|
|
@@ -548,6 +548,10 @@ export interface CreateAccountRequest {
|
|
|
548
548
|
* 用户最大连接数限制参数。不传或者传0表示为不限制,对应max_user_connections参数,目前10.1内核版本不支持设置。
|
|
549
549
|
*/
|
|
550
550
|
MaxUserConnections?: number;
|
|
551
|
+
/**
|
|
552
|
+
* 使用GetPublicKey返回的RSA2048公钥加密后的密码
|
|
553
|
+
*/
|
|
554
|
+
EncryptedPassword?: string;
|
|
551
555
|
}
|
|
552
556
|
/**
|
|
553
557
|
* InitDBInstances返回参数结构体
|
|
@@ -1003,7 +1007,11 @@ export interface ResetAccountPasswordRequest {
|
|
|
1003
1007
|
/**
|
|
1004
1008
|
* 新密码,由字母、数字或常见符号组成,不能包含分号、单引号和双引号,长度为6~32位。
|
|
1005
1009
|
*/
|
|
1006
|
-
Password
|
|
1010
|
+
Password?: string;
|
|
1011
|
+
/**
|
|
1012
|
+
* 使用GetPublicKey返回的RSA2048公钥加密后的密码
|
|
1013
|
+
*/
|
|
1014
|
+
EncryptedPassword?: string;
|
|
1007
1015
|
}
|
|
1008
1016
|
/**
|
|
1009
1017
|
* CopyAccountPrivileges返回参数结构体
|
|
@@ -32,7 +32,7 @@ export declare class Client extends AbstractClient {
|
|
|
32
32
|
*/
|
|
33
33
|
ModifyNameList(req: ModifyNameListRequest, cb?: (error: string, rep: ModifyNameListResponse) => void): Promise<ModifyNameListResponse>;
|
|
34
34
|
/**
|
|
35
|
-
*
|
|
35
|
+
* 创建黑白名单,黑白名单数量上限为100
|
|
36
36
|
*/
|
|
37
37
|
CreateNameList(req: CreateNameListRequest, cb?: (error: string, rep: CreateNameListResponse) => void): Promise<CreateNameListResponse>;
|
|
38
38
|
/**
|
|
@@ -40,7 +40,7 @@ export declare class Client extends AbstractClient {
|
|
|
40
40
|
*/
|
|
41
41
|
DeleteNameList(req: DeleteNameListRequest, cb?: (error: string, rep: DeleteNameListResponse) => void): Promise<DeleteNameListResponse>;
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
43
|
+
* 新增黑白名单数据,所有黑白名单数据总量上限为10000
|
|
44
44
|
*/
|
|
45
45
|
ImportNameListData(req: ImportNameListDataRequest, cb?: (error: string, rep: ImportNameListDataResponse) => void): Promise<ImportNameListDataResponse>;
|
|
46
46
|
/**
|
|
@@ -64,7 +64,7 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
64
64
|
return this.request("ModifyNameList", req, cb);
|
|
65
65
|
}
|
|
66
66
|
/**
|
|
67
|
-
*
|
|
67
|
+
* 创建黑白名单,黑白名单数量上限为100
|
|
68
68
|
*/
|
|
69
69
|
async CreateNameList(req, cb) {
|
|
70
70
|
return this.request("CreateNameList", req, cb);
|
|
@@ -76,7 +76,7 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
76
76
|
return this.request("DeleteNameList", req, cb);
|
|
77
77
|
}
|
|
78
78
|
/**
|
|
79
|
-
*
|
|
79
|
+
* 新增黑白名单数据,所有黑白名单数据总量上限为10000
|
|
80
80
|
*/
|
|
81
81
|
async ImportNameListData(req, cb) {
|
|
82
82
|
return this.request("ImportNameListData", req, cb);
|
|
@@ -230,7 +230,7 @@ export interface AddSmsTemplateRequest {
|
|
|
230
230
|
TemplateContent: string;
|
|
231
231
|
/**
|
|
232
232
|
* 短信类型,1表示营销短信,2表示通知短信,3表示验证码短信。
|
|
233
|
-
|
|
233
|
+
注:为进一步提升短信发送质量、提高短信模板审核通过率,从2024年5月16日起,腾讯云短信模板类型优化为“验证码短信”、“通知短信”、“营销短信”,可参考[关于腾讯云短信模板类型优化公告](https://cloud.tencent.com/document/product/382/106171)。新开通短信服务的客户需严格参考新的短信类型申请短信模板。
|
|
234
234
|
*/
|
|
235
235
|
SmsType: number;
|
|
236
236
|
/**
|
|
@@ -262,7 +262,7 @@ export interface ModifySmsTemplateRequest {
|
|
|
262
262
|
TemplateContent: string;
|
|
263
263
|
/**
|
|
264
264
|
* 短信类型,1表示营销短信,2表示通知短信,3表示验证码短信。
|
|
265
|
-
|
|
265
|
+
注:为进一步提升短信发送质量、提高短信模板审核通过率,从2024年5月16日起,腾讯云短信模板类型优化为“验证码短信”、“通知短信”、“营销短信”,可参考[关于腾讯云短信模板类型优化公告](https://cloud.tencent.com/document/product/382/106171)。新开通短信服务的客户需严格参考新的短信类型申请短信模板。
|
|
266
266
|
*/
|
|
267
267
|
SmsType: number;
|
|
268
268
|
/**
|
|
@@ -293,7 +293,7 @@ export interface AddSmsTemplateRequest {
|
|
|
293
293
|
TemplateContent: string;
|
|
294
294
|
/**
|
|
295
295
|
* 短信类型,1表示营销短信,2表示通知短信,3表示验证码短信。
|
|
296
|
-
|
|
296
|
+
注:为进一步提升短信发送质量、提高短信模板审核通过率,从2024年5月16日起,腾讯云短信模板类型优化为“验证码短信”、“通知短信”、“营销短信”,可参考[关于腾讯云短信模板类型优化公告](https://cloud.tencent.com/document/product/382/106171)。新开通短信服务的客户需严格参考新的短信类型申请短信模板。
|
|
297
297
|
*/
|
|
298
298
|
SmsType: number;
|
|
299
299
|
/**
|
|
@@ -325,7 +325,7 @@ export interface ModifySmsTemplateRequest {
|
|
|
325
325
|
TemplateContent: string;
|
|
326
326
|
/**
|
|
327
327
|
* 短信类型,1表示营销短信,2表示通知短信,3表示验证码短信。
|
|
328
|
-
|
|
328
|
+
注:为进一步提升短信发送质量、提高短信模板审核通过率,从2024年5月16日起,腾讯云短信模板类型优化为“验证码短信”、“通知短信”、“营销短信”,可参考[关于腾讯云短信模板类型优化公告](https://cloud.tencent.com/document/product/382/106171)。新开通短信服务的客户需严格参考新的短信类型申请短信模板。
|
|
329
329
|
*/
|
|
330
330
|
SmsType: number;
|
|
331
331
|
/**
|
|
@@ -287,6 +287,11 @@ export interface STTConfig {
|
|
|
287
287
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
288
288
|
*/
|
|
289
289
|
AlternativeLanguage?: Array<string>;
|
|
290
|
+
/**
|
|
291
|
+
* 语音识别vad的时间,范围为240-2000,默认为1000,单位为ms。更小的值会让语音识别分句更快。
|
|
292
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
293
|
+
*/
|
|
294
|
+
VadSilenceTime?: number;
|
|
290
295
|
}
|
|
291
296
|
/**
|
|
292
297
|
* DescribeTRTCMarketScaleData请求参数结构体
|
|
@@ -1380,10 +1380,6 @@ export interface CreateCloudNativeAPIGatewayServiceRequest {
|
|
|
1380
1380
|
- udp
|
|
1381
1381
|
*/
|
|
1382
1382
|
Protocol: string;
|
|
1383
|
-
/**
|
|
1384
|
-
* 请求路径
|
|
1385
|
-
*/
|
|
1386
|
-
Path: string;
|
|
1387
1383
|
/**
|
|
1388
1384
|
* 超时时间,单位ms
|
|
1389
1385
|
*/
|
|
@@ -1405,6 +1401,10 @@ export interface CreateCloudNativeAPIGatewayServiceRequest {
|
|
|
1405
1401
|
* 服务配置信息
|
|
1406
1402
|
*/
|
|
1407
1403
|
UpstreamInfo: KongUpstreamInfo;
|
|
1404
|
+
/**
|
|
1405
|
+
* 请求路径
|
|
1406
|
+
*/
|
|
1407
|
+
Path?: string;
|
|
1408
1408
|
}
|
|
1409
1409
|
/**
|
|
1410
1410
|
* 含百分比流量配置的服务
|
|
@@ -5494,10 +5494,6 @@ export interface ModifyCloudNativeAPIGatewayServiceRequest {
|
|
|
5494
5494
|
- udp
|
|
5495
5495
|
*/
|
|
5496
5496
|
Protocol: string;
|
|
5497
|
-
/**
|
|
5498
|
-
* 请求路径
|
|
5499
|
-
*/
|
|
5500
|
-
Path: string;
|
|
5501
5497
|
/**
|
|
5502
5498
|
* 超时时间,单位ms
|
|
5503
5499
|
*/
|
|
@@ -5523,6 +5519,10 @@ export interface ModifyCloudNativeAPIGatewayServiceRequest {
|
|
|
5523
5519
|
* 服务ID
|
|
5524
5520
|
*/
|
|
5525
5521
|
ID: string;
|
|
5522
|
+
/**
|
|
5523
|
+
* 请求路径
|
|
5524
|
+
*/
|
|
5525
|
+
Path?: string;
|
|
5526
5526
|
}
|
|
5527
5527
|
/**
|
|
5528
5528
|
* DeleteCloudNativeAPIGateway返回参数结构体
|
|
@@ -1440,9 +1440,9 @@ LimitTypes取值范围:
|
|
|
1440
1440
|
/**
|
|
1441
1441
|
* 本接口 (AssociateAddress) 用于将[弹性公网IP](https://cloud.tencent.com/document/product/213/1941)(简称 EIP)绑定到实例或弹性网卡的指定内网 IP 上。
|
|
1442
1442
|
* 将 EIP 绑定到实例(CVM)上,其本质是将 EIP 绑定到实例上主网卡的主内网 IP 上。
|
|
1443
|
-
* 将 EIP 绑定到主网卡的主内网IP
|
|
1443
|
+
* 将 EIP 绑定到主网卡的主内网IP时,如主内网IP已绑定普通公网IP,必须先退还才能绑定EIP。
|
|
1444
1444
|
* 将 EIP 绑定到指定网卡的内网 IP上(非主网卡的主内网IP),则必须先解绑该 EIP,才能再绑定新的。
|
|
1445
|
-
* 将 EIP 绑定到内网型CLB
|
|
1445
|
+
* 将 EIP 绑定到内网型CLB实例的功能处于内测阶段,如需使用,请提交[内测申请](https://cloud.tencent.com/apply/p/4kxj7picqci)。
|
|
1446
1446
|
* 将 EIP 绑定到NAT网关,请使用接口[AssociateNatGatewayAddress](https://cloud.tencent.com/document/product/215/36722)
|
|
1447
1447
|
* EIP 如果欠费或被封堵,则不能被绑定。
|
|
1448
1448
|
* 只有状态为 UNBIND 的 EIP 才能够被绑定。
|
|
@@ -2044,9 +2044,9 @@ LimitTypes取值范围:
|
|
|
2044
2044
|
/**
|
|
2045
2045
|
* 本接口 (AssociateAddress) 用于将[弹性公网IP](https://cloud.tencent.com/document/product/213/1941)(简称 EIP)绑定到实例或弹性网卡的指定内网 IP 上。
|
|
2046
2046
|
* 将 EIP 绑定到实例(CVM)上,其本质是将 EIP 绑定到实例上主网卡的主内网 IP 上。
|
|
2047
|
-
* 将 EIP 绑定到主网卡的主内网IP
|
|
2047
|
+
* 将 EIP 绑定到主网卡的主内网IP时,如主内网IP已绑定普通公网IP,必须先退还才能绑定EIP。
|
|
2048
2048
|
* 将 EIP 绑定到指定网卡的内网 IP上(非主网卡的主内网IP),则必须先解绑该 EIP,才能再绑定新的。
|
|
2049
|
-
* 将 EIP 绑定到内网型CLB
|
|
2049
|
+
* 将 EIP 绑定到内网型CLB实例的功能处于内测阶段,如需使用,请提交[内测申请](https://cloud.tencent.com/apply/p/4kxj7picqci)。
|
|
2050
2050
|
* 将 EIP 绑定到NAT网关,请使用接口[AssociateNatGatewayAddress](https://cloud.tencent.com/document/product/215/36722)
|
|
2051
2051
|
* EIP 如果欠费或被封堵,则不能被绑定。
|
|
2052
2052
|
* 只有状态为 UNBIND 的 EIP 才能够被绑定。
|
|
@@ -608,6 +608,16 @@ it("cvm.v20170312.ModifyImageAttribute", async function () {
|
|
|
608
608
|
}
|
|
609
609
|
})
|
|
610
610
|
|
|
611
|
+
it("cvm.v20170312.ConvertOperatingSystems", async function () {
|
|
612
|
+
try {
|
|
613
|
+
const data = await client.ConvertOperatingSystems({})
|
|
614
|
+
expect(data).to.be.ok
|
|
615
|
+
} catch(error) {
|
|
616
|
+
expect(error.requestId).to.be.ok
|
|
617
|
+
expect(error.code).to.be.ok
|
|
618
|
+
}
|
|
619
|
+
})
|
|
620
|
+
|
|
611
621
|
it("cvm.v20170312.DeleteDisasterRecoverGroups", async function () {
|
|
612
622
|
try {
|
|
613
623
|
const data = await client.DeleteDisasterRecoverGroups({})
|
|
@@ -878,6 +878,16 @@ it("dlc.v20210125.CreateCHDFSBindingProduct", async function () {
|
|
|
878
878
|
}
|
|
879
879
|
})
|
|
880
880
|
|
|
881
|
+
it("dlc.v20210125.QueryInternalTableWarehouse", async function () {
|
|
882
|
+
try {
|
|
883
|
+
const data = await client.QueryInternalTableWarehouse({})
|
|
884
|
+
expect(data).to.be.ok
|
|
885
|
+
} catch(error) {
|
|
886
|
+
expect(error.requestId).to.be.ok
|
|
887
|
+
expect(error.code).to.be.ok
|
|
888
|
+
}
|
|
889
|
+
})
|
|
890
|
+
|
|
881
891
|
it("dlc.v20210125.DescribeDatasourceConnection", async function () {
|
|
882
892
|
try {
|
|
883
893
|
const data = await client.DescribeDatasourceConnection({})
|
|
@@ -998,6 +1008,16 @@ it("dlc.v20210125.DeleteUser", async function () {
|
|
|
998
1008
|
}
|
|
999
1009
|
})
|
|
1000
1010
|
|
|
1011
|
+
it("dlc.v20210125.DeleteTable", async function () {
|
|
1012
|
+
try {
|
|
1013
|
+
const data = await client.DeleteTable({})
|
|
1014
|
+
expect(data).to.be.ok
|
|
1015
|
+
} catch(error) {
|
|
1016
|
+
expect(error.requestId).to.be.ok
|
|
1017
|
+
expect(error.code).to.be.ok
|
|
1018
|
+
}
|
|
1019
|
+
})
|
|
1020
|
+
|
|
1001
1021
|
it("dlc.v20210125.DescribeEngineUsageInfo", async function () {
|
|
1002
1022
|
try {
|
|
1003
1023
|
const data = await client.DescribeEngineUsageInfo({})
|