tencentcloud-sdk-nodejs-svp 4.0.810 → 4.0.862

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.
@@ -52,3 +52,346 @@ export interface CreateSavingPlanOrderResponse {
52
52
  */
53
53
  RequestId?: string;
54
54
  }
55
+ /**
56
+ * DescribeSavingPlanDeduct请求参数结构体
57
+ */
58
+ export interface DescribeSavingPlanDeductRequest {
59
+ /**
60
+ * 分页偏移量
61
+ */
62
+ Offset: number;
63
+ /**
64
+ * 每页数量,最大值为200
65
+ */
66
+ Limit: number;
67
+ /**
68
+ * 节省计划使用开始的查询结束时间
69
+ */
70
+ StartEndDate: string;
71
+ /**
72
+ * 节省计划使用开始的查询开始时间
73
+ */
74
+ StartStartDate: string;
75
+ /**
76
+ * 地域编码
77
+ */
78
+ RegionId?: number;
79
+ /**
80
+ * 区域编码
81
+ */
82
+ ZoneId?: number;
83
+ /**
84
+ * 节省计划资源id
85
+ */
86
+ SpId?: string;
87
+ /**
88
+ * 抵扣查询结束时间,格式:yyyy-MM-dd HH:mm:ss
89
+ */
90
+ DeductEndDate?: string;
91
+ /**
92
+ * 抵扣查询开始时间,格式:yyyy-MM-dd HH:mm:ss
93
+ */
94
+ DeductStartDate?: string;
95
+ /**
96
+ * 节省计划使用结束的查询结束时间
97
+ */
98
+ EndEndDate?: string;
99
+ /**
100
+ * 节省计划使用结束的查询开始时间
101
+ */
102
+ EndStartDate?: string;
103
+ }
104
+ /**
105
+ * 节省计划总览明细数据
106
+ */
107
+ export interface SavingPlanOverviewDetail {
108
+ /**
109
+ * 节省计划类型
110
+ */
111
+ SpType?: string;
112
+ /**
113
+ * 支付金额(单位:元)
114
+ */
115
+ PayAmount?: string;
116
+ /**
117
+ * 开始时间 yyyy-mm-dd HH:mm:ss格式
118
+ */
119
+ StartTime?: string;
120
+ /**
121
+ * 结束时间 yyyy-mm-dd HH:mm:ss格式
122
+ */
123
+ EndTime?: string;
124
+ /**
125
+ * 状态
126
+ */
127
+ Status?: number;
128
+ /**
129
+ * 累计节省金额(单位:元)
130
+ */
131
+ SavingAmount?: string;
132
+ /**
133
+ * 地域
134
+ */
135
+ Region?: Array<string>;
136
+ /**
137
+ * 支付类型
138
+ 注意:此字段可能返回 null,表示取不到有效值。
139
+ */
140
+ PayType?: number;
141
+ /**
142
+ * 购买时间 yyyy-mm-dd HH:mm:ss格式
143
+ 注意:此字段可能返回 null,表示取不到有效值。
144
+ */
145
+ BuyTime?: string;
146
+ }
147
+ /**
148
+ * DescribeSavingPlanUsage请求参数结构体
149
+ */
150
+ export interface DescribeSavingPlanUsageRequest {
151
+ /**
152
+ * 开始时间,格式yyyy-MM-dd 注:查询范围请勿超过6个月
153
+ */
154
+ StartDate: string;
155
+ /**
156
+ * 结束时间,格式yyyy-MM-dd
157
+ */
158
+ EndDate: string;
159
+ /**
160
+ * 分页偏移量
161
+ */
162
+ Offset: number;
163
+ /**
164
+ * 每页数量,最大值为200
165
+ */
166
+ Limit: number;
167
+ /**
168
+ * 查询结果数据的时间间隔
169
+ */
170
+ TimeInterval: string;
171
+ }
172
+ /**
173
+ * 节省计划抵扣明细
174
+ */
175
+ export interface SavingPlanDeductDetail {
176
+ /**
177
+ * 账号id
178
+ 注意:此字段可能返回 null,表示取不到有效值。
179
+ */
180
+ OwnerUin?: string;
181
+ /**
182
+ * 账号名称
183
+ 注意:此字段可能返回 null,表示取不到有效值。
184
+ */
185
+ OwnerUinName?: string;
186
+ /**
187
+ * 抵扣账号id
188
+ 注意:此字段可能返回 null,表示取不到有效值。
189
+ */
190
+ PayerUin?: string;
191
+ /**
192
+ * 抵扣账号名称
193
+ 注意:此字段可能返回 null,表示取不到有效值。
194
+ */
195
+ PayerUinName?: string;
196
+ /**
197
+ * 节省计划资源id
198
+ 注意:此字段可能返回 null,表示取不到有效值。
199
+ */
200
+ SpId?: string;
201
+ /**
202
+ * 产品编码
203
+ 注意:此字段可能返回 null,表示取不到有效值。
204
+ */
205
+ ProductCode?: string;
206
+ /**
207
+ * 产品名称
208
+ 注意:此字段可能返回 null,表示取不到有效值。
209
+ */
210
+ ProductName?: string;
211
+ /**
212
+ * 子产品编码
213
+ 注意:此字段可能返回 null,表示取不到有效值。
214
+ */
215
+ SubProductCode?: string;
216
+ /**
217
+ * 子产品名称
218
+ 注意:此字段可能返回 null,表示取不到有效值。
219
+ */
220
+ SubProductName?: string;
221
+ /**
222
+ * 交易ID
223
+ 注意:此字段可能返回 null,表示取不到有效值。
224
+ */
225
+ OutTradeNo?: string;
226
+ /**
227
+ * 地域id
228
+ 注意:此字段可能返回 null,表示取不到有效值。
229
+ */
230
+ RegionId?: number;
231
+ /**
232
+ * 地域名称
233
+ 注意:此字段可能返回 null,表示取不到有效值。
234
+ */
235
+ RegionName?: string;
236
+ /**
237
+ * 地区id
238
+ 注意:此字段可能返回 null,表示取不到有效值。
239
+ */
240
+ ZoneId?: number;
241
+ /**
242
+ * 地区名称
243
+ 注意:此字段可能返回 null,表示取不到有效值。
244
+ */
245
+ ZoneName?: string;
246
+ /**
247
+ * 开始使用时间
248
+ 注意:此字段可能返回 null,表示取不到有效值。
249
+ */
250
+ SpStartTime?: string;
251
+ /**
252
+ * 结束使用时间
253
+ 注意:此字段可能返回 null,表示取不到有效值。
254
+ */
255
+ SpEndTime?: string;
256
+ /**
257
+ * 折扣时间
258
+ 注意:此字段可能返回 null,表示取不到有效值。
259
+ */
260
+ DeductTime?: string;
261
+ /**
262
+ * 抵扣金额,单位分
263
+ 注意:此字段可能返回 null,表示取不到有效值。
264
+ */
265
+ DeductAmount?: string;
266
+ /**
267
+ * 抵扣折扣率
268
+ 注意:此字段可能返回 null,表示取不到有效值。
269
+ */
270
+ DeductDiscount?: string;
271
+ /**
272
+ * 抵扣比率
273
+ 注意:此字段可能返回 null,表示取不到有效值。
274
+ */
275
+ DeductRate?: string;
276
+ }
277
+ /**
278
+ * DescribeSavingPlanOverview返回参数结构体
279
+ */
280
+ export interface DescribeSavingPlanOverviewResponse {
281
+ /**
282
+ * 节省计划总览明细数据
283
+ 注意:此字段可能返回 null,表示取不到有效值。
284
+ */
285
+ Overviews?: Array<SavingPlanOverviewDetail>;
286
+ /**
287
+ * 查询命中的节省计划总览明细数据总条数
288
+ */
289
+ Total?: number;
290
+ /**
291
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
292
+ */
293
+ RequestId?: string;
294
+ }
295
+ /**
296
+ * DescribeSavingPlanUsage返回参数结构体
297
+ */
298
+ export interface DescribeSavingPlanUsageResponse {
299
+ /**
300
+ * 查询命中的节省计划总览明细数据总条数
301
+ */
302
+ Total?: number;
303
+ /**
304
+ * 节省计划使用率数据
305
+ 注意:此字段可能返回 null,表示取不到有效值。
306
+ */
307
+ Usages?: Array<SavingPlanUsageDetail>;
308
+ /**
309
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
310
+ */
311
+ RequestId?: string;
312
+ }
313
+ /**
314
+ * DescribeSavingPlanDeduct返回参数结构体
315
+ */
316
+ export interface DescribeSavingPlanDeductResponse {
317
+ /**
318
+ * 查询命中的节省计划抵扣明细数据总条数
319
+ 注意:此字段可能返回 null,表示取不到有效值。
320
+ */
321
+ Total?: number;
322
+ /**
323
+ * 查询命中的节省计划抵扣明细数据明细
324
+ */
325
+ Deducts?: Array<SavingPlanDeductDetail>;
326
+ /**
327
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
328
+ */
329
+ RequestId?: string;
330
+ }
331
+ /**
332
+ * DescribeSavingPlanOverview请求参数结构体
333
+ */
334
+ export interface DescribeSavingPlanOverviewRequest {
335
+ /**
336
+ * 开始时间,格式yyyy-MM-dd 注:查询范围请勿超过6个月
337
+ */
338
+ StartDate: string;
339
+ /**
340
+ * 结束时间,格式yyyy-MM-dd
341
+ */
342
+ EndDate: string;
343
+ /**
344
+ * 分页偏移量
345
+ */
346
+ Offset: number;
347
+ /**
348
+ * 每页数量,最大值为200
349
+ */
350
+ Limit: number;
351
+ }
352
+ /**
353
+ * 节省计划使用率数据
354
+ */
355
+ export interface SavingPlanUsageDetail {
356
+ /**
357
+ * 节省计划类型
358
+ */
359
+ SpType?: string;
360
+ /**
361
+ * 节省计划状态
362
+ */
363
+ Status?: number;
364
+ /**
365
+ * 累计抵扣的金额(单位:元)
366
+ */
367
+ DeductAmount?: string;
368
+ /**
369
+ * 累计承诺消费金额(单位:元)
370
+ */
371
+ PromiseAmount?: string;
372
+ /**
373
+ * 累计净节省金额(单位:元)
374
+ */
375
+ NetSavings?: string;
376
+ /**
377
+ * 使用率
378
+ */
379
+ UtilizationRate?: number;
380
+ /**
381
+ * 累计流失金额(单位:元)
382
+ */
383
+ LossAmount?: string;
384
+ /**
385
+ * 累计按量计费预期金额(单位:元)
386
+ */
387
+ DosageAmount?: string;
388
+ /**
389
+ * 累计成本金额(单位:元)
390
+ */
391
+ CostAmount?: string;
392
+ /**
393
+ * 地域
394
+ 注意:此字段可能返回 null,表示取不到有效值。
395
+ */
396
+ Region?: Array<string>;
397
+ }