tencentcloud-sdk-nodejs 4.0.374 → 4.0.375
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 +204 -0
- package/SERVICE_CHANGELOG.md +342 -25
- package/package.json +1 -1
- package/products.md +12 -12
- package/src/common/sdk_version.ts +1 -1
- package/src/services/antiddos/v20200309/antiddos_models.ts +1 -1
- package/src/services/as/v20180419/as_models.ts +3 -2
- package/src/services/cbs/v20170312/cbs_client.ts +1 -1
- package/src/services/clb/v20180317/clb_models.ts +3 -2
- package/src/services/cpdp/v20190820/cpdp_models.ts +145 -0
- package/src/services/cvm/v20170312/cvm_client.ts +31 -14
- package/src/services/cvm/v20170312/cvm_models.ts +235 -35
- package/src/services/cynosdb/v20190107/cynosdb_client.ts +109 -23
- package/src/services/cynosdb/v20190107/cynosdb_models.ts +437 -44
- package/src/services/dlc/v20210125/dlc_client.ts +12 -0
- package/src/services/dlc/v20210125/dlc_models.ts +30 -0
- package/src/services/oceanus/v20190422/oceanus_models.ts +5 -0
- package/src/services/tke/v20180525/tke_client.ts +4 -1
- package/src/services/tke/v20180525/tke_models.ts +96 -1
- package/src/services/wedata/v20210820/wedata_client.ts +14 -2
- package/src/services/wedata/v20210820/wedata_models.ts +72 -22
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/antiddos/v20200309/antiddos_models.d.ts +1 -1
- package/tencentcloud/services/as/v20180419/as_models.d.ts +2 -1
- package/tencentcloud/services/cbs/v20170312/cbs_client.d.ts +1 -1
- package/tencentcloud/services/cbs/v20170312/cbs_client.js +1 -1
- package/tencentcloud/services/clb/v20180317/clb_models.d.ts +1 -0
- package/tencentcloud/services/cpdp/v20190820/cpdp_models.d.ts +128 -0
- package/tencentcloud/services/cvm/v20170312/cvm_client.d.ts +14 -7
- package/tencentcloud/services/cvm/v20170312/cvm_client.js +16 -7
- package/tencentcloud/services/cvm/v20170312/cvm_models.d.ts +202 -32
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.d.ts +35 -7
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.js +51 -9
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +371 -41
- package/tencentcloud/services/dlc/v20210125/dlc_client.d.ts +5 -1
- package/tencentcloud/services/dlc/v20210125/dlc_client.js +6 -0
- package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +26 -0
- package/tencentcloud/services/oceanus/v20190422/oceanus_models.d.ts +4 -0
- package/tencentcloud/services/tke/v20180525/tke_client.d.ts +1 -1
- package/tencentcloud/services/tke/v20180525/tke_models.d.ts +81 -1
- 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 +62 -20
- package/test/cvm.v20170312.test.js +12 -2
- package/test/cynosdb.v20190107.test.js +76 -6
- package/test/dlc.v20210125.test.js +10 -0
- package/test/wedata.v20210820.test.js +10 -0
|
@@ -180,6 +180,26 @@ export interface CreateStoreLocationResponse {
|
|
|
180
180
|
RequestId?: string
|
|
181
181
|
}
|
|
182
182
|
|
|
183
|
+
/**
|
|
184
|
+
* ReportHeartbeatMetaData请求参数结构体
|
|
185
|
+
*/
|
|
186
|
+
export interface ReportHeartbeatMetaDataRequest {
|
|
187
|
+
/**
|
|
188
|
+
* 数据源名称
|
|
189
|
+
*/
|
|
190
|
+
DatasourceConnectionName?: string
|
|
191
|
+
|
|
192
|
+
/**
|
|
193
|
+
* 锁ID
|
|
194
|
+
*/
|
|
195
|
+
LockId?: number
|
|
196
|
+
|
|
197
|
+
/**
|
|
198
|
+
* 事务ID
|
|
199
|
+
*/
|
|
200
|
+
TxnId?: number
|
|
201
|
+
}
|
|
202
|
+
|
|
183
203
|
/**
|
|
184
204
|
* DescribeDMSDatabase返回参数结构体
|
|
185
205
|
*/
|
|
@@ -1816,6 +1836,16 @@ export interface CreateExportTaskRequest {
|
|
|
1816
1836
|
OutputType?: string
|
|
1817
1837
|
}
|
|
1818
1838
|
|
|
1839
|
+
/**
|
|
1840
|
+
* ReportHeartbeatMetaData返回参数结构体
|
|
1841
|
+
*/
|
|
1842
|
+
export interface ReportHeartbeatMetaDataResponse {
|
|
1843
|
+
/**
|
|
1844
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1845
|
+
*/
|
|
1846
|
+
RequestId?: string
|
|
1847
|
+
}
|
|
1848
|
+
|
|
1819
1849
|
/**
|
|
1820
1850
|
* CreateDMSTable请求参数结构体
|
|
1821
1851
|
*/
|
|
@@ -90,6 +90,7 @@ import {
|
|
|
90
90
|
ModifyClusterAttributeResponse,
|
|
91
91
|
RunAutomationServiceEnabled,
|
|
92
92
|
CreateClusterResponse,
|
|
93
|
+
PrometheusClusterAgentPodConfig,
|
|
93
94
|
RunSecurityServiceEnabled,
|
|
94
95
|
ImageCache,
|
|
95
96
|
DeletePrometheusAlertRuleResponse,
|
|
@@ -138,6 +139,7 @@ import {
|
|
|
138
139
|
DescribeClusterNodePoolDetailResponse,
|
|
139
140
|
DescribeEKSContainerInstanceEventRequest,
|
|
140
141
|
ScaleOutClusterMasterResponse,
|
|
142
|
+
Toleration,
|
|
141
143
|
CreateEKSContainerInstancesResponse,
|
|
142
144
|
DescribeClusterKubeconfigResponse,
|
|
143
145
|
DescribeClusterCommonNamesRequest,
|
|
@@ -328,6 +330,7 @@ import {
|
|
|
328
330
|
PrometheusJobTargets,
|
|
329
331
|
ModifyClusterAsGroupOptionAttributeResponse,
|
|
330
332
|
UninstallLogAgentResponse,
|
|
333
|
+
PrometheusClusterAgentBasic,
|
|
331
334
|
DeleteTKEEdgeClusterResponse,
|
|
332
335
|
CreatePrometheusTempResponse,
|
|
333
336
|
DescribePrometheusTargetsRequest,
|
|
@@ -1646,7 +1649,7 @@ export class Client extends AbstractClient {
|
|
|
1646
1649
|
* 与云监控融合的2.0实例关联集群
|
|
1647
1650
|
*/
|
|
1648
1651
|
async CreatePrometheusClusterAgent(
|
|
1649
|
-
req
|
|
1652
|
+
req: CreatePrometheusClusterAgentRequest,
|
|
1650
1653
|
cb?: (error: string, rep: CreatePrometheusClusterAgentResponse) => void
|
|
1651
1654
|
): Promise<CreatePrometheusClusterAgentResponse> {
|
|
1652
1655
|
return this.request("CreatePrometheusClusterAgent", req, cb)
|
|
@@ -1682,6 +1682,26 @@ export interface CreateClusterResponse {
|
|
|
1682
1682
|
RequestId?: string
|
|
1683
1683
|
}
|
|
1684
1684
|
|
|
1685
|
+
/**
|
|
1686
|
+
* 关联集群时在集群内部署组件的pod额外配置
|
|
1687
|
+
*/
|
|
1688
|
+
export interface PrometheusClusterAgentPodConfig {
|
|
1689
|
+
/**
|
|
1690
|
+
* 是否使用HostNetWork
|
|
1691
|
+
*/
|
|
1692
|
+
HostNet?: boolean
|
|
1693
|
+
|
|
1694
|
+
/**
|
|
1695
|
+
* 指定pod运行节点
|
|
1696
|
+
*/
|
|
1697
|
+
NodeSelector?: Array<Label>
|
|
1698
|
+
|
|
1699
|
+
/**
|
|
1700
|
+
* 容忍污点
|
|
1701
|
+
*/
|
|
1702
|
+
Tolerations?: Array<Toleration>
|
|
1703
|
+
}
|
|
1704
|
+
|
|
1685
1705
|
/**
|
|
1686
1706
|
* 描述了 “云安全” 服务相关的信息
|
|
1687
1707
|
*/
|
|
@@ -2740,6 +2760,26 @@ export interface ScaleOutClusterMasterResponse {
|
|
|
2740
2760
|
RequestId?: string
|
|
2741
2761
|
}
|
|
2742
2762
|
|
|
2763
|
+
/**
|
|
2764
|
+
* kubernetes Taint
|
|
2765
|
+
*/
|
|
2766
|
+
export interface Toleration {
|
|
2767
|
+
/**
|
|
2768
|
+
* 容忍应用到的 taint key
|
|
2769
|
+
*/
|
|
2770
|
+
Key?: string
|
|
2771
|
+
|
|
2772
|
+
/**
|
|
2773
|
+
* 键与值的关系
|
|
2774
|
+
*/
|
|
2775
|
+
Operator?: string
|
|
2776
|
+
|
|
2777
|
+
/**
|
|
2778
|
+
* 要匹配的污点效果
|
|
2779
|
+
*/
|
|
2780
|
+
Effect?: string
|
|
2781
|
+
}
|
|
2782
|
+
|
|
2743
2783
|
/**
|
|
2744
2784
|
* CreateEKSContainerInstances返回参数结构体
|
|
2745
2785
|
*/
|
|
@@ -6126,7 +6166,17 @@ export interface ImageCacheEvent {
|
|
|
6126
6166
|
/**
|
|
6127
6167
|
* CreatePrometheusClusterAgent请求参数结构体
|
|
6128
6168
|
*/
|
|
6129
|
-
export
|
|
6169
|
+
export interface CreatePrometheusClusterAgentRequest {
|
|
6170
|
+
/**
|
|
6171
|
+
* 实例ID
|
|
6172
|
+
*/
|
|
6173
|
+
InstanceId: string
|
|
6174
|
+
|
|
6175
|
+
/**
|
|
6176
|
+
* agent列表
|
|
6177
|
+
*/
|
|
6178
|
+
Agents: Array<PrometheusClusterAgentBasic>
|
|
6179
|
+
}
|
|
6130
6180
|
|
|
6131
6181
|
/**
|
|
6132
6182
|
* DeleteEKSContainerInstances返回参数结构体
|
|
@@ -7227,6 +7277,51 @@ export interface UninstallLogAgentResponse {
|
|
|
7227
7277
|
RequestId?: string
|
|
7228
7278
|
}
|
|
7229
7279
|
|
|
7280
|
+
/**
|
|
7281
|
+
* 与云监控融合托管prometheus实例,关联集群基础信息
|
|
7282
|
+
*/
|
|
7283
|
+
export interface PrometheusClusterAgentBasic {
|
|
7284
|
+
/**
|
|
7285
|
+
* 集群ID
|
|
7286
|
+
*/
|
|
7287
|
+
Region: string
|
|
7288
|
+
|
|
7289
|
+
/**
|
|
7290
|
+
* 集群类型
|
|
7291
|
+
*/
|
|
7292
|
+
ClusterType: string
|
|
7293
|
+
|
|
7294
|
+
/**
|
|
7295
|
+
* 集群ID
|
|
7296
|
+
*/
|
|
7297
|
+
ClusterId: string
|
|
7298
|
+
|
|
7299
|
+
/**
|
|
7300
|
+
* 是否开启公网CLB
|
|
7301
|
+
*/
|
|
7302
|
+
EnableExternal: boolean
|
|
7303
|
+
|
|
7304
|
+
/**
|
|
7305
|
+
* 集群内部署组件的pod配置
|
|
7306
|
+
*/
|
|
7307
|
+
InClusterPodConfig?: PrometheusClusterAgentPodConfig
|
|
7308
|
+
|
|
7309
|
+
/**
|
|
7310
|
+
* 该集群采集的所有指标都会带上这些labels
|
|
7311
|
+
*/
|
|
7312
|
+
ExternalLabels?: Array<Label>
|
|
7313
|
+
|
|
7314
|
+
/**
|
|
7315
|
+
* 是否安装默认采集配置
|
|
7316
|
+
*/
|
|
7317
|
+
NotInstallBasicScrape?: boolean
|
|
7318
|
+
|
|
7319
|
+
/**
|
|
7320
|
+
* 是否采集指标,true代表drop所有指标,false代表采集默认指标
|
|
7321
|
+
*/
|
|
7322
|
+
NotScrape?: boolean
|
|
7323
|
+
}
|
|
7324
|
+
|
|
7230
7325
|
/**
|
|
7231
7326
|
* DeleteTKEEdgeCluster返回参数结构体
|
|
7232
7327
|
*/
|
|
@@ -18,10 +18,12 @@
|
|
|
18
18
|
import { AbstractClient } from "../../../common/abstract_client"
|
|
19
19
|
import { ClientConfig } from "../../../common/interface"
|
|
20
20
|
import {
|
|
21
|
+
DescribeProjectResponse,
|
|
22
|
+
DescribeProjectRequest,
|
|
21
23
|
DescribeTaskInstancesRequest,
|
|
22
|
-
DescribeTaskInstancesData,
|
|
23
|
-
TaskInstanceInfo,
|
|
24
24
|
DescribeTaskInstancesResponse,
|
|
25
|
+
TaskInstanceInfo,
|
|
26
|
+
DescribeTaskInstancesData,
|
|
25
27
|
OrderField,
|
|
26
28
|
DescribeRelatedInstancesRequest,
|
|
27
29
|
DescribeRelatedInstancesResponse,
|
|
@@ -36,6 +38,16 @@ export class Client extends AbstractClient {
|
|
|
36
38
|
super("wedata.tencentcloudapi.com", "2021-08-20", clientConfig)
|
|
37
39
|
}
|
|
38
40
|
|
|
41
|
+
/**
|
|
42
|
+
* 获取项目信息
|
|
43
|
+
*/
|
|
44
|
+
async DescribeProject(
|
|
45
|
+
req: DescribeProjectRequest,
|
|
46
|
+
cb?: (error: string, rep: DescribeProjectResponse) => void
|
|
47
|
+
): Promise<DescribeProjectResponse> {
|
|
48
|
+
return this.request("DescribeProject", req, cb)
|
|
49
|
+
}
|
|
50
|
+
|
|
39
51
|
/**
|
|
40
52
|
* 查询任务实例的关联实例列表
|
|
41
53
|
*/
|
|
@@ -15,6 +15,56 @@
|
|
|
15
15
|
* under the License.
|
|
16
16
|
*/
|
|
17
17
|
|
|
18
|
+
/**
|
|
19
|
+
* DescribeProject返回参数结构体
|
|
20
|
+
*/
|
|
21
|
+
export interface DescribeProjectResponse {
|
|
22
|
+
/**
|
|
23
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
24
|
+
*/
|
|
25
|
+
RequestId?: string
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* DescribeProject请求参数结构体
|
|
30
|
+
*/
|
|
31
|
+
export interface DescribeProjectRequest {
|
|
32
|
+
/**
|
|
33
|
+
* 项目id。一般使用项目Id来查询,与projectName必须存在一个。
|
|
34
|
+
*/
|
|
35
|
+
ProjectId?: string
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* 是否展示关联集群信息
|
|
39
|
+
*/
|
|
40
|
+
DescribeClusters?: boolean
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* 是否展示关联执行组的信息,仅部分信息。
|
|
44
|
+
*/
|
|
45
|
+
DescribeExecutors?: boolean
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* 默认不展示项目管理员信息
|
|
49
|
+
*/
|
|
50
|
+
DescribeAdminUsers?: boolean
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* 默认不统计项目人员数量
|
|
54
|
+
*/
|
|
55
|
+
DescribeMemberCount?: boolean
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* 默认不查询创建者的信息
|
|
59
|
+
*/
|
|
60
|
+
DescribeCreator?: boolean
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* 项目名只在租户内唯一,一般用来转化为项目ID。
|
|
64
|
+
*/
|
|
65
|
+
ProjectName?: string
|
|
66
|
+
}
|
|
67
|
+
|
|
18
68
|
/**
|
|
19
69
|
* DescribeTaskInstances请求参数结构体
|
|
20
70
|
*/
|
|
@@ -96,28 +146,18 @@ export interface DescribeTaskInstancesRequest {
|
|
|
96
146
|
}
|
|
97
147
|
|
|
98
148
|
/**
|
|
99
|
-
*
|
|
149
|
+
* DescribeTaskInstances返回参数结构体
|
|
100
150
|
*/
|
|
101
|
-
export interface
|
|
102
|
-
/**
|
|
103
|
-
* 实例列表
|
|
104
|
-
*/
|
|
105
|
-
Items: Array<TaskInstanceInfo>
|
|
106
|
-
|
|
107
|
-
/**
|
|
108
|
-
* 总条数
|
|
109
|
-
*/
|
|
110
|
-
TotalCount: number
|
|
111
|
-
|
|
151
|
+
export interface DescribeTaskInstancesResponse {
|
|
112
152
|
/**
|
|
113
|
-
*
|
|
153
|
+
* 无
|
|
114
154
|
*/
|
|
115
|
-
|
|
155
|
+
Data: DescribeTaskInstancesData
|
|
116
156
|
|
|
117
157
|
/**
|
|
118
|
-
*
|
|
158
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
119
159
|
*/
|
|
120
|
-
|
|
160
|
+
RequestId?: string
|
|
121
161
|
}
|
|
122
162
|
|
|
123
163
|
/**
|
|
@@ -258,18 +298,28 @@ export interface TaskInstanceInfo {
|
|
|
258
298
|
}
|
|
259
299
|
|
|
260
300
|
/**
|
|
261
|
-
*
|
|
301
|
+
* 查询任务实例列表
|
|
262
302
|
*/
|
|
263
|
-
export interface
|
|
303
|
+
export interface DescribeTaskInstancesData {
|
|
264
304
|
/**
|
|
265
|
-
*
|
|
305
|
+
* 实例列表
|
|
266
306
|
*/
|
|
267
|
-
|
|
307
|
+
Items: Array<TaskInstanceInfo>
|
|
268
308
|
|
|
269
309
|
/**
|
|
270
|
-
*
|
|
310
|
+
* 总条数
|
|
271
311
|
*/
|
|
272
|
-
|
|
312
|
+
TotalCount: number
|
|
313
|
+
|
|
314
|
+
/**
|
|
315
|
+
* 页号
|
|
316
|
+
*/
|
|
317
|
+
PageNumber: number
|
|
318
|
+
|
|
319
|
+
/**
|
|
320
|
+
* 页大小
|
|
321
|
+
*/
|
|
322
|
+
PageSize: number
|
|
273
323
|
}
|
|
274
324
|
|
|
275
325
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const sdkVersion = "4.0.
|
|
1
|
+
export declare const sdkVersion = "4.0.375";
|
|
@@ -1177,7 +1177,7 @@ export interface BoundIpInfo {
|
|
|
1177
1177
|
*/
|
|
1178
1178
|
InstanceId?: string;
|
|
1179
1179
|
/**
|
|
1180
|
-
* 产品分类下的子类型,绑定操作为必填项,解绑操作可不填。取值[cvm(CVM),lb(负载均衡器),eni(弹性网卡),vpngw(VPN),natgw(NAT),waf(WAF),fpc(金融),gaap(GAAP),other(托管IP),eip
|
|
1180
|
+
* 产品分类下的子类型,绑定操作为必填项,解绑操作可不填。取值[cvm(CVM),lb(负载均衡器),eni(弹性网卡),vpngw(VPN),natgw(NAT),waf(WAF),fpc(金融),gaap(GAAP),other(托管IP),eip(弹性公网常规IP)]
|
|
1181
1181
|
*/
|
|
1182
1182
|
DeviceType?: string;
|
|
1183
1183
|
/**
|
|
@@ -2503,7 +2503,8 @@ export interface CreateScalingPolicyRequest {
|
|
|
2503
2503
|
*/
|
|
2504
2504
|
Cooldown?: number;
|
|
2505
2505
|
/**
|
|
2506
|
-
*
|
|
2506
|
+
* 此参数已不再生效,请使用[创建通知](https://cloud.tencent.com/document/api/377/33185)。
|
|
2507
|
+
通知组ID,即为用户组ID集合。
|
|
2507
2508
|
*/
|
|
2508
2509
|
NotificationUserGroupIds?: Array<string>;
|
|
2509
2510
|
}
|
|
@@ -173,7 +173,7 @@ export declare class Client extends AbstractClient {
|
|
|
173
173
|
|
|
174
174
|
* 不再使用的云盘,可通过本接口主动退还。
|
|
175
175
|
* 本接口支持退还预付费云盘和按小时后付费云盘。按小时后付费云盘可直接退还,预付费云盘需符合退还规则。
|
|
176
|
-
* 支持批量操作,每次请求批量云硬盘的上限为
|
|
176
|
+
* 支持批量操作,每次请求批量云硬盘的上限为100。如果批量云盘存在不允许操作的,请求会以特定错误码返回。
|
|
177
177
|
*/
|
|
178
178
|
TerminateDisks(req: TerminateDisksRequest, cb?: (error: string, rep: TerminateDisksResponse) => void): Promise<TerminateDisksResponse>;
|
|
179
179
|
/**
|
|
@@ -243,7 +243,7 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
243
243
|
|
|
244
244
|
* 不再使用的云盘,可通过本接口主动退还。
|
|
245
245
|
* 本接口支持退还预付费云盘和按小时后付费云盘。按小时后付费云盘可直接退还,预付费云盘需符合退还规则。
|
|
246
|
-
* 支持批量操作,每次请求批量云硬盘的上限为
|
|
246
|
+
* 支持批量操作,每次请求批量云硬盘的上限为100。如果批量云盘存在不允许操作的,请求会以特定错误码返回。
|
|
247
247
|
*/
|
|
248
248
|
async TerminateDisks(req, cb) {
|
|
249
249
|
return this.request("TerminateDisks", req, cb);
|
|
@@ -10,6 +10,14 @@ export interface QueryFlexPaymentOrderStatusRequest {
|
|
|
10
10
|
* 订单ID
|
|
11
11
|
*/
|
|
12
12
|
OrderId?: string;
|
|
13
|
+
/**
|
|
14
|
+
* 环境类型
|
|
15
|
+
__release__:生产环境
|
|
16
|
+
__sandbox__:沙箱环境
|
|
17
|
+
__test__:测试环境
|
|
18
|
+
缺省默认为生产环境
|
|
19
|
+
*/
|
|
20
|
+
Environment?: string;
|
|
13
21
|
}
|
|
14
22
|
/**
|
|
15
23
|
* QueryAcctBinding请求参数结构体
|
|
@@ -2715,6 +2723,10 @@ FAILED:已失败
|
|
|
2715
2723
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2716
2724
|
*/
|
|
2717
2725
|
Remark: string;
|
|
2726
|
+
/**
|
|
2727
|
+
* 收款用户ID
|
|
2728
|
+
*/
|
|
2729
|
+
PayeeId: string;
|
|
2718
2730
|
}
|
|
2719
2731
|
/**
|
|
2720
2732
|
* DistributeAddReceiver请求参数结构体
|
|
@@ -3108,6 +3120,22 @@ export interface QueryFlexSettlementOrderListRequest {
|
|
|
3108
3120
|
* 分页
|
|
3109
3121
|
*/
|
|
3110
3122
|
PageNumber: Paging;
|
|
3123
|
+
/**
|
|
3124
|
+
* 操作类型。
|
|
3125
|
+
ENABLE_SETTLE: 正常结算
|
|
3126
|
+
DISABLE_SETTLE: 停用结算
|
|
3127
|
+
UNFREEZE_SETTLE: 解冻结算
|
|
3128
|
+
若需要支持多个操作类型,则以;分隔
|
|
3129
|
+
*/
|
|
3130
|
+
OperationType?: string;
|
|
3131
|
+
/**
|
|
3132
|
+
* 环境类型
|
|
3133
|
+
__release__:生产环境
|
|
3134
|
+
__sandbox__:沙箱环境
|
|
3135
|
+
__test__:测试环境
|
|
3136
|
+
缺省默认为生产环境
|
|
3137
|
+
*/
|
|
3138
|
+
Environment?: string;
|
|
3111
3139
|
}
|
|
3112
3140
|
/**
|
|
3113
3141
|
* RefundCloudOrder请求参数结构体
|
|
@@ -3891,6 +3919,14 @@ ENABLE:启用
|
|
|
3891
3919
|
DISABLE:停用
|
|
3892
3920
|
*/
|
|
3893
3921
|
AccountRightStatus: string;
|
|
3922
|
+
/**
|
|
3923
|
+
* 环境类型
|
|
3924
|
+
__release__:生产环境
|
|
3925
|
+
__sandbox__:沙箱环境
|
|
3926
|
+
__test__:测试环境
|
|
3927
|
+
缺省默认为生产环境
|
|
3928
|
+
*/
|
|
3929
|
+
Environment?: string;
|
|
3894
3930
|
}
|
|
3895
3931
|
/**
|
|
3896
3932
|
* QueryMaliciousRegistration返回参数结构体
|
|
@@ -4645,6 +4681,14 @@ LABOR:劳务所得
|
|
|
4645
4681
|
OCCASION:偶然所得
|
|
4646
4682
|
*/
|
|
4647
4683
|
IncomeType: string;
|
|
4684
|
+
/**
|
|
4685
|
+
* 环境类型
|
|
4686
|
+
__release__:生产环境
|
|
4687
|
+
__sandbox__:沙箱环境
|
|
4688
|
+
__test__:测试环境
|
|
4689
|
+
缺省默认为生产环境
|
|
4690
|
+
*/
|
|
4691
|
+
Environment?: string;
|
|
4648
4692
|
}
|
|
4649
4693
|
/**
|
|
4650
4694
|
* ContractOrder请求参数结构体
|
|
@@ -8190,6 +8234,14 @@ export interface QueryFlexPayeeInfoRequest {
|
|
|
8190
8234
|
* 外部用户ID
|
|
8191
8235
|
*/
|
|
8192
8236
|
OutUserId?: string;
|
|
8237
|
+
/**
|
|
8238
|
+
* 环境类型
|
|
8239
|
+
__release__:生产环境
|
|
8240
|
+
__sandbox__:沙箱环境
|
|
8241
|
+
__test__:测试环境
|
|
8242
|
+
缺省默认为生产环境
|
|
8243
|
+
*/
|
|
8244
|
+
Environment?: string;
|
|
8193
8245
|
}
|
|
8194
8246
|
/**
|
|
8195
8247
|
* RegisterBehavior返回参数结构体
|
|
@@ -8710,6 +8762,14 @@ export interface QueryFlexPaymentOrderListRequest {
|
|
|
8710
8762
|
* 分页
|
|
8711
8763
|
*/
|
|
8712
8764
|
PageNumber: Paging;
|
|
8765
|
+
/**
|
|
8766
|
+
* 环境类型
|
|
8767
|
+
__release__:生产环境
|
|
8768
|
+
__sandbox__:沙箱环境
|
|
8769
|
+
__test__:测试环境
|
|
8770
|
+
缺省默认为生产环境
|
|
8771
|
+
*/
|
|
8772
|
+
Environment?: string;
|
|
8713
8773
|
}
|
|
8714
8774
|
/**
|
|
8715
8775
|
* FreezeFlexBalance请求参数结构体
|
|
@@ -8743,6 +8803,14 @@ UNFREEZE:解冻
|
|
|
8743
8803
|
* 冻结备注
|
|
8744
8804
|
*/
|
|
8745
8805
|
Remark?: string;
|
|
8806
|
+
/**
|
|
8807
|
+
* 环境类型
|
|
8808
|
+
__release__:生产环境
|
|
8809
|
+
__sandbox__:沙箱环境
|
|
8810
|
+
__test__:测试环境
|
|
8811
|
+
缺省默认为生产环境
|
|
8812
|
+
*/
|
|
8813
|
+
Environment?: string;
|
|
8746
8814
|
}
|
|
8747
8815
|
/**
|
|
8748
8816
|
* BindRelateAccReUnionPay请求参数结构体
|
|
@@ -9455,6 +9523,14 @@ OCCASION:偶然所得
|
|
|
9455
9523
|
* 提现备注
|
|
9456
9524
|
*/
|
|
9457
9525
|
Remark?: string;
|
|
9526
|
+
/**
|
|
9527
|
+
* 环境类型
|
|
9528
|
+
__release__:生产环境
|
|
9529
|
+
__sandbox__:沙箱环境
|
|
9530
|
+
__test__:测试环境
|
|
9531
|
+
缺省默认为生产环境
|
|
9532
|
+
*/
|
|
9533
|
+
Environment?: string;
|
|
9458
9534
|
}
|
|
9459
9535
|
/**
|
|
9460
9536
|
* 第三方渠道数据信息
|
|
@@ -12816,6 +12892,14 @@ OCCASION:偶然所得
|
|
|
12816
12892
|
* 备注
|
|
12817
12893
|
*/
|
|
12818
12894
|
Remark: string;
|
|
12895
|
+
/**
|
|
12896
|
+
* 环境类型
|
|
12897
|
+
__release__:生产环境
|
|
12898
|
+
__sandbox__:沙箱环境
|
|
12899
|
+
__test__:测试环境
|
|
12900
|
+
缺省默认为生产环境
|
|
12901
|
+
*/
|
|
12902
|
+
Environment?: string;
|
|
12819
12903
|
}
|
|
12820
12904
|
/**
|
|
12821
12905
|
* QueryFlexPayeeAccountInfo请求参数结构体
|
|
@@ -12829,6 +12913,14 @@ export interface QueryFlexPayeeAccountInfoRequest {
|
|
|
12829
12913
|
* 外部用户ID
|
|
12830
12914
|
*/
|
|
12831
12915
|
OutUserId?: string;
|
|
12916
|
+
/**
|
|
12917
|
+
* 环境类型
|
|
12918
|
+
__release__:生产环境
|
|
12919
|
+
__sandbox__:沙箱环境
|
|
12920
|
+
__test__:测试环境
|
|
12921
|
+
缺省默认为生产环境
|
|
12922
|
+
*/
|
|
12923
|
+
Environment?: string;
|
|
12832
12924
|
}
|
|
12833
12925
|
/**
|
|
12834
12926
|
* QueryOpenBankBillDataPage返回参数结构体
|
|
@@ -13815,6 +13907,14 @@ UNFREEZE:解冻
|
|
|
13815
13907
|
* 分页
|
|
13816
13908
|
*/
|
|
13817
13909
|
PageNumber: Paging;
|
|
13910
|
+
/**
|
|
13911
|
+
* 环境类型
|
|
13912
|
+
__release__:生产环境
|
|
13913
|
+
__sandbox__:沙箱环境
|
|
13914
|
+
__test__:测试环境
|
|
13915
|
+
缺省默认为生产环境
|
|
13916
|
+
*/
|
|
13917
|
+
Environment?: string;
|
|
13818
13918
|
}
|
|
13819
13919
|
/**
|
|
13820
13920
|
* QueryTransferResult请求参数结构体
|
|
@@ -15243,6 +15343,14 @@ OCCASION:偶然所得
|
|
|
15243
15343
|
* 税后金额
|
|
15244
15344
|
*/
|
|
15245
15345
|
AmountAfterTax: string;
|
|
15346
|
+
/**
|
|
15347
|
+
* 环境类型
|
|
15348
|
+
__release__:生产环境
|
|
15349
|
+
__sandbox__:沙箱环境
|
|
15350
|
+
__test__:测试环境
|
|
15351
|
+
缺省默认为生产环境
|
|
15352
|
+
*/
|
|
15353
|
+
Environment?: string;
|
|
15246
15354
|
}
|
|
15247
15355
|
/**
|
|
15248
15356
|
* CreateSinglePay返回参数结构体
|
|
@@ -16313,6 +16421,14 @@ export interface QueryFlexPayeeAccountListRequest {
|
|
|
16313
16421
|
* 分页
|
|
16314
16422
|
*/
|
|
16315
16423
|
PageNumber?: Paging;
|
|
16424
|
+
/**
|
|
16425
|
+
* 环境类型
|
|
16426
|
+
__release__:生产环境
|
|
16427
|
+
__sandbox__:沙箱环境
|
|
16428
|
+
__test__:测试环境
|
|
16429
|
+
缺省默认为生产环境
|
|
16430
|
+
*/
|
|
16431
|
+
Environment?: string;
|
|
16316
16432
|
}
|
|
16317
16433
|
/**
|
|
16318
16434
|
* QueryOpenBankBankAccountBalance返回参数结构体
|
|
@@ -19402,6 +19518,18 @@ export interface CreateFlexPayeeRequest {
|
|
|
19402
19518
|
* 备注
|
|
19403
19519
|
*/
|
|
19404
19520
|
Remark?: string;
|
|
19521
|
+
/**
|
|
19522
|
+
* 手机号码
|
|
19523
|
+
*/
|
|
19524
|
+
PhoneNo?: string;
|
|
19525
|
+
/**
|
|
19526
|
+
* 环境类型
|
|
19527
|
+
__release__:生产环境
|
|
19528
|
+
__sandbox__:沙箱环境
|
|
19529
|
+
__test__:测试环境
|
|
19530
|
+
缺省默认为生产环境
|
|
19531
|
+
*/
|
|
19532
|
+
Environment?: string;
|
|
19405
19533
|
}
|
|
19406
19534
|
/**
|
|
19407
19535
|
* 主播签约信息
|