tencentcloud-sdk-nodejs-intl-en 3.0.1367 → 3.0.1369

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.
@@ -131,7 +131,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
131
131
  this.Warning = null;
132
132
 
133
133
  /**
134
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
134
+ * 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.
135
135
  * @type {string || null}
136
136
  */
137
137
  this.RequestId = null;
@@ -519,7 +519,7 @@ Note: This field may return null, indicating that no valid value was found.
519
519
  this.IsUnionRule = null;
520
520
 
521
521
  /**
522
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
522
+ * 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.
523
523
  * @type {string || null}
524
524
  */
525
525
  this.RequestId = null;
@@ -710,7 +710,7 @@ class CreatePolicyGroupResponse extends AbstractModel {
710
710
  this.GroupId = null;
711
711
 
712
712
  /**
713
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
713
+ * 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.
714
714
  * @type {string || null}
715
715
  */
716
716
  this.RequestId = null;
@@ -1826,6 +1826,18 @@ Note: This field may return `null`, indicating that no valid values can be obtai
1826
1826
  */
1827
1827
  this.TagInstances = null;
1828
1828
 
1829
+ /**
1830
+ *
1831
+ * @type {AlarmConditionFilter || null}
1832
+ */
1833
+ this.Filter = null;
1834
+
1835
+ /**
1836
+ *
1837
+ * @type {Array.<AlarmGroupByItem> || null}
1838
+ */
1839
+ this.GroupBy = null;
1840
+
1829
1841
  /**
1830
1842
  * Information on the filter dimension associated with a policy.
1831
1843
  Note: This field may return `null`, indicating that no valid values can be obtained.
@@ -1945,6 +1957,21 @@ Note: This field may return null, indicating that no valid values can be obtaine
1945
1957
  this.TagInstances.push(obj);
1946
1958
  }
1947
1959
  }
1960
+
1961
+ if (params.Filter) {
1962
+ let obj = new AlarmConditionFilter();
1963
+ obj.deserialize(params.Filter)
1964
+ this.Filter = obj;
1965
+ }
1966
+
1967
+ if (params.GroupBy) {
1968
+ this.GroupBy = new Array();
1969
+ for (let z in params.GroupBy) {
1970
+ let obj = new AlarmGroupByItem();
1971
+ obj.deserialize(params.GroupBy[z]);
1972
+ this.GroupBy.push(obj);
1973
+ }
1974
+ }
1948
1975
  this.FilterDimensionsParam = 'FilterDimensionsParam' in params ? params.FilterDimensionsParam : null;
1949
1976
  this.IsOneClick = 'IsOneClick' in params ? params.IsOneClick : null;
1950
1977
  this.OneClickStatus = 'OneClickStatus' in params ? params.OneClickStatus : null;
@@ -2037,7 +2064,7 @@ class DescribePolicyConditionListResponse extends AbstractModel {
2037
2064
  this.Conditions = null;
2038
2065
 
2039
2066
  /**
2040
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
2067
+ * 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.
2041
2068
  * @type {string || null}
2042
2069
  */
2043
2070
  this.RequestId = null;
@@ -2238,7 +2265,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
2238
2265
  this.CommonNamespaces = null;
2239
2266
 
2240
2267
  /**
2241
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
2268
+ * 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.
2242
2269
  * @type {string || null}
2243
2270
  */
2244
2271
  this.RequestId = null;
@@ -2657,7 +2684,7 @@ Note: This field may return null, indicating that no valid value was found.
2657
2684
  this.InstanceGroup = null;
2658
2685
 
2659
2686
  /**
2660
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
2687
+ * 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.
2661
2688
  * @type {string || null}
2662
2689
  */
2663
2690
  this.RequestId = null;
@@ -2933,7 +2960,7 @@ Note: This field may return null, indicating that no valid value was found.
2933
2960
  this.Total = null;
2934
2961
 
2935
2962
  /**
2936
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
2963
+ * 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.
2937
2964
  * @type {string || null}
2938
2965
  */
2939
2966
  this.RequestId = null;
@@ -2968,6 +2995,41 @@ Note: This field may return null, indicating that no valid value was found.
2968
2995
  }
2969
2996
  }
2970
2997
 
2998
+ /**
2999
+ *
3000
+ * @class
3001
+ */
3002
+ class AlarmGroupByItem extends AbstractModel {
3003
+ constructor(){
3004
+ super();
3005
+
3006
+ /**
3007
+ * Item Id
3008
+ * @type {string || null}
3009
+ */
3010
+ this.Id = null;
3011
+
3012
+ /**
3013
+ *
3014
+ * @type {string || null}
3015
+ */
3016
+ this.Name = null;
3017
+
3018
+ }
3019
+
3020
+ /**
3021
+ * @private
3022
+ */
3023
+ deserialize(params) {
3024
+ if (!params) {
3025
+ return;
3026
+ }
3027
+ this.Id = 'Id' in params ? params.Id : null;
3028
+ this.Name = 'Name' in params ? params.Name : null;
3029
+
3030
+ }
3031
+ }
3032
+
2971
3033
  /**
2972
3034
  * DescribeAlarmNoticeCallbacks response structure.
2973
3035
  * @class
@@ -3482,7 +3544,7 @@ class DeletePrometheusConfigResponse extends AbstractModel {
3482
3544
  super();
3483
3545
 
3484
3546
  /**
3485
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
3547
+ * 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.
3486
3548
  * @type {string || null}
3487
3549
  */
3488
3550
  this.RequestId = null;
@@ -3510,7 +3572,7 @@ class CreatePrometheusRecordRuleYamlResponse extends AbstractModel {
3510
3572
  super();
3511
3573
 
3512
3574
  /**
3513
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
3575
+ * 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.
3514
3576
  * @type {string || null}
3515
3577
  */
3516
3578
  this.RequestId = null;
@@ -3621,7 +3683,7 @@ class ModifyPolicyGroupResponse extends AbstractModel {
3621
3683
  this.GroupId = null;
3622
3684
 
3623
3685
  /**
3624
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
3686
+ * 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.
3625
3687
  * @type {string || null}
3626
3688
  */
3627
3689
  this.RequestId = null;
@@ -3882,7 +3944,7 @@ class UnBindingPolicyObjectResponse extends AbstractModel {
3882
3944
  super();
3883
3945
 
3884
3946
  /**
3885
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
3947
+ * 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.
3886
3948
  * @type {string || null}
3887
3949
  */
3888
3950
  this.RequestId = null;
@@ -3967,7 +4029,7 @@ class ModifyAlarmPolicyStatusResponse extends AbstractModel {
3967
4029
  super();
3968
4030
 
3969
4031
  /**
3970
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
4032
+ * 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.
3971
4033
  * @type {string || null}
3972
4034
  */
3973
4035
  this.RequestId = null;
@@ -4496,7 +4558,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
4496
4558
  this.Periods = null;
4497
4559
 
4498
4560
  /**
4499
- * Whether delay metrics
4561
+ *
4500
4562
  * @type {number || null}
4501
4563
  */
4502
4564
  this.IsLatenessMetric = null;
@@ -6439,7 +6501,7 @@ Note: This field may return `null`, indicating that no valid values can be obtai
6439
6501
  /**
6440
6502
  * Region ID
6441
6503
  Note: This field may return `null`, indicating that no valid values can be obtained.
6442
- * @type {string || null}
6504
+ * @type {number || null}
6443
6505
  */
6444
6506
  this.RegionId = null;
6445
6507
 
@@ -6634,7 +6696,7 @@ class DescribeAlarmEventsResponse extends AbstractModel {
6634
6696
  this.Events = null;
6635
6697
 
6636
6698
  /**
6637
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
6699
+ * 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.
6638
6700
  * @type {string || null}
6639
6701
  */
6640
6702
  this.RequestId = null;
@@ -8682,7 +8744,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
8682
8744
  this.Warning = null;
8683
8745
 
8684
8746
  /**
8685
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
8747
+ * 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.
8686
8748
  * @type {string || null}
8687
8749
  */
8688
8750
  this.RequestId = null;
@@ -10371,7 +10433,7 @@ Note: This field may return null, indicating that no valid value was found.
10371
10433
  this.Total = null;
10372
10434
 
10373
10435
  /**
10374
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
10436
+ * 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.
10375
10437
  * @type {string || null}
10376
10438
  */
10377
10439
  this.RequestId = null;
@@ -10453,7 +10515,7 @@ class CreatePrometheusConfigResponse extends AbstractModel {
10453
10515
  super();
10454
10516
 
10455
10517
  /**
10456
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
10518
+ * 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.
10457
10519
  * @type {string || null}
10458
10520
  */
10459
10521
  this.RequestId = null;
@@ -11982,7 +12044,7 @@ class ModifyPrometheusConfigResponse extends AbstractModel {
11982
12044
  super();
11983
12045
 
11984
12046
  /**
11985
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
12047
+ * 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.
11986
12048
  * @type {string || null}
11987
12049
  */
11988
12050
  this.RequestId = null;
@@ -12671,7 +12733,7 @@ class DeletePrometheusRecordRuleYamlResponse extends AbstractModel {
12671
12733
  super();
12672
12734
 
12673
12735
  /**
12674
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
12736
+ * 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.
12675
12737
  * @type {string || null}
12676
12738
  */
12677
12739
  this.RequestId = null;
@@ -12909,6 +12971,12 @@ class ModifyPrometheusConfigRequest extends AbstractModel {
12909
12971
  */
12910
12972
  this.RawJobs = null;
12911
12973
 
12974
+ /**
12975
+ *
12976
+ * @type {number || null}
12977
+ */
12978
+ this.UpdateImage = null;
12979
+
12912
12980
  }
12913
12981
 
12914
12982
  /**
@@ -12948,6 +13016,7 @@ class ModifyPrometheusConfigRequest extends AbstractModel {
12948
13016
  this.RawJobs.push(obj);
12949
13017
  }
12950
13018
  }
13019
+ this.UpdateImage = 'UpdateImage' in params ? params.UpdateImage : null;
12951
13020
 
12952
13021
  }
12953
13022
  }
@@ -13024,7 +13093,7 @@ class DeletePolicyGroupResponse extends AbstractModel {
13024
13093
  super();
13025
13094
 
13026
13095
  /**
13027
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
13096
+ * 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.
13028
13097
  * @type {string || null}
13029
13098
  */
13030
13099
  this.RequestId = null;
@@ -13354,7 +13423,7 @@ class ModifyAlarmReceiversResponse extends AbstractModel {
13354
13423
  super();
13355
13424
 
13356
13425
  /**
13357
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
13426
+ * 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.
13358
13427
  * @type {string || null}
13359
13428
  */
13360
13429
  this.RequestId = null;
@@ -13589,7 +13658,7 @@ class CreateAlarmPolicyResponse extends AbstractModel {
13589
13658
  this.OriginId = null;
13590
13659
 
13591
13660
  /**
13592
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
13661
+ * 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.
13593
13662
  * @type {string || null}
13594
13663
  */
13595
13664
  this.RequestId = null;
@@ -13986,7 +14055,7 @@ class ModifyAlarmPolicyConditionResponse extends AbstractModel {
13986
14055
  super();
13987
14056
 
13988
14057
  /**
13989
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
14058
+ * 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.
13990
14059
  * @type {string || null}
13991
14060
  */
13992
14061
  this.RequestId = null;
@@ -14171,48 +14240,18 @@ Note: this field may return `null`, indicating that no valid values can be obtai
14171
14240
  }
14172
14241
 
14173
14242
  /**
14174
- * Instance authorization information
14243
+ * DescribePrometheusRecordRuleYaml response structure.
14175
14244
  * @class
14176
14245
  */
14177
- class PrometheusInstanceGrantInfo extends AbstractModel {
14246
+ class DescribePrometheusRecordRuleYamlResponse extends AbstractModel {
14178
14247
  constructor(){
14179
14248
  super();
14180
14249
 
14181
14250
  /**
14182
- * Whether there is permission to operate on the billing information. Valid values: 1 (yes), 2 (no).
14183
- * @type {number || null}
14184
- */
14185
- this.HasChargeOperation = null;
14186
-
14187
- /**
14188
- * Whether there is permission to display the VPC information. Valid values: 1 (yes), 2 (no).
14189
- * @type {number || null}
14190
- */
14191
- this.HasVpcDisplay = null;
14192
-
14193
- /**
14194
- * Whether there is permission to change the Grafana status. Valid values: 1 (yes), 2 (no).
14195
- * @type {number || null}
14196
- */
14197
- this.HasGrafanaStatusChange = null;
14198
-
14199
- /**
14200
- * Whether there is permission to manage agents. Valid values: 1 (yes), 2 (no).
14201
- * @type {number || null}
14202
- */
14203
- this.HasAgentManage = null;
14204
-
14205
- /**
14206
- * Whether there is permission to manage TKE integrations. Valid values: 1 (yes), 2 (no).
14207
- * @type {number || null}
14208
- */
14209
- this.HasTkeManage = null;
14210
-
14211
- /**
14212
- * Whether there is permission to display the API information. Valid values: 1 (yes), 2 (no).
14213
- * @type {number || null}
14251
+ * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
14252
+ * @type {string || null}
14214
14253
  */
14215
- this.HasApiOperation = null;
14254
+ this.RequestId = null;
14216
14255
 
14217
14256
  }
14218
14257
 
@@ -14223,12 +14262,7 @@ class PrometheusInstanceGrantInfo extends AbstractModel {
14223
14262
  if (!params) {
14224
14263
  return;
14225
14264
  }
14226
- this.HasChargeOperation = 'HasChargeOperation' in params ? params.HasChargeOperation : null;
14227
- this.HasVpcDisplay = 'HasVpcDisplay' in params ? params.HasVpcDisplay : null;
14228
- this.HasGrafanaStatusChange = 'HasGrafanaStatusChange' in params ? params.HasGrafanaStatusChange : null;
14229
- this.HasAgentManage = 'HasAgentManage' in params ? params.HasAgentManage : null;
14230
- this.HasTkeManage = 'HasTkeManage' in params ? params.HasTkeManage : null;
14231
- this.HasApiOperation = 'HasApiOperation' in params ? params.HasApiOperation : null;
14265
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
14232
14266
 
14233
14267
  }
14234
14268
  }
@@ -14456,7 +14490,7 @@ class DescribeAlarmHistoriesResponse extends AbstractModel {
14456
14490
  this.Histories = null;
14457
14491
 
14458
14492
  /**
14459
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
14493
+ * 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.
14460
14494
  * @type {string || null}
14461
14495
  */
14462
14496
  this.RequestId = null;
@@ -14630,7 +14664,7 @@ class ModifyAlarmPolicyNoticeResponse extends AbstractModel {
14630
14664
  super();
14631
14665
 
14632
14666
  /**
14633
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
14667
+ * 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.
14634
14668
  * @type {string || null}
14635
14669
  */
14636
14670
  this.RequestId = null;
@@ -14831,7 +14865,7 @@ class DescribeAlarmPolicyResponse extends AbstractModel {
14831
14865
  this.Policy = null;
14832
14866
 
14833
14867
  /**
14834
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
14868
+ * 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.
14835
14869
  * @type {string || null}
14836
14870
  */
14837
14871
  this.RequestId = null;
@@ -15018,7 +15052,7 @@ class DescribeMonitorTypesResponse extends AbstractModel {
15018
15052
  this.MonitorTypeInfos = null;
15019
15053
 
15020
15054
  /**
15021
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
15055
+ * 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.
15022
15056
  * @type {string || null}
15023
15057
  */
15024
15058
  this.RequestId = null;
@@ -15359,18 +15393,48 @@ class DescribeAlarmHistoriesRequest extends AbstractModel {
15359
15393
  }
15360
15394
 
15361
15395
  /**
15362
- * DescribePrometheusRecordRuleYaml response structure.
15396
+ * Instance authorization information
15363
15397
  * @class
15364
15398
  */
15365
- class DescribePrometheusRecordRuleYamlResponse extends AbstractModel {
15399
+ class PrometheusInstanceGrantInfo extends AbstractModel {
15366
15400
  constructor(){
15367
15401
  super();
15368
15402
 
15369
15403
  /**
15370
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
15371
- * @type {string || null}
15404
+ * Whether there is permission to operate on the billing information. Valid values: 1 (yes), 2 (no).
15405
+ * @type {number || null}
15372
15406
  */
15373
- this.RequestId = null;
15407
+ this.HasChargeOperation = null;
15408
+
15409
+ /**
15410
+ * Whether there is permission to display the VPC information. Valid values: 1 (yes), 2 (no).
15411
+ * @type {number || null}
15412
+ */
15413
+ this.HasVpcDisplay = null;
15414
+
15415
+ /**
15416
+ * Whether there is permission to change the Grafana status. Valid values: 1 (yes), 2 (no).
15417
+ * @type {number || null}
15418
+ */
15419
+ this.HasGrafanaStatusChange = null;
15420
+
15421
+ /**
15422
+ * Whether there is permission to manage agents. Valid values: 1 (yes), 2 (no).
15423
+ * @type {number || null}
15424
+ */
15425
+ this.HasAgentManage = null;
15426
+
15427
+ /**
15428
+ * Whether there is permission to manage TKE integrations. Valid values: 1 (yes), 2 (no).
15429
+ * @type {number || null}
15430
+ */
15431
+ this.HasTkeManage = null;
15432
+
15433
+ /**
15434
+ * Whether there is permission to display the API information. Valid values: 1 (yes), 2 (no).
15435
+ * @type {number || null}
15436
+ */
15437
+ this.HasApiOperation = null;
15374
15438
 
15375
15439
  }
15376
15440
 
@@ -15381,7 +15445,12 @@ class DescribePrometheusRecordRuleYamlResponse extends AbstractModel {
15381
15445
  if (!params) {
15382
15446
  return;
15383
15447
  }
15384
- this.RequestId = 'RequestId' in params ? params.RequestId : null;
15448
+ this.HasChargeOperation = 'HasChargeOperation' in params ? params.HasChargeOperation : null;
15449
+ this.HasVpcDisplay = 'HasVpcDisplay' in params ? params.HasVpcDisplay : null;
15450
+ this.HasGrafanaStatusChange = 'HasGrafanaStatusChange' in params ? params.HasGrafanaStatusChange : null;
15451
+ this.HasAgentManage = 'HasAgentManage' in params ? params.HasAgentManage : null;
15452
+ this.HasTkeManage = 'HasTkeManage' in params ? params.HasTkeManage : null;
15453
+ this.HasApiOperation = 'HasApiOperation' in params ? params.HasApiOperation : null;
15385
15454
 
15386
15455
  }
15387
15456
  }
@@ -15745,6 +15814,48 @@ class DescribePrometheusInstanceInitStatusRequest extends AbstractModel {
15745
15814
  }
15746
15815
  }
15747
15816
 
15817
+ /**
15818
+ *
15819
+ * @class
15820
+ */
15821
+ class AlarmConditionFilter extends AbstractModel {
15822
+ constructor(){
15823
+ super();
15824
+
15825
+ /**
15826
+ *
15827
+ * @type {string || null}
15828
+ */
15829
+ this.Type = null;
15830
+
15831
+ /**
15832
+ *
15833
+ * @type {string || null}
15834
+ */
15835
+ this.Expression = null;
15836
+
15837
+ /**
15838
+ *
15839
+ * @type {string || null}
15840
+ */
15841
+ this.Dimensions = null;
15842
+
15843
+ }
15844
+
15845
+ /**
15846
+ * @private
15847
+ */
15848
+ deserialize(params) {
15849
+ if (!params) {
15850
+ return;
15851
+ }
15852
+ this.Type = 'Type' in params ? params.Type : null;
15853
+ this.Expression = 'Expression' in params ? params.Expression : null;
15854
+ this.Dimensions = 'Dimensions' in params ? params.Dimensions : null;
15855
+
15856
+ }
15857
+ }
15858
+
15748
15859
  /**
15749
15860
  * CreatePrometheusAlertPolicy request structure.
15750
15861
  * @class
@@ -16501,7 +16612,7 @@ Note: This field may return `null`, indicating that no valid values can be obtai
16501
16612
  this.TemplateGroupList = null;
16502
16613
 
16503
16614
  /**
16504
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
16615
+ * 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.
16505
16616
  * @type {string || null}
16506
16617
  */
16507
16618
  this.RequestId = null;
@@ -16600,7 +16711,7 @@ class ModifyAlarmPolicyInfoResponse extends AbstractModel {
16600
16711
  super();
16601
16712
 
16602
16713
  /**
16603
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
16714
+ * 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.
16604
16715
  * @type {string || null}
16605
16716
  */
16606
16717
  this.RequestId = null;
@@ -17602,7 +17713,7 @@ class UnBindingAllPolicyObjectResponse extends AbstractModel {
17602
17713
  super();
17603
17714
 
17604
17715
  /**
17605
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
17716
+ * 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.
17606
17717
  * @type {string || null}
17607
17718
  */
17608
17719
  this.RequestId = null;
@@ -18291,7 +18402,7 @@ class DeleteAlarmPolicyResponse extends AbstractModel {
18291
18402
  super();
18292
18403
 
18293
18404
  /**
18294
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
18405
+ * 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.
18295
18406
  * @type {string || null}
18296
18407
  */
18297
18408
  this.RequestId = null;
@@ -18462,7 +18573,7 @@ class DescribePrometheusConfigResponse extends AbstractModel {
18462
18573
  this.Probes = null;
18463
18574
 
18464
18575
  /**
18465
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
18576
+ * 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.
18466
18577
  * @type {string || null}
18467
18578
  */
18468
18579
  this.RequestId = null;
@@ -19413,7 +19524,7 @@ class ModifyAlarmPolicyTasksResponse extends AbstractModel {
19413
19524
  super();
19414
19525
 
19415
19526
  /**
19416
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
19527
+ * 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.
19417
19528
  * @type {string || null}
19418
19529
  */
19419
19530
  this.RequestId = null;
@@ -22738,7 +22849,7 @@ class ModifyPrometheusRecordRuleYamlResponse extends AbstractModel {
22738
22849
  super();
22739
22850
 
22740
22851
  /**
22741
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
22852
+ * 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.
22742
22853
  * @type {string || null}
22743
22854
  */
22744
22855
  this.RequestId = null;
@@ -23590,7 +23701,7 @@ class SetDefaultAlarmPolicyResponse extends AbstractModel {
23590
23701
  super();
23591
23702
 
23592
23703
  /**
23593
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
23704
+ * 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.
23594
23705
  * @type {string || null}
23595
23706
  */
23596
23707
  this.RequestId = null;
@@ -23618,7 +23729,7 @@ class BindingPolicyObjectResponse extends AbstractModel {
23618
23729
  super();
23619
23730
 
23620
23731
  /**
23621
- * The unique request ID, which is returned for each request. RequestId is required for locating a problem.
23732
+ * 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.
23622
23733
  * @type {string || null}
23623
23734
  */
23624
23735
  this.RequestId = null;
@@ -23683,6 +23794,7 @@ module.exports = {
23683
23794
  PrometheusInstancesOverview: PrometheusInstancesOverview,
23684
23795
  DescribePrometheusInstanceInitStatusResponse: DescribePrometheusInstanceInitStatusResponse,
23685
23796
  DescribeProductEventListResponse: DescribeProductEventListResponse,
23797
+ AlarmGroupByItem: AlarmGroupByItem,
23686
23798
  DescribeAlarmNoticeCallbacksResponse: DescribeAlarmNoticeCallbacksResponse,
23687
23799
  DescribePrometheusInstanceUsageRequest: DescribePrometheusInstanceUsageRequest,
23688
23800
  DeleteSSOAccountRequest: DeleteSSOAccountRequest,
@@ -23891,7 +24003,7 @@ module.exports = {
23891
24003
  ModifyAlarmPolicyConditionResponse: ModifyAlarmPolicyConditionResponse,
23892
24004
  DescribePrometheusInstancesOverviewResponse: DescribePrometheusInstancesOverviewResponse,
23893
24005
  MetricSet: MetricSet,
23894
- PrometheusInstanceGrantInfo: PrometheusInstanceGrantInfo,
24006
+ DescribePrometheusRecordRuleYamlResponse: DescribePrometheusRecordRuleYamlResponse,
23895
24007
  TemplateGroup: TemplateGroup,
23896
24008
  DescribeBindingPolicyObjectListInstance: DescribeBindingPolicyObjectListInstance,
23897
24009
  UpdateGrafanaIntegrationResponse: UpdateGrafanaIntegrationResponse,
@@ -23910,7 +24022,7 @@ module.exports = {
23910
24022
  DescribeAccidentEventListAlarms: DescribeAccidentEventListAlarms,
23911
24023
  CreatePrometheusGlobalNotificationResponse: CreatePrometheusGlobalNotificationResponse,
23912
24024
  DescribeAlarmHistoriesRequest: DescribeAlarmHistoriesRequest,
23913
- DescribePrometheusRecordRuleYamlResponse: DescribePrometheusRecordRuleYamlResponse,
24025
+ PrometheusInstanceGrantInfo: PrometheusInstanceGrantInfo,
23914
24026
  DeletePolicyGroupRequest: DeletePolicyGroupRequest,
23915
24027
  EnableSSOCamCheckRequest: EnableSSOCamCheckRequest,
23916
24028
  DeleteGrafanaIntegrationResponse: DeleteGrafanaIntegrationResponse,
@@ -23919,6 +24031,7 @@ module.exports = {
23919
24031
  DescribePrometheusAgentsRequest: DescribePrometheusAgentsRequest,
23920
24032
  DescribePolicyGroupInfoCondition: DescribePolicyGroupInfoCondition,
23921
24033
  DescribePrometheusInstanceInitStatusRequest: DescribePrometheusInstanceInitStatusRequest,
24034
+ AlarmConditionFilter: AlarmConditionFilter,
23922
24035
  CreatePrometheusAlertPolicyRequest: CreatePrometheusAlertPolicyRequest,
23923
24036
  DescribeBindingPolicyObjectListRequest: DescribeBindingPolicyObjectListRequest,
23924
24037
  DescribeProductEventListEvents: DescribeProductEventListEvents,