tencentcloud-sdk-nodejs-intl-en 3.0.1355 → 3.0.1356
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/package.json +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/dc/v20180410/dc_client.js +1 -2
- package/tencentcloud/dc/v20180410/models.js +89 -22
- package/tencentcloud/gwlb/v20240906/models.js +89 -0
- package/tencentcloud/hunyuan/v20230901/hunyuan_client.js +29 -3
- package/tencentcloud/hunyuan/v20230901/models.js +241 -66
- package/tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.js +23 -9
- package/tencentcloud/intlpartnersmgt/v20220928/models.js +376 -240
- package/tencentcloud/sms/v20210111/models.js +21 -5
- package/tencentcloud/sms/v20210111/sms_client.js +2 -4
- package/tencentcloud/ssl/v20191205/models.js +464 -0
- package/tencentcloud/ssl/v20191205/ssl_client.js +26 -0
- package/tencentcloud/teo/v20220901/models.js +2 -2
- package/tencentcloud/teo/v20220901/teo_client.js +1 -1
|
@@ -94,6 +94,91 @@ class SummaryDetails extends AbstractModel {
|
|
|
94
94
|
}
|
|
95
95
|
}
|
|
96
96
|
|
|
97
|
+
/**
|
|
98
|
+
* DescribeCustomerOwnVoucherUsageDetails response structure.
|
|
99
|
+
* @class
|
|
100
|
+
*/
|
|
101
|
+
class DescribeCustomerOwnVoucherUsageDetailsResponse extends AbstractModel {
|
|
102
|
+
constructor(){
|
|
103
|
+
super();
|
|
104
|
+
|
|
105
|
+
/**
|
|
106
|
+
* Voucher information details
|
|
107
|
+
* @type {Array.<UsageDetail> || null}
|
|
108
|
+
*/
|
|
109
|
+
this.Data = null;
|
|
110
|
+
|
|
111
|
+
/**
|
|
112
|
+
* Voucher ID.
|
|
113
|
+
* @type {number || null}
|
|
114
|
+
*/
|
|
115
|
+
this.VoucherId = null;
|
|
116
|
+
|
|
117
|
+
/**
|
|
118
|
+
* Total voucher amount
|
|
119
|
+
* @type {number || null}
|
|
120
|
+
*/
|
|
121
|
+
this.TotalAmount = null;
|
|
122
|
+
|
|
123
|
+
/**
|
|
124
|
+
* Voucher balance
|
|
125
|
+
* @type {number || null}
|
|
126
|
+
*/
|
|
127
|
+
this.RemainAmount = null;
|
|
128
|
+
|
|
129
|
+
/**
|
|
130
|
+
* Total number of records
|
|
131
|
+
* @type {number || null}
|
|
132
|
+
*/
|
|
133
|
+
this.TotalRecordsCount = null;
|
|
134
|
+
|
|
135
|
+
/**
|
|
136
|
+
* Voucher Usage Month
|
|
137
|
+
* @type {string || null}
|
|
138
|
+
*/
|
|
139
|
+
this.Month = null;
|
|
140
|
+
|
|
141
|
+
/**
|
|
142
|
+
* Number of records in the current month
|
|
143
|
+
* @type {number || null}
|
|
144
|
+
*/
|
|
145
|
+
this.RecordsCountByMonth = null;
|
|
146
|
+
|
|
147
|
+
/**
|
|
148
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
149
|
+
* @type {string || null}
|
|
150
|
+
*/
|
|
151
|
+
this.RequestId = null;
|
|
152
|
+
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
/**
|
|
156
|
+
* @private
|
|
157
|
+
*/
|
|
158
|
+
deserialize(params) {
|
|
159
|
+
if (!params) {
|
|
160
|
+
return;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
if (params.Data) {
|
|
164
|
+
this.Data = new Array();
|
|
165
|
+
for (let z in params.Data) {
|
|
166
|
+
let obj = new UsageDetail();
|
|
167
|
+
obj.deserialize(params.Data[z]);
|
|
168
|
+
this.Data.push(obj);
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
this.VoucherId = 'VoucherId' in params ? params.VoucherId : null;
|
|
172
|
+
this.TotalAmount = 'TotalAmount' in params ? params.TotalAmount : null;
|
|
173
|
+
this.RemainAmount = 'RemainAmount' in params ? params.RemainAmount : null;
|
|
174
|
+
this.TotalRecordsCount = 'TotalRecordsCount' in params ? params.TotalRecordsCount : null;
|
|
175
|
+
this.Month = 'Month' in params ? params.Month : null;
|
|
176
|
+
this.RecordsCountByMonth = 'RecordsCountByMonth' in params ? params.RecordsCountByMonth : null;
|
|
177
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
178
|
+
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
|
|
97
182
|
/**
|
|
98
183
|
* DescribeCustomerVoucherList response structure.
|
|
99
184
|
* @class
|
|
@@ -404,196 +489,24 @@ class CreateAndSendClientInvitationMailResponse extends AbstractModel {
|
|
|
404
489
|
}
|
|
405
490
|
|
|
406
491
|
/**
|
|
407
|
-
*
|
|
492
|
+
* QueryPendingClientsV2 request structure.
|
|
408
493
|
* @class
|
|
409
494
|
*/
|
|
410
|
-
class
|
|
495
|
+
class QueryPendingClientsV2Request extends AbstractModel {
|
|
411
496
|
constructor(){
|
|
412
497
|
super();
|
|
413
498
|
|
|
414
499
|
/**
|
|
415
|
-
*
|
|
416
|
-
* @type {number || null}
|
|
417
|
-
*/
|
|
418
|
-
this.PayerAccountId = null;
|
|
419
|
-
|
|
420
|
-
/**
|
|
421
|
-
* Sub-Customer account.
|
|
500
|
+
* Page number, starting from 1.
|
|
422
501
|
* @type {number || null}
|
|
423
502
|
*/
|
|
424
|
-
this.
|
|
503
|
+
this.Page = null;
|
|
425
504
|
|
|
426
505
|
/**
|
|
427
|
-
*
|
|
506
|
+
* Quantity. page size [1-100].
|
|
428
507
|
* @type {number || null}
|
|
429
508
|
*/
|
|
430
|
-
this.
|
|
431
|
-
|
|
432
|
-
/**
|
|
433
|
-
* Product name.
|
|
434
|
-
* @type {string || null}
|
|
435
|
-
*/
|
|
436
|
-
this.ProductName = null;
|
|
437
|
-
|
|
438
|
-
/**
|
|
439
|
-
* Billing mode
|
|
440
|
-
.
|
|
441
|
-
Monthly subscription.
|
|
442
|
-
Pay-As-You-Go resources.
|
|
443
|
-
Standard ri reserved instances.
|
|
444
|
-
* @type {string || null}
|
|
445
|
-
*/
|
|
446
|
-
this.BillingMode = null;
|
|
447
|
-
|
|
448
|
-
/**
|
|
449
|
-
* Project name.
|
|
450
|
-
.
|
|
451
|
-
|
|
452
|
-
* @type {string || null}
|
|
453
|
-
*/
|
|
454
|
-
this.ProjectName = null;
|
|
455
|
-
|
|
456
|
-
/**
|
|
457
|
-
* Resource region.
|
|
458
|
-
* @type {string || null}
|
|
459
|
-
*/
|
|
460
|
-
this.Region = null;
|
|
461
|
-
|
|
462
|
-
/**
|
|
463
|
-
* Resource availability zone.
|
|
464
|
-
* @type {string || null}
|
|
465
|
-
*/
|
|
466
|
-
this.AvailabilityZone = null;
|
|
467
|
-
|
|
468
|
-
/**
|
|
469
|
-
* Instance id.
|
|
470
|
-
* @type {string || null}
|
|
471
|
-
*/
|
|
472
|
-
this.InstanceId = null;
|
|
473
|
-
|
|
474
|
-
/**
|
|
475
|
-
* Instance name.
|
|
476
|
-
* @type {string || null}
|
|
477
|
-
*/
|
|
478
|
-
this.InstanceName = null;
|
|
479
|
-
|
|
480
|
-
/**
|
|
481
|
-
* Sub-Product name
|
|
482
|
-
.
|
|
483
|
-
|
|
484
|
-
* @type {string || null}
|
|
485
|
-
*/
|
|
486
|
-
this.SubProductName = null;
|
|
487
|
-
|
|
488
|
-
/**
|
|
489
|
-
* Settlement type.
|
|
490
|
-
* @type {string || null}
|
|
491
|
-
*/
|
|
492
|
-
this.TransactionType = null;
|
|
493
|
-
|
|
494
|
-
/**
|
|
495
|
-
* Transaction flow id.
|
|
496
|
-
* @type {string || null}
|
|
497
|
-
*/
|
|
498
|
-
this.TransactionId = null;
|
|
499
|
-
|
|
500
|
-
/**
|
|
501
|
-
* Settlement time.
|
|
502
|
-
|
|
503
|
-
* @type {string || null}
|
|
504
|
-
*/
|
|
505
|
-
this.TransactionTime = null;
|
|
506
|
-
|
|
507
|
-
/**
|
|
508
|
-
* Resource start time.
|
|
509
|
-
* @type {string || null}
|
|
510
|
-
*/
|
|
511
|
-
this.UsageStartTime = null;
|
|
512
|
-
|
|
513
|
-
/**
|
|
514
|
-
* Resource end time.
|
|
515
|
-
* @type {string || null}
|
|
516
|
-
*/
|
|
517
|
-
this.UsageEndTime = null;
|
|
518
|
-
|
|
519
|
-
/**
|
|
520
|
-
* Component.
|
|
521
|
-
* @type {string || null}
|
|
522
|
-
*/
|
|
523
|
-
this.ComponentType = null;
|
|
524
|
-
|
|
525
|
-
/**
|
|
526
|
-
* Component name.
|
|
527
|
-
* @type {string || null}
|
|
528
|
-
*/
|
|
529
|
-
this.ComponentName = null;
|
|
530
|
-
|
|
531
|
-
/**
|
|
532
|
-
* Component list price.
|
|
533
|
-
* @type {string || null}
|
|
534
|
-
*/
|
|
535
|
-
this.ComponentListPrice = null;
|
|
536
|
-
|
|
537
|
-
/**
|
|
538
|
-
* Price unit.
|
|
539
|
-
* @type {string || null}
|
|
540
|
-
*/
|
|
541
|
-
this.ComponentPriceMeasurementUnit = null;
|
|
542
|
-
|
|
543
|
-
/**
|
|
544
|
-
* Component usage.
|
|
545
|
-
* @type {string || null}
|
|
546
|
-
*/
|
|
547
|
-
this.ComponentUsage = null;
|
|
548
|
-
|
|
549
|
-
/**
|
|
550
|
-
* Component usage unit.
|
|
551
|
-
* @type {string || null}
|
|
552
|
-
*/
|
|
553
|
-
this.ComponentUsageUnit = null;
|
|
554
|
-
|
|
555
|
-
/**
|
|
556
|
-
* Resource usage duration.
|
|
557
|
-
* @type {string || null}
|
|
558
|
-
*/
|
|
559
|
-
this.UsageDuration = null;
|
|
560
|
-
|
|
561
|
-
/**
|
|
562
|
-
* duration unit.
|
|
563
|
-
* @type {string || null}
|
|
564
|
-
*/
|
|
565
|
-
this.DurationUnit = null;
|
|
566
|
-
|
|
567
|
-
/**
|
|
568
|
-
* Total original price.
|
|
569
|
-
Original cost = component list price * component usage * usage duration.
|
|
570
|
-
* @type {string || null}
|
|
571
|
-
*/
|
|
572
|
-
this.OriginalCost = null;
|
|
573
|
-
|
|
574
|
-
/**
|
|
575
|
-
* Currency.
|
|
576
|
-
* @type {string || null}
|
|
577
|
-
*/
|
|
578
|
-
this.Currency = null;
|
|
579
|
-
|
|
580
|
-
/**
|
|
581
|
-
* = Total Amount After Discount - Voucher Deduction
|
|
582
|
-
* @type {string || null}
|
|
583
|
-
*/
|
|
584
|
-
this.TotalCost = null;
|
|
585
|
-
|
|
586
|
-
/**
|
|
587
|
-
* Id identifier.
|
|
588
|
-
* @type {string || null}
|
|
589
|
-
*/
|
|
590
|
-
this.Id = null;
|
|
591
|
-
|
|
592
|
-
/**
|
|
593
|
-
* Tag information.
|
|
594
|
-
* @type {Array.<TagInfo> || null}
|
|
595
|
-
*/
|
|
596
|
-
this.Tags = null;
|
|
509
|
+
this.PageSize = null;
|
|
597
510
|
|
|
598
511
|
}
|
|
599
512
|
|
|
@@ -604,43 +517,8 @@ Original cost = component list price * component usage * usage duration.
|
|
|
604
517
|
if (!params) {
|
|
605
518
|
return;
|
|
606
519
|
}
|
|
607
|
-
this.
|
|
608
|
-
this.
|
|
609
|
-
this.OperatorAccountId = 'OperatorAccountId' in params ? params.OperatorAccountId : null;
|
|
610
|
-
this.ProductName = 'ProductName' in params ? params.ProductName : null;
|
|
611
|
-
this.BillingMode = 'BillingMode' in params ? params.BillingMode : null;
|
|
612
|
-
this.ProjectName = 'ProjectName' in params ? params.ProjectName : null;
|
|
613
|
-
this.Region = 'Region' in params ? params.Region : null;
|
|
614
|
-
this.AvailabilityZone = 'AvailabilityZone' in params ? params.AvailabilityZone : null;
|
|
615
|
-
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
616
|
-
this.InstanceName = 'InstanceName' in params ? params.InstanceName : null;
|
|
617
|
-
this.SubProductName = 'SubProductName' in params ? params.SubProductName : null;
|
|
618
|
-
this.TransactionType = 'TransactionType' in params ? params.TransactionType : null;
|
|
619
|
-
this.TransactionId = 'TransactionId' in params ? params.TransactionId : null;
|
|
620
|
-
this.TransactionTime = 'TransactionTime' in params ? params.TransactionTime : null;
|
|
621
|
-
this.UsageStartTime = 'UsageStartTime' in params ? params.UsageStartTime : null;
|
|
622
|
-
this.UsageEndTime = 'UsageEndTime' in params ? params.UsageEndTime : null;
|
|
623
|
-
this.ComponentType = 'ComponentType' in params ? params.ComponentType : null;
|
|
624
|
-
this.ComponentName = 'ComponentName' in params ? params.ComponentName : null;
|
|
625
|
-
this.ComponentListPrice = 'ComponentListPrice' in params ? params.ComponentListPrice : null;
|
|
626
|
-
this.ComponentPriceMeasurementUnit = 'ComponentPriceMeasurementUnit' in params ? params.ComponentPriceMeasurementUnit : null;
|
|
627
|
-
this.ComponentUsage = 'ComponentUsage' in params ? params.ComponentUsage : null;
|
|
628
|
-
this.ComponentUsageUnit = 'ComponentUsageUnit' in params ? params.ComponentUsageUnit : null;
|
|
629
|
-
this.UsageDuration = 'UsageDuration' in params ? params.UsageDuration : null;
|
|
630
|
-
this.DurationUnit = 'DurationUnit' in params ? params.DurationUnit : null;
|
|
631
|
-
this.OriginalCost = 'OriginalCost' in params ? params.OriginalCost : null;
|
|
632
|
-
this.Currency = 'Currency' in params ? params.Currency : null;
|
|
633
|
-
this.TotalCost = 'TotalCost' in params ? params.TotalCost : null;
|
|
634
|
-
this.Id = 'Id' in params ? params.Id : null;
|
|
635
|
-
|
|
636
|
-
if (params.Tags) {
|
|
637
|
-
this.Tags = new Array();
|
|
638
|
-
for (let z in params.Tags) {
|
|
639
|
-
let obj = new TagInfo();
|
|
640
|
-
obj.deserialize(params.Tags[z]);
|
|
641
|
-
this.Tags.push(obj);
|
|
642
|
-
}
|
|
643
|
-
}
|
|
520
|
+
this.Page = 'Page' in params ? params.Page : null;
|
|
521
|
+
this.PageSize = 'PageSize' in params ? params.PageSize : null;
|
|
644
522
|
|
|
645
523
|
}
|
|
646
524
|
}
|
|
@@ -3641,16 +3519,71 @@ class DescribeCustomerInfoResponse extends AbstractModel {
|
|
|
3641
3519
|
super();
|
|
3642
3520
|
|
|
3643
3521
|
/**
|
|
3644
|
-
* Sub-Customer information.
|
|
3645
|
-
* @type {Array.<DescribeCustomerInfoData> || null}
|
|
3522
|
+
* Sub-Customer information.
|
|
3523
|
+
* @type {Array.<DescribeCustomerInfoData> || null}
|
|
3524
|
+
*/
|
|
3525
|
+
this.Data = null;
|
|
3526
|
+
|
|
3527
|
+
/**
|
|
3528
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
3529
|
+
* @type {string || null}
|
|
3530
|
+
*/
|
|
3531
|
+
this.RequestId = null;
|
|
3532
|
+
|
|
3533
|
+
}
|
|
3534
|
+
|
|
3535
|
+
/**
|
|
3536
|
+
* @private
|
|
3537
|
+
*/
|
|
3538
|
+
deserialize(params) {
|
|
3539
|
+
if (!params) {
|
|
3540
|
+
return;
|
|
3541
|
+
}
|
|
3542
|
+
|
|
3543
|
+
if (params.Data) {
|
|
3544
|
+
this.Data = new Array();
|
|
3545
|
+
for (let z in params.Data) {
|
|
3546
|
+
let obj = new DescribeCustomerInfoData();
|
|
3547
|
+
obj.deserialize(params.Data[z]);
|
|
3548
|
+
this.Data.push(obj);
|
|
3549
|
+
}
|
|
3550
|
+
}
|
|
3551
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
3552
|
+
|
|
3553
|
+
}
|
|
3554
|
+
}
|
|
3555
|
+
|
|
3556
|
+
/**
|
|
3557
|
+
* DescribeCustomerOwnVoucherUsageDetails request structure.
|
|
3558
|
+
* @class
|
|
3559
|
+
*/
|
|
3560
|
+
class DescribeCustomerOwnVoucherUsageDetailsRequest extends AbstractModel {
|
|
3561
|
+
constructor(){
|
|
3562
|
+
super();
|
|
3563
|
+
|
|
3564
|
+
/**
|
|
3565
|
+
* Page number, starting from 1
|
|
3566
|
+
* @type {number || null}
|
|
3567
|
+
*/
|
|
3568
|
+
this.Page = null;
|
|
3569
|
+
|
|
3570
|
+
/**
|
|
3571
|
+
* Number of items per page, range 1-100
|
|
3572
|
+
* @type {number || null}
|
|
3646
3573
|
*/
|
|
3647
|
-
this.
|
|
3574
|
+
this.PageSize = null;
|
|
3648
3575
|
|
|
3649
3576
|
/**
|
|
3650
|
-
*
|
|
3577
|
+
* Voucher ID
|
|
3578
|
+
* @type {number || null}
|
|
3579
|
+
*/
|
|
3580
|
+
this.VoucherId = null;
|
|
3581
|
+
|
|
3582
|
+
/**
|
|
3583
|
+
* Voucher usage month
|
|
3651
3584
|
* @type {string || null}
|
|
3652
3585
|
*/
|
|
3653
|
-
this.
|
|
3586
|
+
this.Month = null;
|
|
3654
3587
|
|
|
3655
3588
|
}
|
|
3656
3589
|
|
|
@@ -3661,16 +3594,10 @@ class DescribeCustomerInfoResponse extends AbstractModel {
|
|
|
3661
3594
|
if (!params) {
|
|
3662
3595
|
return;
|
|
3663
3596
|
}
|
|
3664
|
-
|
|
3665
|
-
|
|
3666
|
-
|
|
3667
|
-
|
|
3668
|
-
let obj = new DescribeCustomerInfoData();
|
|
3669
|
-
obj.deserialize(params.Data[z]);
|
|
3670
|
-
this.Data.push(obj);
|
|
3671
|
-
}
|
|
3672
|
-
}
|
|
3673
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
3597
|
+
this.Page = 'Page' in params ? params.Page : null;
|
|
3598
|
+
this.PageSize = 'PageSize' in params ? params.PageSize : null;
|
|
3599
|
+
this.VoucherId = 'VoucherId' in params ? params.VoucherId : null;
|
|
3600
|
+
this.Month = 'Month' in params ? params.Month : null;
|
|
3674
3601
|
|
|
3675
3602
|
}
|
|
3676
3603
|
}
|
|
@@ -5143,24 +5070,196 @@ class ApproveClientApplyResponse extends AbstractModel {
|
|
|
5143
5070
|
}
|
|
5144
5071
|
|
|
5145
5072
|
/**
|
|
5146
|
-
*
|
|
5073
|
+
* Customer bill details
|
|
5147
5074
|
* @class
|
|
5148
5075
|
*/
|
|
5149
|
-
class
|
|
5076
|
+
class CustomerBillDetailData extends AbstractModel {
|
|
5150
5077
|
constructor(){
|
|
5151
5078
|
super();
|
|
5152
5079
|
|
|
5153
5080
|
/**
|
|
5154
|
-
*
|
|
5081
|
+
* Distributor account.
|
|
5155
5082
|
* @type {number || null}
|
|
5156
5083
|
*/
|
|
5157
|
-
this.
|
|
5084
|
+
this.PayerAccountId = null;
|
|
5158
5085
|
|
|
5159
5086
|
/**
|
|
5160
|
-
*
|
|
5087
|
+
* Sub-Customer account.
|
|
5161
5088
|
* @type {number || null}
|
|
5162
5089
|
*/
|
|
5163
|
-
this.
|
|
5090
|
+
this.OwnerAccountId = null;
|
|
5091
|
+
|
|
5092
|
+
/**
|
|
5093
|
+
* Operator account.
|
|
5094
|
+
* @type {number || null}
|
|
5095
|
+
*/
|
|
5096
|
+
this.OperatorAccountId = null;
|
|
5097
|
+
|
|
5098
|
+
/**
|
|
5099
|
+
* Product name.
|
|
5100
|
+
* @type {string || null}
|
|
5101
|
+
*/
|
|
5102
|
+
this.ProductName = null;
|
|
5103
|
+
|
|
5104
|
+
/**
|
|
5105
|
+
* Billing mode
|
|
5106
|
+
.
|
|
5107
|
+
Monthly subscription.
|
|
5108
|
+
Pay-As-You-Go resources.
|
|
5109
|
+
Standard ri reserved instances.
|
|
5110
|
+
* @type {string || null}
|
|
5111
|
+
*/
|
|
5112
|
+
this.BillingMode = null;
|
|
5113
|
+
|
|
5114
|
+
/**
|
|
5115
|
+
* Project name.
|
|
5116
|
+
.
|
|
5117
|
+
|
|
5118
|
+
* @type {string || null}
|
|
5119
|
+
*/
|
|
5120
|
+
this.ProjectName = null;
|
|
5121
|
+
|
|
5122
|
+
/**
|
|
5123
|
+
* Resource region.
|
|
5124
|
+
* @type {string || null}
|
|
5125
|
+
*/
|
|
5126
|
+
this.Region = null;
|
|
5127
|
+
|
|
5128
|
+
/**
|
|
5129
|
+
* Resource availability zone.
|
|
5130
|
+
* @type {string || null}
|
|
5131
|
+
*/
|
|
5132
|
+
this.AvailabilityZone = null;
|
|
5133
|
+
|
|
5134
|
+
/**
|
|
5135
|
+
* Instance id.
|
|
5136
|
+
* @type {string || null}
|
|
5137
|
+
*/
|
|
5138
|
+
this.InstanceId = null;
|
|
5139
|
+
|
|
5140
|
+
/**
|
|
5141
|
+
* Instance name.
|
|
5142
|
+
* @type {string || null}
|
|
5143
|
+
*/
|
|
5144
|
+
this.InstanceName = null;
|
|
5145
|
+
|
|
5146
|
+
/**
|
|
5147
|
+
* Sub-Product name
|
|
5148
|
+
.
|
|
5149
|
+
|
|
5150
|
+
* @type {string || null}
|
|
5151
|
+
*/
|
|
5152
|
+
this.SubProductName = null;
|
|
5153
|
+
|
|
5154
|
+
/**
|
|
5155
|
+
* Settlement type.
|
|
5156
|
+
* @type {string || null}
|
|
5157
|
+
*/
|
|
5158
|
+
this.TransactionType = null;
|
|
5159
|
+
|
|
5160
|
+
/**
|
|
5161
|
+
* Transaction flow id.
|
|
5162
|
+
* @type {string || null}
|
|
5163
|
+
*/
|
|
5164
|
+
this.TransactionId = null;
|
|
5165
|
+
|
|
5166
|
+
/**
|
|
5167
|
+
* Settlement time.
|
|
5168
|
+
|
|
5169
|
+
* @type {string || null}
|
|
5170
|
+
*/
|
|
5171
|
+
this.TransactionTime = null;
|
|
5172
|
+
|
|
5173
|
+
/**
|
|
5174
|
+
* Resource start time.
|
|
5175
|
+
* @type {string || null}
|
|
5176
|
+
*/
|
|
5177
|
+
this.UsageStartTime = null;
|
|
5178
|
+
|
|
5179
|
+
/**
|
|
5180
|
+
* Resource end time.
|
|
5181
|
+
* @type {string || null}
|
|
5182
|
+
*/
|
|
5183
|
+
this.UsageEndTime = null;
|
|
5184
|
+
|
|
5185
|
+
/**
|
|
5186
|
+
* Component.
|
|
5187
|
+
* @type {string || null}
|
|
5188
|
+
*/
|
|
5189
|
+
this.ComponentType = null;
|
|
5190
|
+
|
|
5191
|
+
/**
|
|
5192
|
+
* Component name.
|
|
5193
|
+
* @type {string || null}
|
|
5194
|
+
*/
|
|
5195
|
+
this.ComponentName = null;
|
|
5196
|
+
|
|
5197
|
+
/**
|
|
5198
|
+
* Component list price.
|
|
5199
|
+
* @type {string || null}
|
|
5200
|
+
*/
|
|
5201
|
+
this.ComponentListPrice = null;
|
|
5202
|
+
|
|
5203
|
+
/**
|
|
5204
|
+
* Price unit.
|
|
5205
|
+
* @type {string || null}
|
|
5206
|
+
*/
|
|
5207
|
+
this.ComponentPriceMeasurementUnit = null;
|
|
5208
|
+
|
|
5209
|
+
/**
|
|
5210
|
+
* Component usage.
|
|
5211
|
+
* @type {string || null}
|
|
5212
|
+
*/
|
|
5213
|
+
this.ComponentUsage = null;
|
|
5214
|
+
|
|
5215
|
+
/**
|
|
5216
|
+
* Component usage unit.
|
|
5217
|
+
* @type {string || null}
|
|
5218
|
+
*/
|
|
5219
|
+
this.ComponentUsageUnit = null;
|
|
5220
|
+
|
|
5221
|
+
/**
|
|
5222
|
+
* Resource usage duration.
|
|
5223
|
+
* @type {string || null}
|
|
5224
|
+
*/
|
|
5225
|
+
this.UsageDuration = null;
|
|
5226
|
+
|
|
5227
|
+
/**
|
|
5228
|
+
* duration unit.
|
|
5229
|
+
* @type {string || null}
|
|
5230
|
+
*/
|
|
5231
|
+
this.DurationUnit = null;
|
|
5232
|
+
|
|
5233
|
+
/**
|
|
5234
|
+
* Total original price.
|
|
5235
|
+
Original cost = component list price * component usage * usage duration.
|
|
5236
|
+
* @type {string || null}
|
|
5237
|
+
*/
|
|
5238
|
+
this.OriginalCost = null;
|
|
5239
|
+
|
|
5240
|
+
/**
|
|
5241
|
+
* Currency.
|
|
5242
|
+
* @type {string || null}
|
|
5243
|
+
*/
|
|
5244
|
+
this.Currency = null;
|
|
5245
|
+
|
|
5246
|
+
/**
|
|
5247
|
+
* = Total Amount After Discount - Voucher Deduction
|
|
5248
|
+
* @type {string || null}
|
|
5249
|
+
*/
|
|
5250
|
+
this.TotalCost = null;
|
|
5251
|
+
|
|
5252
|
+
/**
|
|
5253
|
+
* Id identifier.
|
|
5254
|
+
* @type {string || null}
|
|
5255
|
+
*/
|
|
5256
|
+
this.Id = null;
|
|
5257
|
+
|
|
5258
|
+
/**
|
|
5259
|
+
* Tag information.
|
|
5260
|
+
* @type {Array.<TagInfo> || null}
|
|
5261
|
+
*/
|
|
5262
|
+
this.Tags = null;
|
|
5164
5263
|
|
|
5165
5264
|
}
|
|
5166
5265
|
|
|
@@ -5171,8 +5270,43 @@ class QueryPendingClientsV2Request extends AbstractModel {
|
|
|
5171
5270
|
if (!params) {
|
|
5172
5271
|
return;
|
|
5173
5272
|
}
|
|
5174
|
-
this.
|
|
5175
|
-
this.
|
|
5273
|
+
this.PayerAccountId = 'PayerAccountId' in params ? params.PayerAccountId : null;
|
|
5274
|
+
this.OwnerAccountId = 'OwnerAccountId' in params ? params.OwnerAccountId : null;
|
|
5275
|
+
this.OperatorAccountId = 'OperatorAccountId' in params ? params.OperatorAccountId : null;
|
|
5276
|
+
this.ProductName = 'ProductName' in params ? params.ProductName : null;
|
|
5277
|
+
this.BillingMode = 'BillingMode' in params ? params.BillingMode : null;
|
|
5278
|
+
this.ProjectName = 'ProjectName' in params ? params.ProjectName : null;
|
|
5279
|
+
this.Region = 'Region' in params ? params.Region : null;
|
|
5280
|
+
this.AvailabilityZone = 'AvailabilityZone' in params ? params.AvailabilityZone : null;
|
|
5281
|
+
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
5282
|
+
this.InstanceName = 'InstanceName' in params ? params.InstanceName : null;
|
|
5283
|
+
this.SubProductName = 'SubProductName' in params ? params.SubProductName : null;
|
|
5284
|
+
this.TransactionType = 'TransactionType' in params ? params.TransactionType : null;
|
|
5285
|
+
this.TransactionId = 'TransactionId' in params ? params.TransactionId : null;
|
|
5286
|
+
this.TransactionTime = 'TransactionTime' in params ? params.TransactionTime : null;
|
|
5287
|
+
this.UsageStartTime = 'UsageStartTime' in params ? params.UsageStartTime : null;
|
|
5288
|
+
this.UsageEndTime = 'UsageEndTime' in params ? params.UsageEndTime : null;
|
|
5289
|
+
this.ComponentType = 'ComponentType' in params ? params.ComponentType : null;
|
|
5290
|
+
this.ComponentName = 'ComponentName' in params ? params.ComponentName : null;
|
|
5291
|
+
this.ComponentListPrice = 'ComponentListPrice' in params ? params.ComponentListPrice : null;
|
|
5292
|
+
this.ComponentPriceMeasurementUnit = 'ComponentPriceMeasurementUnit' in params ? params.ComponentPriceMeasurementUnit : null;
|
|
5293
|
+
this.ComponentUsage = 'ComponentUsage' in params ? params.ComponentUsage : null;
|
|
5294
|
+
this.ComponentUsageUnit = 'ComponentUsageUnit' in params ? params.ComponentUsageUnit : null;
|
|
5295
|
+
this.UsageDuration = 'UsageDuration' in params ? params.UsageDuration : null;
|
|
5296
|
+
this.DurationUnit = 'DurationUnit' in params ? params.DurationUnit : null;
|
|
5297
|
+
this.OriginalCost = 'OriginalCost' in params ? params.OriginalCost : null;
|
|
5298
|
+
this.Currency = 'Currency' in params ? params.Currency : null;
|
|
5299
|
+
this.TotalCost = 'TotalCost' in params ? params.TotalCost : null;
|
|
5300
|
+
this.Id = 'Id' in params ? params.Id : null;
|
|
5301
|
+
|
|
5302
|
+
if (params.Tags) {
|
|
5303
|
+
this.Tags = new Array();
|
|
5304
|
+
for (let z in params.Tags) {
|
|
5305
|
+
let obj = new TagInfo();
|
|
5306
|
+
obj.deserialize(params.Tags[z]);
|
|
5307
|
+
this.Tags.push(obj);
|
|
5308
|
+
}
|
|
5309
|
+
}
|
|
5176
5310
|
|
|
5177
5311
|
}
|
|
5178
5312
|
}
|
|
@@ -6233,6 +6367,7 @@ class SendVerifyCodeResponse extends AbstractModel {
|
|
|
6233
6367
|
|
|
6234
6368
|
module.exports = {
|
|
6235
6369
|
SummaryDetails: SummaryDetails,
|
|
6370
|
+
DescribeCustomerOwnVoucherUsageDetailsResponse: DescribeCustomerOwnVoucherUsageDetailsResponse,
|
|
6236
6371
|
DescribeCustomerVoucherListResponse: DescribeCustomerVoucherListResponse,
|
|
6237
6372
|
QueryDirectCustomersCreditData: QueryDirectCustomersCreditData,
|
|
6238
6373
|
DescribeCustomerOwnVoucherListRequest: DescribeCustomerOwnVoucherListRequest,
|
|
@@ -6240,7 +6375,7 @@ module.exports = {
|
|
|
6240
6375
|
TradeTwoNode: TradeTwoNode,
|
|
6241
6376
|
QueryT1IndirectCustomersDetailRequest: QueryT1IndirectCustomersDetailRequest,
|
|
6242
6377
|
CreateAndSendClientInvitationMailResponse: CreateAndSendClientInvitationMailResponse,
|
|
6243
|
-
|
|
6378
|
+
QueryPendingClientsV2Request: QueryPendingClientsV2Request,
|
|
6244
6379
|
RegionSummaryOverviewItem: RegionSummaryOverviewItem,
|
|
6245
6380
|
QuerySubAgentsDetailV2Response: QuerySubAgentsDetailV2Response,
|
|
6246
6381
|
DescribeCustomerBillDownloadUrlRequest: DescribeCustomerBillDownloadUrlRequest,
|
|
@@ -6300,6 +6435,7 @@ module.exports = {
|
|
|
6300
6435
|
QueryT1IndirectCustomersDetailResponseData: QueryT1IndirectCustomersDetailResponseData,
|
|
6301
6436
|
DescribeCustomerOwnVoucherItem: DescribeCustomerOwnVoucherItem,
|
|
6302
6437
|
DescribeCustomerInfoResponse: DescribeCustomerInfoResponse,
|
|
6438
|
+
DescribeCustomerOwnVoucherUsageDetailsRequest: DescribeCustomerOwnVoucherUsageDetailsRequest,
|
|
6303
6439
|
QueryVoucherPoolResponse: QueryVoucherPoolResponse,
|
|
6304
6440
|
QueryAccountVerificationStatusRequest: QueryAccountVerificationStatusRequest,
|
|
6305
6441
|
ActionSummaryOverviewItem: ActionSummaryOverviewItem,
|
|
@@ -6330,7 +6466,7 @@ module.exports = {
|
|
|
6330
6466
|
QueryCreditByUinListRequest: QueryCreditByUinListRequest,
|
|
6331
6467
|
CreateAccountResponse: CreateAccountResponse,
|
|
6332
6468
|
ApproveClientApplyResponse: ApproveClientApplyResponse,
|
|
6333
|
-
|
|
6469
|
+
CustomerBillDetailData: CustomerBillDetailData,
|
|
6334
6470
|
TagInfo: TagInfo,
|
|
6335
6471
|
QueryCreditByUinListResponse: QueryCreditByUinListResponse,
|
|
6336
6472
|
BusinessSummaryOverviewItem: BusinessSummaryOverviewItem,
|