tencentcloud-sdk-nodejs-intl-en 3.0.1392 → 3.0.1394
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/antiddos/index.js +1 -1
- package/tencentcloud/billing/v20180709/billing_client.js +127 -34
- package/tencentcloud/billing/v20180709/models.js +2908 -880
- package/tencentcloud/cfg/v20210820/models.js +38 -2
- package/tencentcloud/ciam/index.js +1 -1
- package/tencentcloud/clb/index.js +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/dbbrain/index.js +1 -1
- package/tencentcloud/faceid/v20180301/models.js +40 -10
- package/tencentcloud/monitor/index.js +1 -1
- package/tencentcloud/monitor/v20180724/models.js +60 -23
- package/tencentcloud/monitor/v20180724/monitor_client.js +3 -3
- package/tencentcloud/organization/index.js +1 -1
- package/tencentcloud/tem/index.js +1 -1
- package/tencentcloud/trabbit/v20230418/models.js +371 -77
- package/tencentcloud/trabbit/v20230418/trabbit_client.js +1 -0
- package/tencentcloud/vm/index.js +1 -1
- package/tencentcloud/vod/index.js +1 -1
- package/tencentcloud/wedata/index.js +1 -1
|
@@ -400,6 +400,12 @@ class CreateTaskFromActionRequest extends AbstractModel {
|
|
|
400
400
|
*/
|
|
401
401
|
this.TaskPauseDuration = null;
|
|
402
402
|
|
|
403
|
+
/**
|
|
404
|
+
*
|
|
405
|
+
* @type {Array.<TagWithCreate> || null}
|
|
406
|
+
*/
|
|
407
|
+
this.TaskTags = null;
|
|
408
|
+
|
|
403
409
|
}
|
|
404
410
|
|
|
405
411
|
/**
|
|
@@ -417,6 +423,15 @@ class CreateTaskFromActionRequest extends AbstractModel {
|
|
|
417
423
|
this.TaskActionCustomConfiguration = 'TaskActionCustomConfiguration' in params ? params.TaskActionCustomConfiguration : null;
|
|
418
424
|
this.TaskPauseDuration = 'TaskPauseDuration' in params ? params.TaskPauseDuration : null;
|
|
419
425
|
|
|
426
|
+
if (params.TaskTags) {
|
|
427
|
+
this.TaskTags = new Array();
|
|
428
|
+
for (let z in params.TaskTags) {
|
|
429
|
+
let obj = new TagWithCreate();
|
|
430
|
+
obj.deserialize(params.TaskTags[z]);
|
|
431
|
+
this.TaskTags.push(obj);
|
|
432
|
+
}
|
|
433
|
+
}
|
|
434
|
+
|
|
420
435
|
}
|
|
421
436
|
}
|
|
422
437
|
|
|
@@ -1319,6 +1334,24 @@ class ModifyTaskRunStatusRequest extends AbstractModel {
|
|
|
1319
1334
|
*/
|
|
1320
1335
|
this.Summary = null;
|
|
1321
1336
|
|
|
1337
|
+
/**
|
|
1338
|
+
*
|
|
1339
|
+
* @type {string || null}
|
|
1340
|
+
*/
|
|
1341
|
+
this.Issue = null;
|
|
1342
|
+
|
|
1343
|
+
/**
|
|
1344
|
+
*
|
|
1345
|
+
* @type {string || null}
|
|
1346
|
+
*/
|
|
1347
|
+
this.Record = null;
|
|
1348
|
+
|
|
1349
|
+
/**
|
|
1350
|
+
*
|
|
1351
|
+
* @type {number || null}
|
|
1352
|
+
*/
|
|
1353
|
+
this.IncludeRecordInReport = null;
|
|
1354
|
+
|
|
1322
1355
|
}
|
|
1323
1356
|
|
|
1324
1357
|
/**
|
|
@@ -1332,6 +1365,9 @@ class ModifyTaskRunStatusRequest extends AbstractModel {
|
|
|
1332
1365
|
this.Status = 'Status' in params ? params.Status : null;
|
|
1333
1366
|
this.IsExpect = 'IsExpect' in params ? params.IsExpect : null;
|
|
1334
1367
|
this.Summary = 'Summary' in params ? params.Summary : null;
|
|
1368
|
+
this.Issue = 'Issue' in params ? params.Issue : null;
|
|
1369
|
+
this.Record = 'Record' in params ? params.Record : null;
|
|
1370
|
+
this.IncludeRecordInReport = 'IncludeRecordInReport' in params ? params.IncludeRecordInReport : null;
|
|
1335
1371
|
|
|
1336
1372
|
}
|
|
1337
1373
|
}
|
|
@@ -3013,13 +3049,13 @@ class DescribeTaskListRequest extends AbstractModel {
|
|
|
3013
3049
|
this.TaskStatusList = null;
|
|
3014
3050
|
|
|
3015
3051
|
/**
|
|
3016
|
-
*
|
|
3052
|
+
*
|
|
3017
3053
|
* @type {string || null}
|
|
3018
3054
|
*/
|
|
3019
3055
|
this.ArchId = null;
|
|
3020
3056
|
|
|
3021
3057
|
/**
|
|
3022
|
-
*
|
|
3058
|
+
*
|
|
3023
3059
|
* @type {string || null}
|
|
3024
3060
|
*/
|
|
3025
3061
|
this.ArchName = null;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.1394";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -462,7 +462,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
462
462
|
this.IsPass = null;
|
|
463
463
|
|
|
464
464
|
/**
|
|
465
|
-
* <p>Base64 of the ID image</p>
|
|
465
|
+
* <p>Base64 of the front side ID image</p>
|
|
466
466
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
467
467
|
* @type {string || null}
|
|
468
468
|
*/
|
|
@@ -517,6 +517,20 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
517
517
|
*/
|
|
518
518
|
this.OriginalCardInfo = null;
|
|
519
519
|
|
|
520
|
+
/**
|
|
521
|
+
* <p>Document portrait matting</p>
|
|
522
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
523
|
+
* @type {string || null}
|
|
524
|
+
*/
|
|
525
|
+
this.HeadImageBase64 = null;
|
|
526
|
+
|
|
527
|
+
/**
|
|
528
|
+
* <p>Base64 of the back side ID image</p>
|
|
529
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
530
|
+
* @type {string || null}
|
|
531
|
+
*/
|
|
532
|
+
this.CardBackImageBase64 = null;
|
|
533
|
+
|
|
520
534
|
}
|
|
521
535
|
|
|
522
536
|
/**
|
|
@@ -545,6 +559,8 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
545
559
|
this.CardBackCutImageBase64 = 'CardBackCutImageBase64' in params ? params.CardBackCutImageBase64 : null;
|
|
546
560
|
this.WarnCardInfos = 'WarnCardInfos' in params ? params.WarnCardInfos : null;
|
|
547
561
|
this.OriginalCardInfo = 'OriginalCardInfo' in params ? params.OriginalCardInfo : null;
|
|
562
|
+
this.HeadImageBase64 = 'HeadImageBase64' in params ? params.HeadImageBase64 : null;
|
|
563
|
+
this.CardBackImageBase64 = 'CardBackImageBase64' in params ? params.CardBackImageBase64 : null;
|
|
548
564
|
|
|
549
565
|
}
|
|
550
566
|
}
|
|
@@ -7378,56 +7394,68 @@ class MainlandIDCard extends AbstractModel {
|
|
|
7378
7394
|
super();
|
|
7379
7395
|
|
|
7380
7396
|
/**
|
|
7381
|
-
*
|
|
7397
|
+
* <p>name</p>
|
|
7382
7398
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7383
|
-
|
|
7384
7399
|
* @type {string || null}
|
|
7385
7400
|
*/
|
|
7386
7401
|
this.FullName = null;
|
|
7387
7402
|
|
|
7388
7403
|
/**
|
|
7389
|
-
*
|
|
7404
|
+
* <p>Gender</p>
|
|
7390
7405
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7391
7406
|
* @type {string || null}
|
|
7392
7407
|
*/
|
|
7393
7408
|
this.Sex = null;
|
|
7394
7409
|
|
|
7395
7410
|
/**
|
|
7396
|
-
*
|
|
7411
|
+
* <p>Ethnicity</p>
|
|
7397
7412
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7398
7413
|
* @type {string || null}
|
|
7399
7414
|
*/
|
|
7400
7415
|
this.Nation = null;
|
|
7401
7416
|
|
|
7402
7417
|
/**
|
|
7403
|
-
* Birthday
|
|
7418
|
+
* <p>Birthday</p>
|
|
7404
7419
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7405
7420
|
* @type {string || null}
|
|
7406
7421
|
*/
|
|
7407
7422
|
this.Birthday = null;
|
|
7408
7423
|
|
|
7409
7424
|
/**
|
|
7410
|
-
* Address
|
|
7425
|
+
* <p>Address</p>
|
|
7411
7426
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7412
7427
|
* @type {string || null}
|
|
7413
7428
|
*/
|
|
7414
7429
|
this.Address = null;
|
|
7415
7430
|
|
|
7416
7431
|
/**
|
|
7417
|
-
*
|
|
7432
|
+
* <p>Identity card number</p>
|
|
7418
7433
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7419
|
-
|
|
7420
7434
|
* @type {string || null}
|
|
7421
7435
|
*/
|
|
7422
7436
|
this.LicenseNumber = null;
|
|
7423
7437
|
|
|
7424
7438
|
/**
|
|
7425
|
-
* Address
|
|
7439
|
+
* <p>Address</p>
|
|
7426
7440
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7427
7441
|
* @type {string || null}
|
|
7428
7442
|
*/
|
|
7429
7443
|
this.FormattedAddress = null;
|
|
7430
7444
|
|
|
7445
|
+
/**
|
|
7446
|
+
* <p>Issuing authority</p>
|
|
7447
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7448
|
+
* @type {string || null}
|
|
7449
|
+
*/
|
|
7450
|
+
this.Authority = null;
|
|
7451
|
+
|
|
7452
|
+
/**
|
|
7453
|
+
* <p>Validity period</p>
|
|
7454
|
+
Note: This field may return null, indicating that no valid values can be obtained.
|
|
7455
|
+
* @type {string || null}
|
|
7456
|
+
*/
|
|
7457
|
+
this.ValidDate = null;
|
|
7458
|
+
|
|
7431
7459
|
}
|
|
7432
7460
|
|
|
7433
7461
|
/**
|
|
@@ -7444,6 +7472,8 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
7444
7472
|
this.Address = 'Address' in params ? params.Address : null;
|
|
7445
7473
|
this.LicenseNumber = 'LicenseNumber' in params ? params.LicenseNumber : null;
|
|
7446
7474
|
this.FormattedAddress = 'FormattedAddress' in params ? params.FormattedAddress : null;
|
|
7475
|
+
this.Authority = 'Authority' in params ? params.Authority : null;
|
|
7476
|
+
this.ValidDate = 'ValidDate' in params ? params.ValidDate : null;
|
|
7447
7477
|
|
|
7448
7478
|
}
|
|
7449
7479
|
}
|
|
@@ -6742,7 +6742,7 @@ class DescribePrometheusInstancesRequest extends AbstractModel {
|
|
|
6742
6742
|
|
|
6743
6743
|
/**
|
|
6744
6744
|
* Filter by billing mode
|
|
6745
|
-
<li>2: Monthly subscription</li>
|
|
6745
|
+
<li>2: Yearly/Monthly subscription</li>
|
|
6746
6746
|
<li>3: Pay-as-you-go</li>
|
|
6747
6747
|
* @type {number || null}
|
|
6748
6748
|
*/
|
|
@@ -8062,7 +8062,7 @@ class ModifyPrometheusInstanceAttributesResponse extends AbstractModel {
|
|
|
8062
8062
|
super();
|
|
8063
8063
|
|
|
8064
8064
|
/**
|
|
8065
|
-
* The unique request ID,
|
|
8065
|
+
* 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.
|
|
8066
8066
|
* @type {string || null}
|
|
8067
8067
|
*/
|
|
8068
8068
|
this.RequestId = null;
|
|
@@ -9159,7 +9159,7 @@ class ResumeGrafanaInstanceRequest extends AbstractModel {
|
|
|
9159
9159
|
super();
|
|
9160
9160
|
|
|
9161
9161
|
/**
|
|
9162
|
-
* TCMG instance ID, such as
|
|
9162
|
+
* TCMG instance ID, such as grafana-12345678.
|
|
9163
9163
|
* @type {string || null}
|
|
9164
9164
|
*/
|
|
9165
9165
|
this.InstanceId = null;
|
|
@@ -9425,7 +9425,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
9425
9425
|
/**
|
|
9426
9426
|
* Instance billing mode. Valid values:
|
|
9427
9427
|
|
|
9428
|
-
`2`:
|
|
9428
|
+
`2`: yearly/monthly subscription
|
|
9429
9429
|
`3`: Pay-as-you-go
|
|
9430
9430
|
* @type {number || null}
|
|
9431
9431
|
*/
|
|
@@ -9465,7 +9465,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
9465
9465
|
this.AutoRenewFlag = null;
|
|
9466
9466
|
|
|
9467
9467
|
/**
|
|
9468
|
-
* The unique request ID,
|
|
9468
|
+
* 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.
|
|
9469
9469
|
* @type {string || null}
|
|
9470
9470
|
*/
|
|
9471
9471
|
this.RequestId = null;
|
|
@@ -10085,24 +10085,30 @@ class CreateGrafanaInstanceRequest extends AbstractModel {
|
|
|
10085
10085
|
*/
|
|
10086
10086
|
this.SubnetIds = null;
|
|
10087
10087
|
|
|
10088
|
-
/**
|
|
10089
|
-
* Initial Grafana password
|
|
10090
|
-
* @type {string || null}
|
|
10091
|
-
*/
|
|
10092
|
-
this.GrafanaInitPassword = null;
|
|
10093
|
-
|
|
10094
10088
|
/**
|
|
10095
10089
|
* Whether to enable public network access
|
|
10096
10090
|
* @type {boolean || null}
|
|
10097
10091
|
*/
|
|
10098
10092
|
this.EnableInternet = null;
|
|
10099
10093
|
|
|
10094
|
+
/**
|
|
10095
|
+
* Initial Grafana password
|
|
10096
|
+
* @type {string || null}
|
|
10097
|
+
*/
|
|
10098
|
+
this.GrafanaInitPassword = null;
|
|
10099
|
+
|
|
10100
10100
|
/**
|
|
10101
10101
|
* Tag
|
|
10102
10102
|
* @type {Array.<PrometheusTag> || null}
|
|
10103
10103
|
*/
|
|
10104
10104
|
this.TagSpecification = null;
|
|
10105
10105
|
|
|
10106
|
+
/**
|
|
10107
|
+
*
|
|
10108
|
+
* @type {boolean || null}
|
|
10109
|
+
*/
|
|
10110
|
+
this.AutoVoucher = null;
|
|
10111
|
+
|
|
10106
10112
|
}
|
|
10107
10113
|
|
|
10108
10114
|
/**
|
|
@@ -10115,8 +10121,8 @@ class CreateGrafanaInstanceRequest extends AbstractModel {
|
|
|
10115
10121
|
this.InstanceName = 'InstanceName' in params ? params.InstanceName : null;
|
|
10116
10122
|
this.VpcId = 'VpcId' in params ? params.VpcId : null;
|
|
10117
10123
|
this.SubnetIds = 'SubnetIds' in params ? params.SubnetIds : null;
|
|
10118
|
-
this.GrafanaInitPassword = 'GrafanaInitPassword' in params ? params.GrafanaInitPassword : null;
|
|
10119
10124
|
this.EnableInternet = 'EnableInternet' in params ? params.EnableInternet : null;
|
|
10125
|
+
this.GrafanaInitPassword = 'GrafanaInitPassword' in params ? params.GrafanaInitPassword : null;
|
|
10120
10126
|
|
|
10121
10127
|
if (params.TagSpecification) {
|
|
10122
10128
|
this.TagSpecification = new Array();
|
|
@@ -10126,6 +10132,7 @@ class CreateGrafanaInstanceRequest extends AbstractModel {
|
|
|
10126
10132
|
this.TagSpecification.push(obj);
|
|
10127
10133
|
}
|
|
10128
10134
|
}
|
|
10135
|
+
this.AutoVoucher = 'AutoVoucher' in params ? params.AutoVoucher : null;
|
|
10129
10136
|
|
|
10130
10137
|
}
|
|
10131
10138
|
}
|
|
@@ -10679,7 +10686,7 @@ class CreateGrafanaInstanceResponse extends AbstractModel {
|
|
|
10679
10686
|
this.InstanceId = null;
|
|
10680
10687
|
|
|
10681
10688
|
/**
|
|
10682
|
-
* The unique request ID,
|
|
10689
|
+
* 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.
|
|
10683
10690
|
* @type {string || null}
|
|
10684
10691
|
*/
|
|
10685
10692
|
this.RequestId = null;
|
|
@@ -10987,7 +10994,7 @@ class ResumeGrafanaInstanceResponse extends AbstractModel {
|
|
|
10987
10994
|
super();
|
|
10988
10995
|
|
|
10989
10996
|
/**
|
|
10990
|
-
* The unique request ID,
|
|
10997
|
+
* 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.
|
|
10991
10998
|
* @type {string || null}
|
|
10992
10999
|
*/
|
|
10993
11000
|
this.RequestId = null;
|
|
@@ -12537,7 +12544,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
12537
12544
|
this.TotalCount = null;
|
|
12538
12545
|
|
|
12539
12546
|
/**
|
|
12540
|
-
* The unique request ID,
|
|
12547
|
+
* 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.
|
|
12541
12548
|
* @type {string || null}
|
|
12542
12549
|
*/
|
|
12543
12550
|
this.RequestId = null;
|
|
@@ -13059,7 +13066,7 @@ class PrometheusInstancesItem extends AbstractModel {
|
|
|
13059
13066
|
/**
|
|
13060
13067
|
* Instance billing mode. Valid values:
|
|
13061
13068
|
<ul>
|
|
13062
|
-
<li>2: Monthly subscription</li>
|
|
13069
|
+
<li>2: Yearly/Monthly subscription</li>
|
|
13063
13070
|
<li>3: Pay-as-you-go</li>
|
|
13064
13071
|
</ul>
|
|
13065
13072
|
* @type {number || null}
|
|
@@ -13286,6 +13293,12 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
13286
13293
|
*/
|
|
13287
13294
|
this.MigrationType = null;
|
|
13288
13295
|
|
|
13296
|
+
/**
|
|
13297
|
+
*
|
|
13298
|
+
* @type {Array.<PrometheusRuleKV> || null}
|
|
13299
|
+
*/
|
|
13300
|
+
this.InstanceAttributes = null;
|
|
13301
|
+
|
|
13289
13302
|
}
|
|
13290
13303
|
|
|
13291
13304
|
/**
|
|
@@ -13339,6 +13352,15 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
13339
13352
|
this.RecordingRuleLimit = 'RecordingRuleLimit' in params ? params.RecordingRuleLimit : null;
|
|
13340
13353
|
this.MigrationType = 'MigrationType' in params ? params.MigrationType : null;
|
|
13341
13354
|
|
|
13355
|
+
if (params.InstanceAttributes) {
|
|
13356
|
+
this.InstanceAttributes = new Array();
|
|
13357
|
+
for (let z in params.InstanceAttributes) {
|
|
13358
|
+
let obj = new PrometheusRuleKV();
|
|
13359
|
+
obj.deserialize(params.InstanceAttributes[z]);
|
|
13360
|
+
this.InstanceAttributes.push(obj);
|
|
13361
|
+
}
|
|
13362
|
+
}
|
|
13363
|
+
|
|
13342
13364
|
}
|
|
13343
13365
|
}
|
|
13344
13366
|
|
|
@@ -19495,23 +19517,29 @@ class ModifyPrometheusInstanceAttributesRequest extends AbstractModel {
|
|
|
19495
19517
|
super();
|
|
19496
19518
|
|
|
19497
19519
|
/**
|
|
19498
|
-
* Instance
|
|
19520
|
+
* Instance ID
|
|
19499
19521
|
* @type {string || null}
|
|
19500
19522
|
*/
|
|
19501
|
-
this.
|
|
19523
|
+
this.InstanceId = null;
|
|
19502
19524
|
|
|
19503
19525
|
/**
|
|
19504
|
-
* Instance
|
|
19526
|
+
* Instance name
|
|
19505
19527
|
* @type {string || null}
|
|
19506
19528
|
*/
|
|
19507
|
-
this.
|
|
19529
|
+
this.InstanceName = null;
|
|
19508
19530
|
|
|
19509
19531
|
/**
|
|
19510
|
-
* Storage period. Valid values: 15, 30, 45. This parameter is not applicable to monthly subscribed instances.
|
|
19532
|
+
* Storage period. Valid values: 15, 30, 45. This parameter is not applicable to yearly/monthly subscribed instances.
|
|
19511
19533
|
* @type {number || null}
|
|
19512
19534
|
*/
|
|
19513
19535
|
this.DataRetentionTime = null;
|
|
19514
19536
|
|
|
19537
|
+
/**
|
|
19538
|
+
*
|
|
19539
|
+
* @type {Array.<PrometheusRuleKV> || null}
|
|
19540
|
+
*/
|
|
19541
|
+
this.InstanceAttributes = null;
|
|
19542
|
+
|
|
19515
19543
|
}
|
|
19516
19544
|
|
|
19517
19545
|
/**
|
|
@@ -19521,10 +19549,19 @@ class ModifyPrometheusInstanceAttributesRequest extends AbstractModel {
|
|
|
19521
19549
|
if (!params) {
|
|
19522
19550
|
return;
|
|
19523
19551
|
}
|
|
19524
|
-
this.InstanceName = 'InstanceName' in params ? params.InstanceName : null;
|
|
19525
19552
|
this.InstanceId = 'InstanceId' in params ? params.InstanceId : null;
|
|
19553
|
+
this.InstanceName = 'InstanceName' in params ? params.InstanceName : null;
|
|
19526
19554
|
this.DataRetentionTime = 'DataRetentionTime' in params ? params.DataRetentionTime : null;
|
|
19527
19555
|
|
|
19556
|
+
if (params.InstanceAttributes) {
|
|
19557
|
+
this.InstanceAttributes = new Array();
|
|
19558
|
+
for (let z in params.InstanceAttributes) {
|
|
19559
|
+
let obj = new PrometheusRuleKV();
|
|
19560
|
+
obj.deserialize(params.InstanceAttributes[z]);
|
|
19561
|
+
this.InstanceAttributes.push(obj);
|
|
19562
|
+
}
|
|
19563
|
+
}
|
|
19564
|
+
|
|
19528
19565
|
}
|
|
19529
19566
|
}
|
|
19530
19567
|
|
|
@@ -23058,7 +23095,7 @@ class DeleteGrafanaInstanceResponse extends AbstractModel {
|
|
|
23058
23095
|
super();
|
|
23059
23096
|
|
|
23060
23097
|
/**
|
|
23061
|
-
* The unique request ID,
|
|
23098
|
+
* 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.
|
|
23062
23099
|
* @type {string || null}
|
|
23063
23100
|
*/
|
|
23064
23101
|
this.RequestId = null;
|
|
@@ -624,7 +624,7 @@ support the following APIs:
|
|
|
624
624
|
}
|
|
625
625
|
|
|
626
626
|
/**
|
|
627
|
-
* This API is used to create a monthly subscribed TCMG instance of the Basic Edition, with auto-renewal enabled and vouchers not allowed by default.
|
|
627
|
+
* This API is used to create a yearly/monthly subscribed TCMG instance of the Basic Edition, with auto-renewal enabled and vouchers not allowed by default.
|
|
628
628
|
* @param {CreateGrafanaInstanceRequest} req
|
|
629
629
|
* @param {function(string, CreateGrafanaInstanceResponse):void} cb
|
|
630
630
|
* @public
|
|
@@ -1281,7 +1281,7 @@ Alarm policies in the same type under the project will be set as non-default.
|
|
|
1281
1281
|
}
|
|
1282
1282
|
|
|
1283
1283
|
/**
|
|
1284
|
-
* This API is used to refund a monthly subscribed TCMG instance. Once it is called, the instance cannot be used and will be automatically terminated seven days later.
|
|
1284
|
+
* This API is used to refund a yearly/monthly subscribed TCMG instance. Once it is called, the instance cannot be used and will be automatically terminated seven days later.
|
|
1285
1285
|
* @param {DeleteGrafanaInstanceRequest} req
|
|
1286
1286
|
* @param {function(string, DeleteGrafanaInstanceResponse):void} cb
|
|
1287
1287
|
* @public
|
|
@@ -1380,7 +1380,7 @@ Alarm policies in the same type under the project will be set as non-default.
|
|
|
1380
1380
|
}
|
|
1381
1381
|
|
|
1382
1382
|
/**
|
|
1383
|
-
* This API is used to renew a monthly subscribed TCMG instance for a month without changing the instance edition. It doesn't apply to running instances.
|
|
1383
|
+
* This API is used to renew a yearly/monthly subscribed TCMG instance for a month without changing the instance edition. It doesn't apply to running instances.
|
|
1384
1384
|
* @param {ResumeGrafanaInstanceRequest} req
|
|
1385
1385
|
* @param {function(string, ResumeGrafanaInstanceResponse):void} cb
|
|
1386
1386
|
* @public
|