tencentcloud-sdk-nodejs 4.1.34 → 4.1.36
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/es/common/sdk_version.js +1 -1
- package/es/services/billing/v20180709/billing_client.js +46 -4
- package/es/services/cdb/v20170320/cdb_client.js +0 -3
- package/es/services/ess/v20201111/ess_client.js +3 -0
- package/es/services/essbasic/v20210526/essbasic_client.js +3 -0
- package/es/services/gaap/v20180529/gaap_client.js +5 -14
- package/es/services/wedata/v20210820/wedata_client.js +21 -0
- package/package.json +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/apm/v20210622/apm_models.d.ts +16 -0
- package/tencentcloud/services/as/v20180419/as_models.d.ts +20 -9
- package/tencentcloud/services/asr/v20190614/asr_models.d.ts +4 -0
- package/tencentcloud/services/bh/v20230418/bh_client.d.ts +1 -1
- package/tencentcloud/services/bh/v20230418/bh_models.d.ts +171 -89
- package/tencentcloud/services/billing/v20180709/billing_client.d.ts +61 -5
- package/tencentcloud/services/billing/v20180709/billing_client.js +90 -6
- package/tencentcloud/services/billing/v20180709/billing_models.d.ts +860 -224
- package/tencentcloud/services/cdb/v20170320/cdb_client.d.ts +1 -7
- package/tencentcloud/services/cdb/v20170320/cdb_client.js +0 -8
- package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +84 -115
- package/tencentcloud/services/cfw/v20190904/cfw_models.d.ts +5 -1
- package/tencentcloud/services/dsgc/v20190723/dsgc_models.d.ts +14 -10
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +9 -1
- package/tencentcloud/services/ess/v20201111/ess_client.js +10 -0
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +59 -11
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +9 -1
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +10 -0
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +209 -149
- package/tencentcloud/services/gaap/v20180529/gaap_client.d.ts +7 -25
- package/tencentcloud/services/gaap/v20180529/gaap_client.js +9 -33
- package/tencentcloud/services/gaap/v20180529/gaap_models.d.ts +58 -243
- package/tencentcloud/services/hunyuan/v20230901/hunyuan_models.d.ts +86 -16
- package/tencentcloud/services/iai/v20180301/iai_models.d.ts +26 -21
- package/tencentcloud/services/keewidb/v20220308/keewidb_models.d.ts +1 -0
- package/tencentcloud/services/lighthouse/v20200324/lighthouse_client.d.ts +1 -1
- package/tencentcloud/services/lighthouse/v20200324/lighthouse_client.js +1 -1
- package/tencentcloud/services/lighthouse/v20200324/lighthouse_models.d.ts +3 -3
- package/tencentcloud/services/lke/v20231130/lke_models.d.ts +54 -1
- package/tencentcloud/services/postgres/v20170312/postgres_models.d.ts +0 -3
- package/tencentcloud/services/redis/v20180412/redis_models.d.ts +12 -0
- package/tencentcloud/services/tag/v20180813/tag_models.d.ts +4 -4
- package/tencentcloud/services/tcb/v20180608/tcb_models.d.ts +8 -0
- package/tencentcloud/services/tcbr/v20220217/tcbr_models.d.ts +45 -0
- package/tencentcloud/services/tdmq/v20200217/tdmq_models.d.ts +3 -3
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +0 -10
- package/tencentcloud/services/thpc/v20230321/thpc_models.d.ts +4 -5
- package/tencentcloud/services/tione/v20211111/tione_client.d.ts +1 -1
- package/tencentcloud/services/tione/v20211111/tione_models.d.ts +105 -37
- package/tencentcloud/services/tke/v20180525/tke_models.d.ts +5 -0
- package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +4 -0
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +1 -1
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +12 -12
- package/tencentcloud/services/waf/v20180125/waf_models.d.ts +66 -11
- package/tencentcloud/services/wedata/v20210820/wedata_client.d.ts +29 -1
- package/tencentcloud/services/wedata/v20210820/wedata_client.js +42 -0
- package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +2469 -1795
|
@@ -382,13 +382,29 @@ export interface DescribeLoginEventRequest {
|
|
|
382
382
|
Limit?: number;
|
|
383
383
|
}
|
|
384
384
|
/**
|
|
385
|
-
*
|
|
385
|
+
* 主机账号
|
|
386
386
|
*/
|
|
387
|
-
export interface
|
|
387
|
+
export interface DeviceAccount {
|
|
388
388
|
/**
|
|
389
|
-
*
|
|
389
|
+
* 账号ID
|
|
390
390
|
*/
|
|
391
|
-
|
|
391
|
+
Id?: number;
|
|
392
|
+
/**
|
|
393
|
+
* 主机ID
|
|
394
|
+
*/
|
|
395
|
+
DeviceId?: number;
|
|
396
|
+
/**
|
|
397
|
+
* 账号名
|
|
398
|
+
*/
|
|
399
|
+
Account?: string;
|
|
400
|
+
/**
|
|
401
|
+
* true-已托管密码,false-未托管密码
|
|
402
|
+
*/
|
|
403
|
+
BoundPassword?: boolean;
|
|
404
|
+
/**
|
|
405
|
+
* true-已托管私钥,false-未托管私钥
|
|
406
|
+
*/
|
|
407
|
+
BoundPrivateKey?: boolean;
|
|
392
408
|
}
|
|
393
409
|
/**
|
|
394
410
|
* BindDeviceAccountPassword返回参数结构体
|
|
@@ -1341,93 +1357,13 @@ export interface DescribeAccessWhiteListRulesRequest {
|
|
|
1341
1357
|
Limit?: number;
|
|
1342
1358
|
}
|
|
1343
1359
|
/**
|
|
1344
|
-
*
|
|
1360
|
+
* ModifyUserGroup返回参数结构体
|
|
1345
1361
|
*/
|
|
1346
|
-
export interface
|
|
1347
|
-
/**
|
|
1348
|
-
* 用户名
|
|
1349
|
-
*/
|
|
1350
|
-
UserName?: string;
|
|
1351
|
-
/**
|
|
1352
|
-
* 姓名
|
|
1353
|
-
*/
|
|
1354
|
-
RealName?: string;
|
|
1355
|
-
/**
|
|
1356
|
-
* 主机账号
|
|
1357
|
-
*/
|
|
1358
|
-
Account?: string;
|
|
1359
|
-
/**
|
|
1360
|
-
* 开始时间
|
|
1361
|
-
*/
|
|
1362
|
-
StartTime?: string;
|
|
1363
|
-
/**
|
|
1364
|
-
* 结束时间
|
|
1365
|
-
*/
|
|
1366
|
-
EndTime?: string;
|
|
1367
|
-
/**
|
|
1368
|
-
* 会话大小
|
|
1369
|
-
*/
|
|
1370
|
-
Size?: number;
|
|
1371
|
-
/**
|
|
1372
|
-
* 设备ID
|
|
1373
|
-
*/
|
|
1374
|
-
InstanceId?: string;
|
|
1375
|
-
/**
|
|
1376
|
-
* 设备名
|
|
1377
|
-
*/
|
|
1378
|
-
DeviceName?: string;
|
|
1379
|
-
/**
|
|
1380
|
-
* 内部Ip
|
|
1381
|
-
*/
|
|
1382
|
-
PrivateIp?: string;
|
|
1383
|
-
/**
|
|
1384
|
-
* 外部Ip
|
|
1385
|
-
*/
|
|
1386
|
-
PublicIp?: string;
|
|
1387
|
-
/**
|
|
1388
|
-
* 来源Ip
|
|
1389
|
-
*/
|
|
1390
|
-
FromIp?: string;
|
|
1391
|
-
/**
|
|
1392
|
-
* 会话持续时长
|
|
1393
|
-
*/
|
|
1394
|
-
Duration?: number;
|
|
1395
|
-
/**
|
|
1396
|
-
* 该会话内命令数量 ,搜索图形会话时该字段无意义
|
|
1397
|
-
*/
|
|
1398
|
-
Count?: number;
|
|
1399
|
-
/**
|
|
1400
|
-
* 该会话内高危命令数,搜索图形时该字段无意义
|
|
1401
|
-
*/
|
|
1402
|
-
DangerCount?: number;
|
|
1403
|
-
/**
|
|
1404
|
-
* 会话状态,如1会话活跃 2会话结束 3强制离线 4其他错误
|
|
1405
|
-
*/
|
|
1406
|
-
Status?: number;
|
|
1407
|
-
/**
|
|
1408
|
-
* 会话Id
|
|
1409
|
-
*/
|
|
1410
|
-
Id?: string;
|
|
1411
|
-
/**
|
|
1412
|
-
* 设备所属的地域
|
|
1413
|
-
*/
|
|
1414
|
-
ApCode?: string;
|
|
1415
|
-
/**
|
|
1416
|
-
* 会话协议
|
|
1417
|
-
*/
|
|
1418
|
-
Protocol?: string;
|
|
1419
|
-
/**
|
|
1420
|
-
* 应用资产类型:1-web
|
|
1421
|
-
*/
|
|
1422
|
-
AppAssetKind?: number;
|
|
1423
|
-
/**
|
|
1424
|
-
* 应用资产url
|
|
1425
|
-
*/
|
|
1426
|
-
AppAssetUrl?: string;
|
|
1362
|
+
export interface ModifyUserGroupResponse {
|
|
1427
1363
|
/**
|
|
1428
|
-
*
|
|
1364
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1429
1365
|
*/
|
|
1430
|
-
|
|
1366
|
+
RequestId?: string;
|
|
1431
1367
|
}
|
|
1432
1368
|
/**
|
|
1433
1369
|
* CreateUser返回参数结构体
|
|
@@ -2149,7 +2085,8 @@ export interface ModifyResourceRequest {
|
|
|
2149
2085
|
*/
|
|
2150
2086
|
ResourceId: string;
|
|
2151
2087
|
/**
|
|
2152
|
-
*
|
|
2088
|
+
* 状态
|
|
2089
|
+
* @deprecated
|
|
2153
2090
|
*/
|
|
2154
2091
|
Status?: string;
|
|
2155
2092
|
/**
|
|
@@ -2332,6 +2269,26 @@ export interface DeployResourceRequest {
|
|
|
2332
2269
|
* 需要开通实例所属的CDC集群ID
|
|
2333
2270
|
*/
|
|
2334
2271
|
CdcClusterId?: string;
|
|
2272
|
+
/**
|
|
2273
|
+
* 开通堡垒机指定共享的clbId
|
|
2274
|
+
*/
|
|
2275
|
+
ShareClbId?: string;
|
|
2276
|
+
/**
|
|
2277
|
+
* 0-关闭web访问堡垒机,1-开启web访问堡垒机
|
|
2278
|
+
*/
|
|
2279
|
+
WebAccess?: number;
|
|
2280
|
+
/**
|
|
2281
|
+
* 0-关闭客户端访问堡垒机,1-开启客户端访问堡垒机
|
|
2282
|
+
*/
|
|
2283
|
+
ClientAccess?: number;
|
|
2284
|
+
/**
|
|
2285
|
+
* 0-关闭内网访问堡垒机,1-开启内网访问堡垒机
|
|
2286
|
+
*/
|
|
2287
|
+
IntranetAccess?: number;
|
|
2288
|
+
/**
|
|
2289
|
+
* 0-关闭公网访问堡垒机,1-开启公网访问堡垒机
|
|
2290
|
+
*/
|
|
2291
|
+
ExternalAccess?: number;
|
|
2335
2292
|
}
|
|
2336
2293
|
/**
|
|
2337
2294
|
* SearchSession返回参数结构体
|
|
@@ -3640,6 +3597,10 @@ export interface DescribeDeviceAccountsResponse {
|
|
|
3640
3597
|
* 记录总数
|
|
3641
3598
|
*/
|
|
3642
3599
|
TotalCount?: number;
|
|
3600
|
+
/**
|
|
3601
|
+
* 账号信息列表
|
|
3602
|
+
*/
|
|
3603
|
+
DeviceAccountSet?: Array<DeviceAccount>;
|
|
3643
3604
|
/**
|
|
3644
3605
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3645
3606
|
*/
|
|
@@ -3744,6 +3705,95 @@ export interface SearchAuditLogResponse {
|
|
|
3744
3705
|
*/
|
|
3745
3706
|
RequestId?: string;
|
|
3746
3707
|
}
|
|
3708
|
+
/**
|
|
3709
|
+
* 搜索字符或图形会话时返回的SessionResul结构体
|
|
3710
|
+
*/
|
|
3711
|
+
export interface SessionResult {
|
|
3712
|
+
/**
|
|
3713
|
+
* 用户名
|
|
3714
|
+
*/
|
|
3715
|
+
UserName?: string;
|
|
3716
|
+
/**
|
|
3717
|
+
* 姓名
|
|
3718
|
+
*/
|
|
3719
|
+
RealName?: string;
|
|
3720
|
+
/**
|
|
3721
|
+
* 主机账号
|
|
3722
|
+
*/
|
|
3723
|
+
Account?: string;
|
|
3724
|
+
/**
|
|
3725
|
+
* 开始时间
|
|
3726
|
+
*/
|
|
3727
|
+
StartTime?: string;
|
|
3728
|
+
/**
|
|
3729
|
+
* 结束时间
|
|
3730
|
+
*/
|
|
3731
|
+
EndTime?: string;
|
|
3732
|
+
/**
|
|
3733
|
+
* 会话大小
|
|
3734
|
+
*/
|
|
3735
|
+
Size?: number;
|
|
3736
|
+
/**
|
|
3737
|
+
* 设备ID
|
|
3738
|
+
*/
|
|
3739
|
+
InstanceId?: string;
|
|
3740
|
+
/**
|
|
3741
|
+
* 设备名
|
|
3742
|
+
*/
|
|
3743
|
+
DeviceName?: string;
|
|
3744
|
+
/**
|
|
3745
|
+
* 内部Ip
|
|
3746
|
+
*/
|
|
3747
|
+
PrivateIp?: string;
|
|
3748
|
+
/**
|
|
3749
|
+
* 外部Ip
|
|
3750
|
+
*/
|
|
3751
|
+
PublicIp?: string;
|
|
3752
|
+
/**
|
|
3753
|
+
* 来源Ip
|
|
3754
|
+
*/
|
|
3755
|
+
FromIp?: string;
|
|
3756
|
+
/**
|
|
3757
|
+
* 会话持续时长
|
|
3758
|
+
*/
|
|
3759
|
+
Duration?: number;
|
|
3760
|
+
/**
|
|
3761
|
+
* 该会话内命令数量 ,搜索图形会话时该字段无意义
|
|
3762
|
+
*/
|
|
3763
|
+
Count?: number;
|
|
3764
|
+
/**
|
|
3765
|
+
* 该会话内高危命令数,搜索图形时该字段无意义
|
|
3766
|
+
*/
|
|
3767
|
+
DangerCount?: number;
|
|
3768
|
+
/**
|
|
3769
|
+
* 会话状态,如1会话活跃 2会话结束 3强制离线 4其他错误
|
|
3770
|
+
*/
|
|
3771
|
+
Status?: number;
|
|
3772
|
+
/**
|
|
3773
|
+
* 会话Id
|
|
3774
|
+
*/
|
|
3775
|
+
Id?: string;
|
|
3776
|
+
/**
|
|
3777
|
+
* 设备所属的地域
|
|
3778
|
+
*/
|
|
3779
|
+
ApCode?: string;
|
|
3780
|
+
/**
|
|
3781
|
+
* 会话协议
|
|
3782
|
+
*/
|
|
3783
|
+
Protocol?: string;
|
|
3784
|
+
/**
|
|
3785
|
+
* 应用资产类型:1-web
|
|
3786
|
+
*/
|
|
3787
|
+
AppAssetKind?: number;
|
|
3788
|
+
/**
|
|
3789
|
+
* 应用资产url
|
|
3790
|
+
*/
|
|
3791
|
+
AppAssetUrl?: string;
|
|
3792
|
+
/**
|
|
3793
|
+
* 回放类型 默认0, 1-rfb 2-mp4 3-ssh
|
|
3794
|
+
*/
|
|
3795
|
+
ReplayType?: number;
|
|
3796
|
+
}
|
|
3747
3797
|
/**
|
|
3748
3798
|
* 堡垒机服务信息
|
|
3749
3799
|
*/
|
|
@@ -3908,6 +3958,38 @@ export interface Resource {
|
|
|
3908
3958
|
* 开通内网访问vpc的网段
|
|
3909
3959
|
*/
|
|
3910
3960
|
IntranetVpcCidr?: string;
|
|
3961
|
+
/**
|
|
3962
|
+
* 是否共享clb,true-共享clb,false-独享clb
|
|
3963
|
+
*/
|
|
3964
|
+
ShareClb?: boolean;
|
|
3965
|
+
/**
|
|
3966
|
+
* 共享clb id
|
|
3967
|
+
*/
|
|
3968
|
+
OpenClbId?: string;
|
|
3969
|
+
/**
|
|
3970
|
+
* 运营商信息
|
|
3971
|
+
*/
|
|
3972
|
+
LbVipIsp?: string;
|
|
3973
|
+
/**
|
|
3974
|
+
* linux资产命令行运维端口
|
|
3975
|
+
*/
|
|
3976
|
+
TUICmdPort?: number;
|
|
3977
|
+
/**
|
|
3978
|
+
* linux资产直连端口
|
|
3979
|
+
*/
|
|
3980
|
+
TUIDirectPort?: number;
|
|
3981
|
+
/**
|
|
3982
|
+
* 1 默认值,web访问开启,0 web访问关闭,2 web访问开通中,3 web访问关闭中
|
|
3983
|
+
*/
|
|
3984
|
+
WebAccess?: number;
|
|
3985
|
+
/**
|
|
3986
|
+
* 1 默认值,客户单访问开启,0 客户端访问关闭,2 客户端访问开通中,3 客户端访问关闭中
|
|
3987
|
+
*/
|
|
3988
|
+
ClientAccess?: number;
|
|
3989
|
+
/**
|
|
3990
|
+
* 1 默认值,外网访问开启,0 外网访问关闭,2 外网访问开通中,3 外网访问关闭中
|
|
3991
|
+
*/
|
|
3992
|
+
ExternalAccess?: number;
|
|
3911
3993
|
}
|
|
3912
3994
|
/**
|
|
3913
3995
|
* RunChangePwdTask返回参数结构体
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AbstractClient } from "../../../common/abstract_client";
|
|
2
2
|
import { ClientConfig } from "../../../common/interface";
|
|
3
|
-
import { DescribeBillAdjustInfoResponse, DescribeCostSummaryByProductRequest, DescribeCostExplorerSummaryResponse, DescribeCostExplorerSummaryRequest, DescribeCostSummaryByProductResponse,
|
|
3
|
+
import { CreateAllocationUnitRequest, DescribeBillAdjustInfoResponse, DescribeCostSummaryByProductRequest, DescribeCostExplorerSummaryResponse, ModifyAllocationRuleRequest, DeleteAllocationRuleRequest, CreateAllocationRuleResponse, DescribeCostExplorerSummaryRequest, DescribeCostSummaryByProductResponse, DescribeAllocationTreeResponse, DescribeBillDetailForOrganizationResponse, DescribeCostSummaryByResourceResponse, DescribeBillSummaryByRegionRequest, DescribeBillListResponse, DescribeAllocateConditionsRequest, CreateAllocationRuleRequest, DescribeAllocationUnitDetailResponse, DescribeBillSummaryRequest, DescribeBillResourceSummaryResponse, DescribeGatherRuleDetailRequest, DescribeAllocationOverviewResponse, DescribeDosageCosDetailByDateRequest, DeleteAllocationTagRequest, DescribeBillSummaryByProductRequest, DescribeDosageDetailListResponse, DescribeAllocationBillDetailRequest, DescribeBillListRequest, DescribeAllocationTrendByMonthRequest, DescribeVoucherUsageDetailsResponse, DescribeAllocationOverviewRequest, DescribeGatherResourceResponse, DescribeCostDetailResponse, DescribeAllocationMonthOverviewResponse, DescribeAllocationSummaryByItemResponse, DescribeDosageDetailByDateResponse, DescribeDosageDetailByDateRequest, DescribeGatherResourceRequest, DescribeCostSummaryByProjectResponse, DescribeBillSummaryByTagResponse, ModifyGatherRuleRequest, DescribeBillSummaryByPayModeResponse, DescribeAllocationSummaryByBusinessResponse, DescribeAllocationSummaryByItemRequest, DescribeBillSummaryByTagRequest, DescribeAllocationRuleSummaryResponse, DescribeBillSummaryByProjectRequest, CreateGatherRuleRequest, DescribeBillResourceSummaryForOrganizationRequest, DescribeCostSummaryByRegionRequest, DescribeBillDownloadUrlRequest, DescribeAllocationSummaryByBusinessRequest, DescribeBillSummaryByPayModeRequest, DeleteGatherRuleResponse, DescribeAllocationBillConditionsRequest, DescribeAllocationRuleDetailRequest, PayDealsResponse, DescribeCostSummaryByProjectRequest, DescribeBillDetailResponse, DescribeDealsByCondResponse, DescribeBillSummaryByProjectResponse, DescribeBillAdjustInfoRequest, DeleteAllocationRuleResponse, PayDealsRequest, DescribeAllocationBillConditionsResponse, DescribeAllocationMonthOverviewRequest, DescribeBillSummaryResponse, DeleteAllocationTagResponse, DescribeAllocationUnitDetailRequest, DescribeBillSummaryForOrganizationRequest, ModifyGatherRuleResponse, DescribeBillDetailForOrganizationRequest, DescribeVoucherUsageDetailsRequest, DescribeBillResourceSummaryRequest, DescribeCostSummaryByRegionResponse, DescribeCostDetailRequest, DescribeAllocationSummaryByResourceRequest, DescribeBillSummaryForOrganizationResponse, DescribeTagListRequest, DescribeBillResourceSummaryForOrganizationResponse, DescribeAllocationTreeRequest, DescribeCostSummaryByResourceRequest, CreateAllocationTagRequest, DescribeAllocationRuleDetailResponse, DescribeBillSummaryByProductResponse, DescribeBillSummaryByRegionResponse, CreateAllocationTagResponse, ModifyAllocationUnitRequest, DescribeBillDownloadUrlResponse, DescribeAccountBalanceRequest, DescribeBillDetailRequest, DescribeSavingPlanResourceInfoRequest, DescribeVoucherInfoResponse, DeleteGatherRuleRequest, DescribeAccountBalanceResponse, DescribeAllocationBillDetailResponse, CreateGatherRuleResponse, DescribeAllocateConditionsResponse, DescribeDosageDetailListRequest, ModifyAllocationRuleResponse, DescribeVoucherInfoRequest, DescribeSavingPlanResourceInfoResponse, DescribeDealsByCondRequest, DescribeAllocationSummaryByResourceResponse, CreateAllocationUnitResponse, DescribeDosageCosDetailByDateResponse, DeleteAllocationUnitRequest, DeleteAllocationUnitResponse, DescribeTagListResponse, DescribeAllocationRuleSummaryRequest, DescribeAllocationTrendByMonthResponse, ModifyAllocationUnitResponse, DescribeGatherRuleDetailResponse } from "./billing_models";
|
|
4
4
|
/**
|
|
5
5
|
* billing client
|
|
6
6
|
* @class
|
|
@@ -12,6 +12,10 @@ export declare class Client extends AbstractClient {
|
|
|
12
12
|
注意事项:在请求接口时,由于网络不稳定或其它异常,可能会导致请求失败。如果您遇到这种情况,我们建议您在接口请求失败时,手动发起重试操作,这样可以更好地确保您的接口请求能够成功执行。
|
|
13
13
|
*/
|
|
14
14
|
DescribeBillDetailForOrganization(req: DescribeBillDetailForOrganizationRequest, cb?: (error: string, rep: DescribeBillDetailForOrganizationResponse) => void): Promise<DescribeBillDetailForOrganizationResponse>;
|
|
15
|
+
/**
|
|
16
|
+
* 删除归集规则
|
|
17
|
+
*/
|
|
18
|
+
DeleteGatherRule(req: DeleteGatherRuleRequest, cb?: (error: string, rep: DeleteGatherRuleResponse) => void): Promise<DeleteGatherRuleResponse>;
|
|
15
19
|
/**
|
|
16
20
|
* 获取按资源汇总消耗详情
|
|
17
21
|
*/
|
|
@@ -24,14 +28,18 @@ export declare class Client extends AbstractClient {
|
|
|
24
28
|
* 查询分账账单按资源汇总
|
|
25
29
|
*/
|
|
26
30
|
DescribeAllocationSummaryByResource(req: DescribeAllocationSummaryByResourceRequest, cb?: (error: string, rep: DescribeAllocationSummaryByResourceResponse) => void): Promise<DescribeAllocationSummaryByResourceResponse>;
|
|
31
|
+
/**
|
|
32
|
+
* 查询所有公摊规则概览
|
|
33
|
+
*/
|
|
34
|
+
DescribeAllocationRuleSummary(req: DescribeAllocationRuleSummaryRequest, cb?: (error: string, rep: DescribeAllocationRuleSummaryResponse) => void): Promise<DescribeAllocationRuleSummaryResponse>;
|
|
27
35
|
/**
|
|
28
36
|
* 获取账单资源汇总数据
|
|
29
37
|
*/
|
|
30
38
|
DescribeBillResourceSummary(req: DescribeBillResourceSummaryRequest, cb?: (error: string, rep: DescribeBillResourceSummaryResponse) => void): Promise<DescribeBillResourceSummaryResponse>;
|
|
31
39
|
/**
|
|
32
|
-
*
|
|
40
|
+
* 删除分账单元
|
|
33
41
|
*/
|
|
34
|
-
|
|
42
|
+
DeleteAllocationUnit(req: DeleteAllocationUnitRequest, cb?: (error: string, rep: DeleteAllocationUnitResponse) => void): Promise<DeleteAllocationUnitResponse>;
|
|
35
43
|
/**
|
|
36
44
|
* 查询资源目录筛选条件
|
|
37
45
|
*/
|
|
@@ -44,6 +52,10 @@ export declare class Client extends AbstractClient {
|
|
|
44
52
|
* 获取已接入标准用量明细模板产品的用量明细数据,目前已接入并支持查询的产品包括:云联络中心、实时音视频、实时音视频、智能媒资托管、CODING DevOps、全球IP应用加速
|
|
45
53
|
*/
|
|
46
54
|
DescribeDosageDetailList(req: DescribeDosageDetailListRequest, cb?: (error: string, rep: DescribeDosageDetailListResponse) => void): Promise<DescribeDosageDetailListResponse>;
|
|
55
|
+
/**
|
|
56
|
+
* 创建分账单元
|
|
57
|
+
*/
|
|
58
|
+
CreateAllocationUnit(req: CreateAllocationUnitRequest, cb?: (error: string, rep: CreateAllocationUnitResponse) => void): Promise<CreateAllocationUnitResponse>;
|
|
47
59
|
/**
|
|
48
60
|
* 批量设置分账标签
|
|
49
61
|
*/
|
|
@@ -75,14 +87,30 @@ export declare class Client extends AbstractClient {
|
|
|
75
87
|
* 该接口支持通过传参,按照产品、项目、地域、计费模式和标签五个维度获取账单费用明细。
|
|
76
88
|
*/
|
|
77
89
|
DescribeBillSummary(req: DescribeBillSummaryRequest, cb?: (error: string, rep: DescribeBillSummaryResponse) => void): Promise<DescribeBillSummaryResponse>;
|
|
90
|
+
/**
|
|
91
|
+
* 公摊规则删除接口
|
|
92
|
+
*/
|
|
93
|
+
DeleteAllocationRule(req: DeleteAllocationRuleRequest, cb?: (error: string, rep: DeleteAllocationRuleResponse) => void): Promise<DeleteAllocationRuleResponse>;
|
|
78
94
|
/**
|
|
79
95
|
* 获取按计费模式汇总费用分布
|
|
80
96
|
*/
|
|
81
97
|
DescribeBillSummaryByPayMode(req: DescribeBillSummaryByPayModeRequest, cb?: (error: string, rep: DescribeBillSummaryByPayModeResponse) => void): Promise<DescribeBillSummaryByPayModeResponse>;
|
|
98
|
+
/**
|
|
99
|
+
* 查询公摊规则详情
|
|
100
|
+
*/
|
|
101
|
+
DescribeAllocationRuleDetail(req: DescribeAllocationRuleDetailRequest, cb?: (error: string, rep: DescribeAllocationRuleDetailResponse) => void): Promise<DescribeAllocationRuleDetailResponse>;
|
|
82
102
|
/**
|
|
83
103
|
* 获取按地域汇总消耗详情
|
|
84
104
|
*/
|
|
85
105
|
DescribeCostSummaryByRegion(req: DescribeCostSummaryByRegionRequest, cb?: (error: string, rep: DescribeCostSummaryByRegionResponse) => void): Promise<DescribeCostSummaryByRegionResponse>;
|
|
106
|
+
/**
|
|
107
|
+
* 获取代金券使用记录
|
|
108
|
+
*/
|
|
109
|
+
DescribeVoucherUsageDetails(req: DescribeVoucherUsageDetailsRequest, cb?: (error: string, rep: DescribeVoucherUsageDetailsResponse) => void): Promise<DescribeVoucherUsageDetailsResponse>;
|
|
110
|
+
/**
|
|
111
|
+
* 编辑归集规则
|
|
112
|
+
*/
|
|
113
|
+
ModifyGatherRule(req: ModifyGatherRuleRequest, cb?: (error: string, rep: ModifyGatherRuleResponse) => void): Promise<ModifyGatherRuleResponse>;
|
|
86
114
|
/**
|
|
87
115
|
* 查询分账账单费用趋势
|
|
88
116
|
*/
|
|
@@ -95,6 +123,10 @@ export declare class Client extends AbstractClient {
|
|
|
95
123
|
* 获取COS产品用量明细
|
|
96
124
|
*/
|
|
97
125
|
DescribeDosageCosDetailByDate(req: DescribeDosageCosDetailByDateRequest, cb?: (error: string, rep: DescribeDosageCosDetailByDateResponse) => void): Promise<DescribeDosageCosDetailByDateResponse>;
|
|
126
|
+
/**
|
|
127
|
+
* 创建归集规则
|
|
128
|
+
*/
|
|
129
|
+
CreateGatherRule(req: CreateGatherRuleRequest, cb?: (error: string, rep: CreateGatherRuleResponse) => void): Promise<CreateGatherRuleResponse>;
|
|
98
130
|
/**
|
|
99
131
|
* 查询分账账单筛选条件
|
|
100
132
|
*/
|
|
@@ -103,10 +135,22 @@ export declare class Client extends AbstractClient {
|
|
|
103
135
|
* 获取云账户余额信息。
|
|
104
136
|
*/
|
|
105
137
|
DescribeAccountBalance(req?: DescribeAccountBalanceRequest, cb?: (error: string, rep: DescribeAccountBalanceResponse) => void): Promise<DescribeAccountBalanceResponse>;
|
|
138
|
+
/**
|
|
139
|
+
* 查询归集规则详情
|
|
140
|
+
*/
|
|
141
|
+
DescribeGatherRuleDetail(req: DescribeGatherRuleDetailRequest, cb?: (error: string, rep: DescribeGatherRuleDetailResponse) => void): Promise<DescribeGatherRuleDetailResponse>;
|
|
106
142
|
/**
|
|
107
143
|
* 按日期获取产品用量明细
|
|
108
144
|
*/
|
|
109
145
|
DescribeDosageDetailByDate(req: DescribeDosageDetailByDateRequest, cb?: (error: string, rep: DescribeDosageDetailByDateResponse) => void): Promise<DescribeDosageDetailByDateResponse>;
|
|
146
|
+
/**
|
|
147
|
+
* 查询分账目录树
|
|
148
|
+
*/
|
|
149
|
+
DescribeAllocationTree(req: DescribeAllocationTreeRequest, cb?: (error: string, rep: DescribeAllocationTreeResponse) => void): Promise<DescribeAllocationTreeResponse>;
|
|
150
|
+
/**
|
|
151
|
+
* 查询分账单元详情
|
|
152
|
+
*/
|
|
153
|
+
DescribeAllocationUnitDetail(req: DescribeAllocationUnitDetailRequest, cb?: (error: string, rep: DescribeAllocationUnitDetailResponse) => void): Promise<DescribeAllocationUnitDetailResponse>;
|
|
110
154
|
/**
|
|
111
155
|
* 可以通过API获取当前UIN是否有调账,客户可以更快地主动地获取调账情况。
|
|
112
156
|
*/
|
|
@@ -127,6 +171,10 @@ export declare class Client extends AbstractClient {
|
|
|
127
171
|
* 查询分账账单月概览
|
|
128
172
|
*/
|
|
129
173
|
DescribeAllocationMonthOverview(req: DescribeAllocationMonthOverviewRequest, cb?: (error: string, rep: DescribeAllocationMonthOverviewResponse) => void): Promise<DescribeAllocationMonthOverviewResponse>;
|
|
174
|
+
/**
|
|
175
|
+
* 创建公摊规则
|
|
176
|
+
*/
|
|
177
|
+
CreateAllocationRule(req: CreateAllocationRuleRequest, cb?: (error: string, rep: CreateAllocationRuleResponse) => void): Promise<CreateAllocationRuleResponse>;
|
|
130
178
|
/**
|
|
131
179
|
* 获取按标签汇总费用分布
|
|
132
180
|
*/
|
|
@@ -148,9 +196,13 @@ export declare class Client extends AbstractClient {
|
|
|
148
196
|
*/
|
|
149
197
|
DescribeTagList(req: DescribeTagListRequest, cb?: (error: string, rep: DescribeTagListResponse) => void): Promise<DescribeTagListResponse>;
|
|
150
198
|
/**
|
|
151
|
-
*
|
|
199
|
+
* 修改分账单元信息
|
|
152
200
|
*/
|
|
153
|
-
|
|
201
|
+
ModifyAllocationUnit(req: ModifyAllocationUnitRequest, cb?: (error: string, rep: ModifyAllocationUnitResponse) => void): Promise<ModifyAllocationUnitResponse>;
|
|
202
|
+
/**
|
|
203
|
+
* 查询分账账单按产品汇总
|
|
204
|
+
*/
|
|
205
|
+
DescribeAllocationSummaryByBusiness(req: DescribeAllocationSummaryByBusinessRequest, cb?: (error: string, rep: DescribeAllocationSummaryByBusinessResponse) => void): Promise<DescribeAllocationSummaryByBusinessResponse>;
|
|
154
206
|
/**
|
|
155
207
|
* 支付订单
|
|
156
208
|
*/
|
|
@@ -175,6 +227,10 @@ export declare class Client extends AbstractClient {
|
|
|
175
227
|
* 获取产品汇总费用分布
|
|
176
228
|
*/
|
|
177
229
|
DescribeBillSummaryByProduct(req: DescribeBillSummaryByProductRequest, cb?: (error: string, rep: DescribeBillSummaryByProductResponse) => void): Promise<DescribeBillSummaryByProductResponse>;
|
|
230
|
+
/**
|
|
231
|
+
* 编辑公摊规则
|
|
232
|
+
*/
|
|
233
|
+
ModifyAllocationRule(req: ModifyAllocationRuleRequest, cb?: (error: string, rep: ModifyAllocationRuleResponse) => void): Promise<ModifyAllocationRuleResponse>;
|
|
178
234
|
/**
|
|
179
235
|
* 查询消耗明细
|
|
180
236
|
|
|
@@ -34,6 +34,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
34
34
|
async DescribeBillDetailForOrganization(req, cb) {
|
|
35
35
|
return this.request("DescribeBillDetailForOrganization", req, cb);
|
|
36
36
|
}
|
|
37
|
+
/**
|
|
38
|
+
* 删除归集规则
|
|
39
|
+
*/
|
|
40
|
+
async DeleteGatherRule(req, cb) {
|
|
41
|
+
return this.request("DeleteGatherRule", req, cb);
|
|
42
|
+
}
|
|
37
43
|
/**
|
|
38
44
|
* 获取按资源汇总消耗详情
|
|
39
45
|
*/
|
|
@@ -52,6 +58,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
52
58
|
async DescribeAllocationSummaryByResource(req, cb) {
|
|
53
59
|
return this.request("DescribeAllocationSummaryByResource", req, cb);
|
|
54
60
|
}
|
|
61
|
+
/**
|
|
62
|
+
* 查询所有公摊规则概览
|
|
63
|
+
*/
|
|
64
|
+
async DescribeAllocationRuleSummary(req, cb) {
|
|
65
|
+
return this.request("DescribeAllocationRuleSummary", req, cb);
|
|
66
|
+
}
|
|
55
67
|
/**
|
|
56
68
|
* 获取账单资源汇总数据
|
|
57
69
|
*/
|
|
@@ -59,10 +71,10 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
59
71
|
return this.request("DescribeBillResourceSummary", req, cb);
|
|
60
72
|
}
|
|
61
73
|
/**
|
|
62
|
-
*
|
|
74
|
+
* 删除分账单元
|
|
63
75
|
*/
|
|
64
|
-
async
|
|
65
|
-
return this.request("
|
|
76
|
+
async DeleteAllocationUnit(req, cb) {
|
|
77
|
+
return this.request("DeleteAllocationUnit", req, cb);
|
|
66
78
|
}
|
|
67
79
|
/**
|
|
68
80
|
* 查询资源目录筛选条件
|
|
@@ -82,6 +94,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
82
94
|
async DescribeDosageDetailList(req, cb) {
|
|
83
95
|
return this.request("DescribeDosageDetailList", req, cb);
|
|
84
96
|
}
|
|
97
|
+
/**
|
|
98
|
+
* 创建分账单元
|
|
99
|
+
*/
|
|
100
|
+
async CreateAllocationUnit(req, cb) {
|
|
101
|
+
return this.request("CreateAllocationUnit", req, cb);
|
|
102
|
+
}
|
|
85
103
|
/**
|
|
86
104
|
* 批量设置分账标签
|
|
87
105
|
*/
|
|
@@ -127,18 +145,42 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
127
145
|
async DescribeBillSummary(req, cb) {
|
|
128
146
|
return this.request("DescribeBillSummary", req, cb);
|
|
129
147
|
}
|
|
148
|
+
/**
|
|
149
|
+
* 公摊规则删除接口
|
|
150
|
+
*/
|
|
151
|
+
async DeleteAllocationRule(req, cb) {
|
|
152
|
+
return this.request("DeleteAllocationRule", req, cb);
|
|
153
|
+
}
|
|
130
154
|
/**
|
|
131
155
|
* 获取按计费模式汇总费用分布
|
|
132
156
|
*/
|
|
133
157
|
async DescribeBillSummaryByPayMode(req, cb) {
|
|
134
158
|
return this.request("DescribeBillSummaryByPayMode", req, cb);
|
|
135
159
|
}
|
|
160
|
+
/**
|
|
161
|
+
* 查询公摊规则详情
|
|
162
|
+
*/
|
|
163
|
+
async DescribeAllocationRuleDetail(req, cb) {
|
|
164
|
+
return this.request("DescribeAllocationRuleDetail", req, cb);
|
|
165
|
+
}
|
|
136
166
|
/**
|
|
137
167
|
* 获取按地域汇总消耗详情
|
|
138
168
|
*/
|
|
139
169
|
async DescribeCostSummaryByRegion(req, cb) {
|
|
140
170
|
return this.request("DescribeCostSummaryByRegion", req, cb);
|
|
141
171
|
}
|
|
172
|
+
/**
|
|
173
|
+
* 获取代金券使用记录
|
|
174
|
+
*/
|
|
175
|
+
async DescribeVoucherUsageDetails(req, cb) {
|
|
176
|
+
return this.request("DescribeVoucherUsageDetails", req, cb);
|
|
177
|
+
}
|
|
178
|
+
/**
|
|
179
|
+
* 编辑归集规则
|
|
180
|
+
*/
|
|
181
|
+
async ModifyGatherRule(req, cb) {
|
|
182
|
+
return this.request("ModifyGatherRule", req, cb);
|
|
183
|
+
}
|
|
142
184
|
/**
|
|
143
185
|
* 查询分账账单费用趋势
|
|
144
186
|
*/
|
|
@@ -157,6 +199,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
157
199
|
async DescribeDosageCosDetailByDate(req, cb) {
|
|
158
200
|
return this.request("DescribeDosageCosDetailByDate", req, cb);
|
|
159
201
|
}
|
|
202
|
+
/**
|
|
203
|
+
* 创建归集规则
|
|
204
|
+
*/
|
|
205
|
+
async CreateGatherRule(req, cb) {
|
|
206
|
+
return this.request("CreateGatherRule", req, cb);
|
|
207
|
+
}
|
|
160
208
|
/**
|
|
161
209
|
* 查询分账账单筛选条件
|
|
162
210
|
*/
|
|
@@ -169,12 +217,30 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
169
217
|
async DescribeAccountBalance(req, cb) {
|
|
170
218
|
return this.request("DescribeAccountBalance", req, cb);
|
|
171
219
|
}
|
|
220
|
+
/**
|
|
221
|
+
* 查询归集规则详情
|
|
222
|
+
*/
|
|
223
|
+
async DescribeGatherRuleDetail(req, cb) {
|
|
224
|
+
return this.request("DescribeGatherRuleDetail", req, cb);
|
|
225
|
+
}
|
|
172
226
|
/**
|
|
173
227
|
* 按日期获取产品用量明细
|
|
174
228
|
*/
|
|
175
229
|
async DescribeDosageDetailByDate(req, cb) {
|
|
176
230
|
return this.request("DescribeDosageDetailByDate", req, cb);
|
|
177
231
|
}
|
|
232
|
+
/**
|
|
233
|
+
* 查询分账目录树
|
|
234
|
+
*/
|
|
235
|
+
async DescribeAllocationTree(req, cb) {
|
|
236
|
+
return this.request("DescribeAllocationTree", req, cb);
|
|
237
|
+
}
|
|
238
|
+
/**
|
|
239
|
+
* 查询分账单元详情
|
|
240
|
+
*/
|
|
241
|
+
async DescribeAllocationUnitDetail(req, cb) {
|
|
242
|
+
return this.request("DescribeAllocationUnitDetail", req, cb);
|
|
243
|
+
}
|
|
178
244
|
/**
|
|
179
245
|
* 可以通过API获取当前UIN是否有调账,客户可以更快地主动地获取调账情况。
|
|
180
246
|
*/
|
|
@@ -205,6 +271,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
205
271
|
async DescribeAllocationMonthOverview(req, cb) {
|
|
206
272
|
return this.request("DescribeAllocationMonthOverview", req, cb);
|
|
207
273
|
}
|
|
274
|
+
/**
|
|
275
|
+
* 创建公摊规则
|
|
276
|
+
*/
|
|
277
|
+
async CreateAllocationRule(req, cb) {
|
|
278
|
+
return this.request("CreateAllocationRule", req, cb);
|
|
279
|
+
}
|
|
208
280
|
/**
|
|
209
281
|
* 获取按标签汇总费用分布
|
|
210
282
|
*/
|
|
@@ -236,10 +308,16 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
236
308
|
return this.request("DescribeTagList", req, cb);
|
|
237
309
|
}
|
|
238
310
|
/**
|
|
239
|
-
*
|
|
311
|
+
* 修改分账单元信息
|
|
240
312
|
*/
|
|
241
|
-
async
|
|
242
|
-
return this.request("
|
|
313
|
+
async ModifyAllocationUnit(req, cb) {
|
|
314
|
+
return this.request("ModifyAllocationUnit", req, cb);
|
|
315
|
+
}
|
|
316
|
+
/**
|
|
317
|
+
* 查询分账账单按产品汇总
|
|
318
|
+
*/
|
|
319
|
+
async DescribeAllocationSummaryByBusiness(req, cb) {
|
|
320
|
+
return this.request("DescribeAllocationSummaryByBusiness", req, cb);
|
|
243
321
|
}
|
|
244
322
|
/**
|
|
245
323
|
* 支付订单
|
|
@@ -277,6 +355,12 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
277
355
|
async DescribeBillSummaryByProduct(req, cb) {
|
|
278
356
|
return this.request("DescribeBillSummaryByProduct", req, cb);
|
|
279
357
|
}
|
|
358
|
+
/**
|
|
359
|
+
* 编辑公摊规则
|
|
360
|
+
*/
|
|
361
|
+
async ModifyAllocationRule(req, cb) {
|
|
362
|
+
return this.request("ModifyAllocationRule", req, cb);
|
|
363
|
+
}
|
|
280
364
|
/**
|
|
281
365
|
* 查询消耗明细
|
|
282
366
|
|