tencentcloud-sdk-nodejs-intl-en 3.0.655 → 3.0.657
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/cfs/v20190719/cfs_client.js +2 -1
- package/tencentcloud/cfs/v20190719/models.js +111 -25
- package/tencentcloud/chdfs/v20201112/models.js +33 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/cvm/v20170312/cvm_client.js +1 -1
- package/tencentcloud/cvm/v20170312/models.js +23 -9
- package/tencentcloud/domain/index.js +3 -0
- package/tencentcloud/domain/v20180808/domain_client.js +358 -0
- package/tencentcloud/domain/v20180808/index.js +4 -0
- package/tencentcloud/domain/v20180808/models.js +3422 -0
- package/tencentcloud/dts/v20211206/dts_client.js +4 -1
- package/tencentcloud/dts/v20211206/models.js +242 -7
- package/tencentcloud/index.js +1 -0
- package/tencentcloud/ssl/v20191205/models.js +27 -2
- package/tencentcloud/tcr/v20190924/models.js +50 -161
- package/tencentcloud/tcr/v20190924/tcr_client.js +3 -16
package/package.json
CHANGED
|
@@ -62,7 +62,7 @@ const UpdateCfsSnapshotAttributeRequest = models.UpdateCfsSnapshotAttributeReque
|
|
|
62
62
|
const CreateCfsFileSystemRequest = models.CreateCfsFileSystemRequest;
|
|
63
63
|
const DescribeMountTargetsRequest = models.DescribeMountTargetsRequest;
|
|
64
64
|
const CreateCfsPGroupResponse = models.CreateCfsPGroupResponse;
|
|
65
|
-
const
|
|
65
|
+
const TieringDetailInfo = models.TieringDetailInfo;
|
|
66
66
|
const PGroupRuleInfo = models.PGroupRuleInfo;
|
|
67
67
|
const UpdateCfsFileSystemNameResponse = models.UpdateCfsFileSystemNameResponse;
|
|
68
68
|
const DescribeCfsServiceStatusRequest = models.DescribeCfsServiceStatusRequest;
|
|
@@ -76,6 +76,7 @@ const AutoSnapshotPolicyInfo = models.AutoSnapshotPolicyInfo;
|
|
|
76
76
|
const DescribeCfsServiceStatusResponse = models.DescribeCfsServiceStatusResponse;
|
|
77
77
|
const CreateCfsRuleResponse = models.CreateCfsRuleResponse;
|
|
78
78
|
const CreateAutoSnapshotPolicyResponse = models.CreateAutoSnapshotPolicyResponse;
|
|
79
|
+
const UpdateCfsFileSystemPGroupRequest = models.UpdateCfsFileSystemPGroupRequest;
|
|
79
80
|
const UpdateCfsFileSystemPGroupResponse = models.UpdateCfsFileSystemPGroupResponse;
|
|
80
81
|
const TagInfo = models.TagInfo;
|
|
81
82
|
const AvailableProtoStatus = models.AvailableProtoStatus;
|
|
@@ -425,6 +425,19 @@ class FileSystemInfo extends AbstractModel {
|
|
|
425
425
|
*/
|
|
426
426
|
this.Tags = null;
|
|
427
427
|
|
|
428
|
+
/**
|
|
429
|
+
* The lifecycle management status of a file system.
|
|
430
|
+
* @type {string || null}
|
|
431
|
+
*/
|
|
432
|
+
this.TieringState = null;
|
|
433
|
+
|
|
434
|
+
/**
|
|
435
|
+
* The details about tiered storage.
|
|
436
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
437
|
+
* @type {TieringDetailInfo || null}
|
|
438
|
+
*/
|
|
439
|
+
this.TieringDetail = null;
|
|
440
|
+
|
|
428
441
|
}
|
|
429
442
|
|
|
430
443
|
/**
|
|
@@ -467,6 +480,13 @@ class FileSystemInfo extends AbstractModel {
|
|
|
467
480
|
this.Tags.push(obj);
|
|
468
481
|
}
|
|
469
482
|
}
|
|
483
|
+
this.TieringState = 'TieringState' in params ? params.TieringState : null;
|
|
484
|
+
|
|
485
|
+
if (params.TieringDetail) {
|
|
486
|
+
let obj = new TieringDetailInfo();
|
|
487
|
+
obj.deserialize(params.TieringDetail)
|
|
488
|
+
this.TieringDetail = obj;
|
|
489
|
+
}
|
|
470
490
|
|
|
471
491
|
}
|
|
472
492
|
}
|
|
@@ -2446,25 +2466,13 @@ class CreateCfsPGroupResponse extends AbstractModel {
|
|
|
2446
2466
|
}
|
|
2447
2467
|
|
|
2448
2468
|
/**
|
|
2449
|
-
*
|
|
2469
|
+
* The details about tiered storage.
|
|
2450
2470
|
* @class
|
|
2451
2471
|
*/
|
|
2452
|
-
class
|
|
2472
|
+
class TieringDetailInfo extends AbstractModel {
|
|
2453
2473
|
constructor(){
|
|
2454
2474
|
super();
|
|
2455
2475
|
|
|
2456
|
-
/**
|
|
2457
|
-
* Permission group ID
|
|
2458
|
-
* @type {string || null}
|
|
2459
|
-
*/
|
|
2460
|
-
this.PGroupId = null;
|
|
2461
|
-
|
|
2462
|
-
/**
|
|
2463
|
-
* File system ID
|
|
2464
|
-
* @type {string || null}
|
|
2465
|
-
*/
|
|
2466
|
-
this.FileSystemId = null;
|
|
2467
|
-
|
|
2468
2476
|
}
|
|
2469
2477
|
|
|
2470
2478
|
/**
|
|
@@ -2474,8 +2482,6 @@ class UpdateCfsFileSystemPGroupRequest extends AbstractModel {
|
|
|
2474
2482
|
if (!params) {
|
|
2475
2483
|
return;
|
|
2476
2484
|
}
|
|
2477
|
-
this.PGroupId = 'PGroupId' in params ? params.PGroupId : null;
|
|
2478
|
-
this.FileSystemId = 'FileSystemId' in params ? params.FileSystemId : null;
|
|
2479
2485
|
|
|
2480
2486
|
}
|
|
2481
2487
|
}
|
|
@@ -2905,7 +2911,7 @@ class AutoSnapshotPolicyInfo extends AbstractModel {
|
|
|
2905
2911
|
this.FileSystemNums = null;
|
|
2906
2912
|
|
|
2907
2913
|
/**
|
|
2908
|
-
* The day of the week on which to
|
|
2914
|
+
* The specific day of the week on which to create a snapshot. This parameter is mutually exclusive with `DayOfMonth` and `IntervalDays`.
|
|
2909
2915
|
* @type {string || null}
|
|
2910
2916
|
*/
|
|
2911
2917
|
this.DayOfWeek = null;
|
|
@@ -2958,6 +2964,20 @@ class AutoSnapshotPolicyInfo extends AbstractModel {
|
|
|
2958
2964
|
*/
|
|
2959
2965
|
this.FileSystems = null;
|
|
2960
2966
|
|
|
2967
|
+
/**
|
|
2968
|
+
* The specific day of the month on which to create a snapshot. This parameter is mutually exclusive with `DayOfWeek` and `IntervalDays`.
|
|
2969
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2970
|
+
* @type {string || null}
|
|
2971
|
+
*/
|
|
2972
|
+
this.DayOfMonth = null;
|
|
2973
|
+
|
|
2974
|
+
/**
|
|
2975
|
+
* The snapshot interval (1 to 365 days). This parameter is mutually exclusive with `DayOfWeek` and `DayOfMonth`.
|
|
2976
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
2977
|
+
* @type {number || null}
|
|
2978
|
+
*/
|
|
2979
|
+
this.IntervalDays = null;
|
|
2980
|
+
|
|
2961
2981
|
}
|
|
2962
2982
|
|
|
2963
2983
|
/**
|
|
@@ -2988,6 +3008,8 @@ class AutoSnapshotPolicyInfo extends AbstractModel {
|
|
|
2988
3008
|
this.FileSystems.push(obj);
|
|
2989
3009
|
}
|
|
2990
3010
|
}
|
|
3011
|
+
this.DayOfMonth = 'DayOfMonth' in params ? params.DayOfMonth : null;
|
|
3012
|
+
this.IntervalDays = 'IntervalDays' in params ? params.IntervalDays : null;
|
|
2991
3013
|
|
|
2992
3014
|
}
|
|
2993
3015
|
}
|
|
@@ -3132,6 +3154,41 @@ class CreateAutoSnapshotPolicyResponse extends AbstractModel {
|
|
|
3132
3154
|
}
|
|
3133
3155
|
}
|
|
3134
3156
|
|
|
3157
|
+
/**
|
|
3158
|
+
* UpdateCfsFileSystemPGroup request structure.
|
|
3159
|
+
* @class
|
|
3160
|
+
*/
|
|
3161
|
+
class UpdateCfsFileSystemPGroupRequest extends AbstractModel {
|
|
3162
|
+
constructor(){
|
|
3163
|
+
super();
|
|
3164
|
+
|
|
3165
|
+
/**
|
|
3166
|
+
* Permission group ID
|
|
3167
|
+
* @type {string || null}
|
|
3168
|
+
*/
|
|
3169
|
+
this.PGroupId = null;
|
|
3170
|
+
|
|
3171
|
+
/**
|
|
3172
|
+
* File system ID
|
|
3173
|
+
* @type {string || null}
|
|
3174
|
+
*/
|
|
3175
|
+
this.FileSystemId = null;
|
|
3176
|
+
|
|
3177
|
+
}
|
|
3178
|
+
|
|
3179
|
+
/**
|
|
3180
|
+
* @private
|
|
3181
|
+
*/
|
|
3182
|
+
deserialize(params) {
|
|
3183
|
+
if (!params) {
|
|
3184
|
+
return;
|
|
3185
|
+
}
|
|
3186
|
+
this.PGroupId = 'PGroupId' in params ? params.PGroupId : null;
|
|
3187
|
+
this.FileSystemId = 'FileSystemId' in params ? params.FileSystemId : null;
|
|
3188
|
+
|
|
3189
|
+
}
|
|
3190
|
+
}
|
|
3191
|
+
|
|
3135
3192
|
/**
|
|
3136
3193
|
* UpdateCfsFileSystemPGroup response structure.
|
|
3137
3194
|
* @class
|
|
@@ -3486,6 +3543,18 @@ class UpdateAutoSnapshotPolicyRequest extends AbstractModel {
|
|
|
3486
3543
|
*/
|
|
3487
3544
|
this.IsActivated = null;
|
|
3488
3545
|
|
|
3546
|
+
/**
|
|
3547
|
+
* The specific day of the month on which to create a snapshot. This parameter is mutually exclusive with `DayOfWeek`.
|
|
3548
|
+
* @type {string || null}
|
|
3549
|
+
*/
|
|
3550
|
+
this.DayOfMonth = null;
|
|
3551
|
+
|
|
3552
|
+
/**
|
|
3553
|
+
* The snapshot interval. This parameter is mutually exclusive with `DayOfWeek` and `DayOfMonth`.
|
|
3554
|
+
* @type {number || null}
|
|
3555
|
+
*/
|
|
3556
|
+
this.IntervalDays = null;
|
|
3557
|
+
|
|
3489
3558
|
}
|
|
3490
3559
|
|
|
3491
3560
|
/**
|
|
@@ -3501,6 +3570,8 @@ class UpdateAutoSnapshotPolicyRequest extends AbstractModel {
|
|
|
3501
3570
|
this.Hour = 'Hour' in params ? params.Hour : null;
|
|
3502
3571
|
this.AliveDays = 'AliveDays' in params ? params.AliveDays : null;
|
|
3503
3572
|
this.IsActivated = 'IsActivated' in params ? params.IsActivated : null;
|
|
3573
|
+
this.DayOfMonth = 'DayOfMonth' in params ? params.DayOfMonth : null;
|
|
3574
|
+
this.IntervalDays = 'IntervalDays' in params ? params.IntervalDays : null;
|
|
3504
3575
|
|
|
3505
3576
|
}
|
|
3506
3577
|
}
|
|
@@ -3816,12 +3887,6 @@ class CreateAutoSnapshotPolicyRequest extends AbstractModel {
|
|
|
3816
3887
|
constructor(){
|
|
3817
3888
|
super();
|
|
3818
3889
|
|
|
3819
|
-
/**
|
|
3820
|
-
* The day of the week on which to repeat the snapshot operation
|
|
3821
|
-
* @type {string || null}
|
|
3822
|
-
*/
|
|
3823
|
-
this.DayOfWeek = null;
|
|
3824
|
-
|
|
3825
3890
|
/**
|
|
3826
3891
|
* The time point when to repeat the snapshot operation
|
|
3827
3892
|
* @type {string || null}
|
|
@@ -3834,12 +3899,30 @@ class CreateAutoSnapshotPolicyRequest extends AbstractModel {
|
|
|
3834
3899
|
*/
|
|
3835
3900
|
this.PolicyName = null;
|
|
3836
3901
|
|
|
3902
|
+
/**
|
|
3903
|
+
* The day of the week on which to repeat the snapshot operation
|
|
3904
|
+
* @type {string || null}
|
|
3905
|
+
*/
|
|
3906
|
+
this.DayOfWeek = null;
|
|
3907
|
+
|
|
3837
3908
|
/**
|
|
3838
3909
|
* Snapshot retention period
|
|
3839
3910
|
* @type {number || null}
|
|
3840
3911
|
*/
|
|
3841
3912
|
this.AliveDays = null;
|
|
3842
3913
|
|
|
3914
|
+
/**
|
|
3915
|
+
* The specific day (day 1 to day 31) of the month on which to create a snapshot.
|
|
3916
|
+
* @type {string || null}
|
|
3917
|
+
*/
|
|
3918
|
+
this.DayOfMonth = null;
|
|
3919
|
+
|
|
3920
|
+
/**
|
|
3921
|
+
* The snapshot interval, in days.
|
|
3922
|
+
* @type {number || null}
|
|
3923
|
+
*/
|
|
3924
|
+
this.IntervalDays = null;
|
|
3925
|
+
|
|
3843
3926
|
}
|
|
3844
3927
|
|
|
3845
3928
|
/**
|
|
@@ -3849,10 +3932,12 @@ class CreateAutoSnapshotPolicyRequest extends AbstractModel {
|
|
|
3849
3932
|
if (!params) {
|
|
3850
3933
|
return;
|
|
3851
3934
|
}
|
|
3852
|
-
this.DayOfWeek = 'DayOfWeek' in params ? params.DayOfWeek : null;
|
|
3853
3935
|
this.Hour = 'Hour' in params ? params.Hour : null;
|
|
3854
3936
|
this.PolicyName = 'PolicyName' in params ? params.PolicyName : null;
|
|
3937
|
+
this.DayOfWeek = 'DayOfWeek' in params ? params.DayOfWeek : null;
|
|
3855
3938
|
this.AliveDays = 'AliveDays' in params ? params.AliveDays : null;
|
|
3939
|
+
this.DayOfMonth = 'DayOfMonth' in params ? params.DayOfMonth : null;
|
|
3940
|
+
this.IntervalDays = 'IntervalDays' in params ? params.IntervalDays : null;
|
|
3856
3941
|
|
|
3857
3942
|
}
|
|
3858
3943
|
}
|
|
@@ -3974,7 +4059,7 @@ module.exports = {
|
|
|
3974
4059
|
CreateCfsFileSystemRequest: CreateCfsFileSystemRequest,
|
|
3975
4060
|
DescribeMountTargetsRequest: DescribeMountTargetsRequest,
|
|
3976
4061
|
CreateCfsPGroupResponse: CreateCfsPGroupResponse,
|
|
3977
|
-
|
|
4062
|
+
TieringDetailInfo: TieringDetailInfo,
|
|
3978
4063
|
PGroupRuleInfo: PGroupRuleInfo,
|
|
3979
4064
|
UpdateCfsFileSystemNameResponse: UpdateCfsFileSystemNameResponse,
|
|
3980
4065
|
DescribeCfsServiceStatusRequest: DescribeCfsServiceStatusRequest,
|
|
@@ -3988,6 +4073,7 @@ module.exports = {
|
|
|
3988
4073
|
DescribeCfsServiceStatusResponse: DescribeCfsServiceStatusResponse,
|
|
3989
4074
|
CreateCfsRuleResponse: CreateCfsRuleResponse,
|
|
3990
4075
|
CreateAutoSnapshotPolicyResponse: CreateAutoSnapshotPolicyResponse,
|
|
4076
|
+
UpdateCfsFileSystemPGroupRequest: UpdateCfsFileSystemPGroupRequest,
|
|
3991
4077
|
UpdateCfsFileSystemPGroupResponse: UpdateCfsFileSystemPGroupResponse,
|
|
3992
4078
|
TagInfo: TagInfo,
|
|
3993
4079
|
AvailableProtoStatus: AvailableProtoStatus,
|
|
@@ -225,6 +225,20 @@ Note: this field may return `null`, indicating that no valid value was found.
|
|
|
225
225
|
*/
|
|
226
226
|
this.DegradeCapacityUsed = null;
|
|
227
227
|
|
|
228
|
+
/**
|
|
229
|
+
* COS DEEP ARCHIVE storage usage, in bytes
|
|
230
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
231
|
+
* @type {number || null}
|
|
232
|
+
*/
|
|
233
|
+
this.DeepArchiveCapacityUsed = null;
|
|
234
|
+
|
|
235
|
+
/**
|
|
236
|
+
* COS INTELLIGENT TIERING storage usage, in bytes
|
|
237
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
238
|
+
* @type {number || null}
|
|
239
|
+
*/
|
|
240
|
+
this.IntelligentCapacityUsed = null;
|
|
241
|
+
|
|
228
242
|
/**
|
|
229
243
|
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
230
244
|
* @type {string || null}
|
|
@@ -250,6 +264,8 @@ Note: this field may return `null`, indicating that no valid value was found.
|
|
|
250
264
|
this.ArchiveCapacityUsed = 'ArchiveCapacityUsed' in params ? params.ArchiveCapacityUsed : null;
|
|
251
265
|
this.StandardCapacityUsed = 'StandardCapacityUsed' in params ? params.StandardCapacityUsed : null;
|
|
252
266
|
this.DegradeCapacityUsed = 'DegradeCapacityUsed' in params ? params.DegradeCapacityUsed : null;
|
|
267
|
+
this.DeepArchiveCapacityUsed = 'DeepArchiveCapacityUsed' in params ? params.DeepArchiveCapacityUsed : null;
|
|
268
|
+
this.IntelligentCapacityUsed = 'IntelligentCapacityUsed' in params ? params.IntelligentCapacityUsed : null;
|
|
253
269
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
254
270
|
|
|
255
271
|
}
|
|
@@ -1320,6 +1336,13 @@ class CreateAccessRulesResponse extends AbstractModel {
|
|
|
1320
1336
|
constructor(){
|
|
1321
1337
|
super();
|
|
1322
1338
|
|
|
1339
|
+
/**
|
|
1340
|
+
* List of permission rules
|
|
1341
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
1342
|
+
* @type {Array.<AccessRule> || null}
|
|
1343
|
+
*/
|
|
1344
|
+
this.AccessRules = null;
|
|
1345
|
+
|
|
1323
1346
|
/**
|
|
1324
1347
|
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
1325
1348
|
* @type {string || null}
|
|
@@ -1335,6 +1358,15 @@ class CreateAccessRulesResponse extends AbstractModel {
|
|
|
1335
1358
|
if (!params) {
|
|
1336
1359
|
return;
|
|
1337
1360
|
}
|
|
1361
|
+
|
|
1362
|
+
if (params.AccessRules) {
|
|
1363
|
+
this.AccessRules = new Array();
|
|
1364
|
+
for (let z in params.AccessRules) {
|
|
1365
|
+
let obj = new AccessRule();
|
|
1366
|
+
obj.deserialize(params.AccessRules[z]);
|
|
1367
|
+
this.AccessRules.push(obj);
|
|
1368
|
+
}
|
|
1369
|
+
}
|
|
1338
1370
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
1339
1371
|
|
|
1340
1372
|
}
|
|
@@ -1716,7 +1748,7 @@ class Transition extends AbstractModel {
|
|
|
1716
1748
|
this.Days = null;
|
|
1717
1749
|
|
|
1718
1750
|
/**
|
|
1719
|
-
* Transition type (`1`:
|
|
1751
|
+
* Transition type (`1`: ARCHIVE; `2`: Delete; `3`: STANDARD_IA; `4`: DEEP ARCHIVE; `5`: INTELLIGENT TIERING)
|
|
1720
1752
|
* @type {number || null}
|
|
1721
1753
|
*/
|
|
1722
1754
|
this.Type = null;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.657";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -376,7 +376,7 @@ class CvmClient extends AbstractClient {
|
|
|
376
376
|
}
|
|
377
377
|
|
|
378
378
|
/**
|
|
379
|
-
* This API is suspended. To query the information of regions, use [DescribeZones](https://intl.cloud.tencent.com/document/product/1596/
|
|
379
|
+
* This API is suspended. To query the information of regions, use [DescribeZones](https://intl.cloud.tencent.com/document/product/1596/77930?from_cn_redirect=1).
|
|
380
380
|
* @param {DescribeRegionsRequest} req
|
|
381
381
|
* @param {function(string, DescribeRegionsResponse):void} cb
|
|
382
382
|
* @public
|
|
@@ -6109,12 +6109,6 @@ class ActionTimer extends AbstractModel {
|
|
|
6109
6109
|
constructor(){
|
|
6110
6110
|
super();
|
|
6111
6111
|
|
|
6112
|
-
/**
|
|
6113
|
-
* Additional data
|
|
6114
|
-
* @type {Externals || null}
|
|
6115
|
-
*/
|
|
6116
|
-
this.Externals = null;
|
|
6117
|
-
|
|
6118
6112
|
/**
|
|
6119
6113
|
* Timer name. Currently `TerminateInstances` is the only supported value.
|
|
6120
6114
|
* @type {string || null}
|
|
@@ -6122,11 +6116,17 @@ class ActionTimer extends AbstractModel {
|
|
|
6122
6116
|
this.TimerAction = null;
|
|
6123
6117
|
|
|
6124
6118
|
/**
|
|
6125
|
-
* Execution time, which must be at least 5 minutes later than the current time. For example
|
|
6119
|
+
* Execution time, which follows the ISO8601 standard and uses UTC time. It must be at least 5 minutes later than the current time. Format: YYYY-MM-DDThh:mm:ssZ. For example: 2018-05-29T11:26:40Z.
|
|
6126
6120
|
* @type {string || null}
|
|
6127
6121
|
*/
|
|
6128
6122
|
this.ActionTime = null;
|
|
6129
6123
|
|
|
6124
|
+
/**
|
|
6125
|
+
* Additional data
|
|
6126
|
+
* @type {Externals || null}
|
|
6127
|
+
*/
|
|
6128
|
+
this.Externals = null;
|
|
6129
|
+
|
|
6130
6130
|
}
|
|
6131
6131
|
|
|
6132
6132
|
/**
|
|
@@ -6136,14 +6136,14 @@ class ActionTimer extends AbstractModel {
|
|
|
6136
6136
|
if (!params) {
|
|
6137
6137
|
return;
|
|
6138
6138
|
}
|
|
6139
|
+
this.TimerAction = 'TimerAction' in params ? params.TimerAction : null;
|
|
6140
|
+
this.ActionTime = 'ActionTime' in params ? params.ActionTime : null;
|
|
6139
6141
|
|
|
6140
6142
|
if (params.Externals) {
|
|
6141
6143
|
let obj = new Externals();
|
|
6142
6144
|
obj.deserialize(params.Externals)
|
|
6143
6145
|
this.Externals = obj;
|
|
6144
6146
|
}
|
|
6145
|
-
this.TimerAction = 'TimerAction' in params ? params.TimerAction : null;
|
|
6146
|
-
this.ActionTime = 'ActionTime' in params ? params.ActionTime : null;
|
|
6147
6147
|
|
|
6148
6148
|
}
|
|
6149
6149
|
}
|
|
@@ -6547,6 +6547,12 @@ Valid values:
|
|
|
6547
6547
|
*/
|
|
6548
6548
|
this.LicenseType = null;
|
|
6549
6549
|
|
|
6550
|
+
/**
|
|
6551
|
+
* Boot mode
|
|
6552
|
+
* @type {string || null}
|
|
6553
|
+
*/
|
|
6554
|
+
this.BootMode = null;
|
|
6555
|
+
|
|
6550
6556
|
}
|
|
6551
6557
|
|
|
6552
6558
|
/**
|
|
@@ -6574,6 +6580,7 @@ Valid values:
|
|
|
6574
6580
|
}
|
|
6575
6581
|
}
|
|
6576
6582
|
this.LicenseType = 'LicenseType' in params ? params.LicenseType : null;
|
|
6583
|
+
this.BootMode = 'BootMode' in params ? params.BootMode : null;
|
|
6577
6584
|
|
|
6578
6585
|
}
|
|
6579
6586
|
}
|
|
@@ -8699,6 +8706,12 @@ class TerminateInstancesRequest extends AbstractModel {
|
|
|
8699
8706
|
*/
|
|
8700
8707
|
this.InstanceIds = null;
|
|
8701
8708
|
|
|
8709
|
+
/**
|
|
8710
|
+
* Release the monthly subscribed data disks attached to the instance
|
|
8711
|
+
* @type {boolean || null}
|
|
8712
|
+
*/
|
|
8713
|
+
this.ReleasePrepaidDataDisks = null;
|
|
8714
|
+
|
|
8702
8715
|
}
|
|
8703
8716
|
|
|
8704
8717
|
/**
|
|
@@ -8709,6 +8722,7 @@ class TerminateInstancesRequest extends AbstractModel {
|
|
|
8709
8722
|
return;
|
|
8710
8723
|
}
|
|
8711
8724
|
this.InstanceIds = 'InstanceIds' in params ? params.InstanceIds : null;
|
|
8725
|
+
this.ReleasePrepaidDataDisks = 'ReleasePrepaidDataDisks' in params ? params.ReleasePrepaidDataDisks : null;
|
|
8712
8726
|
|
|
8713
8727
|
}
|
|
8714
8728
|
}
|