tencentcloud-sdk-nodejs-intl-en 3.0.1336 → 3.0.1338
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/billing/v20180709/models.js +92 -25
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/dlc/v20210125/dlc_client.js +2 -0
- package/tencentcloud/dlc/v20210125/models.js +211 -0
- package/tencentcloud/hunyuan/v20230901/hunyuan_client.js +28 -2
- package/tencentcloud/hunyuan/v20230901/models.js +222 -42
- package/tencentcloud/mps/v20190612/models.js +1357 -931
- package/tencentcloud/mps/v20190612/mps_client.js +92 -33
- package/tencentcloud/organization/v20210331/models.js +319 -140
- package/tencentcloud/organization/v20210331/organization_client.js +18 -4
- package/tencentcloud/redis/v20180412/models.js +1145 -1022
- package/tencentcloud/redis/v20180412/redis_client.js +15 -1
- package/tencentcloud/teo/v20220901/models.js +1755 -461
- package/tencentcloud/teo/v20220901/teo_client.js +38 -15
package/package.json
CHANGED
|
@@ -2860,19 +2860,29 @@ class VoucherInfos extends AbstractModel {
|
|
|
2860
2860
|
this.EndTime = null;
|
|
2861
2861
|
|
|
2862
2862
|
/**
|
|
2863
|
-
*
|
|
2864
|
-
Note: This field may return `null`, indicating that no valid value was found.
|
|
2863
|
+
* Product information applies to
|
|
2865
2864
|
* @type {ApplicableProducts || null}
|
|
2866
2865
|
*/
|
|
2867
2866
|
this.ApplicableProducts = null;
|
|
2868
2867
|
|
|
2869
2868
|
/**
|
|
2870
|
-
*
|
|
2871
|
-
Note: This field may return `null`, indicating that no valid value was found.
|
|
2869
|
+
* Product information not applicable
|
|
2872
2870
|
* @type {Array.<ExcludedProducts> || null}
|
|
2873
2871
|
*/
|
|
2874
2872
|
this.ExcludedProducts = null;
|
|
2875
2873
|
|
|
2874
|
+
/**
|
|
2875
|
+
* Instructions/Batch Remarks
|
|
2876
|
+
* @type {string || null}
|
|
2877
|
+
*/
|
|
2878
|
+
this.PolicyRemark = null;
|
|
2879
|
+
|
|
2880
|
+
/**
|
|
2881
|
+
* Coupon issuance time
|
|
2882
|
+
* @type {string || null}
|
|
2883
|
+
*/
|
|
2884
|
+
this.CreateTime = null;
|
|
2885
|
+
|
|
2876
2886
|
}
|
|
2877
2887
|
|
|
2878
2888
|
/**
|
|
@@ -2906,6 +2916,8 @@ Note: This field may return `null`, indicating that no valid value was found.
|
|
|
2906
2916
|
this.ExcludedProducts.push(obj);
|
|
2907
2917
|
}
|
|
2908
2918
|
}
|
|
2919
|
+
this.PolicyRemark = 'PolicyRemark' in params ? params.PolicyRemark : null;
|
|
2920
|
+
this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
|
|
2909
2921
|
|
|
2910
2922
|
}
|
|
2911
2923
|
}
|
|
@@ -9098,24 +9110,29 @@ class DescribeVoucherInfoResponse extends AbstractModel {
|
|
|
9098
9110
|
super();
|
|
9099
9111
|
|
|
9100
9112
|
/**
|
|
9101
|
-
*
|
|
9113
|
+
* <p>Total count</p>
|
|
9102
9114
|
* @type {number || null}
|
|
9103
9115
|
*/
|
|
9104
9116
|
this.TotalCount = null;
|
|
9105
9117
|
|
|
9106
9118
|
/**
|
|
9107
|
-
*
|
|
9119
|
+
* <p>Total balance (differential)</p>
|
|
9108
9120
|
* @type {number || null}
|
|
9109
9121
|
*/
|
|
9110
9122
|
this.TotalBalance = null;
|
|
9111
9123
|
|
|
9112
9124
|
/**
|
|
9113
|
-
*
|
|
9114
|
-
Note: This field may return `null`, indicating that no valid value was found.
|
|
9125
|
+
* <p>Voucher information related to</p>
|
|
9115
9126
|
* @type {Array.<VoucherInfos> || null}
|
|
9116
9127
|
*/
|
|
9117
9128
|
this.VoucherInfos = null;
|
|
9118
9129
|
|
|
9130
|
+
/**
|
|
9131
|
+
* <p>Unit of the amount field in the API response</p><p>Default value: micro</p><p>Currency unit: micro (microcent)<br>Voucher issuance and use are processed with 8-digit high-precision, so the currency unit defaults to micro (microcent). If CNY or USD is needed, convert using the following formula:<br>CNY: 1 micro = 0.00000001 yuan<br>USD: 1 micro = 0.00000001 USD</p>
|
|
9132
|
+
* @type {string || null}
|
|
9133
|
+
*/
|
|
9134
|
+
this.Unit = null;
|
|
9135
|
+
|
|
9119
9136
|
/**
|
|
9120
9137
|
* 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.
|
|
9121
9138
|
* @type {string || null}
|
|
@@ -9142,6 +9159,7 @@ Note: This field may return `null`, indicating that no valid value was found.
|
|
|
9142
9159
|
this.VoucherInfos.push(obj);
|
|
9143
9160
|
}
|
|
9144
9161
|
}
|
|
9162
|
+
this.Unit = 'Unit' in params ? params.Unit : null;
|
|
9145
9163
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
9146
9164
|
|
|
9147
9165
|
}
|
|
@@ -9637,107 +9655,149 @@ class DescribeVoucherInfoRequest extends AbstractModel {
|
|
|
9637
9655
|
super();
|
|
9638
9656
|
|
|
9639
9657
|
/**
|
|
9640
|
-
*
|
|
9658
|
+
* <p>How many data entries per page, 20 is selected by default, maximum not exceeding 1000</p>
|
|
9641
9659
|
* @type {number || null}
|
|
9642
9660
|
*/
|
|
9643
9661
|
this.Limit = null;
|
|
9644
9662
|
|
|
9645
9663
|
/**
|
|
9646
|
-
*
|
|
9664
|
+
* <p>Page number, starts from 1 by default</p>
|
|
9647
9665
|
* @type {number || null}
|
|
9648
9666
|
*/
|
|
9649
9667
|
this.Offset = null;
|
|
9650
9668
|
|
|
9651
9669
|
/**
|
|
9652
|
-
*
|
|
9670
|
+
* <p>Voucher status: pending use: unUsed, Used: used, delivered: delivered, discarded: cancel, expired: overdue</p>
|
|
9653
9671
|
* @type {string || null}
|
|
9654
9672
|
*/
|
|
9655
9673
|
this.Status = null;
|
|
9656
9674
|
|
|
9657
9675
|
/**
|
|
9658
|
-
*
|
|
9676
|
+
* <p>Voucher id</p>
|
|
9659
9677
|
* @type {string || null}
|
|
9660
9678
|
*/
|
|
9661
9679
|
this.VoucherId = null;
|
|
9662
9680
|
|
|
9663
9681
|
/**
|
|
9664
|
-
*
|
|
9682
|
+
* <p>Voucher order id</p>
|
|
9665
9683
|
* @type {string || null}
|
|
9666
9684
|
*/
|
|
9667
9685
|
this.CodeId = null;
|
|
9668
9686
|
|
|
9669
9687
|
/**
|
|
9670
|
-
*
|
|
9688
|
+
* <p>product code</p>
|
|
9671
9689
|
* @type {string || null}
|
|
9672
9690
|
*/
|
|
9673
9691
|
this.ProductCode = null;
|
|
9674
9692
|
|
|
9675
9693
|
/**
|
|
9676
|
-
*
|
|
9694
|
+
* <p>Activity id</p>
|
|
9677
9695
|
* @type {string || null}
|
|
9678
9696
|
*/
|
|
9679
9697
|
this.ActivityId = null;
|
|
9680
9698
|
|
|
9681
9699
|
/**
|
|
9682
|
-
*
|
|
9700
|
+
* <p>Voucher name</p>
|
|
9683
9701
|
* @type {string || null}
|
|
9684
9702
|
*/
|
|
9685
9703
|
this.VoucherName = null;
|
|
9686
9704
|
|
|
9687
9705
|
/**
|
|
9688
|
-
*
|
|
9706
|
+
* <p>Start time of delivery. Example: 2021-01-01</p>
|
|
9689
9707
|
* @type {string || null}
|
|
9690
9708
|
*/
|
|
9691
9709
|
this.TimeFrom = null;
|
|
9692
9710
|
|
|
9693
9711
|
/**
|
|
9694
|
-
*
|
|
9712
|
+
* <p>Delivery end time. Example: 2021-01-01</p>
|
|
9695
9713
|
* @type {string || null}
|
|
9696
9714
|
*/
|
|
9697
9715
|
this.TimeTo = null;
|
|
9698
9716
|
|
|
9699
9717
|
/**
|
|
9700
|
-
*
|
|
9718
|
+
* <p>Specified sorting field: BeginTime start time, EndTime expiry time, CreateTime creation time</p>
|
|
9701
9719
|
* @type {string || null}
|
|
9702
9720
|
*/
|
|
9703
9721
|
this.SortField = null;
|
|
9704
9722
|
|
|
9705
9723
|
/**
|
|
9706
|
-
*
|
|
9724
|
+
* <p>Specify ascending/descending order: desc, asc</p>
|
|
9707
9725
|
* @type {string || null}
|
|
9708
9726
|
*/
|
|
9709
9727
|
this.SortOrder = null;
|
|
9710
9728
|
|
|
9711
9729
|
/**
|
|
9712
|
-
*
|
|
9730
|
+
* <p>Payment mode, postPay (postpaid)/prePay (prepaid)/riPay (reserved instance)/"" or "*" means all modes. If payMode is "" or "*", productCode and subProductCode must be empty.</p>
|
|
9713
9731
|
* @type {string || null}
|
|
9714
9732
|
*/
|
|
9715
9733
|
this.PayMode = null;
|
|
9716
9734
|
|
|
9717
9735
|
/**
|
|
9718
|
-
*
|
|
9736
|
+
* <p>Payment scenario PayMode=postPay: spotpay - spot instance, "settle account" - standard post-paid. PayMode=prePay: purchase - monthly subscription new purchase, renew - annual and monthly renewal (auto renewal), modify - monthly subscription configuration change. PayMode=riPay: oneOffFee - prepayment of reserved instance, hourlyFee - hourly charge for reserved instance, * - support all payment scenarios.</p>
|
|
9719
9737
|
* @type {string || null}
|
|
9720
9738
|
*/
|
|
9721
9739
|
this.PayScene = null;
|
|
9722
9740
|
|
|
9723
9741
|
/**
|
|
9724
|
-
*
|
|
9742
|
+
* <p>Operator is used by default as user uin</p>
|
|
9725
9743
|
* @type {string || null}
|
|
9726
9744
|
*/
|
|
9727
9745
|
this.Operator = null;
|
|
9728
9746
|
|
|
9729
9747
|
/**
|
|
9730
|
-
* The primary types of vouchers are has_price and no_price, which represent the cash voucher with a price and the cash voucher without a price respectively
|
|
9748
|
+
* <p>The primary types of vouchers are has_price and no_price, which represent the cash voucher with a price and the cash voucher without a price respectively.</p>
|
|
9731
9749
|
* @type {string || null}
|
|
9732
9750
|
*/
|
|
9733
9751
|
this.VoucherMainType = null;
|
|
9734
9752
|
|
|
9735
9753
|
/**
|
|
9736
|
-
* Voucher subtype: Discount is a discount voucher, and deduct is a deduction voucher
|
|
9754
|
+
* <p>Voucher subtype: Discount is a discount voucher, and deduct is a deduction voucher.</p>
|
|
9737
9755
|
* @type {string || null}
|
|
9738
9756
|
*/
|
|
9739
9757
|
this.VoucherSubType = null;
|
|
9740
9758
|
|
|
9759
|
+
/**
|
|
9760
|
+
* <p>Voucher validity start time</p>
|
|
9761
|
+
* @type {string || null}
|
|
9762
|
+
*/
|
|
9763
|
+
this.StartTimeFrom = null;
|
|
9764
|
+
|
|
9765
|
+
/**
|
|
9766
|
+
* <p>Voucher validity time end time</p>
|
|
9767
|
+
* @type {string || null}
|
|
9768
|
+
*/
|
|
9769
|
+
this.StartTimeTo = null;
|
|
9770
|
+
|
|
9771
|
+
/**
|
|
9772
|
+
* <p>Voucher expiration time start time</p>
|
|
9773
|
+
* @type {string || null}
|
|
9774
|
+
*/
|
|
9775
|
+
this.EndTimeFrom = null;
|
|
9776
|
+
|
|
9777
|
+
/**
|
|
9778
|
+
* <p>Voucher expiration time end time</p>
|
|
9779
|
+
* @type {string || null}
|
|
9780
|
+
*/
|
|
9781
|
+
this.EndTimeTo = null;
|
|
9782
|
+
|
|
9783
|
+
/**
|
|
9784
|
+
* <p>Voucher issuance start time</p>
|
|
9785
|
+
* @type {string || null}
|
|
9786
|
+
*/
|
|
9787
|
+
this.CreateTimeFrom = null;
|
|
9788
|
+
|
|
9789
|
+
/**
|
|
9790
|
+
* <p>Voucher issuance time end time</p>
|
|
9791
|
+
* @type {string || null}
|
|
9792
|
+
*/
|
|
9793
|
+
this.CreateTimeTo = null;
|
|
9794
|
+
|
|
9795
|
+
/**
|
|
9796
|
+
* <p>Language parameter</p><p>Default value: zh</p><p>Expect the product name to return in Chinese or other languages. Currently only support Chinese and English. Return in Chinese when "zh" is entered or left blank; return in English in other cases.</p>
|
|
9797
|
+
* @type {string || null}
|
|
9798
|
+
*/
|
|
9799
|
+
this.Lang = null;
|
|
9800
|
+
|
|
9741
9801
|
}
|
|
9742
9802
|
|
|
9743
9803
|
/**
|
|
@@ -9764,6 +9824,13 @@ class DescribeVoucherInfoRequest extends AbstractModel {
|
|
|
9764
9824
|
this.Operator = 'Operator' in params ? params.Operator : null;
|
|
9765
9825
|
this.VoucherMainType = 'VoucherMainType' in params ? params.VoucherMainType : null;
|
|
9766
9826
|
this.VoucherSubType = 'VoucherSubType' in params ? params.VoucherSubType : null;
|
|
9827
|
+
this.StartTimeFrom = 'StartTimeFrom' in params ? params.StartTimeFrom : null;
|
|
9828
|
+
this.StartTimeTo = 'StartTimeTo' in params ? params.StartTimeTo : null;
|
|
9829
|
+
this.EndTimeFrom = 'EndTimeFrom' in params ? params.EndTimeFrom : null;
|
|
9830
|
+
this.EndTimeTo = 'EndTimeTo' in params ? params.EndTimeTo : null;
|
|
9831
|
+
this.CreateTimeFrom = 'CreateTimeFrom' in params ? params.CreateTimeFrom : null;
|
|
9832
|
+
this.CreateTimeTo = 'CreateTimeTo' in params ? params.CreateTimeTo : null;
|
|
9833
|
+
this.Lang = 'Lang' in params ? params.Lang : null;
|
|
9767
9834
|
|
|
9768
9835
|
}
|
|
9769
9836
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.1338";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -118,6 +118,7 @@ const DeleteCHDFSBindingProductRequest = models.DeleteCHDFSBindingProductRequest
|
|
|
118
118
|
const UpdateDataEngineResponse = models.UpdateDataEngineResponse;
|
|
119
119
|
const DescribeTaskStatisticsResponse = models.DescribeTaskStatisticsResponse;
|
|
120
120
|
const DeleteUserResponse = models.DeleteUserResponse;
|
|
121
|
+
const SortOrder = models.SortOrder;
|
|
121
122
|
const SparkSessionBatchLog = models.SparkSessionBatchLog;
|
|
122
123
|
const DescribeEngineUsageInfoRequest = models.DescribeEngineUsageInfoRequest;
|
|
123
124
|
const SmartOptimizerWrittenPolicy = models.SmartOptimizerWrittenPolicy;
|
|
@@ -213,6 +214,7 @@ const VpcCidrBlock = models.VpcCidrBlock;
|
|
|
213
214
|
const RenewDataEngineRequest = models.RenewDataEngineRequest;
|
|
214
215
|
const DescribeTaskResultRequest = models.DescribeTaskResultRequest;
|
|
215
216
|
const UpdateUserDataEngineConfigRequest = models.UpdateUserDataEngineConfigRequest;
|
|
217
|
+
const WrittenAdvancePolicy = models.WrittenAdvancePolicy;
|
|
216
218
|
const Filter = models.Filter;
|
|
217
219
|
const DescribeLakeFsDirSummaryResponse = models.DescribeLakeFsDirSummaryResponse;
|
|
218
220
|
const TableBaseInfo = models.TableBaseInfo;
|
|
@@ -4595,6 +4595,12 @@ class DescribeDLCTableListRequest extends AbstractModel {
|
|
|
4595
4595
|
*/
|
|
4596
4596
|
this.TableFormat = null;
|
|
4597
4597
|
|
|
4598
|
+
/**
|
|
4599
|
+
*
|
|
4600
|
+
* @type {string || null}
|
|
4601
|
+
*/
|
|
4602
|
+
this.DatasourceConnectionName = null;
|
|
4603
|
+
|
|
4598
4604
|
}
|
|
4599
4605
|
|
|
4600
4606
|
/**
|
|
@@ -4620,6 +4626,7 @@ class DescribeDLCTableListRequest extends AbstractModel {
|
|
|
4620
4626
|
this.Sort = 'Sort' in params ? params.Sort : null;
|
|
4621
4627
|
this.Asc = 'Asc' in params ? params.Asc : null;
|
|
4622
4628
|
this.TableFormat = 'TableFormat' in params ? params.TableFormat : null;
|
|
4629
|
+
this.DatasourceConnectionName = 'DatasourceConnectionName' in params ? params.DatasourceConnectionName : null;
|
|
4623
4630
|
|
|
4624
4631
|
}
|
|
4625
4632
|
}
|
|
@@ -5637,6 +5644,48 @@ class DeleteUserResponse extends AbstractModel {
|
|
|
5637
5644
|
}
|
|
5638
5645
|
}
|
|
5639
5646
|
|
|
5647
|
+
/**
|
|
5648
|
+
*
|
|
5649
|
+
* @class
|
|
5650
|
+
*/
|
|
5651
|
+
class SortOrder extends AbstractModel {
|
|
5652
|
+
constructor(){
|
|
5653
|
+
super();
|
|
5654
|
+
|
|
5655
|
+
/**
|
|
5656
|
+
*
|
|
5657
|
+
* @type {string || null}
|
|
5658
|
+
*/
|
|
5659
|
+
this.Column = null;
|
|
5660
|
+
|
|
5661
|
+
/**
|
|
5662
|
+
*
|
|
5663
|
+
* @type {string || null}
|
|
5664
|
+
*/
|
|
5665
|
+
this.SortDirection = null;
|
|
5666
|
+
|
|
5667
|
+
/**
|
|
5668
|
+
*
|
|
5669
|
+
* @type {string || null}
|
|
5670
|
+
*/
|
|
5671
|
+
this.NullOrder = null;
|
|
5672
|
+
|
|
5673
|
+
}
|
|
5674
|
+
|
|
5675
|
+
/**
|
|
5676
|
+
* @private
|
|
5677
|
+
*/
|
|
5678
|
+
deserialize(params) {
|
|
5679
|
+
if (!params) {
|
|
5680
|
+
return;
|
|
5681
|
+
}
|
|
5682
|
+
this.Column = 'Column' in params ? params.Column : null;
|
|
5683
|
+
this.SortDirection = 'SortDirection' in params ? params.SortDirection : null;
|
|
5684
|
+
this.NullOrder = 'NullOrder' in params ? params.NullOrder : null;
|
|
5685
|
+
|
|
5686
|
+
}
|
|
5687
|
+
}
|
|
5688
|
+
|
|
5640
5689
|
/**
|
|
5641
5690
|
* Running logs of a Spark SQL batch job
|
|
5642
5691
|
* @class
|
|
@@ -5741,6 +5790,12 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
5741
5790
|
*/
|
|
5742
5791
|
this.WrittenEnable = null;
|
|
5743
5792
|
|
|
5793
|
+
/**
|
|
5794
|
+
*
|
|
5795
|
+
* @type {WrittenAdvancePolicy || null}
|
|
5796
|
+
*/
|
|
5797
|
+
this.AdvancePolicy = null;
|
|
5798
|
+
|
|
5744
5799
|
}
|
|
5745
5800
|
|
|
5746
5801
|
/**
|
|
@@ -5752,6 +5807,12 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
5752
5807
|
}
|
|
5753
5808
|
this.WrittenEnable = 'WrittenEnable' in params ? params.WrittenEnable : null;
|
|
5754
5809
|
|
|
5810
|
+
if (params.AdvancePolicy) {
|
|
5811
|
+
let obj = new WrittenAdvancePolicy();
|
|
5812
|
+
obj.deserialize(params.AdvancePolicy)
|
|
5813
|
+
this.AdvancePolicy = obj;
|
|
5814
|
+
}
|
|
5815
|
+
|
|
5755
5816
|
}
|
|
5756
5817
|
}
|
|
5757
5818
|
|
|
@@ -7281,6 +7342,12 @@ class ModifyUserTypeRequest extends AbstractModel {
|
|
|
7281
7342
|
*/
|
|
7282
7343
|
this.UserType = null;
|
|
7283
7344
|
|
|
7345
|
+
/**
|
|
7346
|
+
*
|
|
7347
|
+
* @type {string || null}
|
|
7348
|
+
*/
|
|
7349
|
+
this.AccountType = null;
|
|
7350
|
+
|
|
7284
7351
|
}
|
|
7285
7352
|
|
|
7286
7353
|
/**
|
|
@@ -7292,6 +7359,7 @@ class ModifyUserTypeRequest extends AbstractModel {
|
|
|
7292
7359
|
}
|
|
7293
7360
|
this.UserId = 'UserId' in params ? params.UserId : null;
|
|
7294
7361
|
this.UserType = 'UserType' in params ? params.UserType : null;
|
|
7362
|
+
this.AccountType = 'AccountType' in params ? params.AccountType : null;
|
|
7295
7363
|
|
|
7296
7364
|
}
|
|
7297
7365
|
}
|
|
@@ -8387,6 +8455,12 @@ class DropDMSTableRequest extends AbstractModel {
|
|
|
8387
8455
|
*/
|
|
8388
8456
|
this.EnvProps = null;
|
|
8389
8457
|
|
|
8458
|
+
/**
|
|
8459
|
+
*
|
|
8460
|
+
* @type {string || null}
|
|
8461
|
+
*/
|
|
8462
|
+
this.DatasourceConnectionName = null;
|
|
8463
|
+
|
|
8390
8464
|
}
|
|
8391
8465
|
|
|
8392
8466
|
/**
|
|
@@ -8405,6 +8479,7 @@ class DropDMSTableRequest extends AbstractModel {
|
|
|
8405
8479
|
obj.deserialize(params.EnvProps)
|
|
8406
8480
|
this.EnvProps = obj;
|
|
8407
8481
|
}
|
|
8482
|
+
this.DatasourceConnectionName = 'DatasourceConnectionName' in params ? params.DatasourceConnectionName : null;
|
|
8408
8483
|
|
|
8409
8484
|
}
|
|
8410
8485
|
}
|
|
@@ -9783,6 +9858,12 @@ class DescribeUserRolesRequest extends AbstractModel {
|
|
|
9783
9858
|
*/
|
|
9784
9859
|
this.Sorting = null;
|
|
9785
9860
|
|
|
9861
|
+
/**
|
|
9862
|
+
*
|
|
9863
|
+
* @type {number || null}
|
|
9864
|
+
*/
|
|
9865
|
+
this.IsDefault = null;
|
|
9866
|
+
|
|
9786
9867
|
}
|
|
9787
9868
|
|
|
9788
9869
|
/**
|
|
@@ -9797,6 +9878,7 @@ class DescribeUserRolesRequest extends AbstractModel {
|
|
|
9797
9878
|
this.Fuzzy = 'Fuzzy' in params ? params.Fuzzy : null;
|
|
9798
9879
|
this.SortBy = 'SortBy' in params ? params.SortBy : null;
|
|
9799
9880
|
this.Sorting = 'Sorting' in params ? params.Sorting : null;
|
|
9881
|
+
this.IsDefault = 'IsDefault' in params ? params.IsDefault : null;
|
|
9800
9882
|
|
|
9801
9883
|
}
|
|
9802
9884
|
}
|
|
@@ -10068,6 +10150,12 @@ class CreateDLCTableRequest extends AbstractModel {
|
|
|
10068
10150
|
*/
|
|
10069
10151
|
this.ResourceGroupname = null;
|
|
10070
10152
|
|
|
10153
|
+
/**
|
|
10154
|
+
*
|
|
10155
|
+
* @type {string || null}
|
|
10156
|
+
*/
|
|
10157
|
+
this.Catalog = null;
|
|
10158
|
+
|
|
10071
10159
|
}
|
|
10072
10160
|
|
|
10073
10161
|
/**
|
|
@@ -10119,6 +10207,7 @@ class CreateDLCTableRequest extends AbstractModel {
|
|
|
10119
10207
|
}
|
|
10120
10208
|
this.DataEngineName = 'DataEngineName' in params ? params.DataEngineName : null;
|
|
10121
10209
|
this.ResourceGroupname = 'ResourceGroupname' in params ? params.ResourceGroupname : null;
|
|
10210
|
+
this.Catalog = 'Catalog' in params ? params.Catalog : null;
|
|
10122
10211
|
|
|
10123
10212
|
}
|
|
10124
10213
|
}
|
|
@@ -10615,6 +10704,112 @@ class UpdateUserDataEngineConfigRequest extends AbstractModel {
|
|
|
10615
10704
|
}
|
|
10616
10705
|
}
|
|
10617
10706
|
|
|
10707
|
+
/**
|
|
10708
|
+
*
|
|
10709
|
+
* @class
|
|
10710
|
+
*/
|
|
10711
|
+
class WrittenAdvancePolicy extends AbstractModel {
|
|
10712
|
+
constructor(){
|
|
10713
|
+
super();
|
|
10714
|
+
|
|
10715
|
+
/**
|
|
10716
|
+
*
|
|
10717
|
+
* @type {string || null}
|
|
10718
|
+
*/
|
|
10719
|
+
this.CompactEnable = null;
|
|
10720
|
+
|
|
10721
|
+
/**
|
|
10722
|
+
*
|
|
10723
|
+
* @type {string || null}
|
|
10724
|
+
*/
|
|
10725
|
+
this.DeleteEnable = null;
|
|
10726
|
+
|
|
10727
|
+
/**
|
|
10728
|
+
*
|
|
10729
|
+
* @type {number || null}
|
|
10730
|
+
*/
|
|
10731
|
+
this.MinInputFiles = null;
|
|
10732
|
+
|
|
10733
|
+
/**
|
|
10734
|
+
*
|
|
10735
|
+
* @type {number || null}
|
|
10736
|
+
*/
|
|
10737
|
+
this.TargetFileSizeBytes = null;
|
|
10738
|
+
|
|
10739
|
+
/**
|
|
10740
|
+
*
|
|
10741
|
+
* @type {number || null}
|
|
10742
|
+
*/
|
|
10743
|
+
this.RetainLast = null;
|
|
10744
|
+
|
|
10745
|
+
/**
|
|
10746
|
+
*
|
|
10747
|
+
* @type {number || null}
|
|
10748
|
+
*/
|
|
10749
|
+
this.BeforeDays = null;
|
|
10750
|
+
|
|
10751
|
+
/**
|
|
10752
|
+
*
|
|
10753
|
+
* @type {number || null}
|
|
10754
|
+
*/
|
|
10755
|
+
this.ExpiredSnapshotsIntervalMin = null;
|
|
10756
|
+
|
|
10757
|
+
/**
|
|
10758
|
+
*
|
|
10759
|
+
* @type {number || null}
|
|
10760
|
+
*/
|
|
10761
|
+
this.RemoveOrphanIntervalMin = null;
|
|
10762
|
+
|
|
10763
|
+
/**
|
|
10764
|
+
*
|
|
10765
|
+
* @type {string || null}
|
|
10766
|
+
*/
|
|
10767
|
+
this.CowCompactEnable = null;
|
|
10768
|
+
|
|
10769
|
+
/**
|
|
10770
|
+
*
|
|
10771
|
+
* @type {string || null}
|
|
10772
|
+
*/
|
|
10773
|
+
this.CompactStrategy = null;
|
|
10774
|
+
|
|
10775
|
+
/**
|
|
10776
|
+
*
|
|
10777
|
+
* @type {Array.<SortOrder> || null}
|
|
10778
|
+
*/
|
|
10779
|
+
this.SortOrders = null;
|
|
10780
|
+
|
|
10781
|
+
}
|
|
10782
|
+
|
|
10783
|
+
/**
|
|
10784
|
+
* @private
|
|
10785
|
+
*/
|
|
10786
|
+
deserialize(params) {
|
|
10787
|
+
if (!params) {
|
|
10788
|
+
return;
|
|
10789
|
+
}
|
|
10790
|
+
this.CompactEnable = 'CompactEnable' in params ? params.CompactEnable : null;
|
|
10791
|
+
this.DeleteEnable = 'DeleteEnable' in params ? params.DeleteEnable : null;
|
|
10792
|
+
this.MinInputFiles = 'MinInputFiles' in params ? params.MinInputFiles : null;
|
|
10793
|
+
this.TargetFileSizeBytes = 'TargetFileSizeBytes' in params ? params.TargetFileSizeBytes : null;
|
|
10794
|
+
this.RetainLast = 'RetainLast' in params ? params.RetainLast : null;
|
|
10795
|
+
this.BeforeDays = 'BeforeDays' in params ? params.BeforeDays : null;
|
|
10796
|
+
this.ExpiredSnapshotsIntervalMin = 'ExpiredSnapshotsIntervalMin' in params ? params.ExpiredSnapshotsIntervalMin : null;
|
|
10797
|
+
this.RemoveOrphanIntervalMin = 'RemoveOrphanIntervalMin' in params ? params.RemoveOrphanIntervalMin : null;
|
|
10798
|
+
this.CowCompactEnable = 'CowCompactEnable' in params ? params.CowCompactEnable : null;
|
|
10799
|
+
this.CompactStrategy = 'CompactStrategy' in params ? params.CompactStrategy : null;
|
|
10800
|
+
|
|
10801
|
+
if (params.SortOrders) {
|
|
10802
|
+
this.SortOrders = new Array();
|
|
10803
|
+
for (let z in params.SortOrders) {
|
|
10804
|
+
let obj = new SortOrder();
|
|
10805
|
+
obj.deserialize(params.SortOrders[z]);
|
|
10806
|
+
this.SortOrders.push(obj);
|
|
10807
|
+
}
|
|
10808
|
+
}
|
|
10809
|
+
|
|
10810
|
+
}
|
|
10811
|
+
}
|
|
10812
|
+
|
|
10618
10813
|
/**
|
|
10619
10814
|
* Query list filter parameter
|
|
10620
10815
|
* @class
|
|
@@ -11456,6 +11651,12 @@ class DescribeEngineUsageInfoResponse extends AbstractModel {
|
|
|
11456
11651
|
*/
|
|
11457
11652
|
this.Available = null;
|
|
11458
11653
|
|
|
11654
|
+
/**
|
|
11655
|
+
*
|
|
11656
|
+
* @type {number || null}
|
|
11657
|
+
*/
|
|
11658
|
+
this.AvailPercent = null;
|
|
11659
|
+
|
|
11459
11660
|
/**
|
|
11460
11661
|
* 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.
|
|
11461
11662
|
* @type {string || null}
|
|
@@ -11474,6 +11675,7 @@ class DescribeEngineUsageInfoResponse extends AbstractModel {
|
|
|
11474
11675
|
this.Total = 'Total' in params ? params.Total : null;
|
|
11475
11676
|
this.Used = 'Used' in params ? params.Used : null;
|
|
11476
11677
|
this.Available = 'Available' in params ? params.Available : null;
|
|
11678
|
+
this.AvailPercent = 'AvailPercent' in params ? params.AvailPercent : null;
|
|
11477
11679
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
11478
11680
|
|
|
11479
11681
|
}
|
|
@@ -15710,6 +15912,12 @@ class AlterDMSDatabaseRequest extends AbstractModel {
|
|
|
15710
15912
|
*/
|
|
15711
15913
|
this.Asset = null;
|
|
15712
15914
|
|
|
15915
|
+
/**
|
|
15916
|
+
*
|
|
15917
|
+
* @type {string || null}
|
|
15918
|
+
*/
|
|
15919
|
+
this.DatasourceConnectionName = null;
|
|
15920
|
+
|
|
15713
15921
|
}
|
|
15714
15922
|
|
|
15715
15923
|
/**
|
|
@@ -15728,6 +15936,7 @@ class AlterDMSDatabaseRequest extends AbstractModel {
|
|
|
15728
15936
|
obj.deserialize(params.Asset)
|
|
15729
15937
|
this.Asset = obj;
|
|
15730
15938
|
}
|
|
15939
|
+
this.DatasourceConnectionName = 'DatasourceConnectionName' in params ? params.DatasourceConnectionName : null;
|
|
15731
15940
|
|
|
15732
15941
|
}
|
|
15733
15942
|
}
|
|
@@ -16725,6 +16934,7 @@ module.exports = {
|
|
|
16725
16934
|
UpdateDataEngineResponse: UpdateDataEngineResponse,
|
|
16726
16935
|
DescribeTaskStatisticsResponse: DescribeTaskStatisticsResponse,
|
|
16727
16936
|
DeleteUserResponse: DeleteUserResponse,
|
|
16937
|
+
SortOrder: SortOrder,
|
|
16728
16938
|
SparkSessionBatchLog: SparkSessionBatchLog,
|
|
16729
16939
|
DescribeEngineUsageInfoRequest: DescribeEngineUsageInfoRequest,
|
|
16730
16940
|
SmartOptimizerWrittenPolicy: SmartOptimizerWrittenPolicy,
|
|
@@ -16820,6 +17030,7 @@ module.exports = {
|
|
|
16820
17030
|
RenewDataEngineRequest: RenewDataEngineRequest,
|
|
16821
17031
|
DescribeTaskResultRequest: DescribeTaskResultRequest,
|
|
16822
17032
|
UpdateUserDataEngineConfigRequest: UpdateUserDataEngineConfigRequest,
|
|
17033
|
+
WrittenAdvancePolicy: WrittenAdvancePolicy,
|
|
16823
17034
|
Filter: Filter,
|
|
16824
17035
|
DescribeLakeFsDirSummaryResponse: DescribeLakeFsDirSummaryResponse,
|
|
16825
17036
|
TableBaseInfo: TableBaseInfo,
|