tencentcloud-sdk-nodejs 4.0.456 → 4.0.458
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 +312 -0
- package/SERVICE_CHANGELOG.md +309 -88
- package/package.json +1 -1
- package/products.md +18 -18
- package/src/common/abstract_client.ts +11 -1
- package/src/common/http/fetch.ts +12 -5
- package/src/common/http/http_connection.ts +23 -19
- package/src/common/interface.ts +11 -0
- package/src/common/sdk_version.ts +1 -1
- package/src/services/batch/v20170312/batch_models.ts +1 -1
- package/src/services/bma/v20210624/bma_client.ts +12 -11
- package/src/services/bma/v20210624/bma_models.ts +149 -149
- package/src/services/cdb/v20170320/cdb_client.ts +2 -1
- package/src/services/cdb/v20170320/cdb_models.ts +162 -10
- package/src/services/cpdp/v20190820/cpdp_client.ts +13 -0
- package/src/services/cpdp/v20190820/cpdp_models.ts +92 -0
- package/src/services/cvm/v20170312/cvm_client.ts +1 -1
- package/src/services/cvm/v20170312/cvm_models.ts +5 -5
- package/src/services/cwp/v20180228/cwp_client.ts +70 -19
- package/src/services/cwp/v20180228/cwp_models.ts +627 -215
- package/src/services/essbasic/v20210526/essbasic_models.ts +1 -1
- package/src/services/mariadb/v20170312/mariadb_client.ts +22 -60
- package/src/services/mariadb/v20170312/mariadb_models.ts +51 -358
- package/src/services/monitor/v20180724/monitor_models.ts +5 -0
- package/src/services/redis/v20180412/redis_models.ts +10 -10
- package/src/services/tcm/v20210413/tcm_client.ts +44 -8
- package/src/services/tcm/v20210413/tcm_models.ts +165 -39
- package/src/services/teo/v20220901/teo_models.ts +18 -5
- package/src/services/tse/v20201207/tse_client.ts +12 -0
- package/src/services/tse/v20201207/tse_models.ts +30 -0
- package/src/services/tsf/v20180326/tsf_client.ts +2 -0
- package/src/services/tsf/v20180326/tsf_models.ts +74 -1
- package/src/services/vod/v20180717/vod_client.ts +2 -2
- package/src/services/vod/v20180717/vod_models.ts +16 -0
- package/src/services/wav/v20210129/wav_models.ts +6 -0
- package/src/services/wedata/v20210820/wedata_client.ts +15 -3
- package/src/services/wedata/v20210820/wedata_models.ts +101 -44
- package/tencentcloud/common/abstract_client.d.ts +5 -1
- package/tencentcloud/common/abstract_client.js +6 -0
- package/tencentcloud/common/http/fetch.d.ts +6 -1
- package/tencentcloud/common/http/fetch.js +3 -2
- package/tencentcloud/common/http/http_connection.d.ts +10 -2
- package/tencentcloud/common/http/http_connection.js +8 -2
- package/tencentcloud/common/interface.d.ts +12 -0
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/batch/v20170312/batch_models.d.ts +1 -1
- package/tencentcloud/services/bma/v20210624/bma_client.d.ts +11 -10
- package/tencentcloud/services/bma/v20210624/bma_client.js +11 -10
- package/tencentcloud/services/bma/v20210624/bma_models.d.ts +148 -148
- package/tencentcloud/services/cdb/v20170320/cdb_client.d.ts +1 -1
- package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +133 -10
- package/tencentcloud/services/cpdp/v20190820/cpdp_client.d.ts +5 -1
- package/tencentcloud/services/cpdp/v20190820/cpdp_client.js +6 -0
- package/tencentcloud/services/cpdp/v20190820/cpdp_models.d.ts +78 -0
- package/tencentcloud/services/cvm/v20170312/cvm_client.d.ts +1 -1
- package/tencentcloud/services/cvm/v20170312/cvm_client.js +1 -1
- package/tencentcloud/services/cvm/v20170312/cvm_models.d.ts +5 -5
- package/tencentcloud/services/cwp/v20180228/cwp_client.d.ts +21 -5
- package/tencentcloud/services/cwp/v20180228/cwp_client.js +30 -6
- package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +526 -178
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +1 -1
- package/tencentcloud/services/mariadb/v20170312/mariadb_client.d.ts +7 -19
- package/tencentcloud/services/mariadb/v20170312/mariadb_client.js +9 -27
- package/tencentcloud/services/mariadb/v20170312/mariadb_models.d.ts +45 -299
- package/tencentcloud/services/monitor/v20180724/monitor_models.d.ts +4 -0
- package/tencentcloud/services/redis/v20180412/redis_models.d.ts +10 -10
- package/tencentcloud/services/tcm/v20210413/tcm_client.d.ts +15 -3
- package/tencentcloud/services/tcm/v20210413/tcm_client.js +21 -3
- package/tencentcloud/services/tcm/v20210413/tcm_models.d.ts +141 -34
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +17 -5
- package/tencentcloud/services/tse/v20201207/tse_client.d.ts +5 -1
- package/tencentcloud/services/tse/v20201207/tse_client.js +6 -0
- package/tencentcloud/services/tse/v20201207/tse_models.d.ts +26 -0
- package/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +62 -1
- package/tencentcloud/services/vod/v20180717/vod_client.d.ts +2 -2
- package/tencentcloud/services/vod/v20180717/vod_client.js +2 -2
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +14 -0
- package/tencentcloud/services/wav/v20210129/wav_models.d.ts +5 -0
- package/tencentcloud/services/wedata/v20210820/wedata_client.d.ts +5 -1
- package/tencentcloud/services/wedata/v20210820/wedata_client.js +6 -0
- package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +86 -38
- package/test/cpdp.v20190820.test.js +10 -0
- package/test/cwp.v20180228.test.js +44 -4
- package/test/mariadb.v20170312.test.js +6 -36
- package/test/tcm.v20210413.test.js +32 -2
- package/test/tse.v20201207.test.js +10 -0
- package/test/wedata.v20210820.test.js +10 -0
|
@@ -38,6 +38,7 @@ import {
|
|
|
38
38
|
BackupSummaryItem,
|
|
39
39
|
ModifyInstanceParamRequest,
|
|
40
40
|
CreateParamTemplateRequest,
|
|
41
|
+
DescribeSupportedPrivilegesRequest,
|
|
41
42
|
RWInstanceInfo,
|
|
42
43
|
DescribeParamTemplateInfoRequest,
|
|
43
44
|
DescribeDBInstancesRequest,
|
|
@@ -136,7 +137,7 @@ import {
|
|
|
136
137
|
CreateAuditLogFileResponse,
|
|
137
138
|
ModifyInstanceTagResponse,
|
|
138
139
|
DescribeDBSwitchRecordsRequest,
|
|
139
|
-
|
|
140
|
+
RemoteBackupInfo,
|
|
140
141
|
DescribeAsyncRequestInfoResponse,
|
|
141
142
|
DescribeRoGroupsRequest,
|
|
142
143
|
ParamTemplateInfo,
|
|
@@ -527,15 +527,25 @@ export interface DescribeDataBackupOverviewResponse {
|
|
|
527
527
|
ManualBackupCount: number
|
|
528
528
|
|
|
529
529
|
/**
|
|
530
|
-
*
|
|
530
|
+
* 异地备份总容量。
|
|
531
531
|
*/
|
|
532
532
|
RemoteBackupVolume: number
|
|
533
533
|
|
|
534
534
|
/**
|
|
535
|
-
*
|
|
535
|
+
* 异地备份总个数。
|
|
536
536
|
*/
|
|
537
537
|
RemoteBackupCount: number
|
|
538
538
|
|
|
539
|
+
/**
|
|
540
|
+
* 当前地域归档备份总容量。
|
|
541
|
+
*/
|
|
542
|
+
DataBackupArchiveVolume: number
|
|
543
|
+
|
|
544
|
+
/**
|
|
545
|
+
* 当前地域归档备份总个数。
|
|
546
|
+
*/
|
|
547
|
+
DataBackupArchiveCount: number
|
|
548
|
+
|
|
539
549
|
/**
|
|
540
550
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
541
551
|
*/
|
|
@@ -687,6 +697,16 @@ export interface CreateParamTemplateRequest {
|
|
|
687
697
|
EngineType?: string
|
|
688
698
|
}
|
|
689
699
|
|
|
700
|
+
/**
|
|
701
|
+
* DescribeSupportedPrivileges请求参数结构体
|
|
702
|
+
*/
|
|
703
|
+
export interface DescribeSupportedPrivilegesRequest {
|
|
704
|
+
/**
|
|
705
|
+
* 实例 ID,格式如:cdb-c1nl9rpv,与云数据库控制台页面中显示的实例 ID 相同。
|
|
706
|
+
*/
|
|
707
|
+
InstanceId: string
|
|
708
|
+
}
|
|
709
|
+
|
|
690
710
|
/**
|
|
691
711
|
* 代理实例信息
|
|
692
712
|
*/
|
|
@@ -1695,6 +1715,16 @@ export interface DescribeBinlogBackupOverviewResponse {
|
|
|
1695
1715
|
*/
|
|
1696
1716
|
RemoteBinlogCount: number
|
|
1697
1717
|
|
|
1718
|
+
/**
|
|
1719
|
+
* 归档日志备份容量(单位为字节)。
|
|
1720
|
+
*/
|
|
1721
|
+
BinlogArchiveVolume: number
|
|
1722
|
+
|
|
1723
|
+
/**
|
|
1724
|
+
* 归档日志备份个数。
|
|
1725
|
+
*/
|
|
1726
|
+
BinlogArchiveCount: number
|
|
1727
|
+
|
|
1698
1728
|
/**
|
|
1699
1729
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1700
1730
|
*/
|
|
@@ -2375,12 +2405,12 @@ export interface DescribeBinlogsResponse {
|
|
|
2375
2405
|
/**
|
|
2376
2406
|
* 符合查询条件的日志文件总数。
|
|
2377
2407
|
*/
|
|
2378
|
-
TotalCount
|
|
2408
|
+
TotalCount: number
|
|
2379
2409
|
|
|
2380
2410
|
/**
|
|
2381
2411
|
* 符合查询条件的二进制日志文件详情。
|
|
2382
2412
|
*/
|
|
2383
|
-
Items
|
|
2413
|
+
Items: Array<BinlogInfo>
|
|
2384
2414
|
|
|
2385
2415
|
/**
|
|
2386
2416
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -2726,6 +2756,31 @@ export interface BinlogInfo {
|
|
|
2726
2756
|
* binlog 文件截止时间
|
|
2727
2757
|
*/
|
|
2728
2758
|
BinlogFinishTime: string
|
|
2759
|
+
|
|
2760
|
+
/**
|
|
2761
|
+
* 本地binlog文件所在地域
|
|
2762
|
+
*/
|
|
2763
|
+
Region: string
|
|
2764
|
+
|
|
2765
|
+
/**
|
|
2766
|
+
* 备份任务状态。可能的值有 "SUCCESS": 备份成功, "FAILED": 备份失败, "RUNNING": 备份进行中。
|
|
2767
|
+
*/
|
|
2768
|
+
Status: string
|
|
2769
|
+
|
|
2770
|
+
/**
|
|
2771
|
+
* binlog异地备份详细信息
|
|
2772
|
+
*/
|
|
2773
|
+
RemoteInfo: Array<RemoteBackupInfo>
|
|
2774
|
+
|
|
2775
|
+
/**
|
|
2776
|
+
* 存储方式,0-常规存储,1-归档存储,默认为0
|
|
2777
|
+
*/
|
|
2778
|
+
CosStorageType: number
|
|
2779
|
+
|
|
2780
|
+
/**
|
|
2781
|
+
* 实例 ID,格式如:cdb-c1nl9rpv。与云数据库控制台页面中显示的实例 ID 相同。
|
|
2782
|
+
*/
|
|
2783
|
+
InstanceId: string
|
|
2729
2784
|
}
|
|
2730
2785
|
|
|
2731
2786
|
/**
|
|
@@ -3022,13 +3077,38 @@ export interface DescribeDBSwitchRecordsRequest {
|
|
|
3022
3077
|
}
|
|
3023
3078
|
|
|
3024
3079
|
/**
|
|
3025
|
-
*
|
|
3080
|
+
* 异地备份信息
|
|
3026
3081
|
*/
|
|
3027
|
-
export interface
|
|
3082
|
+
export interface RemoteBackupInfo {
|
|
3028
3083
|
/**
|
|
3029
|
-
*
|
|
3084
|
+
* 异地备份子任务的ID
|
|
3030
3085
|
*/
|
|
3031
|
-
|
|
3086
|
+
SubBackupId: Array<number>
|
|
3087
|
+
|
|
3088
|
+
/**
|
|
3089
|
+
* 异地备份所在地域
|
|
3090
|
+
*/
|
|
3091
|
+
Region: string
|
|
3092
|
+
|
|
3093
|
+
/**
|
|
3094
|
+
* 备份任务状态。可能的值有 "SUCCESS": 备份成功, "FAILED": 备份失败, "RUNNING": 备份进行中。
|
|
3095
|
+
*/
|
|
3096
|
+
Status: string
|
|
3097
|
+
|
|
3098
|
+
/**
|
|
3099
|
+
* 异地备份任务的开始时间
|
|
3100
|
+
*/
|
|
3101
|
+
StartTime: string
|
|
3102
|
+
|
|
3103
|
+
/**
|
|
3104
|
+
* 异地备份任务的结束时间
|
|
3105
|
+
*/
|
|
3106
|
+
FinishTime: string
|
|
3107
|
+
|
|
3108
|
+
/**
|
|
3109
|
+
* 下载地址
|
|
3110
|
+
*/
|
|
3111
|
+
Url: string
|
|
3032
3112
|
}
|
|
3033
3113
|
|
|
3034
3114
|
/**
|
|
@@ -3110,12 +3190,12 @@ export interface DescribeBackupsResponse {
|
|
|
3110
3190
|
/**
|
|
3111
3191
|
* 符合查询条件的实例总数。
|
|
3112
3192
|
*/
|
|
3113
|
-
TotalCount
|
|
3193
|
+
TotalCount: number
|
|
3114
3194
|
|
|
3115
3195
|
/**
|
|
3116
3196
|
* 符合查询条件的备份信息详情。
|
|
3117
3197
|
*/
|
|
3118
|
-
Items
|
|
3198
|
+
Items: Array<BackupInfo>
|
|
3119
3199
|
|
|
3120
3200
|
/**
|
|
3121
3201
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -3284,6 +3364,26 @@ export interface DescribeBackupConfigResponse {
|
|
|
3284
3364
|
*/
|
|
3285
3365
|
StartBackupPeriodSaveDate: string
|
|
3286
3366
|
|
|
3367
|
+
/**
|
|
3368
|
+
* 是否开启数据备份归档策略,off-关闭,on-打开,默认为off
|
|
3369
|
+
*/
|
|
3370
|
+
EnableBackupArchive: string
|
|
3371
|
+
|
|
3372
|
+
/**
|
|
3373
|
+
* 数据备份归档起始天数,数据备份达到归档起始天数时进行归档,最小为180天,不得大于数据备份保留天数
|
|
3374
|
+
*/
|
|
3375
|
+
BackupArchiveDays: number
|
|
3376
|
+
|
|
3377
|
+
/**
|
|
3378
|
+
* 是否开启日志备份归档策略,off-关闭,on-打开,默认为off
|
|
3379
|
+
*/
|
|
3380
|
+
EnableBinlogArchive: string
|
|
3381
|
+
|
|
3382
|
+
/**
|
|
3383
|
+
* 日志备份归档起始天数,日志备份达到归档起始天数时进行归档,最小为180天,不得大于日志备份保留天数
|
|
3384
|
+
*/
|
|
3385
|
+
BinlogArchiveDays: number
|
|
3386
|
+
|
|
3287
3387
|
/**
|
|
3288
3388
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3289
3389
|
*/
|
|
@@ -3474,6 +3574,18 @@ export interface DescribeBackupOverviewResponse {
|
|
|
3474
3574
|
*/
|
|
3475
3575
|
FreeVolume: number
|
|
3476
3576
|
|
|
3577
|
+
/**
|
|
3578
|
+
* 用户在当前地域的异地备份总容量。
|
|
3579
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3580
|
+
*/
|
|
3581
|
+
RemoteBackupVolume: number
|
|
3582
|
+
|
|
3583
|
+
/**
|
|
3584
|
+
* 归档备份容量,包含数据备份以及日志备份。
|
|
3585
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3586
|
+
*/
|
|
3587
|
+
BackupArchiveVolume: number
|
|
3588
|
+
|
|
3477
3589
|
/**
|
|
3478
3590
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3479
3591
|
*/
|
|
@@ -4179,6 +4291,26 @@ export interface ModifyBackupConfigRequest {
|
|
|
4179
4291
|
* 定期保留策略周期起始日期,格式:YYYY-MM-dd HH:mm:ss
|
|
4180
4292
|
*/
|
|
4181
4293
|
StartBackupPeriodSaveDate?: string
|
|
4294
|
+
|
|
4295
|
+
/**
|
|
4296
|
+
* 是否开启数据备份归档策略,off-关闭,on-打开,默认为off
|
|
4297
|
+
*/
|
|
4298
|
+
EnableBackupArchive?: string
|
|
4299
|
+
|
|
4300
|
+
/**
|
|
4301
|
+
* 数据备份归档起始天数,数据备份达到归档起始天数时进行归档,最小为180天,不得大于数据备份保留天数
|
|
4302
|
+
*/
|
|
4303
|
+
BackupArchiveDays?: number
|
|
4304
|
+
|
|
4305
|
+
/**
|
|
4306
|
+
* 日志备份归档起始天数,日志备份达到归档起始天数时进行归档,最小为180天,不得大于日志备份保留天数
|
|
4307
|
+
*/
|
|
4308
|
+
BinlogArchiveDays?: number
|
|
4309
|
+
|
|
4310
|
+
/**
|
|
4311
|
+
* 是否开启日志备份归档策略,off-关闭,on-打开,默认为off
|
|
4312
|
+
*/
|
|
4313
|
+
EnableBinlogArchive?: string
|
|
4182
4314
|
}
|
|
4183
4315
|
|
|
4184
4316
|
/**
|
|
@@ -5521,6 +5653,26 @@ export interface BackupInfo {
|
|
|
5521
5653
|
* 备份保留类型,save_mode_regular - 常规保存备份,save_mode_period - 定期保存备份
|
|
5522
5654
|
*/
|
|
5523
5655
|
SaveMode: string
|
|
5656
|
+
|
|
5657
|
+
/**
|
|
5658
|
+
* 本地备份所在地域
|
|
5659
|
+
*/
|
|
5660
|
+
Region: string
|
|
5661
|
+
|
|
5662
|
+
/**
|
|
5663
|
+
* 异地备份详细信息
|
|
5664
|
+
*/
|
|
5665
|
+
RemoteInfo: Array<RemoteBackupInfo>
|
|
5666
|
+
|
|
5667
|
+
/**
|
|
5668
|
+
* 存储方式,0-常规存储,1-归档存储,默认为0
|
|
5669
|
+
*/
|
|
5670
|
+
CosStorageType: number
|
|
5671
|
+
|
|
5672
|
+
/**
|
|
5673
|
+
* 实例 ID,格式如:cdb-c1nl9rpv。与云数据库控制台页面中显示的实例 ID 相同。
|
|
5674
|
+
*/
|
|
5675
|
+
InstanceId: string
|
|
5524
5676
|
}
|
|
5525
5677
|
|
|
5526
5678
|
/**
|
|
@@ -20,6 +20,7 @@ import { ClientConfig } from "../../../common/interface"
|
|
|
20
20
|
import {
|
|
21
21
|
QueryFlexPaymentOrderStatusRequest,
|
|
22
22
|
QueryAcctBindingRequest,
|
|
23
|
+
QueryCompanyTitleResponse,
|
|
23
24
|
ReviseMbrPropertyResponse,
|
|
24
25
|
ApplyPayerInfoResponse,
|
|
25
26
|
RevokeRechargeByThirdPayRequest,
|
|
@@ -208,6 +209,7 @@ import {
|
|
|
208
209
|
CreateRedInvoiceResultV2,
|
|
209
210
|
QueryAnchorContractInfoRequest,
|
|
210
211
|
CreateRedInvoiceResult,
|
|
212
|
+
CompanyTitleResult,
|
|
211
213
|
CreateOpenBankPaymentOrderRequest,
|
|
212
214
|
QueryOpenBankOrderDetailReceiptInfoResult,
|
|
213
215
|
QueryReconciliationDocumentRequest,
|
|
@@ -335,6 +337,7 @@ import {
|
|
|
335
337
|
CreateMerchantResponse,
|
|
336
338
|
CreateSinglePaymentResponse,
|
|
337
339
|
CloseOpenBankPaymentOrderRequest,
|
|
340
|
+
QueryCompanyTitleRequest,
|
|
338
341
|
GetPayRollAuthRequest,
|
|
339
342
|
ViewContractResult,
|
|
340
343
|
QueryAcctItem,
|
|
@@ -2307,6 +2310,16 @@ export class Client extends AbstractClient {
|
|
|
2307
2310
|
return this.request("QueryPayerInfo", req, cb)
|
|
2308
2311
|
}
|
|
2309
2312
|
|
|
2313
|
+
/**
|
|
2314
|
+
* 智慧零售-查询公司抬头
|
|
2315
|
+
*/
|
|
2316
|
+
async QueryCompanyTitle(
|
|
2317
|
+
req: QueryCompanyTitleRequest,
|
|
2318
|
+
cb?: (error: string, rep: QueryCompanyTitleResponse) => void
|
|
2319
|
+
): Promise<QueryCompanyTitleResponse> {
|
|
2320
|
+
return this.request("QueryCompanyTitle", req, cb)
|
|
2321
|
+
}
|
|
2322
|
+
|
|
2310
2323
|
/**
|
|
2311
2324
|
* 商户提现
|
|
2312
2325
|
*/
|
|
@@ -81,6 +81,32 @@ development: 开发环境
|
|
|
81
81
|
MidasEnvironment?: string
|
|
82
82
|
}
|
|
83
83
|
|
|
84
|
+
/**
|
|
85
|
+
* QueryCompanyTitle返回参数结构体
|
|
86
|
+
*/
|
|
87
|
+
export interface QueryCompanyTitleResponse {
|
|
88
|
+
/**
|
|
89
|
+
* 错误码
|
|
90
|
+
*/
|
|
91
|
+
ErrCode: string
|
|
92
|
+
|
|
93
|
+
/**
|
|
94
|
+
* 错误消息
|
|
95
|
+
*/
|
|
96
|
+
ErrMessage: string
|
|
97
|
+
|
|
98
|
+
/**
|
|
99
|
+
* 公司抬头结果
|
|
100
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
101
|
+
*/
|
|
102
|
+
Result: Array<CompanyTitleResult>
|
|
103
|
+
|
|
104
|
+
/**
|
|
105
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
106
|
+
*/
|
|
107
|
+
RequestId?: string
|
|
108
|
+
}
|
|
109
|
+
|
|
84
110
|
/**
|
|
85
111
|
* ReviseMbrProperty返回参数结构体
|
|
86
112
|
*/
|
|
@@ -7919,6 +7945,47 @@ export interface CreateRedInvoiceResult {
|
|
|
7919
7945
|
Data: Array<CreateRedInvoiceResultData>
|
|
7920
7946
|
}
|
|
7921
7947
|
|
|
7948
|
+
/**
|
|
7949
|
+
* 公司抬头结果
|
|
7950
|
+
*/
|
|
7951
|
+
export interface CompanyTitleResult {
|
|
7952
|
+
/**
|
|
7953
|
+
* 公司银行账号
|
|
7954
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7955
|
+
*/
|
|
7956
|
+
CompanyBankAccount: string
|
|
7957
|
+
|
|
7958
|
+
/**
|
|
7959
|
+
* 公司地址
|
|
7960
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7961
|
+
*/
|
|
7962
|
+
CompanyAddress: string
|
|
7963
|
+
|
|
7964
|
+
/**
|
|
7965
|
+
* 公司税号
|
|
7966
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7967
|
+
*/
|
|
7968
|
+
CompanyTaxpayerNum: string
|
|
7969
|
+
|
|
7970
|
+
/**
|
|
7971
|
+
* 公司名称
|
|
7972
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7973
|
+
*/
|
|
7974
|
+
CompanyName: string
|
|
7975
|
+
|
|
7976
|
+
/**
|
|
7977
|
+
* 公司银行名称
|
|
7978
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7979
|
+
*/
|
|
7980
|
+
CompanyBankName: string
|
|
7981
|
+
|
|
7982
|
+
/**
|
|
7983
|
+
* 公司电话
|
|
7984
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
7985
|
+
*/
|
|
7986
|
+
CompanyPhone: string
|
|
7987
|
+
}
|
|
7988
|
+
|
|
7922
7989
|
/**
|
|
7923
7990
|
* CreateOpenBankPaymentOrder请求参数结构体
|
|
7924
7991
|
*/
|
|
@@ -13139,6 +13206,31 @@ export interface CloseOpenBankPaymentOrderRequest {
|
|
|
13139
13206
|
Environment?: string
|
|
13140
13207
|
}
|
|
13141
13208
|
|
|
13209
|
+
/**
|
|
13210
|
+
* QueryCompanyTitle请求参数结构体
|
|
13211
|
+
*/
|
|
13212
|
+
export interface QueryCompanyTitleRequest {
|
|
13213
|
+
/**
|
|
13214
|
+
* 公司抬头关键字
|
|
13215
|
+
*/
|
|
13216
|
+
CompanyTitleKeyword: string
|
|
13217
|
+
|
|
13218
|
+
/**
|
|
13219
|
+
* 开票平台ID。0:高灯,1:票易通
|
|
13220
|
+
*/
|
|
13221
|
+
InvoicePlatformId: number
|
|
13222
|
+
|
|
13223
|
+
/**
|
|
13224
|
+
* 销方纳税人识别号
|
|
13225
|
+
*/
|
|
13226
|
+
SellerTaxpayerNum: string
|
|
13227
|
+
|
|
13228
|
+
/**
|
|
13229
|
+
* 接入环境。沙箱环境填sandbox。
|
|
13230
|
+
*/
|
|
13231
|
+
Profile?: string
|
|
13232
|
+
}
|
|
13233
|
+
|
|
13142
13234
|
/**
|
|
13143
13235
|
* GetPayRollAuth请求参数结构体
|
|
13144
13236
|
*/
|
|
@@ -625,7 +625,7 @@ export class Client extends AbstractClient {
|
|
|
625
625
|
}
|
|
626
626
|
|
|
627
627
|
/**
|
|
628
|
-
* 本接口(DescribeRegions)用于查询地域信息。因平台策略原因,该接口暂时停止更新,为确保您正常调用,可切换至新链接:https://cloud.tencent.com/document/product/
|
|
628
|
+
* 本接口(DescribeRegions)用于查询地域信息。因平台策略原因,该接口暂时停止更新,为确保您正常调用,可切换至新链接:https://cloud.tencent.com/document/product/1596/77929。
|
|
629
629
|
*/
|
|
630
630
|
async DescribeRegions(
|
|
631
631
|
req?: DescribeRegionsRequest,
|
|
@@ -800,14 +800,14 @@ export interface LoginSettings {
|
|
|
800
800
|
*/
|
|
801
801
|
export interface DescribeRegionsResponse {
|
|
802
802
|
/**
|
|
803
|
-
*
|
|
803
|
+
* 地域数量。
|
|
804
804
|
*/
|
|
805
|
-
TotalCount
|
|
805
|
+
TotalCount: number
|
|
806
806
|
|
|
807
807
|
/**
|
|
808
|
-
*
|
|
808
|
+
* 地域列表信息。
|
|
809
809
|
*/
|
|
810
|
-
RegionSet
|
|
810
|
+
RegionSet: Array<RegionInfo>
|
|
811
811
|
|
|
812
812
|
/**
|
|
813
813
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -1727,7 +1727,7 @@ export interface Placement {
|
|
|
1727
1727
|
Zone: string
|
|
1728
1728
|
|
|
1729
1729
|
/**
|
|
1730
|
-
* 实例所属项目ID。该参数可以通过调用 [DescribeProject](/document/api/
|
|
1730
|
+
* 实例所属项目ID。该参数可以通过调用 [DescribeProject](https://cloud.tencent.com/document/api/651/78725) 的返回值中的 projectId 字段来获取。不填为默认项目。
|
|
1731
1731
|
*/
|
|
1732
1732
|
ProjectId?: number
|
|
1733
1733
|
|